[{"doc":"D Runtime Library — druntime provides the low-level runtime support including memory management, threading, exception handling, and core system interfaces.","kind":"package","module":"","name":"druntime","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/index.html"},{"doc":"The atomic module provides basic support for lock-free concurrent programming.","kind":"module","module":"core.atomic","name":"core.atomic","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/atomic.html"},{"doc":"Loads 'val' from memory and returns it.  The memory barrier specified by 'ms' is applied to the operation, which is fully sequenced by default.  Va...","kind":"function","module":"core.atomic","name":"atomicLoad","package":"druntime","parentType":"","signature":"T atomicLoad(MemoryOrder ms =  MemoryOrder.seq,  T)(auto  ref  return  scope  const  T val) if (!is(T ==  shared  U,  U)  && !is(T ==  shared  inout  U,  U)  && !is(T ==  shared  const  U,  U))","url":"/ddoc/druntime/core/atomic/atomicLoad.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicLoad","package":"druntime","parentType":"","signature":"T atomicLoad(MemoryOrder ms =  MemoryOrder.seq,  T)(auto  ref  return  scope  shared  const  T val) if (!hasUnsharedIndirections!T)","url":"/ddoc/druntime/core/atomic/atomicLoad.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicLoad","package":"druntime","parentType":"","signature":"TailShared!T atomicLoad(MemoryOrder ms =  MemoryOrder.seq,  T)(auto  ref  shared  const  T val) if (hasUnsharedIndirections!T)","url":"/ddoc/druntime/core/atomic/atomicLoad.html"},{"doc":"Writes 'newval' into 'val'.  The memory barrier specified by 'ms' is applied to the operation, which is fully sequenced by default. Valid memory or...","kind":"function","module":"core.atomic","name":"atomicStore","package":"druntime","parentType":"","signature":"void atomicStore(MemoryOrder ms =  MemoryOrder.seq,  T,  V)(ref  T val,  V newval) if (!is(T ==  shared)  && !is(V ==  shared))","url":"/ddoc/druntime/core/atomic/atomicStore.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicStore","package":"druntime","parentType":"","signature":"void atomicStore(MemoryOrder ms =  MemoryOrder.seq,  T,  V)(ref  shared  T val,  V newval) if (!is(T ==  class))","url":"/ddoc/druntime/core/atomic/atomicStore.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicStore","package":"druntime","parentType":"","signature":"void atomicStore(MemoryOrder ms =  MemoryOrder.seq,  T,  V)(ref  shared  T val,  auto  ref  shared  V newval) if (is(T ==  class))","url":"/ddoc/druntime/core/atomic/atomicStore.html"},{"doc":"Atomically adds `mod` to the value referenced by `val` and returns the value `val` held previously. This operation is both lock-free and atomic.","kind":"function","module":"core.atomic","name":"atomicFetchAdd","package":"druntime","parentType":"","signature":"T atomicFetchAdd(MemoryOrder ms =  MemoryOrder.seq,  T)(ref  return  scope  T val,  size_t mod) if ((__traits(isIntegral,  T)  ||  is(T ==  U *,  U))  && !is(T ==  shared))","url":"/ddoc/druntime/core/atomic/atomicFetchAdd.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicFetchAdd","package":"druntime","parentType":"","signature":"T atomicFetchAdd(MemoryOrder ms =  MemoryOrder.seq,  T)(ref  return  scope  shared  T val,  size_t mod) if (__traits(isIntegral,  T)  ||  is(T ==  U *,  U))","url":"/ddoc/druntime/core/atomic/atomicFetchAdd.html"},{"doc":"Atomically subtracts `mod` from the value referenced by `val` and returns the value `val` held previously. This operation is both lock-free and ato...","kind":"function","module":"core.atomic","name":"atomicFetchSub","package":"druntime","parentType":"","signature":"T atomicFetchSub(MemoryOrder ms =  MemoryOrder.seq,  T)(ref  return  scope  T val,  size_t mod) if ((__traits(isIntegral,  T)  ||  is(T ==  U *,  U))  && !is(T ==  shared))","url":"/ddoc/druntime/core/atomic/atomicFetchSub.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicFetchSub","package":"druntime","parentType":"","signature":"T atomicFetchSub(MemoryOrder ms =  MemoryOrder.seq,  T)(ref  return  scope  shared  T val,  size_t mod) if (__traits(isIntegral,  T)  ||  is(T ==  U *,  U))","url":"/ddoc/druntime/core/atomic/atomicFetchSub.html"},{"doc":"Exchange `exchangeWith` with the memory referenced by `here`. This operation is both lock-free and atomic.","kind":"function","module":"core.atomic","name":"atomicExchange","package":"druntime","parentType":"","signature":"T atomicExchange(MemoryOrder ms =  MemoryOrder.seq, T, V)(T *  here,  V exchangeWith) if (!is(T ==  shared)  && !is(V ==  shared))","url":"/ddoc/druntime/core/atomic/atomicExchange.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicExchange","package":"druntime","parentType":"","signature":"TailShared!T atomicExchange(MemoryOrder ms =  MemoryOrder.seq, T, V)(shared(T) *  here,  V exchangeWith) if (!is(T ==  class)  && !is(T ==  interface))","url":"/ddoc/druntime/core/atomic/atomicExchange.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"atomicExchange","package":"druntime","parentType":"","signature":"shared(T) atomicExchange(MemoryOrder ms =  MemoryOrder.seq, T, V)(shared(T) *  here,  shared(V)  exchangeWith) if (is(T ==  class)  ||  is(T ==  interface))","url":"/ddoc/druntime/core/atomic/atomicExchange.html"},{"doc":"Stores 'writeThis' to the memory referenced by 'here' if the value referenced by 'here' is equal to 'ifThis'. The 'weak' version of cas may spuriou...","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V1, V2)(T *  here,  V1 ifThis,  V2 writeThis) if (!is(T ==  shared)  &&  is(T :  V1))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V1, V2)(shared(T) *  here,  V1 ifThis,  V2 writeThis) if (!is(T ==  class)  && (is(T :  V1)  ||  is(shared  T :  V1)))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V1, V2)(shared(T) *  here,  shared(V1)  ifThis,  shared(V2)  writeThis) if (is(T ==  class))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Stores 'writeThis' to the memory referenced by 'here' if the value referenced by 'here' is equal to the value referenced by 'ifThis'. The prior val...","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V)(T *  here,  T *  ifThis,  V writeThis) if (!is(T ==  shared  S,  S)  && !is(V ==  shared  U,  U))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V1, V2)(shared(T) *  here,  V1 *  ifThis,  V2 writeThis) if (!is(T ==  class)  && (is(T :  V1)  ||  is(shared  T :  V1)))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Ditto","kind":"function","module":"core.atomic","name":"casWeak","package":"druntime","parentType":"","signature":"bool casWeak(MemoryOrder succ =  MemoryOrder.seq, MemoryOrder fail =  MemoryOrder.seq, T, V)(shared(T) *  here,  shared(T) *  ifThis,  shared(V)  writeThis) if (is(T ==  class))","url":"/ddoc/druntime/core/atomic/casWeak.html"},{"doc":"Inserts a full load/store memory fence (on platforms that need it). This ensures that all loads and stores before a call to this function are execu...","kind":"function","module":"core.atomic","name":"atomicFence","package":"druntime","parentType":"","signature":"void atomicFence(MemoryOrder order =  MemoryOrder.seq)()","url":"/ddoc/druntime/core/atomic/atomicFence.html"},{"doc":"Gives a hint to the processor that the calling thread is in a 'spin-wait' loop, allowing to more efficiently allocate resources.","kind":"function","module":"core.atomic","name":"pause","package":"druntime","parentType":"","signature":"void pause()","url":"/ddoc/druntime/core/atomic/pause.html"},{"doc":"Performs the binary operation 'op' on val using 'mod' as the modifier.","kind":"function","module":"core.atomic","name":"atomicOp","package":"druntime","parentType":"","signature":"TailShared!T atomicOp(string op,  T,  V1)(ref  shared  T val,  V1 mod) if (__traits(compiles,  mixin(\"*cast(T*)&val\" ~  op ~  \"mod\")))","url":"/ddoc/druntime/core/atomic/atomicOp.html"},{"doc":"","kind":"function","module":"core.atomic","name":"atomicValueIsProperlyAligned","package":"druntime","parentType":"","signature":"bool atomicValueIsProperlyAligned(T)(ref  T val)","url":"/ddoc/druntime/core/atomic/atomicValueIsProperlyAligned.html"},{"doc":"","kind":"function","module":"core.atomic","name":"atomicPtrIsProperlyAligned","package":"druntime","parentType":"","signature":"bool atomicPtrIsProperlyAligned(T)(T *  ptr)","url":"/ddoc/druntime/core/atomic/atomicPtrIsProperlyAligned.html"},{"doc":"","kind":"function","module":"core.atomic","name":"casWeakByRef","package":"druntime","parentType":"","signature":"bool casWeakByRef(T, V1, V2)(ref  T value,  ref  V1 ifThis,  V2 writeThis)","url":"/ddoc/druntime/core/atomic/casWeakByRef.html"},{"doc":"Specifies the memory ordering semantics of an atomic operation.","kind":"enum","module":"core.atomic","name":"MemoryOrder","package":"druntime","parentType":"","signature":"MemoryOrder","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Not sequenced. Corresponds to $(LINK2 https://llvm.org/docs/Atomics.html#monotonic, LLVM AtomicOrdering.Monotonic) and C++11/C11 `memory_order_rela...","kind":"enum_member","module":"core.atomic","name":"raw","package":"druntime","parentType":"","signature":"raw = 0","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Hoist-load + hoist-store barrier. Corresponds to $(LINK2 https://llvm.org/docs/Atomics.html#acquire, LLVM AtomicOrdering.Acquire) and C++11/C11 `me...","kind":"enum_member","module":"core.atomic","name":"acq","package":"druntime","parentType":"","signature":"acq = 2","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Sink-load + sink-store barrier. Corresponds to $(LINK2 https://llvm.org/docs/Atomics.html#release, LLVM AtomicOrdering.Release) and C++11/C11 `memo...","kind":"enum_member","module":"core.atomic","name":"rel","package":"druntime","parentType":"","signature":"rel = 3","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Acquire + release barrier. Corresponds to $(LINK2 https://llvm.org/docs/Atomics.html#acquirerelease, LLVM AtomicOrdering.AcquireRelease) and C++11/...","kind":"enum_member","module":"core.atomic","name":"acq_rel","package":"druntime","parentType":"","signature":"acq_rel = 4","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Fully sequenced (acquire + release). Corresponds to $(LINK2 https://llvm.org/docs/Atomics.html#sequentiallyconsistent, LLVM AtomicOrdering.Sequenti...","kind":"enum_member","module":"core.atomic","name":"seq","package":"druntime","parentType":"","signature":"seq = 5","url":"/ddoc/druntime/core/atomic.html#MemoryOrder"},{"doc":"Performs either compare-and-set or compare-and-swap (or exchange).","kind":"template","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"cas(MemoryOrder succ =  MemoryOrder.seq,  MemoryOrder fail =  MemoryOrder.seq)","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare-and-set for non-shared values","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V1,  V2)(T *  here,  V1 ifThis,  V2 writeThis) if (!is(T ==  shared)  &&  is(T :  V1))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare-and-set for shared value type","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V1,  V2)(shared(T) *  here,  V1 ifThis,  V2 writeThis) if (!is(T ==  class)  && (is(T :  V1)  ||  is(shared  T :  V1)))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare-and-set for `shared` reference type (`class`)","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V1,  V2)(shared(T) *  here,  shared(V1)  ifThis,  shared(V2)  writeThis) if (is(T ==  class))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare-and-exchange for non-`shared` types","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V)(T *  here,  T *  ifThis,  V writeThis) if (!is(T ==  shared)  && !is(V ==  shared))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare and exchange for mixed-`shared`ness types","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V1,  V2)(shared(T) *  here,  V1 *  ifThis,  V2 writeThis) if (!is(T ==  class)  && (is(T :  V1)  ||  is(shared  T :  V1)))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"Compare-and-exchange for `class`","kind":"function","module":"core.atomic","name":"cas","package":"druntime","parentType":"","signature":"bool cas(T,  V)(shared(T) *  here,  shared(T) *  ifThis,  shared(V)  writeThis) if (is(T ==  class))","url":"/ddoc/druntime/core/atomic.html#cas"},{"doc":"","kind":"template","module":"core.atomic","name":"IntForFloat","package":"druntime","parentType":"","signature":"IntForFloat(F)","url":"/ddoc/druntime/core/atomic.html#IntForFloat"},{"doc":"","kind":"template","module":"core.atomic","name":"IntForStruct","package":"druntime","parentType":"","signature":"IntForStruct(S)","url":"/ddoc/druntime/core/atomic.html#IntForStruct"},{"doc":"","kind":"template","module":"core.atomic","name":"ValidateStruct","package":"druntime","parentType":"","signature":"ValidateStruct(S)","url":"/ddoc/druntime/core/atomic.html#ValidateStruct"},{"doc":"","kind":"template","module":"core.atomic","name":"TailShared","package":"druntime","parentType":"","signature":"TailShared(U)","url":"/ddoc/druntime/core/atomic.html#TailShared"},{"doc":"","kind":"template","module":"core.atomic","name":"TailShared","package":"druntime","parentType":"","signature":"TailShared(S)","url":"/ddoc/druntime/core/atomic.html#TailShared"},{"doc":"This module contains UDA's (User Defined Attributes) either used in the runtime or special UDA's recognized by compiler.","kind":"module","module":"core.attribute","name":"core.attribute","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/attribute.html"},{"doc":"Use this attribute to ensure that values of a `struct` or `union` type are not discarded.","kind":"enum","module":"core.attribute","name":"mustuse","package":"druntime","parentType":"","signature":"mustuse","url":"/ddoc/druntime/core/attribute.html#mustuse"},{"doc":"Use this attribute to indicate that a shared module constructor does not depend on any other module constructor being run first. This avoids errors...","kind":"enum","module":"core.attribute","name":"standalone","package":"druntime","parentType":"","signature":"standalone","url":"/ddoc/druntime/core/attribute.html#standalone"},{"doc":"This module contains a collection of bit-level operations.","kind":"module","module":"core.bitop","name":"core.bitop","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/bitop.html"},{"doc":"Scans the bits in v starting with bit 0, looking for the first set bit. Returns: The bit number of the first bit set. The return value is undefined...","kind":"function","module":"core.bitop","name":"bsf","package":"druntime","parentType":"","signature":"int bsf(uint  v)","url":"/ddoc/druntime/core/bitop/bsf.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"bsf","package":"druntime","parentType":"","signature":"int bsf(ulong  v)","url":"/ddoc/druntime/core/bitop/bsf.html"},{"doc":"Scans the bits in v from the most significant bit to the least significant bit, looking for the first set bit. Returns: The bit number of the first...","kind":"function","module":"core.bitop","name":"bsr","package":"druntime","parentType":"","signature":"int bsr(uint  v)","url":"/ddoc/druntime/core/bitop/bsr.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"bsr","package":"druntime","parentType":"","signature":"int bsr(ulong  v)","url":"/ddoc/druntime/core/bitop/bsr.html"},{"doc":"","kind":"function","module":"core.bitop","name":"softScan","package":"druntime","parentType":"","signature":"int softScan(N,  bool  forward)(N v) if (is(N ==  uint)  ||  is(N ==  ulong))","url":"/ddoc/druntime/core/bitop/softScan.html"},{"doc":"Tests the bit. (No longer an intrisic - the compiler recognizes the patterns in the body.)","kind":"function","module":"core.bitop","name":"bt","package":"druntime","parentType":"","signature":"int bt(const  scope  size_t *  p,  size_t bitnum)","url":"/ddoc/druntime/core/bitop/bt.html"},{"doc":"Tests and complements the bit.","kind":"function","module":"core.bitop","name":"btc","package":"druntime","parentType":"","signature":"int btc(size_t *  p,  size_t bitnum)","url":"/ddoc/druntime/core/bitop/btc.html"},{"doc":"Tests and resets (sets to 0) the bit.","kind":"function","module":"core.bitop","name":"btr","package":"druntime","parentType":"","signature":"int btr(size_t *  p,  size_t bitnum)","url":"/ddoc/druntime/core/bitop/btr.html"},{"doc":"* Tests and sets the bit. * Params: * p = a non-NULL pointer to an array of size_ts. * bitnum = a bit number, starting with bit 0 of p[0], * and pr...","kind":"function","module":"core.bitop","name":"bts","package":"druntime","parentType":"","signature":"int bts(size_t *  p,  size_t bitnum)","url":"/ddoc/druntime/core/bitop/bts.html"},{"doc":"Swaps bytes in a 2 byte ushort. Params: x = value Returns: `x` with bytes swapped","kind":"function","module":"core.bitop","name":"byteswap","package":"druntime","parentType":"","signature":"ushort byteswap(ushort  x)","url":"/ddoc/druntime/core/bitop/byteswap.html"},{"doc":"Swaps bytes in a 4 byte uint end-to-end, i.e. byte 0 becomes byte 3, byte 1 becomes byte 2, byte 2 becomes byte 1, byte 3 becomes byte 0.","kind":"function","module":"core.bitop","name":"bswap","package":"druntime","parentType":"","signature":"uint bswap(uint  v)","url":"/ddoc/druntime/core/bitop/bswap.html"},{"doc":"Swaps bytes in an 8 byte ulong end-to-end, i.e. byte 0 becomes byte 7, byte 1 becomes byte 6, etc. This is meant to be recognized by the compiler a...","kind":"function","module":"core.bitop","name":"bswap","package":"druntime","parentType":"","signature":"ulong bswap(ulong  v)","url":"/ddoc/druntime/core/bitop/bswap.html"},{"doc":"Calculates the number of set bits in an integer.","kind":"function","module":"core.bitop","name":"popcnt","package":"druntime","parentType":"","signature":"int popcnt(uint  x)","url":"/ddoc/druntime/core/bitop/popcnt.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"popcnt","package":"druntime","parentType":"","signature":"int popcnt(ulong  x)","url":"/ddoc/druntime/core/bitop/popcnt.html"},{"doc":"","kind":"function","module":"core.bitop","name":"softPopcnt","package":"druntime","parentType":"","signature":"int softPopcnt(N)(N x) if (is(N ==  uint)  ||  is(N ==  ulong))","url":"/ddoc/druntime/core/bitop/softPopcnt.html"},{"doc":"Reverses the order of bits in a 32-bit integer.","kind":"function","module":"core.bitop","name":"bitswap","package":"druntime","parentType":"","signature":"uint bitswap(  uint  x )","url":"/ddoc/druntime/core/bitop/bitswap.html"},{"doc":"Reverses the order of bits in a 64-bit integer.","kind":"function","module":"core.bitop","name":"bitswap","package":"druntime","parentType":"","signature":"ulong bitswap(  ulong  x )","url":"/ddoc/druntime/core/bitop/bitswap.html"},{"doc":"","kind":"function","module":"core.bitop","name":"softBitswap","package":"druntime","parentType":"","signature":"N softBitswap(N)(N x) if (is(N ==  uint)  ||  is(N ==  ulong))","url":"/ddoc/druntime/core/bitop/softBitswap.html"},{"doc":"Bitwise rotate `value` left (`rol`) or right (`ror`) by `count` bit positions.","kind":"function","module":"core.bitop","name":"rol","package":"druntime","parentType":"","signature":"T rol(T)(const  T value,  const  uint  count) if (__traits(isIntegral,  T)  &&  __traits(isUnsigned,  T))","url":"/ddoc/druntime/core/bitop/rol.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"ror","package":"druntime","parentType":"","signature":"T ror(T)(const  T value,  const  uint  count) if (__traits(isIntegral,  T)  &&  __traits(isUnsigned,  T))","url":"/ddoc/druntime/core/bitop/ror.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"rol","package":"druntime","parentType":"","signature":"T rol(uint  count,  T)(const  T value) if (__traits(isIntegral,  T)  &&  __traits(isUnsigned,  T))","url":"/ddoc/druntime/core/bitop/rol.html"},{"doc":"ditto","kind":"function","module":"core.bitop","name":"ror","package":"druntime","parentType":"","signature":"T ror(uint  count,  T)(const  T value) if (__traits(isIntegral,  T)  &&  __traits(isUnsigned,  T))","url":"/ddoc/druntime/core/bitop/ror.html"},{"doc":"","kind":"union","module":"core.bitop","name":"Split64","package":"druntime","parentType":"","signature":"Split64","url":"/ddoc/druntime/core/bitop.html#Split64"},{"doc":"","kind":"alias","module":"core.bitop","name":"softBsf","package":"druntime","parentType":"","signature":"softBsf(N) = softScan!(N,  true)","url":"/ddoc/druntime/core/bitop.html#softBsf"},{"doc":"","kind":"alias","module":"core.bitop","name":"softBsr","package":"druntime","parentType":"","signature":"softBsr(N) = softScan!(N,  false)","url":"/ddoc/druntime/core/bitop.html#softBsr"},{"doc":"Range over bit set. Each element is the bit number that is set.","kind":"struct","module":"core.bitop","name":"BitRange","package":"druntime","parentType":"","signature":"BitRange","url":"/ddoc/druntime/core/bitop.html#BitRange"},{"doc":"Range functions","kind":"method","module":"core.bitop","name":"front","package":"druntime","parentType":"BitRange","signature":"size_t front()","url":"/ddoc/druntime/core/bitop/BitRange.front.html"},{"doc":"ditto","kind":"method","module":"core.bitop","name":"empty","package":"druntime","parentType":"BitRange","signature":"bool empty()","url":"/ddoc/druntime/core/bitop/BitRange.empty.html"},{"doc":"ditto","kind":"method","module":"core.bitop","name":"popFront","package":"druntime","parentType":"BitRange","signature":"void popFront()","url":"/ddoc/druntime/core/bitop/BitRange.popFront.html"},{"doc":"To provide access to features that would be otherwise counterproductive or difficult to implement, compilers provide an interface consisting of a s...","kind":"module","module":"core.builtins","name":"core.builtins","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/builtins.html"},{"doc":"Writes `s` to `stderr` during CTFE (does nothing at runtime).","kind":"function","module":"core.builtins","name":"__ctfeWrite","package":"druntime","parentType":"","signature":"void __ctfeWrite(scope  const(char)[]  s)","url":"/ddoc/druntime/core/builtins/__ctfeWrite.html"},{"doc":"Provide static branch and value hints for the LDC/GDC compilers. DMD ignores these hints.","kind":"function","module":"core.builtins","name":"likely","package":"druntime","parentType":"","signature":"bool likely()(bool  b)","url":"/ddoc/druntime/core/builtins/likely.html"},{"doc":"ditto","kind":"function","module":"core.builtins","name":"unlikely","package":"druntime","parentType":"","signature":"bool unlikely()(bool  b)","url":"/ddoc/druntime/core/builtins/unlikely.html"},{"doc":"This module implements integral arithmetic primitives that check for out-of-range results.","kind":"module","module":"core.checkedint","name":"core.checkedint","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/checkedint.html"},{"doc":"Add two signed integers, checking for overflow.","kind":"function","module":"core.checkedint","name":"adds","package":"druntime","parentType":"","signature":"int adds()(int  x,  int  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/adds.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"adds","package":"druntime","parentType":"","signature":"long adds()(long  x,  long  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/adds.html"},{"doc":"Add two unsigned integers, checking for overflow (aka carry).","kind":"function","module":"core.checkedint","name":"addu","package":"druntime","parentType":"","signature":"uint addu()(uint  x,  uint  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/addu.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"addu","package":"druntime","parentType":"","signature":"ulong addu()(ulong  x,  ulong  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/addu.html"},{"doc":"Subtract two signed integers, checking for overflow.","kind":"function","module":"core.checkedint","name":"subs","package":"druntime","parentType":"","signature":"int subs()(int  x,  int  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/subs.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"subs","package":"druntime","parentType":"","signature":"long subs()(long  x,  long  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/subs.html"},{"doc":"Subtract two unsigned integers, checking for overflow (aka borrow).","kind":"function","module":"core.checkedint","name":"subu","package":"druntime","parentType":"","signature":"uint subu()(uint  x,  uint  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/subu.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"subu","package":"druntime","parentType":"","signature":"ulong subu()(ulong  x,  ulong  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/subu.html"},{"doc":"Negate an integer.","kind":"function","module":"core.checkedint","name":"negs","package":"druntime","parentType":"","signature":"int negs()(int  x,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/negs.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"negs","package":"druntime","parentType":"","signature":"long negs()(long  x,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/negs.html"},{"doc":"Multiply two signed integers, checking for overflow.","kind":"function","module":"core.checkedint","name":"muls","package":"druntime","parentType":"","signature":"int muls()(int  x,  int  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/muls.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"muls","package":"druntime","parentType":"","signature":"long muls()(long  x,  long  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/muls.html"},{"doc":"Multiply two unsigned integers, checking for overflow (aka carry).","kind":"function","module":"core.checkedint","name":"mulu","package":"druntime","parentType":"","signature":"uint mulu()(uint  x,  uint  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/mulu.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"mulu","package":"druntime","parentType":"","signature":"ulong mulu()(ulong  x,  uint  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/mulu.html"},{"doc":"ditto","kind":"function","module":"core.checkedint","name":"mulu","package":"druntime","parentType":"","signature":"ulong mulu()(ulong  x,  ulong  y,  ref  bool  overflow)","url":"/ddoc/druntime/core/checkedint/mulu.html"},{"doc":"Identify the characteristics of the host CPU, providing information about cache sizes and assembly optimisation hints. This module is provided prim...","kind":"module","module":"core.cpuid","name":"core.cpuid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/cpuid.html"},{"doc":"The data caches. If there are fewer than 5 physical caches levels, the remaining levels are set to size_t.max (== entire memory space)","kind":"function","module":"core.cpuid","name":"dataCaches","package":"druntime","parentType":"","signature":"const(CacheInfo)[5] dataCaches()","url":"/ddoc/druntime/core/cpuid/dataCaches.html"},{"doc":"Returns vendor string, for display purposes only. Do NOT use this to determine features! Note that some CPUs have programmable vendorIDs.","kind":"function","module":"core.cpuid","name":"vendor","package":"druntime","parentType":"","signature":"string vendor()","url":"/ddoc/druntime/core/cpuid/vendor.html"},{"doc":"Returns processor string, for display purposes only","kind":"function","module":"core.cpuid","name":"processor","package":"druntime","parentType":"","signature":"string processor()","url":"/ddoc/druntime/core/cpuid/processor.html"},{"doc":"Does it have an x87 FPU on-chip?","kind":"function","module":"core.cpuid","name":"x87onChip","package":"druntime","parentType":"","signature":"bool x87onChip()","url":"/ddoc/druntime/core/cpuid/x87onChip.html"},{"doc":"Is MMX supported?","kind":"function","module":"core.cpuid","name":"mmx","package":"druntime","parentType":"","signature":"bool mmx()","url":"/ddoc/druntime/core/cpuid/mmx.html"},{"doc":"Is SSE supported?","kind":"function","module":"core.cpuid","name":"sse","package":"druntime","parentType":"","signature":"bool sse()","url":"/ddoc/druntime/core/cpuid/sse.html"},{"doc":"Is SSE2 supported?","kind":"function","module":"core.cpuid","name":"sse2","package":"druntime","parentType":"","signature":"bool sse2()","url":"/ddoc/druntime/core/cpuid/sse2.html"},{"doc":"Is SSE3 supported?","kind":"function","module":"core.cpuid","name":"sse3","package":"druntime","parentType":"","signature":"bool sse3()","url":"/ddoc/druntime/core/cpuid/sse3.html"},{"doc":"Is SSSE3 supported?","kind":"function","module":"core.cpuid","name":"ssse3","package":"druntime","parentType":"","signature":"bool ssse3()","url":"/ddoc/druntime/core/cpuid/ssse3.html"},{"doc":"Is SSE4.1 supported?","kind":"function","module":"core.cpuid","name":"sse41","package":"druntime","parentType":"","signature":"bool sse41()","url":"/ddoc/druntime/core/cpuid/sse41.html"},{"doc":"Is SSE4.2 supported?","kind":"function","module":"core.cpuid","name":"sse42","package":"druntime","parentType":"","signature":"bool sse42()","url":"/ddoc/druntime/core/cpuid/sse42.html"},{"doc":"Is SSE4a supported?","kind":"function","module":"core.cpuid","name":"sse4a","package":"druntime","parentType":"","signature":"bool sse4a()","url":"/ddoc/druntime/core/cpuid/sse4a.html"},{"doc":"Is AES supported","kind":"function","module":"core.cpuid","name":"aes","package":"druntime","parentType":"","signature":"bool aes()","url":"/ddoc/druntime/core/cpuid/aes.html"},{"doc":"Is pclmulqdq supported","kind":"function","module":"core.cpuid","name":"hasPclmulqdq","package":"druntime","parentType":"","signature":"bool hasPclmulqdq()","url":"/ddoc/druntime/core/cpuid/hasPclmulqdq.html"},{"doc":"Is rdrand supported","kind":"function","module":"core.cpuid","name":"hasRdrand","package":"druntime","parentType":"","signature":"bool hasRdrand()","url":"/ddoc/druntime/core/cpuid/hasRdrand.html"},{"doc":"Is AVX supported","kind":"function","module":"core.cpuid","name":"avx","package":"druntime","parentType":"","signature":"bool avx()","url":"/ddoc/druntime/core/cpuid/avx.html"},{"doc":"Is VEX-Encoded AES supported","kind":"function","module":"core.cpuid","name":"vaes","package":"druntime","parentType":"","signature":"bool vaes()","url":"/ddoc/druntime/core/cpuid/vaes.html"},{"doc":"Is vpclmulqdq supported","kind":"function","module":"core.cpuid","name":"hasVpclmulqdq","package":"druntime","parentType":"","signature":"bool hasVpclmulqdq(){return","url":"/ddoc/druntime/core/cpuid/hasVpclmulqdq.html"},{"doc":"Is FMA supported","kind":"function","module":"core.cpuid","name":"fma","package":"druntime","parentType":"","signature":"bool fma()","url":"/ddoc/druntime/core/cpuid/fma.html"},{"doc":"Is FP16C supported","kind":"function","module":"core.cpuid","name":"fp16c","package":"druntime","parentType":"","signature":"bool fp16c()","url":"/ddoc/druntime/core/cpuid/fp16c.html"},{"doc":"Is AVX2 supported","kind":"function","module":"core.cpuid","name":"avx2","package":"druntime","parentType":"","signature":"bool avx2()","url":"/ddoc/druntime/core/cpuid/avx2.html"},{"doc":"Is HLE (hardware lock elision) supported","kind":"function","module":"core.cpuid","name":"hle","package":"druntime","parentType":"","signature":"bool hle()","url":"/ddoc/druntime/core/cpuid/hle.html"},{"doc":"Is RTM (restricted transactional memory) supported","kind":"function","module":"core.cpuid","name":"rtm","package":"druntime","parentType":"","signature":"bool rtm()","url":"/ddoc/druntime/core/cpuid/rtm.html"},{"doc":"Is AVX512F supported","kind":"function","module":"core.cpuid","name":"avx512f","package":"druntime","parentType":"","signature":"bool avx512f()","url":"/ddoc/druntime/core/cpuid/avx512f.html"},{"doc":"Is rdseed supported","kind":"function","module":"core.cpuid","name":"hasRdseed","package":"druntime","parentType":"","signature":"bool hasRdseed()","url":"/ddoc/druntime/core/cpuid/hasRdseed.html"},{"doc":"Is SHA supported","kind":"function","module":"core.cpuid","name":"hasSha","package":"druntime","parentType":"","signature":"bool hasSha()","url":"/ddoc/druntime/core/cpuid/hasSha.html"},{"doc":"Is AMD 3DNOW supported?","kind":"function","module":"core.cpuid","name":"amd3dnow","package":"druntime","parentType":"","signature":"bool amd3dnow()","url":"/ddoc/druntime/core/cpuid/amd3dnow.html"},{"doc":"Is AMD 3DNOW Ext supported?","kind":"function","module":"core.cpuid","name":"amd3dnowExt","package":"druntime","parentType":"","signature":"bool amd3dnowExt()","url":"/ddoc/druntime/core/cpuid/amd3dnowExt.html"},{"doc":"Are AMD extensions to MMX supported?","kind":"function","module":"core.cpuid","name":"amdMmx","package":"druntime","parentType":"","signature":"bool amdMmx()","url":"/ddoc/druntime/core/cpuid/amdMmx.html"},{"doc":"Is fxsave/fxrstor supported?","kind":"function","module":"core.cpuid","name":"hasFxsr","package":"druntime","parentType":"","signature":"bool hasFxsr()","url":"/ddoc/druntime/core/cpuid/hasFxsr.html"},{"doc":"Is cmov supported?","kind":"function","module":"core.cpuid","name":"hasCmov","package":"druntime","parentType":"","signature":"bool hasCmov()","url":"/ddoc/druntime/core/cpuid/hasCmov.html"},{"doc":"Is rdtsc supported?","kind":"function","module":"core.cpuid","name":"hasRdtsc","package":"druntime","parentType":"","signature":"bool hasRdtsc()","url":"/ddoc/druntime/core/cpuid/hasRdtsc.html"},{"doc":"Is cmpxchg8b supported?","kind":"function","module":"core.cpuid","name":"hasCmpxchg8b","package":"druntime","parentType":"","signature":"bool hasCmpxchg8b()","url":"/ddoc/druntime/core/cpuid/hasCmpxchg8b.html"},{"doc":"Is cmpxchg8b supported?","kind":"function","module":"core.cpuid","name":"hasCmpxchg16b","package":"druntime","parentType":"","signature":"bool hasCmpxchg16b()","url":"/ddoc/druntime/core/cpuid/hasCmpxchg16b.html"},{"doc":"Is SYSENTER/SYSEXIT supported?","kind":"function","module":"core.cpuid","name":"hasSysEnterSysExit","package":"druntime","parentType":"","signature":"bool hasSysEnterSysExit()","url":"/ddoc/druntime/core/cpuid/hasSysEnterSysExit.html"},{"doc":"Is 3DNow prefetch supported?","kind":"function","module":"core.cpuid","name":"has3dnowPrefetch","package":"druntime","parentType":"","signature":"bool has3dnowPrefetch()","url":"/ddoc/druntime/core/cpuid/has3dnowPrefetch.html"},{"doc":"Are LAHF and SAHF supported in 64-bit mode?","kind":"function","module":"core.cpuid","name":"hasLahfSahf","package":"druntime","parentType":"","signature":"bool hasLahfSahf()","url":"/ddoc/druntime/core/cpuid/hasLahfSahf.html"},{"doc":"Is POPCNT supported?","kind":"function","module":"core.cpuid","name":"hasPopcnt","package":"druntime","parentType":"","signature":"bool hasPopcnt()","url":"/ddoc/druntime/core/cpuid/hasPopcnt.html"},{"doc":"Is LZCNT supported?","kind":"function","module":"core.cpuid","name":"hasLzcnt","package":"druntime","parentType":"","signature":"bool hasLzcnt()","url":"/ddoc/druntime/core/cpuid/hasLzcnt.html"},{"doc":"Is this an Intel64 or AMD 64?","kind":"function","module":"core.cpuid","name":"isX86_64","package":"druntime","parentType":"","signature":"bool isX86_64()","url":"/ddoc/druntime/core/cpuid/isX86_64.html"},{"doc":"Is this an IA64 (Itanium) processor?","kind":"function","module":"core.cpuid","name":"isItanium","package":"druntime","parentType":"","signature":"bool isItanium()","url":"/ddoc/druntime/core/cpuid/isItanium.html"},{"doc":"Is hyperthreading supported?","kind":"function","module":"core.cpuid","name":"hyperThreading","package":"druntime","parentType":"","signature":"bool hyperThreading()","url":"/ddoc/druntime/core/cpuid/hyperThreading.html"},{"doc":"Returns number of threads per CPU","kind":"function","module":"core.cpuid","name":"threadsPerCPU","package":"druntime","parentType":"","signature":"uint threadsPerCPU()","url":"/ddoc/druntime/core/cpuid/threadsPerCPU.html"},{"doc":"Returns number of cores in CPU","kind":"function","module":"core.cpuid","name":"coresPerCPU","package":"druntime","parentType":"","signature":"uint coresPerCPU()","url":"/ddoc/druntime/core/cpuid/coresPerCPU.html"},{"doc":"Optimisation hints for assembly code.","kind":"function","module":"core.cpuid","name":"preferAthlon","package":"druntime","parentType":"","signature":"bool preferAthlon()","url":"/ddoc/druntime/core/cpuid/preferAthlon.html"},{"doc":"Does this CPU perform better on Pentium4 code than PentiumPro..Core2 code?","kind":"function","module":"core.cpuid","name":"preferPentium4","package":"druntime","parentType":"","signature":"bool preferPentium4()","url":"/ddoc/druntime/core/cpuid/preferPentium4.html"},{"doc":"Does this CPU perform better on Pentium I code than Pentium Pro code?","kind":"function","module":"core.cpuid","name":"preferPentium1","package":"druntime","parentType":"","signature":"bool preferPentium1()","url":"/ddoc/druntime/core/cpuid/preferPentium1.html"},{"doc":"The number of cache levels in the CPU.","kind":"function","module":"core.cpuid","name":"cacheLevels","package":"druntime","parentType":"","signature":"uint cacheLevels()","url":"/ddoc/druntime/core/cpuid/cacheLevels.html"},{"doc":"","kind":"function","module":"core.cpuid","name":"getCpuFeatures","package":"druntime","parentType":"","signature":"CpuFeatures * getCpuFeatures()","url":"/ddoc/druntime/core/cpuid/getCpuFeatures.html"},{"doc":"","kind":"function","module":"core.cpuid","name":"hyperThreadingBit","package":"druntime","parentType":"","signature":"bool hyperThreadingBit()","url":"/ddoc/druntime/core/cpuid/hyperThreadingBit.html"},{"doc":"","kind":"function","module":"core.cpuid","name":"cpuid_initialization","package":"druntime","parentType":"","signature":"void cpuid_initialization()","url":"/ddoc/druntime/core/cpuid/cpuid_initialization.html"},{"doc":"Cache size and behaviour","kind":"struct","module":"core.cpuid","name":"CacheInfo","package":"druntime","parentType":"","signature":"CacheInfo","url":"/ddoc/druntime/core/cpuid.html#CacheInfo"},{"doc":"","kind":"struct","module":"core.cpuid","name":"CpuFeatures","package":"druntime","parentType":"","signature":"CpuFeatures","url":"/ddoc/druntime/core/cpuid.html#CpuFeatures"},{"doc":"$(RED Scheduled for deprecation. Please use $(D dataCaches) instead.)","kind":"variable","module":"core.cpuid","name":"datacache","package":"druntime","parentType":"","signature":"CacheInfo[5] datacache","url":"/ddoc/druntime/core/cpuid.html#datacache"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_dataCaches","package":"druntime","parentType":"","signature":"const(CacheInfo)[5] _dataCaches","url":"/ddoc/druntime/core/cpuid.html#_dataCaches"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_vendor","package":"druntime","parentType":"","signature":"string _vendor","url":"/ddoc/druntime/core/cpuid.html#_vendor"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_processor","package":"druntime","parentType":"","signature":"string _processor","url":"/ddoc/druntime/core/cpuid.html#_processor"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_x87onChip","package":"druntime","parentType":"","signature":"bool _x87onChip","url":"/ddoc/druntime/core/cpuid.html#_x87onChip"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_mmx","package":"druntime","parentType":"","signature":"bool _mmx","url":"/ddoc/druntime/core/cpuid.html#_mmx"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse","package":"druntime","parentType":"","signature":"bool _sse","url":"/ddoc/druntime/core/cpuid.html#_sse"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse2","package":"druntime","parentType":"","signature":"bool _sse2","url":"/ddoc/druntime/core/cpuid.html#_sse2"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse3","package":"druntime","parentType":"","signature":"bool _sse3","url":"/ddoc/druntime/core/cpuid.html#_sse3"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_ssse3","package":"druntime","parentType":"","signature":"bool _ssse3","url":"/ddoc/druntime/core/cpuid.html#_ssse3"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse41","package":"druntime","parentType":"","signature":"bool _sse41","url":"/ddoc/druntime/core/cpuid.html#_sse41"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse42","package":"druntime","parentType":"","signature":"bool _sse42","url":"/ddoc/druntime/core/cpuid.html#_sse42"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_sse4a","package":"druntime","parentType":"","signature":"bool _sse4a","url":"/ddoc/druntime/core/cpuid.html#_sse4a"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_aes","package":"druntime","parentType":"","signature":"bool _aes","url":"/ddoc/druntime/core/cpuid.html#_aes"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasPclmulqdq","package":"druntime","parentType":"","signature":"bool _hasPclmulqdq","url":"/ddoc/druntime/core/cpuid.html#_hasPclmulqdq"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasRdrand","package":"druntime","parentType":"","signature":"bool _hasRdrand","url":"/ddoc/druntime/core/cpuid.html#_hasRdrand"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_avx","package":"druntime","parentType":"","signature":"bool _avx","url":"/ddoc/druntime/core/cpuid.html#_avx"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_vaes","package":"druntime","parentType":"","signature":"bool _vaes","url":"/ddoc/druntime/core/cpuid.html#_vaes"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasVpclmulqdq","package":"druntime","parentType":"","signature":"bool _hasVpclmulqdq","url":"/ddoc/druntime/core/cpuid.html#_hasVpclmulqdq"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_fma","package":"druntime","parentType":"","signature":"bool _fma","url":"/ddoc/druntime/core/cpuid.html#_fma"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_fp16c","package":"druntime","parentType":"","signature":"bool _fp16c","url":"/ddoc/druntime/core/cpuid.html#_fp16c"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_avx2","package":"druntime","parentType":"","signature":"bool _avx2","url":"/ddoc/druntime/core/cpuid.html#_avx2"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hle","package":"druntime","parentType":"","signature":"bool _hle","url":"/ddoc/druntime/core/cpuid.html#_hle"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_rtm","package":"druntime","parentType":"","signature":"bool _rtm","url":"/ddoc/druntime/core/cpuid.html#_rtm"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_avx512f","package":"druntime","parentType":"","signature":"bool _avx512f","url":"/ddoc/druntime/core/cpuid.html#_avx512f"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasRdseed","package":"druntime","parentType":"","signature":"bool _hasRdseed","url":"/ddoc/druntime/core/cpuid.html#_hasRdseed"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasSha","package":"druntime","parentType":"","signature":"bool _hasSha","url":"/ddoc/druntime/core/cpuid.html#_hasSha"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_amd3dnow","package":"druntime","parentType":"","signature":"bool _amd3dnow","url":"/ddoc/druntime/core/cpuid.html#_amd3dnow"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_amd3dnowExt","package":"druntime","parentType":"","signature":"bool _amd3dnowExt","url":"/ddoc/druntime/core/cpuid.html#_amd3dnowExt"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_amdMmx","package":"druntime","parentType":"","signature":"bool _amdMmx","url":"/ddoc/druntime/core/cpuid.html#_amdMmx"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasFxsr","package":"druntime","parentType":"","signature":"bool _hasFxsr","url":"/ddoc/druntime/core/cpuid.html#_hasFxsr"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasCmov","package":"druntime","parentType":"","signature":"bool _hasCmov","url":"/ddoc/druntime/core/cpuid.html#_hasCmov"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasRdtsc","package":"druntime","parentType":"","signature":"bool _hasRdtsc","url":"/ddoc/druntime/core/cpuid.html#_hasRdtsc"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasCmpxchg8b","package":"druntime","parentType":"","signature":"bool _hasCmpxchg8b","url":"/ddoc/druntime/core/cpuid.html#_hasCmpxchg8b"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasCmpxchg16b","package":"druntime","parentType":"","signature":"bool _hasCmpxchg16b","url":"/ddoc/druntime/core/cpuid.html#_hasCmpxchg16b"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasSysEnterSysExit","package":"druntime","parentType":"","signature":"bool _hasSysEnterSysExit","url":"/ddoc/druntime/core/cpuid.html#_hasSysEnterSysExit"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_has3dnowPrefetch","package":"druntime","parentType":"","signature":"bool _has3dnowPrefetch","url":"/ddoc/druntime/core/cpuid.html#_has3dnowPrefetch"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasLahfSahf","package":"druntime","parentType":"","signature":"bool _hasLahfSahf","url":"/ddoc/druntime/core/cpuid.html#_hasLahfSahf"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasPopcnt","package":"druntime","parentType":"","signature":"bool _hasPopcnt","url":"/ddoc/druntime/core/cpuid.html#_hasPopcnt"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hasLzcnt","package":"druntime","parentType":"","signature":"bool _hasLzcnt","url":"/ddoc/druntime/core/cpuid.html#_hasLzcnt"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_isX86_64","package":"druntime","parentType":"","signature":"bool _isX86_64","url":"/ddoc/druntime/core/cpuid.html#_isX86_64"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_isItanium","package":"druntime","parentType":"","signature":"bool _isItanium","url":"/ddoc/druntime/core/cpuid.html#_isItanium"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_hyperThreading","package":"druntime","parentType":"","signature":"bool _hyperThreading","url":"/ddoc/druntime/core/cpuid.html#_hyperThreading"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_threadsPerCPU","package":"druntime","parentType":"","signature":"uint _threadsPerCPU","url":"/ddoc/druntime/core/cpuid.html#_threadsPerCPU"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_coresPerCPU","package":"druntime","parentType":"","signature":"uint _coresPerCPU","url":"/ddoc/druntime/core/cpuid.html#_coresPerCPU"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_preferAthlon","package":"druntime","parentType":"","signature":"bool _preferAthlon","url":"/ddoc/druntime/core/cpuid.html#_preferAthlon"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_preferPentium4","package":"druntime","parentType":"","signature":"bool _preferPentium4","url":"/ddoc/druntime/core/cpuid.html#_preferPentium4"},{"doc":"","kind":"variable","module":"core.cpuid","name":"_preferPentium1","package":"druntime","parentType":"","signature":"bool _preferPentium1","url":"/ddoc/druntime/core/cpuid.html#_preferPentium1"},{"doc":"$(RED Warning: This field will be turned into a property in a future release.)","kind":"variable","module":"core.cpuid","name":"stepping","package":"druntime","parentType":"","signature":"uint stepping","url":"/ddoc/druntime/core/cpuid.html#stepping"},{"doc":"$(RED This field has been deprecated. Please use $(D cacheLevels) instead.)","kind":"variable","module":"core.cpuid","name":"numCacheLevels","package":"druntime","parentType":"","signature":"uint numCacheLevels","url":"/ddoc/druntime/core/cpuid.html#numCacheLevels"},{"doc":"","kind":"variable","module":"core.cpuid","name":"cpuFeatures","package":"druntime","parentType":"","signature":"CpuFeatures cpuFeatures","url":"/ddoc/druntime/core/cpuid.html#cpuFeatures"},{"doc":"The demangle module converts mangled D symbols to a representation similar to what would have existed in code.","kind":"module","module":"core.demangle","name":"core.demangle","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/demangle.html"},{"doc":"Demangles D/C++ mangled names.  If it is not a D/C++ mangled name, it returns its argument name.","kind":"function","module":"core.demangle","name":"demangle","package":"druntime","parentType":"","signature":"char[] demangle(return  scope  const(char)[]  buf,  return  scope  char[]  dst =  null,  CXX_DEMANGLER __cxa_demangle =  null)","url":"/ddoc/druntime/core/demangle/demangle.html"},{"doc":"Demangles a D mangled type.","kind":"function","module":"core.demangle","name":"demangleType","package":"druntime","parentType":"","signature":"char[] demangleType(  const(char)[]  buf,  char[]  dst =  null )","url":"/ddoc/druntime/core/demangle/demangleType.html"},{"doc":"reencode a mangled symbol name that might include duplicate occurrences of the same identifier by replacing all but the first occurence with a back...","kind":"function","module":"core.demangle","name":"reencodeMangled","package":"druntime","parentType":"","signature":"char[] reencodeMangled(return  scope  const(char)[]  mangled)","url":"/ddoc/druntime/core/demangle/reencodeMangled.html"},{"doc":"Mangles a D symbol.","kind":"function","module":"core.demangle","name":"mangle","package":"druntime","parentType":"","signature":"char[] mangle(T)(return  scope  const(char)[]  fqn,  return  scope  char[]  dst =  null)","url":"/ddoc/druntime/core/demangle/mangle.html"},{"doc":"Mangles a D function.","kind":"function","module":"core.demangle","name":"mangleFunc","package":"druntime","parentType":"","signature":"char[] mangleFunc(T: FT *,  FT)(return  scope  const(char)[]  fqn,  return  scope  char[]  dst =  null) if (is(FT ==  function))","url":"/ddoc/druntime/core/demangle/mangleFunc.html"},{"doc":"","kind":"function","module":"core.demangle","name":"pureReprintReal","package":"druntime","parentType":"","signature":"void pureReprintReal(char[]  nptr)","url":"/ddoc/druntime/core/demangle/pureReprintReal.html"},{"doc":"","kind":"function","module":"core.demangle","name":"fakePureReprintReal","package":"druntime","parentType":"","signature":"void fakePureReprintReal(char[]  nptr)","url":"/ddoc/druntime/core/demangle/fakePureReprintReal.html"},{"doc":"","kind":"function","module":"core.demangle","name":"toStringConsume","package":"druntime","parentType":"","signature":"string toStringConsume(immutable  ManglingFlagInfo[]  infos,  ref  ushort  base)","url":"/ddoc/druntime/core/demangle/toStringConsume.html"},{"doc":"Returns: a CXX_DEMANGLER if a C++ stdlib is loaded","kind":"function","module":"core.demangle","name":"getCXXDemangler","package":"druntime","parentType":"","signature":"CXX_DEMANGLER getCXXDemangler()","url":"/ddoc/druntime/core/demangle/getCXXDemangler.html"},{"doc":"Demangles C++ mangled names.  If it is not a C++ mangled name, it returns its argument name.","kind":"function","module":"core.demangle","name":"demangleCXX","package":"druntime","parentType":"","signature":"char[] demangleCXX(return  scope  const(char)[]  buf,  CXX_DEMANGLER __cxa_demangle,  return  scope  char[]  dst =  null,)","url":"/ddoc/druntime/core/demangle/demangleCXX.html"},{"doc":"","kind":"alias","module":"core.demangle","name":"CXX_DEMANGLER","package":"druntime","parentType":"","signature":"CXX_DEMANGLER = char *  function (const  char *  mangled_name,\n                                                 char *  output_buffer,\n                                                 size_t *  length,\n                                                 int *  status)  nothrow  pure @trusted","url":"/ddoc/druntime/core/demangle.html#CXX_DEMANGLER"},{"doc":"","kind":"struct","module":"core.demangle","name":"NoHooks","package":"druntime","parentType":"","signature":"NoHooks","url":"/ddoc/druntime/core/demangle.html#NoHooks"},{"doc":"","kind":"struct","module":"core.demangle","name":"Demangle","package":"druntime","parentType":"","signature":"Demangle(Hooks =  NoHooks)","url":"/ddoc/druntime/core/demangle.html#Demangle"},{"doc":"","kind":"method","module":"core.demangle","name":"isAlpha","package":"druntime","parentType":"Demangle","signature":"bool isAlpha(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.isAlpha.html"},{"doc":"","kind":"method","module":"core.demangle","name":"isDigit","package":"druntime","parentType":"Demangle","signature":"bool isDigit(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.isDigit.html"},{"doc":"","kind":"method","module":"core.demangle","name":"isHexDigit","package":"druntime","parentType":"Demangle","signature":"bool isHexDigit(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.isHexDigit.html"},{"doc":"","kind":"method","module":"core.demangle","name":"ascii2hex","package":"druntime","parentType":"Demangle","signature":"ubyte ascii2hex(  out  bool  errStatus,  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.ascii2hex.html"},{"doc":"","kind":"method","module":"core.demangle","name":"shift","package":"druntime","parentType":"Demangle","signature":"BufSlice shift(scope  const  BufSlice val)","url":"/ddoc/druntime/core/demangle/Demangle.shift.html"},{"doc":"","kind":"method","module":"core.demangle","name":"putComma","package":"druntime","parentType":"Demangle","signature":"void putComma(size_t n)","url":"/ddoc/druntime/core/demangle/Demangle.putComma.html"},{"doc":"","kind":"method","module":"core.demangle","name":"put","package":"druntime","parentType":"Demangle","signature":"void put(char  c)","url":"/ddoc/druntime/core/demangle/Demangle.put.html"},{"doc":"","kind":"method","module":"core.demangle","name":"put","package":"druntime","parentType":"Demangle","signature":"void put(scope  BufSlice val)","url":"/ddoc/druntime/core/demangle/Demangle.put.html"},{"doc":"","kind":"method","module":"core.demangle","name":"put","package":"druntime","parentType":"Demangle","signature":"void put(scope  const(char)[]  val)","url":"/ddoc/druntime/core/demangle/Demangle.put.html"},{"doc":"","kind":"method","module":"core.demangle","name":"putAsHex","package":"druntime","parentType":"Demangle","signature":"void putAsHex(  size_t val,  int  width =  0 )","url":"/ddoc/druntime/core/demangle/Demangle.putAsHex.html"},{"doc":"","kind":"method","module":"core.demangle","name":"pad","package":"druntime","parentType":"Demangle","signature":"void pad(  const(char)[]  val )","url":"/ddoc/druntime/core/demangle/Demangle.pad.html"},{"doc":"","kind":"method","module":"core.demangle","name":"silent","package":"druntime","parentType":"Demangle","signature":"void silent(  out  bool  err_status,  void  delegate(out  bool  err_status)  pure @safe nothrow  dg )","url":"/ddoc/druntime/core/demangle/Demangle.silent.html"},{"doc":"","kind":"method","module":"core.demangle","name":"empty","package":"druntime","parentType":"Demangle","signature":"bool empty()","url":"/ddoc/druntime/core/demangle/Demangle.empty.html"},{"doc":"","kind":"method","module":"core.demangle","name":"front","package":"druntime","parentType":"Demangle","signature":"char front()","url":"/ddoc/druntime/core/demangle/Demangle.front.html"},{"doc":"","kind":"method","module":"core.demangle","name":"peek","package":"druntime","parentType":"Demangle","signature":"char peek(  size_t n )","url":"/ddoc/druntime/core/demangle/Demangle.peek.html"},{"doc":"","kind":"method","module":"core.demangle","name":"test","package":"druntime","parentType":"Demangle","signature":"bool test(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.test.html"},{"doc":"","kind":"method","module":"core.demangle","name":"popFront","package":"druntime","parentType":"Demangle","signature":"void popFront()","url":"/ddoc/druntime/core/demangle/Demangle.popFront.html"},{"doc":"","kind":"method","module":"core.demangle","name":"popFront","package":"druntime","parentType":"Demangle","signature":"void popFront(int  i)","url":"/ddoc/druntime/core/demangle/Demangle.popFront.html"},{"doc":"","kind":"method","module":"core.demangle","name":"match","package":"druntime","parentType":"Demangle","signature":"bool match(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.match.html"},{"doc":"","kind":"method","module":"core.demangle","name":"match","package":"druntime","parentType":"Demangle","signature":"bool match(  const(char)[]  val )","url":"/ddoc/druntime/core/demangle/Demangle.match.html"},{"doc":"","kind":"method","module":"core.demangle","name":"eat","package":"druntime","parentType":"Demangle","signature":"void eat(  char  val )","url":"/ddoc/druntime/core/demangle/Demangle.eat.html"},{"doc":"","kind":"method","module":"core.demangle","name":"isSymbolNameFront","package":"druntime","parentType":"Demangle","signature":"bool isSymbolNameFront(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.isSymbolNameFront.html"},{"doc":"","kind":"method","module":"core.demangle","name":"peekBackref","package":"druntime","parentType":"Demangle","signature":"char peekBackref()","url":"/ddoc/druntime/core/demangle/Demangle.peekBackref.html"},{"doc":"","kind":"method","module":"core.demangle","name":"decodeBackref","package":"druntime","parentType":"Demangle","signature":"size_t decodeBackref(size_t peekAt =  0)()","url":"/ddoc/druntime/core/demangle/Demangle.decodeBackref.html"},{"doc":"","kind":"method","module":"core.demangle","name":"sliceNumber","package":"druntime","parentType":"Demangle","signature":"const(char)[] sliceNumber()","url":"/ddoc/druntime/core/demangle/Demangle.sliceNumber.html"},{"doc":"","kind":"method","module":"core.demangle","name":"decodeNumber","package":"druntime","parentType":"Demangle","signature":"size_t decodeNumber(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.decodeNumber.html"},{"doc":"","kind":"method","module":"core.demangle","name":"decodeNumber","package":"druntime","parentType":"Demangle","signature":"size_t decodeNumber(  out  bool  errStatus,  scope  const(char)[]  num )","url":"/ddoc/druntime/core/demangle/Demangle.decodeNumber.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseReal","package":"druntime","parentType":"Demangle","signature":"void parseReal(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseReal.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseLName","package":"druntime","parentType":"Demangle","signature":"void parseLName(out  string errMsg)","url":"/ddoc/druntime/core/demangle/Demangle.parseLName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseType","package":"druntime","parentType":"Demangle","signature":"BufSlice parseType(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseType.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseCallConvention","package":"druntime","parentType":"Demangle","signature":"void parseCallConvention(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseCallConvention.html"},{"doc":"Returns: Flags of `TypeCtor`","kind":"method","module":"core.demangle","name":"parseModifier","package":"druntime","parentType":"Demangle","signature":"ushort parseModifier()","url":"/ddoc/druntime/core/demangle/Demangle.parseModifier.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseFuncAttr","package":"druntime","parentType":"Demangle","signature":"ushort parseFuncAttr(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseFuncAttr.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseFuncArguments","package":"druntime","parentType":"Demangle","signature":"void parseFuncArguments(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseFuncArguments.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseTypeFunction","package":"druntime","parentType":"Demangle","signature":"BufSlice parseTypeFunction(out  bool  errStatus,  IsDelegate isdg =  IsDelegate.no)","url":"/ddoc/druntime/core/demangle/Demangle.parseTypeFunction.html"},{"doc":"","kind":"method","module":"core.demangle","name":"isCallConvention","package":"druntime","parentType":"Demangle","signature":"bool isCallConvention(  char  ch )","url":"/ddoc/druntime/core/demangle/Demangle.isCallConvention.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseValue","package":"druntime","parentType":"Demangle","signature":"void parseValue(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseValue.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseValue","package":"druntime","parentType":"Demangle","signature":"void parseValue(out  bool  errStatus,  scope  BufSlice name,  char  type =  '\\0' )","url":"/ddoc/druntime/core/demangle/Demangle.parseValue.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseIntegerValue","package":"druntime","parentType":"Demangle","signature":"void parseIntegerValue(  out  bool  errStatus,  scope  BufSlice name,  char  type =  '\\0' )","url":"/ddoc/druntime/core/demangle/Demangle.parseIntegerValue.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseTemplateArgs","package":"druntime","parentType":"Demangle","signature":"void parseTemplateArgs(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseTemplateArgs.html"},{"doc":"","kind":"method","module":"core.demangle","name":"mayBeMangledNameArg","package":"druntime","parentType":"Demangle","signature":"bool mayBeMangledNameArg()","url":"/ddoc/druntime/core/demangle/Demangle.mayBeMangledNameArg.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseMangledNameArg","package":"druntime","parentType":"Demangle","signature":"bool parseMangledNameArg()","url":"/ddoc/druntime/core/demangle/Demangle.parseMangledNameArg.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseTemplateInstanceName","package":"druntime","parentType":"Demangle","signature":"void parseTemplateInstanceName(out  bool  errStatus,  bool  hasNumber)","url":"/ddoc/druntime/core/demangle/Demangle.parseTemplateInstanceName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"mayBeTemplateInstanceName","package":"druntime","parentType":"Demangle","signature":"bool mayBeTemplateInstanceName()","url":"/ddoc/druntime/core/demangle/Demangle.mayBeTemplateInstanceName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseSymbolName","package":"druntime","parentType":"Demangle","signature":"void parseSymbolName(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseSymbolName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseFunctionTypeNoReturn","package":"druntime","parentType":"Demangle","signature":"BufSlice parseFunctionTypeNoReturn(  bool  keepAttr =  false )","url":"/ddoc/druntime/core/demangle/Demangle.parseFunctionTypeNoReturn.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseQualifiedName","package":"druntime","parentType":"Demangle","signature":"void parseQualifiedName(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseQualifiedName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseMangledName","package":"druntime","parentType":"Demangle","signature":"void parseMangledName(  out  bool  errStatus,  bool  displayType,  size_t n =  0 )","url":"/ddoc/druntime/core/demangle/Demangle.parseMangledName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"parseMangledName","package":"druntime","parentType":"Demangle","signature":"void parseMangledName(out  bool  errStatus)","url":"/ddoc/druntime/core/demangle/Demangle.parseMangledName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"doDemangle","package":"druntime","parentType":"Demangle","signature":"char[] doDemangle(alias  FUNC)()","url":"/ddoc/druntime/core/demangle/Demangle.doDemangle.html"},{"doc":"","kind":"method","module":"core.demangle","name":"demangleName","package":"druntime","parentType":"Demangle","signature":"char[] demangleName()","url":"/ddoc/druntime/core/demangle/Demangle.demangleName.html"},{"doc":"","kind":"method","module":"core.demangle","name":"demangleType","package":"druntime","parentType":"Demangle","signature":"char[] demangleType()","url":"/ddoc/druntime/core/demangle/Demangle.demangleType.html"},{"doc":"","kind":"struct","module":"core.demangle","name":"ManglingFlagInfo","package":"druntime","parentType":"","signature":"ManglingFlagInfo","url":"/ddoc/druntime/core/demangle.html#ManglingFlagInfo"},{"doc":"","kind":"enum","module":"core.demangle","name":"TypeCtor","package":"druntime","parentType":"","signature":"TypeCtor : ushort","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"","kind":"enum_member","module":"core.demangle","name":"None","package":"druntime","parentType":"","signature":"None = 0","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"/ 'x'","kind":"enum_member","module":"core.demangle","name":"Const","package":"druntime","parentType":"","signature":"Const = (1 <<  1)","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"'y'","kind":"enum_member","module":"core.demangle","name":"Immutable","package":"druntime","parentType":"","signature":"Immutable = (1 <<  2)","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"'O'","kind":"enum_member","module":"core.demangle","name":"Shared","package":"druntime","parentType":"","signature":"Shared = (1 <<  3)","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"","kind":"enum_member","module":"core.demangle","name":"InOut","package":"druntime","parentType":"","signature":"InOut = (1 <<  4)","url":"/ddoc/druntime/core/demangle.html#TypeCtor"},{"doc":"","kind":"enum","module":"core.demangle","name":"FuncAttributes","package":"druntime","parentType":"","signature":"FuncAttributes : ushort","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"","kind":"enum_member","module":"core.demangle","name":"None","package":"druntime","parentType":"","signature":"None = 0","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'a'","kind":"enum_member","module":"core.demangle","name":"Pure","package":"druntime","parentType":"","signature":"Pure = (1 <<  1)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'b'","kind":"enum_member","module":"core.demangle","name":"Nothrow","package":"druntime","parentType":"","signature":"Nothrow = (1 <<  2)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'c'","kind":"enum_member","module":"core.demangle","name":"Ref","package":"druntime","parentType":"","signature":"Ref = (1 <<  3)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'd'","kind":"enum_member","module":"core.demangle","name":"Property","package":"druntime","parentType":"","signature":"Property = (1 <<  4)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'e'","kind":"enum_member","module":"core.demangle","name":"Trusted","package":"druntime","parentType":"","signature":"Trusted = (1 <<  5)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'f'","kind":"enum_member","module":"core.demangle","name":"Safe","package":"druntime","parentType":"","signature":"Safe = (1 <<  6)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'i'","kind":"enum_member","module":"core.demangle","name":"NoGC","package":"druntime","parentType":"","signature":"NoGC = (1 <<  7)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'j'","kind":"enum_member","module":"core.demangle","name":"Return","package":"druntime","parentType":"","signature":"Return = (1 <<  8)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'l'","kind":"enum_member","module":"core.demangle","name":"Scope","package":"druntime","parentType":"","signature":"Scope = (1 <<  9)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"/ 'm'","kind":"enum_member","module":"core.demangle","name":"Live","package":"druntime","parentType":"","signature":"Live = (1 <<  10)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"Their order matter","kind":"enum_member","module":"core.demangle","name":"ReturnScope","package":"druntime","parentType":"","signature":"ReturnScope = (1 <<  11)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"","kind":"enum_member","module":"core.demangle","name":"ScopeReturn","package":"druntime","parentType":"","signature":"ScopeReturn = (1 <<  12)","url":"/ddoc/druntime/core/demangle.html#FuncAttributes"},{"doc":"","kind":"struct","module":"core.demangle","name":"Buffer","package":"druntime","parentType":"","signature":"Buffer","url":"/ddoc/druntime/core/demangle.html#Buffer"},{"doc":"","kind":"method","module":"core.demangle","name":"length","package":"druntime","parentType":"Buffer","signature":"size_t length()","url":"/ddoc/druntime/core/demangle/Buffer.length.html"},{"doc":"","kind":"method","module":"core.demangle","name":"opSlice","package":"druntime","parentType":"Buffer","signature":"BufSlice opSlice(size_t from,  size_t to)","url":"/ddoc/druntime/core/demangle/Buffer.opSlice.html"},{"doc":"","kind":"method","module":"core.demangle","name":"contains","package":"druntime","parentType":"Buffer","signature":"bool contains(scope  const(char)[]  a,  scope  const  BufSlice b)","url":"/ddoc/druntime/core/demangle/Buffer.contains.html"},{"doc":"","kind":"method","module":"core.demangle","name":"copyInput","package":"druntime","parentType":"Buffer","signature":"char[] copyInput(scope  const(char)[]  buf)","url":"/ddoc/druntime/core/demangle/Buffer.copyInput.html"},{"doc":"","kind":"method","module":"core.demangle","name":"checkAndStretchBuf","package":"druntime","parentType":"Buffer","signature":"void checkAndStretchBuf(size_t len_to_add)","url":"/ddoc/druntime/core/demangle/Buffer.checkAndStretchBuf.html"},{"doc":"","kind":"method","module":"core.demangle","name":"shift","package":"druntime","parentType":"Buffer","signature":"BufSlice shift(scope  const  BufSlice val)","url":"/ddoc/druntime/core/demangle/Buffer.shift.html"},{"doc":"","kind":"method","module":"core.demangle","name":"remove","package":"druntime","parentType":"Buffer","signature":"void remove(scope  BufSlice val)","url":"/ddoc/druntime/core/demangle/Buffer.remove.html"},{"doc":"","kind":"method","module":"core.demangle","name":"append","package":"druntime","parentType":"Buffer","signature":"void append(scope  const(char)[]  val)","url":"/ddoc/druntime/core/demangle/Buffer.append.html"},{"doc":"","kind":"method","module":"core.demangle","name":"bslice","package":"druntime","parentType":"Buffer","signature":"scope bslice(size_t from,  size_t to)","url":"/ddoc/druntime/core/demangle/Buffer.bslice.html"},{"doc":"","kind":"method","module":"core.demangle","name":"bslice_empty","package":"druntime","parentType":"Buffer","signature":"static scope bslice_empty()","url":"/ddoc/druntime/core/demangle/Buffer.bslice_empty.html"},{"doc":"","kind":"struct","module":"core.demangle","name":"BufSlice","package":"druntime","parentType":"","signature":"BufSlice","url":"/ddoc/druntime/core/demangle.html#BufSlice"},{"doc":"","kind":"method","module":"core.demangle","name":"getSlice","package":"druntime","parentType":"BufSlice","signature":"auto getSlice()","url":"/ddoc/druntime/core/demangle/BufSlice.getSlice.html"},{"doc":"","kind":"method","module":"core.demangle","name":"length","package":"druntime","parentType":"BufSlice","signature":"size_t length()","url":"/ddoc/druntime/core/demangle/BufSlice.length.html"},{"doc":"","kind":"template","module":"core.demangle","name":"isExternD","package":"druntime","parentType":"","signature":"isExternD(FT)","url":"/ddoc/druntime/core/demangle.html#isExternD"},{"doc":"","kind":"template","module":"core.demangle","name":"isExternCPP","package":"druntime","parentType":"","signature":"isExternCPP(FT)","url":"/ddoc/druntime/core/demangle.html#isExternCPP"},{"doc":"","kind":"template","module":"core.demangle","name":"hasPlainMangling","package":"druntime","parentType":"","signature":"hasPlainMangling(FT)","url":"/ddoc/druntime/core/demangle.html#hasPlainMangling"},{"doc":"","kind":"variable","module":"core.demangle","name":"hasTypeBackRef","package":"druntime","parentType":"","signature":"hasTypeBackRef","url":"/ddoc/druntime/core/demangle.html#hasTypeBackRef"},{"doc":"","kind":"variable","module":"core.demangle","name":"typeCtors","package":"druntime","parentType":"","signature":"ManglingFlagInfo[] typeCtors","url":"/ddoc/druntime/core/demangle.html#typeCtors"},{"doc":"","kind":"variable","module":"core.demangle","name":"funcAttrs","package":"druntime","parentType":"","signature":"ManglingFlagInfo[] funcAttrs","url":"/ddoc/druntime/core/demangle.html#funcAttrs"},{"doc":"","kind":"variable","module":"core.demangle","name":"__cxa_demangle","package":"druntime","parentType":"","signature":"CXX_DEMANGLER __cxa_demangle","url":"/ddoc/druntime/core/demangle.html#__cxa_demangle"},{"doc":"The exception module defines all system-level exceptions and provides a mechanism to alter system-level error handling.","kind":"module","module":"core.exception","name":"core.exception","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/exception.html"},{"doc":"","kind":"function","module":"core.exception","name":"__switch_errorT","package":"druntime","parentType":"","signature":"void __switch_errorT()(string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/exception/__switch_errorT.html"},{"doc":"Mini `std.range.primitives: put` for constructor of ArraySliceError / ArrayIndexError","kind":"function","module":"core.exception","name":"rangeMsgPut","package":"druntime","parentType":"","signature":"void rangeMsgPut(ref  char[]  r,  scope  const(char)[]  e)","url":"/ddoc/druntime/core/exception/rangeMsgPut.html"},{"doc":"ditto","kind":"function","module":"core.exception","name":"assertHandler","package":"druntime","parentType":"","signature":"AssertHandler assertHandler()","url":"/ddoc/druntime/core/exception/assertHandler.html"},{"doc":"ditto","kind":"function","module":"core.exception","name":"assertHandler","package":"druntime","parentType":"","signature":"void assertHandler(AssertHandler handler)","url":"/ddoc/druntime/core/exception/assertHandler.html"},{"doc":"A callback for assert errors in D.  The user-supplied assert handler will be called if one has been supplied, otherwise an $(LREF AssertError) will...","kind":"function","module":"core.exception","name":"onAssertError","package":"druntime","parentType":"","signature":"void onAssertError(  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onAssertError.html"},{"doc":"A callback for assert errors in D.  The user-supplied assert handler will be called if one has been supplied, otherwise an $(LREF AssertError) will...","kind":"function","module":"core.exception","name":"onAssertErrorMsg","package":"druntime","parentType":"","signature":"void onAssertErrorMsg(  string file,  size_t line,  string msg )","url":"/ddoc/druntime/core/exception/onAssertErrorMsg.html"},{"doc":"A callback for unittest errors in D.  The user-supplied unittest handler will be called if one has been supplied, otherwise the error will be writt...","kind":"function","module":"core.exception","name":"onUnittestErrorMsg","package":"druntime","parentType":"","signature":"void onUnittestErrorMsg(  string file,  size_t line,  string msg )","url":"/ddoc/druntime/core/exception/onUnittestErrorMsg.html"},{"doc":"A callback for general array bounds errors in D. A $(LREF RangeError) will be thrown.","kind":"function","module":"core.exception","name":"onRangeError","package":"druntime","parentType":"","signature":"noreturn onRangeError(  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onRangeError.html"},{"doc":"A callback for array slice out of bounds errors in D.","kind":"function","module":"core.exception","name":"onArraySliceError","package":"druntime","parentType":"","signature":"noreturn onArraySliceError(  size_t lower =  0,  size_t upper =  0,  size_t length =  0,\n                               string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onArraySliceError.html"},{"doc":"A callback for array index out of bounds errors in D.","kind":"function","module":"core.exception","name":"onArrayIndexError","package":"druntime","parentType":"","signature":"noreturn onArrayIndexError(  size_t index =  0,  size_t length =  0,\n                               string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onArrayIndexError.html"},{"doc":"A callback for finalize errors in D.  A $(LREF FinalizeError) will be thrown.","kind":"function","module":"core.exception","name":"onFinalizeError","package":"druntime","parentType":"","signature":"noreturn onFinalizeError(  TypeInfo info,  Throwable e,  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onFinalizeError.html"},{"doc":"A callback for invalid memory operations in D.  An $(LREF InvalidMemoryOperationError) will be thrown.","kind":"function","module":"core.exception","name":"onInvalidMemoryOperationError","package":"druntime","parentType":"","signature":"noreturn onInvalidMemoryOperationError(void *  pretend_sideffect =  null,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/exception/onInvalidMemoryOperationError.html"},{"doc":"A callback for errors in the case of a failed fork in D.  A $(LREF ForkError) will be thrown.","kind":"function","module":"core.exception","name":"onForkError","package":"druntime","parentType":"","signature":"noreturn onForkError(  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onForkError.html"},{"doc":"A callback for unicode errors in D.  A $(LREF UnicodeException) will be thrown.","kind":"function","module":"core.exception","name":"onUnicodeError","package":"druntime","parentType":"","signature":"noreturn onUnicodeError(  string msg,  size_t idx,  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/exception/onUnicodeError.html"},{"doc":"These functions must be defined for any D program linked against this library. Function calls to these are generated by the compiler and inserted i...","kind":"function","module":"core.exception","name":"_d_assertp","package":"druntime","parentType":"","signature":"void _d_assertp(immutable(char) *  file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_assertp.html"},{"doc":"","kind":"function","module":"core.exception","name":"_d_assert_msg","package":"druntime","parentType":"","signature":"void _d_assert_msg(string msg,  string file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_assert_msg.html"},{"doc":"","kind":"function","module":"core.exception","name":"_d_assert","package":"druntime","parentType":"","signature":"void _d_assert(string file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_assert.html"},{"doc":"","kind":"function","module":"core.exception","name":"_d_unittestp","package":"druntime","parentType":"","signature":"void _d_unittestp(immutable(char) *  file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_unittestp.html"},{"doc":"","kind":"function","module":"core.exception","name":"_d_unittest_msg","package":"druntime","parentType":"","signature":"void _d_unittest_msg(string msg,  string file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_unittest_msg.html"},{"doc":"","kind":"function","module":"core.exception","name":"_d_unittest","package":"druntime","parentType":"","signature":"void _d_unittest(string file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_unittest.html"},{"doc":"Called when an invalid array index/slice or associative array key is accessed","kind":"function","module":"core.exception","name":"_d_arrayboundsp","package":"druntime","parentType":"","signature":"void _d_arrayboundsp(immutable(char *)  file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_arrayboundsp.html"},{"doc":"ditto","kind":"function","module":"core.exception","name":"_d_arraybounds","package":"druntime","parentType":"","signature":"void _d_arraybounds(string file,  uint  line)","url":"/ddoc/druntime/core/exception/_d_arraybounds.html"},{"doc":"Called when an out of range slice of an array is created","kind":"function","module":"core.exception","name":"_d_arraybounds_slicep","package":"druntime","parentType":"","signature":"void _d_arraybounds_slicep(immutable(char *)  file,  uint  line,  size_t lower,  size_t upper,  size_t length)","url":"/ddoc/druntime/core/exception/_d_arraybounds_slicep.html"},{"doc":"ditto","kind":"function","module":"core.exception","name":"_d_arraybounds_slice","package":"druntime","parentType":"","signature":"void _d_arraybounds_slice(string file,  uint  line,  size_t lower,  size_t upper,  size_t length)","url":"/ddoc/druntime/core/exception/_d_arraybounds_slice.html"},{"doc":"Called when an out of range array index is accessed","kind":"function","module":"core.exception","name":"_d_arraybounds_indexp","package":"druntime","parentType":"","signature":"void _d_arraybounds_indexp(immutable(char *)  file,  uint  line,  size_t index,  size_t length)","url":"/ddoc/druntime/core/exception/_d_arraybounds_indexp.html"},{"doc":"ditto","kind":"function","module":"core.exception","name":"_d_arraybounds_index","package":"druntime","parentType":"","signature":"void _d_arraybounds_index(string file,  uint  line,  size_t index,  size_t length)","url":"/ddoc/druntime/core/exception/_d_arraybounds_index.html"},{"doc":"","kind":"function","module":"core.exception","name":"staticError","package":"druntime","parentType":"","signature":"T staticError(T,  Args...)(auto  ref  Args args) if (is(T :  Error))","url":"/ddoc/druntime/core/exception/staticError.html"},{"doc":"","kind":"alias","module":"core.exception","name":"dummy__switch_errorT","package":"druntime","parentType":"","signature":"dummy__switch_errorT = __switch_errorT!()","url":"/ddoc/druntime/core/exception.html#dummy__switch_errorT"},{"doc":"Thrown on a range error.","kind":"class","module":"core.exception","name":"RangeError","package":"druntime","parentType":"","signature":"RangeError : Error","url":"/ddoc/druntime/core/exception.html#RangeError"},{"doc":"Thrown when an out of bounds array index is accessed.","kind":"class","module":"core.exception","name":"ArrayIndexError","package":"druntime","parentType":"","signature":"ArrayIndexError : RangeError","url":"/ddoc/druntime/core/exception.html#ArrayIndexError"},{"doc":"Thrown when an out of bounds array slice is created","kind":"class","module":"core.exception","name":"ArraySliceError","package":"druntime","parentType":"","signature":"ArraySliceError : RangeError","url":"/ddoc/druntime/core/exception.html#ArraySliceError"},{"doc":"Thrown on an assert error.","kind":"class","module":"core.exception","name":"AssertError","package":"druntime","parentType":"","signature":"AssertError : Error","url":"/ddoc/druntime/core/exception.html#AssertError"},{"doc":"Thrown on finalize error.","kind":"class","module":"core.exception","name":"FinalizeError","package":"druntime","parentType":"","signature":"FinalizeError : Error","url":"/ddoc/druntime/core/exception.html#FinalizeError"},{"doc":"","kind":"method","module":"core.exception","name":"toString","package":"druntime","parentType":"FinalizeError","signature":"string toString()","url":"/ddoc/druntime/core/exception/FinalizeError.toString.html"},{"doc":"Thrown on an out of memory error.","kind":"class","module":"core.exception","name":"OutOfMemoryError","package":"druntime","parentType":"","signature":"OutOfMemoryError : Error","url":"/ddoc/druntime/core/exception.html#OutOfMemoryError"},{"doc":"","kind":"method","module":"core.exception","name":"toString","package":"druntime","parentType":"OutOfMemoryError","signature":"string toString()","url":"/ddoc/druntime/core/exception/OutOfMemoryError.toString.html"},{"doc":"","kind":"method","module":"core.exception","name":"superToString","package":"druntime","parentType":"OutOfMemoryError","signature":"string superToString()","url":"/ddoc/druntime/core/exception/OutOfMemoryError.superToString.html"},{"doc":"Thrown on an invalid memory operation.","kind":"class","module":"core.exception","name":"InvalidMemoryOperationError","package":"druntime","parentType":"","signature":"InvalidMemoryOperationError : Error","url":"/ddoc/druntime/core/exception.html#InvalidMemoryOperationError"},{"doc":"","kind":"method","module":"core.exception","name":"toString","package":"druntime","parentType":"InvalidMemoryOperationError","signature":"string toString()","url":"/ddoc/druntime/core/exception/InvalidMemoryOperationError.toString.html"},{"doc":"","kind":"method","module":"core.exception","name":"superToString","package":"druntime","parentType":"InvalidMemoryOperationError","signature":"string superToString()","url":"/ddoc/druntime/core/exception/InvalidMemoryOperationError.superToString.html"},{"doc":"Thrown on a configuration error.","kind":"class","module":"core.exception","name":"ForkError","package":"druntime","parentType":"","signature":"ForkError : Error","url":"/ddoc/druntime/core/exception.html#ForkError"},{"doc":"Thrown on a switch error.","kind":"class","module":"core.exception","name":"SwitchError","package":"druntime","parentType":"","signature":"SwitchError : Error","url":"/ddoc/druntime/core/exception.html#SwitchError"},{"doc":"Thrown on a unicode conversion error.","kind":"class","module":"core.exception","name":"UnicodeException","package":"druntime","parentType":"","signature":"UnicodeException : Exception","url":"/ddoc/druntime/core/exception.html#UnicodeException"},{"doc":"Gets/sets assert hander. null means the default handler is used.","kind":"alias","module":"core.exception","name":"AssertHandler","package":"druntime","parentType":"","signature":"AssertHandler = void  function(string file,  size_t line,  string msg)  nothrow","url":"/ddoc/druntime/core/exception.html#AssertHandler"},{"doc":"","kind":"class","module":"core.exception","name":"SuppressTraceInfo","package":"druntime","parentType":"","signature":"SuppressTraceInfo : Throwable.TraceInfo","url":"/ddoc/druntime/core/exception.html#SuppressTraceInfo"},{"doc":"","kind":"method","module":"core.exception","name":"opApply","package":"druntime","parentType":"SuppressTraceInfo","signature":"int opApply(scope  int  delegate(ref  const(char[])))","url":"/ddoc/druntime/core/exception/SuppressTraceInfo.opApply.html"},{"doc":"","kind":"method","module":"core.exception","name":"opApply","package":"druntime","parentType":"SuppressTraceInfo","signature":"int opApply(scope  int  delegate(ref  size_t,  ref  const(char[])))","url":"/ddoc/druntime/core/exception/SuppressTraceInfo.opApply.html"},{"doc":"","kind":"method","module":"core.exception","name":"toString","package":"druntime","parentType":"SuppressTraceInfo","signature":"string toString()","url":"/ddoc/druntime/core/exception/SuppressTraceInfo.toString.html"},{"doc":"","kind":"method","module":"core.exception","name":"instance","package":"druntime","parentType":"SuppressTraceInfo","signature":"SuppressTraceInfo instance()","url":"/ddoc/druntime/core/exception/SuppressTraceInfo.instance.html"},{"doc":"","kind":"variable","module":"core.exception","name":"_assertHandler","package":"druntime","parentType":"","signature":"AssertHandler _assertHandler","url":"/ddoc/druntime/core/exception.html#_assertHandler"},{"doc":"","kind":"variable","module":"core.exception","name":"_store","package":"druntime","parentType":"","signature":"void[256] _store","url":"/ddoc/druntime/core/exception.html#_store"},{"doc":"","kind":"module","module":"core.factory","name":"core.factory","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/factory.html"},{"doc":"Create instance of class specified by the module symbol and a string representing the name of the class. The class must either have no constructors...","kind":"function","module":"core.factory","name":"factory","package":"druntime","parentType":"","signature":"Object factory(alias  mod)(string classname)","url":"/ddoc/druntime/core/factory/factory.html"},{"doc":"Retrieve as a tuple all the types of the top level classes in the module mod.","kind":"template","module":"core.factory","name":"_getModuleClasses","package":"druntime","parentType":"","signature":"_getModuleClasses(alias  mod)","url":"/ddoc/druntime/core/factory.html#_getModuleClasses"},{"doc":"","kind":"template","module":"core.factory","name":"_AliasSeq","package":"druntime","parentType":"","signature":"_AliasSeq(TList...)","url":"/ddoc/druntime/core/factory.html#_AliasSeq"},{"doc":"Contains the garbage collector configuration.","kind":"module","module":"core.gc.config","name":"core.gc.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/gc/config.html"},{"doc":"","kind":"function","module":"core.gc.config","name":"bytes2prettyStruct","package":"druntime","parentType":"","signature":"PrettyBytes bytes2prettyStruct(size_t val)","url":"/ddoc/druntime/core/gc/config/bytes2prettyStruct.html"},{"doc":"","kind":"function","module":"core.gc.config","name":"prettyBytes","package":"druntime","parentType":"","signature":"char prettyBytes(ref  size_t val)","url":"/ddoc/druntime/core/gc/config/prettyBytes.html"},{"doc":"","kind":"struct","module":"core.gc.config","name":"Config","package":"druntime","parentType":"","signature":"Config","url":"/ddoc/druntime/core/gc/config.html#Config"},{"doc":"","kind":"method","module":"core.gc.config","name":"initialize","package":"druntime","parentType":"Config","signature":"bool initialize()","url":"/ddoc/druntime/core/gc/config/Config.initialize.html"},{"doc":"","kind":"method","module":"core.gc.config","name":"help","package":"druntime","parentType":"Config","signature":"void help()","url":"/ddoc/druntime/core/gc/config/Config.help.html"},{"doc":"","kind":"method","module":"core.gc.config","name":"errorName","package":"druntime","parentType":"Config","signature":"string errorName()","url":"/ddoc/druntime/core/gc/config/Config.errorName.html"},{"doc":"","kind":"struct","module":"core.gc.config","name":"PrettyBytes","package":"druntime","parentType":"","signature":"PrettyBytes","url":"/ddoc/druntime/core/gc/config.html#PrettyBytes"},{"doc":"","kind":"variable","module":"core.gc.config","name":"config","package":"druntime","parentType":"","signature":"Config config","url":"/ddoc/druntime/core/gc/config.html#config"},{"doc":"","kind":"variable","module":"core.gc.config","name":"_initialized","package":"druntime","parentType":"","signature":"bool _initialized","url":"/ddoc/druntime/core/gc/config.html#_initialized"},{"doc":"Contains the internal GC interface.","kind":"module","module":"core.gc.gcinterface","name":"core.gc.gcinterface","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/gc/gcinterface.html"},{"doc":"","kind":"alias","module":"core.gc.gcinterface","name":"BlkAttr","package":"druntime","parentType":"","signature":"BlkAttr = core.memory.GC.BlkAttr","url":"/ddoc/druntime/core/gc/gcinterface.html#BlkAttr"},{"doc":"","kind":"alias","module":"core.gc.gcinterface","name":"BlkInfo","package":"druntime","parentType":"","signature":"BlkInfo = core.memory.GC.BlkInfo","url":"/ddoc/druntime/core/gc/gcinterface.html#BlkInfo"},{"doc":"","kind":"alias","module":"core.gc.gcinterface","name":"RootIterator","package":"druntime","parentType":"","signature":"RootIterator = int  delegate(scope  int  delegate(ref  Root)  nothrow  dg)","url":"/ddoc/druntime/core/gc/gcinterface.html#RootIterator"},{"doc":"","kind":"alias","module":"core.gc.gcinterface","name":"RangeIterator","package":"druntime","parentType":"","signature":"RangeIterator = int  delegate(scope  int  delegate(ref  Range)  nothrow  dg)","url":"/ddoc/druntime/core/gc/gcinterface.html#RangeIterator"},{"doc":"","kind":"struct","module":"core.gc.gcinterface","name":"Root","package":"druntime","parentType":"","signature":"Root","url":"/ddoc/druntime/core/gc/gcinterface.html#Root"},{"doc":"","kind":"struct","module":"core.gc.gcinterface","name":"Range","package":"druntime","parentType":"","signature":"Range","url":"/ddoc/druntime/core/gc/gcinterface.html#Range"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"opEquals","package":"druntime","parentType":"Range","signature":"bool opEquals(const  scope  Range rhs)","url":"/ddoc/druntime/core/gc/gcinterface/Range.opEquals.html"},{"doc":"","kind":"interface","module":"core.gc.gcinterface","name":"GC","package":"druntime","parentType":"","signature":"GC","url":"/ddoc/druntime/core/gc/gcinterface.html#GC"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"enable","package":"druntime","parentType":"GC","signature":"void enable()","url":"/ddoc/druntime/core/gc/gcinterface/GC.enable.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"disable","package":"druntime","parentType":"GC","signature":"void disable()","url":"/ddoc/druntime/core/gc/gcinterface/GC.disable.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"collect","package":"druntime","parentType":"GC","signature":"void collect()","url":"/ddoc/druntime/core/gc/gcinterface/GC.collect.html"},{"doc":"minimize free space usage","kind":"method","module":"core.gc.gcinterface","name":"minimize","package":"druntime","parentType":"GC","signature":"void minimize()","url":"/ddoc/druntime/core/gc/gcinterface/GC.minimize.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"getAttr","package":"druntime","parentType":"GC","signature":"uint getAttr(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.getAttr.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"setAttr","package":"druntime","parentType":"GC","signature":"uint setAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/gc/gcinterface/GC.setAttr.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"clrAttr","package":"druntime","parentType":"GC","signature":"uint clrAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/gc/gcinterface/GC.clrAttr.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"malloc","package":"druntime","parentType":"GC","signature":"void * malloc(size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.malloc.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"qalloc","package":"druntime","parentType":"GC","signature":"BlkInfo qalloc(size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.qalloc.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"calloc","package":"druntime","parentType":"GC","signature":"void * calloc(size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.calloc.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"realloc","package":"druntime","parentType":"GC","signature":"void * realloc(void *  p,  size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.realloc.html"},{"doc":"Attempt to in-place enlarge the memory block pointed to by p by at least minsize bytes, up to a maximum of maxsize additional bytes. This does not ...","kind":"method","module":"core.gc.gcinterface","name":"extend","package":"druntime","parentType":"GC","signature":"size_t extend(void *  p,  size_t minsize,  size_t maxsize,  const  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.extend.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"reserve","package":"druntime","parentType":"GC","signature":"size_t reserve(size_t size)","url":"/ddoc/druntime/core/gc/gcinterface/GC.reserve.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"free","package":"druntime","parentType":"GC","signature":"void free(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.free.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.gc.gcinterface","name":"addrOf","package":"druntime","parentType":"GC","signature":"void * addrOf(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.addrOf.html"},{"doc":"Determine the allocated size of pointer p.  If p is an interior pointer or not a gc allocated pointer, return 0.","kind":"method","module":"core.gc.gcinterface","name":"sizeOf","package":"druntime","parentType":"GC","signature":"size_t sizeOf(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.sizeOf.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.gc.gcinterface","name":"query","package":"druntime","parentType":"GC","signature":"BlkInfo query(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.query.html"},{"doc":"Retrieve statistics about garbage collection. Useful for debugging and tuning.","kind":"method","module":"core.gc.gcinterface","name":"stats","package":"druntime","parentType":"GC","signature":"core.memory.GC.Stats stats()","url":"/ddoc/druntime/core/gc/gcinterface/GC.stats.html"},{"doc":"Retrieve profile statistics about garbage collection. Useful for debugging and tuning.","kind":"method","module":"core.gc.gcinterface","name":"profileStats","package":"druntime","parentType":"GC","signature":"core.memory.GC.ProfileStats profileStats()","url":"/ddoc/druntime/core/gc/gcinterface/GC.profileStats.html"},{"doc":"add p to list of roots","kind":"method","module":"core.gc.gcinterface","name":"addRoot","package":"druntime","parentType":"GC","signature":"void addRoot(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.addRoot.html"},{"doc":"remove p from list of roots","kind":"method","module":"core.gc.gcinterface","name":"removeRoot","package":"druntime","parentType":"GC","signature":"void removeRoot(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.removeRoot.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"rootIter","package":"druntime","parentType":"GC","signature":"RootIterator rootIter()","url":"/ddoc/druntime/core/gc/gcinterface/GC.rootIter.html"},{"doc":"add range to scan for roots","kind":"method","module":"core.gc.gcinterface","name":"addRange","package":"druntime","parentType":"GC","signature":"void addRange(void *  p,  size_t sz,  const  TypeInfo ti)","url":"/ddoc/druntime/core/gc/gcinterface/GC.addRange.html"},{"doc":"remove range","kind":"method","module":"core.gc.gcinterface","name":"removeRange","package":"druntime","parentType":"GC","signature":"void removeRange(void *  p)","url":"/ddoc/druntime/core/gc/gcinterface/GC.removeRange.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"rangeIter","package":"druntime","parentType":"GC","signature":"RangeIterator rangeIter()","url":"/ddoc/druntime/core/gc/gcinterface/GC.rangeIter.html"},{"doc":"run finalizers","kind":"method","module":"core.gc.gcinterface","name":"runFinalizers","package":"druntime","parentType":"GC","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/gc/gcinterface/GC.runFinalizers.html"},{"doc":"","kind":"method","module":"core.gc.gcinterface","name":"inFinalizer","package":"druntime","parentType":"GC","signature":"bool inFinalizer()","url":"/ddoc/druntime/core/gc/gcinterface/GC.inFinalizer.html"},{"doc":"Returns the number of bytes allocated for the current thread since program start. It is the same as GC.stats().allocatedInCurrentThread, but faster.","kind":"method","module":"core.gc.gcinterface","name":"allocatedInCurrentThread","package":"druntime","parentType":"GC","signature":"ulong allocatedInCurrentThread()","url":"/ddoc/druntime/core/gc/gcinterface/GC.allocatedInCurrentThread.html"},{"doc":"Get the current used capacity of an array block.","kind":"method","module":"core.gc.gcinterface","name":"getArrayUsed","package":"druntime","parentType":"GC","signature":"void[] getArrayUsed(void  * ptr,  bool  atomic =  false)","url":"/ddoc/druntime/core/gc/gcinterface/GC.getArrayUsed.html"},{"doc":"Expand the array used size in place.","kind":"method","module":"core.gc.gcinterface","name":"expandArrayUsed","package":"druntime","parentType":"GC","signature":"bool expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/gc/gcinterface/GC.expandArrayUsed.html"},{"doc":"Expand the array capacity in place.","kind":"method","module":"core.gc.gcinterface","name":"reserveArrayCapacity","package":"druntime","parentType":"GC","signature":"size_t reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic =  false)","url":"/ddoc/druntime/core/gc/gcinterface/GC.reserveArrayCapacity.html"},{"doc":"Shrink used space of a slice in place.","kind":"method","module":"core.gc.gcinterface","name":"shrinkArrayUsed","package":"druntime","parentType":"GC","signature":"bool shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/gc/gcinterface/GC.shrinkArrayUsed.html"},{"doc":"Prepare a thread for use with the GC after the GC is initialized. Note that you can register an initThread function to call before the GC is initia...","kind":"method","module":"core.gc.gcinterface","name":"initThread","package":"druntime","parentType":"GC","signature":"void initThread(ThreadBase thread)","url":"/ddoc/druntime/core/gc/gcinterface/GC.initThread.html"},{"doc":"Clean up any GC related data from the thread before it exits. There is no equivalent of this function as a hook before the GC is initialized. That ...","kind":"method","module":"core.gc.gcinterface","name":"cleanupThread","package":"druntime","parentType":"GC","signature":"void cleanupThread(ThreadBase thread)","url":"/ddoc/druntime/core/gc/gcinterface/GC.cleanupThread.html"},{"doc":"Contains a registry for GC factories.","kind":"module","module":"core.gc.registry","name":"core.gc.registry","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/gc/registry.html"},{"doc":"Register a GC factory under the given `name`.  This function must be called from a C constructor before druntime is initialized.","kind":"function","module":"core.gc.registry","name":"registerGCFactory","package":"druntime","parentType":"","signature":"void registerGCFactory(string name,  GCFactory factory,\n         GCThreadInitFunction threadInit =  null)","url":"/ddoc/druntime/core/gc/registry/registerGCFactory.html"},{"doc":"Called during runtime initialization to initialize a GC instance of given `name`.","kind":"function","module":"core.gc.registry","name":"createGCInstance","package":"druntime","parentType":"","signature":"GC createGCInstance(string name)","url":"/ddoc/druntime/core/gc/registry/createGCInstance.html"},{"doc":"Get the thread init function used for the selected GC.","kind":"function","module":"core.gc.registry","name":"threadInit","package":"druntime","parentType":"","signature":"GCThreadInitFunction threadInit(string name)","url":"/ddoc/druntime/core/gc/registry/threadInit.html"},{"doc":"","kind":"function","module":"core.gc.registry","name":"registeredGCFactories","package":"druntime","parentType":"","signature":"const(Entry[]) registeredGCFactories(scope  int  dummy = 0)","url":"/ddoc/druntime/core/gc/registry/registeredGCFactories.html"},{"doc":"A factory function that instantiates an implementation of the GC interface. In case the instance was allocated on the C heap, it is supposed to fre...","kind":"alias","module":"core.gc.registry","name":"GCFactory","package":"druntime","parentType":"","signature":"GCFactory = GC function()","url":"/ddoc/druntime/core/gc/registry.html#GCFactory"},{"doc":"A function that will initialize a thread before the GC has been initialized. Once the GC is initialized, the interface method GC.initThread for eac...","kind":"alias","module":"core.gc.registry","name":"GCThreadInitFunction","package":"druntime","parentType":"","signature":"GCThreadInitFunction = void  function(ThreadBase base)  nothrow @nogc","url":"/ddoc/druntime/core/gc/registry.html#GCThreadInitFunction"},{"doc":"","kind":"struct","module":"core.gc.registry","name":"Entry","package":"druntime","parentType":"","signature":"Entry","url":"/ddoc/druntime/core/gc/registry.html#Entry"},{"doc":"","kind":"variable","module":"core.gc.registry","name":"entries","package":"druntime","parentType":"","signature":"Entry[] entries","url":"/ddoc/druntime/core/gc/registry.html#entries"},{"doc":"","kind":"module","module":"core.int128","name":"core.int128","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/int128.html"},{"doc":"Test against 0 Params: c = Cent to test Returns: true if != 0","kind":"function","module":"core.int128","name":"tst","package":"druntime","parentType":"","signature":"bool tst(Cent c)","url":"/ddoc/druntime/core/int128/tst.html"},{"doc":"Complement Params: c = Cent to complement Returns: complemented value","kind":"function","module":"core.int128","name":"com","package":"druntime","parentType":"","signature":"Cent com(Cent c)","url":"/ddoc/druntime/core/int128/com.html"},{"doc":"Negate Params: c = Cent to negate Returns: negated value","kind":"function","module":"core.int128","name":"neg","package":"druntime","parentType":"","signature":"Cent neg(Cent c)","url":"/ddoc/druntime/core/int128/neg.html"},{"doc":"Increment Params: c = Cent to increment Returns: incremented value","kind":"function","module":"core.int128","name":"inc","package":"druntime","parentType":"","signature":"Cent inc(Cent c)","url":"/ddoc/druntime/core/int128/inc.html"},{"doc":"Decrement Params: c = Cent to decrement Returns: incremented value","kind":"function","module":"core.int128","name":"dec","package":"druntime","parentType":"","signature":"Cent dec(Cent c)","url":"/ddoc/druntime/core/int128/dec.html"},{"doc":"Shift left one bit Params: c = Cent to shift Returns: shifted value","kind":"function","module":"core.int128","name":"shl1","package":"druntime","parentType":"","signature":"Cent shl1(Cent c)","url":"/ddoc/druntime/core/int128/shl1.html"},{"doc":"Unsigned shift right one bit Params: c = Cent to shift Returns: shifted value","kind":"function","module":"core.int128","name":"shr1","package":"druntime","parentType":"","signature":"Cent shr1(Cent c)","url":"/ddoc/druntime/core/int128/shr1.html"},{"doc":"Arithmetic shift right one bit Params: c = Cent to shift Returns: shifted value","kind":"function","module":"core.int128","name":"sar1","package":"druntime","parentType":"","signature":"Cent sar1(Cent c)","url":"/ddoc/druntime/core/int128/sar1.html"},{"doc":"Shift left n bits Params: c = Cent to shift n = number of bits to shift Returns: shifted value","kind":"function","module":"core.int128","name":"shl","package":"druntime","parentType":"","signature":"Cent shl(Cent c,  uint  n)","url":"/ddoc/druntime/core/int128/shl.html"},{"doc":"Unsigned shift right n bits Params: c = Cent to shift n = number of bits to shift Returns: shifted value","kind":"function","module":"core.int128","name":"shr","package":"druntime","parentType":"","signature":"Cent shr(Cent c,  uint  n)","url":"/ddoc/druntime/core/int128/shr.html"},{"doc":"Arithmetic shift right n bits Params: c = Cent to shift n = number of bits to shift Returns: shifted value","kind":"function","module":"core.int128","name":"sar","package":"druntime","parentType":"","signature":"Cent sar(Cent c,  uint  n)","url":"/ddoc/druntime/core/int128/sar.html"},{"doc":"Rotate left one bit Params: c = Cent to rotate Returns: rotated value","kind":"function","module":"core.int128","name":"rol1","package":"druntime","parentType":"","signature":"Cent rol1(Cent c)","url":"/ddoc/druntime/core/int128/rol1.html"},{"doc":"Rotate right one bit Params: c = Cent to rotate Returns: rotated value","kind":"function","module":"core.int128","name":"ror1","package":"druntime","parentType":"","signature":"Cent ror1(Cent c)","url":"/ddoc/druntime/core/int128/ror1.html"},{"doc":"Rotate left n bits Params: c = Cent to rotate n = number of bits to rotate Returns: rotated value","kind":"function","module":"core.int128","name":"rol","package":"druntime","parentType":"","signature":"Cent rol(Cent c,  uint  n)","url":"/ddoc/druntime/core/int128/rol.html"},{"doc":"Rotate right n bits Params: c = Cent to rotate n = number of bits to rotate Returns: rotated value","kind":"function","module":"core.int128","name":"ror","package":"druntime","parentType":"","signature":"Cent ror(Cent c,  uint  n)","url":"/ddoc/druntime/core/int128/ror.html"},{"doc":"And c1 & c2. Params: c1 = operand 1 c2 = operand 2 Returns: c1 & c2","kind":"function","module":"core.int128","name":"and","package":"druntime","parentType":"","signature":"Cent and(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/and.html"},{"doc":"Or c1 | c2. Params: c1 = operand 1 c2 = operand 2 Returns: c1 | c2","kind":"function","module":"core.int128","name":"or","package":"druntime","parentType":"","signature":"Cent or(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/or.html"},{"doc":"Xor c1 ^ c2. Params: c1 = operand 1 c2 = operand 2 Returns: c1 ^ c2","kind":"function","module":"core.int128","name":"xor","package":"druntime","parentType":"","signature":"Cent xor(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/xor.html"},{"doc":"Add c1 to c2. Params: c1 = operand 1 c2 = operand 2 Returns: c1 + c2","kind":"function","module":"core.int128","name":"add","package":"druntime","parentType":"","signature":"Cent add(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/add.html"},{"doc":"Subtract c2 from c1. Params: c1 = operand 1 c2 = operand 2 Returns: c1 - c2","kind":"function","module":"core.int128","name":"sub","package":"druntime","parentType":"","signature":"Cent sub(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/sub.html"},{"doc":"Multiply c1 * c2. Params: c1 = operand 1 c2 = operand 2 Returns: c1 * c2","kind":"function","module":"core.int128","name":"mul","package":"druntime","parentType":"","signature":"Cent mul(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/mul.html"},{"doc":"Multiply 64-bit operands u1 * u2 in 128-bit precision. Params: u1 = operand 1 u2 = operand 2 Returns: u1 * u2 in 128-bit precision","kind":"function","module":"core.int128","name":"mul","package":"druntime","parentType":"","signature":"Cent mul(ulong  u1,  ulong  u2)","url":"/ddoc/druntime/core/int128/mul.html"},{"doc":"Unsigned divide c1 / c2. Params: c1 = dividend c2 = divisor Returns: quotient c1 / c2","kind":"function","module":"core.int128","name":"udiv","package":"druntime","parentType":"","signature":"Cent udiv(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/udiv.html"},{"doc":"Unsigned divide c1 / c2. The remainder after division is stored to modulus. Params: c1 = dividend c2 = divisor modulus = set to c1 % c2 Returns: qu...","kind":"function","module":"core.int128","name":"udivmod","package":"druntime","parentType":"","signature":"Cent udivmod(Cent c1,  Cent c2,  out  Cent modulus)","url":"/ddoc/druntime/core/int128/udivmod.html"},{"doc":"Unsigned divide 128-bit c1 / 64-bit c2. The result must fit in 64 bits. The remainder after division is stored to modulus. Params: c1 = dividend c2...","kind":"function","module":"core.int128","name":"udivmod","package":"druntime","parentType":"","signature":"U udivmod(Cent c1,  U c2,  out  U modulus)","url":"/ddoc/druntime/core/int128/udivmod.html"},{"doc":"Signed divide c1 / c2. Params: c1 = dividend c2 = divisor Returns: quotient c1 / c2","kind":"function","module":"core.int128","name":"div","package":"druntime","parentType":"","signature":"Cent div(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/div.html"},{"doc":"Signed divide c1 / c2. The remainder after division is stored to modulus. Params: c1 = dividend c2 = divisor modulus = set to c1 % c2 Returns: quot...","kind":"function","module":"core.int128","name":"divmod","package":"druntime","parentType":"","signature":"Cent divmod(Cent c1,  Cent c2,  out  Cent modulus)","url":"/ddoc/druntime/core/int128/divmod.html"},{"doc":"If c1 > c2 unsigned Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 > c2","kind":"function","module":"core.int128","name":"ugt","package":"druntime","parentType":"","signature":"bool ugt(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/ugt.html"},{"doc":"If c1 >= c2 unsigned Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 >= c2","kind":"function","module":"core.int128","name":"uge","package":"druntime","parentType":"","signature":"bool uge(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/uge.html"},{"doc":"If c1 < c2 unsigned Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 < c2","kind":"function","module":"core.int128","name":"ult","package":"druntime","parentType":"","signature":"bool ult(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/ult.html"},{"doc":"If c1 <= c2 unsigned Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 <= c2","kind":"function","module":"core.int128","name":"ule","package":"druntime","parentType":"","signature":"bool ule(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/ule.html"},{"doc":"If c1 > c2 signed Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 > c2","kind":"function","module":"core.int128","name":"gt","package":"druntime","parentType":"","signature":"bool gt(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/gt.html"},{"doc":"If c1 >= c2 signed Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 >= c2","kind":"function","module":"core.int128","name":"ge","package":"druntime","parentType":"","signature":"bool ge(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/ge.html"},{"doc":"If c1 < c2 signed Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 < c2","kind":"function","module":"core.int128","name":"lt","package":"druntime","parentType":"","signature":"bool lt(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/lt.html"},{"doc":"If c1 <= c2 signed Params: c1 = operand 1 c2 = operand 2 Returns: true if c1 <= c2","kind":"function","module":"core.int128","name":"le","package":"druntime","parentType":"","signature":"bool le(Cent c1,  Cent c2)","url":"/ddoc/druntime/core/int128/le.html"},{"doc":"","kind":"alias","module":"core.int128","name":"I","package":"druntime","parentType":"","signature":"I = long","url":"/ddoc/druntime/core/int128.html#I"},{"doc":"","kind":"alias","module":"core.int128","name":"U","package":"druntime","parentType":"","signature":"U = ulong","url":"/ddoc/druntime/core/int128.html#U"},{"doc":"128 bit integer type. See_also: $(REF Int128, std,int128).","kind":"struct","module":"core.int128","name":"Cent","package":"druntime","parentType":"","signature":"Cent","url":"/ddoc/druntime/core/int128.html#Cent"},{"doc":"","kind":"variable","module":"core.int128","name":"Ubits","package":"druntime","parentType":"","signature":"Ubits","url":"/ddoc/druntime/core/int128.html#Ubits"},{"doc":"","kind":"variable","module":"core.int128","name":"One","package":"druntime","parentType":"","signature":"Cent One","url":"/ddoc/druntime/core/int128.html#One"},{"doc":"","kind":"variable","module":"core.int128","name":"Zero","package":"druntime","parentType":"","signature":"Cent Zero","url":"/ddoc/druntime/core/int128.html#Zero"},{"doc":"","kind":"variable","module":"core.int128","name":"MinusOne","package":"druntime","parentType":"","signature":"Cent MinusOne","url":"/ddoc/druntime/core/int128.html#MinusOne"},{"doc":"","kind":"module","module":"core.internal.abort","name":"core.internal.abort","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/abort.html"},{"doc":"","kind":"function","module":"core.internal.abort","name":"abort","package":"druntime","parentType":"","signature":"void abort(scope  string msg,  scope  string filename =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/abort/abort.html"},{"doc":"This module contains support for controlling dynamic arrays' appending","kind":"module","module":"core.internal.array.appending","name":"core.internal.array.appending","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/appending.html"},{"doc":"","kind":"function","module":"core.internal.array.appending","name":"gc_expandArrayUsed","package":"druntime","parentType":"","signature":"bool gc_expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/appending/gc_expandArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.array.appending","name":"gc_shrinkArrayUsed","package":"druntime","parentType":"","signature":"bool gc_shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/appending/gc_shrinkArrayUsed.html"},{"doc":"Extend an array `px` by `n` elements. Caller must initialize those elements. Params: px = the array that will be extended, taken as a reference n =...","kind":"function","module":"core.internal.array.appending","name":"_d_arrayappendcTX","package":"druntime","parentType":"","signature":"Tarr _d_arrayappendcTX(Tarr :  T[],  T)(return  ref  scope  Tarr px,  size_t n)","url":"/ddoc/druntime/core/internal/array/appending/_d_arrayappendcTX.html"},{"doc":"","kind":"function","module":"core.internal.array.appending","name":"_d_arrayappendcTX_","package":"druntime","parentType":"","signature":"Tarr _d_arrayappendcTX_(Tarr :  T[],  T)(return  ref  scope  Tarr px,  size_t n,  bool  isshared)","url":"/ddoc/druntime/core/internal/array/appending/_d_arrayappendcTX_.html"},{"doc":"Implementation of `_d_arrayappendT`","kind":"function","module":"core.internal.array.appending","name":"_d_arrayappendT","package":"druntime","parentType":"","signature":"Tarr _d_arrayappendT(Tarr :  T[],  T)(return  ref  scope  Tarr x,  scope  Tarr y)","url":"/ddoc/druntime/core/internal/array/appending/_d_arrayappendT.html"},{"doc":"","kind":"module","module":"core.internal.array.arrayassign","name":"core.internal.array.arrayassign","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/arrayassign.html"},{"doc":"","kind":"function","module":"core.internal.array.arrayassign","name":"enforceRawArraysConformable","package":"druntime","parentType":"","signature":"void enforceRawArraysConformable(const  char[]  action,  const  size_t elementSize,\n     const  void[]  a1,  const  void[]  a2,  const  bool  allowOverlap)","url":"/ddoc/druntime/core/internal/array/arrayassign/enforceRawArraysConformable.html"},{"doc":"Does array assignment (not construction) from another array of the same element type. Handles overlapping copies. Assumes the right hand side is an...","kind":"function","module":"core.internal.array.arrayassign","name":"_d_arrayassign_l","package":"druntime","parentType":"","signature":"Tarr _d_arrayassign_l(Tarr :  T[],  T)(return  scope  Tarr to,  scope  Tarr from)","url":"/ddoc/druntime/core/internal/array/arrayassign/_d_arrayassign_l.html"},{"doc":"Does array assignment (not construction) from another array of the same element type. Does not support overlapping copies. Assumes the right hand s...","kind":"function","module":"core.internal.array.arrayassign","name":"_d_arrayassign_r","package":"druntime","parentType":"","signature":"Tarr _d_arrayassign_r(Tarr :  T[],  T)(return  scope  Tarr to,  scope  Tarr from)","url":"/ddoc/druntime/core/internal/array/arrayassign/_d_arrayassign_r.html"},{"doc":"Sets all elements of an array to a single value. Takes into account postblits, copy constructors and destructors. For Plain Old Data elements,`rt/m...","kind":"function","module":"core.internal.array.arrayassign","name":"_d_arraysetassign","package":"druntime","parentType":"","signature":"Tarr _d_arraysetassign(Tarr :  T[],  T)(return  scope  Tarr to,  scope  ref  T value)","url":"/ddoc/druntime/core/internal/array/arrayassign/_d_arraysetassign.html"},{"doc":"","kind":"template","module":"core.internal.array.arrayassign","name":"CopyElem","package":"druntime","parentType":"","signature":"CopyElem(string CopyAction)","url":"/ddoc/druntime/core/internal/array/arrayassign.html#CopyElem"},{"doc":"","kind":"template","module":"core.internal.array.arrayassign","name":"CopyArray","package":"druntime","parentType":"","signature":"CopyArray(bool  CanOverlap,  string CopyAction)","url":"/ddoc/druntime/core/internal/array/arrayassign.html#CopyArray"},{"doc":"","kind":"template","module":"core.internal.array.arrayassign","name":"ArrayAssign","package":"druntime","parentType":"","signature":"ArrayAssign(string CopyLogic,  string AllowOverLap)","url":"/ddoc/druntime/core/internal/array/arrayassign.html#ArrayAssign"},{"doc":"This module contains support for controlling dynamic arrays' capacity and length","kind":"module","module":"core.internal.array.capacity","name":"core.internal.array.capacity","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/capacity.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"gc_expandArrayUsed","package":"druntime","parentType":"","signature":"bool gc_expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/capacity/gc_expandArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"gc_reserveArrayCapacity","package":"druntime","parentType":"","signature":"size_t gc_reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/capacity/gc_reserveArrayCapacity.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"gc_shrinkArrayUsed","package":"druntime","parentType":"","signature":"bool gc_shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/capacity/gc_shrinkArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"gc_getArrayUsed","package":"druntime","parentType":"","signature":"void[] gc_getArrayUsed(void  * ptr,  bool  atomic)","url":"/ddoc/druntime/core/internal/array/capacity/gc_getArrayUsed.html"},{"doc":"Shrink the \"allocated\" length of an array to be the exact size of the array.","kind":"function","module":"core.internal.array.capacity","name":"_d_arrayshrinkfit","package":"druntime","parentType":"","signature":"void _d_arrayshrinkfit(Tarr:  T[],  T)(Tarr arr,  bool  isshared)","url":"/ddoc/druntime/core/internal/array/capacity/_d_arrayshrinkfit.html"},{"doc":"Set the array capacity.","kind":"function","module":"core.internal.array.capacity","name":"_d_arraysetcapacityPureNothrow","package":"druntime","parentType":"","signature":"size_t _d_arraysetcapacityPureNothrow(T)(size_t newcapacity,  void[] *  p,  bool  isshared)","url":"/ddoc/druntime/core/internal/array/capacity/_d_arraysetcapacityPureNothrow.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"_d_arraysetcapacity","package":"druntime","parentType":"","signature":"size_t _d_arraysetcapacity(T)(size_t newcapacity,  void[] *  p,  bool  isshared)","url":"/ddoc/druntime/core/internal/array/capacity/_d_arraysetcapacity.html"},{"doc":"Resize a dynamic array by setting its `.length` property.","kind":"function","module":"core.internal.array.capacity","name":"_d_arraysetlengthT","package":"druntime","parentType":"","signature":"size_t _d_arraysetlengthT(Tarr :  T[],  T)(return  ref  scope  Tarr arr,  size_t newlength)","url":"/ddoc/druntime/core/internal/array/capacity/_d_arraysetlengthT.html"},{"doc":"","kind":"function","module":"core.internal.array.capacity","name":"_d_arraysetlengthT_","package":"druntime","parentType":"","signature":"size_t _d_arraysetlengthT_(Tarr :  T[],  T)(return  ref  scope  Tarr arr,  size_t newlength,  bool  isShared)","url":"/ddoc/druntime/core/internal/array/capacity/_d_arraysetlengthT_.html"},{"doc":"This module contains compiler support for casting dynamic arrays","kind":"module","module":"core.internal.array.casting","name":"core.internal.array.casting","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/casting.html"},{"doc":"Used by `__ArrayCast` to emit a descriptive error message.","kind":"function","module":"core.internal.array.casting","name":"onArrayCastError","package":"druntime","parentType":"","signature":"void onArrayCastError()(string fromType,  size_t fromSize,  size_t fromLength,  string toType,  size_t toElemSize)","url":"/ddoc/druntime/core/internal/array/casting/onArrayCastError.html"},{"doc":"The compiler lowers expressions of `cast(TTo[])TFrom[]` to this implementation. Note that this does not detect alignment problems.","kind":"function","module":"core.internal.array.casting","name":"__ArrayCast","package":"druntime","parentType":"","signature":"TTo[] __ArrayCast(TFrom,  TTo)(return  scope  TFrom[]  from)","url":"/ddoc/druntime/core/internal/array/casting/__ArrayCast.html"},{"doc":"This module contains compiler support for comparing dynamic arrays","kind":"module","module":"core.internal.array.comparison","name":"core.internal.array.comparison","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/comparison.html"},{"doc":"","kind":"function","module":"core.internal.array.comparison","name":"__cmp","package":"druntime","parentType":"","signature":"int __cmp(T)(scope  const  T[]  lhs,  scope  const  T[]  rhs) if (__traits(isScalar,  T))","url":"/ddoc/druntime/core/internal/array/comparison/__cmp.html"},{"doc":"","kind":"function","module":"core.internal.array.comparison","name":"__cmp","package":"druntime","parentType":"","signature":"auto __cmp(T1,  T2)(T1[]  s1,  T2[]  s2) if (!__traits(isScalar,  T1)  && !__traits(isScalar,  T2))","url":"/ddoc/druntime/core/internal/array/comparison/__cmp.html"},{"doc":"This module contains support for controlling dynamic arrays' concatenation Copyright: Copyright Digital Mars 2000 - 2019. License: Distributed unde...","kind":"module","module":"core.internal.array.concatenation","name":"core.internal.array.concatenation","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/concatenation.html"},{"doc":"Concatenate the arrays inside of `froms`. `_d_arraycatnTX(a, b, c)` means `a ~ b ~ c`.","kind":"function","module":"core.internal.array.concatenation","name":"_d_arraycatnTX","package":"druntime","parentType":"","signature":"Tret _d_arraycatnTX(Tret:  Tret_El[],  Tret_El,  Tarr...)(auto  ref  Tarr froms)","url":"/ddoc/druntime/core/internal/array/concatenation/_d_arraycatnTX.html"},{"doc":"This module contains compiler support for constructing dynamic arrays","kind":"module","module":"core.internal.array.construction","name":"core.internal.array.construction","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/construction.html"},{"doc":"Does array initialization (not assignment) from another array of the same element type. Params: to = what array to initialize from = what data the ...","kind":"function","module":"core.internal.array.construction","name":"_d_arrayctor","package":"druntime","parentType":"","signature":"Tarr _d_arrayctor(Tarr :  T[],  T)(return  scope  Tarr to,  scope  Tarr from,  char *  makeWeaklyPure =  null)","url":"/ddoc/druntime/core/internal/array/construction/_d_arrayctor.html"},{"doc":"Do construction of an array. ti[count] p = value; Params: p = what array to initialize value = what data to construct the array with Bugs: This fun...","kind":"function","module":"core.internal.array.construction","name":"_d_arraysetctor","package":"druntime","parentType":"","signature":"void _d_arraysetctor(Tarr :  T[],  T)(scope  Tarr p,  scope  ref  T value)","url":"/ddoc/druntime/core/internal/array/construction/_d_arraysetctor.html"},{"doc":"Allocate an array with the garbage collector. Also initalize elements if their type has an initializer. Otherwise, not zero-initialize the array.","kind":"function","module":"core.internal.array.construction","name":"_d_newarrayUPureNothrow","package":"druntime","parentType":"","signature":"T[] _d_newarrayUPureNothrow(T)(size_t length,  bool  isShared = false)","url":"/ddoc/druntime/core/internal/array/construction/_d_newarrayUPureNothrow.html"},{"doc":"","kind":"function","module":"core.internal.array.construction","name":"_d_newarrayU","package":"druntime","parentType":"","signature":"T[] _d_newarrayU(T)(size_t length,  bool  isShared = false)","url":"/ddoc/druntime/core/internal/array/construction/_d_newarrayU.html"},{"doc":"ditto","kind":"function","module":"core.internal.array.construction","name":"_d_newarrayT","package":"druntime","parentType":"","signature":"T[] _d_newarrayT(T)(size_t length,  bool  isShared = false)","url":"/ddoc/druntime/core/internal/array/construction/_d_newarrayT.html"},{"doc":"Create a new multi-dimensional array. Also initalize elements if their type has an initializer. Otherwise, not zero-initialize the array.","kind":"function","module":"core.internal.array.construction","name":"_d_newarraymTX","package":"druntime","parentType":"","signature":"Tarr _d_newarraymTX(Tarr :  U[],  T,  U)(scope  size_t[]  dims,  bool  isShared = false)","url":"/ddoc/druntime/core/internal/array/construction/_d_newarraymTX.html"},{"doc":"Allocate an array literal","kind":"function","module":"core.internal.array.construction","name":"_d_arrayliteralTX","package":"druntime","parentType":"","signature":"void * _d_arrayliteralTX(T)(size_t length)","url":"/ddoc/druntime/core/internal/array/construction/_d_arrayliteralTX.html"},{"doc":"The `.dup` and `.idup` properties for Associative Arrays and Dynamic Arrays","kind":"module","module":"core.internal.array.duplication","name":"core.internal.array.duplication","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/duplication.html"},{"doc":"","kind":"function","module":"core.internal.array.duplication","name":"_dup","package":"druntime","parentType":"","signature":"U[] _dup(T,  U)(scope  T[]  a) if (__traits(isPOD,  T))","url":"/ddoc/druntime/core/internal/array/duplication/_dup.html"},{"doc":"","kind":"function","module":"core.internal.array.duplication","name":"_dupCtfe","package":"druntime","parentType":"","signature":"U[] _dupCtfe(T,  U)(scope  T[]  a)","url":"/ddoc/druntime/core/internal/array/duplication/_dupCtfe.html"},{"doc":"","kind":"function","module":"core.internal.array.duplication","name":"_dup","package":"druntime","parentType":"","signature":"U[] _dup(T,  U)(T[]  a) if (!__traits(isPOD,  T))","url":"/ddoc/druntime/core/internal/array/duplication/_dup.html"},{"doc":"This module contains compiler support determining equality of arrays.","kind":"module","module":"core.internal.array.equality","name":"core.internal.array.equality","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/equality.html"},{"doc":"","kind":"function","module":"core.internal.array.equality","name":"__equals","package":"druntime","parentType":"","signature":"bool __equals(T1,  T2)(scope  T1[]  lhs,  scope  T2[]  rhs)","url":"/ddoc/druntime/core/internal/array/equality/__equals.html"},{"doc":"","kind":"function","module":"core.internal.array.equality","name":"__equals","package":"druntime","parentType":"","signature":"bool __equals(T1,  T2,  size_t N)(scope  ref  T1[N]  lhs,  scope  T2[]  rhs)","url":"/ddoc/druntime/core/internal/array/equality/__equals.html"},{"doc":"","kind":"function","module":"core.internal.array.equality","name":"__equals","package":"druntime","parentType":"","signature":"bool __equals(T1,  T2,  size_t N)(scope  T1[]  lhs,  scope  ref  T2[N]  rhs)","url":"/ddoc/druntime/core/internal/array/equality/__equals.html"},{"doc":"","kind":"function","module":"core.internal.array.equality","name":"__equals","package":"druntime","parentType":"","signature":"bool __equals(T1,  T2,  size_t N,  size_t M)(scope  ref  T1[N]  lhs,  scope  ref  T2[M]  rhs)","url":"/ddoc/druntime/core/internal/array/equality/__equals.html"},{"doc":"Helper function for __equals(). Outlined to enable __equals() to be inlined, as dmd cannot inline loops.","kind":"function","module":"core.internal.array.equality","name":"isEqual","package":"druntime","parentType":"","signature":"bool isEqual(T1,  T2)(scope  T1[]  lhs,  scope  T2[]  rhs,  size_t length)","url":"/ddoc/druntime/core/internal/array/equality/isEqual.html"},{"doc":"This module contains support array (vector) operations Copyright: Copyright Digital Mars 2000 - 2019. License: Distributed under the $(LINK2 http:/...","kind":"module","module":"core.internal.array.operations","name":"core.internal.array.operations","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/operations.html"},{"doc":"* Perform array (vector) operations and store the result in `res`.  Operand * types and operations are passed as template arguments in Reverse Poli...","kind":"function","module":"core.internal.array.operations","name":"arrayOp","package":"druntime","parentType":"","signature":"T[] arrayOp(T :  T[],  Args...)(T[]  res,  Filter!(isType,  Args)  args)","url":"/ddoc/druntime/core/internal/array/operations/arrayOp.html"},{"doc":"","kind":"function","module":"core.internal.array.operations","name":"isUnaryOp","package":"druntime","parentType":"","signature":"bool isUnaryOp(scope  string op)","url":"/ddoc/druntime/core/internal/array/operations/isUnaryOp.html"},{"doc":"","kind":"function","module":"core.internal.array.operations","name":"isBinaryOp","package":"druntime","parentType":"","signature":"bool isBinaryOp(scope  string op)","url":"/ddoc/druntime/core/internal/array/operations/isBinaryOp.html"},{"doc":"","kind":"function","module":"core.internal.array.operations","name":"isBinaryAssignOp","package":"druntime","parentType":"","signature":"bool isBinaryAssignOp(string op)","url":"/ddoc/druntime/core/internal/array/operations/isBinaryAssignOp.html"},{"doc":"","kind":"function","module":"core.internal.array.operations","name":"toString","package":"druntime","parentType":"","signature":"string toString(size_t num)","url":"/ddoc/druntime/core/internal/array/operations/toString.html"},{"doc":"","kind":"function","module":"core.internal.array.operations","name":"contains","package":"druntime","parentType":"","signature":"bool contains(T)(const  scope  T[]  ary,  const  scope  T[]  vals...)","url":"/ddoc/druntime/core/internal/array/operations/contains.html"},{"doc":"converts slice types to their element type, preserves anything else","kind":"alias","module":"core.internal.array.operations","name":"toElementType","package":"druntime","parentType":"","signature":"toElementType(E :  E[]) = E","url":"/ddoc/druntime/core/internal/array/operations.html#toElementType"},{"doc":"","kind":"alias","module":"core.internal.array.operations","name":"toElementType","package":"druntime","parentType":"","signature":"toElementType(S) = S","url":"/ddoc/druntime/core/internal/array/operations.html#toElementType"},{"doc":"","kind":"alias","module":"core.internal.array.operations","name":"toElementType","package":"druntime","parentType":"","signature":"toElementType(alias  op) = op","url":"/ddoc/druntime/core/internal/array/operations.html#toElementType"},{"doc":"converts slice types to their element type, preserves anything else","kind":"alias","module":"core.internal.array.operations","name":"toVecType","package":"druntime","parentType":"","signature":"toVecType(E :  E[]) = vec!E","url":"/ddoc/druntime/core/internal/array/operations.html#toVecType"},{"doc":"","kind":"alias","module":"core.internal.array.operations","name":"toVecType","package":"druntime","parentType":"","signature":"toVecType(S) = vec!S","url":"/ddoc/druntime/core/internal/array/operations.html#toVecType"},{"doc":"","kind":"alias","module":"core.internal.array.operations","name":"toVecType","package":"druntime","parentType":"","signature":"toVecType(alias  op) = op","url":"/ddoc/druntime/core/internal/array/operations.html#toVecType"},{"doc":"Check whether operations on operand types are supported.  This template recursively reduces the expression tree and determines intermediate types. ...","kind":"template","module":"core.internal.array.operations","name":"typeCheck","package":"druntime","parentType":"","signature":"typeCheck(bool  fail,  T,  Args...)","url":"/ddoc/druntime/core/internal/array/operations.html#typeCheck"},{"doc":"ditto","kind":"template","module":"core.internal.array.operations","name":"typeCheck","package":"druntime","parentType":"","signature":"typeCheck(bool  fail,  T,  ResultType)","url":"/ddoc/druntime/core/internal/array/operations.html#typeCheck"},{"doc":"","kind":"template","module":"core.internal.array.operations","name":"not","package":"druntime","parentType":"","signature":"not(alias  tmlp)","url":"/ddoc/druntime/core/internal/array/operations.html#not"},{"doc":"Find element in `haystack` for which `pred` is true.","kind":"template","module":"core.internal.array.operations","name":"staticIndexOf","package":"druntime","parentType":"","signature":"staticIndexOf(alias  pred,  haystack...)","url":"/ddoc/druntime/core/internal/array/operations.html#staticIndexOf"},{"doc":"This module contains utility functions to help the implementation of the runtime hook","kind":"module","module":"core.internal.array.utils","name":"core.internal.array.utils","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/array/utils.html"},{"doc":"","kind":"function","module":"core.internal.array.utils","name":"gcStatsPure","package":"druntime","parentType":"","signature":"auto gcStatsPure()","url":"/ddoc/druntime/core/internal/array/utils/gcStatsPure.html"},{"doc":"","kind":"function","module":"core.internal.array.utils","name":"accumulatePure","package":"druntime","parentType":"","signature":"ulong accumulatePure(string file,  int  line,  string funcname,  string name,  ulong  size)","url":"/ddoc/druntime/core/internal/array/utils/accumulatePure.html"},{"doc":"Allocate a memory block with appendable capabilities for array usage.","kind":"function","module":"core.internal.array.utils","name":"__arrayAlloc","package":"druntime","parentType":"","signature":"void[] __arrayAlloc(T)(size_t arrSize)","url":"/ddoc/druntime/core/internal/array/utils/__arrayAlloc.html"},{"doc":"Given an array of length `size` that needs to be expanded to `newlength`, compute a new capacity.","kind":"function","module":"core.internal.array.utils","name":"newCapacity","package":"druntime","parentType":"","signature":"size_t newCapacity(size_t newlength,  size_t elemsize)","url":"/ddoc/druntime/core/internal/array/utils/newCapacity.html"},{"doc":"","kind":"function","module":"core.internal.array.utils","name":"__typeAttrs","package":"druntime","parentType":"","signature":"uint __typeAttrs(T)(void  * copyAttrsFrom =  null)","url":"/ddoc/druntime/core/internal/array/utils/__typeAttrs.html"},{"doc":"","kind":"alias","module":"core.internal.array.utils","name":"BlkAttr","package":"druntime","parentType":"","signature":"BlkAttr = GC.BlkAttr","url":"/ddoc/druntime/core/internal/array/utils.html#BlkAttr"},{"doc":"Check if the type `T`'s postblit is called in nothrow, if it exist Params: T = Type to check Returns: if the postblit is callable in a `nothrow` sc...","kind":"template","module":"core.internal.array.utils","name":"isPostblitNoThrow","package":"druntime","parentType":"","signature":"isPostblitNoThrow(T)","url":"/ddoc/druntime/core/internal/array/utils.html#isPostblitNoThrow"},{"doc":"The core.internal.atomic module comtains the low-level atomic features available in hardware. This module may be a routing layer for compiler intri...","kind":"module","module":"core.internal.atomic","name":"core.internal.atomic","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/atomic.html"},{"doc":"","kind":"function","module":"core.internal.atomic","name":"simpleFormat","package":"druntime","parentType":"","signature":"string simpleFormat(string format,  scope  string[]  args)","url":"/ddoc/druntime/core/internal/atomic/simpleFormat.html"},{"doc":"","kind":"template","module":"core.internal.atomic","name":"IntOrLong","package":"druntime","parentType":"","signature":"IntOrLong(T)","url":"/ddoc/druntime/core/internal/atomic.html#IntOrLong"},{"doc":"","kind":"template","module":"core.internal.atomic","name":"needsLoadBarrier","package":"druntime","parentType":"","signature":"needsLoadBarrier(  MemoryOrder ms )","url":"/ddoc/druntime/core/internal/atomic.html#needsLoadBarrier"},{"doc":"","kind":"template","module":"core.internal.atomic","name":"needsStoreBarrier","package":"druntime","parentType":"","signature":"needsStoreBarrier(  MemoryOrder ms )","url":"/ddoc/druntime/core/internal/atomic.html#needsStoreBarrier"},{"doc":"","kind":"module","module":"core.internal.attributes","name":"core.internal.attributes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/attributes.html"},{"doc":"Used to annotate `unittest`s which need to be tested in a `-betterC` environment.","kind":"variable","module":"core.internal.attributes","name":"betterC","package":"druntime","parentType":"","signature":"betterC","url":"/ddoc/druntime/core/internal/attributes.html#betterC"},{"doc":"Generates a human-readable stack-trace on POSIX targets using DWARF","kind":"module","module":"core.internal.backtrace.dwarf","name":"core.internal.backtrace.dwarf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"traceHandlerOpApplyImpl","package":"druntime","parentType":"","signature":"int traceHandlerOpApplyImpl(size_t numFrames,\n                             scope  const(void) *  delegate(size_t)  getNthAddress,\n                             scope  const(char)[]  delegate(size_t)  getNthFuncName,\n                             scope  int  delegate(ref  size_t,  ref  const(char[]))  dg)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/traceHandlerOpApplyImpl.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"processCallstack","package":"druntime","parentType":"","signature":"int processCallstack(Location[]  locations,  const(ubyte)[]  debugLineSectionData,\n                      size_t baseAddress,  scope  int  delegate(ref  size_t,  ref  const(char[]))  dg)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/processCallstack.html"},{"doc":"Resolve the addresses of `locations` using `debugLineSectionData`","kind":"function","module":"core.internal.backtrace.dwarf","name":"resolveAddresses","package":"druntime","parentType":"","signature":"void resolveAddresses(const(ubyte)[]  debugLineSectionData,  Location[]  locations,  size_t baseAddress)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/resolveAddresses.html"},{"doc":"Run the state machine to generate line number matrix","kind":"function","module":"core.internal.backtrace.dwarf","name":"runStateMachine","package":"druntime","parentType":"","signature":"bool runStateMachine(ref  const(LineNumberProgram)  lp,  scope  RunStateMachineCallback callback)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/runStateMachine.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"read","package":"druntime","parentType":"","signature":"T read(T)(ref  const(ubyte)[]  buffer)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/read.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"readStringz","package":"druntime","parentType":"","signature":"const(char)[] readStringz(ref  const(ubyte)[]  buffer)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/readStringz.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"readULEB128","package":"druntime","parentType":"","signature":"ulong readULEB128(ref  const(ubyte)[]  buffer)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/readULEB128.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"readSLEB128","package":"druntime","parentType":"","signature":"long readSLEB128(ref  const(ubyte)[]  buffer)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/readSLEB128.html"},{"doc":"Reads a DWARF v5 directory/file name entry format.","kind":"function","module":"core.internal.backtrace.dwarf","name":"readEntryFormat","package":"druntime","parentType":"","signature":"Array!EntryFormatPair readEntryFormat(ref  const(ubyte)[]  buffer)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/readEntryFormat.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.dwarf","name":"readLineNumberProgram","package":"druntime","parentType":"","signature":"LineNumberProgram readLineNumberProgram(ref  const(ubyte)[]  data)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/readLineNumberProgram.html"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"Location","package":"druntime","parentType":"","signature":"Location","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#Location"},{"doc":"Format this location into a human-readable string","kind":"method","module":"core.internal.backtrace.dwarf","name":"toString","package":"druntime","parentType":"Location","signature":"void toString(scope  void  delegate(scope  const  char[])  sink)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/Location.toString.html"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"TraceInfoBuffer","package":"druntime","parentType":"","signature":"TraceInfoBuffer","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#TraceInfoBuffer"},{"doc":"","kind":"method","module":"core.internal.backtrace.dwarf","name":"opSlice","package":"druntime","parentType":"TraceInfoBuffer","signature":"inout(char)[] opSlice()","url":"/ddoc/druntime/core/internal/backtrace/dwarf/TraceInfoBuffer.opSlice.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.dwarf","name":"reset","package":"druntime","parentType":"TraceInfoBuffer","signature":"void reset()","url":"/ddoc/druntime/core/internal/backtrace/dwarf/TraceInfoBuffer.reset.html"},{"doc":"Used as `sink` argument to `Location.toString`","kind":"method","module":"core.internal.backtrace.dwarf","name":"put","package":"druntime","parentType":"TraceInfoBuffer","signature":"void put(scope  const  char[]  data)","url":"/ddoc/druntime/core/internal/backtrace/dwarf/TraceInfoBuffer.put.html"},{"doc":"A callback type for `runStateMachine`","kind":"alias","module":"core.internal.backtrace.dwarf","name":"RunStateMachineCallback","package":"druntime","parentType":"","signature":"RunStateMachineCallback = bool  delegate(const(void) *  address,  LocationInfo info,  bool  isEndSequence)\n    @nogc nothrow","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#RunStateMachineCallback"},{"doc":"","kind":"enum","module":"core.internal.backtrace.dwarf","name":"DW_LNCT","package":"druntime","parentType":"","signature":"DW_LNCT : ushort","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"path","package":"druntime","parentType":"","signature":"path = 1","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"directoryIndex","package":"druntime","parentType":"","signature":"directoryIndex = 2","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"timestamp","package":"druntime","parentType":"","signature":"timestamp = 3","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"size","package":"druntime","parentType":"","signature":"size = 4","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"md5","package":"druntime","parentType":"","signature":"md5 = 5","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"loUser","package":"druntime","parentType":"","signature":"loUser = 0x2000","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"hiUser","package":"druntime","parentType":"","signature":"hiUser = 0x3fff","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_LNCT"},{"doc":"","kind":"enum","module":"core.internal.backtrace.dwarf","name":"DW_FORM","package":"druntime","parentType":"","signature":"DW_FORM : ubyte","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addr","package":"druntime","parentType":"","signature":"addr = 1","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"block2","package":"druntime","parentType":"","signature":"block2 = 3","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"block4","package":"druntime","parentType":"","signature":"block4 = 4","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"data2","package":"druntime","parentType":"","signature":"data2 = 5","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"data4","package":"druntime","parentType":"","signature":"data4 = 6","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"data8","package":"druntime","parentType":"","signature":"data8 = 7","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"string_","package":"druntime","parentType":"","signature":"string_ = 8","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"block","package":"druntime","parentType":"","signature":"block = 9","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"block1","package":"druntime","parentType":"","signature":"block1 = 10","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"data1","package":"druntime","parentType":"","signature":"data1 = 11","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"flag","package":"druntime","parentType":"","signature":"flag = 12","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"sdata","package":"druntime","parentType":"","signature":"sdata = 13","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strp","package":"druntime","parentType":"","signature":"strp = 14","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"udata","package":"druntime","parentType":"","signature":"udata = 15","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref_addr","package":"druntime","parentType":"","signature":"ref_addr = 16","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref1","package":"druntime","parentType":"","signature":"ref1 = 17","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref2","package":"druntime","parentType":"","signature":"ref2 = 18","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref4","package":"druntime","parentType":"","signature":"ref4 = 19","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref8","package":"druntime","parentType":"","signature":"ref8 = 20","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref_udata","package":"druntime","parentType":"","signature":"ref_udata = 21","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"indirect","package":"druntime","parentType":"","signature":"indirect = 22","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"sec_offset","package":"druntime","parentType":"","signature":"sec_offset = 23","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"exprloc","package":"druntime","parentType":"","signature":"exprloc = 24","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"flag_present","package":"druntime","parentType":"","signature":"flag_present = 25","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strx","package":"druntime","parentType":"","signature":"strx = 26","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addrx","package":"druntime","parentType":"","signature":"addrx = 27","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref_sup4","package":"druntime","parentType":"","signature":"ref_sup4 = 28","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strp_sup","package":"druntime","parentType":"","signature":"strp_sup = 29","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"data16","package":"druntime","parentType":"","signature":"data16 = 30","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"line_strp","package":"druntime","parentType":"","signature":"line_strp = 31","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref_sig8","package":"druntime","parentType":"","signature":"ref_sig8 = 32","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"implicit_const","package":"druntime","parentType":"","signature":"implicit_const = 33","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"loclistx","package":"druntime","parentType":"","signature":"loclistx = 34","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"rnglistx","package":"druntime","parentType":"","signature":"rnglistx = 35","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"ref_sup8","package":"druntime","parentType":"","signature":"ref_sup8 = 36","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strx1","package":"druntime","parentType":"","signature":"strx1 = 37","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strx2","package":"druntime","parentType":"","signature":"strx2 = 38","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strx3","package":"druntime","parentType":"","signature":"strx3 = 39","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"strx4","package":"druntime","parentType":"","signature":"strx4 = 40","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addrx1","package":"druntime","parentType":"","signature":"addrx1 = 41","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addrx2","package":"druntime","parentType":"","signature":"addrx2 = 42","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addrx3","package":"druntime","parentType":"","signature":"addrx3 = 43","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"addrx4","package":"druntime","parentType":"","signature":"addrx4 = 44","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#DW_FORM"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"EntryFormatPair","package":"druntime","parentType":"","signature":"EntryFormatPair","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#EntryFormatPair"},{"doc":"","kind":"enum","module":"core.internal.backtrace.dwarf","name":"StandardOpcode","package":"druntime","parentType":"","signature":"StandardOpcode : ubyte","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"extendedOp","package":"druntime","parentType":"","signature":"extendedOp = 0","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"copy","package":"druntime","parentType":"","signature":"copy = 1","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"advancePC","package":"druntime","parentType":"","signature":"advancePC = 2","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"advanceLine","package":"druntime","parentType":"","signature":"advanceLine = 3","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setFile","package":"druntime","parentType":"","signature":"setFile = 4","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setColumn","package":"druntime","parentType":"","signature":"setColumn = 5","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"negateStatement","package":"druntime","parentType":"","signature":"negateStatement = 6","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setBasicBlock","package":"druntime","parentType":"","signature":"setBasicBlock = 7","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"constAddPC","package":"druntime","parentType":"","signature":"constAddPC = 8","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"fixedAdvancePC","package":"druntime","parentType":"","signature":"fixedAdvancePC = 9","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setPrologueEnd","package":"druntime","parentType":"","signature":"setPrologueEnd = 10","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setEpilogueBegin","package":"druntime","parentType":"","signature":"setEpilogueBegin = 11","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setISA","package":"druntime","parentType":"","signature":"setISA = 12","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StandardOpcode"},{"doc":"","kind":"enum","module":"core.internal.backtrace.dwarf","name":"ExtendedOpcode","package":"druntime","parentType":"","signature":"ExtendedOpcode : ubyte","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#ExtendedOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"endSequence","package":"druntime","parentType":"","signature":"endSequence = 1","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#ExtendedOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setAddress","package":"druntime","parentType":"","signature":"setAddress = 2","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#ExtendedOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"defineFile","package":"druntime","parentType":"","signature":"defineFile = 3","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#ExtendedOpcode"},{"doc":"","kind":"enum_member","module":"core.internal.backtrace.dwarf","name":"setDiscriminator","package":"druntime","parentType":"","signature":"setDiscriminator = 4","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#ExtendedOpcode"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"StateMachine","package":"druntime","parentType":"","signature":"StateMachine","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#StateMachine"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"LocationInfo","package":"druntime","parentType":"","signature":"LocationInfo","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#LocationInfo"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"LineNumberProgram","package":"druntime","parentType":"","signature":"LineNumberProgram","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#LineNumberProgram"},{"doc":"","kind":"struct","module":"core.internal.backtrace.dwarf","name":"SourceFile","package":"druntime","parentType":"","signature":"SourceFile","url":"/ddoc/druntime/core/internal/backtrace/dwarf.html#SourceFile"},{"doc":"This code reads ELF files and sections using memory mapped IO.","kind":"module","module":"core.internal.backtrace.elf","name":"core.internal.backtrace.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/backtrace/elf.html"},{"doc":"","kind":"struct","module":"core.internal.backtrace.elf","name":"Image","package":"druntime","parentType":"","signature":"Image","url":"/ddoc/druntime/core/internal/backtrace/elf.html#Image"},{"doc":"","kind":"method","module":"core.internal.backtrace.elf","name":"openSelf","package":"druntime","parentType":"Image","signature":"Image openSelf()","url":"/ddoc/druntime/core/internal/backtrace/elf/Image.openSelf.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.elf","name":"isValid","package":"druntime","parentType":"Image","signature":"bool isValid()","url":"/ddoc/druntime/core/internal/backtrace/elf/Image.isValid.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.elf","name":"processDebugLineSectionData","package":"druntime","parentType":"Image","signature":"T processDebugLineSectionData(T)(scope  T delegate(const(ubyte)[])  processor)","url":"/ddoc/druntime/core/internal/backtrace/elf/Image.processDebugLineSectionData.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.elf","name":"baseAddress","package":"druntime","parentType":"Image","signature":"size_t baseAddress()","url":"/ddoc/druntime/core/internal/backtrace/elf/Image.baseAddress.html"},{"doc":"Basic D language bindings for LLVM libunwind","kind":"module","module":"core.internal.backtrace.libunwind","name":"core.internal.backtrace.libunwind","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html"},{"doc":"Initialize the context at the current call site","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_getcontext","package":"druntime","parentType":"","signature":"int unw_getcontext(unw_context_t *)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_getcontext.html"},{"doc":"Initialize a cursor at the call site","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_init_local","package":"druntime","parentType":"","signature":"int unw_init_local(unw_cursor_t *,  unw_context_t *)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_init_local.html"},{"doc":"Goes one level up in the call chain","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_step","package":"druntime","parentType":"","signature":"int unw_step(unw_cursor_t *)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_step.html"},{"doc":"Get infos about the current procedure (function)","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_get_proc_info","package":"druntime","parentType":"","signature":"int unw_get_proc_info(unw_cursor_t *,  unw_proc_info_t *)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_get_proc_info.html"},{"doc":"Get the name of the current procedure (function)","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_get_proc_name","package":"druntime","parentType":"","signature":"int unw_get_proc_name(unw_cursor_t *,  char *,  size_t,  unw_word_t *)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_get_proc_name.html"},{"doc":"Reads the value of register `reg` in the stack frame identified by cursor `cp` and stores the value in the word pointed to by `valp`.","kind":"function","module":"core.internal.backtrace.libunwind","name":"unw_get_reg","package":"druntime","parentType":"","signature":"int unw_get_reg(unw_cursor_t *  cp,  unw_regnum_t reg,  unw_word_t *  valp)","url":"/ddoc/druntime/core/internal/backtrace/libunwind/unw_get_reg.html"},{"doc":"","kind":"alias","module":"core.internal.backtrace.libunwind","name":"unw_word_t","package":"druntime","parentType":"","signature":"unw_word_t = uintptr_t","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html#unw_word_t"},{"doc":"","kind":"alias","module":"core.internal.backtrace.libunwind","name":"unw_regnum_t","package":"druntime","parentType":"","signature":"unw_regnum_t = int","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html#unw_regnum_t"},{"doc":"","kind":"struct","module":"core.internal.backtrace.libunwind","name":"unw_context_t","package":"druntime","parentType":"","signature":"unw_context_t","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html#unw_context_t"},{"doc":"","kind":"struct","module":"core.internal.backtrace.libunwind","name":"unw_cursor_t","package":"druntime","parentType":"","signature":"unw_cursor_t","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html#unw_cursor_t"},{"doc":"","kind":"struct","module":"core.internal.backtrace.libunwind","name":"unw_proc_info_t","package":"druntime","parentType":"","signature":"unw_proc_info_t","url":"/ddoc/druntime/core/internal/backtrace/libunwind.html#unw_proc_info_t"},{"doc":"This module extracts debug info from the currently running Mach-O executable.","kind":"module","module":"core.internal.backtrace.macho","name":"core.internal.backtrace.macho","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/backtrace/macho.html"},{"doc":"","kind":"struct","module":"core.internal.backtrace.macho","name":"Image","package":"druntime","parentType":"","signature":"Image","url":"/ddoc/druntime/core/internal/backtrace/macho.html#Image"},{"doc":"","kind":"method","module":"core.internal.backtrace.macho","name":"openSelf","package":"druntime","parentType":"Image","signature":"Image openSelf()","url":"/ddoc/druntime/core/internal/backtrace/macho/Image.openSelf.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.macho","name":"isValid","package":"druntime","parentType":"Image","signature":"bool isValid()","url":"/ddoc/druntime/core/internal/backtrace/macho/Image.isValid.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.macho","name":"processDebugLineSectionData","package":"druntime","parentType":"Image","signature":"T processDebugLineSectionData(T)(scope  T delegate(const(ubyte)[])  processor)","url":"/ddoc/druntime/core/internal/backtrace/macho/Image.processDebugLineSectionData.html"},{"doc":"","kind":"method","module":"core.internal.backtrace.macho","name":"baseAddress","package":"druntime","parentType":"Image","signature":"size_t baseAddress()","url":"/ddoc/druntime/core/internal/backtrace/macho/Image.baseAddress.html"},{"doc":"Binding for libunwind/libgc's `unwind.h`","kind":"module","module":"core.internal.backtrace.unwind","name":"core.internal.backtrace.unwind","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/backtrace/unwind.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_RaiseException","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_RaiseException(_Unwind_Exception * exception_object)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_RaiseException.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_ForcedUnwind","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_ForcedUnwind(\n         _Unwind_Exception *  exception_object,\n         _Unwind_Stop_Fn stop,\n         void *  stop_parameter)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_ForcedUnwind.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_DeleteException","package":"druntime","parentType":"","signature":"void _Unwind_DeleteException(_Unwind_Exception *  exception_object)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_DeleteException.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_Resume","package":"druntime","parentType":"","signature":"void _Unwind_Resume(_Unwind_Exception *  exception_object)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_Resume.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_Resume_or_Rethrow","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_Resume_or_Rethrow(_Unwind_Exception *  exception_object)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_Resume_or_Rethrow.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_Backtrace","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_Backtrace(_Unwind_Trace_Fn,  void *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_Backtrace.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetGR","package":"druntime","parentType":"","signature":"_Unwind_Word _Unwind_GetGR(_Unwind_Context *  context,  int  index)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetGR.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SetGR","package":"druntime","parentType":"","signature":"void _Unwind_SetGR(_Unwind_Context *  context,  int  index,  _Unwind_Word new_value)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SetGR.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetIP","package":"druntime","parentType":"","signature":"_Unwind_Ptr _Unwind_GetIP(_Unwind_Context *  context)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetIP.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetIPInfo","package":"druntime","parentType":"","signature":"_Unwind_Ptr _Unwind_GetIPInfo(_Unwind_Context *  context,  int *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetIPInfo.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SetIP","package":"druntime","parentType":"","signature":"void _Unwind_SetIP(_Unwind_Context *  context,  _Unwind_Ptr new_value)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SetIP.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetCFA","package":"druntime","parentType":"","signature":"_Unwind_Word _Unwind_GetCFA(_Unwind_Context *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetCFA.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetBSP","package":"druntime","parentType":"","signature":"_Unwind_Word _Unwind_GetBSP(_Unwind_Context *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetBSP.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetLanguageSpecificData","package":"druntime","parentType":"","signature":"void * _Unwind_GetLanguageSpecificData(_Unwind_Context *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetLanguageSpecificData.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_GetRegionStart","package":"druntime","parentType":"","signature":"_Unwind_Ptr _Unwind_GetRegionStart(_Unwind_Context *  context)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_GetRegionStart.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_FindEnclosingFunction","package":"druntime","parentType":"","signature":"void * _Unwind_FindEnclosingFunction(void *  pc)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_FindEnclosingFunction.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_Register","package":"druntime","parentType":"","signature":"void _Unwind_SjLj_Register(SjLj_Function_Context *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_Register.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_Unregister","package":"druntime","parentType":"","signature":"void _Unwind_SjLj_Unregister(SjLj_Function_Context *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_Unregister.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_RaiseException","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_SjLj_RaiseException(_Unwind_Exception *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_RaiseException.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_ForcedUnwind","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_SjLj_ForcedUnwind(_Unwind_Exception ,  _Unwind_Stop_Fn,  void *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_ForcedUnwind.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_Resume","package":"druntime","parentType":"","signature":"void _Unwind_SjLj_Resume(_Unwind_Exception *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_Resume.html"},{"doc":"","kind":"function","module":"core.internal.backtrace.unwind","name":"_Unwind_SjLj_Resume_or_Rethrow","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception *)","url":"/ddoc/druntime/core/internal/backtrace/unwind/_Unwind_SjLj_Resume_or_Rethrow.html"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Word","package":"druntime","parentType":"","signature":"_Unwind_Word = uintptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Word"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Sword","package":"druntime","parentType":"","signature":"_Unwind_Sword = intptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Sword"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Ptr","package":"druntime","parentType":"","signature":"_Unwind_Ptr = uintptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Ptr"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Internal_Ptr","package":"druntime","parentType":"","signature":"_Unwind_Internal_Ptr = uintptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Internal_Ptr"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Exception_Class","package":"druntime","parentType":"","signature":"_Unwind_Exception_Class = ulong","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Exception_Class"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_uleb128_t","package":"druntime","parentType":"","signature":"_uleb128_t = uintptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_uleb128_t"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_sleb128_t","package":"druntime","parentType":"","signature":"_sleb128_t = intptr_t","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_sleb128_t"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Reason_Code","package":"druntime","parentType":"","signature":"_Unwind_Reason_Code = int","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Reason_Code"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Action","package":"druntime","parentType":"","signature":"_Unwind_Action = int","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Action"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Exception_Cleanup_Fn","package":"druntime","parentType":"","signature":"_Unwind_Exception_Cleanup_Fn = void  function(\n         _Unwind_Reason_Code reason,\n         _Unwind_Exception * exc)","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Exception_Cleanup_Fn"},{"doc":"","kind":"struct","module":"core.internal.backtrace.unwind","name":"_Unwind_Context","package":"druntime","parentType":"","signature":"_Unwind_Context","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Context"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Stop_Fn","package":"druntime","parentType":"","signature":"_Unwind_Stop_Fn = _Unwind_Reason_Code function(\n         int  _version,\n         _Unwind_Action actions,\n         _Unwind_Exception_Class exceptionClass,\n         _Unwind_Exception *  exceptionObject,\n         _Unwind_Context *  context,\n         void *  stop_parameter)","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Stop_Fn"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Trace_Fn","package":"druntime","parentType":"","signature":"_Unwind_Trace_Fn = _Unwind_Reason_Code function(_Unwind_Context *,  void *)","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Trace_Fn"},{"doc":"","kind":"alias","module":"core.internal.backtrace.unwind","name":"_Unwind_Personality_Fn","package":"druntime","parentType":"","signature":"_Unwind_Personality_Fn = _Unwind_Reason_Code function(\n         int  _version,\n         _Unwind_Action actions,\n         _Unwind_Exception_Class exceptionClass,\n         _Unwind_Exception *  exceptionObject,\n         _Unwind_Context *  context)","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_Unwind_Personality_Fn"},{"doc":"","kind":"struct","module":"core.internal.backtrace.unwind","name":"SjLj_Function_Context","package":"druntime","parentType":"","signature":"SjLj_Function_Context","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#SjLj_Function_Context"},{"doc":"","kind":"variable","module":"core.internal.backtrace.unwind","name":"_UA_SEARCH_PHASE","package":"druntime","parentType":"","signature":"_Unwind_Action _UA_SEARCH_PHASE","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_UA_SEARCH_PHASE"},{"doc":"","kind":"variable","module":"core.internal.backtrace.unwind","name":"_UA_CLEANUP_PHASE","package":"druntime","parentType":"","signature":"_Unwind_Action _UA_CLEANUP_PHASE","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_UA_CLEANUP_PHASE"},{"doc":"","kind":"variable","module":"core.internal.backtrace.unwind","name":"_UA_HANDLER_FRAME","package":"druntime","parentType":"","signature":"_Unwind_Action _UA_HANDLER_FRAME","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_UA_HANDLER_FRAME"},{"doc":"","kind":"variable","module":"core.internal.backtrace.unwind","name":"_UA_FORCE_UNWIND","package":"druntime","parentType":"","signature":"_Unwind_Action _UA_FORCE_UNWIND","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_UA_FORCE_UNWIND"},{"doc":"","kind":"variable","module":"core.internal.backtrace.unwind","name":"_UA_END_OF_STACK","package":"druntime","parentType":"","signature":"_Unwind_Action _UA_END_OF_STACK","url":"/ddoc/druntime/core/internal/backtrace/unwind.html#_UA_END_OF_STACK"},{"doc":"","kind":"module","module":"core.internal.cast_","name":"core.internal.cast_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/cast_.html"},{"doc":"","kind":"function","module":"core.internal.cast_","name":"areClassInfosEqual","package":"druntime","parentType":"","signature":"bool areClassInfosEqual(scope  const  ClassInfo a,  scope  const  ClassInfo b)","url":"/ddoc/druntime/core/internal/cast_/areClassInfosEqual.html"},{"doc":"Dynamic cast from a class object `o` to class or interface `To`, where `To` is a subtype of `o`. Params: o = instance of class To = class or interf...","kind":"function","module":"core.internal.cast_","name":"_d_dynamic_cast","package":"druntime","parentType":"","signature":"void * _d_dynamic_cast(To)(const  return  scope  Object o)","url":"/ddoc/druntime/core/internal/cast_/_d_dynamic_cast.html"},{"doc":"Dynamic cast `o` to final class `To` only one level down Params: o = object that is instance of a class To = final class that is a subclass type of...","kind":"function","module":"core.internal.cast_","name":"_d_paint_cast","package":"druntime","parentType":"","signature":"void * _d_paint_cast(To)(const  return  scope  Object o)","url":"/ddoc/druntime/core/internal/cast_/_d_paint_cast.html"},{"doc":"","kind":"function","module":"core.internal.cast_","name":"_d_class_cast_impl","package":"druntime","parentType":"","signature":"void * _d_class_cast_impl(const  return  scope  Object o,  const  ClassInfo c)","url":"/ddoc/druntime/core/internal/cast_/_d_class_cast_impl.html"},{"doc":"Dynamic cast from a class object o to class type `To`, where `To` is a subclass type of `o`. Params: o = instance of class To = a subclass type of ...","kind":"function","module":"core.internal.cast_","name":"_d_class_cast","package":"druntime","parentType":"","signature":"void * _d_class_cast(To)(const  return  scope  Object o)","url":"/ddoc/druntime/core/internal/cast_/_d_class_cast.html"},{"doc":"Attempts to cast interface Object o to class type `To`. Returns o if successful, null if not.","kind":"function","module":"core.internal.cast_","name":"_d_interface_cast","package":"druntime","parentType":"","signature":"void * _d_interface_cast(To)(void *  p)","url":"/ddoc/druntime/core/internal/cast_/_d_interface_cast.html"},{"doc":"Hook that detects the type of cast performed and calls the appropriate function. Params: o = object that is being casted To = type to which the obj...","kind":"function","module":"core.internal.cast_","name":"_d_cast","package":"druntime","parentType":"","signature":"void * _d_cast(To,  From)(From o)","url":"/ddoc/druntime/core/internal/cast_/_d_cast.html"},{"doc":"","kind":"function","module":"core.internal.cast_","name":"_d_isbaseof2","package":"druntime","parentType":"","signature":"bool _d_isbaseof2(To)(scope  ClassInfo oc,  scope  ref  size_t offset)","url":"/ddoc/druntime/core/internal/cast_/_d_isbaseof2.html"},{"doc":"Array container for internal usage.","kind":"module","module":"core.internal.container.array","name":"core.internal.container.array","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/container/array.html"},{"doc":"","kind":"struct","module":"core.internal.container.array","name":"Array","package":"druntime","parentType":"","signature":"Array(T)","url":"/ddoc/druntime/core/internal/container/array.html#Array"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"reset","package":"druntime","parentType":"Array","signature":"void reset()","url":"/ddoc/druntime/core/internal/container/array/Array.reset.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"length","package":"druntime","parentType":"Array","signature":"size_t length()","url":"/ddoc/druntime/core/internal/container/array/Array.length.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"length","package":"druntime","parentType":"Array","signature":"void length(size_t nlength)","url":"/ddoc/druntime/core/internal/container/array/Array.length.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"empty","package":"druntime","parentType":"Array","signature":"bool empty()","url":"/ddoc/druntime/core/internal/container/array/Array.empty.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"front","package":"druntime","parentType":"Array","signature":"inout(T) front()","url":"/ddoc/druntime/core/internal/container/array/Array.front.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"back","package":"druntime","parentType":"Array","signature":"inout(T) back()","url":"/ddoc/druntime/core/internal/container/array/Array.back.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"opIndex","package":"druntime","parentType":"Array","signature":"inout(T) opIndex(size_t idx)","url":"/ddoc/druntime/core/internal/container/array/Array.opIndex.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"opSlice","package":"druntime","parentType":"Array","signature":"inout(T)[] opSlice()","url":"/ddoc/druntime/core/internal/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"opSlice","package":"druntime","parentType":"Array","signature":"inout(T)[] opSlice(size_t a,  size_t b)","url":"/ddoc/druntime/core/internal/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"insertBack","package":"druntime","parentType":"Array","signature":"void insertBack()(auto  ref  T val)","url":"/ddoc/druntime/core/internal/container/array/Array.insertBack.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"popBack","package":"druntime","parentType":"Array","signature":"void popBack()","url":"/ddoc/druntime/core/internal/container/array/Array.popBack.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"remove","package":"druntime","parentType":"Array","signature":"void remove(size_t idx)","url":"/ddoc/druntime/core/internal/container/array/Array.remove.html"},{"doc":"","kind":"method","module":"core.internal.container.array","name":"swap","package":"druntime","parentType":"Array","signature":"void swap(ref  Array other)","url":"/ddoc/druntime/core/internal/container/array/Array.swap.html"},{"doc":"Common code for writing containers.","kind":"module","module":"core.internal.container.common","name":"core.internal.container.common","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/container/common.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"xrealloc","package":"druntime","parentType":"","signature":"void * xrealloc(void *  ptr,  size_t sz)","url":"/ddoc/druntime/core/internal/container/common/xrealloc.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"xmalloc","package":"druntime","parentType":"","signature":"void * xmalloc(size_t sz)","url":"/ddoc/druntime/core/internal/container/common/xmalloc.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(T)(ref  T t) if (is(T ==  struct)  &&  dtorIsNothrow!T)","url":"/ddoc/druntime/core/internal/container/common/destroy.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(T)(ref  T t) if (!is(T ==  struct))","url":"/ddoc/druntime/core/internal/container/common/destroy.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"initialize","package":"druntime","parentType":"","signature":"void initialize(T)(ref  T t) if (is(T ==  struct))","url":"/ddoc/druntime/core/internal/container/common/initialize.html"},{"doc":"","kind":"function","module":"core.internal.container.common","name":"initialize","package":"druntime","parentType":"","signature":"void initialize(T)(ref  T t) if (!is(T ==  struct))","url":"/ddoc/druntime/core/internal/container/common/initialize.html"},{"doc":"HashTab container for internal usage.","kind":"module","module":"core.internal.container.hashtab","name":"core.internal.container.hashtab","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/container/hashtab.html"},{"doc":"","kind":"struct","module":"core.internal.container.hashtab","name":"HashTab","package":"druntime","parentType":"","signature":"HashTab(Key,  Value)","url":"/ddoc/druntime/core/internal/container/hashtab.html#HashTab"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"reset","package":"druntime","parentType":"HashTab","signature":"void reset()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.reset.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"length","package":"druntime","parentType":"HashTab","signature":"size_t length()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.length.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"empty","package":"druntime","parentType":"HashTab","signature":"bool empty()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.empty.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"remove","package":"druntime","parentType":"HashTab","signature":"void remove(in  Key key)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.remove.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"opIndex","package":"druntime","parentType":"HashTab","signature":"inout(Value) opIndex(Key key)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.opIndex.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"opIndexAssign","package":"druntime","parentType":"HashTab","signature":"void opIndexAssign(Value value,  Key key)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"opBinaryRight","package":"druntime","parentType":"HashTab","signature":"inout(Value) * opBinaryRight(string op)(const  scope  Key key) if (op ==  \"in\")","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.opBinaryRight.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"opApply","package":"druntime","parentType":"HashTab","signature":"int opApply(scope  int  delegate(ref  Key,  ref  Value)  dg)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.opApply.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"get","package":"druntime","parentType":"HashTab","signature":"Value * get(Key key)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.get.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"hashOf","package":"druntime","parentType":"HashTab","signature":"hash_t hashOf(const  scope  ref  Key key)","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.hashOf.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"mask","package":"druntime","parentType":"HashTab","signature":"hash_t mask()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.mask.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"grow","package":"druntime","parentType":"HashTab","signature":"void grow()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.grow.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"shrink","package":"druntime","parentType":"HashTab","signature":"void shrink()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.shrink.html"},{"doc":"","kind":"method","module":"core.internal.container.hashtab","name":"ensureNotInOpApply","package":"druntime","parentType":"HashTab","signature":"void ensureNotInOpApply()","url":"/ddoc/druntime/core/internal/container/hashtab/HashTab.ensureNotInOpApply.html"},{"doc":"Treap container for internal usage.","kind":"module","module":"core.internal.container.treap","name":"core.internal.container.treap","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/container/treap.html"},{"doc":"","kind":"struct","module":"core.internal.container.treap","name":"Treap","package":"druntime","parentType":"","signature":"Treap(E)","url":"/ddoc/druntime/core/internal/container/treap.html#Treap"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"initialize","package":"druntime","parentType":"Treap","signature":"void initialize(ulong  randSeed)","url":"/ddoc/druntime/core/internal/container/treap/Treap.initialize.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"insert","package":"druntime","parentType":"Treap","signature":"void insert(E element)","url":"/ddoc/druntime/core/internal/container/treap/Treap.insert.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"remove","package":"druntime","parentType":"Treap","signature":"void remove(E element)","url":"/ddoc/druntime/core/internal/container/treap/Treap.remove.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"opApply","package":"druntime","parentType":"Treap","signature":"int opApply(scope  int  delegate(ref  E)  nothrow  dg)","url":"/ddoc/druntime/core/internal/container/treap/Treap.opApply.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"opApply","package":"druntime","parentType":"Treap","signature":"int opApply(scope  int  delegate(ref  const  E)  nothrow  dg)","url":"/ddoc/druntime/core/internal/container/treap/Treap.opApply.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"removeAll","package":"druntime","parentType":"Treap","signature":"void removeAll()","url":"/ddoc/druntime/core/internal/container/treap/Treap.removeAll.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"allocNode","package":"druntime","parentType":"Treap","signature":"Node * allocNode(E element)","url":"/ddoc/druntime/core/internal/container/treap/Treap.allocNode.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"insert","package":"druntime","parentType":"Treap","signature":"Node * insert(Node *  node,  E element)","url":"/ddoc/druntime/core/internal/container/treap/Treap.insert.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"freeNode","package":"druntime","parentType":"Treap","signature":"void freeNode(Node *  node)","url":"/ddoc/druntime/core/internal/container/treap/Treap.freeNode.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"rotateL","package":"druntime","parentType":"Treap","signature":"Node * rotateL(Node *  root)","url":"/ddoc/druntime/core/internal/container/treap/Treap.rotateL.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"rotateR","package":"druntime","parentType":"Treap","signature":"Node * rotateR(Node *  root)","url":"/ddoc/druntime/core/internal/container/treap/Treap.rotateR.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"remove","package":"druntime","parentType":"Treap","signature":"void remove(Node * *  ppnode,  E element)","url":"/ddoc/druntime/core/internal/container/treap/Treap.remove.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"removeAll","package":"druntime","parentType":"Treap","signature":"void removeAll(Node *  node)","url":"/ddoc/druntime/core/internal/container/treap/Treap.removeAll.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"opApplyHelper","package":"druntime","parentType":"Treap","signature":"int opApplyHelper(const  Node *  node,  scope  int  delegate(ref  const  E)  nothrow  dg)","url":"/ddoc/druntime/core/internal/container/treap/Treap.opApplyHelper.html"},{"doc":"Random number generators for internal usage.","kind":"struct","module":"core.internal.container.treap","name":"Rand","package":"druntime","parentType":"","signature":"Rand","url":"/ddoc/druntime/core/internal/container/treap.html#Rand"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"opCall","package":"druntime","parentType":"Rand","signature":"auto opCall()","url":"/ddoc/druntime/core/internal/container/treap/Rand.opCall.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"front","package":"druntime","parentType":"Rand","signature":"uint front()","url":"/ddoc/druntime/core/internal/container/treap/Rand.front.html"},{"doc":"","kind":"method","module":"core.internal.container.treap","name":"popFront","package":"druntime","parentType":"Rand","signature":"void popFront()","url":"/ddoc/druntime/core/internal/container/treap/Rand.popFront.html"},{"doc":"Written in the D programming language. This module provides functions to converting different values to const(ubyte)[]","kind":"module","module":"core.internal.convert","name":"core.internal.convert","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/convert.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"ctfe_alloc","package":"druntime","parentType":"","signature":"ubyte[] ctfe_alloc(size_t n)","url":"/ddoc/druntime/core/internal/convert/ctfe_alloc.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  scope  ref  T val) if (__traits(isFloating,  T)  && (is(T :  real)  ||  is(T :  ireal)))","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"parse","package":"druntime","parentType":"","signature":"Float parse(bool  is_denormalized =  false,  T: ireal)(T x)","url":"/ddoc/druntime/core/internal/convert/parse.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"parse","package":"druntime","parentType":"","signature":"Float parse(bool  is_denormalized =  false,  T: real)(T x_) if (floatFormat!T !=  FloatFormat.Real80)","url":"/ddoc/druntime/core/internal/convert/parse.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"parse","package":"druntime","parentType":"","signature":"Float parse(bool  _ =  false,  T: real)(T x_) if (floatFormat!T ==  FloatFormat.Real80)","url":"/ddoc/druntime/core/internal/convert/parse.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"binPow2","package":"druntime","parentType":"","signature":"real binPow2(int  pow)","url":"/ddoc/druntime/core/internal/convert/binPow2.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"shiftrRound","package":"druntime","parentType":"","signature":"ulong shiftrRound(ulong  x)","url":"/ddoc/druntime/core/internal/convert/shiftrRound.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"binLog2","package":"druntime","parentType":"","signature":"uint binLog2(T)(const  T x)","url":"/ddoc/druntime/core/internal/convert/binLog2.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"denormalizedMantissa","package":"druntime","parentType":"","signature":"Float denormalizedMantissa(T)(T x,  uint  sign) if (floatFormat!T ==  FloatFormat.Real80)","url":"/ddoc/druntime/core/internal/convert/denormalizedMantissa.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"denormalizedMantissa","package":"druntime","parentType":"","signature":"Float denormalizedMantissa(T)(T x,  uint  sign) if (floatFormat!T ==  FloatFormat.Float ||  floatFormat!T ==  FloatFormat.Double)","url":"/ddoc/druntime/core/internal/convert/denormalizedMantissa.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"denormalizedMantissa","package":"druntime","parentType":"","signature":"Float denormalizedMantissa(T)(T x,  uint  sign) if (floatFormat!T ==  FloatFormat.Quadruple)","url":"/ddoc/druntime/core/internal/convert/denormalizedMantissa.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(return  scope  const  T[]  arr) if (T.sizeof ==  1)","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_array_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_array_ctfe(T)(return  scope  const  T[]  arr)","url":"/ddoc/druntime/core/internal/convert/toUbyte_array_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(return  scope  const  T[]  arr) if (T.sizeof >  1)","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_integral_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_integral_ctfe(T)(const  return  ref  scope  T val)","url":"/ddoc/druntime/core/internal/convert/toUbyte_integral_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  ref  scope  T val) if (__traits(isIntegral,  T)  && !is(T ==  enum)  && !is(T ==  __vector))","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_vector_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_vector_ctfe(T)(const  return  ref  scope  T val)","url":"/ddoc/druntime/core/internal/convert/toUbyte_vector_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  ref  scope  T val) if (is(T ==  __vector))","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_enum_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_enum_ctfe(T)(const  return  ref  scope  T val)","url":"/ddoc/druntime/core/internal/convert/toUbyte_enum_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  ref  return  scope  T val) if (is(T ==  enum))","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_delegate_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_delegate_ctfe(T)(const  return  ref  scope  T val)","url":"/ddoc/druntime/core/internal/convert/toUbyte_delegate_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  ref  T val) if (is(T ==  delegate)  ||  is(T :  V *,  V)  &&  __traits(getAliasThis,  T).length ==  0)","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte_aggregate_ctfe","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte_aggregate_ctfe(T)(const  return  ref  scope  T val)","url":"/ddoc/druntime/core/internal/convert/toUbyte_aggregate_ctfe.html"},{"doc":"","kind":"function","module":"core.internal.convert","name":"toUbyte","package":"druntime","parentType":"","signature":"const(ubyte)[] toUbyte(T)(const  return  ref  scope  T val) if (is(T ==  struct)  ||  is(T ==  union))","url":"/ddoc/druntime/core/internal/convert/toUbyte.html"},{"doc":"","kind":"struct","module":"core.internal.convert","name":"Float","package":"druntime","parentType":"","signature":"Float","url":"/ddoc/druntime/core/internal/convert.html#Float"},{"doc":"Big overflow or underflow","kind":"enum","module":"core.internal.convert","name":"FloatFormat","package":"druntime","parentType":"","signature":"FloatFormat","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"enum_member","module":"core.internal.convert","name":"Float","package":"druntime","parentType":"","signature":"Float = ","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"enum_member","module":"core.internal.convert","name":"Double","package":"druntime","parentType":"","signature":"Double = ","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"enum_member","module":"core.internal.convert","name":"Real80","package":"druntime","parentType":"","signature":"Real80 = ","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"enum_member","module":"core.internal.convert","name":"DoubleDouble","package":"druntime","parentType":"","signature":"DoubleDouble = ","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"enum_member","module":"core.internal.convert","name":"Quadruple","package":"druntime","parentType":"","signature":"Quadruple = ","url":"/ddoc/druntime/core/internal/convert.html#FloatFormat"},{"doc":"","kind":"template","module":"core.internal.convert","name":"FloatTraits","package":"druntime","parentType":"","signature":"FloatTraits(T)","url":"/ddoc/druntime/core/internal/convert.html#FloatTraits"},{"doc":"","kind":"template","module":"core.internal.convert","name":"FloatTraits","package":"druntime","parentType":"","signature":"FloatTraits(T)","url":"/ddoc/druntime/core/internal/convert.html#FloatTraits"},{"doc":"","kind":"template","module":"core.internal.convert","name":"FloatTraits","package":"druntime","parentType":"","signature":"FloatTraits(T)","url":"/ddoc/druntime/core/internal/convert.html#FloatTraits"},{"doc":"","kind":"template","module":"core.internal.convert","name":"FloatTraits","package":"druntime","parentType":"","signature":"FloatTraits(T)","url":"/ddoc/druntime/core/internal/convert.html#FloatTraits"},{"doc":"","kind":"template","module":"core.internal.convert","name":"FloatTraits","package":"druntime","parentType":"","signature":"FloatTraits(T)","url":"/ddoc/druntime/core/internal/convert.html#FloatTraits"},{"doc":"","kind":"template","module":"core.internal.convert","name":"floatFormat","package":"druntime","parentType":"","signature":"floatFormat(T)","url":"/ddoc/druntime/core/internal/convert.html#floatFormat"},{"doc":"","kind":"template","module":"core.internal.convert","name":"floatSize","package":"druntime","parentType":"","signature":"floatSize(T)","url":"/ddoc/druntime/core/internal/convert.html#floatSize"},{"doc":"","kind":"template","module":"core.internal.convert","name":"OriginalType","package":"druntime","parentType":"","signature":"OriginalType(T)","url":"/ddoc/druntime/core/internal/convert.html#OriginalType"},{"doc":"","kind":"module","module":"core.internal.dassert","name":"core.internal.dassert","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/dassert.html"},{"doc":"Generates rich assert error messages for unary expressions","kind":"function","module":"core.internal.dassert","name":"_d_assert_fail","package":"druntime","parentType":"","signature":"string _d_assert_fail(A)(const  scope  string op,  auto  ref  const  scope  A a)","url":"/ddoc/druntime/core/internal/dassert/_d_assert_fail.html"},{"doc":"Combines the supplied arguments into one string `\"valA token valB\"`","kind":"function","module":"core.internal.dassert","name":"combine","package":"druntime","parentType":"","signature":"string combine(const  scope  string[]  valA,  const  scope  string token,\n     const  scope  string[]  valB)","url":"/ddoc/druntime/core/internal/dassert/combine.html"},{"doc":"Generates a textual representation of `v` without relying on Phobos. The value is formatted as follows:","kind":"function","module":"core.internal.dassert","name":"miniFormat","package":"druntime","parentType":"","signature":"string miniFormat(V)(const  scope  ref  V v)","url":"/ddoc/druntime/core/internal/dassert/miniFormat.html"},{"doc":"Formats `v`'s members as `V(<member 1>, <member 2>, ...)`","kind":"function","module":"core.internal.dassert","name":"formatMembers","package":"druntime","parentType":"","signature":"string formatMembers(V)(const  scope  ref  V v)","url":"/ddoc/druntime/core/internal/dassert/formatMembers.html"},{"doc":"Calculates whether fields are overlapped based on the passed offsets.","kind":"function","module":"core.internal.dassert","name":"calcFieldOverlap","package":"druntime","parentType":"","signature":"bool[] calcFieldOverlap(const  scope  size_t[]  offsets)","url":"/ddoc/druntime/core/internal/dassert/calcFieldOverlap.html"},{"doc":"Negates a comparison token, e.g. `==` is mapped to `!=`","kind":"function","module":"core.internal.dassert","name":"invertCompToken","package":"druntime","parentType":"","signature":"string invertCompToken(scope  string comp)","url":"/ddoc/druntime/core/internal/dassert/invertCompToken.html"},{"doc":"Casts the function pointer to include `@safe`, `@nogc`, ...","kind":"function","module":"core.internal.dassert","name":"assumeFakeAttributes","package":"druntime","parentType":"","signature":"auto assumeFakeAttributes(T)(T t)","url":"/ddoc/druntime/core/internal/dassert/assumeFakeAttributes.html"},{"doc":"Wrapper for `miniFormat` which assumes that the implementation is `@safe`, `@nogc`, ... s.t. it does not violate the constraints of the function co...","kind":"function","module":"core.internal.dassert","name":"miniFormatFakeAttributes","package":"druntime","parentType":"","signature":"string miniFormatFakeAttributes(T)(const  scope  ref  T t)","url":"/ddoc/druntime/core/internal/dassert/miniFormatFakeAttributes.html"},{"doc":"Allocates an array of `t` bytes while pretending to be `@safe`, `@nogc`, ...","kind":"function","module":"core.internal.dassert","name":"pureAlloc","package":"druntime","parentType":"","signature":"auto pureAlloc(size_t t)","url":"/ddoc/druntime/core/internal/dassert/pureAlloc.html"},{"doc":"Wrapper for GC.inFinalizer that fakes purity","kind":"function","module":"core.internal.dassert","name":"inFinalizer","package":"druntime","parentType":"","signature":"bool inFinalizer()()","url":"/ddoc/druntime/core/internal/dassert/inFinalizer.html"},{"doc":"Generates rich assert error messages for binary expressions","kind":"template","module":"core.internal.dassert","name":"_d_assert_fail","package":"druntime","parentType":"","signature":"_d_assert_fail(A...)","url":"/ddoc/druntime/core/internal/dassert.html#_d_assert_fail"},{"doc":"","kind":"function","module":"core.internal.dassert","name":"_d_assert_fail","package":"druntime","parentType":"","signature":"string _d_assert_fail(B...)(\n         const  scope  string comp,  auto  ref  const  scope  A a,  auto  ref  const  scope  B b) if (B.length !=  0 ||  A.length !=  1)","url":"/ddoc/druntime/core/internal/dassert.html#_d_assert_fail"},{"doc":"Yields the appropriate `printf` format token for a type `T`","kind":"template","module":"core.internal.dassert","name":"getPrintfFormat","package":"druntime","parentType":"","signature":"getPrintfFormat(T)","url":"/ddoc/druntime/core/internal/dassert.html#getPrintfFormat"},{"doc":"This module contains implementations for destroying instances of types","kind":"module","module":"core.internal.destruction","name":"core.internal.destruction","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/destruction.html"},{"doc":"","kind":"function","module":"core.internal.destruction","name":"__ArrayDtor","package":"druntime","parentType":"","signature":"void __ArrayDtor(T)(scope  T[]  a)","url":"/ddoc/druntime/core/internal/destruction/__ArrayDtor.html"},{"doc":"","kind":"function","module":"core.internal.destruction","name":"destructRecurse","package":"druntime","parentType":"","signature":"void destructRecurse(E,  size_t n)(ref  E[n]  arr)","url":"/ddoc/druntime/core/internal/destruction/destructRecurse.html"},{"doc":"","kind":"function","module":"core.internal.destruction","name":"destructRecurse","package":"druntime","parentType":"","signature":"void destructRecurse(S)(ref  S s) if (is(S ==  struct))","url":"/ddoc/druntime/core/internal/destruction/destructRecurse.html"},{"doc":"Simplifies working with shared ELF objects of the current process.","kind":"module","module":"core.internal.elf.dl","name":"core.internal.elf.dl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/elf/dl.html"},{"doc":"","kind":"alias","module":"core.internal.elf.dl","name":"Elf_Ehdr","package":"druntime","parentType":"","signature":"Elf_Ehdr = ElfW!\"Ehdr\"","url":"/ddoc/druntime/core/internal/elf/dl.html#Elf_Ehdr"},{"doc":"","kind":"alias","module":"core.internal.elf.dl","name":"Elf_Phdr","package":"druntime","parentType":"","signature":"Elf_Phdr = ElfW!\"Phdr\"","url":"/ddoc/druntime/core/internal/elf/dl.html#Elf_Phdr"},{"doc":"Enables iterating over the process' currently loaded shared objects.","kind":"struct","module":"core.internal.elf.dl","name":"SharedObjects","package":"druntime","parentType":"","signature":"SharedObjects","url":"/ddoc/druntime/core/internal/elf/dl.html#SharedObjects"},{"doc":"","kind":"method","module":"core.internal.elf.dl","name":"opApply","package":"druntime","parentType":"SharedObjects","signature":"int opApply(scope  Callback dg)","url":"/ddoc/druntime/core/internal/elf/dl/SharedObjects.opApply.html"},{"doc":"A loaded shared ELF object/binary, i.e., executable or shared library.","kind":"struct","module":"core.internal.elf.dl","name":"SharedObject","package":"druntime","parentType":"","signature":"SharedObject","url":"/ddoc/druntime/core/internal/elf/dl.html#SharedObject"},{"doc":"Returns the executable of the current process.","kind":"method","module":"core.internal.elf.dl","name":"thisExecutable","package":"druntime","parentType":"SharedObject","signature":"SharedObject thisExecutable()","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.thisExecutable.html"},{"doc":"Tries to find the shared object containing the specified address in one of its segments. Returns: True on success.","kind":"method","module":"core.internal.elf.dl","name":"findForAddress","package":"druntime","parentType":"SharedObject","signature":"bool findForAddress(const  scope  void *  address,  out  SharedObject result)","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.findForAddress.html"},{"doc":"Returns the base address of the object.","kind":"method","module":"core.internal.elf.dl","name":"baseAddress","package":"druntime","parentType":"SharedObject","signature":"void * baseAddress()","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.baseAddress.html"},{"doc":"Returns the name of (usually: path to) the object. Null-terminated.","kind":"method","module":"core.internal.elf.dl","name":"name","package":"druntime","parentType":"SharedObject","signature":"const(char)[] name()","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.name.html"},{"doc":"Tries to fill the specified buffer with the path to the ELF file, according to the /proc/<PID>/maps file.","kind":"method","module":"core.internal.elf.dl","name":"getPath","package":"druntime","parentType":"SharedObject","signature":"char[] getPath(size_t N)(ref  char[N]  buffer) if (N >  1)","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.getPath.html"},{"doc":"Iterates over this object's segments.","kind":"method","module":"core.internal.elf.dl","name":"opApply","package":"druntime","parentType":"SharedObject","signature":"int opApply(scope  int  delegate(ref  const  Elf_Phdr) @nogc nothrow  dg)","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.opApply.html"},{"doc":"Tries to find the segment containing the specified address. Returns: True on success.","kind":"method","module":"core.internal.elf.dl","name":"findSegmentForAddress","package":"druntime","parentType":"SharedObject","signature":"bool findSegmentForAddress(const  scope  void *  address,  out  const(Elf_Phdr) *  result)","url":"/ddoc/druntime/core/internal/elf/dl/SharedObject.findSegmentForAddress.html"},{"doc":"Provides (read-only) memory-mapped I/O for ELF files.","kind":"module","module":"core.internal.elf.io","name":"core.internal.elf.io","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/elf/io.html"},{"doc":"","kind":"function","module":"core.internal.elf.io","name":"readLink","package":"druntime","parentType":"","signature":"char * readLink(const(char) *  link)","url":"/ddoc/druntime/core/internal/elf/io/readLink.html"},{"doc":"","kind":"struct","module":"core.internal.elf.io","name":"TypedMMapRegion","package":"druntime","parentType":"","signature":"TypedMMapRegion(T)","url":"/ddoc/druntime/core/internal/elf/io.html#TypedMMapRegion"},{"doc":"","kind":"struct","module":"core.internal.elf.io","name":"MMapRegion","package":"druntime","parentType":"","signature":"MMapRegion","url":"/ddoc/druntime/core/internal/elf/io.html#MMapRegion"},{"doc":"File-based memory-mapped I/O (read-only). Only supports ELF files with a byte-order matching the target platform's. Params: Elf_Ehdr = Expected typ...","kind":"template","module":"core.internal.elf.io","name":"ElfIO","package":"druntime","parentType":"","signature":"ElfIO(Elf_Ehdr,  Elf_Shdr,  ubyte  ELFCLASS)","url":"/ddoc/druntime/core/internal/elf/io.html#ElfIO"},{"doc":"ELF file (with memory-mapped ELF header).","kind":"struct","module":"core.internal.elf.io","name":"ElfFile","package":"druntime","parentType":"","signature":"ElfFile","url":"/ddoc/druntime/core/internal/elf/io.html#ElfIO"},{"doc":"Enables iterating over an ELF file's (named) sections.","kind":"struct","module":"core.internal.elf.io","name":"NamedSections","package":"druntime","parentType":"","signature":"NamedSections","url":"/ddoc/druntime/core/internal/elf/io.html#ElfIO"},{"doc":"Memory-mapped ELF section header.","kind":"struct","module":"core.internal.elf.io","name":"ElfSectionHeader","package":"druntime","parentType":"","signature":"ElfSectionHeader","url":"/ddoc/druntime/core/internal/elf/io.html#ElfIO"},{"doc":"Memory-mapped ELF section data.","kind":"struct","module":"core.internal.elf.io","name":"ElfSection","package":"druntime","parentType":"","signature":"ElfSection","url":"/ddoc/druntime/core/internal/elf/io.html#ElfIO"},{"doc":"ELF class for 32-bit ELF files.","kind":"variable","module":"core.internal.elf.io","name":"ELFCLASS32","package":"druntime","parentType":"","signature":"ELFCLASS32","url":"/ddoc/druntime/core/internal/elf/io.html#ELFCLASS32"},{"doc":"ELF class for 64-bit ELF files.","kind":"variable","module":"core.internal.elf.io","name":"ELFCLASS64","package":"druntime","parentType":"","signature":"ELFCLASS64","url":"/ddoc/druntime/core/internal/elf/io.html#ELFCLASS64"},{"doc":"This module contains the code for C main and any call(s) to initialize the D runtime and call D main.","kind":"module","module":"core.internal.entrypoint","name":"core.internal.entrypoint","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/entrypoint.html"},{"doc":"A template containing C main and any call(s) to initialize druntime and call D main.  Any module containing a D main function declaration will caus...","kind":"template","module":"core.internal.entrypoint","name":"_d_cmain","package":"druntime","parentType":"","signature":"_d_cmain()","url":"/ddoc/druntime/core/internal/entrypoint.html#_d_cmain"},{"doc":"This module helps to decide whether an appropriate execinfo implementation is available in the underling C runtime or in an external library. In th...","kind":"module","module":"core.internal.execinfo","name":"core.internal.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/execinfo.html"},{"doc":"","kind":"function","module":"core.internal.execinfo","name":"atMostOneBTFmt","package":"druntime","parentType":"","signature":"bool atMostOneBTFmt()","url":"/ddoc/druntime/core/internal/execinfo/atMostOneBTFmt.html"},{"doc":"Indicates the backtrace format of the actual execinfo implementation. At most one of the values is allowed to be set to `true` the others should be...","kind":"enum","module":"core.internal.execinfo","name":"BacktraceFmt","package":"druntime","parentType":"","signature":"BacktraceFmt : bool","url":"/ddoc/druntime/core/internal/execinfo.html#BacktraceFmt"},{"doc":"0x00000000 <_D6module4funcAFZv+0x78> at module","kind":"enum_member","module":"core.internal.execinfo","name":"BSD","package":"druntime","parentType":"","signature":"BSD = _BTFmt_BSD","url":"/ddoc/druntime/core/internal/execinfo.html#BacktraceFmt"},{"doc":"1  module    0x00000000 D6module4funcAFZv + 0","kind":"enum_member","module":"core.internal.execinfo","name":"Darwin","package":"druntime","parentType":"","signature":"Darwin = _BTFmt_Darwin","url":"/ddoc/druntime/core/internal/execinfo.html#BacktraceFmt"},{"doc":"module(_D6module4funcAFZv) [0x00000000] $(B or) module(_D6module4funcAFZv+0x78) [0x00000000] $(B or) module(_D6module4funcAFZv-0x78) [0x00000000]","kind":"enum_member","module":"core.internal.execinfo","name":"GNU","package":"druntime","parentType":"","signature":"GNU = _BTFmt_GNU","url":"/ddoc/druntime/core/internal/execinfo.html#BacktraceFmt"},{"doc":"object'symbol+offset [pc]","kind":"enum_member","module":"core.internal.execinfo","name":"Solaris","package":"druntime","parentType":"","signature":"Solaris = _BTFmt_Solaris","url":"/ddoc/druntime/core/internal/execinfo.html#BacktraceFmt"},{"doc":"Indicates the availability of backtrace functions","kind":"variable","module":"core.internal.execinfo","name":"hasExecinfo","package":"druntime","parentType":"","signature":"bool hasExecinfo","url":"/ddoc/druntime/core/internal/execinfo.html#hasExecinfo"},{"doc":"Contains a bitfield used by the GC.","kind":"module","module":"core.internal.gc.bits","name":"core.internal.gc.bits","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/bits.html"},{"doc":"","kind":"struct","module":"core.internal.gc.bits","name":"GCBits","package":"druntime","parentType":"","signature":"GCBits","url":"/ddoc/druntime/core/internal/gc/bits.html#GCBits"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"Dtor","package":"druntime","parentType":"GCBits","signature":"void Dtor(bool  share =  false)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.Dtor.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"alloc","package":"druntime","parentType":"GCBits","signature":"void alloc(size_t nbits,  bool  share =  false)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.alloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"test","package":"druntime","parentType":"GCBits","signature":"wordtype test(size_t i)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.test.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"set","package":"druntime","parentType":"GCBits","signature":"int set(size_t i)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.set.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"clear","package":"druntime","parentType":"GCBits","signature":"int clear(size_t i)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.clear.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"setLocked","package":"druntime","parentType":"GCBits","signature":"size_t setLocked(size_t i)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.setLocked.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"clearWords","package":"druntime","parentType":"GCBits","signature":"void clearWords(size_t firstWord,  size_t lastWord)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.clearWords.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"setWords","package":"druntime","parentType":"GCBits","signature":"void setWords(size_t firstWord,  size_t lastWord)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.setWords.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copyWords","package":"druntime","parentType":"GCBits","signature":"void copyWords(size_t firstWord,  size_t lastWord,  const(wordtype) *  source)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copyWords.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copyWordsShifted","package":"druntime","parentType":"GCBits","signature":"void copyWordsShifted(size_t firstWord,  size_t cntWords,  size_t firstOff,  const(wordtype) *  source)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copyWordsShifted.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copyRange","package":"druntime","parentType":"GCBits","signature":"void copyRange(size_t target,  size_t len,  const(wordtype) *  source)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copyRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copyRangeZ","package":"druntime","parentType":"GCBits","signature":"void copyRangeZ(size_t target,  size_t len,  const(wordtype) *  source)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copyRangeZ.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copyRangeRepeating","package":"druntime","parentType":"GCBits","signature":"void copyRangeRepeating(size_t target,  size_t destlen,  const(wordtype) *  source,  size_t sourcelen)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copyRangeRepeating.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"setRange","package":"druntime","parentType":"GCBits","signature":"void setRange(size_t target,  size_t len)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.setRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"setRangeZ","package":"druntime","parentType":"GCBits","signature":"void setRangeZ(size_t target,  size_t len)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.setRangeZ.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"clrRange","package":"druntime","parentType":"GCBits","signature":"void clrRange(size_t target,  size_t len)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.clrRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"clrRangeZ","package":"druntime","parentType":"GCBits","signature":"void clrRangeZ(size_t target,  size_t len)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.clrRangeZ.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"zero","package":"druntime","parentType":"GCBits","signature":"void zero()","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.zero.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"setAll","package":"druntime","parentType":"GCBits","signature":"void setAll()","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.setAll.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"copy","package":"druntime","parentType":"GCBits","signature":"void copy(GCBits * f)","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.copy.html"},{"doc":"","kind":"method","module":"core.internal.gc.bits","name":"nwords","package":"druntime","parentType":"GCBits","signature":"size_t nwords()","url":"/ddoc/druntime/core/internal/gc/bits/GCBits.nwords.html"},{"doc":"BlkInfo thread-local cache. Used for array appending in the conservative GC to avoid the lock when possible.","kind":"module","module":"core.internal.gc.blkcache","name":"core.internal.gc.blkcache","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/blkcache.html"},{"doc":"","kind":"function","module":"core.internal.gc.blkcache","name":"__blkcache","package":"druntime","parentType":"","signature":"BlkInfo *__blkcache __blkcache()","url":"/ddoc/druntime/core/internal/gc/blkcache/__blkcache.html"},{"doc":"","kind":"function","module":"core.internal.gc.blkcache","name":"cleanupBlkCache","package":"druntime","parentType":"","signature":"void cleanupBlkCache(void *  storage)","url":"/ddoc/druntime/core/internal/gc/blkcache/cleanupBlkCache.html"},{"doc":"","kind":"function","module":"core.internal.gc.blkcache","name":"processGCMarks","package":"druntime","parentType":"","signature":"void processGCMarks(void *  data,  scope  IsMarkedDg isMarked)","url":"/ddoc/druntime/core/internal/gc/blkcache/processGCMarks.html"},{"doc":"Get the cached block info of an interior pointer.  Returns null if the interior pointer's block is not cached.","kind":"function","module":"core.internal.gc.blkcache","name":"__getBlkInfo","package":"druntime","parentType":"","signature":"BlkInfo *__getBlkInfo __getBlkInfo(void  * interior)","url":"/ddoc/druntime/core/internal/gc/blkcache/__getBlkInfo.html"},{"doc":"","kind":"function","module":"core.internal.gc.blkcache","name":"__insertBlkInfoCache","package":"druntime","parentType":"","signature":"void __insertBlkInfoCache(BlkInfo bi,  BlkInfo * curpos)","url":"/ddoc/druntime/core/internal/gc/blkcache/__insertBlkInfoCache.html"},{"doc":"","kind":"alias","module":"core.internal.gc.blkcache","name":"BlkInfo","package":"druntime","parentType":"","signature":"BlkInfo = GC.BlkInfo","url":"/ddoc/druntime/core/internal/gc/blkcache.html#BlkInfo"},{"doc":"","kind":"alias","module":"core.internal.gc.blkcache","name":"BlkAttr","package":"druntime","parentType":"","signature":"BlkAttr = GC.BlkAttr","url":"/ddoc/druntime/core/internal/gc/blkcache.html#BlkAttr"},{"doc":"Indicates whether an address has been marked by the GC.","kind":"enum","module":"core.internal.gc.blkcache","name":"IsMarked","package":"druntime","parentType":"","signature":"IsMarked : int","url":"/ddoc/druntime/core/internal/gc/blkcache.html#IsMarked"},{"doc":"Address is not marked.","kind":"enum_member","module":"core.internal.gc.blkcache","name":"no","package":"druntime","parentType":"","signature":"no = ","url":"/ddoc/druntime/core/internal/gc/blkcache.html#IsMarked"},{"doc":"Address is marked.","kind":"enum_member","module":"core.internal.gc.blkcache","name":"yes","package":"druntime","parentType":"","signature":"yes = ","url":"/ddoc/druntime/core/internal/gc/blkcache.html#IsMarked"},{"doc":"Address is not managed by the GC.","kind":"enum_member","module":"core.internal.gc.blkcache","name":"unknown","package":"druntime","parentType":"","signature":"unknown = ","url":"/ddoc/druntime/core/internal/gc/blkcache.html#IsMarked"},{"doc":"The isMarked callback function.","kind":"alias","module":"core.internal.gc.blkcache","name":"IsMarkedDg","package":"druntime","parentType":"","signature":"IsMarkedDg = IsMarked delegate(void *  addr)  nothrow","url":"/ddoc/druntime/core/internal/gc/blkcache.html#IsMarkedDg"},{"doc":"cache for the lookup of the block info","kind":"variable","module":"core.internal.gc.blkcache","name":"N_CACHE_BLOCKS","package":"druntime","parentType":"","signature":"N_CACHE_BLOCKS","url":"/ddoc/druntime/core/internal/gc/blkcache.html#N_CACHE_BLOCKS"},{"doc":"","kind":"variable","module":"core.internal.gc.blkcache","name":"__blkcache_storage","package":"druntime","parentType":"","signature":"BlkInfo *__blkcache_storage __blkcache_storage","url":"/ddoc/druntime/core/internal/gc/blkcache.html#__blkcache_storage"},{"doc":"Functions to manipulate metadata in-block.","kind":"module","module":"core.internal.gc.blockmeta","name":"core.internal.gc.blockmeta","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/blockmeta.html"},{"doc":"","kind":"function","module":"core.internal.gc.blockmeta","name":"structTypeInfoSize","package":"druntime","parentType":"","signature":"size_t structTypeInfoSize(const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/blockmeta/structTypeInfoSize.html"},{"doc":"Set the allocated length of the array block.  This is called any time an array is appended to or its length is set.","kind":"function","module":"core.internal.gc.blockmeta","name":"__setArrayAllocLength","package":"druntime","parentType":"","signature":"bool __setArrayAllocLength(ref  BlkInfo info,  size_t newlength,  bool  isshared,  const  TypeInfo tinext,  size_t oldlength =  size_t.max)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__setArrayAllocLength.html"},{"doc":"","kind":"function","module":"core.internal.gc.blockmeta","name":"__setArrayAllocLengthImpl","package":"druntime","parentType":"","signature":"bool __setArrayAllocLengthImpl(ref  BlkInfo info,  size_t newlength,  bool  isshared,  size_t oldlength,  size_t typeInfoSize)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__setArrayAllocLengthImpl.html"},{"doc":"The block finalizer info is set separately from the array length, as that is only needed on the initial setup of the block. No shared is needed, si...","kind":"function","module":"core.internal.gc.blockmeta","name":"__setBlockFinalizerInfo","package":"druntime","parentType":"","signature":"void __setBlockFinalizerInfo(ref  BlkInfo info,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__setBlockFinalizerInfo.html"},{"doc":"Get the finalizer info from the block (typeinfo). If called on a block, without STRUCTFINAL set, returns null.","kind":"function","module":"core.internal.gc.blockmeta","name":"__getBlockFinalizerInfo","package":"druntime","parentType":"","signature":"const(TypeInfo) __getBlockFinalizerInfo(ref  BlkInfo info)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__getBlockFinalizerInfo.html"},{"doc":"ditto","kind":"function","module":"core.internal.gc.blockmeta","name":"__getBlockFinalizerInfo","package":"druntime","parentType":"","signature":"const(TypeInfo) __getBlockFinalizerInfo(void *  base,  size_t size,  uint  attr)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__getBlockFinalizerInfo.html"},{"doc":"get the used size of the array for the given block","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayAllocLength","package":"druntime","parentType":"","signature":"size_t __arrayAllocLength(ref  BlkInfo info)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayAllocLength.html"},{"doc":"Atomically get the used size of the array for the given block","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayAllocLengthAtomic","package":"druntime","parentType":"","signature":"size_t __arrayAllocLengthAtomic(ref  BlkInfo info)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayAllocLengthAtomic.html"},{"doc":"Get the maximum bytes that can be stored in the given block.","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayAllocCapacity","package":"druntime","parentType":"","signature":"size_t __arrayAllocCapacity(ref  BlkInfo info)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayAllocCapacity.html"},{"doc":"get the padding required to allocate size bytes.  Note that the padding is NOT included in the passed in size.  Therefore, do NOT call this functio...","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayPad","package":"druntime","parentType":"","signature":"size_t __arrayPad(size_t size,  const  TypeInfo tinext)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayPad.html"},{"doc":"get the padding required to allocate size bytes, use the bits to determine which metadata must be stored.","kind":"function","module":"core.internal.gc.blockmeta","name":"__allocPad","package":"druntime","parentType":"","signature":"size_t __allocPad(size_t size,  uint  bits)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__allocPad.html"},{"doc":"Get the start of the array for the given block.","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayStart","package":"druntime","parentType":"","signature":"void  *__arrayStart __arrayStart()(return  scope  BlkInfo info)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayStart.html"},{"doc":"Ditto","kind":"function","module":"core.internal.gc.blockmeta","name":"__arrayStart","package":"druntime","parentType":"","signature":"void  *__arrayStart __arrayStart()(return  scope  void *  base,  size_t size)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__arrayStart.html"},{"doc":"Trim a block's extents to the known valid data that is not metadata. This takes into account the finalizer and array metadata.","kind":"function","module":"core.internal.gc.blockmeta","name":"__trimExtents","package":"druntime","parentType":"","signature":"void __trimExtents(ref  scope  void *  base,  ref  size_t blockSize,  uint  attr)","url":"/ddoc/druntime/core/internal/gc/blockmeta/__trimExtents.html"},{"doc":"","kind":"alias","module":"core.internal.gc.blockmeta","name":"BlkInfo","package":"druntime","parentType":"","signature":"BlkInfo = GC.BlkInfo","url":"/ddoc/druntime/core/internal/gc/blockmeta.html#BlkInfo"},{"doc":"","kind":"alias","module":"core.internal.gc.blockmeta","name":"BlkAttr","package":"druntime","parentType":"","signature":"BlkAttr = GC.BlkAttr","url":"/ddoc/druntime/core/internal/gc/blockmeta.html#BlkAttr"},{"doc":"Contains the garbage collector implementation.","kind":"module","module":"core.internal.gc.impl.conservative.gc","name":"core.internal.gc.impl.conservative.gc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"rt_finalizeFromGC","package":"druntime","parentType":"","signature":"void rt_finalizeFromGC(void *  p,  size_t size,  uint  attr,  const(TypeInfo)  typeInfo)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/rt_finalizeFromGC.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"rt_hasFinalizerInSegment","package":"druntime","parentType":"","signature":"int rt_hasFinalizerInSegment(void *  p,  size_t size,  const(TypeInfo)  typeInfo,  const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/rt_hasFinalizerInSegment.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"onInvalidMemoryOperationError","package":"druntime","parentType":"","signature":"noreturn onInvalidMemoryOperationError(void *  pretend_sideffect =  null,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/onInvalidMemoryOperationError.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"onOutOfMemoryError","package":"druntime","parentType":"","signature":"noreturn onOutOfMemoryError(void *  pretend_sideffect =  null,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/onOutOfMemoryError.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"gc_conservative_ctor","package":"druntime","parentType":"","signature":"void gc_conservative_ctor()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/gc_conservative_ctor.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"_d_register_conservative_gc","package":"druntime","parentType":"","signature":"void _d_register_conservative_gc()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/_d_register_conservative_gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"gc_precise_ctor","package":"druntime","parentType":"","signature":"void gc_precise_ctor()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/gc_precise_ctor.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"_d_register_precise_gc","package":"druntime","parentType":"","signature":"void _d_register_precise_gc()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/_d_register_precise_gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"initialize","package":"druntime","parentType":"","signature":"GC initialize()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/initialize.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"initialize_precise","package":"druntime","parentType":"","signature":"GC initialize_precise()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/initialize_precise.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"calcBinBase","package":"druntime","parentType":"","signature":"short[PAGESIZE /  16][Bins.B_NUMSMALL +  1] calcBinBase()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/calcBinBase.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"baseOffset","package":"druntime","parentType":"","signature":"size_t baseOffset(size_t offset,  Bins bin)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/baseOffset.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"set","package":"druntime","parentType":"","signature":"void set(ref  PageBits bits,  size_t i)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/set.html"},{"doc":"Mark the specified memory region as uninitialized - reading from this region is an error. If writable is false, writing to it is also an error.","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"invalidate","package":"druntime","parentType":"","signature":"void invalidate(void[]  mem,  ubyte  pattern,  bool  writable)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/invalidate.html"},{"doc":"Read memory that should otherwise be marked as unreadable (e.g. free lists overlapped with unallocated heap objects).","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"undefinedRead","package":"druntime","parentType":"","signature":"T undefinedRead(T)(ref  T var)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/undefinedRead.html"},{"doc":"Write memory that should otherwise be marked as unwritable.","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"undefinedWrite","package":"druntime","parentType":"","signature":"void undefinedWrite(T)(ref  T var,  T value)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/undefinedWrite.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"adjustAttrs","package":"druntime","parentType":"","signature":"void adjustAttrs(ref  uint  attrs,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/adjustAttrs.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.conservative.gc","name":"setupMetadata","package":"druntime","parentType":"","signature":"void[] setupMetadata(void[]  block,  uint  bits,  size_t padding,  size_t used,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/setupMetadata.html"},{"doc":"Debugging **************************","kind":"alias","module":"core.internal.gc.impl.conservative.gc","name":"currTime","package":"druntime","parentType":"","signature":"currTime = MonoTime.currTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#currTime"},{"doc":"","kind":"alias","module":"core.internal.gc.impl.conservative.gc","name":"gc_t","package":"druntime","parentType":"","signature":"gc_t = GC","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#gc_t"},{"doc":"","kind":"class","module":"core.internal.gc.impl.conservative.gc","name":"ConservativeGC","package":"druntime","parentType":"","signature":"ConservativeGC : GC","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#ConservativeGC"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"lockNR","package":"druntime","parentType":"ConservativeGC","signature":"void lockNR()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.lockNR.html"},{"doc":"Enables the GC if disable() was previously called. Must be called for each time disable was called in order to enable the GC again.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"enable","package":"druntime","parentType":"ConservativeGC","signature":"void enable()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.enable.html"},{"doc":"Disable the GC. The GC may still run if it deems necessary.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"disable","package":"druntime","parentType":"ConservativeGC","signature":"void disable()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.disable.html"},{"doc":"Run a function inside a lock/unlock set.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runLocked","package":"druntime","parentType":"ConservativeGC","signature":"auto runLocked(alias  func,  Args...)(auto  ref  Args args)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.runLocked.html"},{"doc":"Run a function in an lock/unlock set that keeps track of how much time was spend inside this function (in ticks) and how many times this fuction wa...","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runLocked","package":"druntime","parentType":"ConservativeGC","signature":"auto runLocked(alias  func,  alias  time,  alias  count,  Args...)(auto  ref  Args args)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.runLocked.html"},{"doc":"Returns a bit field representing all block attributes set for the memory referenced by p.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getAttr","package":"druntime","parentType":"ConservativeGC","signature":"uint getAttr(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.getAttr.html"},{"doc":"Sets the specified bits for the memory references by p.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setAttr","package":"druntime","parentType":"ConservativeGC","signature":"uint setAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.setAttr.html"},{"doc":"Clears the specified bits for the memory references by p.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"clrAttr","package":"druntime","parentType":"ConservativeGC","signature":"uint clrAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.clrAttr.html"},{"doc":"Requests an aligned block of managed memory from the garbage collector.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"malloc","package":"druntime","parentType":"ConservativeGC","signature":"void  *malloc malloc(size_t size,  uint  bits =  0,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.malloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"mallocNoSync","package":"druntime","parentType":"ConservativeGC","signature":"void  *mallocNoSync mallocNoSync(size_t size,  uint  bits,  ref  size_t alloc_size,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.mallocNoSync.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"qalloc","package":"druntime","parentType":"ConservativeGC","signature":"BlkInfo qalloc(  size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.qalloc.html"},{"doc":"Requests an aligned block of managed memory from the garbage collector, which is initialized with all bits set to zero.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"calloc","package":"druntime","parentType":"ConservativeGC","signature":"void  *calloc calloc(size_t size,  uint  bits =  0,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.calloc.html"},{"doc":"Request that the GC reallocate a block of memory, attempting to adjust the size in place if possible. If size is 0, the memory will be freed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"realloc","package":"druntime","parentType":"ConservativeGC","signature":"void  *realloc realloc(void  * p,  size_t size,  uint  bits =  0,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.realloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"reallocNoSync","package":"druntime","parentType":"ConservativeGC","signature":"void  *reallocNoSync reallocNoSync(void  * p,  size_t size,  ref  uint  bits,  ref  size_t alloc_size,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.reallocNoSync.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"extend","package":"druntime","parentType":"ConservativeGC","signature":"size_t extend(void *  p,  size_t minsize,  size_t maxsize,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.extend.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"extendNoSync","package":"druntime","parentType":"ConservativeGC","signature":"size_t extendNoSync(void *  p,  size_t minsize,  size_t maxsize,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.extendNoSync.html"},{"doc":"Requests that at least size bytes of memory be obtained from the operating system and marked as free.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"reserve","package":"druntime","parentType":"ConservativeGC","signature":"size_t reserve(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.reserve.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"reserveNoSync","package":"druntime","parentType":"ConservativeGC","signature":"size_t reserveNoSync(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.reserveNoSync.html"},{"doc":"Deallocates the memory referenced by p.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"free","package":"druntime","parentType":"ConservativeGC","signature":"void free(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.free.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"freeNoSync","package":"druntime","parentType":"ConservativeGC","signature":"bool freeNoSync(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.freeNoSync.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addrOf","package":"druntime","parentType":"ConservativeGC","signature":"void * addrOf(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.addrOf.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addrOfNoSync","package":"druntime","parentType":"ConservativeGC","signature":"void * addrOfNoSync(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.addrOfNoSync.html"},{"doc":"Determine the allocated size of pointer p.  If p is an interior pointer or not a gc allocated pointer, return 0.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"sizeOf","package":"druntime","parentType":"ConservativeGC","signature":"size_t sizeOf(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.sizeOf.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"sizeOfNoSync","package":"druntime","parentType":"ConservativeGC","signature":"size_t sizeOfNoSync(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.sizeOfNoSync.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"query","package":"druntime","parentType":"ConservativeGC","signature":"BlkInfo query(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.query.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"queryNoSync","package":"druntime","parentType":"ConservativeGC","signature":"BlkInfo queryNoSync(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.queryNoSync.html"},{"doc":"Performs certain checks on a pointer. These checks will cause asserts to fail unless the following conditions are met: 1) The poiinter belongs to t...","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"check","package":"druntime","parentType":"ConservativeGC","signature":"void check(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.check.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"checkNoSync","package":"druntime","parentType":"ConservativeGC","signature":"void checkNoSync(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.checkNoSync.html"},{"doc":"Add p to list of roots. If p is null, no operation is performed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addRoot","package":"druntime","parentType":"ConservativeGC","signature":"void addRoot(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.addRoot.html"},{"doc":"Remove p from list of roots. If p is null or is not a value previously passed to addRoot() then no operation is performed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"removeRoot","package":"druntime","parentType":"ConservativeGC","signature":"void removeRoot(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.removeRoot.html"},{"doc":"Returns an iterator allowing roots to be traversed via a foreach loop.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"rootIter","package":"druntime","parentType":"ConservativeGC","signature":"RootIterator rootIter()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.rootIter.html"},{"doc":"Add range to scan for roots. If p is null or sz is 0, no operation is performed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addRange","package":"druntime","parentType":"ConservativeGC","signature":"void addRange(void  * p,  size_t sz,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.addRange.html"},{"doc":"Remove range from list of ranges. If p is null or does not represent a value previously passed to addRange() then no operation is performed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"removeRange","package":"druntime","parentType":"ConservativeGC","signature":"void removeRange(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.removeRange.html"},{"doc":"Returns an iterator allowing ranges to be traversed via a foreach loop.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"rangeIter","package":"druntime","parentType":"ConservativeGC","signature":"RangeIterator rangeIter()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.rangeIter.html"},{"doc":"Run all finalizers in the code segment.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runFinalizers","package":"druntime","parentType":"ConservativeGC","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.runFinalizers.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"inFinalizer","package":"druntime","parentType":"ConservativeGC","signature":"bool inFinalizer()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.inFinalizer.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"collect","package":"druntime","parentType":"ConservativeGC","signature":"void collect()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.collect.html"},{"doc":"Begins a full collection, scanning all stack segments for roots.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"fullCollect","package":"druntime","parentType":"ConservativeGC","signature":"size_t fullCollect()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.fullCollect.html"},{"doc":"Minimize free space usage.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"minimize","package":"druntime","parentType":"ConservativeGC","signature":"void minimize()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.minimize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"stats","package":"druntime","parentType":"ConservativeGC","signature":"core.memory.GC.Stats stats()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.stats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"profileStats","package":"druntime","parentType":"ConservativeGC","signature":"core.memory.GC.ProfileStats profileStats()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.profileStats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"allocatedInCurrentThread","package":"druntime","parentType":"ConservativeGC","signature":"ulong allocatedInCurrentThread()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.allocatedInCurrentThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getStatsNoSync","package":"druntime","parentType":"ConservativeGC","signature":"void getStatsNoSync(out  core.memory.GC.Stats stats)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.getStatsNoSync.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getArrayUsed","package":"druntime","parentType":"ConservativeGC","signature":"void[] getArrayUsed(void  * ptr,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.getArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"expandArrayUsed","package":"druntime","parentType":"ConservativeGC","signature":"bool expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.expandArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"shrinkArrayUsed","package":"druntime","parentType":"ConservativeGC","signature":"bool shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.shrinkArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"reserveArrayCapacity","package":"druntime","parentType":"ConservativeGC","signature":"size_t reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.reserveArrayCapacity.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"initThread","package":"druntime","parentType":"ConservativeGC","signature":"void initThread(ThreadBase t)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.initThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"cleanupThread","package":"druntime","parentType":"ConservativeGC","signature":"void cleanupThread(ThreadBase t)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/ConservativeGC.cleanupThread.html"},{"doc":"","kind":"enum","module":"core.internal.gc.impl.conservative.gc","name":"Bins","package":"druntime","parentType":"","signature":"Bins : ubyte","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_16","package":"druntime","parentType":"","signature":"B_16 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_32","package":"druntime","parentType":"","signature":"B_32 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_48","package":"druntime","parentType":"","signature":"B_48 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_64","package":"druntime","parentType":"","signature":"B_64 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_96","package":"druntime","parentType":"","signature":"B_96 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_128","package":"druntime","parentType":"","signature":"B_128 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_176","package":"druntime","parentType":"","signature":"B_176 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_256","package":"druntime","parentType":"","signature":"B_256 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_368","package":"druntime","parentType":"","signature":"B_368 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_512","package":"druntime","parentType":"","signature":"B_512 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_816","package":"druntime","parentType":"","signature":"B_816 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_1024","package":"druntime","parentType":"","signature":"B_1024 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_1360","package":"druntime","parentType":"","signature":"B_1360 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_2048","package":"druntime","parentType":"","signature":"B_2048 = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_NUMSMALL","package":"druntime","parentType":"","signature":"B_NUMSMALL = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_PAGE","package":"druntime","parentType":"","signature":"B_PAGE = B_NUMSMALL","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_PAGEPLUS","package":"druntime","parentType":"","signature":"B_PAGEPLUS = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_FREE","package":"druntime","parentType":"","signature":"B_FREE = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"enum_member","module":"core.internal.gc.impl.conservative.gc","name":"B_MAX","package":"druntime","parentType":"","signature":"B_MAX = ","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Bins"},{"doc":"","kind":"struct","module":"core.internal.gc.impl.conservative.gc","name":"List","package":"druntime","parentType":"","signature":"List","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#List"},{"doc":"","kind":"alias","module":"core.internal.gc.impl.conservative.gc","name":"PageBits","package":"druntime","parentType":"","signature":"PageBits = GCBits.wordtype[PAGESIZE /  16 /  GCBits.BITS_PER_WORD]","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#PageBits"},{"doc":"","kind":"struct","module":"core.internal.gc.impl.conservative.gc","name":"Gcx","package":"druntime","parentType":"","signature":"Gcx","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Gcx"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"initialize","package":"druntime","parentType":"Gcx","signature":"void initialize()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.initialize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"Dtor","package":"druntime","parentType":"Gcx","signature":"void Dtor()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.Dtor.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"Invariant","package":"druntime","parentType":"Gcx","signature":"void Invariant()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.Invariant.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"collectInProgress","package":"druntime","parentType":"Gcx","signature":"bool collectInProgress()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.collectInProgress.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addRoot","package":"druntime","parentType":"Gcx","signature":"void addRoot(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.addRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"removeRoot","package":"druntime","parentType":"Gcx","signature":"void removeRoot(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.removeRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"rootsApply","package":"druntime","parentType":"Gcx","signature":"int rootsApply(scope  int  delegate(ref  Root)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.rootsApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"addRange","package":"druntime","parentType":"Gcx","signature":"void addRange(void  * pbot,  void  * ptop,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.addRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"removeRange","package":"druntime","parentType":"Gcx","signature":"void removeRange(void  * pbot)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.removeRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"rangesApply","package":"druntime","parentType":"Gcx","signature":"int rangesApply(scope  int  delegate(ref  Range)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.rangesApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runFinalizers","package":"druntime","parentType":"Gcx","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.runFinalizers.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"findPool","package":"druntime","parentType":"Gcx","signature":"Pool * findPool(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.findPool.html"},{"doc":"Find base address of block containing pointer p. Returns null if not a gc'd pointer","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"findBase","package":"druntime","parentType":"Gcx","signature":"void * findBase(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.findBase.html"},{"doc":"Find size of pointer p. Returns 0 if not a gc'd pointer","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"findSize","package":"druntime","parentType":"Gcx","signature":"size_t findSize(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.findSize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getInfo","package":"druntime","parentType":"Gcx","signature":"BlkInfo getInfo(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.getInfo.html"},{"doc":"Computes the bin table using CTFE.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"ctfeBins","package":"druntime","parentType":"Gcx","signature":"Bins[2049] ctfeBins()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.ctfeBins.html"},{"doc":"Allocate a new pool of at least size bytes. Sort it into pooltable[]. Mark all memory in the pool as B_FREE. Return the actual number of bytes rese...","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"reserve","package":"druntime","parentType":"Gcx","signature":"size_t reserve(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.reserve.html"},{"doc":"Update the thresholds for when to collect the next time","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"updateCollectThresholds","package":"druntime","parentType":"Gcx","signature":"void updateCollectThresholds()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.updateCollectThresholds.html"},{"doc":"Minimizes physical memory usage by returning free pools to the OS.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"minimize","package":"druntime","parentType":"Gcx","signature":"void minimize()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.minimize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"lowMem","package":"druntime","parentType":"Gcx","signature":"bool lowMem()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.lowMem.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"alloc","package":"druntime","parentType":"Gcx","signature":"void * alloc(size_t size,  ref  size_t alloc_size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.alloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"smallAlloc","package":"druntime","parentType":"Gcx","signature":"void * smallAlloc(size_t size,  ref  size_t alloc_size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.smallAlloc.html"},{"doc":"Allocate a chunk of memory that is larger than a page. Return null if out of memory.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"bigAlloc","package":"druntime","parentType":"Gcx","signature":"void * bigAlloc(size_t size,  ref  size_t alloc_size,  uint  bits,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.bigAlloc.html"},{"doc":"Allocate a new pool with at least npages in it. Sort it into pooltable[]. Return null if failed.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"newPool","package":"druntime","parentType":"Gcx","signature":"Pool *newPool newPool(size_t npages,  bool  isLargeObject)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.newPool.html"},{"doc":"Allocate a page of bin's. Returns: head of a single linked list of new entries","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"allocPage","package":"druntime","parentType":"Gcx","signature":"List * allocPage(Bins bin)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.allocPage.html"},{"doc":"Search a range of memory values and mark any pointers into the GC pool.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"mark","package":"druntime","parentType":"Gcx","signature":"void mark(bool  precise,  bool  parallel,  bool  shared_mem)(ScanRange!precise rng)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.mark.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"markConservative","package":"druntime","parentType":"Gcx","signature":"void markConservative(bool  shared_mem)(void  * pbot,  void  * ptop)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.markConservative.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"markPrecise","package":"druntime","parentType":"Gcx","signature":"void markPrecise(bool  shared_mem)(void  * pbot,  void  * ptop)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.markPrecise.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"prepare","package":"druntime","parentType":"Gcx","signature":"void prepare()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.prepare.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"markAll","package":"druntime","parentType":"Gcx","signature":"void markAll(alias  markFn)()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.markAll.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"sweep","package":"druntime","parentType":"Gcx","signature":"size_t sweep()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.sweep.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"recoverPage","package":"druntime","parentType":"Gcx","signature":"bool recoverPage(SmallObjectPool *  pool,  size_t pn,  Bins bin)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.recoverPage.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"recoverNextPage","package":"druntime","parentType":"Gcx","signature":"bool recoverNextPage(Bins bin)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.recoverNextPage.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setNextRecoverPool","package":"druntime","parentType":"Gcx","signature":"SmallObjectPool * setNextRecoverPool(Bins bin,  size_t poolIndex)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.setNextRecoverPool.html"},{"doc":"Return number of full pages free'd. The collection is done concurrently only if block and isFinal are false.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"fullcollect","package":"druntime","parentType":"Gcx","signature":"size_t fullcollect(bool  block =  false,  bool  isFinal =  false)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.fullcollect.html"},{"doc":"Clear the block cache data if it exists, given the data which is the block info cache.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"clearBlkCacheData","package":"druntime","parentType":"Gcx","signature":"void  *clearBlkCacheData clearBlkCacheData(void *  data)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.clearBlkCacheData.html"},{"doc":"Returns true if the addr lies within a marked block.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"isMarked","package":"druntime","parentType":"Gcx","signature":"IsMarked isMarked(void  * addr)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.isMarked.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"markParallel","package":"druntime","parentType":"Gcx","signature":"void markParallel()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.markParallel.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"maxParallelThreads","package":"druntime","parentType":"Gcx","signature":"int maxParallelThreads()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.maxParallelThreads.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"startScanThreads","package":"druntime","parentType":"Gcx","signature":"void startScanThreads()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.startScanThreads.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"stopScanThreads","package":"druntime","parentType":"Gcx","signature":"void stopScanThreads()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.stopScanThreads.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"scanBackground","package":"druntime","parentType":"Gcx","signature":"void scanBackground()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.scanBackground.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"pullFromScanStack","package":"druntime","parentType":"Gcx","signature":"bool pullFromScanStack()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.pullFromScanStack.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"pullFromScanStackImpl","package":"druntime","parentType":"Gcx","signature":"bool pullFromScanStackImpl(bool  precise)()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.pullFromScanStackImpl.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"scanStackPushLocked","package":"druntime","parentType":"Gcx","signature":"void scanStackPushLocked(bool  precise)(ScanRange!precise[]  ranges)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.scanStackPushLocked.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"scanStackPopLocked","package":"druntime","parentType":"Gcx","signature":"bool scanStackPopLocked(bool  precise)(ref  ScanRange!precise rng)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Gcx.scanStackPopLocked.html"},{"doc":"","kind":"struct","module":"core.internal.gc.impl.conservative.gc","name":"Pool","package":"druntime","parentType":"","signature":"Pool","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#Pool"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"initialize","package":"druntime","parentType":"Pool","signature":"void initialize(size_t npages,  bool  isLargeObject)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.initialize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"Dtor","package":"druntime","parentType":"Pool","signature":"void Dtor()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.Dtor.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getBits","package":"druntime","parentType":"Pool","signature":"uint getBits(size_t biti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.getBits.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"clrBits","package":"druntime","parentType":"Pool","signature":"void clrBits(size_t biti,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.clrBits.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setBits","package":"druntime","parentType":"Pool","signature":"void setBits(size_t biti,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.setBits.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"freePageBits","package":"druntime","parentType":"Pool","signature":"void freePageBits(size_t pagenum,  const  scope  ref  PageBits toFree)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.freePageBits.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"freeAllPageBits","package":"druntime","parentType":"Pool","signature":"void freeAllPageBits(size_t pagenum)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.freeAllPageBits.html"},{"doc":"Given a pointer p in the p, return the pagenum.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"pagenumOf","package":"druntime","parentType":"Pool","signature":"size_t pagenumOf(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.pagenumOf.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"isFree","package":"druntime","parentType":"Pool","signature":"bool isFree()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.isFree.html"},{"doc":"Return number of pages necessary for an allocation of the given size","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"numPages","package":"druntime","parentType":"Pool","signature":"size_t numPages(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.numPages.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"findBase","package":"druntime","parentType":"Pool","signature":"void * findBase(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.findBase.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"slGetSize","package":"druntime","parentType":"Pool","signature":"size_t slGetSize(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.slGetSize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"slGetInfo","package":"druntime","parentType":"Pool","signature":"BlkInfo slGetInfo(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.slGetInfo.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"Invariant","package":"druntime","parentType":"Pool","signature":"void Invariant()","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.Invariant.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setPointerBitmapSmall","package":"druntime","parentType":"Pool","signature":"void setPointerBitmapSmall(void *  p,  size_t s,  size_t allocSize,  uint  attr,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.setPointerBitmapSmall.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setPointerBitmap","package":"druntime","parentType":"Pool","signature":"void setPointerBitmap(void *  p,  size_t s,  size_t allocSize,  const  TypeInfo ti,  uint  attr)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/Pool.setPointerBitmap.html"},{"doc":"","kind":"struct","module":"core.internal.gc.impl.conservative.gc","name":"LargeObjectPool","package":"druntime","parentType":"","signature":"LargeObjectPool","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#LargeObjectPool"},{"doc":"Allocate n pages from Pool. Returns OPFAIL on failure.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"allocPages","package":"druntime","parentType":"LargeObjectPool","signature":"size_t allocPages(size_t n)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.allocPages.html"},{"doc":"Free npages pages starting with pagenum.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"freePages","package":"druntime","parentType":"LargeObjectPool","signature":"void freePages(size_t pagenum,  size_t npages)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.freePages.html"},{"doc":"Set the first and the last entry of a B_FREE block to the size","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"setFreePageOffsets","package":"druntime","parentType":"LargeObjectPool","signature":"void setFreePageOffsets(size_t page,  size_t num)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.setFreePageOffsets.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"mergeFreePageOffsets","package":"druntime","parentType":"LargeObjectPool","signature":"void mergeFreePageOffsets(bool  bwd,  bool  fwd)(size_t page,  size_t num)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.mergeFreePageOffsets.html"},{"doc":"Get pages of allocation at pointer p in pool.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getPages","package":"druntime","parentType":"LargeObjectPool","signature":"size_t getPages(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.getPages.html"},{"doc":"Get size of allocation at page pn in pool.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getSize","package":"druntime","parentType":"LargeObjectPool","signature":"size_t getSize(size_t pn)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.getSize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getInfo","package":"druntime","parentType":"LargeObjectPool","signature":"BlkInfo getInfo(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.getInfo.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runFinalizers","package":"druntime","parentType":"LargeObjectPool","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/LargeObjectPool.runFinalizers.html"},{"doc":"","kind":"struct","module":"core.internal.gc.impl.conservative.gc","name":"SmallObjectPool","package":"druntime","parentType":"","signature":"SmallObjectPool","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#SmallObjectPool"},{"doc":"Get size of pointer p in pool.","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getSize","package":"druntime","parentType":"SmallObjectPool","signature":"size_t getSize(void  * p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/SmallObjectPool.getSize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"getInfo","package":"druntime","parentType":"SmallObjectPool","signature":"BlkInfo getInfo(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/SmallObjectPool.getInfo.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"runFinalizers","package":"druntime","parentType":"SmallObjectPool","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/SmallObjectPool.runFinalizers.html"},{"doc":"Allocate a page of bin's. Returns: head of a single linked list of new entries","kind":"method","module":"core.internal.gc.impl.conservative.gc","name":"allocPage","package":"druntime","parentType":"SmallObjectPool","signature":"List * allocPage(Bins bin)","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc/SmallObjectPool.allocPage.html"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"prepTime","package":"druntime","parentType":"","signature":"Duration prepTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#prepTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"markTime","package":"druntime","parentType":"","signature":"Duration markTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#markTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"sweepTime","package":"druntime","parentType":"","signature":"Duration sweepTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#sweepTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"pauseTime","package":"druntime","parentType":"","signature":"Duration pauseTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#pauseTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"maxPauseTime","package":"druntime","parentType":"","signature":"Duration maxPauseTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#maxPauseTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"maxCollectionTime","package":"druntime","parentType":"","signature":"Duration maxCollectionTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#maxCollectionTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numCollections","package":"druntime","parentType":"","signature":"size_t numCollections","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numCollections"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"maxPoolMemory","package":"druntime","parentType":"","signature":"size_t maxPoolMemory","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#maxPoolMemory"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numMallocs","package":"druntime","parentType":"","signature":"long numMallocs","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numMallocs"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numFrees","package":"druntime","parentType":"","signature":"long numFrees","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numFrees"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numReallocs","package":"druntime","parentType":"","signature":"long numReallocs","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numReallocs"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numExtends","package":"druntime","parentType":"","signature":"long numExtends","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numExtends"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"numOthers","package":"druntime","parentType":"","signature":"long numOthers","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#numOthers"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"mallocTime","package":"druntime","parentType":"","signature":"long mallocTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#mallocTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"freeTime","package":"druntime","parentType":"","signature":"long freeTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#freeTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"reallocTime","package":"druntime","parentType":"","signature":"long reallocTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#reallocTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"extendTime","package":"druntime","parentType":"","signature":"long extendTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#extendTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"otherTime","package":"druntime","parentType":"","signature":"long otherTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#otherTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"lockTime","package":"druntime","parentType":"","signature":"long lockTime","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#lockTime"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"bytesAllocated","package":"druntime","parentType":"","signature":"ulong bytesAllocated","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#bytesAllocated"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"binsize","package":"druntime","parentType":"","signature":"short[Bins.B_NUMSMALL +  1] binsize","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#binsize"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"binbase","package":"druntime","parentType":"","signature":"short[PAGESIZE /  16][Bins.B_NUMSMALL +  1] binbase","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#binbase"},{"doc":"","kind":"variable","module":"core.internal.gc.impl.conservative.gc","name":"baseOffsetBits","package":"druntime","parentType":"","signature":"PageBits[Bins.B_NUMSMALL] baseOffsetBits","url":"/ddoc/druntime/core/internal/gc/impl/conservative/gc.html#baseOffsetBits"},{"doc":"This module contains a minimal garbage collector implementation according to published requirements.  This library is mostly intended to serve as a...","kind":"module","module":"core.internal.gc.impl.manual.gc","name":"core.internal.gc.impl.manual.gc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.manual.gc","name":"onOutOfMemoryError","package":"druntime","parentType":"","signature":"noreturn onOutOfMemoryError(void *  pretend_sideffect =  null,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/onOutOfMemoryError.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.manual.gc","name":"gc_manual_ctor","package":"druntime","parentType":"","signature":"void gc_manual_ctor()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/gc_manual_ctor.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.manual.gc","name":"_d_register_manual_gc","package":"druntime","parentType":"","signature":"void _d_register_manual_gc()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/_d_register_manual_gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.manual.gc","name":"initialize","package":"druntime","parentType":"","signature":"GC initialize()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/initialize.html"},{"doc":"","kind":"class","module":"core.internal.gc.impl.manual.gc","name":"ManualGC","package":"druntime","parentType":"","signature":"ManualGC : GC","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc.html#ManualGC"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"enable","package":"druntime","parentType":"ManualGC","signature":"void enable()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.enable.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"disable","package":"druntime","parentType":"ManualGC","signature":"void disable()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.disable.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"collect","package":"druntime","parentType":"ManualGC","signature":"void collect()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.collect.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"minimize","package":"druntime","parentType":"ManualGC","signature":"void minimize()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.minimize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"getAttr","package":"druntime","parentType":"ManualGC","signature":"uint getAttr(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.getAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"setAttr","package":"druntime","parentType":"ManualGC","signature":"uint setAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.setAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"clrAttr","package":"druntime","parentType":"ManualGC","signature":"uint clrAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.clrAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"malloc","package":"druntime","parentType":"ManualGC","signature":"void * malloc(size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.malloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"qalloc","package":"druntime","parentType":"ManualGC","signature":"BlkInfo qalloc(size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.qalloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"calloc","package":"druntime","parentType":"ManualGC","signature":"void * calloc(size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.calloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"realloc","package":"druntime","parentType":"ManualGC","signature":"void * realloc(void *  p,  size_t size,  uint  bits,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.realloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"extend","package":"druntime","parentType":"ManualGC","signature":"size_t extend(void *  p,  size_t minsize,  size_t maxsize,  const  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.extend.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"reserve","package":"druntime","parentType":"ManualGC","signature":"size_t reserve(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.reserve.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"free","package":"druntime","parentType":"ManualGC","signature":"void free(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.free.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"addrOf","package":"druntime","parentType":"ManualGC","signature":"void * addrOf(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.addrOf.html"},{"doc":"Determine the allocated size of pointer p.  If p is an interior pointer or not a gc allocated pointer, return 0.","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"sizeOf","package":"druntime","parentType":"ManualGC","signature":"size_t sizeOf(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.sizeOf.html"},{"doc":"Determine the base address of the block containing p.  If p is not a gc allocated pointer, return null.","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"query","package":"druntime","parentType":"ManualGC","signature":"BlkInfo query(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.query.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"stats","package":"druntime","parentType":"ManualGC","signature":"core.memory.GC.Stats stats()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.stats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"profileStats","package":"druntime","parentType":"ManualGC","signature":"core.memory.GC.ProfileStats profileStats()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.profileStats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"addRoot","package":"druntime","parentType":"ManualGC","signature":"void addRoot(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.addRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"removeRoot","package":"druntime","parentType":"ManualGC","signature":"void removeRoot(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.removeRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"rootIter","package":"druntime","parentType":"ManualGC","signature":"RootIterator rootIter()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.rootIter.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"rootsApply","package":"druntime","parentType":"ManualGC","signature":"int rootsApply(scope  int  delegate(ref  Root)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.rootsApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"addRange","package":"druntime","parentType":"ManualGC","signature":"void addRange(void *  p,  size_t sz,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.addRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"removeRange","package":"druntime","parentType":"ManualGC","signature":"void removeRange(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.removeRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"rangeIter","package":"druntime","parentType":"ManualGC","signature":"RangeIterator rangeIter()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.rangeIter.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"rangesApply","package":"druntime","parentType":"ManualGC","signature":"int rangesApply(scope  int  delegate(ref  Range)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.rangesApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"runFinalizers","package":"druntime","parentType":"ManualGC","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.runFinalizers.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"inFinalizer","package":"druntime","parentType":"ManualGC","signature":"bool inFinalizer()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.inFinalizer.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"allocatedInCurrentThread","package":"druntime","parentType":"ManualGC","signature":"ulong allocatedInCurrentThread()","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.allocatedInCurrentThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"getArrayUsed","package":"druntime","parentType":"ManualGC","signature":"void[] getArrayUsed(void  * ptr,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.getArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"expandArrayUsed","package":"druntime","parentType":"ManualGC","signature":"bool expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.expandArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"reserveArrayCapacity","package":"druntime","parentType":"ManualGC","signature":"size_t reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.reserveArrayCapacity.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"shrinkArrayUsed","package":"druntime","parentType":"ManualGC","signature":"bool shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.shrinkArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"initThread","package":"druntime","parentType":"ManualGC","signature":"void initThread(ThreadBase t)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.initThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.manual.gc","name":"cleanupThread","package":"druntime","parentType":"ManualGC","signature":"void cleanupThread(ThreadBase t)","url":"/ddoc/druntime/core/internal/gc/impl/manual/gc/ManualGC.cleanupThread.html"},{"doc":"","kind":"module","module":"core.internal.gc.impl.proto.gc","name":"core.internal.gc.impl.proto.gc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"onOutOfMemoryError","package":"druntime","parentType":"","signature":"noreturn onOutOfMemoryError(void *  pretend_sideffect =  null,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/onOutOfMemoryError.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_init_nothrow","package":"druntime","parentType":"","signature":"void gc_init_nothrow()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_init_nothrow.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_term","package":"druntime","parentType":"","signature":"void gc_term()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_term.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_enable","package":"druntime","parentType":"","signature":"void gc_enable()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_enable.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_disable","package":"druntime","parentType":"","signature":"void gc_disable()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_disable.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_malloc","package":"druntime","parentType":"","signature":"void * gc_malloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo =  null )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_malloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_calloc","package":"druntime","parentType":"","signature":"void * gc_calloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo =  null )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_calloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_qalloc","package":"druntime","parentType":"","signature":"BlkInfo gc_qalloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo =  null )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_qalloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_realloc","package":"druntime","parentType":"","signature":"void * gc_realloc(return  scope  void *  p,  size_t sz,  uint  ba =  0,  const  scope  TypeInfo =  null )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_realloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_reserve","package":"druntime","parentType":"","signature":"size_t gc_reserve(  size_t sz )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_reserve.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_addRange","package":"druntime","parentType":"","signature":"void gc_addRange(const  void *  p,  size_t sz,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_addRange.html"},{"doc":"","kind":"function","module":"core.internal.gc.impl.proto.gc","name":"gc_addRoot","package":"druntime","parentType":"","signature":"void gc_addRoot(const  void *  p )","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/gc_addRoot.html"},{"doc":"","kind":"class","module":"core.internal.gc.impl.proto.gc","name":"ProtoGC","package":"druntime","parentType":"","signature":"ProtoGC : GC","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc.html#ProtoGC"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"transferRangesAndRoots","package":"druntime","parentType":"ProtoGC","signature":"void transferRangesAndRoots()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.transferRangesAndRoots.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"Dtor","package":"druntime","parentType":"ProtoGC","signature":"void Dtor()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.Dtor.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"enable","package":"druntime","parentType":"ProtoGC","signature":"void enable()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.enable.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"disable","package":"druntime","parentType":"ProtoGC","signature":"void disable()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.disable.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"collect","package":"druntime","parentType":"ProtoGC","signature":"void collect()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.collect.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"minimize","package":"druntime","parentType":"ProtoGC","signature":"void minimize()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.minimize.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"getAttr","package":"druntime","parentType":"ProtoGC","signature":"uint getAttr(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.getAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"setAttr","package":"druntime","parentType":"ProtoGC","signature":"uint setAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.setAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"clrAttr","package":"druntime","parentType":"ProtoGC","signature":"uint clrAttr(void *  p,  uint  mask)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.clrAttr.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"malloc","package":"druntime","parentType":"ProtoGC","signature":"void * malloc(size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.malloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"qalloc","package":"druntime","parentType":"ProtoGC","signature":"BlkInfo qalloc(size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.qalloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"calloc","package":"druntime","parentType":"ProtoGC","signature":"void * calloc(size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.calloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"realloc","package":"druntime","parentType":"ProtoGC","signature":"void * realloc(void *  p,  size_t size,  uint  bits,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.realloc.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"extend","package":"druntime","parentType":"ProtoGC","signature":"size_t extend(void *  p,  size_t minsize,  size_t maxsize,  const  scope  TypeInfo ti)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.extend.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"reserve","package":"druntime","parentType":"ProtoGC","signature":"size_t reserve(size_t size)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.reserve.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"free","package":"druntime","parentType":"ProtoGC","signature":"void free(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.free.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"addrOf","package":"druntime","parentType":"ProtoGC","signature":"void * addrOf(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.addrOf.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"sizeOf","package":"druntime","parentType":"ProtoGC","signature":"size_t sizeOf(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.sizeOf.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"query","package":"druntime","parentType":"ProtoGC","signature":"BlkInfo query(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.query.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"stats","package":"druntime","parentType":"ProtoGC","signature":"core.memory.GC.Stats stats()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.stats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"profileStats","package":"druntime","parentType":"ProtoGC","signature":"core.memory.GC.ProfileStats profileStats()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.profileStats.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"addRoot","package":"druntime","parentType":"ProtoGC","signature":"void addRoot(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.addRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"removeRoot","package":"druntime","parentType":"ProtoGC","signature":"void removeRoot(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.removeRoot.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"rootIter","package":"druntime","parentType":"ProtoGC","signature":"RootIterator rootIter()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.rootIter.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"rootsApply","package":"druntime","parentType":"ProtoGC","signature":"int rootsApply(scope  int  delegate(ref  Root)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.rootsApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"addRange","package":"druntime","parentType":"ProtoGC","signature":"void addRange(void *  p,  size_t sz,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.addRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"removeRange","package":"druntime","parentType":"ProtoGC","signature":"void removeRange(void *  p)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.removeRange.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"rangeIter","package":"druntime","parentType":"ProtoGC","signature":"RangeIterator rangeIter()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.rangeIter.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"rangesApply","package":"druntime","parentType":"ProtoGC","signature":"int rangesApply(scope  int  delegate(ref  Range)  nothrow  dg)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.rangesApply.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"runFinalizers","package":"druntime","parentType":"ProtoGC","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.runFinalizers.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"inFinalizer","package":"druntime","parentType":"ProtoGC","signature":"bool inFinalizer()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.inFinalizer.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"allocatedInCurrentThread","package":"druntime","parentType":"ProtoGC","signature":"ulong allocatedInCurrentThread()","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.allocatedInCurrentThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"getArrayUsed","package":"druntime","parentType":"ProtoGC","signature":"void[] getArrayUsed(void  * ptr,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.getArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"expandArrayUsed","package":"druntime","parentType":"ProtoGC","signature":"bool expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.expandArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"reserveArrayCapacity","package":"druntime","parentType":"ProtoGC","signature":"size_t reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.reserveArrayCapacity.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"shrinkArrayUsed","package":"druntime","parentType":"ProtoGC","signature":"bool shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic =  false)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.shrinkArrayUsed.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"initThread","package":"druntime","parentType":"ProtoGC","signature":"void initThread(ThreadBase thread)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.initThread.html"},{"doc":"","kind":"method","module":"core.internal.gc.impl.proto.gc","name":"cleanupThread","package":"druntime","parentType":"ProtoGC","signature":"void cleanupThread(ThreadBase thread)","url":"/ddoc/druntime/core/internal/gc/impl/proto/gc/ProtoGC.cleanupThread.html"},{"doc":"Contains OS-level routines needed by the garbage collector.","kind":"module","module":"core.internal.gc.os","name":"core.internal.gc.os","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/os.html"},{"doc":"Check for any kind of memory pressure.","kind":"function","module":"core.internal.gc.os","name":"isLowOnMem","package":"druntime","parentType":"","signature":"bool isLowOnMem(size_t mapped)","url":"/ddoc/druntime/core/internal/gc/os/isLowOnMem.html"},{"doc":"Indicates if an allocation method supports sharing between processes.","kind":"variable","module":"core.internal.gc.os","name":"AllocSupportsShared","package":"druntime","parentType":"","signature":"AllocSupportsShared","url":"/ddoc/druntime/core/internal/gc/os.html#AllocSupportsShared"},{"doc":"A sorted array to quickly lookup pools.","kind":"module","module":"core.internal.gc.pooltable","name":"core.internal.gc.pooltable","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/pooltable.html"},{"doc":"","kind":"struct","module":"core.internal.gc.pooltable","name":"PoolTable","package":"druntime","parentType":"","signature":"PoolTable(Pool)","url":"/ddoc/druntime/core/internal/gc/pooltable.html#PoolTable"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"Dtor","package":"druntime","parentType":"PoolTable","signature":"void Dtor()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.Dtor.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"insert","package":"druntime","parentType":"PoolTable","signature":"bool insert(Pool *  pool)","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.insert.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"length","package":"druntime","parentType":"PoolTable","signature":"size_t length()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.length.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"opIndex","package":"druntime","parentType":"PoolTable","signature":"inout(Pool *) opIndex(size_t idx)","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.opIndex.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"opSlice","package":"druntime","parentType":"PoolTable","signature":"inout(Pool *)[] opSlice(size_t a,  size_t b)","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.opSlice.html"},{"doc":"Returns: A slice over all pools in this `PoolTable`","kind":"method","module":"core.internal.gc.pooltable","name":"opSlice","package":"druntime","parentType":"PoolTable","signature":"inout(Pool *)[] opSlice()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.opSlice.html"},{"doc":"Find Pool that pointer is in. Return null if not in a Pool. Assume pooltable[] is sorted.","kind":"method","module":"core.internal.gc.pooltable","name":"findPool","package":"druntime","parentType":"PoolTable","signature":"Pool *findPool findPool(void  * p)","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.findPool.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"minimize","package":"druntime","parentType":"PoolTable","signature":"Pool *[] minimize()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.minimize.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"Invariant","package":"druntime","parentType":"PoolTable","signature":"void Invariant()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.Invariant.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"minAddr","package":"druntime","parentType":"PoolTable","signature":"const(void) * minAddr()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.minAddr.html"},{"doc":"","kind":"method","module":"core.internal.gc.pooltable","name":"maxAddr","package":"druntime","parentType":"PoolTable","signature":"const(void) * maxAddr()","url":"/ddoc/druntime/core/internal/gc/pooltable/PoolTable.maxAddr.html"},{"doc":"Contains the external GC interface.","kind":"module","module":"core.internal.gc.proxy","name":"core.internal.gc.proxy","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/gc/proxy.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"instance","package":"druntime","parentType":"","signature":"GC instance()","url":"/ddoc/druntime/core/internal/gc/proxy/instance.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"_d_register_conservative_gc","package":"druntime","parentType":"","signature":"void _d_register_conservative_gc()","url":"/ddoc/druntime/core/internal/gc/proxy/_d_register_conservative_gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"_d_register_manual_gc","package":"druntime","parentType":"","signature":"void _d_register_manual_gc()","url":"/ddoc/druntime/core/internal/gc/proxy/_d_register_manual_gc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"register_default_gcs","package":"druntime","parentType":"","signature":"void * register_default_gcs()","url":"/ddoc/druntime/core/internal/gc/proxy/register_default_gcs.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_init","package":"druntime","parentType":"","signature":"void gc_init()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_init.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_init_nothrow","package":"druntime","parentType":"","signature":"void gc_init_nothrow()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_init_nothrow.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_term","package":"druntime","parentType":"","signature":"void gc_term()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_term.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_enable","package":"druntime","parentType":"","signature":"void gc_enable()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_enable.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_disable","package":"druntime","parentType":"","signature":"void gc_disable()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_disable.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_collect","package":"druntime","parentType":"","signature":"void gc_collect()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_collect.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_minimize","package":"druntime","parentType":"","signature":"void gc_minimize()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_minimize.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_getAttr","package":"druntime","parentType":"","signature":"uint gc_getAttr(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_getAttr.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_setAttr","package":"druntime","parentType":"","signature":"uint gc_setAttr(  void *  p,  uint  a )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_setAttr.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_clrAttr","package":"druntime","parentType":"","signature":"uint gc_clrAttr(  void *  p,  uint  a )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_clrAttr.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_malloc","package":"druntime","parentType":"","signature":"void * gc_malloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_malloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_qalloc","package":"druntime","parentType":"","signature":"BlkInfo gc_qalloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_qalloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_calloc","package":"druntime","parentType":"","signature":"void * gc_calloc(  size_t sz,  uint  ba =  0,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_calloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_realloc","package":"druntime","parentType":"","signature":"void * gc_realloc(  void *  p,  size_t sz,  uint  ba =  0,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_realloc.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_extend","package":"druntime","parentType":"","signature":"size_t gc_extend(  void *  p,  size_t mx,  size_t sz,  const  scope  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_extend.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_reserve","package":"druntime","parentType":"","signature":"size_t gc_reserve(  size_t sz )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_reserve.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_free","package":"druntime","parentType":"","signature":"void gc_free(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_free.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_addrOf","package":"druntime","parentType":"","signature":"void * gc_addrOf(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_addrOf.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_sizeOf","package":"druntime","parentType":"","signature":"size_t gc_sizeOf(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_sizeOf.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_query","package":"druntime","parentType":"","signature":"BlkInfo gc_query(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_query.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_stats","package":"druntime","parentType":"","signature":"core.memory.GC.Stats gc_stats()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_stats.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_profileStats","package":"druntime","parentType":"","signature":"core.memory.GC.ProfileStats gc_profileStats()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_profileStats.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_addRoot","package":"druntime","parentType":"","signature":"void gc_addRoot(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_addRoot.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_addRange","package":"druntime","parentType":"","signature":"void gc_addRange(  void *  p,  size_t sz,  const  TypeInfo ti =  null )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_addRange.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_removeRoot","package":"druntime","parentType":"","signature":"void gc_removeRoot(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_removeRoot.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_removeRange","package":"druntime","parentType":"","signature":"void gc_removeRange(  void *  p )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_removeRange.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_runFinalizers","package":"druntime","parentType":"","signature":"void gc_runFinalizers(const  scope  void[]  segment )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_runFinalizers.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_inFinalizer","package":"druntime","parentType":"","signature":"bool gc_inFinalizer()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_inFinalizer.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_allocatedInCurrentThread","package":"druntime","parentType":"","signature":"ulong gc_allocatedInCurrentThread()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_allocatedInCurrentThread.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_getArrayUsed","package":"druntime","parentType":"","signature":"void[] gc_getArrayUsed(void  * ptr,  bool  atomic)","url":"/ddoc/druntime/core/internal/gc/proxy/gc_getArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_expandArrayUsed","package":"druntime","parentType":"","signature":"bool gc_expandArrayUsed(void[]  slice,  size_t newUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/gc/proxy/gc_expandArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_reserveArrayCapacity","package":"druntime","parentType":"","signature":"size_t gc_reserveArrayCapacity(void[]  slice,  size_t request,  bool  atomic)","url":"/ddoc/druntime/core/internal/gc/proxy/gc_reserveArrayCapacity.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_shrinkArrayUsed","package":"druntime","parentType":"","signature":"bool gc_shrinkArrayUsed(void[]  slice,  size_t existingUsed,  bool  atomic)","url":"/ddoc/druntime/core/internal/gc/proxy/gc_shrinkArrayUsed.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_getProxy","package":"druntime","parentType":"","signature":"GC gc_getProxy()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_getProxy.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_setProxy","package":"druntime","parentType":"","signature":"void gc_setProxy(  GC proxy )","url":"/ddoc/druntime/core/internal/gc/proxy/gc_setProxy.html"},{"doc":"","kind":"function","module":"core.internal.gc.proxy","name":"gc_clrProxy","package":"druntime","parentType":"","signature":"void gc_clrProxy()","url":"/ddoc/druntime/core/internal/gc/proxy/gc_clrProxy.html"},{"doc":"","kind":"alias","module":"core.internal.gc.proxy","name":"BlkInfo","package":"druntime","parentType":"","signature":"BlkInfo = core.memory.GC.BlkInfo","url":"/ddoc/druntime/core/internal/gc/proxy.html#BlkInfo"},{"doc":"","kind":"variable","module":"core.internal.gc.proxy","name":"instanceLock","package":"druntime","parentType":"","signature":"SpinLock instanceLock","url":"/ddoc/druntime/core/internal/gc/proxy.html#instanceLock"},{"doc":"","kind":"variable","module":"core.internal.gc.proxy","name":"isInstanceInit","package":"druntime","parentType":"","signature":"bool isInstanceInit","url":"/ddoc/druntime/core/internal/gc/proxy.html#isInstanceInit"},{"doc":"","kind":"variable","module":"core.internal.gc.proxy","name":"_instance","package":"druntime","parentType":"","signature":"GC _instance","url":"/ddoc/druntime/core/internal/gc/proxy.html#_instance"},{"doc":"","kind":"variable","module":"core.internal.gc.proxy","name":"proxiedGC","package":"druntime","parentType":"","signature":"GC proxiedGC","url":"/ddoc/druntime/core/internal/gc/proxy.html#proxiedGC"},{"doc":"Written in the D programming language. This module provides functions to uniform calculating hash values for different types","kind":"module","module":"core.internal.hash","name":"core.internal.hash","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/hash.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(auto  ref  T val,  size_t seed =  0) if (is(T ==  enum)  && !__traits(isScalar,  T))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  auto  ref  T val,  size_t seed =  0) if (!is(T ==  enum)  &&  __traits(isStaticArray,  T)  &&  canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(auto  ref  T val,  size_t seed =  0) if (!is(T ==  enum)  &&  __traits(isStaticArray,  T)  && !canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed =  0) if (is(T ==  S[],  S)  && (__traits(isScalar,  S)  ||  canBitwiseHash!S))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(T val,  size_t seed =  0) if (is(T ==  S[],  S)  && !(__traits(isScalar,  S)  ||  canBitwiseHash!S))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"coalesceFloat","package":"druntime","parentType":"","signature":"F coalesceFloat(F)(const  F val) if (__traits(isFloating,  val)  && !is(F ==  __vector)  && !is(F :  creal))","url":"/ddoc/druntime/core/internal/hash/coalesceFloat.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val) if (__traits(isScalar,  T)  && !is(T ==  __vector))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed) if (__traits(isScalar,  T)  && !is(T ==  __vector))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed =  0) if (is(T ==  __vector))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val) if (!is(T ==  enum)  &&  is(T :  typeof(null)))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed) if (!is(T ==  enum)  &&  is(T :  typeof(null)))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  auto  ref  T val,  size_t seed =  0) if (!is(T ==  enum)  && (is(T ==  struct)  ||  is(T ==  union))\n     && !is(T ==  const)  && !is(T ==  immutable)\n     &&  canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(auto  ref  T val) if (!is(T ==  enum)  && (is(T ==  struct)  ||  is(T ==  union))\n     && !canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(auto  ref  T val,  size_t seed) if (!is(T ==  enum)  && (is(T ==  struct)  ||  is(T ==  union))\n     && !canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  auto  ref  T val,  size_t seed =  0) if (!is(T ==  enum)  && (is(T ==  struct)  ||  is(T ==  union))\n     && (is(T ==  const)  ||  is(T ==  immutable))\n     &&  canBitwiseHash!T && !canBitwiseHash!(Unconst!T))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed =  0) if (!is(T ==  enum)  &&  is(T ==  delegate))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val) if (!is(T ==  enum)  && (is(T ==  interface)  ||  is(T ==  class))\n     &&  canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(scope  const  T val,  size_t seed) if (!is(T ==  enum)  && (is(T ==  interface)  ||  is(T ==  class))\n     &&  canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(T val) if (!is(T ==  enum)  && (is(T ==  interface)  ||  is(T ==  class))\n     && !canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(T val,  size_t seed) if (!is(T ==  enum)  && (is(T ==  interface)  ||  is(T ==  class))\n     && !canBitwiseHash!T)","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(T aa) if (!is(T ==  enum)  &&  __traits(isAssociativeArray,  T))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"hashOf","package":"druntime","parentType":"","signature":"size_t hashOf(T)(T aa,  size_t seed) if (!is(T ==  enum)  &&  __traits(isAssociativeArray,  T))","url":"/ddoc/druntime/core/internal/hash/hashOf.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"bytesHash","package":"druntime","parentType":"","signature":"size_t bytesHash()(scope  const(void) *  buf,  size_t len,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/bytesHash.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"fnv","package":"druntime","parentType":"","signature":"size_t fnv()(scope  const(ubyte)[]  bytes,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/fnv.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"get32bits","package":"druntime","parentType":"","signature":"uint get32bits()(scope  const(ubyte) *  x)","url":"/ddoc/druntime/core/internal/hash/get32bits.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"_bytesHash","package":"druntime","parentType":"","signature":"size_t _bytesHash(bool  dataKnownToBeAligned)(scope  const(ubyte)[]  bytes,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/_bytesHash.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"_bytesHashAligned","package":"druntime","parentType":"","signature":"size_t _bytesHashAligned(scope  const(ubyte)[]  bytes,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/_bytesHashAligned.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"_bytesHashUnaligned","package":"druntime","parentType":"","signature":"size_t _bytesHashUnaligned(scope  const(ubyte)[]  bytes,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/_bytesHashUnaligned.html"},{"doc":"","kind":"function","module":"core.internal.hash","name":"bytesHash","package":"druntime","parentType":"","signature":"size_t bytesHash(bool  dataKnownToBeAligned)(scope  const(ubyte)[]  bytes,  size_t seed)","url":"/ddoc/druntime/core/internal/hash/bytesHash.html"},{"doc":"","kind":"alias","module":"core.internal.hash","name":"smallBytesHash","package":"druntime","parentType":"","signature":"smallBytesHash = fnv","url":"/ddoc/druntime/core/internal/hash.html#smallBytesHash"},{"doc":"","kind":"template","module":"core.internal.hash","name":"isCppClassWithoutHash","package":"druntime","parentType":"","signature":"isCppClassWithoutHash(T)","url":"/ddoc/druntime/core/internal/hash.html#isCppClassWithoutHash"},{"doc":"","kind":"template","module":"core.internal.hash","name":"canBitwiseHash","package":"druntime","parentType":"","signature":"canBitwiseHash(T)","url":"/ddoc/druntime/core/internal/hash.html#canBitwiseHash"},{"doc":"","kind":"template","module":"core.internal.hash","name":"bytesHashAlignedBy","package":"druntime","parentType":"","signature":"bytesHashAlignedBy(AlignType)","url":"/ddoc/druntime/core/internal/hash.html#bytesHashAlignedBy"},{"doc":"","kind":"template","module":"core.internal.hash","name":"bytesHashWithExactSizeAndAlignment","package":"druntime","parentType":"","signature":"bytesHashWithExactSizeAndAlignment(SizeAndAlignType)","url":"/ddoc/druntime/core/internal/hash.html#bytesHashWithExactSizeAndAlignment"},{"doc":"","kind":"variable","module":"core.internal.hash","name":"floatCoalesceZeroes","package":"druntime","parentType":"","signature":"floatCoalesceZeroes","url":"/ddoc/druntime/core/internal/hash.html#floatCoalesceZeroes"},{"doc":"","kind":"variable","module":"core.internal.hash","name":"floatCoalesceNaNs","package":"druntime","parentType":"","signature":"floatCoalesceNaNs","url":"/ddoc/druntime/core/internal/hash.html#floatCoalesceNaNs"},{"doc":"","kind":"variable","module":"core.internal.hash","name":"_hashOfStruct","package":"druntime","parentType":"","signature":"_hashOfStruct","url":"/ddoc/druntime/core/internal/hash.html#_hashOfStruct"},{"doc":"","kind":"module","module":"core.internal.lifetime","name":"core.internal.lifetime","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/lifetime.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"emplaceRef","package":"druntime","parentType":"","signature":"void emplaceRef(T,  UT,  Args...)(ref  UT chunk,  auto  ref  Args args)","url":"/ddoc/druntime/core/internal/lifetime/emplaceRef.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"emplaceRef","package":"druntime","parentType":"","signature":"void emplaceRef(UT,  Args...)(ref  UT chunk,  auto  ref  Args args) if (is(UT ==  core.internal.traits.Unqual!UT))","url":"/ddoc/druntime/core/internal/lifetime/emplaceRef.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"emplaceInitializer","package":"druntime","parentType":"","signature":"void emplaceInitializer(T)(scope  ref  T chunk) if (!is(T ==  const)  && !is(T ==  immutable)  && !is(T ==  inout))","url":"/ddoc/druntime/core/internal/lifetime/emplaceInitializer.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"swap","package":"druntime","parentType":"","signature":"void swap(T)(ref  T lhs,  ref  T rhs)","url":"/ddoc/druntime/core/internal/lifetime/swap.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"__doPostblit","package":"druntime","parentType":"","signature":"void __doPostblit(T)(T[]  arr)","url":"/ddoc/druntime/core/internal/lifetime/__doPostblit.html"},{"doc":"","kind":"function","module":"core.internal.lifetime","name":"__doPostblit","package":"druntime","parentType":"","signature":"void __doPostblit(T)(T[]  arr,  ref  size_t i)","url":"/ddoc/druntime/core/internal/lifetime/__doPostblit.html"},{"doc":"This module contains the implementation of move semantics of DIP 1014","kind":"module","module":"core.internal.moving","name":"core.internal.moving","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/moving.html"},{"doc":"Recursively calls the `opPostMove` callbacks of a struct and its members if they're defined.","kind":"function","module":"core.internal.moving","name":"__move_post_blt","package":"druntime","parentType":"","signature":"void __move_post_blt(S)(ref  S newLocation,  ref  S oldLocation) if (is(S ==  struct))","url":"/ddoc/druntime/core/internal/moving/__move_post_blt.html"},{"doc":"","kind":"function","module":"core.internal.moving","name":"__move_post_blt","package":"druntime","parentType":"","signature":"void __move_post_blt(S)(ref  S newLocation,  ref  S oldLocation) if (__traits(isStaticArray,  S))","url":"/ddoc/druntime/core/internal/moving/__move_post_blt.html"},{"doc":"template implementation of associative arrays.","kind":"module","module":"core.internal.newaa","name":"core.internal.newaa","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/newaa.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_refAA","package":"druntime","parentType":"","signature":"ref _refAA(K,  V)(ref  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_refAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_toAA","package":"druntime","parentType":"","signature":"auto _toAA(K,  V)(const  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_toAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_toAA","package":"druntime","parentType":"","signature":"auto _toAA(K,  V)(inout  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_toAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_toAA","package":"druntime","parentType":"","signature":"auto _toAA(K,  V)(shared  const  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_toAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_toAA","package":"druntime","parentType":"","signature":"auto _toAA(K,  V)(shared  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_toAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_toAA","package":"druntime","parentType":"","signature":"auto _toAA(K,  V)(immutable  V[K]  aa)","url":"/ddoc/druntime/core/internal/newaa/_toAA.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"compat_key","package":"druntime","parentType":"","signature":"ref compat_key(K,  K2)(ref  K2 key)","url":"/ddoc/druntime/core/internal/newaa/compat_key.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaMove","package":"druntime","parentType":"","signature":"void _aaMove(V)(ref  V src,  ref  V dst)","url":"/ddoc/druntime/core/internal/newaa/_aaMove.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_newEntry","package":"druntime","parentType":"","signature":"Entry!(K,  V) * _newEntry(K,  V)(ref  K key,  auto  ref  V value)","url":"/ddoc/druntime/core/internal/newaa/_newEntry.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_newEntry","package":"druntime","parentType":"","signature":"Entry!(K,  V) * _newEntry(K,  V,  K2)(ref  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_newEntry.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"talign","package":"druntime","parentType":"","signature":"size_t talign(size_t tsize,  size_t algn)","url":"/ddoc/druntime/core/internal/newaa/talign.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"mix","package":"druntime","parentType":"","signature":"size_t mix(size_t h)","url":"/ddoc/druntime/core/internal/newaa/mix.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"nextpow2","package":"druntime","parentType":"","signature":"size_t nextpow2(const  size_t n)","url":"/ddoc/druntime/core/internal/newaa/nextpow2.html"},{"doc":"Allocate associative array data. Called for `new SomeAA` expression. Returns: A new associative array. Note: not supported in CTFE","kind":"function","module":"core.internal.newaa","name":"_d_aaNew","package":"druntime","parentType":"","signature":"V[K] _d_aaNew(K,  V)()","url":"/ddoc/druntime/core/internal/newaa/_d_aaNew.html"},{"doc":"Determine number of entries in associative array. Note: emulated by the compiler during CTFE","kind":"function","module":"core.internal.newaa","name":"_d_aaLen","package":"druntime","parentType":"","signature":"size_t _d_aaLen(K,  V)(inout  V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_d_aaLen.html"},{"doc":"Lookup key in aa. Called only from implementation of (aa[key]) expressions when value is mutable. Params: aa = associative array key = reference to...","kind":"function","module":"core.internal.newaa","name":"_d_aaGetY","package":"druntime","parentType":"","signature":"V * _d_aaGetY(K,  V,  T :  V1[K1],  K1,  V1,  K2)(auto  ref  scope  T aa,  auto  ref  K2 key,  out  bool  found)","url":"/ddoc/druntime/core/internal/newaa/_d_aaGetY.html"},{"doc":"Lookup key in aa. Called only from implementation of require, update and _d_aaGetY Params: a = associative array key = reference to the key value f...","kind":"function","module":"core.internal.newaa","name":"_aaGetX","package":"druntime","parentType":"","signature":"V * _aaGetX(K,  V,  K2,  V2)(auto  ref  scope  V[K]  a,  auto  ref  K2 key,  out  bool  found,  lazy  V2 v2)","url":"/ddoc/druntime/core/internal/newaa/_aaGetX.html"},{"doc":"Lookup key in aa. Called only from implementation of (aa[key]) expressions when value is not mutable. Params: aa = associative array key = key valu...","kind":"function","module":"core.internal.newaa","name":"_d_aaGetRvalueX","package":"druntime","parentType":"","signature":"auto _d_aaGetRvalueX(K,  V,  K2)(inout  V[K]  aa,  auto  ref  scope  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaGetRvalueX.html"},{"doc":"ditto","kind":"function","module":"core.internal.newaa","name":"_d_aaGetRvalueX","package":"druntime","parentType":"","signature":"auto _d_aaGetRvalueX(K,  V,  K2)(shared(V[K])  aa,  auto  ref  scope  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaGetRvalueX.html"},{"doc":"ditto","kind":"function","module":"core.internal.newaa","name":"_d_aaGetRvalueX","package":"druntime","parentType":"","signature":"auto _d_aaGetRvalueX(K,  V,  K2)(shared  const(V[K])  aa,  auto  ref  scope  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaGetRvalueX.html"},{"doc":"ditto","kind":"function","module":"core.internal.newaa","name":"_d_aaGetRvalueX","package":"druntime","parentType":"","signature":"auto _d_aaGetRvalueX(K,  V,  K2)(immutable(V[K])  aa,  auto  ref  scope  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaGetRvalueX.html"},{"doc":"Creates a new associative array of the same size and copies the contents of the associative array into it. Params: a =     The associative array.","kind":"function","module":"core.internal.newaa","name":"_aaDup","package":"druntime","parentType":"","signature":"auto _aaDup(T :  V[K],  K,  V)(T a)","url":"/ddoc/druntime/core/internal/newaa/_aaDup.html"},{"doc":"Lookup key in aa. Called only from implementation of (key in aa) expressions. Params: a = associative array opaque pointer key = reference to the k...","kind":"function","module":"core.internal.newaa","name":"_d_aaIn","package":"druntime","parentType":"","signature":"auto _d_aaIn(T :  V[K],  K,  V,  K2)(inout  T a,  auto  ref  scope  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaIn.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"gc_inFinalizer","package":"druntime","parentType":"","signature":"bool gc_inFinalizer()","url":"/ddoc/druntime/core/internal/newaa/gc_inFinalizer.html"},{"doc":"Delete entry scope const AA, return true if it was present","kind":"function","module":"core.internal.newaa","name":"_d_aaDel","package":"druntime","parentType":"","signature":"auto _d_aaDel(T :  V[K],  K,  V,  K2)(T a,  auto  ref  K2 key)","url":"/ddoc/druntime/core/internal/newaa/_d_aaDel.html"},{"doc":"Remove all elements from AA.","kind":"function","module":"core.internal.newaa","name":"_aaClear","package":"druntime","parentType":"","signature":"void _aaClear(K,  V)(V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_aaClear.html"},{"doc":"Rehash AA","kind":"function","module":"core.internal.newaa","name":"_aaRehash","package":"druntime","parentType":"","signature":"V[K] _aaRehash(K,  V)(V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_aaRehash.html"},{"doc":"Return a GC allocated array of all values","kind":"function","module":"core.internal.newaa","name":"_aaValues","package":"druntime","parentType":"","signature":"auto _aaValues(K,  V)(inout  V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_aaValues.html"},{"doc":"Return a GC allocated array of all keys","kind":"function","module":"core.internal.newaa","name":"_aaKeys","package":"druntime","parentType":"","signature":"auto _aaKeys(K,  V)(inout  V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_aaKeys.html"},{"doc":"foreach opApply over all values Note: emulated by the compiler during CTFE","kind":"function","module":"core.internal.newaa","name":"_d_aaApply","package":"druntime","parentType":"","signature":"int _d_aaApply(K,  V,  DG)(inout  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply","package":"druntime","parentType":"","signature":"int _d_aaApply(K,  V,  DG)(shared  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply","package":"druntime","parentType":"","signature":"int _d_aaApply(K,  V,  DG)(shared  const  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply","package":"druntime","parentType":"","signature":"int _d_aaApply(K,  V,  DG)(immutable  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply.html"},{"doc":"foreach opApply over all key/value pairs Note: emulated by the compiler during CTFE","kind":"function","module":"core.internal.newaa","name":"_d_aaApply2","package":"druntime","parentType":"","signature":"int _d_aaApply2(K,  V,  DG)(inout  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply2.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply2","package":"druntime","parentType":"","signature":"int _d_aaApply2(K,  V,  DG)(shared  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply2.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply2","package":"druntime","parentType":"","signature":"int _d_aaApply2(K,  V,  DG)(shared  const  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply2.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_d_aaApply2","package":"druntime","parentType":"","signature":"int _d_aaApply2(K,  V,  DG)(immutable  V[K]  a,  DG dg)","url":"/ddoc/druntime/core/internal/newaa/_d_aaApply2.html"},{"doc":"Construct an associative array of type ti from corresponding keys and values. Called for an AA literal `[k1:v1, k2:v2]`. Params: keys = array of ke...","kind":"function","module":"core.internal.newaa","name":"_d_assocarrayliteralTX","package":"druntime","parentType":"","signature":"Impl!(K,  V) * _d_assocarrayliteralTX(K,  V)(K[]  keys,  V[]  vals)","url":"/ddoc/druntime/core/internal/newaa/_d_assocarrayliteralTX.html"},{"doc":"compares 2 AAs for equality","kind":"function","module":"core.internal.newaa","name":"_aaEqual","package":"druntime","parentType":"","signature":"bool _aaEqual(T :  AA!(K,  V),  K,  V)(scope  T aa1,  scope  T aa2)","url":"/ddoc/druntime/core/internal/newaa/_aaEqual.html"},{"doc":"compares 2 AAs for equality (compiler hook)","kind":"function","module":"core.internal.newaa","name":"_d_aaEqual","package":"druntime","parentType":"","signature":"bool _d_aaEqual(K,  V)(scope  const  V[K]  a1,  scope  const  V[K]  a2)","url":"/ddoc/druntime/core/internal/newaa/_d_aaEqual.html"},{"doc":"callback from TypeInfo_AssociativeArray.equals (ignore const for now)","kind":"function","module":"core.internal.newaa","name":"_aaOpEqual","package":"druntime","parentType":"","signature":"bool _aaOpEqual(K,  V)(scope /* const */  AA!(K,  V) *  aa1,  scope /* const */  AA!(K,  V) *  aa2)","url":"/ddoc/druntime/core/internal/newaa/_aaOpEqual.html"},{"doc":"compute a hash callback from TypeInfo_AssociativeArray.xtoHash (ignore scope const for now)","kind":"function","module":"core.internal.newaa","name":"_aaGetHash","package":"druntime","parentType":"","signature":"hash_t _aaGetHash(K,  V)(/* scope const */  AA!(K,  V) *  paa)","url":"/ddoc/druntime/core/internal/newaa/_aaGetHash.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaRange","package":"druntime","parentType":"","signature":"AARange!(K,  V) _aaRange(K,  V)(V[K]  a)","url":"/ddoc/druntime/core/internal/newaa/_aaRange.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaRangeEmpty","package":"druntime","parentType":"","signature":"bool _aaRangeEmpty(K,  V)(AARange!(K,  V)  r)","url":"/ddoc/druntime/core/internal/newaa/_aaRangeEmpty.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaRangeFrontKey","package":"druntime","parentType":"","signature":"K * _aaRangeFrontKey(K,  V)(AARange!(K,  V)  r)","url":"/ddoc/druntime/core/internal/newaa/_aaRangeFrontKey.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaRangeFrontValue","package":"druntime","parentType":"","signature":"V * _aaRangeFrontValue(K,  V)(AARange!(K,  V)  r)","url":"/ddoc/druntime/core/internal/newaa/_aaRangeFrontValue.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"_aaRangePopFront","package":"druntime","parentType":"","signature":"void _aaRangePopFront(K,  V)(ref  AARange!(K,  V)  r)","url":"/ddoc/druntime/core/internal/newaa/_aaRangePopFront.html"},{"doc":"","kind":"function","module":"core.internal.newaa","name":"makeAA","package":"druntime","parentType":"","signature":"AA!(K,  V) makeAA(K,  V)(V[K]  src)","url":"/ddoc/druntime/core/internal/newaa/makeAA.html"},{"doc":"AA wrapper","kind":"struct","module":"core.internal.newaa","name":"AA","package":"druntime","parentType":"","signature":"AA(K,  V)","url":"/ddoc/druntime/core/internal/newaa.html#AA"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"empty","package":"druntime","parentType":"AA","signature":"bool empty()","url":"/ddoc/druntime/core/internal/newaa/AA.empty.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"length","package":"druntime","parentType":"AA","signature":"size_t length()","url":"/ddoc/druntime/core/internal/newaa/AA.length.html"},{"doc":"","kind":"struct","module":"core.internal.newaa","name":"Entry","package":"druntime","parentType":"","signature":"Entry(K,  V)","url":"/ddoc/druntime/core/internal/newaa.html#Entry"},{"doc":"","kind":"struct","module":"core.internal.newaa","name":"Impl","package":"druntime","parentType":"","signature":"Impl(K,  V)","url":"/ddoc/druntime/core/internal/newaa.html#Impl"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"length","package":"druntime","parentType":"Impl","signature":"size_t length()","url":"/ddoc/druntime/core/internal/newaa/Impl.length.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"dim","package":"druntime","parentType":"Impl","signature":"size_t dim()","url":"/ddoc/druntime/core/internal/newaa/Impl.dim.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"mask","package":"druntime","parentType":"Impl","signature":"size_t mask()","url":"/ddoc/druntime/core/internal/newaa/Impl.mask.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"findSlotInsert","package":"druntime","parentType":"Impl","signature":"size_t findSlotInsert(size_t hash)","url":"/ddoc/druntime/core/internal/newaa/Impl.findSlotInsert.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"findSlotLookup","package":"druntime","parentType":"Impl","signature":"inout(Bucket) * findSlotLookup(K2)(size_t hash,  scope  ref  const  K2 key)","url":"/ddoc/druntime/core/internal/newaa/Impl.findSlotLookup.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"grow","package":"druntime","parentType":"Impl","signature":"void grow()","url":"/ddoc/druntime/core/internal/newaa/Impl.grow.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"shrink","package":"druntime","parentType":"Impl","signature":"void shrink()","url":"/ddoc/druntime/core/internal/newaa/Impl.shrink.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"resize","package":"druntime","parentType":"Impl","signature":"void resize(size_t ndim)","url":"/ddoc/druntime/core/internal/newaa/Impl.resize.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"clear","package":"druntime","parentType":"Impl","signature":"void clear()","url":"/ddoc/druntime/core/internal/newaa/Impl.clear.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"calcHash","package":"druntime","parentType":"Impl","signature":"size_t calcHash(K2)(ref  K2 key)","url":"/ddoc/druntime/core/internal/newaa/Impl.calcHash.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"allocBuckets","package":"druntime","parentType":"Impl","signature":"Bucket[] allocBuckets(size_t dim)","url":"/ddoc/druntime/core/internal/newaa/Impl.allocBuckets.html"},{"doc":"","kind":"struct","module":"core.internal.newaa","name":"Bucket","package":"druntime","parentType":"","signature":"Bucket(K,  V)","url":"/ddoc/druntime/core/internal/newaa.html#Bucket"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"empty","package":"druntime","parentType":"Bucket","signature":"bool empty()","url":"/ddoc/druntime/core/internal/newaa/Bucket.empty.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"deleted","package":"druntime","parentType":"Bucket","signature":"bool deleted()","url":"/ddoc/druntime/core/internal/newaa/Bucket.deleted.html"},{"doc":"","kind":"method","module":"core.internal.newaa","name":"filled","package":"druntime","parentType":"Bucket","signature":"bool filled()","url":"/ddoc/druntime/core/internal/newaa/Bucket.filled.html"},{"doc":"","kind":"struct","module":"core.internal.newaa","name":"_noV2","package":"druntime","parentType":"","signature":"_noV2","url":"/ddoc/druntime/core/internal/newaa.html#_noV2"},{"doc":"_aaRange implements a ForwardRange","kind":"struct","module":"core.internal.newaa","name":"AARange","package":"druntime","parentType":"","signature":"AARange(K,  V)","url":"/ddoc/druntime/core/internal/newaa.html#AARange"},{"doc":"like core.internal.traits.Unconst, but stripping inout, too","kind":"template","module":"core.internal.newaa","name":"Unconstify","package":"druntime","parentType":"","signature":"Unconstify(T :  const  U,  U)","url":"/ddoc/druntime/core/internal/newaa.html#Unconstify"},{"doc":"","kind":"template","module":"core.internal.newaa","name":"pure_hashOf","package":"druntime","parentType":"","signature":"pure_hashOf(K)","url":"/ddoc/druntime/core/internal/newaa.html#pure_hashOf"},{"doc":"","kind":"template","module":"core.internal.newaa","name":"pure_keyEqual","package":"druntime","parentType":"","signature":"pure_keyEqual(K1,  K2 =  K1)","url":"/ddoc/druntime/core/internal/newaa.html#pure_keyEqual"},{"doc":"AA version for debuggers, bump whenever changing the layout","kind":"variable","module":"core.internal.newaa","name":"_aaVersion","package":"druntime","parentType":"","signature":"int _aaVersion","url":"/ddoc/druntime/core/internal/newaa.html#_aaVersion"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"GROW_NUM","package":"druntime","parentType":"","signature":"GROW_NUM","url":"/ddoc/druntime/core/internal/newaa.html#GROW_NUM"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"GROW_DEN","package":"druntime","parentType":"","signature":"GROW_DEN","url":"/ddoc/druntime/core/internal/newaa.html#GROW_DEN"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"SHRINK_NUM","package":"druntime","parentType":"","signature":"SHRINK_NUM","url":"/ddoc/druntime/core/internal/newaa.html#SHRINK_NUM"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"SHRINK_DEN","package":"druntime","parentType":"","signature":"SHRINK_DEN","url":"/ddoc/druntime/core/internal/newaa.html#SHRINK_DEN"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"GROW_FAC","package":"druntime","parentType":"","signature":"GROW_FAC","url":"/ddoc/druntime/core/internal/newaa.html#GROW_FAC"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"INIT_NUM","package":"druntime","parentType":"","signature":"INIT_NUM","url":"/ddoc/druntime/core/internal/newaa.html#INIT_NUM"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"INIT_DEN","package":"druntime","parentType":"","signature":"INIT_DEN","url":"/ddoc/druntime/core/internal/newaa.html#INIT_DEN"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"INIT_NUM_BUCKETS","package":"druntime","parentType":"","signature":"INIT_NUM_BUCKETS","url":"/ddoc/druntime/core/internal/newaa.html#INIT_NUM_BUCKETS"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"HASH_EMPTY","package":"druntime","parentType":"","signature":"HASH_EMPTY","url":"/ddoc/druntime/core/internal/newaa.html#HASH_EMPTY"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"HASH_DELETED","package":"druntime","parentType":"","signature":"HASH_DELETED","url":"/ddoc/druntime/core/internal/newaa.html#HASH_DELETED"},{"doc":"","kind":"variable","module":"core.internal.newaa","name":"HASH_FILLED_MARK","package":"druntime","parentType":"","signature":"HASH_FILLED_MARK","url":"/ddoc/druntime/core/internal/newaa.html#HASH_FILLED_MARK"},{"doc":"parse configuration options","kind":"module","module":"core.internal.parseoptions","name":"core.internal.parseoptions","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/parseoptions.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"rt_args","package":"druntime","parentType":"","signature":"string[] rt_args()","url":"/ddoc/druntime/core/internal/parseoptions/rt_args.html"},{"doc":"initialize members of struct CFG from rt_config options","kind":"function","module":"core.internal.parseoptions","name":"initConfigOptions","package":"druntime","parentType":"","signature":"bool initConfigOptions(CFG)(ref  CFG cfg,  string cfgname)","url":"/ddoc/druntime/core/internal/parseoptions/initConfigOptions.html"},{"doc":"initialize members of struct CFG from a string of sub-options.","kind":"function","module":"core.internal.parseoptions","name":"parseOptions","package":"druntime","parentType":"","signature":"bool parseOptions(CFG)(ref  CFG cfg,  string opt)","url":"/ddoc/druntime/core/internal/parseoptions/parseOptions.html"},{"doc":"Parses an individual option `optname` value from a provided string `str`. The option type is given by the type `T` of the field `res` to which the ...","kind":"function","module":"core.internal.parseoptions","name":"rt_parseOption","package":"druntime","parentType":"","signature":"bool rt_parseOption(T)(const(char)[]  optname,  ref  inout(char)[]  str,  ref  T res,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/rt_parseOption.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"optError","package":"druntime","parentType":"","signature":"bool optError(const  scope  char[]  msg,  const  scope  char[]  name,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/optError.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"skip","package":"druntime","parentType":"","signature":"inout(char)[] skip(alias  pred)(inout(char)[]  str)","url":"/ddoc/druntime/core/internal/parseoptions/skip.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"find","package":"druntime","parentType":"","signature":"inout(char)[] find(alias  pred)(inout(char)[]  str)","url":"/ddoc/druntime/core/internal/parseoptions/find.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parse","package":"druntime","parentType":"","signature":"bool parse(T :  size_t)(const(char)[]  optname,  ref  inout(char)[]  str,  ref  T res,  const(char)[]  errName,  bool  mayHaveSuffix =  false) if (is(T ==  size_t))","url":"/ddoc/druntime/core/internal/parseoptions/parse.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parse","package":"druntime","parentType":"","signature":"bool parse(T :  size_t)(const(char)[]  optname,  ref  inout(char)[]  str,  ref  T res,  const(char)[]  errName,  bool  mayHaveSuffix =  false) if (!is(T ==  size_t))","url":"/ddoc/druntime/core/internal/parseoptions/parse.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parse","package":"druntime","parentType":"","signature":"bool parse(const(char)[]  optname,  ref  inout(char)[]  str,  ref  bool  res,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/parse.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parse","package":"druntime","parentType":"","signature":"bool parse(const(char)[]  optname,  ref  inout(char)[]  str,  ref  float  res,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/parse.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parse","package":"druntime","parentType":"","signature":"bool parse(const(char)[]  optname,  ref  inout(char)[]  str,  ref  inout(char)[]  res,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/parse.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"parseError","package":"druntime","parentType":"","signature":"bool parseError(const  scope  char[]  exp,  const  scope  char[]  opt,  const  scope  char[]  got,  const(char)[]  errName)","url":"/ddoc/druntime/core/internal/parseoptions/parseError.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"overflowedError","package":"druntime","parentType":"","signature":"bool overflowedError(const  scope  char[]  opt,  const  scope  char[]  got)","url":"/ddoc/druntime/core/internal/parseoptions/overflowedError.html"},{"doc":"","kind":"function","module":"core.internal.parseoptions","name":"min","package":"druntime","parentType":"","signature":"size_t min(size_t a,  size_t b)","url":"/ddoc/druntime/core/internal/parseoptions/min.html"},{"doc":"","kind":"alias","module":"core.internal.parseoptions","name":"rt_configCallBack","package":"druntime","parentType":"","signature":"rt_configCallBack = string delegate(string) @nogc nothrow","url":"/ddoc/druntime/core/internal/parseoptions.html#rt_configCallBack"},{"doc":"","kind":"alias","module":"core.internal.parseoptions","name":"fn_configOption","package":"druntime","parentType":"","signature":"fn_configOption = string function(string opt,  scope  rt_configCallBack dg,  bool  reverse) @nogc nothrow","url":"/ddoc/druntime/core/internal/parseoptions.html#fn_configOption"},{"doc":"","kind":"alias","module":"core.internal.parseoptions","name":"rt_configOption","package":"druntime","parentType":"","signature":"rt_configOption = externDFunc!(\"rt.config.rt_configOption\",  fn_configOption)","url":"/ddoc/druntime/core/internal/parseoptions.html#rt_configOption"},{"doc":"UDA for field treated as memory value","kind":"struct","module":"core.internal.parseoptions","name":"MemVal","package":"druntime","parentType":"","signature":"MemVal","url":"/ddoc/druntime/core/internal/parseoptions.html#MemVal"},{"doc":"","kind":"variable","module":"core.internal.parseoptions","name":"rt_envvars_enabled","package":"druntime","parentType":"","signature":"bool rt_envvars_enabled","url":"/ddoc/druntime/core/internal/parseoptions.html#rt_envvars_enabled"},{"doc":"","kind":"variable","module":"core.internal.parseoptions","name":"rt_cmdline_enabled","package":"druntime","parentType":"","signature":"bool rt_cmdline_enabled","url":"/ddoc/druntime/core/internal/parseoptions.html#rt_cmdline_enabled"},{"doc":"","kind":"variable","module":"core.internal.parseoptions","name":"rt_options","package":"druntime","parentType":"","signature":"string[] rt_options","url":"/ddoc/druntime/core/internal/parseoptions.html#rt_options"},{"doc":"This module contains support for D's postblit feature","kind":"module","module":"core.internal.postblit","name":"core.internal.postblit","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/postblit.html"},{"doc":"","kind":"function","module":"core.internal.postblit","name":"__ArrayPostblit","package":"druntime","parentType":"","signature":"void __ArrayPostblit(T)(T[]  a)","url":"/ddoc/druntime/core/internal/postblit/__ArrayPostblit.html"},{"doc":"","kind":"function","module":"core.internal.postblit","name":"postblitRecurse","package":"druntime","parentType":"","signature":"void postblitRecurse(S)(ref  S s) if (is(S ==  struct))","url":"/ddoc/druntime/core/internal/postblit/postblitRecurse.html"},{"doc":"","kind":"function","module":"core.internal.postblit","name":"postblitRecurse","package":"druntime","parentType":"","signature":"void postblitRecurse(E,  size_t n)(ref  E[n]  arr)","url":"/ddoc/druntime/core/internal/postblit/postblitRecurse.html"},{"doc":"This is a public domain version of qsort.d.  All it does is call C's qsort().","kind":"module","module":"core.internal.qsort","name":"core.internal.qsort","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/qsort.html"},{"doc":"SpinLock for runtime internal usage.","kind":"module","module":"core.internal.spinlock","name":"core.internal.spinlock","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/spinlock.html"},{"doc":"","kind":"struct","module":"core.internal.spinlock","name":"SpinLock","package":"druntime","parentType":"","signature":"SpinLock","url":"/ddoc/druntime/core/internal/spinlock.html#SpinLock"},{"doc":"","kind":"method","module":"core.internal.spinlock","name":"lock","package":"druntime","parentType":"SpinLock","signature":"void lock()","url":"/ddoc/druntime/core/internal/spinlock/SpinLock.lock.html"},{"doc":"","kind":"method","module":"core.internal.spinlock","name":"unlock","package":"druntime","parentType":"SpinLock","signature":"void unlock()","url":"/ddoc/druntime/core/internal/spinlock/SpinLock.unlock.html"},{"doc":"yield with backoff","kind":"method","module":"core.internal.spinlock","name":"yield","package":"druntime","parentType":"SpinLock","signature":"void yield(size_t k)","url":"/ddoc/druntime/core/internal/spinlock/SpinLock.yield.html"},{"doc":"","kind":"struct","module":"core.internal.spinlock","name":"AlignedSpinLock","package":"druntime","parentType":"","signature":"AlignedSpinLock","url":"/ddoc/druntime/core/internal/spinlock.html#AlignedSpinLock"},{"doc":"String manipulation and comparison utilities.","kind":"module","module":"core.internal.string","name":"core.internal.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/string.html"},{"doc":"Converts an unsigned integer value to a string of characters.","kind":"function","module":"core.internal.string","name":"unsignedToTempString","package":"druntime","parentType":"","signature":"T[] unsignedToTempString(uint  radix =  10,  bool  upperCase =  false,  T)(ulong  value,  return  scope  T[]  buf) if (radix >=  2 &&  radix <=  36 &&\n    (is(T ==  char)  ||  is(T ==  wchar)  ||  is(T ==  dchar)))","url":"/ddoc/druntime/core/internal/string/unsignedToTempString.html"},{"doc":"Converts an unsigned integer value to a string of characters.","kind":"function","module":"core.internal.string","name":"unsignedToTempString","package":"druntime","parentType":"","signature":"auto unsignedToTempString(uint  radix =  10)(ulong  value)","url":"/ddoc/druntime/core/internal/string/unsignedToTempString.html"},{"doc":"","kind":"function","module":"core.internal.string","name":"signedToTempString","package":"druntime","parentType":"","signature":"T[] signedToTempString(uint  radix =  10,  bool  upperCase =  false,  T)(long  value,  return  scope  T[]  buf)","url":"/ddoc/druntime/core/internal/string/signedToTempString.html"},{"doc":"","kind":"function","module":"core.internal.string","name":"signedToTempString","package":"druntime","parentType":"","signature":"auto signedToTempString(uint  radix =  10)(long  value)","url":"/ddoc/druntime/core/internal/string/signedToTempString.html"},{"doc":"Determine number of digits that will result from a conversion of value to a string. Params: value = number to convert radix = radix Returns: number...","kind":"function","module":"core.internal.string","name":"numDigits","package":"druntime","parentType":"","signature":"int numDigits(uint  radix =  10)(ulong  value) if (radix >=  2 &&  radix <=  36)","url":"/ddoc/druntime/core/internal/string/numDigits.html"},{"doc":"","kind":"function","module":"core.internal.string","name":"dstrcmp","package":"druntime","parentType":"","signature":"int dstrcmp()(  scope  const  char[]  s1,  scope  const  char[]  s2 )","url":"/ddoc/druntime/core/internal/string/dstrcmp.html"},{"doc":"","kind":"alias","module":"core.internal.string","name":"UnsignedStringBuf","package":"druntime","parentType":"","signature":"UnsignedStringBuf = char[64]","url":"/ddoc/druntime/core/internal/string.html#UnsignedStringBuf"},{"doc":"","kind":"struct","module":"core.internal.string","name":"TempStringNoAlloc","package":"druntime","parentType":"","signature":"TempStringNoAlloc(ubyte  N)","url":"/ddoc/druntime/core/internal/string.html#TempStringNoAlloc"},{"doc":"","kind":"method","module":"core.internal.string","name":"get","package":"druntime","parentType":"TempStringNoAlloc","signature":"inout(char)[] get()","url":"/ddoc/druntime/core/internal/string/TempStringNoAlloc.get.html"},{"doc":"","kind":"alias","module":"core.internal.string","name":"SignedStringBuf","package":"druntime","parentType":"","signature":"SignedStringBuf = char[65]","url":"/ddoc/druntime/core/internal/string.html#SignedStringBuf"},{"doc":"This module contains compiler support for switch...case statements","kind":"module","module":"core.internal.switch_","name":"core.internal.switch_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/switch_.html"},{"doc":"Support for switch statements switching on strings. Params: caseLabels = sorted array of strings generated by compiler. Note the strings are sorted...","kind":"function","module":"core.internal.switch_","name":"__switch","package":"druntime","parentType":"","signature":"int __switch(T,  caseLabels...)(/*in*/  const  scope  T[]  condition)","url":"/ddoc/druntime/core/internal/switch_/__switch.html"},{"doc":"","kind":"function","module":"core.internal.switch_","name":"__switchSearch","package":"druntime","parentType":"","signature":"int __switchSearch(T)(/*in*/  const  scope  T[][]  cases, /*in*/  const  scope  T[]  condition)","url":"/ddoc/druntime/core/internal/switch_/__switchSearch.html"},{"doc":"Compiler lowers final switch default case to this (which is a runtime error) Old implementation is in core/exception.d","kind":"function","module":"core.internal.switch_","name":"__switch_error","package":"druntime","parentType":"","signature":"void __switch_error()(string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/druntime/core/internal/switch_/__switch_error.html"},{"doc":"Contains traits for runtime internal usage.","kind":"module","module":"core.internal.traits","name":"core.internal.traits","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/traits.html"},{"doc":"","kind":"function","module":"core.internal.traits","name":"trustedCast","package":"druntime","parentType":"","signature":"T trustedCast(T,  U)(auto  ref  U u)","url":"/ddoc/druntime/core/internal/traits/trustedCast.html"},{"doc":"","kind":"function","module":"core.internal.traits","name":"rvalueOf","package":"druntime","parentType":"","signature":"T rvalueOf(T)(T val)","url":"/ddoc/druntime/core/internal/traits/rvalueOf.html"},{"doc":"","kind":"function","module":"core.internal.traits","name":"rvalueOf","package":"druntime","parentType":"","signature":"T rvalueOf(T)(inout  __InoutWorkaroundStruct =  __InoutWorkaroundStruct.init)","url":"/ddoc/druntime/core/internal/traits/rvalueOf.html"},{"doc":"","kind":"function","module":"core.internal.traits","name":"lvalueOf","package":"druntime","parentType":"","signature":"T lvalueOf(T)(inout  __InoutWorkaroundStruct =  __InoutWorkaroundStruct.init)","url":"/ddoc/druntime/core/internal/traits/lvalueOf.html"},{"doc":"","kind":"function","module":"core.internal.traits","name":"hasDtor","package":"druntime","parentType":"","signature":"bool hasDtor(string[]  members)","url":"/ddoc/druntime/core/internal/traits/hasDtor.html"},{"doc":"","kind":"alias","module":"core.internal.traits","name":"AliasSeq","package":"druntime","parentType":"","signature":"AliasSeq(TList...) = TList","url":"/ddoc/druntime/core/internal/traits.html#AliasSeq"},{"doc":"","kind":"alias","module":"core.internal.traits","name":"Unconst","package":"druntime","parentType":"","signature":"Unconst(T :  const  U,  U) = U","url":"/ddoc/druntime/core/internal/traits.html#Unconst"},{"doc":"","kind":"struct","module":"core.internal.traits","name":"__InoutWorkaroundStruct","package":"druntime","parentType":"","signature":"__InoutWorkaroundStruct","url":"/ddoc/druntime/core/internal/traits.html#__InoutWorkaroundStruct"},{"doc":"","kind":"template","module":"core.internal.traits","name":"Fields","package":"druntime","parentType":"","signature":"Fields(T)","url":"/ddoc/druntime/core/internal/traits.html#Fields"},{"doc":"taken from std.traits.Unqual","kind":"template","module":"core.internal.traits","name":"Unqual","package":"druntime","parentType":"","signature":"Unqual(T :  const  U,  U)","url":"/ddoc/druntime/core/internal/traits.html#Unqual"},{"doc":"","kind":"template","module":"core.internal.traits","name":"BaseElemOf","package":"druntime","parentType":"","signature":"BaseElemOf(T)","url":"/ddoc/druntime/core/internal/traits.html#BaseElemOf"},{"doc":"","kind":"template","module":"core.internal.traits","name":"ModifyTypePreservingTQ","package":"druntime","parentType":"","signature":"ModifyTypePreservingTQ(alias  Modifier,  T)","url":"/ddoc/druntime/core/internal/traits.html#ModifyTypePreservingTQ"},{"doc":"","kind":"template","module":"core.internal.traits","name":"substInout","package":"druntime","parentType":"","signature":"substInout(T)","url":"/ddoc/druntime/core/internal/traits.html#substInout"},{"doc":"","kind":"template","module":"core.internal.traits","name":"substInoutForm","package":"druntime","parentType":"","signature":"substInoutForm(T)","url":"/ddoc/druntime/core/internal/traits.html#substInoutForm"},{"doc":"used to declare an extern(D) function that is defined in a different module","kind":"template","module":"core.internal.traits","name":"externDFunc","package":"druntime","parentType":"","signature":"externDFunc(string fqn,  T: FT *,  FT)","url":"/ddoc/druntime/core/internal/traits.html#externDFunc"},{"doc":"","kind":"template","module":"core.internal.traits","name":"staticIota","package":"druntime","parentType":"","signature":"staticIota(int  beg,  int  end)","url":"/ddoc/druntime/core/internal/traits.html#staticIota"},{"doc":"","kind":"template","module":"core.internal.traits","name":"isAssignable","package":"druntime","parentType":"","signature":"isAssignable(Lhs,  Rhs =  Lhs)","url":"/ddoc/druntime/core/internal/traits.html#isAssignable"},{"doc":"","kind":"template","module":"core.internal.traits","name":"isInnerClass","package":"druntime","parentType":"","signature":"isInnerClass(T)","url":"/ddoc/druntime/core/internal/traits.html#isInnerClass"},{"doc":"","kind":"template","module":"core.internal.traits","name":"dtorIsNothrow","package":"druntime","parentType":"","signature":"dtorIsNothrow(T)","url":"/ddoc/druntime/core/internal/traits.html#dtorIsNothrow"},{"doc":"","kind":"template","module":"core.internal.traits","name":"allSatisfy","package":"druntime","parentType":"","signature":"allSatisfy(alias  F,  T...)","url":"/ddoc/druntime/core/internal/traits.html#allSatisfy"},{"doc":"","kind":"template","module":"core.internal.traits","name":"anySatisfy","package":"druntime","parentType":"","signature":"anySatisfy(alias  F,  Ts...)","url":"/ddoc/druntime/core/internal/traits.html#anySatisfy"},{"doc":"","kind":"template","module":"core.internal.traits","name":"maxAlignment","package":"druntime","parentType":"","signature":"maxAlignment(Ts...)","url":"/ddoc/druntime/core/internal/traits.html#maxAlignment"},{"doc":"","kind":"template","module":"core.internal.traits","name":"classInstanceAlignment","package":"druntime","parentType":"","signature":"classInstanceAlignment(T)","url":"/ddoc/druntime/core/internal/traits.html#classInstanceAlignment"},{"doc":"See $(REF hasElaborateMove, std,traits)","kind":"template","module":"core.internal.traits","name":"hasElaborateMove","package":"druntime","parentType":"","signature":"hasElaborateMove(S)","url":"/ddoc/druntime/core/internal/traits.html#hasElaborateMove"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasElaborateDestructor","package":"druntime","parentType":"","signature":"hasElaborateDestructor(S)","url":"/ddoc/druntime/core/internal/traits.html#hasElaborateDestructor"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasElaborateCopyConstructor","package":"druntime","parentType":"","signature":"hasElaborateCopyConstructor(S)","url":"/ddoc/druntime/core/internal/traits.html#hasElaborateCopyConstructor"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasElaborateAssign","package":"druntime","parentType":"","signature":"hasElaborateAssign(S)","url":"/ddoc/druntime/core/internal/traits.html#hasElaborateAssign"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasIndirections","package":"druntime","parentType":"","signature":"hasIndirections(T)","url":"/ddoc/druntime/core/internal/traits.html#hasIndirections"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasUnsharedIndirections","package":"druntime","parentType":"","signature":"hasUnsharedIndirections(T)","url":"/ddoc/druntime/core/internal/traits.html#hasUnsharedIndirections"},{"doc":"","kind":"template","module":"core.internal.traits","name":"OriginalType","package":"druntime","parentType":"","signature":"OriginalType(T)","url":"/ddoc/druntime/core/internal/traits.html#OriginalType"},{"doc":"","kind":"template","module":"core.internal.traits","name":"DynamicArrayTypeOf","package":"druntime","parentType":"","signature":"DynamicArrayTypeOf(T)","url":"/ddoc/druntime/core/internal/traits.html#DynamicArrayTypeOf"},{"doc":"","kind":"template","module":"core.internal.traits","name":"AliasThisTypeOf","package":"druntime","parentType":"","signature":"AliasThisTypeOf(T)","url":"/ddoc/druntime/core/internal/traits.html#AliasThisTypeOf"},{"doc":"","kind":"template","module":"core.internal.traits","name":"isFunctionPointer","package":"druntime","parentType":"","signature":"isFunctionPointer(T...)","url":"/ddoc/druntime/core/internal/traits.html#isFunctionPointer"},{"doc":"","kind":"template","module":"core.internal.traits","name":"isDelegate","package":"druntime","parentType":"","signature":"isDelegate(T...)","url":"/ddoc/druntime/core/internal/traits.html#isDelegate"},{"doc":"","kind":"template","module":"core.internal.traits","name":"Filter","package":"druntime","parentType":"","signature":"Filter(alias  pred,  TList...)","url":"/ddoc/druntime/core/internal/traits.html#Filter"},{"doc":"","kind":"template","module":"core.internal.traits","name":"staticMap","package":"druntime","parentType":"","signature":"staticMap(alias  F,  T...)","url":"/ddoc/druntime/core/internal/traits.html#staticMap"},{"doc":"","kind":"template","module":"core.internal.traits","name":"FunctionTypeOf","package":"druntime","parentType":"","signature":"FunctionTypeOf(func...)","url":"/ddoc/druntime/core/internal/traits.html#FunctionTypeOf"},{"doc":"","kind":"template","module":"core.internal.traits","name":"ReturnType","package":"druntime","parentType":"","signature":"ReturnType(func...)","url":"/ddoc/druntime/core/internal/traits.html#ReturnType"},{"doc":"","kind":"template","module":"core.internal.traits","name":"Parameters","package":"druntime","parentType":"","signature":"Parameters(func...)","url":"/ddoc/druntime/core/internal/traits.html#Parameters"},{"doc":"","kind":"template","module":"core.internal.traits","name":"hasUDA","package":"druntime","parentType":"","signature":"hasUDA(alias  symbol,  alias  attribute)","url":"/ddoc/druntime/core/internal/traits.html#hasUDA"},{"doc":"","kind":"variable","module":"core.internal.traits","name":"isAggregateType","package":"druntime","parentType":"","signature":"bool isAggregateType","url":"/ddoc/druntime/core/internal/traits.html#isAggregateType"},{"doc":"","kind":"variable","module":"core.internal.traits","name":"isPointer","package":"druntime","parentType":"","signature":"bool isPointer","url":"/ddoc/druntime/core/internal/traits.html#isPointer"},{"doc":"","kind":"variable","module":"core.internal.traits","name":"isDynamicArray","package":"druntime","parentType":"","signature":"bool isDynamicArray","url":"/ddoc/druntime/core/internal/traits.html#isDynamicArray"},{"doc":"Encode and decode UTF-8, UTF-16 and UTF-32 strings.","kind":"module","module":"core.internal.utf","name":"core.internal.utf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/utf.html"},{"doc":"","kind":"function","module":"core.internal.utf","name":"onUnicodeError","package":"druntime","parentType":"","signature":"void onUnicodeError(  string msg,  size_t idx,  string file =  __FILE__,  size_t line =  __LINE__ )","url":"/ddoc/druntime/core/internal/utf/onUnicodeError.html"},{"doc":"Test if c is a valid UTF-32 character.","kind":"function","module":"core.internal.utf","name":"isValidDchar","package":"druntime","parentType":"","signature":"bool isValidDchar(dchar  c)","url":"/ddoc/druntime/core/internal/utf/isValidDchar.html"},{"doc":"stride() returns the length of a UTF-8 sequence starting at index i in string s. Returns: The number of bytes in the UTF-8 sequence or 0xFF meaning...","kind":"function","module":"core.internal.utf","name":"stride","package":"druntime","parentType":"","signature":"uint stride(const  scope  char[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/stride.html"},{"doc":"stride() returns the length of a UTF-16 sequence starting at index i in string s.","kind":"function","module":"core.internal.utf","name":"stride","package":"druntime","parentType":"","signature":"uint stride(const  scope  wchar[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/stride.html"},{"doc":"stride() returns the length of a UTF-32 sequence starting at index i in string s. Returns: The return value will always be 1.","kind":"function","module":"core.internal.utf","name":"stride","package":"druntime","parentType":"","signature":"uint stride(const  scope  dchar[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/stride.html"},{"doc":"Given an index i into an array of characters s[], and assuming that index i is at the start of a UTF character, determine the number of UCS charact...","kind":"function","module":"core.internal.utf","name":"toUCSindex","package":"druntime","parentType":"","signature":"size_t toUCSindex(const  scope  char[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/toUCSindex.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUCSindex","package":"druntime","parentType":"","signature":"size_t toUCSindex(const  scope  wchar[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/toUCSindex.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUCSindex","package":"druntime","parentType":"","signature":"size_t toUCSindex(const  scope  dchar[]  s,  size_t i)","url":"/ddoc/druntime/core/internal/utf/toUCSindex.html"},{"doc":"Given a UCS index n into an array of characters s[], return the UTF index.","kind":"function","module":"core.internal.utf","name":"toUTFindex","package":"druntime","parentType":"","signature":"size_t toUTFindex(const  scope  char[]  s,  size_t n)","url":"/ddoc/druntime/core/internal/utf/toUTFindex.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTFindex","package":"druntime","parentType":"","signature":"size_t toUTFindex(const  scope  wchar[]  s,  size_t n)","url":"/ddoc/druntime/core/internal/utf/toUTFindex.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTFindex","package":"druntime","parentType":"","signature":"size_t toUTFindex(const  scope  dchar[]  s,  size_t n)","url":"/ddoc/druntime/core/internal/utf/toUTFindex.html"},{"doc":"Decodes and returns character starting at s[idx]. idx is advanced past the decoded character. If the character is not well formed, a UtfException i...","kind":"function","module":"core.internal.utf","name":"decode","package":"druntime","parentType":"","signature":"dchar decode(const  scope  char[]  s,  ref  size_t idx)","url":"/ddoc/druntime/core/internal/utf/decode.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"decode","package":"druntime","parentType":"","signature":"dchar decode(const  scope  wchar[]  s,  ref  size_t idx)","url":"/ddoc/druntime/core/internal/utf/decode.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"decode","package":"druntime","parentType":"","signature":"dchar decode(const  scope  dchar[]  s,  ref  size_t idx)","url":"/ddoc/druntime/core/internal/utf/decode.html"},{"doc":"Encodes character c and appends it to array s[].","kind":"function","module":"core.internal.utf","name":"encode","package":"druntime","parentType":"","signature":"void encode(ref  char[]  s,  dchar  c)","url":"/ddoc/druntime/core/internal/utf/encode.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"encode","package":"druntime","parentType":"","signature":"void encode(ref  wchar[]  s,  dchar  c)","url":"/ddoc/druntime/core/internal/utf/encode.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"encode","package":"druntime","parentType":"","signature":"void encode(ref  dchar[]  s,  dchar  c)","url":"/ddoc/druntime/core/internal/utf/encode.html"},{"doc":"Returns the code length of $(D c) in the encoding using $(D C) as a code point. The code is returned in character count, not in bytes.","kind":"function","module":"core.internal.utf","name":"codeLength","package":"druntime","parentType":"","signature":"ubyte codeLength(C)(dchar  c)","url":"/ddoc/druntime/core/internal/utf/codeLength.html"},{"doc":"Checks to see if string is well formed or not. $(D S) can be an array of $(D char), $(D wchar), or $(D dchar). Returns $(D false) if it is not. Use...","kind":"function","module":"core.internal.utf","name":"isValidString","package":"druntime","parentType":"","signature":"bool isValidString(S)(const  scope  S s)","url":"/ddoc/druntime/core/internal/utf/isValidString.html"},{"doc":"","kind":"function","module":"core.internal.utf","name":"toUTF8","package":"druntime","parentType":"","signature":"char[] toUTF8(return  scope  char[]  buf,  dchar  c)","url":"/ddoc/druntime/core/internal/utf/toUTF8.html"},{"doc":"Encodes string s into UTF-8 and returns the encoded string.","kind":"function","module":"core.internal.utf","name":"toUTF8","package":"druntime","parentType":"","signature":"string toUTF8(return  scope  string s)","url":"/ddoc/druntime/core/internal/utf/toUTF8.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF8","package":"druntime","parentType":"","signature":"string toUTF8(const  scope  wchar[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF8.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF8","package":"druntime","parentType":"","signature":"string toUTF8(const  scope  dchar[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF8.html"},{"doc":"","kind":"function","module":"core.internal.utf","name":"toUTF16","package":"druntime","parentType":"","signature":"wchar[] toUTF16(return  scope  wchar[]  buf,  dchar  c)","url":"/ddoc/druntime/core/internal/utf/toUTF16.html"},{"doc":"Encodes string s into UTF-16 and returns the encoded string. toUTF16z() is suitable for calling the 'W' functions in the Win32 API that take an LPW...","kind":"function","module":"core.internal.utf","name":"toUTF16","package":"druntime","parentType":"","signature":"wstring toUTF16(const  scope  char[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF16.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF16z","package":"druntime","parentType":"","signature":"wptr toUTF16z(const  scope  char[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF16z.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF16","package":"druntime","parentType":"","signature":"wstring toUTF16(return  scope  wstring s)","url":"/ddoc/druntime/core/internal/utf/toUTF16.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF16","package":"druntime","parentType":"","signature":"wstring toUTF16(const  scope  dchar[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF16.html"},{"doc":"Encodes string s into UTF-32 and returns the encoded string.","kind":"function","module":"core.internal.utf","name":"toUTF32","package":"druntime","parentType":"","signature":"dstring toUTF32(const  scope  char[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF32.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF32","package":"druntime","parentType":"","signature":"dstring toUTF32(const  scope  wchar[]  s)","url":"/ddoc/druntime/core/internal/utf/toUTF32.html"},{"doc":"ditto","kind":"function","module":"core.internal.utf","name":"toUTF32","package":"druntime","parentType":"","signature":"dstring toUTF32(return  scope  dstring s)","url":"/ddoc/druntime/core/internal/utf/toUTF32.html"},{"doc":"","kind":"alias","module":"core.internal.utf","name":"wptr","package":"druntime","parentType":"","signature":"wptr = const(wchar) *","url":"/ddoc/druntime/core/internal/utf.html#wptr"},{"doc":"","kind":"variable","module":"core.internal.utf","name":"UTF8stride","package":"druntime","parentType":"","signature":"UTF8stride","url":"/ddoc/druntime/core/internal/utf.html#UTF8stride"},{"doc":"Array utilities.","kind":"module","module":"core.internal.util.array","name":"core.internal.util.array","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/util/array.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"errorMessage","package":"druntime","parentType":"","signature":"char[] errorMessage(Args...)(scope  const(char *)  format,\n     const  char[]  action,  Args args)","url":"/ddoc/druntime/core/internal/util/array/errorMessage.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"enforceRawArraysConformable","package":"druntime","parentType":"","signature":"void enforceRawArraysConformable(const  char[]  action,  const  size_t elementSize,\n     const  void[]  a1,  const  void[]  a2,  const  bool  allowOverlap =  false)","url":"/ddoc/druntime/core/internal/util/array/enforceRawArraysConformable.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"_enforceSameLength","package":"druntime","parentType":"","signature":"void _enforceSameLength(const  char[]  action,\n     const  size_t length1,  const  size_t length2)","url":"/ddoc/druntime/core/internal/util/array/_enforceSameLength.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"_enforceNoOverlap","package":"druntime","parentType":"","signature":"void _enforceNoOverlap(const  char[]  action,\n     uintptr_t ptr1,  uintptr_t ptr2,  const  size_t bytes)","url":"/ddoc/druntime/core/internal/util/array/_enforceNoOverlap.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"enforceRawArraysConformableNogc","package":"druntime","parentType":"","signature":"void enforceRawArraysConformableNogc(const  char[]  action,  const  size_t elementSize,\n     const  void[]  a1,  const  void[]  a2,  const  bool  allowOverlap =  false)","url":"/ddoc/druntime/core/internal/util/array/enforceRawArraysConformableNogc.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"_enforceNoOverlapNogc","package":"druntime","parentType":"","signature":"void _enforceNoOverlapNogc(const  ref  char[]  action,\n     uintptr_t ptr1,  uintptr_t ptr2,  const  size_t bytes)","url":"/ddoc/druntime/core/internal/util/array/_enforceNoOverlapNogc.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"_enforceSameLengthNogc","package":"druntime","parentType":"","signature":"void _enforceSameLengthNogc(const  ref  char[]  action,\n     const  size_t length1,  const  size_t length2)","url":"/ddoc/druntime/core/internal/util/array/_enforceSameLengthNogc.html"},{"doc":"","kind":"function","module":"core.internal.util.array","name":"arrayToPtr","package":"druntime","parentType":"","signature":"uintptr_t arrayToPtr(const  void[]  array)","url":"/ddoc/druntime/core/internal/util/array/arrayToPtr.html"},{"doc":"","kind":"variable","module":"core.internal.util.array","name":"_store","package":"druntime","parentType":"","signature":"char[256] _store","url":"/ddoc/druntime/core/internal/util/array.html#_store"},{"doc":"Internal math utilities.","kind":"module","module":"core.internal.util.math","name":"core.internal.util.math","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/util/math.html"},{"doc":"Calculates the maximum of the passed arguments Params: a = first value to select the maximum from b = second value to select the maximum from Retur...","kind":"function","module":"core.internal.util.math","name":"max","package":"druntime","parentType":"","signature":"T max(T)(T a,  T b)","url":"/ddoc/druntime/core/internal/util/math/max.html"},{"doc":"Calculates the minimum of the passed arguments Params: a = first value to select the minimum from b = second value to select the minimum from Retur...","kind":"function","module":"core.internal.util.math","name":"min","package":"druntime","parentType":"","signature":"T min(T)(T a,  T b)","url":"/ddoc/druntime/core/internal/util/math/min.html"},{"doc":"Varargs implementation for the AArch64 Procedure Call Standard (not followed by Apple). Used by core.stdc.stdarg and core.vararg.","kind":"module","module":"core.internal.vararg.aarch64","name":"core.internal.vararg.aarch64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/vararg/aarch64.html"},{"doc":"Varargs implementation for the x86_64 System V ABI (not used for Win64). Used by core.stdc.stdarg and core.vararg.","kind":"module","module":"core.internal.vararg.sysv_x64","name":"core.internal.vararg.sysv_x64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/internal/vararg/sysv_x64.html"},{"doc":"","kind":"function","module":"core.internal.vararg.sysv_x64","name":"va_arg","package":"druntime","parentType":"","signature":"T va_arg(T)(va_list ap)","url":"/ddoc/druntime/core/internal/vararg/sysv_x64/va_arg.html"},{"doc":"","kind":"function","module":"core.internal.vararg.sysv_x64","name":"va_arg","package":"druntime","parentType":"","signature":"void va_arg()(va_list ap,  TypeInfo ti,  void *  parmn)","url":"/ddoc/druntime/core/internal/vararg/sysv_x64/va_arg.html"},{"doc":"","kind":"struct","module":"core.internal.vararg.sysv_x64","name":"__va_list_tag","package":"druntime","parentType":"","signature":"__va_list_tag","url":"/ddoc/druntime/core/internal/vararg/sysv_x64.html#__va_list_tag"},{"doc":"","kind":"alias","module":"core.internal.vararg.sysv_x64","name":"__va_list","package":"druntime","parentType":"","signature":"__va_list = __va_list_tag","url":"/ddoc/druntime/core/internal/vararg/sysv_x64.html#__va_list"},{"doc":"Making it an array of 1 causes va_list to be passed as a pointer in function argument lists","kind":"alias","module":"core.internal.vararg.sysv_x64","name":"va_list","package":"druntime","parentType":"","signature":"va_list = __va_list *","url":"/ddoc/druntime/core/internal/vararg/sysv_x64.html#va_list"},{"doc":"This module provides definitions to support D's interpolated expression sequence literal, sometimes called string interpolation.","kind":"module","module":"core.interpolation","name":"core.interpolation","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/interpolation.html"},{"doc":"Common implementation for returning an empty string, to avoid storing multiple versions of the same function based on templated types below.","kind":"function","module":"core.interpolation","name":"__getEmptyString","package":"druntime","parentType":"","signature":"string __getEmptyString()","url":"/ddoc/druntime/core/interpolation/__getEmptyString.html"},{"doc":"Sentinel values to indicate the beginning and end of an interpolated expression sequence.","kind":"struct","module":"core.interpolation","name":"InterpolationHeader","package":"druntime","parentType":"","signature":"InterpolationHeader","url":"/ddoc/druntime/core/interpolation.html#InterpolationHeader"},{"doc":"ditto","kind":"struct","module":"core.interpolation","name":"InterpolationFooter","package":"druntime","parentType":"","signature":"InterpolationFooter","url":"/ddoc/druntime/core/interpolation.html#InterpolationFooter"},{"doc":"Represents a fragment of a string literal in between expressions passed as part of an interpolated expression sequence.","kind":"struct","module":"core.interpolation","name":"InterpolatedLiteral","package":"druntime","parentType":"","signature":"InterpolatedLiteral(string text)","url":"/ddoc/druntime/core/interpolation.html#InterpolatedLiteral"},{"doc":"Returns the text of the interpolated string literal for this segment of the tuple, for easy access and compatibility with existing functions like `...","kind":"method","module":"core.interpolation","name":"toString","package":"druntime","parentType":"InterpolatedLiteral","signature":"string toString()","url":"/ddoc/druntime/core/interpolation/InterpolatedLiteral.toString.html"},{"doc":"Represents the source code of an expression passed as part of an interpolated expression sequence.","kind":"struct","module":"core.interpolation","name":"InterpolatedExpression","package":"druntime","parentType":"","signature":"InterpolatedExpression(string text)","url":"/ddoc/druntime/core/interpolation.html#InterpolatedExpression"},{"doc":"","kind":"module","module":"core.lifetime","name":"core.lifetime","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/lifetime.html"},{"doc":"Given a pointer `chunk` to uninitialized memory (but already typed as `T`), constructs an object of non-`class` type `T` at that address. If `T` is...","kind":"function","module":"core.lifetime","name":"emplace","package":"druntime","parentType":"","signature":"T * emplace(T)(T *  chunk)","url":"/ddoc/druntime/core/lifetime/emplace.html"},{"doc":"Given a pointer `chunk` to uninitialized memory (but already typed as a non-class type `T`), constructs an object of type `T` at that address from ...","kind":"function","module":"core.lifetime","name":"emplace","package":"druntime","parentType":"","signature":"T * emplace(T,  Args...)(T *  chunk,  auto  ref  Args args) if (is(T ==  struct)  ||  Args.length ==  1)","url":"/ddoc/druntime/core/lifetime/emplace.html"},{"doc":"Given a raw memory area `chunk` (but already typed as a class type `T`), constructs an object of `class` type `T` at that address. The constructor ...","kind":"function","module":"core.lifetime","name":"emplace","package":"druntime","parentType":"","signature":"T emplace(T,  Args...)(T chunk,  auto  ref  Args args) if (is(T ==  class))","url":"/ddoc/druntime/core/lifetime/emplace.html"},{"doc":"Given a raw memory area `chunk`, constructs an object of `class` type `T` at that address. The constructor is passed the arguments `Args`. If `T` i...","kind":"function","module":"core.lifetime","name":"emplace","package":"druntime","parentType":"","signature":"T emplace(T,  Args...)(void[]  chunk,  auto  ref  Args args) if (is(T ==  class))","url":"/ddoc/druntime/core/lifetime/emplace.html"},{"doc":"Given a raw memory area `chunk`, constructs an object of non-$(D class) type `T` at that address. The constructor is passed the arguments `args`, i...","kind":"function","module":"core.lifetime","name":"emplace","package":"druntime","parentType":"","signature":"T * emplace(T,  Args...)(void[]  chunk,  auto  ref  Args args) if (!is(T ==  class))","url":"/ddoc/druntime/core/lifetime/emplace.html"},{"doc":"Emplaces a copy of the specified source value into uninitialized memory, i.e., simulates `T target = source` copy-construction for cases where the ...","kind":"function","module":"core.lifetime","name":"copyEmplace","package":"druntime","parentType":"","signature":"void copyEmplace(S,  T)(ref  S source,  ref  T target) if (is(immutable  S ==  immutable  T))","url":"/ddoc/druntime/core/lifetime/copyEmplace.html"},{"doc":"Moves `source` into `target`, via a destructive copy when necessary.","kind":"function","module":"core.lifetime","name":"move","package":"druntime","parentType":"","signature":"void move(T)(ref  T source,  ref  T target)","url":"/ddoc/druntime/core/lifetime/move.html"},{"doc":"Ditto","kind":"function","module":"core.lifetime","name":"move","package":"druntime","parentType":"","signature":"T move(T)(return  scope  ref  T source)","url":"/ddoc/druntime/core/lifetime/move.html"},{"doc":"","kind":"function","module":"core.lifetime","name":"moveImpl","package":"druntime","parentType":"","signature":"void moveImpl(T)(scope  ref  T target,  return  scope  ref  T source)","url":"/ddoc/druntime/core/lifetime/moveImpl.html"},{"doc":"","kind":"function","module":"core.lifetime","name":"moveImpl","package":"druntime","parentType":"","signature":"T moveImpl(T)(return  scope  ref  T source)","url":"/ddoc/druntime/core/lifetime/moveImpl.html"},{"doc":"","kind":"function","module":"core.lifetime","name":"trustedMoveImpl","package":"druntime","parentType":"","signature":"T trustedMoveImpl(T)(return  scope  ref  T source)","url":"/ddoc/druntime/core/lifetime/trustedMoveImpl.html"},{"doc":"","kind":"function","module":"core.lifetime","name":"moveEmplaceImpl","package":"druntime","parentType":"","signature":"void moveEmplaceImpl(T)(scope  ref  T target,  return  scope  ref  T source)","url":"/ddoc/druntime/core/lifetime/moveEmplaceImpl.html"},{"doc":"Similar to $(LREF move) but assumes `target` is uninitialized. This is more efficient because `source` can be blitted over `target` without destroy...","kind":"function","module":"core.lifetime","name":"moveEmplace","package":"druntime","parentType":"","signature":"void moveEmplace(T)(ref  T source,  ref  T target)","url":"/ddoc/druntime/core/lifetime/moveEmplace.html"},{"doc":"","kind":"function","module":"core.lifetime","name":"wipe","package":"druntime","parentType":"","signature":"void wipe(T,  Init...)(return  scope  ref  T source,  ref  const  scope  Init initializer) if (!Init.length ||\n    ((Init.length ==  1)  && (is(immutable  T ==  immutable  Init[0]))))","url":"/ddoc/druntime/core/lifetime/wipe.html"},{"doc":"Allocate an exception of type `T` from the exception pool. `T` must be `Throwable` or derived from it and cannot be a COM or C++ class.","kind":"function","module":"core.lifetime","name":"_d_newThrowable","package":"druntime","parentType":"","signature":"T _d_newThrowable(T)() if (is(T :  Throwable)  &&  __traits(getLinkage,  T)  ==  \"D\")","url":"/ddoc/druntime/core/lifetime/_d_newThrowable.html"},{"doc":"Create a new class instance. Allocates memory and sets fields to their initial value, but does not call a constructor. --- new C() // _d_newclass!(...","kind":"function","module":"core.lifetime","name":"_d_newclassT","package":"druntime","parentType":"","signature":"T _d_newclassT(T)() if (is(T ==  class))","url":"/ddoc/druntime/core/lifetime/_d_newclassT.html"},{"doc":"TraceGC wrapper around $(REF _d_newclassT, core,lifetime).","kind":"function","module":"core.lifetime","name":"_d_newclassTTrace","package":"druntime","parentType":"","signature":"T _d_newclassTTrace(T)(string file =  __FILE__,  int  line =  __LINE__,  string funcname =  __FUNCTION__)","url":"/ddoc/druntime/core/lifetime/_d_newclassTTrace.html"},{"doc":"Allocate an initialized non-array item.","kind":"function","module":"core.lifetime","name":"_d_newitemT","package":"druntime","parentType":"","signature":"T * _d_newitemT(T)()","url":"/ddoc/druntime/core/lifetime/_d_newitemT.html"},{"doc":"Forwards function arguments while keeping `out`, `ref`, and `lazy` on the parameters.","kind":"template","module":"core.lifetime","name":"forward","package":"druntime","parentType":"","signature":"forward(args...)","url":"/ddoc/druntime/core/lifetime.html#forward"},{"doc":"Implementation of `_d_delstruct` and `_d_delstructTrace`","kind":"template","module":"core.lifetime","name":"_d_delstructImpl","package":"druntime","parentType":"","signature":"_d_delstructImpl(T)","url":"/ddoc/druntime/core/lifetime.html#_d_delstructImpl"},{"doc":"","kind":"function","module":"core.lifetime","name":"_d_delstructImpure","package":"druntime","parentType":"","signature":"void _d_delstructImpure(ref  T p)","url":"/ddoc/druntime/core/lifetime.html#_d_delstructImpl"},{"doc":"This is called for a delete statement where the value being deleted is a pointer to a struct with a destructor but doesn't have an overloaded `dele...","kind":"function","module":"core.lifetime","name":"_d_delstruct","package":"druntime","parentType":"","signature":"void _d_delstruct(ref  T p)","url":"/ddoc/druntime/core/lifetime.html#_d_delstructImpl"},{"doc":"","kind":"template","module":"core.lifetime","name":"TypeInfoSize","package":"druntime","parentType":"","signature":"TypeInfoSize(T)","url":"/ddoc/druntime/core/lifetime.html#TypeInfoSize"},{"doc":"","kind":"variable","module":"core.lifetime","name":"hasContextPointers","package":"druntime","parentType":"","signature":"bool hasContextPointers","url":"/ddoc/druntime/core/lifetime.html#hasContextPointers"},{"doc":"Builtin mathematical intrinsics","kind":"module","module":"core.math","name":"core.math","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/math.html"},{"doc":"Returns cosine of x. x is in radians.","kind":"function","module":"core.math","name":"cos","package":"druntime","parentType":"","signature":"float cos(float  x)","url":"/ddoc/druntime/core/math/cos.html"},{"doc":"","kind":"function","module":"core.math","name":"cos","package":"druntime","parentType":"","signature":"double cos(double  x)","url":"/ddoc/druntime/core/math/cos.html"},{"doc":"","kind":"function","module":"core.math","name":"cos","package":"druntime","parentType":"","signature":"real cos(real  x)","url":"/ddoc/druntime/core/math/cos.html"},{"doc":"Returns sine of x. x is in radians.","kind":"function","module":"core.math","name":"sin","package":"druntime","parentType":"","signature":"float sin(float  x)","url":"/ddoc/druntime/core/math/sin.html"},{"doc":"","kind":"function","module":"core.math","name":"sin","package":"druntime","parentType":"","signature":"double sin(double  x)","url":"/ddoc/druntime/core/math/sin.html"},{"doc":"","kind":"function","module":"core.math","name":"sin","package":"druntime","parentType":"","signature":"real sin(real  x)","url":"/ddoc/druntime/core/math/sin.html"},{"doc":"Returns x rounded to a long value using the current rounding mode. If the integer value of x is greater than long.max, the result is indeterminate.","kind":"function","module":"core.math","name":"rndtol","package":"druntime","parentType":"","signature":"long rndtol(float  x)","url":"/ddoc/druntime/core/math/rndtol.html"},{"doc":"","kind":"function","module":"core.math","name":"rndtol","package":"druntime","parentType":"","signature":"long rndtol(double  x)","url":"/ddoc/druntime/core/math/rndtol.html"},{"doc":"","kind":"function","module":"core.math","name":"rndtol","package":"druntime","parentType":"","signature":"long rndtol(real  x)","url":"/ddoc/druntime/core/math/rndtol.html"},{"doc":"Compute square root of x.","kind":"function","module":"core.math","name":"sqrt","package":"druntime","parentType":"","signature":"float sqrt(float  x)","url":"/ddoc/druntime/core/math/sqrt.html"},{"doc":"","kind":"function","module":"core.math","name":"sqrt","package":"druntime","parentType":"","signature":"double sqrt(double  x)","url":"/ddoc/druntime/core/math/sqrt.html"},{"doc":"","kind":"function","module":"core.math","name":"sqrt","package":"druntime","parentType":"","signature":"real sqrt(real  x)","url":"/ddoc/druntime/core/math/sqrt.html"},{"doc":"Compute n * 2$(SUPERSCRIPT exp) References: frexp","kind":"function","module":"core.math","name":"ldexp","package":"druntime","parentType":"","signature":"float ldexp(float  n,  int  exp)","url":"/ddoc/druntime/core/math/ldexp.html"},{"doc":"","kind":"function","module":"core.math","name":"ldexp","package":"druntime","parentType":"","signature":"double ldexp(double  n,  int  exp)","url":"/ddoc/druntime/core/math/ldexp.html"},{"doc":"","kind":"function","module":"core.math","name":"ldexp","package":"druntime","parentType":"","signature":"real ldexp(real  n,  int  exp)","url":"/ddoc/druntime/core/math/ldexp.html"},{"doc":"Compute the absolute value. $(TABLE_SV $(TR $(TH x)                 $(TH fabs(x))) $(TR $(TD $(PLUSMN)0.0)      $(TD +0.0) ) $(TR $(TD $(PLUSMN)$(I...","kind":"function","module":"core.math","name":"fabs","package":"druntime","parentType":"","signature":"float fabs(float   x)","url":"/ddoc/druntime/core/math/fabs.html"},{"doc":"","kind":"function","module":"core.math","name":"fabs","package":"druntime","parentType":"","signature":"double fabs(double  x)","url":"/ddoc/druntime/core/math/fabs.html"},{"doc":"","kind":"function","module":"core.math","name":"fabs","package":"druntime","parentType":"","signature":"real fabs(real    x)","url":"/ddoc/druntime/core/math/fabs.html"},{"doc":"Rounds x to the nearest integer value, using the current rounding mode. If the return value is not equal to x, the FE_INEXACT exception is raised. ...","kind":"function","module":"core.math","name":"rint","package":"druntime","parentType":"","signature":"float rint(float  x)","url":"/ddoc/druntime/core/math/rint.html"},{"doc":"","kind":"function","module":"core.math","name":"rint","package":"druntime","parentType":"","signature":"double rint(double  x)","url":"/ddoc/druntime/core/math/rint.html"},{"doc":"","kind":"function","module":"core.math","name":"rint","package":"druntime","parentType":"","signature":"real rint(real  x)","url":"/ddoc/druntime/core/math/rint.html"},{"doc":"Building block functions, they translate to a single x87 instruction.","kind":"function","module":"core.math","name":"yl2x","package":"druntime","parentType":"","signature":"float yl2x(float  x,  float  y)","url":"/ddoc/druntime/core/math/yl2x.html"},{"doc":"","kind":"function","module":"core.math","name":"yl2x","package":"druntime","parentType":"","signature":"double yl2x(double  x,  double  y)","url":"/ddoc/druntime/core/math/yl2x.html"},{"doc":"","kind":"function","module":"core.math","name":"yl2x","package":"druntime","parentType":"","signature":"real yl2x(real  x,  real  y)","url":"/ddoc/druntime/core/math/yl2x.html"},{"doc":"","kind":"function","module":"core.math","name":"yl2xp1","package":"druntime","parentType":"","signature":"float yl2xp1(float  x,  float  y)","url":"/ddoc/druntime/core/math/yl2xp1.html"},{"doc":"","kind":"function","module":"core.math","name":"yl2xp1","package":"druntime","parentType":"","signature":"double yl2xp1(double  x,  double  y)","url":"/ddoc/druntime/core/math/yl2xp1.html"},{"doc":"","kind":"function","module":"core.math","name":"yl2xp1","package":"druntime","parentType":"","signature":"real yl2xp1(real  x,  real  y)","url":"/ddoc/druntime/core/math/yl2xp1.html"},{"doc":"Round argument to a specific precision.","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: float)(float  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: float)(double  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: float)(real  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: double)(float  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: double)(double  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: double)(real  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: real)(float  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: real)(double  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"ditto","kind":"function","module":"core.math","name":"toPrec","package":"druntime","parentType":"","signature":"T toPrec(T: real)(real  f)","url":"/ddoc/druntime/core/math/toPrec.html"},{"doc":"* This module provides an interface to the garbage collector used by * applications written in the D programming language. It allows the * garbage ...","kind":"module","module":"core.memory","name":"core.memory","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/memory.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_getAttr","package":"druntime","parentType":"","signature":"uint gc_getAttr(  void *  p )","url":"/ddoc/druntime/core/memory/gc_getAttr.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_setAttr","package":"druntime","parentType":"","signature":"uint gc_setAttr(  void *  p,  uint  a )","url":"/ddoc/druntime/core/memory/gc_setAttr.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_clrAttr","package":"druntime","parentType":"","signature":"uint gc_clrAttr(  void *  p,  uint  a )","url":"/ddoc/druntime/core/memory/gc_clrAttr.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_addrOf","package":"druntime","parentType":"","signature":"void * gc_addrOf(  void *  p )","url":"/ddoc/druntime/core/memory/gc_addrOf.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_sizeOf","package":"druntime","parentType":"","signature":"size_t gc_sizeOf(  void *  p )","url":"/ddoc/druntime/core/memory/gc_sizeOf.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_query","package":"druntime","parentType":"","signature":"BlkInfo_ gc_query(return  scope  void *  p)","url":"/ddoc/druntime/core/memory/gc_query.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_stats","package":"druntime","parentType":"","signature":"GC.Stats gc_stats( )","url":"/ddoc/druntime/core/memory/gc_stats.html"},{"doc":"","kind":"function","module":"core.memory","name":"gc_profileStats","package":"druntime","parentType":"","signature":"GC.ProfileStats gc_profileStats( )","url":"/ddoc/druntime/core/memory/gc_profileStats.html"},{"doc":"","kind":"function","module":"core.memory","name":"initialize","package":"druntime","parentType":"","signature":"void initialize()","url":"/ddoc/druntime/core/memory/initialize.html"},{"doc":"","kind":"function","module":"core.memory","name":"_initialize","package":"druntime","parentType":"","signature":"void _initialize()","url":"/ddoc/druntime/core/memory/_initialize.html"},{"doc":"Pure variants of C's memory allocation functions `malloc`, `calloc`, and `realloc` and deallocation function `free`.","kind":"function","module":"core.memory","name":"pureMalloc","package":"druntime","parentType":"","signature":"void * pureMalloc()(size_t size)","url":"/ddoc/druntime/core/memory/pureMalloc.html"},{"doc":"ditto","kind":"function","module":"core.memory","name":"pureCalloc","package":"druntime","parentType":"","signature":"void * pureCalloc()(size_t nmemb,  size_t size)","url":"/ddoc/druntime/core/memory/pureCalloc.html"},{"doc":"ditto","kind":"function","module":"core.memory","name":"pureRealloc","package":"druntime","parentType":"","signature":"void * pureRealloc()(void *  ptr,  size_t size)","url":"/ddoc/druntime/core/memory/pureRealloc.html"},{"doc":"ditto","kind":"function","module":"core.memory","name":"pureFree","package":"druntime","parentType":"","signature":"void pureFree()(void *  ptr)","url":"/ddoc/druntime/core/memory/pureFree.html"},{"doc":"","kind":"function","module":"core.memory","name":"fakePureMalloc","package":"druntime","parentType":"","signature":"void * fakePureMalloc(size_t)","url":"/ddoc/druntime/core/memory/fakePureMalloc.html"},{"doc":"","kind":"function","module":"core.memory","name":"fakePureCalloc","package":"druntime","parentType":"","signature":"void * fakePureCalloc(size_t nmemb,  size_t size)","url":"/ddoc/druntime/core/memory/fakePureCalloc.html"},{"doc":"","kind":"function","module":"core.memory","name":"fakePureRealloc","package":"druntime","parentType":"","signature":"void * fakePureRealloc(void *  ptr,  size_t size)","url":"/ddoc/druntime/core/memory/fakePureRealloc.html"},{"doc":"","kind":"function","module":"core.memory","name":"fakePureFree","package":"druntime","parentType":"","signature":"void fakePureFree(void *  ptr)","url":"/ddoc/druntime/core/memory/fakePureFree.html"},{"doc":"Destroys and then deallocates an object.","kind":"function","module":"core.memory","name":"__delete","package":"druntime","parentType":"","signature":"void __delete(T)(ref  T x)","url":"/ddoc/druntime/core/memory/__delete.html"},{"doc":"","kind":"function","module":"core.memory","name":"_d_newitemU","package":"druntime","parentType":"","signature":"void * _d_newitemU(scope  const  TypeInfo _ti)","url":"/ddoc/druntime/core/memory/_d_newitemU.html"},{"doc":"Moves a value to a new GC allocation.","kind":"function","module":"core.memory","name":"moveToGC","package":"druntime","parentType":"","signature":"T * moveToGC(T)(auto  ref  T value)","url":"/ddoc/druntime/core/memory/moveToGC.html"},{"doc":"","kind":"struct","module":"core.memory","name":"BlkInfo_","package":"druntime","parentType":"","signature":"BlkInfo_","url":"/ddoc/druntime/core/memory.html#BlkInfo_"},{"doc":"This struct encapsulates all garbage collection functionality for the D programming language.","kind":"struct","module":"core.memory","name":"GC","package":"druntime","parentType":"","signature":"GC","url":"/ddoc/druntime/core/memory.html#GC"},{"doc":"Enables automatic garbage collection behavior if collections have previously been suspended by a call to `GC.disable()`.  This function is reentran...","kind":"method","module":"core.memory","name":"enable","package":"druntime","parentType":"GC","signature":"void enable()","url":"/ddoc/druntime/core/memory/GC.enable.html"},{"doc":"Disables automatic garbage collections performed to minimize the process footprint.  Collections may continue to occur in instances where the imple...","kind":"method","module":"core.memory","name":"disable","package":"druntime","parentType":"GC","signature":"void disable()","url":"/ddoc/druntime/core/memory/GC.disable.html"},{"doc":"Begins a full collection.  While the meaning of this may change based on the garbage collector implementation, typical behavior is to scan all stac...","kind":"method","module":"core.memory","name":"collect","package":"druntime","parentType":"GC","signature":"void collect()","url":"/ddoc/druntime/core/memory/GC.collect.html"},{"doc":"Indicates that the managed memory space be minimized by returning free physical memory to the operating system.  The amount of free memory returned...","kind":"method","module":"core.memory","name":"minimize","package":"druntime","parentType":"GC","signature":"void minimize()","url":"/ddoc/druntime/core/memory/GC.minimize.html"},{"doc":"Returns a bit field representing all block attributes set for the memory referenced by p.  If p references memory not originally allocated by this ...","kind":"method","module":"core.memory","name":"getAttr","package":"druntime","parentType":"GC","signature":"uint getAttr(  const  scope  void *  p )","url":"/ddoc/druntime/core/memory/GC.getAttr.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"getAttr","package":"druntime","parentType":"GC","signature":"uint getAttr(void *  p)","url":"/ddoc/druntime/core/memory/GC.getAttr.html"},{"doc":"Sets the specified bits for the memory references by p.  If p references memory not originally allocated by this garbage collector, points to the i...","kind":"method","module":"core.memory","name":"setAttr","package":"druntime","parentType":"GC","signature":"uint setAttr(  const  scope  void *  p,  uint  a )","url":"/ddoc/druntime/core/memory/GC.setAttr.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"setAttr","package":"druntime","parentType":"GC","signature":"uint setAttr(void *  p,  uint  a)","url":"/ddoc/druntime/core/memory/GC.setAttr.html"},{"doc":"Clears the specified bits for the memory references by p.  If p references memory not originally allocated by this garbage collector, points to the...","kind":"method","module":"core.memory","name":"clrAttr","package":"druntime","parentType":"GC","signature":"uint clrAttr(  const  scope  void *  p,  uint  a )","url":"/ddoc/druntime/core/memory/GC.clrAttr.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"clrAttr","package":"druntime","parentType":"GC","signature":"uint clrAttr(void *  p,  uint  a)","url":"/ddoc/druntime/core/memory/GC.clrAttr.html"},{"doc":"Requests that at least sz bytes of memory be obtained from the operating system and marked as free.","kind":"method","module":"core.memory","name":"reserve","package":"druntime","parentType":"GC","signature":"size_t reserve(size_t sz)","url":"/ddoc/druntime/core/memory/GC.reserve.html"},{"doc":"Deallocates the memory referenced by p.  If p is null, no action occurs. If p references memory not originally allocated by this garbage collector,...","kind":"method","module":"core.memory","name":"free","package":"druntime","parentType":"GC","signature":"void free(void *  p)","url":"/ddoc/druntime/core/memory/GC.free.html"},{"doc":"Returns the base address of the memory block containing p.  This value is useful to determine whether p is an interior pointer, and the result may ...","kind":"method","module":"core.memory","name":"addrOf","package":"druntime","parentType":"GC","signature":"inout(void) * addrOf(  inout(void) *  p )","url":"/ddoc/druntime/core/memory/GC.addrOf.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"addrOf","package":"druntime","parentType":"GC","signature":"void * addrOf(void *  p)","url":"/ddoc/druntime/core/memory/GC.addrOf.html"},{"doc":"Returns the true size of the memory block referenced by p.  This value represents the maximum number of bytes for which a call to $(LREF realloc) m...","kind":"method","module":"core.memory","name":"sizeOf","package":"druntime","parentType":"GC","signature":"size_t sizeOf(  const  scope  void *  p )","url":"/ddoc/druntime/core/memory/GC.sizeOf.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"sizeOf","package":"druntime","parentType":"GC","signature":"size_t sizeOf(void *  p)","url":"/ddoc/druntime/core/memory/GC.sizeOf.html"},{"doc":"Returns aggregate information about the memory block containing p.  If p references memory not originally allocated by this garbage collector, if p...","kind":"method","module":"core.memory","name":"query","package":"druntime","parentType":"GC","signature":"BlkInfo query(return  scope  const  void *  p)","url":"/ddoc/druntime/core/memory/GC.query.html"},{"doc":"ditto","kind":"method","module":"core.memory","name":"query","package":"druntime","parentType":"GC","signature":"BlkInfo query(return  scope  void *  p)","url":"/ddoc/druntime/core/memory/GC.query.html"},{"doc":"Returns runtime stats for currently active GC implementation See `core.memory.GC.Stats` for list of available metrics.","kind":"method","module":"core.memory","name":"stats","package":"druntime","parentType":"GC","signature":"Stats stats()","url":"/ddoc/druntime/core/memory/GC.stats.html"},{"doc":"Returns runtime profile stats for currently active GC implementation See `core.memory.GC.ProfileStats` for list of available metrics.","kind":"method","module":"core.memory","name":"profileStats","package":"druntime","parentType":"GC","signature":"ProfileStats profileStats()","url":"/ddoc/druntime/core/memory/GC.profileStats.html"},{"doc":"Adds an internal root pointing to the GC memory block referenced by p. As a result, the block referenced by p itself and any blocks accessible via ...","kind":"method","module":"core.memory","name":"addRoot","package":"druntime","parentType":"GC","signature":"void addRoot(const  void *  p)","url":"/ddoc/druntime/core/memory/GC.addRoot.html"},{"doc":"Removes the memory block referenced by p from an internal list of roots to be scanned during a collection.  If p is null or is not a value previous...","kind":"method","module":"core.memory","name":"removeRoot","package":"druntime","parentType":"GC","signature":"void removeRoot(const  void *  p)","url":"/ddoc/druntime/core/memory/GC.removeRoot.html"},{"doc":"Adds $(D p[0 .. sz]) to the list of memory ranges to be scanned for pointers during a collection. If p is null, no operation is performed.","kind":"method","module":"core.memory","name":"addRange","package":"druntime","parentType":"GC","signature":"void addRange(const  void *  p,  size_t sz,  const  TypeInfo ti =  null)","url":"/ddoc/druntime/core/memory/GC.addRange.html"},{"doc":"Removes the memory range starting at p from an internal list of ranges to be scanned during a collection. If p is null or does not represent a valu...","kind":"method","module":"core.memory","name":"removeRange","package":"druntime","parentType":"GC","signature":"void removeRange(const  void *  p)","url":"/ddoc/druntime/core/memory/GC.removeRange.html"},{"doc":"Runs any finalizer that is located in address range of the given code segment.  This is used before unloading shared libraries.  All matching objec...","kind":"method","module":"core.memory","name":"runFinalizers","package":"druntime","parentType":"GC","signature":"void runFinalizers(const  scope  void[]  segment)","url":"/ddoc/druntime/core/memory/GC.runFinalizers.html"},{"doc":"Queries the GC whether the current thread is running object finalization as part of a GC collection, or an explicit call to runFinalizers.","kind":"method","module":"core.memory","name":"inFinalizer","package":"druntime","parentType":"GC","signature":"bool inFinalizer()","url":"/ddoc/druntime/core/memory/GC.inFinalizer.html"},{"doc":"Returns the number of bytes allocated for the current thread since program start. It is the same as GC.stats().allocatedInCurrentThread, but faster.","kind":"method","module":"core.memory","name":"allocatedInCurrentThread","package":"druntime","parentType":"GC","signature":"ulong allocatedInCurrentThread()","url":"/ddoc/druntime/core/memory/GC.allocatedInCurrentThread.html"},{"doc":"The size of a system page in bytes.","kind":"variable","module":"core.memory","name":"pageSize","package":"druntime","parentType":"","signature":"size_t pageSize","url":"/ddoc/druntime/core/memory.html#pageSize"},{"doc":"The runtime module exposes information specific to the D runtime code.","kind":"module","module":"core.runtime","name":"core.runtime","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/runtime.html"},{"doc":"C interface for Runtime.loadLibrary","kind":"function","module":"core.runtime","name":"rt_loadLibrary","package":"druntime","parentType":"","signature":"void * rt_loadLibrary(const  char *  name)","url":"/ddoc/druntime/core/runtime/rt_loadLibrary.html"},{"doc":"C interface for Runtime.unloadLibrary, returns 1/0 instead of bool","kind":"function","module":"core.runtime","name":"rt_unloadLibrary","package":"druntime","parentType":"","signature":"int rt_unloadLibrary(void *  ptr)","url":"/ddoc/druntime/core/runtime/rt_unloadLibrary.html"},{"doc":"C interface for Runtime.initialize, returns 1/0 instead of bool","kind":"function","module":"core.runtime","name":"rt_init","package":"druntime","parentType":"","signature":"int rt_init()","url":"/ddoc/druntime/core/runtime/rt_init.html"},{"doc":"C interface for Runtime.terminate, returns 1/0 instead of bool","kind":"function","module":"core.runtime","name":"rt_term","package":"druntime","parentType":"","signature":"int rt_term()","url":"/ddoc/druntime/core/runtime/rt_term.html"},{"doc":"","kind":"function","module":"core.runtime","name":"_d_print_throwable","package":"druntime","parentType":"","signature":"void _d_print_throwable(Throwable t)","url":"/ddoc/druntime/core/runtime/_d_print_throwable.html"},{"doc":"","kind":"function","module":"core.runtime","name":"thread_stackBottom","package":"druntime","parentType":"","signature":"void * thread_stackBottom()","url":"/ddoc/druntime/core/runtime/thread_stackBottom.html"},{"doc":"Set source file path for coverage reports.","kind":"function","module":"core.runtime","name":"dmd_coverSourcePath","package":"druntime","parentType":"","signature":"void dmd_coverSourcePath(string path)","url":"/ddoc/druntime/core/runtime/dmd_coverSourcePath.html"},{"doc":"Set output path for coverage reports.","kind":"function","module":"core.runtime","name":"dmd_coverDestPath","package":"druntime","parentType":"","signature":"void dmd_coverDestPath(string path)","url":"/ddoc/druntime/core/runtime/dmd_coverDestPath.html"},{"doc":"Enable merging of coverage reports with existing data.","kind":"function","module":"core.runtime","name":"dmd_coverSetMerge","package":"druntime","parentType":"","signature":"void dmd_coverSetMerge(bool  flag)","url":"/ddoc/druntime/core/runtime/dmd_coverSetMerge.html"},{"doc":"Set the output file name for profile reports (-profile switch). An empty name will set the output to stdout.","kind":"function","module":"core.runtime","name":"trace_setlogfilename","package":"druntime","parentType":"","signature":"void trace_setlogfilename(string name)","url":"/ddoc/druntime/core/runtime/trace_setlogfilename.html"},{"doc":"Set the output file name for the optimized profile linker DEF file (-profile switch). An empty name will set the output to stdout.","kind":"function","module":"core.runtime","name":"trace_setdeffilename","package":"druntime","parentType":"","signature":"void trace_setdeffilename(string name)","url":"/ddoc/druntime/core/runtime/trace_setdeffilename.html"},{"doc":"Set the output file name for memory profile reports (-profile=gc switch). An empty name will set the output to stdout.","kind":"function","module":"core.runtime","name":"profilegc_setlogfilename","package":"druntime","parentType":"","signature":"void profilegc_setlogfilename(string name)","url":"/ddoc/druntime/core/runtime/profilegc_setlogfilename.html"},{"doc":"* This routine is called by the runtime to run module unit tests on startup. * The user-supplied unit tester will be called if one has been set, * ...","kind":"function","module":"core.runtime","name":"runModuleUnitTests","package":"druntime","parentType":"","signature":"UnitTestResult runModuleUnitTests()","url":"/ddoc/druntime/core/runtime/runModuleUnitTests.html"},{"doc":"Get the default `Throwable.TraceInfo` implementation for the platform","kind":"function","module":"core.runtime","name":"defaultTraceHandler","package":"druntime","parentType":"","signature":"Throwable.TraceInfo defaultTraceHandler(  void *  ptr =  null )","url":"/ddoc/druntime/core/runtime/defaultTraceHandler.html"},{"doc":"Deallocate a traceinfo generated by deaultTraceHander.","kind":"function","module":"core.runtime","name":"defaultTraceDeallocator","package":"druntime","parentType":"","signature":"void defaultTraceDeallocator(Throwable.TraceInfo info)","url":"/ddoc/druntime/core/runtime/defaultTraceDeallocator.html"},{"doc":"This type is returned by the module unit test handler to indicate testing results.","kind":"struct","module":"core.runtime","name":"UnitTestResult","package":"druntime","parentType":"","signature":"UnitTestResult","url":"/ddoc/druntime/core/runtime.html#UnitTestResult"},{"doc":"Simple check for whether execution should continue after unit tests have been run. Works with legacy code that expected a bool return.","kind":"method","module":"core.runtime","name":"opCast","package":"druntime","parentType":"UnitTestResult","signature":"bool opCast(T :  bool)()","url":"/ddoc/druntime/core/runtime/UnitTestResult.opCast.html"},{"doc":"Legacy module unit test handler","kind":"alias","module":"core.runtime","name":"ModuleUnitTester","package":"druntime","parentType":"","signature":"ModuleUnitTester = bool  function()","url":"/ddoc/druntime/core/runtime.html#ModuleUnitTester"},{"doc":"Module unit test handler","kind":"alias","module":"core.runtime","name":"ExtendedModuleUnitTester","package":"druntime","parentType":"","signature":"ExtendedModuleUnitTester = UnitTestResult function()","url":"/ddoc/druntime/core/runtime.html#ExtendedModuleUnitTester"},{"doc":"","kind":"alias","module":"core.runtime","name":"CollectHandler","package":"druntime","parentType":"","signature":"CollectHandler = bool  function(Object)","url":"/ddoc/druntime/core/runtime.html#CollectHandler"},{"doc":"","kind":"alias","module":"core.runtime","name":"TraceHandler","package":"druntime","parentType":"","signature":"TraceHandler = Throwable.TraceInfo function(void *  ptr)","url":"/ddoc/druntime/core/runtime.html#TraceHandler"},{"doc":"","kind":"alias","module":"core.runtime","name":"ExceptionHandler","package":"druntime","parentType":"","signature":"ExceptionHandler = void  delegate(Throwable)","url":"/ddoc/druntime/core/runtime.html#ExceptionHandler"},{"doc":"Stores the unprocessed arguments supplied when the process was started.","kind":"struct","module":"core.runtime","name":"CArgs","package":"druntime","parentType":"","signature":"CArgs","url":"/ddoc/druntime/core/runtime.html#CArgs"},{"doc":"This struct encapsulates all functionality related to the underlying runtime module for the calling context.","kind":"struct","module":"core.runtime","name":"Runtime","package":"druntime","parentType":"","signature":"Runtime","url":"/ddoc/druntime/core/runtime.html#Runtime"},{"doc":"Initializes the runtime.  This call is to be used in instances where the standard program initialization process is not executed.  This is most oft...","kind":"method","module":"core.runtime","name":"initialize","package":"druntime","parentType":"Runtime","signature":"bool initialize()","url":"/ddoc/druntime/core/runtime/Runtime.initialize.html"},{"doc":"Terminates the runtime.  This call is to be used in instances where the standard program termination process will not be not executed.  This is mos...","kind":"method","module":"core.runtime","name":"terminate","package":"druntime","parentType":"Runtime","signature":"bool terminate()","url":"/ddoc/druntime/core/runtime/Runtime.terminate.html"},{"doc":"Returns the arguments supplied when the process was started.","kind":"method","module":"core.runtime","name":"args","package":"druntime","parentType":"Runtime","signature":"string[] args()","url":"/ddoc/druntime/core/runtime/Runtime.args.html"},{"doc":"Returns the unprocessed C arguments supplied when the process was started. Use this when you need to supply argc and argv to C libraries.","kind":"method","module":"core.runtime","name":"cArgs","package":"druntime","parentType":"Runtime","signature":"CArgs cArgs()","url":"/ddoc/druntime/core/runtime/Runtime.cArgs.html"},{"doc":"Locates a dynamic library with the supplied library name and dynamically loads it into the caller's address space.  If the library contains a D run...","kind":"method","module":"core.runtime","name":"loadLibrary","package":"druntime","parentType":"Runtime","signature":"void * loadLibrary()(const  scope  char[]  name)","url":"/ddoc/druntime/core/runtime/Runtime.loadLibrary.html"},{"doc":"Unloads the dynamic library referenced by p.  If this library contains a D runtime then any necessary finalization or cleanup of that runtime will ...","kind":"method","module":"core.runtime","name":"unloadLibrary","package":"druntime","parentType":"Runtime","signature":"bool unloadLibrary()(void *  p)","url":"/ddoc/druntime/core/runtime/Runtime.unloadLibrary.html"},{"doc":"Overrides the default trace mechanism with a user-supplied version.  A trace represents the context from which an exception was thrown, and the tra...","kind":"method","module":"core.runtime","name":"traceHandler","package":"druntime","parentType":"Runtime","signature":"void traceHandler(TraceHandler h,\n                     Throwable.TraceDeallocator d =  null)","url":"/ddoc/druntime/core/runtime/Runtime.traceHandler.html"},{"doc":"Gets the current trace handler.","kind":"method","module":"core.runtime","name":"traceHandler","package":"druntime","parentType":"Runtime","signature":"TraceHandler traceHandler()","url":"/ddoc/druntime/core/runtime/Runtime.traceHandler.html"},{"doc":"Gets the current trace deallocator.","kind":"method","module":"core.runtime","name":"traceDeallocator","package":"druntime","parentType":"Runtime","signature":"Throwable.TraceDeallocator traceDeallocator()","url":"/ddoc/druntime/core/runtime/Runtime.traceDeallocator.html"},{"doc":"Overrides the default collect hander with a user-supplied version.  This routine will be called for each resource object that is finalized in a non...","kind":"method","module":"core.runtime","name":"collectHandler","package":"druntime","parentType":"Runtime","signature":"void collectHandler(  CollectHandler h )","url":"/ddoc/druntime/core/runtime/Runtime.collectHandler.html"},{"doc":"Gets the current collect handler.","kind":"method","module":"core.runtime","name":"collectHandler","package":"druntime","parentType":"Runtime","signature":"CollectHandler collectHandler()","url":"/ddoc/druntime/core/runtime/Runtime.collectHandler.html"},{"doc":"Overrides the default module unit tester with a user-supplied version. This routine will be called once on program initialization.  The return valu...","kind":"method","module":"core.runtime","name":"extendedModuleUnitTester","package":"druntime","parentType":"Runtime","signature":"void extendedModuleUnitTester(  ExtendedModuleUnitTester h )","url":"/ddoc/druntime/core/runtime/Runtime.extendedModuleUnitTester.html"},{"doc":"Ditto","kind":"method","module":"core.runtime","name":"moduleUnitTester","package":"druntime","parentType":"Runtime","signature":"void moduleUnitTester(  ModuleUnitTester h )","url":"/ddoc/druntime/core/runtime/Runtime.moduleUnitTester.html"},{"doc":"Gets the current legacy module unit tester.","kind":"method","module":"core.runtime","name":"moduleUnitTester","package":"druntime","parentType":"Runtime","signature":"ModuleUnitTester moduleUnitTester()","url":"/ddoc/druntime/core/runtime/Runtime.moduleUnitTester.html"},{"doc":"Gets the current module unit tester.","kind":"method","module":"core.runtime","name":"extendedModuleUnitTester","package":"druntime","parentType":"Runtime","signature":"ExtendedModuleUnitTester extendedModuleUnitTester()","url":"/ddoc/druntime/core/runtime/Runtime.extendedModuleUnitTester.html"},{"doc":"Builtin SIMD intrinsics","kind":"module","module":"core.simd","name":"core.simd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/simd.html"},{"doc":"Create a vector type.","kind":"template","module":"core.simd","name":"Vector","package":"druntime","parentType":"","signature":"Vector(T)","url":"/ddoc/druntime/core/simd.html#Vector"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.assert_","name":"core.stdc.assert_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/assert_.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.complex","name":"core.stdc.complex","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/complex.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacos","package":"druntime","parentType":"","signature":"cdouble cacos(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cacos.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacosf","package":"druntime","parentType":"","signature":"cfloat cacosf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cacosf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacosl","package":"druntime","parentType":"","signature":"creal cacosl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cacosl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casin","package":"druntime","parentType":"","signature":"cdouble casin(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/casin.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casinf","package":"druntime","parentType":"","signature":"cfloat casinf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/casinf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casinl","package":"druntime","parentType":"","signature":"creal casinl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/casinl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catan","package":"druntime","parentType":"","signature":"cdouble catan(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/catan.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catanf","package":"druntime","parentType":"","signature":"cfloat catanf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/catanf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catanl","package":"druntime","parentType":"","signature":"creal catanl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/catanl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccos","package":"druntime","parentType":"","signature":"cdouble ccos(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/ccos.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccosf","package":"druntime","parentType":"","signature":"cfloat ccosf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/ccosf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccosl","package":"druntime","parentType":"","signature":"creal ccosl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/ccosl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csin","package":"druntime","parentType":"","signature":"cdouble csin(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/csin.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csinf","package":"druntime","parentType":"","signature":"cfloat csinf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/csinf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csinl","package":"druntime","parentType":"","signature":"creal csinl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/csinl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctan","package":"druntime","parentType":"","signature":"cdouble ctan(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/ctan.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctanf","package":"druntime","parentType":"","signature":"cfloat ctanf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/ctanf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctanl","package":"druntime","parentType":"","signature":"creal ctanl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/ctanl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacosh","package":"druntime","parentType":"","signature":"cdouble cacosh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cacosh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacoshf","package":"druntime","parentType":"","signature":"cfloat cacoshf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cacoshf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cacoshl","package":"druntime","parentType":"","signature":"creal cacoshl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cacoshl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casinh","package":"druntime","parentType":"","signature":"cdouble casinh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/casinh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casinhf","package":"druntime","parentType":"","signature":"cfloat casinhf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/casinhf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"casinhl","package":"druntime","parentType":"","signature":"creal casinhl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/casinhl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catanh","package":"druntime","parentType":"","signature":"cdouble catanh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/catanh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catanhf","package":"druntime","parentType":"","signature":"cfloat catanhf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/catanhf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"catanhl","package":"druntime","parentType":"","signature":"creal catanhl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/catanhl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccosh","package":"druntime","parentType":"","signature":"cdouble ccosh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/ccosh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccoshf","package":"druntime","parentType":"","signature":"cfloat ccoshf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/ccoshf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ccoshl","package":"druntime","parentType":"","signature":"creal ccoshl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/ccoshl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csinh","package":"druntime","parentType":"","signature":"cdouble csinh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/csinh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csinhf","package":"druntime","parentType":"","signature":"cfloat csinhf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/csinhf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csinhl","package":"druntime","parentType":"","signature":"creal csinhl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/csinhl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctanh","package":"druntime","parentType":"","signature":"cdouble ctanh(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/ctanh.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctanhf","package":"druntime","parentType":"","signature":"cfloat ctanhf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/ctanhf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"ctanhl","package":"druntime","parentType":"","signature":"creal ctanhl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/ctanhl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cexp","package":"druntime","parentType":"","signature":"cdouble cexp(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cexp.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cexpf","package":"druntime","parentType":"","signature":"cfloat cexpf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cexpf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cexpl","package":"druntime","parentType":"","signature":"creal cexpl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cexpl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"clog","package":"druntime","parentType":"","signature":"cdouble clog(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/clog.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"clogf","package":"druntime","parentType":"","signature":"cfloat clogf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/clogf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"clogl","package":"druntime","parentType":"","signature":"creal clogl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/clogl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cabs","package":"druntime","parentType":"","signature":"double cabs(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cabs.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cabsf","package":"druntime","parentType":"","signature":"float cabsf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cabsf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cabsl","package":"druntime","parentType":"","signature":"real cabsl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cabsl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cpow","package":"druntime","parentType":"","signature":"cdouble cpow(cdouble  x,  cdouble  y)","url":"/ddoc/druntime/core/stdc/complex/cpow.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cpowf","package":"druntime","parentType":"","signature":"cfloat cpowf(cfloat  x,  cfloat  y)","url":"/ddoc/druntime/core/stdc/complex/cpowf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cpowl","package":"druntime","parentType":"","signature":"creal cpowl(creal  x,  creal  y)","url":"/ddoc/druntime/core/stdc/complex/cpowl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csqrt","package":"druntime","parentType":"","signature":"cdouble csqrt(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/csqrt.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csqrtf","package":"druntime","parentType":"","signature":"cfloat csqrtf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/csqrtf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"csqrtl","package":"druntime","parentType":"","signature":"creal csqrtl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/csqrtl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"carg","package":"druntime","parentType":"","signature":"double carg(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/carg.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cargf","package":"druntime","parentType":"","signature":"float cargf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cargf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cargl","package":"druntime","parentType":"","signature":"real cargl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cargl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cimag","package":"druntime","parentType":"","signature":"double cimag(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cimag.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cimagf","package":"druntime","parentType":"","signature":"float cimagf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cimagf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cimagl","package":"druntime","parentType":"","signature":"real cimagl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cimagl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"conj","package":"druntime","parentType":"","signature":"cdouble conj(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/conj.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"conjf","package":"druntime","parentType":"","signature":"cfloat conjf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/conjf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"conjl","package":"druntime","parentType":"","signature":"creal conjl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/conjl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cproj","package":"druntime","parentType":"","signature":"cdouble cproj(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/cproj.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cprojf","package":"druntime","parentType":"","signature":"cfloat cprojf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/cprojf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"cprojl","package":"druntime","parentType":"","signature":"creal cprojl(creal  z)","url":"/ddoc/druntime/core/stdc/complex/cprojl.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"creald","package":"druntime","parentType":"","signature":"double creald(cdouble  z)","url":"/ddoc/druntime/core/stdc/complex/creald.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"crealf","package":"druntime","parentType":"","signature":"float crealf(cfloat  z)","url":"/ddoc/druntime/core/stdc/complex/crealf.html"},{"doc":"","kind":"function","module":"core.stdc.complex","name":"creall","package":"druntime","parentType":"","signature":"real creall(creal  z)","url":"/ddoc/druntime/core/stdc/complex/creall.html"},{"doc":"","kind":"alias","module":"core.stdc.complex","name":"complex","package":"druntime","parentType":"","signature":"complex = creal","url":"/ddoc/druntime/core/stdc/complex.html#complex"},{"doc":"","kind":"alias","module":"core.stdc.complex","name":"imaginary","package":"druntime","parentType":"","signature":"imaginary = ireal","url":"/ddoc/druntime/core/stdc/complex.html#imaginary"},{"doc":"D compatible types that correspond to various basic types in associated C and C++ compilers.","kind":"module","module":"core.stdc.config","name":"core.stdc.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/config.html"},{"doc":"","kind":"template","module":"core.stdc.config","name":"muslRedirTime64Mangle","package":"druntime","parentType":"","signature":"muslRedirTime64Mangle(string name,  string redirectedName)","url":"/ddoc/druntime/core/stdc/config.html#muslRedirTime64Mangle"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.ctype","name":"core.stdc.ctype","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/ctype.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isalnum","package":"druntime","parentType":"","signature":"int isalnum(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isalnum.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isalpha","package":"druntime","parentType":"","signature":"int isalpha(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isalpha.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isblank","package":"druntime","parentType":"","signature":"int isblank(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isblank.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"iscntrl","package":"druntime","parentType":"","signature":"int iscntrl(int  c)","url":"/ddoc/druntime/core/stdc/ctype/iscntrl.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isdigit","package":"druntime","parentType":"","signature":"int isdigit(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isdigit.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isgraph","package":"druntime","parentType":"","signature":"int isgraph(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isgraph.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"islower","package":"druntime","parentType":"","signature":"int islower(int  c)","url":"/ddoc/druntime/core/stdc/ctype/islower.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isprint","package":"druntime","parentType":"","signature":"int isprint(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isprint.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"ispunct","package":"druntime","parentType":"","signature":"int ispunct(int  c)","url":"/ddoc/druntime/core/stdc/ctype/ispunct.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isspace","package":"druntime","parentType":"","signature":"int isspace(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isspace.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isupper","package":"druntime","parentType":"","signature":"int isupper(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isupper.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"isxdigit","package":"druntime","parentType":"","signature":"int isxdigit(int  c)","url":"/ddoc/druntime/core/stdc/ctype/isxdigit.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"tolower","package":"druntime","parentType":"","signature":"int tolower(int  c)","url":"/ddoc/druntime/core/stdc/ctype/tolower.html"},{"doc":"","kind":"function","module":"core.stdc.ctype","name":"toupper","package":"druntime","parentType":"","signature":"int toupper(int  c)","url":"/ddoc/druntime/core/stdc/ctype/toupper.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.errno","name":"core.stdc.errno","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/errno.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.fenv","name":"core.stdc.fenv","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/fenv.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"feclearexcept","package":"druntime","parentType":"","signature":"int feclearexcept(int  excepts)","url":"/ddoc/druntime/core/stdc/fenv/feclearexcept.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fetestexcept","package":"druntime","parentType":"","signature":"int fetestexcept(int  excepts)","url":"/ddoc/druntime/core/stdc/fenv/fetestexcept.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"feholdexcept","package":"druntime","parentType":"","signature":"int feholdexcept(fenv_t *  envp)","url":"/ddoc/druntime/core/stdc/fenv/feholdexcept.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fegetexceptflag","package":"druntime","parentType":"","signature":"int fegetexceptflag(fexcept_t *  flagp,  int  excepts)","url":"/ddoc/druntime/core/stdc/fenv/fegetexceptflag.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fesetexceptflag","package":"druntime","parentType":"","signature":"int fesetexceptflag(const  scope  fexcept_t *  flagp,  int  excepts)","url":"/ddoc/druntime/core/stdc/fenv/fesetexceptflag.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fegetround","package":"druntime","parentType":"","signature":"int fegetround()","url":"/ddoc/druntime/core/stdc/fenv/fegetround.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fesetround","package":"druntime","parentType":"","signature":"int fesetround(int  round)","url":"/ddoc/druntime/core/stdc/fenv/fesetround.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fegetenv","package":"druntime","parentType":"","signature":"int fegetenv(fenv_t *  envp)","url":"/ddoc/druntime/core/stdc/fenv/fegetenv.html"},{"doc":"","kind":"function","module":"core.stdc.fenv","name":"fesetenv","package":"druntime","parentType":"","signature":"int fesetenv(const  scope  fenv_t *  envp)","url":"/ddoc/druntime/core/stdc/fenv/fesetenv.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.float_","name":"core.stdc.float_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/float_.html"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_ROUNDS","package":"druntime","parentType":"","signature":"FLT_ROUNDS","url":"/ddoc/druntime/core/stdc/float_.html#FLT_ROUNDS"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_EVAL_METHOD","package":"druntime","parentType":"","signature":"FLT_EVAL_METHOD","url":"/ddoc/druntime/core/stdc/float_.html#FLT_EVAL_METHOD"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_RADIX","package":"druntime","parentType":"","signature":"FLT_RADIX","url":"/ddoc/druntime/core/stdc/float_.html#FLT_RADIX"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DECIMAL_DIG","package":"druntime","parentType":"","signature":"DECIMAL_DIG","url":"/ddoc/druntime/core/stdc/float_.html#DECIMAL_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_DIG","package":"druntime","parentType":"","signature":"FLT_DIG","url":"/ddoc/druntime/core/stdc/float_.html#FLT_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_DIG","package":"druntime","parentType":"","signature":"DBL_DIG","url":"/ddoc/druntime/core/stdc/float_.html#DBL_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_DIG","package":"druntime","parentType":"","signature":"LDBL_DIG","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MANT_DIG","package":"druntime","parentType":"","signature":"FLT_MANT_DIG","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MANT_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MANT_DIG","package":"druntime","parentType":"","signature":"DBL_MANT_DIG","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MANT_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MANT_DIG","package":"druntime","parentType":"","signature":"LDBL_MANT_DIG","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MANT_DIG"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MIN","package":"druntime","parentType":"","signature":"FLT_MIN","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MIN"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MIN","package":"druntime","parentType":"","signature":"DBL_MIN","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MIN"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MIN","package":"druntime","parentType":"","signature":"LDBL_MIN","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MIN"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MAX","package":"druntime","parentType":"","signature":"FLT_MAX","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MAX"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MAX","package":"druntime","parentType":"","signature":"DBL_MAX","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MAX"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MAX","package":"druntime","parentType":"","signature":"LDBL_MAX","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MAX"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_EPSILON","package":"druntime","parentType":"","signature":"FLT_EPSILON","url":"/ddoc/druntime/core/stdc/float_.html#FLT_EPSILON"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_EPSILON","package":"druntime","parentType":"","signature":"DBL_EPSILON","url":"/ddoc/druntime/core/stdc/float_.html#DBL_EPSILON"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_EPSILON","package":"druntime","parentType":"","signature":"LDBL_EPSILON","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_EPSILON"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MIN_EXP","package":"druntime","parentType":"","signature":"FLT_MIN_EXP","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MIN_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MIN_EXP","package":"druntime","parentType":"","signature":"DBL_MIN_EXP","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MIN_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MIN_EXP","package":"druntime","parentType":"","signature":"LDBL_MIN_EXP","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MIN_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MAX_EXP","package":"druntime","parentType":"","signature":"FLT_MAX_EXP","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MAX_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MAX_EXP","package":"druntime","parentType":"","signature":"DBL_MAX_EXP","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MAX_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MAX_EXP","package":"druntime","parentType":"","signature":"LDBL_MAX_EXP","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MAX_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MIN_10_EXP","package":"druntime","parentType":"","signature":"FLT_MIN_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MIN_10_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MIN_10_EXP","package":"druntime","parentType":"","signature":"DBL_MIN_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MIN_10_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MIN_10_EXP","package":"druntime","parentType":"","signature":"LDBL_MIN_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MIN_10_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"FLT_MAX_10_EXP","package":"druntime","parentType":"","signature":"FLT_MAX_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#FLT_MAX_10_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"DBL_MAX_10_EXP","package":"druntime","parentType":"","signature":"DBL_MAX_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#DBL_MAX_10_EXP"},{"doc":"","kind":"variable","module":"core.stdc.float_","name":"LDBL_MAX_10_EXP","package":"druntime","parentType":"","signature":"LDBL_MAX_10_EXP","url":"/ddoc/druntime/core/stdc/float_.html#LDBL_MAX_10_EXP"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.inttypes","name":"core.stdc.inttypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/inttypes.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"imaxabs","package":"druntime","parentType":"","signature":"intmax_t imaxabs(intmax_t j)","url":"/ddoc/druntime/core/stdc/inttypes/imaxabs.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"imaxdiv","package":"druntime","parentType":"","signature":"imaxdiv_t imaxdiv(intmax_t numer,  intmax_t denom)","url":"/ddoc/druntime/core/stdc/inttypes/imaxdiv.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"strtoimax","package":"druntime","parentType":"","signature":"intmax_t strtoimax(const  scope  char *  nptr,  char * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/inttypes/strtoimax.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"strtoumax","package":"druntime","parentType":"","signature":"uintmax_t strtoumax(const  scope  char *  nptr,  char * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/inttypes/strtoumax.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"wcstoimax","package":"druntime","parentType":"","signature":"intmax_t wcstoimax(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/inttypes/wcstoimax.html"},{"doc":"","kind":"function","module":"core.stdc.inttypes","name":"wcstoumax","package":"druntime","parentType":"","signature":"uintmax_t wcstoumax(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/inttypes/wcstoumax.html"},{"doc":"","kind":"struct","module":"core.stdc.inttypes","name":"imaxdiv_t","package":"druntime","parentType":"","signature":"imaxdiv_t","url":"/ddoc/druntime/core/stdc/inttypes.html#imaxdiv_t"},{"doc":"","kind":"alias","module":"core.stdc.inttypes","name":"_cstr","package":"druntime","parentType":"","signature":"_cstr = immutable(char) *","url":"/ddoc/druntime/core/stdc/inttypes.html#_cstr"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRId8","package":"druntime","parentType":"","signature":"_cstr PRId8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRId8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRId16","package":"druntime","parentType":"","signature":"_cstr PRId16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRId16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRId32","package":"druntime","parentType":"","signature":"_cstr PRId32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRId32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRId64","package":"druntime","parentType":"","signature":"_cstr PRId64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRId64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIdLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIdLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIdLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIdLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdFAST8","package":"druntime","parentType":"","signature":"_cstr PRIdFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdFAST16","package":"druntime","parentType":"","signature":"_cstr PRIdFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdFAST32","package":"druntime","parentType":"","signature":"_cstr PRIdFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIdFAST64","package":"druntime","parentType":"","signature":"_cstr PRIdFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIdFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIi8","package":"druntime","parentType":"","signature":"_cstr PRIi8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIi8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIi16","package":"druntime","parentType":"","signature":"_cstr PRIi16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIi16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIi32","package":"druntime","parentType":"","signature":"_cstr PRIi32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIi32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIi64","package":"druntime","parentType":"","signature":"_cstr PRIi64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIi64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIiLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIiLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIiLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIiLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiFAST8","package":"druntime","parentType":"","signature":"_cstr PRIiFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiFAST16","package":"druntime","parentType":"","signature":"_cstr PRIiFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiFAST32","package":"druntime","parentType":"","signature":"_cstr PRIiFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIiFAST64","package":"druntime","parentType":"","signature":"_cstr PRIiFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIiFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIo8","package":"druntime","parentType":"","signature":"_cstr PRIo8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIo8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIo16","package":"druntime","parentType":"","signature":"_cstr PRIo16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIo16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIo32","package":"druntime","parentType":"","signature":"_cstr PRIo32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIo32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIo64","package":"druntime","parentType":"","signature":"_cstr PRIo64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIo64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIoLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIoLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIoLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIoLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoFAST8","package":"druntime","parentType":"","signature":"_cstr PRIoFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoFAST16","package":"druntime","parentType":"","signature":"_cstr PRIoFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoFAST32","package":"druntime","parentType":"","signature":"_cstr PRIoFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIoFAST64","package":"druntime","parentType":"","signature":"_cstr PRIoFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIoFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIu8","package":"druntime","parentType":"","signature":"_cstr PRIu8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIu8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIu16","package":"druntime","parentType":"","signature":"_cstr PRIu16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIu16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIu32","package":"druntime","parentType":"","signature":"_cstr PRIu32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIu32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIu64","package":"druntime","parentType":"","signature":"_cstr PRIu64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIu64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIuLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIuLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIuLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIuLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuFAST8","package":"druntime","parentType":"","signature":"_cstr PRIuFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuFAST16","package":"druntime","parentType":"","signature":"_cstr PRIuFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuFAST32","package":"druntime","parentType":"","signature":"_cstr PRIuFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIuFAST64","package":"druntime","parentType":"","signature":"_cstr PRIuFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIuFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIx8","package":"druntime","parentType":"","signature":"_cstr PRIx8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIx8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIx16","package":"druntime","parentType":"","signature":"_cstr PRIx16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIx16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIx32","package":"druntime","parentType":"","signature":"_cstr PRIx32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIx32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIx64","package":"druntime","parentType":"","signature":"_cstr PRIx64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIx64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIxLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIxLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIxLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIxLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxFAST8","package":"druntime","parentType":"","signature":"_cstr PRIxFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxFAST16","package":"druntime","parentType":"","signature":"_cstr PRIxFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxFAST32","package":"druntime","parentType":"","signature":"_cstr PRIxFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIxFAST64","package":"druntime","parentType":"","signature":"_cstr PRIxFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIxFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIX8","package":"druntime","parentType":"","signature":"_cstr PRIX8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIX8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIX16","package":"druntime","parentType":"","signature":"_cstr PRIX16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIX16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIX32","package":"druntime","parentType":"","signature":"_cstr PRIX32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIX32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIX64","package":"druntime","parentType":"","signature":"_cstr PRIX64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIX64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXLEAST8","package":"druntime","parentType":"","signature":"_cstr PRIXLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXLEAST16","package":"druntime","parentType":"","signature":"_cstr PRIXLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXLEAST32","package":"druntime","parentType":"","signature":"_cstr PRIXLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXLEAST64","package":"druntime","parentType":"","signature":"_cstr PRIXLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXFAST8","package":"druntime","parentType":"","signature":"_cstr PRIXFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXFAST16","package":"druntime","parentType":"","signature":"_cstr PRIXFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXFAST32","package":"druntime","parentType":"","signature":"_cstr PRIXFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"PRIXFAST64","package":"druntime","parentType":"","signature":"_cstr PRIXFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#PRIXFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNd8","package":"druntime","parentType":"","signature":"_cstr SCNd8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNd8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNd16","package":"druntime","parentType":"","signature":"_cstr SCNd16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNd16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNd32","package":"druntime","parentType":"","signature":"_cstr SCNd32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNd32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNd64","package":"druntime","parentType":"","signature":"_cstr SCNd64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNd64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdLEAST8","package":"druntime","parentType":"","signature":"_cstr SCNdLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdLEAST16","package":"druntime","parentType":"","signature":"_cstr SCNdLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdLEAST32","package":"druntime","parentType":"","signature":"_cstr SCNdLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdLEAST64","package":"druntime","parentType":"","signature":"_cstr SCNdLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdFAST8","package":"druntime","parentType":"","signature":"_cstr SCNdFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdFAST16","package":"druntime","parentType":"","signature":"_cstr SCNdFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdFAST32","package":"druntime","parentType":"","signature":"_cstr SCNdFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNdFAST64","package":"druntime","parentType":"","signature":"_cstr SCNdFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNdFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNi8","package":"druntime","parentType":"","signature":"_cstr SCNi8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNi8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNi16","package":"druntime","parentType":"","signature":"_cstr SCNi16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNi16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNi32","package":"druntime","parentType":"","signature":"_cstr SCNi32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNi32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNi64","package":"druntime","parentType":"","signature":"_cstr SCNi64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNi64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiLEAST8","package":"druntime","parentType":"","signature":"_cstr SCNiLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiLEAST16","package":"druntime","parentType":"","signature":"_cstr SCNiLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiLEAST32","package":"druntime","parentType":"","signature":"_cstr SCNiLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiLEAST64","package":"druntime","parentType":"","signature":"_cstr SCNiLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiFAST8","package":"druntime","parentType":"","signature":"_cstr SCNiFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiFAST16","package":"druntime","parentType":"","signature":"_cstr SCNiFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiFAST32","package":"druntime","parentType":"","signature":"_cstr SCNiFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNiFAST64","package":"druntime","parentType":"","signature":"_cstr SCNiFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNiFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNo8","package":"druntime","parentType":"","signature":"_cstr SCNo8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNo8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNo16","package":"druntime","parentType":"","signature":"_cstr SCNo16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNo16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNo32","package":"druntime","parentType":"","signature":"_cstr SCNo32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNo32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNo64","package":"druntime","parentType":"","signature":"_cstr SCNo64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNo64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoLEAST8","package":"druntime","parentType":"","signature":"_cstr SCNoLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoLEAST16","package":"druntime","parentType":"","signature":"_cstr SCNoLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoLEAST32","package":"druntime","parentType":"","signature":"_cstr SCNoLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoLEAST64","package":"druntime","parentType":"","signature":"_cstr SCNoLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoFAST8","package":"druntime","parentType":"","signature":"_cstr SCNoFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoFAST16","package":"druntime","parentType":"","signature":"_cstr SCNoFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoFAST32","package":"druntime","parentType":"","signature":"_cstr SCNoFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNoFAST64","package":"druntime","parentType":"","signature":"_cstr SCNoFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNoFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNu8","package":"druntime","parentType":"","signature":"_cstr SCNu8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNu8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNu16","package":"druntime","parentType":"","signature":"_cstr SCNu16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNu16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNu32","package":"druntime","parentType":"","signature":"_cstr SCNu32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNu32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNu64","package":"druntime","parentType":"","signature":"_cstr SCNu64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNu64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuLEAST8","package":"druntime","parentType":"","signature":"_cstr SCNuLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuLEAST16","package":"druntime","parentType":"","signature":"_cstr SCNuLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuLEAST32","package":"druntime","parentType":"","signature":"_cstr SCNuLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuLEAST64","package":"druntime","parentType":"","signature":"_cstr SCNuLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuFAST8","package":"druntime","parentType":"","signature":"_cstr SCNuFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuFAST16","package":"druntime","parentType":"","signature":"_cstr SCNuFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuFAST32","package":"druntime","parentType":"","signature":"_cstr SCNuFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNuFAST64","package":"druntime","parentType":"","signature":"_cstr SCNuFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNuFAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNx8","package":"druntime","parentType":"","signature":"_cstr SCNx8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNx8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNx16","package":"druntime","parentType":"","signature":"_cstr SCNx16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNx16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNx32","package":"druntime","parentType":"","signature":"_cstr SCNx32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNx32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNx64","package":"druntime","parentType":"","signature":"_cstr SCNx64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNx64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxLEAST8","package":"druntime","parentType":"","signature":"_cstr SCNxLEAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxLEAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxLEAST16","package":"druntime","parentType":"","signature":"_cstr SCNxLEAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxLEAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxLEAST32","package":"druntime","parentType":"","signature":"_cstr SCNxLEAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxLEAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxLEAST64","package":"druntime","parentType":"","signature":"_cstr SCNxLEAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxLEAST64"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxFAST8","package":"druntime","parentType":"","signature":"_cstr SCNxFAST8","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxFAST8"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxFAST16","package":"druntime","parentType":"","signature":"_cstr SCNxFAST16","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxFAST16"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxFAST32","package":"druntime","parentType":"","signature":"_cstr SCNxFAST32","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxFAST32"},{"doc":"","kind":"variable","module":"core.stdc.inttypes","name":"SCNxFAST64","package":"druntime","parentType":"","signature":"_cstr SCNxFAST64","url":"/ddoc/druntime/core/stdc/inttypes.html#SCNxFAST64"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.limits","name":"core.stdc.limits","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/limits.html"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"CHAR_BIT","package":"druntime","parentType":"","signature":"CHAR_BIT","url":"/ddoc/druntime/core/stdc/limits.html#CHAR_BIT"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"SCHAR_MIN","package":"druntime","parentType":"","signature":"SCHAR_MIN","url":"/ddoc/druntime/core/stdc/limits.html#SCHAR_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"SCHAR_MAX","package":"druntime","parentType":"","signature":"SCHAR_MAX","url":"/ddoc/druntime/core/stdc/limits.html#SCHAR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"UCHAR_MAX","package":"druntime","parentType":"","signature":"UCHAR_MAX","url":"/ddoc/druntime/core/stdc/limits.html#UCHAR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"CHAR_MIN","package":"druntime","parentType":"","signature":"CHAR_MIN","url":"/ddoc/druntime/core/stdc/limits.html#CHAR_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"CHAR_MAX","package":"druntime","parentType":"","signature":"CHAR_MAX","url":"/ddoc/druntime/core/stdc/limits.html#CHAR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"MB_LEN_MAX","package":"druntime","parentType":"","signature":"MB_LEN_MAX","url":"/ddoc/druntime/core/stdc/limits.html#MB_LEN_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"SHRT_MIN","package":"druntime","parentType":"","signature":"SHRT_MIN","url":"/ddoc/druntime/core/stdc/limits.html#SHRT_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"SHRT_MAX","package":"druntime","parentType":"","signature":"SHRT_MAX","url":"/ddoc/druntime/core/stdc/limits.html#SHRT_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"USHRT_MAX","package":"druntime","parentType":"","signature":"USHRT_MAX","url":"/ddoc/druntime/core/stdc/limits.html#USHRT_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"INT_MIN","package":"druntime","parentType":"","signature":"INT_MIN","url":"/ddoc/druntime/core/stdc/limits.html#INT_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"INT_MAX","package":"druntime","parentType":"","signature":"INT_MAX","url":"/ddoc/druntime/core/stdc/limits.html#INT_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"UINT_MAX","package":"druntime","parentType":"","signature":"UINT_MAX","url":"/ddoc/druntime/core/stdc/limits.html#UINT_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"LONG_MIN","package":"druntime","parentType":"","signature":"LONG_MIN","url":"/ddoc/druntime/core/stdc/limits.html#LONG_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"LONG_MAX","package":"druntime","parentType":"","signature":"LONG_MAX","url":"/ddoc/druntime/core/stdc/limits.html#LONG_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"ULONG_MAX","package":"druntime","parentType":"","signature":"ULONG_MAX","url":"/ddoc/druntime/core/stdc/limits.html#ULONG_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"LLONG_MIN","package":"druntime","parentType":"","signature":"LLONG_MIN","url":"/ddoc/druntime/core/stdc/limits.html#LLONG_MIN"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"LLONG_MAX","package":"druntime","parentType":"","signature":"LLONG_MAX","url":"/ddoc/druntime/core/stdc/limits.html#LLONG_MAX"},{"doc":"","kind":"variable","module":"core.stdc.limits","name":"ULLONG_MAX","package":"druntime","parentType":"","signature":"ULLONG_MAX","url":"/ddoc/druntime/core/stdc/limits.html#ULLONG_MAX"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.locale","name":"core.stdc.locale","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/locale.html"},{"doc":"","kind":"function","module":"core.stdc.locale","name":"setlocale","package":"druntime","parentType":"","signature":"char * setlocale(int  category,  const  scope  char *  locale)","url":"/ddoc/druntime/core/stdc/locale/setlocale.html"},{"doc":"","kind":"function","module":"core.stdc.locale","name":"localeconv","package":"druntime","parentType":"","signature":"lconv * localeconv()","url":"/ddoc/druntime/core/stdc/locale/localeconv.html"},{"doc":"","kind":"struct","module":"core.stdc.locale","name":"lconv","package":"druntime","parentType":"","signature":"lconv","url":"/ddoc/druntime/core/stdc/locale.html#lconv"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.math","name":"core.stdc.math","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/math.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreater","package":"druntime","parentType":"","signature":"int isgreater()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/isgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreater","package":"druntime","parentType":"","signature":"int isgreater()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/isgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreater","package":"druntime","parentType":"","signature":"int isgreater()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/isgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreaterequal","package":"druntime","parentType":"","signature":"int isgreaterequal()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/isgreaterequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreaterequal","package":"druntime","parentType":"","signature":"int isgreaterequal()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/isgreaterequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isgreaterequal","package":"druntime","parentType":"","signature":"int isgreaterequal()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/isgreaterequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isless","package":"druntime","parentType":"","signature":"int isless()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/isless.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isless","package":"druntime","parentType":"","signature":"int isless()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/isless.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isless","package":"druntime","parentType":"","signature":"int isless()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/isless.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessequal","package":"druntime","parentType":"","signature":"int islessequal()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/islessequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessequal","package":"druntime","parentType":"","signature":"int islessequal()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/islessequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessequal","package":"druntime","parentType":"","signature":"int islessequal()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/islessequal.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessgreater","package":"druntime","parentType":"","signature":"int islessgreater()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/islessgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessgreater","package":"druntime","parentType":"","signature":"int islessgreater()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/islessgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"islessgreater","package":"druntime","parentType":"","signature":"int islessgreater()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/islessgreater.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isunordered","package":"druntime","parentType":"","signature":"int isunordered()(float  x,  float  y)","url":"/ddoc/druntime/core/stdc/math/isunordered.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isunordered","package":"druntime","parentType":"","signature":"int isunordered()(double  x,  double  y)","url":"/ddoc/druntime/core/stdc/math/isunordered.html"},{"doc":"","kind":"function","module":"core.stdc.math","name":"isunordered","package":"druntime","parentType":"","signature":"int isunordered()(real  x,  real  y)","url":"/ddoc/druntime/core/stdc/math/isunordered.html"},{"doc":"","kind":"alias","module":"core.stdc.math","name":"float_t","package":"druntime","parentType":"","signature":"float_t = float","url":"/ddoc/druntime/core/stdc/math.html#float_t"},{"doc":"","kind":"alias","module":"core.stdc.math","name":"double_t","package":"druntime","parentType":"","signature":"double_t = double","url":"/ddoc/druntime/core/stdc/math.html#double_t"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"HUGE_VAL","package":"druntime","parentType":"","signature":"double HUGE_VAL","url":"/ddoc/druntime/core/stdc/math.html#HUGE_VAL"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"HUGE_VALF","package":"druntime","parentType":"","signature":"double HUGE_VALF","url":"/ddoc/druntime/core/stdc/math.html#HUGE_VALF"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"HUGE_VALL","package":"druntime","parentType":"","signature":"double HUGE_VALL","url":"/ddoc/druntime/core/stdc/math.html#HUGE_VALL"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"INFINITY","package":"druntime","parentType":"","signature":"float INFINITY","url":"/ddoc/druntime/core/stdc/math.html#INFINITY"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"NAN","package":"druntime","parentType":"","signature":"float NAN","url":"/ddoc/druntime/core/stdc/math.html#NAN"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"MATH_ERRNO","package":"druntime","parentType":"","signature":"int MATH_ERRNO","url":"/ddoc/druntime/core/stdc/math.html#MATH_ERRNO"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"MATH_ERREXCEPT","package":"druntime","parentType":"","signature":"int MATH_ERREXCEPT","url":"/ddoc/druntime/core/stdc/math.html#MATH_ERREXCEPT"},{"doc":"","kind":"variable","module":"core.stdc.math","name":"math_errhandling","package":"druntime","parentType":"","signature":"int math_errhandling","url":"/ddoc/druntime/core/stdc/math.html#math_errhandling"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.signal","name":"core.stdc.signal","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/signal.html"},{"doc":"","kind":"function","module":"core.stdc.signal","name":"signal","package":"druntime","parentType":"","signature":"sigfn_t signal(int  sig,  sigfn_t func)","url":"/ddoc/druntime/core/stdc/signal/signal.html"},{"doc":"","kind":"function","module":"core.stdc.signal","name":"raise","package":"druntime","parentType":"","signature":"int raise(int  sig)","url":"/ddoc/druntime/core/stdc/signal/raise.html"},{"doc":"","kind":"alias","module":"core.stdc.signal","name":"sig_atomic_t","package":"druntime","parentType":"","signature":"sig_atomic_t = int","url":"/ddoc/druntime/core/stdc/signal.html#sig_atomic_t"},{"doc":"","kind":"alias","module":"core.stdc.signal","name":"sigfn_t","package":"druntime","parentType":"","signature":"sigfn_t = void  function(int)","url":"/ddoc/druntime/core/stdc/signal.html#sigfn_t"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.stdarg","name":"core.stdc.stdarg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stdarg.html"},{"doc":"","kind":"function","module":"core.stdc.stdarg","name":"alignUp","package":"druntime","parentType":"","signature":"T alignUp(size_t alignment =  size_t.sizeof,  T)(T base)","url":"/ddoc/druntime/core/stdc/stdarg/alignUp.html"},{"doc":"A D implementation of the C stdatomic.h header.","kind":"module","module":"core.stdc.stdatomic","name":"core.stdc.stdatomic","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stdatomic.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_is_lock_free","package":"druntime","parentType":"","signature":"bool atomic_is_lock_free(A)(const  shared(A) *  obj)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_is_lock_free.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_flag_clear_impl","package":"druntime","parentType":"","signature":"void atomic_flag_clear_impl()(atomic_flag *  obj)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_flag_clear_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_flag_clear_explicit_impl","package":"druntime","parentType":"","signature":"void atomic_flag_clear_explicit_impl()(atomic_flag *  obj,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_flag_clear_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_flag_test_and_set_impl","package":"druntime","parentType":"","signature":"bool atomic_flag_test_and_set_impl()(atomic_flag *  obj)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_flag_test_and_set_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_flag_test_and_set_explicit_impl","package":"druntime","parentType":"","signature":"bool atomic_flag_test_and_set_explicit_impl()(atomic_flag *  obj,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_flag_test_and_set_explicit_impl.html"},{"doc":"Initializes an atomic variable, the destination should not have any expression associated with it prior to this call.","kind":"function","module":"core.stdc.stdatomic","name":"atomic_init","package":"druntime","parentType":"","signature":"void atomic_init(A,  C)(out  shared(A)  obj,  C desired)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_init.html"},{"doc":"No-op function, doesn't apply to D","kind":"function","module":"core.stdc.stdatomic","name":"kill_dependency","package":"druntime","parentType":"","signature":"A kill_dependency(A)(A y)","url":"/ddoc/druntime/core/stdc/stdatomic/kill_dependency.html"},{"doc":"Don't allow reordering, does not emit any instructions.","kind":"function","module":"core.stdc.stdatomic","name":"atomic_signal_fence_impl","package":"druntime","parentType":"","signature":"void atomic_signal_fence_impl()(memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_signal_fence_impl.html"},{"doc":"Don't allow reordering, and emit a fence instruction.","kind":"function","module":"core.stdc.stdatomic","name":"atomic_thread_fence_impl","package":"druntime","parentType":"","signature":"void atomic_thread_fence_impl()(memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_thread_fence_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_store_impl","package":"druntime","parentType":"","signature":"void atomic_store_impl(A,  C)(shared(A) *  obj,  C desired)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_store_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_store_explicit_impl","package":"druntime","parentType":"","signature":"void atomic_store_explicit_impl(A,  C)(shared(A) *  obj,  C desired,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_store_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_load_impl","package":"druntime","parentType":"","signature":"A atomic_load_impl(A)(const  shared(A) *  obj)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_load_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_load_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_load_explicit_impl(A)(const  shared(A) *  obj,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_load_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_exchange_impl","package":"druntime","parentType":"","signature":"A atomic_exchange_impl(A,  C)(shared(A) *  obj,  C desired)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_exchange_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_exchange_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_exchange_explicit_impl(A,  C)(shared(A) *  obj,  C desired,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_exchange_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_compare_exchange_strong_impl","package":"druntime","parentType":"","signature":"bool atomic_compare_exchange_strong_impl(A,  B,  C)(shared(A) *  obj,  B *  expected,  C desired)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_compare_exchange_strong_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_compare_exchange_weak_impl","package":"druntime","parentType":"","signature":"bool atomic_compare_exchange_weak_impl(A,  B,  C)(shared(A) *  obj,  B *  expected,  C desired)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_compare_exchange_weak_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_compare_exchange_strong_explicit_impl","package":"druntime","parentType":"","signature":"bool atomic_compare_exchange_strong_explicit_impl(A,  B,  C)(shared(A) *  obj,  B *  expected,  C desired,  memory_order succ,  memory_order fail)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_compare_exchange_strong_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_compare_exchange_weak_explicit_impl","package":"druntime","parentType":"","signature":"bool atomic_compare_exchange_weak_explicit_impl(A,  B,  C)(shared(A) *  obj,  B *  expected,  C desired,  memory_order succ,  memory_order fail)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_compare_exchange_weak_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_add_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_add_impl(A,  M)(shared(A) *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_add_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_sub_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_sub_impl(A,  M)(shared(A) *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_sub_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_add_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_add_explicit_impl(A,  M)(shared(A) *  obj,  M arg,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_add_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_sub_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_sub_explicit_impl(A,  M)(shared(A) *  obj,  M arg,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_sub_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_or_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_or_impl(A,  M)(shared(A) *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_or_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_or_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_or_explicit_impl(A,  M)(shared(A) *  obj,  M arg,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_or_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_xor_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_xor_impl(A,  M)(shared(A) *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_xor_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_xor_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_xor_explicit_impl(A,  M)(shared(A) *  obj,  M arg,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_xor_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_and_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_and_impl(A,  M)(shared(A) *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_and_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_and_explicit_impl","package":"druntime","parentType":"","signature":"A atomic_fetch_and_explicit_impl(A,  M)(shared(A) *  obj,  M arg,  memory_order order)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_and_explicit_impl.html"},{"doc":"","kind":"function","module":"core.stdc.stdatomic","name":"atomic_fetch_op","package":"druntime","parentType":"","signature":"A atomic_fetch_op(memory_order order,  string op,  A,  M)(A *  obj,  M arg)","url":"/ddoc/druntime/core/stdc/stdatomic/atomic_fetch_op.html"},{"doc":"","kind":"enum","module":"core.stdc.stdatomic","name":"memory_order","package":"druntime","parentType":"","signature":"memory_order","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"No ordering provided","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_relaxed","package":"druntime","parentType":"","signature":"memory_order_relaxed = MemoryOrder.raw","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"As per cppreference.com circa 2015 no compiler supports consume memory order and in practice it devolves to acquire.","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_consume","package":"druntime","parentType":"","signature":"memory_order_consume = MemoryOrder.acq","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"Prevent reordering before operation","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_acquire","package":"druntime","parentType":"","signature":"memory_order_acquire = MemoryOrder.acq","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"Prevent reordering after operation","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_release","package":"druntime","parentType":"","signature":"memory_order_release = MemoryOrder.rel","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"Prevent reordering before and after operation","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_acq_rel","package":"druntime","parentType":"","signature":"memory_order_acq_rel = MemoryOrder.acq_rel","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"Prevent reordering before for read operations and after for writes.","kind":"enum_member","module":"core.stdc.stdatomic","name":"memory_order_seq_cst","package":"druntime","parentType":"","signature":"memory_order_seq_cst = MemoryOrder.seq","url":"/ddoc/druntime/core/stdc/stdatomic.html#memory_order"},{"doc":"Guaranteed to be a atomic boolean type","kind":"struct","module":"core.stdc.stdatomic","name":"atomic_flag","package":"druntime","parentType":"","signature":"atomic_flag","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_flag"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_bool","package":"druntime","parentType":"","signature":"atomic_bool = shared(bool)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_bool"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_char","package":"druntime","parentType":"","signature":"atomic_char = shared(char)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_char"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_schar","package":"druntime","parentType":"","signature":"atomic_schar = shared(byte)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_schar"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uchar","package":"druntime","parentType":"","signature":"atomic_uchar = shared(ubyte)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uchar"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_short","package":"druntime","parentType":"","signature":"atomic_short = shared(short)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_short"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_ushort","package":"druntime","parentType":"","signature":"atomic_ushort = shared(ushort)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_ushort"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int","package":"druntime","parentType":"","signature":"atomic_int = shared(int)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint","package":"druntime","parentType":"","signature":"atomic_uint = shared(uint)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_long","package":"druntime","parentType":"","signature":"atomic_long = shared(c_long)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_long"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_ulong","package":"druntime","parentType":"","signature":"atomic_ulong = shared(c_ulong)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_ulong"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_llong","package":"druntime","parentType":"","signature":"atomic_llong = shared(long)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_llong"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_ullong","package":"druntime","parentType":"","signature":"atomic_ullong = shared(ulong)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_ullong"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_char8_t","package":"druntime","parentType":"","signature":"atomic_char8_t = shared(char)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_char8_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_char16_t","package":"druntime","parentType":"","signature":"atomic_char16_t = shared(wchar)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_char16_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_char32_t","package":"druntime","parentType":"","signature":"atomic_char32_t = shared(dchar)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_char32_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_wchar_t","package":"druntime","parentType":"","signature":"atomic_wchar_t = shared(wchar_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_wchar_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_least8_t","package":"druntime","parentType":"","signature":"atomic_int_least8_t = shared(int_least8_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_least8_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_least8_t","package":"druntime","parentType":"","signature":"atomic_uint_least8_t = shared(uint_least8_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_least8_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_least16_t","package":"druntime","parentType":"","signature":"atomic_int_least16_t = shared(int_least16_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_least16_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_least16_t","package":"druntime","parentType":"","signature":"atomic_uint_least16_t = shared(uint_least16_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_least16_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_least32_t","package":"druntime","parentType":"","signature":"atomic_int_least32_t = shared(int_least32_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_least32_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_least32_t","package":"druntime","parentType":"","signature":"atomic_uint_least32_t = shared(uint_least32_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_least32_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_least64_t","package":"druntime","parentType":"","signature":"atomic_int_least64_t = shared(int_least64_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_least64_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_least64_t","package":"druntime","parentType":"","signature":"atomic_uint_least64_t = shared(uint_least64_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_least64_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_fast8_t","package":"druntime","parentType":"","signature":"atomic_int_fast8_t = shared(int_fast8_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_fast8_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_fast8_t","package":"druntime","parentType":"","signature":"atomic_uint_fast8_t = shared(uint_fast8_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_fast8_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_fast16_t","package":"druntime","parentType":"","signature":"atomic_int_fast16_t = shared(int_fast16_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_fast16_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_fast16_t","package":"druntime","parentType":"","signature":"atomic_uint_fast16_t = shared(uint_fast16_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_fast16_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_fast32_t","package":"druntime","parentType":"","signature":"atomic_int_fast32_t = shared(int_fast32_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_fast32_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_fast32_t","package":"druntime","parentType":"","signature":"atomic_uint_fast32_t = shared(uint_fast32_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_fast32_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_int_fast64_t","package":"druntime","parentType":"","signature":"atomic_int_fast64_t = shared(int_fast64_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_int_fast64_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uint_fast64_t","package":"druntime","parentType":"","signature":"atomic_uint_fast64_t = shared(uint_fast64_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uint_fast64_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_intptr_t","package":"druntime","parentType":"","signature":"atomic_intptr_t = shared(intptr_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_intptr_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uintptr_t","package":"druntime","parentType":"","signature":"atomic_uintptr_t = shared(uintptr_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uintptr_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_size_t","package":"druntime","parentType":"","signature":"atomic_size_t = shared(size_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_size_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_ptrdiff_t","package":"druntime","parentType":"","signature":"atomic_ptrdiff_t = shared(ptrdiff_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_ptrdiff_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_intmax_t","package":"druntime","parentType":"","signature":"atomic_intmax_t = shared(intmax_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_intmax_t"},{"doc":"","kind":"alias","module":"core.stdc.stdatomic","name":"atomic_uintmax_t","package":"druntime","parentType":"","signature":"atomic_uintmax_t = shared(uintmax_t)","url":"/ddoc/druntime/core/stdc/stdatomic.html#atomic_uintmax_t"},{"doc":"","kind":"variable","module":"core.stdc.stdatomic","name":"ATOMIC_FLAG_INIT","package":"druntime","parentType":"","signature":"ATOMIC_FLAG_INIT","url":"/ddoc/druntime/core/stdc/stdatomic.html#ATOMIC_FLAG_INIT"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.stddef","name":"core.stdc.stddef","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stddef.html"},{"doc":"","kind":"alias","module":"core.stdc.stddef","name":"nullptr_t","package":"druntime","parentType":"","signature":"nullptr_t = typeof(null)","url":"/ddoc/druntime/core/stdc/stddef.html#nullptr_t"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.stdint","name":"core.stdc.stdint","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stdint.html"},{"doc":"","kind":"function","module":"core.stdc.stdint","name":"_typify","package":"druntime","parentType":"","signature":"T _typify(T)(T val)","url":"/ddoc/druntime/core/stdc/stdint/_typify.html"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"INT8_C","package":"druntime","parentType":"","signature":"INT8_C = _typify!int8_t","url":"/ddoc/druntime/core/stdc/stdint.html#INT8_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"INT16_C","package":"druntime","parentType":"","signature":"INT16_C = _typify!int16_t","url":"/ddoc/druntime/core/stdc/stdint.html#INT16_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"INT32_C","package":"druntime","parentType":"","signature":"INT32_C = _typify!int32_t","url":"/ddoc/druntime/core/stdc/stdint.html#INT32_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"INT64_C","package":"druntime","parentType":"","signature":"INT64_C = _typify!int64_t","url":"/ddoc/druntime/core/stdc/stdint.html#INT64_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"UINT8_C","package":"druntime","parentType":"","signature":"UINT8_C = _typify!uint8_t","url":"/ddoc/druntime/core/stdc/stdint.html#UINT8_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"UINT16_C","package":"druntime","parentType":"","signature":"UINT16_C = _typify!uint16_t","url":"/ddoc/druntime/core/stdc/stdint.html#UINT16_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"UINT32_C","package":"druntime","parentType":"","signature":"UINT32_C = _typify!uint32_t","url":"/ddoc/druntime/core/stdc/stdint.html#UINT32_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"UINT64_C","package":"druntime","parentType":"","signature":"UINT64_C = _typify!uint64_t","url":"/ddoc/druntime/core/stdc/stdint.html#UINT64_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"INTMAX_C","package":"druntime","parentType":"","signature":"INTMAX_C = _typify!intmax_t","url":"/ddoc/druntime/core/stdc/stdint.html#INTMAX_C"},{"doc":"","kind":"alias","module":"core.stdc.stdint","name":"UINTMAX_C","package":"druntime","parentType":"","signature":"UINTMAX_C = _typify!uintmax_t","url":"/ddoc/druntime/core/stdc/stdint.html#UINTMAX_C"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT8_MIN","package":"druntime","parentType":"","signature":"int8_t INT8_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT8_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT8_MAX","package":"druntime","parentType":"","signature":"int8_t INT8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT16_MIN","package":"druntime","parentType":"","signature":"int16_t INT16_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT16_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT16_MAX","package":"druntime","parentType":"","signature":"int16_t INT16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT32_MIN","package":"druntime","parentType":"","signature":"int32_t INT32_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT32_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT32_MAX","package":"druntime","parentType":"","signature":"int32_t INT32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT64_MIN","package":"druntime","parentType":"","signature":"int64_t INT64_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT64_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT64_MAX","package":"druntime","parentType":"","signature":"int64_t INT64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT8_MAX","package":"druntime","parentType":"","signature":"uint8_t UINT8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT16_MAX","package":"druntime","parentType":"","signature":"uint16_t UINT16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT32_MAX","package":"druntime","parentType":"","signature":"uint32_t UINT32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT64_MAX","package":"druntime","parentType":"","signature":"uint64_t UINT64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST8_MIN","package":"druntime","parentType":"","signature":"int_least8_t INT_LEAST8_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST8_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST8_MAX","package":"druntime","parentType":"","signature":"int_least8_t INT_LEAST8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST16_MIN","package":"druntime","parentType":"","signature":"int_least16_t INT_LEAST16_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST16_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST16_MAX","package":"druntime","parentType":"","signature":"int_least16_t INT_LEAST16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST32_MIN","package":"druntime","parentType":"","signature":"int_least32_t INT_LEAST32_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST32_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST32_MAX","package":"druntime","parentType":"","signature":"int_least32_t INT_LEAST32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST64_MIN","package":"druntime","parentType":"","signature":"int_least64_t INT_LEAST64_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST64_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_LEAST64_MAX","package":"druntime","parentType":"","signature":"int_least64_t INT_LEAST64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_LEAST64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_LEAST8_MAX","package":"druntime","parentType":"","signature":"uint_least8_t UINT_LEAST8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_LEAST8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_LEAST16_MAX","package":"druntime","parentType":"","signature":"uint_least16_t UINT_LEAST16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_LEAST16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_LEAST32_MAX","package":"druntime","parentType":"","signature":"uint_least32_t UINT_LEAST32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_LEAST32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_LEAST64_MAX","package":"druntime","parentType":"","signature":"uint_least64_t UINT_LEAST64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_LEAST64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST8_MIN","package":"druntime","parentType":"","signature":"int_fast8_t INT_FAST8_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST8_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST8_MAX","package":"druntime","parentType":"","signature":"int_fast8_t INT_FAST8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST16_MIN","package":"druntime","parentType":"","signature":"int_fast16_t INT_FAST16_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST16_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST16_MAX","package":"druntime","parentType":"","signature":"int_fast16_t INT_FAST16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST32_MIN","package":"druntime","parentType":"","signature":"int_fast32_t INT_FAST32_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST32_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST32_MAX","package":"druntime","parentType":"","signature":"int_fast32_t INT_FAST32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST64_MIN","package":"druntime","parentType":"","signature":"int_fast64_t INT_FAST64_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST64_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INT_FAST64_MAX","package":"druntime","parentType":"","signature":"int_fast64_t INT_FAST64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INT_FAST64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST8_MIN","package":"druntime","parentType":"","signature":"uint_fast8_t UINT_FAST8_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST8_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST8_MAX","package":"druntime","parentType":"","signature":"uint_fast8_t UINT_FAST8_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST8_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST16_MIN","package":"druntime","parentType":"","signature":"uint_fast16_t UINT_FAST16_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST16_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST16_MAX","package":"druntime","parentType":"","signature":"uint_fast16_t UINT_FAST16_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST16_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST32_MIN","package":"druntime","parentType":"","signature":"uint_fast32_t UINT_FAST32_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST32_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST32_MAX","package":"druntime","parentType":"","signature":"uint_fast32_t UINT_FAST32_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST32_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST64_MIN","package":"druntime","parentType":"","signature":"uint_fast64_t UINT_FAST64_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST64_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINT_FAST64_MAX","package":"druntime","parentType":"","signature":"uint_fast64_t UINT_FAST64_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINT_FAST64_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INTPTR_MIN","package":"druntime","parentType":"","signature":"intptr_t INTPTR_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INTPTR_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INTPTR_MAX","package":"druntime","parentType":"","signature":"intptr_t INTPTR_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INTPTR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINTPTR_MIN","package":"druntime","parentType":"","signature":"uintptr_t UINTPTR_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#UINTPTR_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINTPTR_MAX","package":"druntime","parentType":"","signature":"uintptr_t UINTPTR_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINTPTR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INTMAX_MIN","package":"druntime","parentType":"","signature":"intmax_t INTMAX_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#INTMAX_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"INTMAX_MAX","package":"druntime","parentType":"","signature":"intmax_t INTMAX_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#INTMAX_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"UINTMAX_MAX","package":"druntime","parentType":"","signature":"uintmax_t UINTMAX_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#UINTMAX_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"PTRDIFF_MIN","package":"druntime","parentType":"","signature":"ptrdiff_t PTRDIFF_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#PTRDIFF_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"PTRDIFF_MAX","package":"druntime","parentType":"","signature":"ptrdiff_t PTRDIFF_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#PTRDIFF_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"SIG_ATOMIC_MIN","package":"druntime","parentType":"","signature":"sig_atomic_t SIG_ATOMIC_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#SIG_ATOMIC_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"SIG_ATOMIC_MAX","package":"druntime","parentType":"","signature":"sig_atomic_t SIG_ATOMIC_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#SIG_ATOMIC_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"SIZE_MAX","package":"druntime","parentType":"","signature":"size_t SIZE_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#SIZE_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"WCHAR_MIN","package":"druntime","parentType":"","signature":"wchar_t WCHAR_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#WCHAR_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"WCHAR_MAX","package":"druntime","parentType":"","signature":"wchar_t WCHAR_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#WCHAR_MAX"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"WINT_MIN","package":"druntime","parentType":"","signature":"wint_t WINT_MIN","url":"/ddoc/druntime/core/stdc/stdint.html#WINT_MIN"},{"doc":"","kind":"variable","module":"core.stdc.stdint","name":"WINT_MAX","package":"druntime","parentType":"","signature":"wint_t WINT_MAX","url":"/ddoc/druntime/core/stdc/stdint.html#WINT_MAX"},{"doc":"D header file for C99 <stdio.h>","kind":"module","module":"core.stdc.stdio","name":"core.stdc.stdio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stdio.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"remove","package":"druntime","parentType":"","signature":"int remove(scope  const  char *  filename)","url":"/ddoc/druntime/core/stdc/stdio/remove.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"rename","package":"druntime","parentType":"","signature":"int rename(scope  const  char *  from,  scope  const  char *  to)","url":"/ddoc/druntime/core/stdc/stdio/rename.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"tmpfile","package":"druntime","parentType":"","signature":"FILE * tmpfile()","url":"/ddoc/druntime/core/stdc/stdio/tmpfile.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"tmpnam","package":"druntime","parentType":"","signature":"char * tmpnam(char *  s)","url":"/ddoc/druntime/core/stdc/stdio/tmpnam.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fclose","package":"druntime","parentType":"","signature":"int fclose(FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fclose.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fflush","package":"druntime","parentType":"","signature":"int fflush(FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fflush.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fopen","package":"druntime","parentType":"","signature":"FILE * fopen(scope  const  char *  filename,  scope  const  char *  mode)","url":"/ddoc/druntime/core/stdc/stdio/fopen.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"freopen","package":"druntime","parentType":"","signature":"FILE * freopen(scope  const  char *  filename,  scope  const  char *  mode,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/freopen.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"setbuf","package":"druntime","parentType":"","signature":"void setbuf(FILE *  stream,  char *  buf)","url":"/ddoc/druntime/core/stdc/stdio/setbuf.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"setvbuf","package":"druntime","parentType":"","signature":"int setvbuf(FILE *  stream,  char *  buf,  int  mode,  size_t size)","url":"/ddoc/druntime/core/stdc/stdio/setvbuf.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fgetc","package":"druntime","parentType":"","signature":"int fgetc(FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fgetc.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fputc","package":"druntime","parentType":"","signature":"int fputc(int  c,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fputc.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fgets","package":"druntime","parentType":"","signature":"char * fgets(char *  s,  int  n,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fgets.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fputs","package":"druntime","parentType":"","signature":"int fputs(scope  const  char *  s,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fputs.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"gets","package":"druntime","parentType":"","signature":"char * gets(char *  s)","url":"/ddoc/druntime/core/stdc/stdio/gets.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"puts","package":"druntime","parentType":"","signature":"int puts(scope  const  char *  s)","url":"/ddoc/druntime/core/stdc/stdio/puts.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"getchar","package":"druntime","parentType":"","signature":"int getchar()()","url":"/ddoc/druntime/core/stdc/stdio/getchar.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"putchar","package":"druntime","parentType":"","signature":"int putchar()(int  c)","url":"/ddoc/druntime/core/stdc/stdio/putchar.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"ungetc","package":"druntime","parentType":"","signature":"int ungetc(int  c,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/ungetc.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fread","package":"druntime","parentType":"","signature":"size_t fread(scope  void *  ptr,  size_t size,  size_t nmemb,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fread.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fwrite","package":"druntime","parentType":"","signature":"size_t fwrite(scope  const  void *  ptr,  size_t size,  size_t nmemb,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/fwrite.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fgetpos","package":"druntime","parentType":"","signature":"int fgetpos(FILE *  stream,  scope  fpos_t *  pos)","url":"/ddoc/druntime/core/stdc/stdio/fgetpos.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fsetpos","package":"druntime","parentType":"","signature":"int fsetpos(FILE *  stream,  scope  const  fpos_t *  pos)","url":"/ddoc/druntime/core/stdc/stdio/fsetpos.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"fseek","package":"druntime","parentType":"","signature":"int fseek(FILE *  stream,  c_long offset,  int  whence)","url":"/ddoc/druntime/core/stdc/stdio/fseek.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"ftell","package":"druntime","parentType":"","signature":"c_long ftell(FILE *  stream)","url":"/ddoc/druntime/core/stdc/stdio/ftell.html"},{"doc":"","kind":"function","module":"core.stdc.stdio","name":"perror","package":"druntime","parentType":"","signature":"void perror(scope  const  char *  s)","url":"/ddoc/druntime/core/stdc/stdio/perror.html"},{"doc":"","kind":"alias","module":"core.stdc.stdio","name":"getc","package":"druntime","parentType":"","signature":"getc = fgetc","url":"/ddoc/druntime/core/stdc/stdio.html#getc"},{"doc":"","kind":"alias","module":"core.stdc.stdio","name":"putc","package":"druntime","parentType":"","signature":"putc = fputc","url":"/ddoc/druntime/core/stdc/stdio.html#putc"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.stdlib","name":"core.stdc.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/stdlib.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"bsearch","package":"druntime","parentType":"","signature":"inout(void) * bsearch(const  void *  key,  inout(void) *  base,  size_t nmemb,  size_t size,  _compare_fp_t compar)","url":"/ddoc/druntime/core/stdc/stdlib/bsearch.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"qsort","package":"druntime","parentType":"","signature":"void qsort(void *  base,  size_t nmemb,  size_t size,  _compare_fp_t compar)","url":"/ddoc/druntime/core/stdc/stdlib/qsort.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"atof","package":"druntime","parentType":"","signature":"double atof(scope  const  char *  nptr)","url":"/ddoc/druntime/core/stdc/stdlib/atof.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"atoi","package":"druntime","parentType":"","signature":"int atoi(scope  const  char *  nptr)","url":"/ddoc/druntime/core/stdc/stdlib/atoi.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"atol","package":"druntime","parentType":"","signature":"c_long atol(scope  const  char *  nptr)","url":"/ddoc/druntime/core/stdc/stdlib/atol.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"atoll","package":"druntime","parentType":"","signature":"long atoll(scope  const  char *  nptr)","url":"/ddoc/druntime/core/stdc/stdlib/atoll.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtod","package":"druntime","parentType":"","signature":"double strtod(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr)","url":"/ddoc/druntime/core/stdc/stdlib/strtod.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtof","package":"druntime","parentType":"","signature":"float strtof(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr)","url":"/ddoc/druntime/core/stdc/stdlib/strtof.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtol","package":"druntime","parentType":"","signature":"c_long strtol(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/stdlib/strtol.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtoll","package":"druntime","parentType":"","signature":"long strtoll(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/stdlib/strtoll.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtoul","package":"druntime","parentType":"","signature":"c_ulong strtoul(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/stdlib/strtoul.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"strtoull","package":"druntime","parentType":"","signature":"ulong strtoull(scope  inout(char) *  nptr,  scope  inout(char) * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/stdlib/strtoull.html"},{"doc":"These two were added to Bionic in Lollipop.","kind":"function","module":"core.stdc.stdlib","name":"rand","package":"druntime","parentType":"","signature":"int rand()","url":"/ddoc/druntime/core/stdc/stdlib/rand.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"srand","package":"druntime","parentType":"","signature":"void srand(uint  seed)","url":"/ddoc/druntime/core/stdc/stdlib/srand.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"malloc","package":"druntime","parentType":"","signature":"void * malloc(size_t size)","url":"/ddoc/druntime/core/stdc/stdlib/malloc.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"calloc","package":"druntime","parentType":"","signature":"void * calloc(size_t nmemb,  size_t size)","url":"/ddoc/druntime/core/stdc/stdlib/calloc.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"realloc","package":"druntime","parentType":"","signature":"void * realloc(void *  ptr,  size_t size)","url":"/ddoc/druntime/core/stdc/stdlib/realloc.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"free","package":"druntime","parentType":"","signature":"void free(void *  ptr)","url":"/ddoc/druntime/core/stdc/stdlib/free.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"abort","package":"druntime","parentType":"","signature":"noreturn abort()","url":"/ddoc/druntime/core/stdc/stdlib/abort.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"exit","package":"druntime","parentType":"","signature":"noreturn exit(int  status)","url":"/ddoc/druntime/core/stdc/stdlib/exit.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"atexit","package":"druntime","parentType":"","signature":"int atexit(void  function()  func)","url":"/ddoc/druntime/core/stdc/stdlib/atexit.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"_Exit","package":"druntime","parentType":"","signature":"noreturn _Exit(int  status)","url":"/ddoc/druntime/core/stdc/stdlib/_Exit.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"getenv","package":"druntime","parentType":"","signature":"char * getenv(scope  const  char *  name)","url":"/ddoc/druntime/core/stdc/stdlib/getenv.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"system","package":"druntime","parentType":"","signature":"int system(scope  const  char *  string)","url":"/ddoc/druntime/core/stdc/stdlib/system.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"abs","package":"druntime","parentType":"","signature":"int abs(int  j)","url":"/ddoc/druntime/core/stdc/stdlib/abs.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"labs","package":"druntime","parentType":"","signature":"c_long labs(c_long j)","url":"/ddoc/druntime/core/stdc/stdlib/labs.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"llabs","package":"druntime","parentType":"","signature":"long llabs(long  j)","url":"/ddoc/druntime/core/stdc/stdlib/llabs.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"div","package":"druntime","parentType":"","signature":"div_t div(int  numer,  int  denom)","url":"/ddoc/druntime/core/stdc/stdlib/div.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"ldiv","package":"druntime","parentType":"","signature":"ldiv_t ldiv(c_long numer,  c_long denom)","url":"/ddoc/druntime/core/stdc/stdlib/ldiv.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"lldiv","package":"druntime","parentType":"","signature":"lldiv_t lldiv(long  numer,  long  denom)","url":"/ddoc/druntime/core/stdc/stdlib/lldiv.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"mblen","package":"druntime","parentType":"","signature":"int mblen(scope  const  char *  s,  size_t n)","url":"/ddoc/druntime/core/stdc/stdlib/mblen.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"mbtowc","package":"druntime","parentType":"","signature":"int mbtowc(scope  wchar_t *  pwc,  scope  const  char *  s,  size_t n)","url":"/ddoc/druntime/core/stdc/stdlib/mbtowc.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"wctomb","package":"druntime","parentType":"","signature":"int wctomb(scope  char *  s,  wchar_t wc)","url":"/ddoc/druntime/core/stdc/stdlib/wctomb.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"mbstowcs","package":"druntime","parentType":"","signature":"size_t mbstowcs(scope  wchar_t *  pwcs,  scope  const  char *  s,  size_t n)","url":"/ddoc/druntime/core/stdc/stdlib/mbstowcs.html"},{"doc":"","kind":"function","module":"core.stdc.stdlib","name":"wcstombs","package":"druntime","parentType":"","signature":"size_t wcstombs(scope  char *  s,  scope  const  wchar_t *  pwcs,  size_t n)","url":"/ddoc/druntime/core/stdc/stdlib/wcstombs.html"},{"doc":"","kind":"alias","module":"core.stdc.stdlib","name":"_compare_fp_t","package":"druntime","parentType":"","signature":"_compare_fp_t = int  function(const  void *,  const  void *)","url":"/ddoc/druntime/core/stdc/stdlib.html#_compare_fp_t"},{"doc":"","kind":"struct","module":"core.stdc.stdlib","name":"div_t","package":"druntime","parentType":"","signature":"div_t","url":"/ddoc/druntime/core/stdc/stdlib.html#div_t"},{"doc":"","kind":"struct","module":"core.stdc.stdlib","name":"ldiv_t","package":"druntime","parentType":"","signature":"ldiv_t","url":"/ddoc/druntime/core/stdc/stdlib.html#ldiv_t"},{"doc":"","kind":"struct","module":"core.stdc.stdlib","name":"lldiv_t","package":"druntime","parentType":"","signature":"lldiv_t","url":"/ddoc/druntime/core/stdc/stdlib.html#lldiv_t"},{"doc":"","kind":"variable","module":"core.stdc.stdlib","name":"EXIT_SUCCESS","package":"druntime","parentType":"","signature":"EXIT_SUCCESS","url":"/ddoc/druntime/core/stdc/stdlib.html#EXIT_SUCCESS"},{"doc":"","kind":"variable","module":"core.stdc.stdlib","name":"EXIT_FAILURE","package":"druntime","parentType":"","signature":"EXIT_FAILURE","url":"/ddoc/druntime/core/stdc/stdlib.html#EXIT_FAILURE"},{"doc":"","kind":"variable","module":"core.stdc.stdlib","name":"MB_CUR_MAX","package":"druntime","parentType":"","signature":"MB_CUR_MAX","url":"/ddoc/druntime/core/stdc/stdlib.html#MB_CUR_MAX"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.string","name":"core.stdc.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/string.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"memchr","package":"druntime","parentType":"","signature":"inout(void) * memchr(return  scope  inout  void *  s,  int  c,  size_t n)","url":"/ddoc/druntime/core/stdc/string/memchr.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"memcmp","package":"druntime","parentType":"","signature":"int memcmp(scope  const  void *  s1,  scope  const  void *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/memcmp.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"memcpy","package":"druntime","parentType":"","signature":"void * memcpy(return  scope  void *  s1,  scope  const  void *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/memcpy.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"memmove","package":"druntime","parentType":"","signature":"void * memmove(return  scope  void *  s1,  scope  const  void *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/memmove.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"memset","package":"druntime","parentType":"","signature":"void * memset(return  scope  void *  s,  int  c,  size_t n)","url":"/ddoc/druntime/core/stdc/string/memset.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strcat","package":"druntime","parentType":"","signature":"char * strcat(return  scope  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strcat.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strchr","package":"druntime","parentType":"","signature":"inout(char) * strchr(return  scope  inout(char) *  s,  int  c)","url":"/ddoc/druntime/core/stdc/string/strchr.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strcmp","package":"druntime","parentType":"","signature":"int strcmp(scope  const  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strcmp.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strcoll","package":"druntime","parentType":"","signature":"int strcoll(scope  const  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strcoll.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strcpy","package":"druntime","parentType":"","signature":"char * strcpy(return  scope  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strcpy.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strcspn","package":"druntime","parentType":"","signature":"size_t strcspn(scope  const  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strcspn.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strdup","package":"druntime","parentType":"","signature":"char * strdup(scope  const  char  * s)","url":"/ddoc/druntime/core/stdc/string/strdup.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strndup","package":"druntime","parentType":"","signature":"char * strndup(scope  const  char  * str,  size_t size)","url":"/ddoc/druntime/core/stdc/string/strndup.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strerror","package":"druntime","parentType":"","signature":"char * strerror(int  errnum)","url":"/ddoc/druntime/core/stdc/string/strerror.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strlen","package":"druntime","parentType":"","signature":"size_t strlen(scope  const  char *  s)","url":"/ddoc/druntime/core/stdc/string/strlen.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strncat","package":"druntime","parentType":"","signature":"char * strncat(return  scope  char *  s1,  scope  const  char *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/strncat.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strncmp","package":"druntime","parentType":"","signature":"int strncmp(scope  const  char *  s1,  scope  const  char *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/strncmp.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strncpy","package":"druntime","parentType":"","signature":"char * strncpy(return  scope  char *  s1,  scope  const  char *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/strncpy.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strpbrk","package":"druntime","parentType":"","signature":"inout(char) * strpbrk(return  scope  inout(char) *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strpbrk.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strrchr","package":"druntime","parentType":"","signature":"inout(char) * strrchr(return  scope  inout(char) *  s,  int  c)","url":"/ddoc/druntime/core/stdc/string/strrchr.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strspn","package":"druntime","parentType":"","signature":"size_t strspn(scope  const  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strspn.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strstr","package":"druntime","parentType":"","signature":"inout(char) * strstr(return  scope  inout(char) *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strstr.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strtok","package":"druntime","parentType":"","signature":"char * strtok(return  scope  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/stdc/string/strtok.html"},{"doc":"","kind":"function","module":"core.stdc.string","name":"strxfrm","package":"druntime","parentType":"","signature":"size_t strxfrm(scope  char *  s1,  scope  const  char *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/string/strxfrm.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.tgmath","name":"core.stdc.tgmath","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/tgmath.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.time","name":"core.stdc.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/time.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"difftime","package":"druntime","parentType":"","signature":"double difftime(time_t time1,  time_t time0)","url":"/ddoc/druntime/core/stdc/time/difftime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"mktime","package":"druntime","parentType":"","signature":"time_t mktime(scope  tm *  timeptr)","url":"/ddoc/druntime/core/stdc/time/mktime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"time","package":"druntime","parentType":"","signature":"time_t time(scope  time_t *  timer)","url":"/ddoc/druntime/core/stdc/time/time.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"asctime","package":"druntime","parentType":"","signature":"char * asctime(const  scope  tm *  timeptr)","url":"/ddoc/druntime/core/stdc/time/asctime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"ctime","package":"druntime","parentType":"","signature":"char * ctime(const  scope  time_t *  timer)","url":"/ddoc/druntime/core/stdc/time/ctime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"gmtime","package":"druntime","parentType":"","signature":"tm * gmtime(const  scope  time_t *  timer)","url":"/ddoc/druntime/core/stdc/time/gmtime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"localtime","package":"druntime","parentType":"","signature":"tm * localtime(const  scope  time_t *  timer)","url":"/ddoc/druntime/core/stdc/time/localtime.html"},{"doc":"","kind":"function","module":"core.stdc.time","name":"strftime","package":"druntime","parentType":"","signature":"size_t strftime(scope  char *  s,  size_t maxsize,  const  scope  char *  format,  const  scope  tm *  timeptr)","url":"/ddoc/druntime/core/stdc/time/strftime.html"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.wchar_","name":"core.stdc.wchar_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/wchar_.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"fgetwc","package":"druntime","parentType":"","signature":"wint_t fgetwc(FILE *  stream)","url":"/ddoc/druntime/core/stdc/wchar_/fgetwc.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"fputwc","package":"druntime","parentType":"","signature":"wint_t fputwc(wchar_t c,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/wchar_/fputwc.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"fgetws","package":"druntime","parentType":"","signature":"wchar_t * fgetws(wchar_t *  s,  int  n,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/wchar_/fgetws.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"fputws","package":"druntime","parentType":"","signature":"int fputws(const  scope  wchar_t *  s,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/wchar_/fputws.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"getwchar","package":"druntime","parentType":"","signature":"wint_t getwchar()","url":"/ddoc/druntime/core/stdc/wchar_/getwchar.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"putwchar","package":"druntime","parentType":"","signature":"wint_t putwchar(wchar_t c)","url":"/ddoc/druntime/core/stdc/wchar_/putwchar.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"ungetwc","package":"druntime","parentType":"","signature":"wint_t ungetwc(wint_t c,  FILE *  stream)","url":"/ddoc/druntime/core/stdc/wchar_/ungetwc.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstod","package":"druntime","parentType":"","signature":"double wcstod(const  scope  wchar_t *  nptr,  wchar_t * *  endptr)","url":"/ddoc/druntime/core/stdc/wchar_/wcstod.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstof","package":"druntime","parentType":"","signature":"float wcstof(const  scope  wchar_t *  nptr,  wchar_t * *  endptr)","url":"/ddoc/druntime/core/stdc/wchar_/wcstof.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstold","package":"druntime","parentType":"","signature":"real wcstold(const  scope  wchar_t *  nptr,  wchar_t * *  endptr)","url":"/ddoc/druntime/core/stdc/wchar_/wcstold.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstol","package":"druntime","parentType":"","signature":"c_long wcstol(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/wchar_/wcstol.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstoll","package":"druntime","parentType":"","signature":"long wcstoll(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/wchar_/wcstoll.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstoul","package":"druntime","parentType":"","signature":"c_ulong wcstoul(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/wchar_/wcstoul.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstoull","package":"druntime","parentType":"","signature":"ulong wcstoull(const  scope  wchar_t *  nptr,  wchar_t * *  endptr,  int  base)","url":"/ddoc/druntime/core/stdc/wchar_/wcstoull.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcscpy","package":"druntime","parentType":"","signature":"wchar_t * wcscpy(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcscpy.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsncpy","package":"druntime","parentType":"","signature":"wchar_t * wcsncpy(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wcsncpy.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcscat","package":"druntime","parentType":"","signature":"wchar_t * wcscat(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcscat.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsncat","package":"druntime","parentType":"","signature":"wchar_t * wcsncat(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wcsncat.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcscmp","package":"druntime","parentType":"","signature":"int wcscmp(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcscmp.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcscoll","package":"druntime","parentType":"","signature":"int wcscoll(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcscoll.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsncmp","package":"druntime","parentType":"","signature":"int wcsncmp(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wcsncmp.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsxfrm","package":"druntime","parentType":"","signature":"size_t wcsxfrm(scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wcsxfrm.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcschr","package":"druntime","parentType":"","signature":"inout(wchar_t) * wcschr(return  scope  inout(wchar_t) *  s,  wchar_t c)","url":"/ddoc/druntime/core/stdc/wchar_/wcschr.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcscspn","package":"druntime","parentType":"","signature":"size_t wcscspn(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcscspn.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcspbrk","package":"druntime","parentType":"","signature":"inout(wchar_t) * wcspbrk(return  scope  inout(wchar_t) *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcspbrk.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsrchr","package":"druntime","parentType":"","signature":"inout(wchar_t) * wcsrchr(return  scope  inout(wchar_t) *  s,  wchar_t c)","url":"/ddoc/druntime/core/stdc/wchar_/wcsrchr.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsspn","package":"druntime","parentType":"","signature":"size_t wcsspn(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcsspn.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsstr","package":"druntime","parentType":"","signature":"inout(wchar_t) * wcsstr(return  scope  inout(wchar_t) *  s1,  scope  const  wchar_t *  s2)","url":"/ddoc/druntime/core/stdc/wchar_/wcsstr.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcstok","package":"druntime","parentType":"","signature":"wchar_t * wcstok(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  wchar_t * *  ptr)","url":"/ddoc/druntime/core/stdc/wchar_/wcstok.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcslen","package":"druntime","parentType":"","signature":"size_t wcslen(scope  const  wchar_t *  s)","url":"/ddoc/druntime/core/stdc/wchar_/wcslen.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wmemchr","package":"druntime","parentType":"","signature":"inout(wchar_t) * wmemchr(return  scope  inout  wchar_t *  s,  wchar_t c,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wmemchr.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wmemcmp","package":"druntime","parentType":"","signature":"int wmemcmp(scope  const  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wmemcmp.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wmemcpy","package":"druntime","parentType":"","signature":"wchar_t * wmemcpy(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wmemcpy.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wmemmove","package":"druntime","parentType":"","signature":"wchar_t * wmemmove(return  scope  wchar_t *  s1,  scope  const  wchar_t *  s2,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wmemmove.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wmemset","package":"druntime","parentType":"","signature":"wchar_t * wmemset(return  scope  wchar_t *  s,  wchar_t c,  size_t n)","url":"/ddoc/druntime/core/stdc/wchar_/wmemset.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsftime","package":"druntime","parentType":"","signature":"size_t wcsftime(wchar_t *  s,  size_t maxsize,  const  scope  wchar_t *  format,  const  scope  tm *  timeptr)","url":"/ddoc/druntime/core/stdc/wchar_/wcsftime.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"btowc","package":"druntime","parentType":"","signature":"wint_t btowc(int  c)","url":"/ddoc/druntime/core/stdc/wchar_/btowc.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wctob","package":"druntime","parentType":"","signature":"int wctob(wint_t c)","url":"/ddoc/druntime/core/stdc/wchar_/wctob.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"mbsinit","package":"druntime","parentType":"","signature":"int mbsinit(const  scope  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/mbsinit.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"mbrlen","package":"druntime","parentType":"","signature":"size_t mbrlen(const  scope  char *  s,  size_t n,  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/mbrlen.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"mbrtowc","package":"druntime","parentType":"","signature":"size_t mbrtowc(wchar_t *  pwc,  const  scope  char *  s,  size_t n,  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/mbrtowc.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcrtomb","package":"druntime","parentType":"","signature":"size_t wcrtomb(char *  s,  wchar_t wc,  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/wcrtomb.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"mbsrtowcs","package":"druntime","parentType":"","signature":"size_t mbsrtowcs(wchar_t *  dst,  const  scope  char * *  src,  size_t len,  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/mbsrtowcs.html"},{"doc":"","kind":"function","module":"core.stdc.wchar_","name":"wcsrtombs","package":"druntime","parentType":"","signature":"size_t wcsrtombs(char *  dst,  const  scope  wchar_t * *  src,  size_t len,  mbstate_t *  ps)","url":"/ddoc/druntime/core/stdc/wchar_/wcsrtombs.html"},{"doc":"","kind":"alias","module":"core.stdc.wchar_","name":"wint_t","package":"druntime","parentType":"","signature":"wint_t = wchar_t","url":"/ddoc/druntime/core/stdc/wchar_.html#wint_t"},{"doc":"","kind":"alias","module":"core.stdc.wchar_","name":"getwc","package":"druntime","parentType":"","signature":"getwc = fgetwc","url":"/ddoc/druntime/core/stdc/wchar_.html#getwc"},{"doc":"","kind":"alias","module":"core.stdc.wchar_","name":"putwc","package":"druntime","parentType":"","signature":"putwc = fputwc","url":"/ddoc/druntime/core/stdc/wchar_.html#putwc"},{"doc":"","kind":"variable","module":"core.stdc.wchar_","name":"WEOF","package":"druntime","parentType":"","signature":"wchar_t WEOF","url":"/ddoc/druntime/core/stdc/wchar_.html#WEOF"},{"doc":"D header file for C99.","kind":"module","module":"core.stdc.wctype","name":"core.stdc.wctype","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdc/wctype.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswalnum","package":"druntime","parentType":"","signature":"int iswalnum(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswalnum.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswalpha","package":"druntime","parentType":"","signature":"int iswalpha(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswalpha.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswblank","package":"druntime","parentType":"","signature":"int iswblank(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswblank.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswcntrl","package":"druntime","parentType":"","signature":"int iswcntrl(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswcntrl.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswdigit","package":"druntime","parentType":"","signature":"int iswdigit(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswdigit.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswgraph","package":"druntime","parentType":"","signature":"int iswgraph(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswgraph.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswlower","package":"druntime","parentType":"","signature":"int iswlower(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswlower.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswprint","package":"druntime","parentType":"","signature":"int iswprint(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswprint.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswpunct","package":"druntime","parentType":"","signature":"int iswpunct(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswpunct.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswspace","package":"druntime","parentType":"","signature":"int iswspace(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswspace.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswupper","package":"druntime","parentType":"","signature":"int iswupper(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswupper.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswxdigit","package":"druntime","parentType":"","signature":"int iswxdigit(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/iswxdigit.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"iswctype","package":"druntime","parentType":"","signature":"int iswctype(wint_t wc,  wctype_t desc)","url":"/ddoc/druntime/core/stdc/wctype/iswctype.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"wctype","package":"druntime","parentType":"","signature":"wctype_t wctype(const  scope  char *  property)","url":"/ddoc/druntime/core/stdc/wctype/wctype.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"towlower","package":"druntime","parentType":"","signature":"wint_t towlower(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/towlower.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"towupper","package":"druntime","parentType":"","signature":"wint_t towupper(wint_t wc)","url":"/ddoc/druntime/core/stdc/wctype/towupper.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"towctrans","package":"druntime","parentType":"","signature":"wint_t towctrans(wint_t wc,  wctrans_t desc)","url":"/ddoc/druntime/core/stdc/wctype/towctrans.html"},{"doc":"","kind":"function","module":"core.stdc.wctype","name":"wctrans","package":"druntime","parentType":"","signature":"wctrans_t wctrans(const  scope  char *  property)","url":"/ddoc/druntime/core/stdc/wctype/wctrans.html"},{"doc":"D binding to C++ std::allocator.","kind":"module","module":"core.stdcpp.allocator","name":"core.stdcpp.allocator","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/allocator.html"},{"doc":"Allocators are classes that define memory models to be used by some parts of the C++ Standard Library, and most specifically, by STL containers.","kind":"struct","module":"core.stdcpp.allocator","name":"allocator","package":"druntime","parentType":"","signature":"allocator(T)","url":"/ddoc/druntime/core/stdcpp/allocator.html#allocator"},{"doc":"","kind":"struct","module":"core.stdcpp.allocator","name":"allocator_traits","package":"druntime","parentType":"","signature":"allocator_traits(Alloc)","url":"/ddoc/druntime/core/stdcpp/allocator.html#allocator_traits"},{"doc":"","kind":"method","module":"core.stdcpp.allocator","name":"max_size","package":"druntime","parentType":"allocator_traits","signature":"size_type max_size()(auto  ref  allocator_type a)","url":"/ddoc/druntime/core/stdcpp/allocator/allocator_traits.max_size.html"},{"doc":"","kind":"method","module":"core.stdcpp.allocator","name":"select_on_container_copy_construction","package":"druntime","parentType":"allocator_traits","signature":"allocator_type select_on_container_copy_construction()(auto  ref  allocator_type a)","url":"/ddoc/druntime/core/stdcpp/allocator/allocator_traits.select_on_container_copy_construction.html"},{"doc":"D header file for interaction with C++ std::array.","kind":"module","module":"core.stdcpp.array","name":"core.stdcpp.array","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/array.html"},{"doc":"D language counterpart to C++ std::array.","kind":"struct","module":"core.stdcpp.array","name":"array","package":"druntime","parentType":"","signature":"array(T,  size_t N)","url":"/ddoc/druntime/core/stdcpp/array.html#array"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"fill","package":"druntime","parentType":"array","signature":"void fill()(auto  ref  const(T)  value)","url":"/ddoc/druntime/core/stdcpp/array/array.fill.html"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"size","package":"druntime","parentType":"array","signature":"size_type size()","url":"/ddoc/druntime/core/stdcpp/array/array.size.html"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"max_size","package":"druntime","parentType":"array","signature":"size_type max_size()","url":"/ddoc/druntime/core/stdcpp/array/array.max_size.html"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"empty","package":"druntime","parentType":"array","signature":"bool empty()","url":"/ddoc/druntime/core/stdcpp/array/array.empty.html"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"front","package":"druntime","parentType":"array","signature":"inout(T) front()","url":"/ddoc/druntime/core/stdcpp/array/array.front.html"},{"doc":"","kind":"method","module":"core.stdcpp.array","name":"back","package":"druntime","parentType":"array","signature":"inout(T) back()","url":"/ddoc/druntime/core/stdcpp/array/array.back.html"},{"doc":"Interface to C++ <exception>","kind":"module","module":"core.stdcpp.exception","name":"core.stdcpp.exception","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/exception.html"},{"doc":"","kind":"function","module":"core.stdcpp.exception","name":"set_terminate","package":"druntime","parentType":"","signature":"terminate_handler set_terminate(terminate_handler f)","url":"/ddoc/druntime/core/stdcpp/exception/set_terminate.html"},{"doc":"","kind":"function","module":"core.stdcpp.exception","name":"get_terminate","package":"druntime","parentType":"","signature":"terminate_handler get_terminate()","url":"/ddoc/druntime/core/stdcpp/exception/get_terminate.html"},{"doc":"","kind":"function","module":"core.stdcpp.exception","name":"terminate","package":"druntime","parentType":"","signature":"void terminate()","url":"/ddoc/druntime/core/stdcpp/exception/terminate.html"},{"doc":"","kind":"alias","module":"core.stdcpp.exception","name":"terminate_handler","package":"druntime","parentType":"","signature":"terminate_handler = void  function()  nothrow","url":"/ddoc/druntime/core/stdcpp/exception.html#terminate_handler"},{"doc":"","kind":"class","module":"core.stdcpp.exception","name":"bad_exception","package":"druntime","parentType":"","signature":"bad_exception : exception","url":"/ddoc/druntime/core/stdcpp/exception.html#bad_exception"},{"doc":"D binding to C++ <memory>.","kind":"module","module":"core.stdcpp.memory","name":"core.stdcpp.memory","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/memory.html"},{"doc":"","kind":"function","module":"core.stdcpp.memory","name":"make_unique","package":"druntime","parentType":"","signature":"unique_ptr!T make_unique(T,  Args...)(auto  ref  Args args)","url":"/ddoc/druntime/core/stdcpp/memory/make_unique.html"},{"doc":"","kind":"struct","module":"core.stdcpp.memory","name":"default_delete","package":"druntime","parentType":"","signature":"default_delete(T)","url":"/ddoc/druntime/core/stdcpp/memory.html#default_delete"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"opCall","package":"druntime","parentType":"default_delete","signature":"void opCall()(pointer ptr)","url":"/ddoc/druntime/core/stdcpp/memory/default_delete.opCall.html"},{"doc":"","kind":"struct","module":"core.stdcpp.memory","name":"unique_ptr","package":"druntime","parentType":"","signature":"unique_ptr(T,  Deleter =  default_delete!T)","url":"/ddoc/druntime/core/stdcpp/memory.html#unique_ptr"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"opAssign","package":"druntime","parentType":"unique_ptr","signature":"unique_ptr opAssign(typeof(null))","url":"/ddoc/druntime/core/stdcpp/memory/unique_ptr.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"reset","package":"druntime","parentType":"unique_ptr","signature":"void reset(pointer p =  null)","url":"/ddoc/druntime/core/stdcpp/memory/unique_ptr.reset.html"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"get","package":"druntime","parentType":"unique_ptr","signature":"inout(pointer) get()","url":"/ddoc/druntime/core/stdcpp/memory/unique_ptr.get.html"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"opCast","package":"druntime","parentType":"unique_ptr","signature":"bool opCast(T :  bool)()","url":"/ddoc/druntime/core/stdcpp/memory/unique_ptr.opCast.html"},{"doc":"","kind":"method","module":"core.stdcpp.memory","name":"release","package":"druntime","parentType":"unique_ptr","signature":"pointer release()","url":"/ddoc/druntime/core/stdcpp/memory/unique_ptr.release.html"},{"doc":"","kind":"template","module":"core.stdcpp.memory","name":"ClassOrPtr","package":"druntime","parentType":"","signature":"ClassOrPtr(T)","url":"/ddoc/druntime/core/stdcpp/memory.html#ClassOrPtr"},{"doc":"D binding to C++ <new>","kind":"module","module":"core.stdcpp.new_","name":"core.stdcpp.new_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/new_.html"},{"doc":"","kind":"function","module":"core.stdcpp.new_","name":"cpp_new","package":"druntime","parentType":"","signature":"T * cpp_new(T,  Args...)(auto  ref  Args args) if (!is(T ==  class))","url":"/ddoc/druntime/core/stdcpp/new_/cpp_new.html"},{"doc":"","kind":"function","module":"core.stdcpp.new_","name":"cpp_new","package":"druntime","parentType":"","signature":"T cpp_new(T,  Args...)(auto  ref  Args args) if (is(T ==  class))","url":"/ddoc/druntime/core/stdcpp/new_/cpp_new.html"},{"doc":"","kind":"function","module":"core.stdcpp.new_","name":"cpp_delete","package":"druntime","parentType":"","signature":"void cpp_delete(T)(T *  ptr) if (!is(T ==  class))","url":"/ddoc/druntime/core/stdcpp/new_/cpp_delete.html"},{"doc":"","kind":"function","module":"core.stdcpp.new_","name":"cpp_delete","package":"druntime","parentType":"","signature":"void cpp_delete(T)(T instance) if (is(T ==  class))","url":"/ddoc/druntime/core/stdcpp/new_/cpp_delete.html"},{"doc":"Binding for ::operator new(std::size_t count)","kind":"function","module":"core.stdcpp.new_","name":"__cpp_new","package":"druntime","parentType":"","signature":"void * __cpp_new(size_t count)","url":"/ddoc/druntime/core/stdcpp/new_/__cpp_new.html"},{"doc":"Binding for ::operator new(std::size_t count, const std::nothrow_t&)","kind":"function","module":"core.stdcpp.new_","name":"__cpp_new_nothrow","package":"druntime","parentType":"","signature":"void * __cpp_new_nothrow(size_t count,  ref  const(nothrow_t)  =  std_nothrow)","url":"/ddoc/druntime/core/stdcpp/new_/__cpp_new_nothrow.html"},{"doc":"Binding for ::operator delete(void* ptr)","kind":"function","module":"core.stdcpp.new_","name":"__cpp_delete","package":"druntime","parentType":"","signature":"void __cpp_delete(void *  ptr)","url":"/ddoc/druntime/core/stdcpp/new_/__cpp_delete.html"},{"doc":"Binding for ::operator delete(void* ptr, const std::nothrow_t& tag)","kind":"function","module":"core.stdcpp.new_","name":"__cpp_delete_nothrow","package":"druntime","parentType":"","signature":"void __cpp_delete_nothrow(void *  ptr,  ref  const(nothrow_t)  =  std_nothrow)","url":"/ddoc/druntime/core/stdcpp/new_/__cpp_delete_nothrow.html"},{"doc":"","kind":"struct","module":"core.stdcpp.new_","name":"nothrow_t","package":"druntime","parentType":"","signature":"nothrow_t","url":"/ddoc/druntime/core/stdcpp/new_.html#nothrow_t"},{"doc":"","kind":"enum","module":"core.stdcpp.new_","name":"align_val_t","package":"druntime","parentType":"","signature":"align_val_t : size_t","url":"/ddoc/druntime/core/stdcpp/new_.html#align_val_t"},{"doc":"","kind":"enum_member","module":"core.stdcpp.new_","name":"defaultAlignment","package":"druntime","parentType":"","signature":"defaultAlignment = __STDCPP_DEFAULT_NEW_ALIGNMENT__","url":"/ddoc/druntime/core/stdcpp/new_.html#align_val_t"},{"doc":"","kind":"class","module":"core.stdcpp.new_","name":"bad_alloc","package":"druntime","parentType":"","signature":"bad_alloc : exception","url":"/ddoc/druntime/core/stdcpp/new_.html#bad_alloc"},{"doc":"","kind":"variable","module":"core.stdcpp.new_","name":"std_nothrow","package":"druntime","parentType":"","signature":"nothrow_t std_nothrow","url":"/ddoc/druntime/core/stdcpp/new_.html#std_nothrow"},{"doc":"D header file for interaction with C++ std::string.","kind":"module","module":"core.stdcpp.string","name":"core.stdcpp.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/string.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"at","package":"druntime","parentType":"","signature":"inout(T) at(size_type i)","url":"/ddoc/druntime/core/stdcpp/string/at.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(size_type n,  T c)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"reserve","package":"druntime","parentType":"","signature":"void reserve(size_type _Newcap =  0)","url":"/ddoc/druntime/core/stdcpp/string/reserve.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"shrink_to_fit","package":"druntime","parentType":"","signature":"void shrink_to_fit()","url":"/ddoc/druntime/core/stdcpp/string/shrink_to_fit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  const(T) *  s,  size_type n)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  size_type n,  T c)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type pos,  size_type len,  const(T) *  s,  size_type slen)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type _Off,  size_type _N0,  size_type _Count,  T _Ch)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"swap","package":"druntime","parentType":"","signature":"void swap(ref  basic_string _Right)","url":"/ddoc/druntime/core/stdcpp/string/swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"eos","package":"druntime","parentType":"","signature":"void eos(size_type offset)","url":"/ddoc/druntime/core/stdcpp/string/eos.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Getal","package":"druntime","parentType":"","signature":"inout(_Base.Alloc) _Getal()","url":"/ddoc/druntime/core/stdcpp/string/_Getal.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Get_data","package":"druntime","parentType":"","signature":"inout(_Base.ValTy) _Get_data()","url":"/ddoc/druntime/core/stdcpp/string/_Get_data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Alloc_proxy","package":"druntime","parentType":"","signature":"void _Alloc_proxy()","url":"/ddoc/druntime/core/stdcpp/string/_Alloc_proxy.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_AssignAllocator","package":"druntime","parentType":"","signature":"void _AssignAllocator(ref  const(allocator_type)  al)","url":"/ddoc/druntime/core/stdcpp/string/_AssignAllocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Become_small","package":"druntime","parentType":"","signature":"void _Become_small()","url":"/ddoc/druntime/core/stdcpp/string/_Become_small.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Tidy_init","package":"druntime","parentType":"","signature":"void _Tidy_init()","url":"/ddoc/druntime/core/stdcpp/string/_Tidy_init.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Calculate_growth","package":"druntime","parentType":"","signature":"size_type _Calculate_growth(size_type _Requested)","url":"/ddoc/druntime/core/stdcpp/string/_Calculate_growth.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Reallocate_for","package":"druntime","parentType":"","signature":"basic_string _Reallocate_for(_ArgTys...)(size_type _New_size,  void  function(pointer,  size_type,  _ArgTys)  nothrow @nogc _Fn,  _ArgTys _Args)","url":"/ddoc/druntime/core/stdcpp/string/_Reallocate_for.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Reallocate_grow_by","package":"druntime","parentType":"","signature":"basic_string _Reallocate_grow_by(_ArgTys...)(size_type _Size_increase,  void  function(pointer,  const(T)[],  _ArgTys)  nothrow @nogc _Fn,  _ArgTys _Args)","url":"/ddoc/druntime/core/stdcpp/string/_Reallocate_grow_by.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Tidy_deallocate","package":"druntime","parentType":"","signature":"void _Tidy_deallocate()","url":"/ddoc/druntime/core/stdcpp/string/_Tidy_deallocate.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Swap_data","package":"druntime","parentType":"","signature":"void _Swap_data(bool  _memcpy :  true)(ref  basic_string _Right)","url":"/ddoc/druntime/core/stdcpp/string/_Swap_data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Swap_data","package":"druntime","parentType":"","signature":"void _Swap_data(bool  _memcpy :  false)(ref  basic_string _Right)","url":"/ddoc/druntime/core/stdcpp/string/_Swap_data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_Swap_bx_large_with_small","package":"druntime","parentType":"","signature":"void _Swap_bx_large_with_small(ref  _Scary_val _Starts_large,  ref  _Scary_val _Starts_small)","url":"/ddoc/druntime/core/stdcpp/string/_Swap_bx_large_with_small.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"get_allocator","package":"druntime","parentType":"","signature":"inout(Alloc) get_allocator()","url":"/ddoc/druntime/core/stdcpp/string/get_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"max_size","package":"druntime","parentType":"","signature":"size_type max_size()","url":"/ddoc/druntime/core/stdcpp/string/max_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"size","package":"druntime","parentType":"","signature":"size_type size()","url":"/ddoc/druntime/core/stdcpp/string/size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"capacity","package":"druntime","parentType":"","signature":"size_type capacity()","url":"/ddoc/druntime/core/stdcpp/string/capacity.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"data","package":"druntime","parentType":"","signature":"inout(T) * data()","url":"/ddoc/druntime/core/stdcpp/string/data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"as_array","package":"druntime","parentType":"","signature":"inout(T)[] as_array()","url":"/ddoc/druntime/core/stdcpp/string/as_array.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"at","package":"druntime","parentType":"","signature":"inout(T) at(size_type i)","url":"/ddoc/druntime/core/stdcpp/string/at.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(size_type __n,  T __c)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"reserve","package":"druntime","parentType":"","signature":"void reserve(size_type __res =  0)","url":"/ddoc/druntime/core/stdcpp/string/reserve.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"shrink_to_fit","package":"druntime","parentType":"","signature":"void shrink_to_fit()","url":"/ddoc/druntime/core/stdcpp/string/shrink_to_fit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type __pos,  const(T) *  __s,  size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  size_type n,  T c)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type __pos,  size_type __n1,  const(T) *  __s,  size_type __n2)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type pos,  size_type n1,  size_type n2,  T c)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"swap","package":"druntime","parentType":"","signature":"void swap(ref  basic_string __s)","url":"/ddoc/druntime/core/stdcpp/string/swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"eos","package":"druntime","parentType":"","signature":"void eos(size_type offset)","url":"/ddoc/druntime/core/stdcpp/string/eos.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_get_allocator","package":"druntime","parentType":"","signature":"inout(allocator_type) _M_get_allocator()","url":"/ddoc/druntime/core/stdcpp/string/_M_get_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_rep","package":"druntime","parentType":"","signature":"_Rep * _M_rep()","url":"/ddoc/druntime/core/stdcpp/string/_M_rep.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_limit","package":"druntime","parentType":"","signature":"size_type _M_limit(size_type __pos,  size_type __off)","url":"/ddoc/druntime/core/stdcpp/string/_M_limit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_check","package":"druntime","parentType":"","signature":"size_type _M_check(size_type __pos,  const  char *  __s)","url":"/ddoc/druntime/core/stdcpp/string/_M_check.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_S_empty_rep","package":"druntime","parentType":"","signature":"_Rep _S_empty_rep()","url":"/ddoc/druntime/core/stdcpp/string/_S_empty_rep.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_S_construct","package":"druntime","parentType":"","signature":"T * _S_construct(const(T) *  __beg,  const(T) *  __end,  ref  Alloc __a)","url":"/ddoc/druntime/core/stdcpp/string/_S_construct.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_replace_safe","package":"druntime","parentType":"","signature":"basic_string _M_replace_safe(size_type __pos1,  size_type __n1,  const(T) *  __s,  size_type __n2)","url":"/ddoc/druntime/core/stdcpp/string/_M_replace_safe.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_replace_aux","package":"druntime","parentType":"","signature":"basic_string _M_replace_aux(size_type __pos1,  size_type __n1,  size_type __n2,  T __c)","url":"/ddoc/druntime/core/stdcpp/string/_M_replace_aux.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_mutate","package":"druntime","parentType":"","signature":"void _M_mutate(size_type __pos,  size_type __len1,  size_type __len2)","url":"/ddoc/druntime/core/stdcpp/string/_M_mutate.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"get_allocator","package":"druntime","parentType":"","signature":"inout(Alloc) get_allocator()","url":"/ddoc/druntime/core/stdcpp/string/get_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"max_size","package":"druntime","parentType":"","signature":"size_type max_size()","url":"/ddoc/druntime/core/stdcpp/string/max_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"size","package":"druntime","parentType":"","signature":"size_type size()","url":"/ddoc/druntime/core/stdcpp/string/size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"capacity","package":"druntime","parentType":"","signature":"size_type capacity()","url":"/ddoc/druntime/core/stdcpp/string/capacity.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"data","package":"druntime","parentType":"","signature":"inout(T) * data()","url":"/ddoc/druntime/core/stdcpp/string/data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"as_array","package":"druntime","parentType":"","signature":"inout(T)[] as_array()","url":"/ddoc/druntime/core/stdcpp/string/as_array.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"at","package":"druntime","parentType":"","signature":"inout(T) at(size_type i)","url":"/ddoc/druntime/core/stdcpp/string/at.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(size_type n,  T c)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"reserve","package":"druntime","parentType":"","signature":"void reserve(size_type __res =  0)","url":"/ddoc/druntime/core/stdcpp/string/reserve.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"shrink_to_fit","package":"druntime","parentType":"","signature":"void shrink_to_fit()","url":"/ddoc/druntime/core/stdcpp/string/shrink_to_fit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  const(T) *  s,  size_type n)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  size_type n,  T c)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type pos,  size_type n1,  const(T) *  s,  size_type n2)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type pos,  size_type n1,  size_type n2,  T c)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"swap","package":"druntime","parentType":"","signature":"void swap(ref  basic_string __s)","url":"/ddoc/druntime/core/stdcpp/string/swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"eos","package":"druntime","parentType":"","signature":"void eos(size_type offset)","url":"/ddoc/druntime/core/stdcpp/string/eos.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_local_data","package":"druntime","parentType":"","signature":"inout(pointer) _M_local_data()","url":"/ddoc/druntime/core/stdcpp/string/_M_local_data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_is_local","package":"druntime","parentType":"","signature":"bool _M_is_local()","url":"/ddoc/druntime/core/stdcpp/string/_M_is_local.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_get_allocator","package":"druntime","parentType":"","signature":"inout(allocator_type) _M_get_allocator()","url":"/ddoc/druntime/core/stdcpp/string/_M_get_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_set_length","package":"druntime","parentType":"","signature":"void _M_set_length(size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/_M_set_length.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_check","package":"druntime","parentType":"","signature":"size_type _M_check(size_type __pos,  const  char *  __s)","url":"/ddoc/druntime/core/stdcpp/string/_M_check.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_limit","package":"druntime","parentType":"","signature":"size_type _M_limit(size_type __pos,  size_type __off)","url":"/ddoc/druntime/core/stdcpp/string/_M_limit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__alloc_on_swap","package":"druntime","parentType":"","signature":"void __alloc_on_swap()(ref  allocator_type __a) if (!is_empty!allocator_type.value)","url":"/ddoc/druntime/core/stdcpp/string/__alloc_on_swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__alloc_on_swap","package":"druntime","parentType":"","signature":"void __alloc_on_swap()(ref  allocator_type __a) if (is_empty!allocator_type.value)","url":"/ddoc/druntime/core/stdcpp/string/__alloc_on_swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_construct","package":"druntime","parentType":"","signature":"void _M_construct(const(T) *  __beg,  size_type __dnew)","url":"/ddoc/druntime/core/stdcpp/string/_M_construct.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_create","package":"druntime","parentType":"","signature":"pointer _M_create(ref  size_type __capacity,  size_type __old_capacity)","url":"/ddoc/druntime/core/stdcpp/string/_M_create.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_replace","package":"druntime","parentType":"","signature":"basic_string _M_replace(size_type __pos,  size_type __len1,  const(T) *  __s,  const  size_type __len2)","url":"/ddoc/druntime/core/stdcpp/string/_M_replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_replace_aux","package":"druntime","parentType":"","signature":"basic_string _M_replace_aux(size_type __pos1,  size_type __n1,  size_type __n2,  T __c)","url":"/ddoc/druntime/core/stdcpp/string/_M_replace_aux.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_append","package":"druntime","parentType":"","signature":"basic_string _M_append(const(T) *  __s,  size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/_M_append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_mutate","package":"druntime","parentType":"","signature":"void _M_mutate(size_type __pos,  size_type __len1,  const(T) *  __s,  size_type __len2)","url":"/ddoc/druntime/core/stdcpp/string/_M_mutate.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_dispose","package":"druntime","parentType":"","signature":"void _M_dispose()","url":"/ddoc/druntime/core/stdcpp/string/_M_dispose.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_destroy","package":"druntime","parentType":"","signature":"void _M_destroy(size_type __size)","url":"/ddoc/druntime/core/stdcpp/string/_M_destroy.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_check_length","package":"druntime","parentType":"","signature":"void _M_check_length(size_type __n1,  size_type __n2,  const  char *  __s)","url":"/ddoc/druntime/core/stdcpp/string/_M_check_length.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_assign_allocator","package":"druntime","parentType":"","signature":"void _M_assign_allocator(ref  const(allocator_type)  al)","url":"/ddoc/druntime/core/stdcpp/string/_M_assign_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_M_disjunct","package":"druntime","parentType":"","signature":"bool _M_disjunct(const(T) *  __s)","url":"/ddoc/druntime/core/stdcpp/string/_M_disjunct.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_S_move","package":"druntime","parentType":"","signature":"void _S_move(T *  __d,  const(T) *  __s,  size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/_S_move.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"_S_copy","package":"druntime","parentType":"","signature":"void _S_copy(T *  __d,  const(T) *  __s,  size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/_S_copy.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"get_allocator","package":"druntime","parentType":"","signature":"inout(Alloc) get_allocator()","url":"/ddoc/druntime/core/stdcpp/string/get_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"max_size","package":"druntime","parentType":"","signature":"size_type max_size()","url":"/ddoc/druntime/core/stdcpp/string/max_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"size","package":"druntime","parentType":"","signature":"size_type size()","url":"/ddoc/druntime/core/stdcpp/string/size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"capacity","package":"druntime","parentType":"","signature":"size_type capacity()","url":"/ddoc/druntime/core/stdcpp/string/capacity.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"data","package":"druntime","parentType":"","signature":"inout(T) * data()","url":"/ddoc/druntime/core/stdcpp/string/data.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"at","package":"druntime","parentType":"","signature":"inout(T) at(size_type i)","url":"/ddoc/druntime/core/stdcpp/string/at.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"assign","package":"druntime","parentType":"","signature":"basic_string assign(const  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/assign.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"","signature":"basic_string append(size_type __n,  value_type __c)","url":"/ddoc/druntime/core/stdcpp/string/append.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"reserve","package":"druntime","parentType":"","signature":"void reserve(size_type __res_arg =  0)","url":"/ddoc/druntime/core/stdcpp/string/reserve.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"shrink_to_fit","package":"druntime","parentType":"","signature":"void shrink_to_fit()","url":"/ddoc/druntime/core/stdcpp/string/shrink_to_fit.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type __pos,  const(value_type) *  __s,  size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"","signature":"basic_string insert(size_type pos,  size_type n,  value_type c)","url":"/ddoc/druntime/core/stdcpp/string/insert.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type __pos,  size_type __n1,  const(T) *  __s,  size_type __n2)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"","signature":"basic_string replace(size_type __pos,  size_type __n1,  size_type __n2,  value_type __c)","url":"/ddoc/druntime/core/stdcpp/string/replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"swap","package":"druntime","parentType":"","signature":"void swap(ref  basic_string __str)","url":"/ddoc/druntime/core/stdcpp/string/swap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"eos","package":"druntime","parentType":"","signature":"void eos(size_type offset)","url":"/ddoc/druntime/core/stdcpp/string/eos.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__set_long_size","package":"druntime","parentType":"","signature":"void __set_long_size(size_type __s)","url":"/ddoc/druntime/core/stdcpp/string/__set_long_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__get_long_size","package":"druntime","parentType":"","signature":"size_type __get_long_size()","url":"/ddoc/druntime/core/stdcpp/string/__get_long_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__set_size","package":"druntime","parentType":"","signature":"void __set_size(size_type __s)","url":"/ddoc/druntime/core/stdcpp/string/__set_size.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__set_long_cap","package":"druntime","parentType":"","signature":"void __set_long_cap(size_type __s)","url":"/ddoc/druntime/core/stdcpp/string/__set_long_cap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__get_long_cap","package":"druntime","parentType":"","signature":"size_type __get_long_cap()","url":"/ddoc/druntime/core/stdcpp/string/__get_long_cap.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__set_long_pointer","package":"druntime","parentType":"","signature":"void __set_long_pointer(pointer __p)","url":"/ddoc/druntime/core/stdcpp/string/__set_long_pointer.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__get_long_pointer","package":"druntime","parentType":"","signature":"inout(T) * __get_long_pointer()","url":"/ddoc/druntime/core/stdcpp/string/__get_long_pointer.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__get_short_pointer","package":"druntime","parentType":"","signature":"inout(T) * __get_short_pointer()","url":"/ddoc/druntime/core/stdcpp/string/__get_short_pointer.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__get_pointer","package":"druntime","parentType":"","signature":"inout(T) * __get_pointer()","url":"/ddoc/druntime/core/stdcpp/string/__get_pointer.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__is_long","package":"druntime","parentType":"","signature":"bool __is_long()","url":"/ddoc/druntime/core/stdcpp/string/__is_long.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__zero","package":"druntime","parentType":"","signature":"void __zero()","url":"/ddoc/druntime/core/stdcpp/string/__zero.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__alloc","package":"druntime","parentType":"","signature":"inout(allocator_type) __alloc()","url":"/ddoc/druntime/core/stdcpp/string/__alloc.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__init","package":"druntime","parentType":"","signature":"void __init(const(value_type) *  __s,  size_type __sz)","url":"/ddoc/druntime/core/stdcpp/string/__init.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__assign_allocator","package":"druntime","parentType":"","signature":"void __assign_allocator(ref  const(allocator_type)  al)","url":"/ddoc/druntime/core/stdcpp/string/__assign_allocator.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__init","package":"druntime","parentType":"","signature":"void __init(const(value_type) *  __s,  size_type __sz,  size_type __reserve)","url":"/ddoc/druntime/core/stdcpp/string/__init.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__recommend","package":"druntime","parentType":"","signature":"size_type __recommend(size_type __s)","url":"/ddoc/druntime/core/stdcpp/string/__recommend.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__grow_by_and_replace","package":"druntime","parentType":"","signature":"void __grow_by_and_replace(size_type __old_cap,  size_type __delta_cap,  size_type __old_sz,  size_type __n_copy,\n                                  size_type __n_del,  size_type __n_add,  const(value_type) *  __p_new_stuff)","url":"/ddoc/druntime/core/stdcpp/string/__grow_by_and_replace.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"__grow_by","package":"druntime","parentType":"","signature":"void __grow_by(size_type __old_cap,  size_type __delta_cap,  size_type __old_sz,\n                         size_type __n_copy,   size_type __n_del,  size_type __n_add =  0)","url":"/ddoc/druntime/core/stdcpp/string/__grow_by.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"max","package":"druntime","parentType":"","signature":"T max(T)(auto  ref  T a,  auto  ref  T b)","url":"/ddoc/druntime/core/stdcpp/string/max.html"},{"doc":"","kind":"function","module":"core.stdcpp.string","name":"min","package":"druntime","parentType":"","signature":"T min(T)(auto  ref  T a,  auto  ref  T b)","url":"/ddoc/druntime/core/stdcpp/string/min.html"},{"doc":"","kind":"enum","module":"core.stdcpp.string","name":"DefaultConstruct","package":"druntime","parentType":"","signature":"DefaultConstruct","url":"/ddoc/druntime/core/stdcpp/string.html#DefaultConstruct"},{"doc":"","kind":"enum_member","module":"core.stdcpp.string","name":"value","package":"druntime","parentType":"","signature":"value = ","url":"/ddoc/druntime/core/stdcpp/string.html#DefaultConstruct"},{"doc":"Character traits classes specify character properties and provide specific semantics for certain operations on characters and sequences of characters.","kind":"struct","module":"core.stdcpp.string","name":"char_traits","package":"druntime","parentType":"","signature":"char_traits(CharT)","url":"/ddoc/druntime/core/stdcpp/string.html#char_traits"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"length","package":"druntime","parentType":"char_traits","signature":"size_t length(const(char_type) *  s)","url":"/ddoc/druntime/core/stdcpp/string/char_traits.length.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"move","package":"druntime","parentType":"char_traits","signature":"char_type * move(char_type *  s1,  const  char_type *  s2,  size_t n)","url":"/ddoc/druntime/core/stdcpp/string/char_traits.move.html"},{"doc":"D language counterpart to C++ std::basic_string.","kind":"struct","module":"core.stdcpp.string","name":"basic_string","package":"druntime","parentType":"","signature":"basic_string(T,  Traits =  char_traits!T,  Alloc =  allocator!T)","url":"/ddoc/druntime/core/stdcpp/string.html#basic_string"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"empty","package":"druntime","parentType":"basic_string","signature":"bool empty()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.empty.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opSlice","package":"druntime","parentType":"basic_string","signature":"size_t[2] opSlice(size_t dim :  0)(size_t start,  size_t end)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opSlice.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndex","package":"druntime","parentType":"basic_string","signature":"inout(T) opIndex(size_t index)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndex.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndex","package":"druntime","parentType":"basic_string","signature":"inout(T)[] opIndex(size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndex.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndex","package":"druntime","parentType":"basic_string","signature":"inout(T)[] opIndex()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndex.html"},{"doc":"Two `basic_string`s are equal if they represent the same sequence of code units.","kind":"method","module":"core.stdcpp.string","name":"opEquals","package":"druntime","parentType":"basic_string","signature":"bool opEquals(scope  const  ref  basic_string s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opEquals.html"},{"doc":"ditto","kind":"method","module":"core.stdcpp.string","name":"opEquals","package":"druntime","parentType":"basic_string","signature":"bool opEquals(scope  const  T[]  s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opEquals.html"},{"doc":"Performs lexicographical comparison.","kind":"method","module":"core.stdcpp.string","name":"opCmp","package":"druntime","parentType":"basic_string","signature":"int opCmp(scope  const  ref  basic_string rhs)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opCmp.html"},{"doc":"ditto","kind":"method","module":"core.stdcpp.string","name":"opCmp","package":"druntime","parentType":"basic_string","signature":"int opCmp(scope  const  T[]  rhs)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opCmp.html"},{"doc":"Hash to allow `basic_string`s to be used as keys for built-in associative arrays. **The result will generally not be the same as C++ `std::hash<std...","kind":"method","module":"core.stdcpp.string","name":"toHash","package":"druntime","parentType":"basic_string","signature":"size_t toHash()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.toHash.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"clear","package":"druntime","parentType":"basic_string","signature":"void clear()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.clear.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"resize","package":"druntime","parentType":"basic_string","signature":"void resize(size_type n,  T c =  T(0))","url":"/ddoc/druntime/core/stdcpp/string/basic_string.resize.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"front","package":"druntime","parentType":"basic_string","signature":"inout(T) front()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.front.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"back","package":"druntime","parentType":"basic_string","signature":"inout(T) back()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.back.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"c_str","package":"druntime","parentType":"basic_string","signature":"const(T) * c_str()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.c_str.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opAssign()(auto  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opAssign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opAssign(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexAssign(T c,  size_t index)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexAssign(T c,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexAssign(const(T)[]  str,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexAssign(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexAssign(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexOpAssign(string op)(T c,  size_t index)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexOpAssign(string op)(T c,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexOpAssign(string op)(const(T)[]  str,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexOpAssign(string op)(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opIndexOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opIndexOpAssign(string op)(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"append","package":"druntime","parentType":"basic_string","signature":"basic_string append(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.append.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opOpAssign(string op :  \"~\")(const(T)[]  str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"opOpAssign","package":"druntime","parentType":"basic_string","signature":"basic_string opOpAssign(string op :  \"~\")(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.opOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"basic_string","signature":"basic_string insert(size_type pos,  ref  const(basic_string)  str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.insert.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"basic_string","signature":"basic_string insert(size_type pos,  ref  const(basic_string)  str,  size_type subpos,  size_type sublen)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.insert.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"basic_string","signature":"basic_string insert(S :  size_type)(S pos,  const(T) *  s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.insert.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"insert","package":"druntime","parentType":"basic_string","signature":"basic_string insert(size_type pos,  const(T)[]  s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.insert.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"erase","package":"druntime","parentType":"basic_string","signature":"basic_string erase(size_type pos =  0)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.erase.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"erase","package":"druntime","parentType":"basic_string","signature":"basic_string erase(size_type pos,  size_type len)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.erase.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"basic_string","signature":"basic_string replace()(size_type pos,  size_type len,  auto  ref  basic_string str)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.replace.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"basic_string","signature":"basic_string replace()(size_type pos,  size_type len,  auto  ref  basic_string str,\n                             size_type subpos,  size_type sublen = npos)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.replace.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"basic_string","signature":"basic_string replace(size_type pos,  size_type len,  const(value_type)[]  s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.replace.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"replace","package":"druntime","parentType":"basic_string","signature":"basic_string replace(S :  size_type)(S pos,  size_type len,  const(value_type) *  s)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.replace.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"push_back","package":"druntime","parentType":"basic_string","signature":"void push_back(T c)","url":"/ddoc/druntime/core/stdcpp/string/basic_string.push_back.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"pop_back","package":"druntime","parentType":"basic_string","signature":"void pop_back()","url":"/ddoc/druntime/core/stdcpp/string/basic_string.pop_back.html"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_Traits","package":"druntime","parentType":"","signature":"_Traits = traits_type","url":"/ddoc/druntime/core/stdcpp/string.html#_Traits"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_Scary_val","package":"druntime","parentType":"","signature":"_Scary_val = _String_val!T","url":"/ddoc/druntime/core/stdcpp/string.html#_Scary_val"},{"doc":"","kind":"struct","module":"core.stdcpp.string","name":"_Rep_base","package":"druntime","parentType":"","signature":"_Rep_base","url":"/ddoc/druntime/core/stdcpp/string.html#_Rep_base"},{"doc":"","kind":"struct","module":"core.stdcpp.string","name":"_Rep","package":"druntime","parentType":"","signature":"_Rep","url":"/ddoc/druntime/core/stdcpp/string.html#_Rep"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_S_empty_rep","package":"druntime","parentType":"_Rep","signature":"_Rep _S_empty_rep()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._S_empty_rep.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_set_sharable","package":"druntime","parentType":"_Rep","signature":"void _M_set_sharable()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_set_sharable.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_set_length_and_sharable","package":"druntime","parentType":"_Rep","signature":"void _M_set_length_and_sharable(size_type __n)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_set_length_and_sharable.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_is_leaked","package":"druntime","parentType":"_Rep","signature":"bool _M_is_leaked()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_is_leaked.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_is_shared","package":"druntime","parentType":"_Rep","signature":"bool _M_is_shared()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_is_shared.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_refdata","package":"druntime","parentType":"_Rep","signature":"T * _M_refdata()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_refdata.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_grab","package":"druntime","parentType":"_Rep","signature":"T * _M_grab(ref  allocator_type __alloc1,  const  ref  allocator_type __alloc2)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_grab.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_S_create","package":"druntime","parentType":"_Rep","signature":"_Rep * _S_create(size_type __capacity,  size_type __old_capacity,  ref  Alloc __alloc)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._S_create.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_dispose","package":"druntime","parentType":"_Rep","signature":"void _M_dispose(ref  Alloc __a)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_dispose.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_destroy","package":"druntime","parentType":"_Rep","signature":"void _M_destroy(ref  Alloc __a)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_destroy.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_refcopy","package":"druntime","parentType":"_Rep","signature":"T * _M_refcopy()","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_refcopy.html"},{"doc":"","kind":"method","module":"core.stdcpp.string","name":"_M_clone","package":"druntime","parentType":"_Rep","signature":"T * _M_clone(ref  Alloc __alloc,  size_type __res =  0)","url":"/ddoc/druntime/core/stdcpp/string/_Rep._M_clone.html"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_M_data","package":"druntime","parentType":"","signature":"_M_data = _M_p","url":"/ddoc/druntime/core/stdcpp/string.html#_M_data"},{"doc":"","kind":"union","module":"core.stdcpp.string","name":"","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/string.html#"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_M_length","package":"druntime","parentType":"","signature":"_M_length = _M_string_length","url":"/ddoc/druntime/core/stdcpp/string.html#_M_length"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_M_capacity","package":"druntime","parentType":"","signature":"_M_capacity = _M_allocated_capacity","url":"/ddoc/druntime/core/stdcpp/string.html#_M_capacity"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"_M_data","package":"druntime","parentType":"","signature":"_M_data = _M_p","url":"/ddoc/druntime/core/stdcpp/string.html#_M_data"},{"doc":"","kind":"alias","module":"core.stdcpp.string","name":"__alloc_traits","package":"druntime","parentType":"","signature":"__alloc_traits = allocator_traits!allocator_type","url":"/ddoc/druntime/core/stdcpp/string.html#__alloc_traits"},{"doc":"","kind":"union","module":"core.stdcpp.string","name":"__ulx","package":"druntime","parentType":"","signature":"__ulx","url":"/ddoc/druntime/core/stdcpp/string.html#__ulx"},{"doc":"","kind":"struct","module":"core.stdcpp.string","name":"__raw","package":"druntime","parentType":"","signature":"__raw","url":"/ddoc/druntime/core/stdcpp/string.html#__raw"},{"doc":"","kind":"struct","module":"core.stdcpp.string","name":"__rep","package":"druntime","parentType":"","signature":"__rep","url":"/ddoc/druntime/core/stdcpp/string.html#__rep"},{"doc":"Constructor argument for default construction","kind":"variable","module":"core.stdcpp.string","name":"Default","package":"druntime","parentType":"","signature":"Default","url":"/ddoc/druntime/core/stdcpp/string.html#Default"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_Can_memcpy_val","package":"druntime","parentType":"","signature":"bool _Can_memcpy_val","url":"/ddoc/druntime/core/stdcpp/string.html#_Can_memcpy_val"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_Memcpy_val_offset","package":"druntime","parentType":"","signature":"size_t _Memcpy_val_offset","url":"/ddoc/druntime/core/stdcpp/string.html#_Memcpy_val_offset"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_Memcpy_val_size","package":"druntime","parentType":"","signature":"size_t _Memcpy_val_size","url":"/ddoc/druntime/core/stdcpp/string.html#_Memcpy_val_size"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_Base","package":"druntime","parentType":"","signature":"_String_alloc!(_String_base_types!(T,  Alloc)) _Base","url":"/ddoc/druntime/core/stdcpp/string.html#_Base"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_M_p","package":"druntime","parentType":"","signature":"T * _M_p","url":"/ddoc/druntime/core/stdcpp/string.html#_M_p"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_M_p","package":"druntime","parentType":"","signature":"pointer _M_p","url":"/ddoc/druntime/core/stdcpp/string.html#_M_p"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_M_string_length","package":"druntime","parentType":"","signature":"size_type _M_string_length","url":"/ddoc/druntime/core/stdcpp/string.html#_M_string_length"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"_S_local_capacity","package":"druntime","parentType":"","signature":"size_type _S_local_capacity","url":"/ddoc/druntime/core/stdcpp/string.html#_S_local_capacity"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"__alignment","package":"druntime","parentType":"","signature":"__alignment","url":"/ddoc/druntime/core/stdcpp/string.html#__alignment"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"__n_words","package":"druntime","parentType":"","signature":"__n_words","url":"/ddoc/druntime/core/stdcpp/string.html#__n_words"},{"doc":"","kind":"variable","module":"core.stdcpp.string","name":"__r_","package":"druntime","parentType":"","signature":"__compressed_pair!(__rep,  allocator_type) __r_","url":"/ddoc/druntime/core/stdcpp/string.html#__r_"},{"doc":"D header file for interaction with C++ std::string_view.","kind":"module","module":"core.stdcpp.string_view","name":"core.stdcpp.string_view","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/string_view.html"},{"doc":"","kind":"alias","module":"core.stdcpp.string_view","name":"string_view","package":"druntime","parentType":"","signature":"string_view = basic_string_view!char","url":"/ddoc/druntime/core/stdcpp/string_view.html#string_view"},{"doc":"","kind":"alias","module":"core.stdcpp.string_view","name":"u16string_view","package":"druntime","parentType":"","signature":"u16string_view = basic_string_view!wchar","url":"/ddoc/druntime/core/stdcpp/string_view.html#u16string_view"},{"doc":"","kind":"alias","module":"core.stdcpp.string_view","name":"u32string_view","package":"druntime","parentType":"","signature":"u32string_view = basic_string_view!dchar","url":"/ddoc/druntime/core/stdcpp/string_view.html#u32string_view"},{"doc":"","kind":"alias","module":"core.stdcpp.string_view","name":"wstring_view","package":"druntime","parentType":"","signature":"wstring_view = basic_string_view!wchar_t","url":"/ddoc/druntime/core/stdcpp/string_view.html#wstring_view"},{"doc":"Character traits classes specify character properties and provide specific semantics for certain operations on characters and sequences of characters.","kind":"struct","module":"core.stdcpp.string_view","name":"char_traits","package":"druntime","parentType":"","signature":"char_traits(CharT)","url":"/ddoc/druntime/core/stdcpp/string_view.html#char_traits"},{"doc":"D language counterpart to C++ std::basic_string_view.","kind":"struct","module":"core.stdcpp.string_view","name":"basic_string_view","package":"druntime","parentType":"","signature":"basic_string_view(T,  Traits =  char_traits!T)","url":"/ddoc/druntime/core/stdcpp/string_view.html#basic_string_view"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"size","package":"druntime","parentType":"basic_string_view","signature":"size_type size()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.size.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"empty","package":"druntime","parentType":"basic_string_view","signature":"bool empty()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.empty.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"data","package":"druntime","parentType":"basic_string_view","signature":"const(T) * data()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.data.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"as_array","package":"druntime","parentType":"basic_string_view","signature":"const(T)[] as_array()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.as_array.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"at","package":"druntime","parentType":"basic_string_view","signature":"const(T) at(size_type i)","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.at.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"front","package":"druntime","parentType":"basic_string_view","signature":"const(T) front()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.front.html"},{"doc":"","kind":"method","module":"core.stdcpp.string_view","name":"back","package":"druntime","parentType":"basic_string_view","signature":"const(T) back()","url":"/ddoc/druntime/core/stdcpp/string_view/basic_string_view.back.html"},{"doc":"D header file for interaction with C++ std::type_traits.","kind":"module","module":"core.stdcpp.type_traits","name":"core.stdcpp.type_traits","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/type_traits.html"},{"doc":"","kind":"struct","module":"core.stdcpp.type_traits","name":"integral_constant","package":"druntime","parentType":"","signature":"integral_constant(T,  T Val)","url":"/ddoc/druntime/core/stdcpp/type_traits.html#integral_constant"},{"doc":"","kind":"alias","module":"core.stdcpp.type_traits","name":"bool_constant","package":"druntime","parentType":"","signature":"bool_constant(bool  b) = integral_constant!(bool,  b)","url":"/ddoc/druntime/core/stdcpp/type_traits.html#bool_constant"},{"doc":"","kind":"alias","module":"core.stdcpp.type_traits","name":"true_type","package":"druntime","parentType":"","signature":"true_type = bool_constant!true","url":"/ddoc/druntime/core/stdcpp/type_traits.html#true_type"},{"doc":"","kind":"alias","module":"core.stdcpp.type_traits","name":"false_type","package":"druntime","parentType":"","signature":"false_type = bool_constant!false","url":"/ddoc/druntime/core/stdcpp/type_traits.html#false_type"},{"doc":"","kind":"struct","module":"core.stdcpp.type_traits","name":"is_empty","package":"druntime","parentType":"","signature":"is_empty(T)","url":"/ddoc/druntime/core/stdcpp/type_traits.html#is_empty"},{"doc":"Interface to C++ <typeinfo>","kind":"module","module":"core.stdcpp.typeinfo","name":"core.stdcpp.typeinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/typeinfo.html"},{"doc":"D header file for interaction with Microsoft C++ <utility>","kind":"module","module":"core.stdcpp.utility","name":"core.stdcpp.utility","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/utility.html"},{"doc":"D language counterpart to C++ std::pair.","kind":"struct","module":"core.stdcpp.utility","name":"pair","package":"druntime","parentType":"","signature":"pair(T1,  T2)","url":"/ddoc/druntime/core/stdcpp/utility.html#pair"},{"doc":"D header file for interaction with C++ std::vector.","kind":"module","module":"core.stdcpp.vector","name":"core.stdcpp.vector","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/vector.html"},{"doc":"","kind":"enum","module":"core.stdcpp.vector","name":"DefaultConstruct","package":"druntime","parentType":"","signature":"DefaultConstruct","url":"/ddoc/druntime/core/stdcpp/vector.html#DefaultConstruct"},{"doc":"","kind":"enum_member","module":"core.stdcpp.vector","name":"value","package":"druntime","parentType":"","signature":"value = ","url":"/ddoc/druntime/core/stdcpp/vector.html#DefaultConstruct"},{"doc":"","kind":"alias","module":"core.stdcpp.vector","name":"vector","package":"druntime","parentType":"","signature":"vector(T) = vector!(T,  allocator!T)","url":"/ddoc/druntime/core/stdcpp/vector.html#vector"},{"doc":"","kind":"struct","module":"core.stdcpp.vector","name":"vector","package":"druntime","parentType":"","signature":"vector(T,  Alloc)","url":"/ddoc/druntime/core/stdcpp/vector.html#vector"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opSlice","package":"druntime","parentType":"vector","signature":"size_t[2] opSlice(size_t dim :  0)(size_t start,  size_t end)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opSlice.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndex","package":"druntime","parentType":"vector","signature":"inout(T) opIndex(size_t index)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndex.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndex","package":"druntime","parentType":"vector","signature":"inout(T)[] opIndex(size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndex.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndex","package":"druntime","parentType":"vector","signature":"inout(T)[] opIndex()","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndex.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opAssign","package":"druntime","parentType":"vector","signature":"vector opAssign(U)(auto  ref  vector!(U,  Alloc)  s)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opAssign","package":"druntime","parentType":"vector","signature":"vector opAssign(T[]  array)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexAssign","package":"druntime","parentType":"vector","signature":"void opIndexAssign()(auto  ref  T val,  size_t index)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexAssign","package":"druntime","parentType":"vector","signature":"void opIndexAssign()(auto  ref  T val,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexAssign","package":"druntime","parentType":"vector","signature":"void opIndexAssign(T[]  val,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexAssign","package":"druntime","parentType":"vector","signature":"void opIndexAssign()(auto  ref  T val)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexAssign","package":"druntime","parentType":"vector","signature":"void opIndexAssign(T[]  val)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexOpAssign","package":"druntime","parentType":"vector","signature":"void opIndexOpAssign(string op)(auto  ref  T val,  size_t index)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexOpAssign","package":"druntime","parentType":"vector","signature":"void opIndexOpAssign(string op)(auto  ref  T val,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexOpAssign","package":"druntime","parentType":"vector","signature":"void opIndexOpAssign(string op)(T[]  val,  size_t[2]  slice)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexOpAssign","package":"druntime","parentType":"vector","signature":"void opIndexOpAssign(string op)(auto  ref  T val)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opIndexOpAssign","package":"druntime","parentType":"vector","signature":"void opIndexOpAssign(string op)(T[]  val)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opIndexOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"front","package":"druntime","parentType":"vector","signature":"inout(T) front()","url":"/ddoc/druntime/core/stdcpp/vector/vector.front.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"back","package":"druntime","parentType":"vector","signature":"inout(T) back()","url":"/ddoc/druntime/core/stdcpp/vector/vector.back.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opOpAssign","package":"druntime","parentType":"vector","signature":"vector opOpAssign(string op :  \"~\")(auto  ref  T item)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"opOpAssign","package":"druntime","parentType":"vector","signature":"vector opOpAssign(string op :  \"~\")(T[]  array)","url":"/ddoc/druntime/core/stdcpp/vector/vector.opOpAssign.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"append","package":"druntime","parentType":"vector","signature":"void append(T[]  array)","url":"/ddoc/druntime/core/stdcpp/vector/vector.append.html"},{"doc":"Performs elementwise equality check.","kind":"method","module":"core.stdcpp.vector","name":"opEquals","package":"druntime","parentType":"vector","signature":"bool opEquals(this  This,  That)(auto  ref  That rhs) if (is(immutable  That ==  immutable  vector))","url":"/ddoc/druntime/core/stdcpp/vector/vector.opEquals.html"},{"doc":"Hash to allow `vector`s to be used as keys for built-in associative arrays. **The result will generally not be the same as C++ `std::hash<std::vect...","kind":"method","module":"core.stdcpp.vector","name":"toHash","package":"druntime","parentType":"vector","signature":"size_t toHash()","url":"/ddoc/druntime/core/stdcpp/vector/vector.toHash.html"},{"doc":"","kind":"method","module":"core.stdcpp.vector","name":"push_back","package":"druntime","parentType":"vector","signature":"void push_back(U)(auto  ref  U element)","url":"/ddoc/druntime/core/stdcpp/vector/vector.push_back.html"},{"doc":"Constructor argument for default construction","kind":"variable","module":"core.stdcpp.vector","name":"Default","package":"druntime","parentType":"","signature":"Default","url":"/ddoc/druntime/core/stdcpp/vector.html#Default"},{"doc":"D header file for interaction with Microsoft C++ <xutility>","kind":"module","module":"core.stdcpp.xutility","name":"core.stdcpp.xutility","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/stdcpp/xutility.html"},{"doc":"Possible values of the `__cplusplus` macro provided by C++ compilers","kind":"enum","module":"core.stdcpp.xutility","name":"CppStdRevision","package":"druntime","parentType":"","signature":"CppStdRevision : uint","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp98","package":"druntime","parentType":"","signature":"cpp98 = 199711","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp11","package":"druntime","parentType":"","signature":"cpp11 = 201103","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp14","package":"druntime","parentType":"","signature":"cpp14 = 201402","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp17","package":"druntime","parentType":"","signature":"cpp17 = 201703","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp20","package":"druntime","parentType":"","signature":"cpp20 = 202002","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"","kind":"enum_member","module":"core.stdcpp.xutility","name":"cpp23","package":"druntime","parentType":"","signature":"cpp23 = 202302","url":"/ddoc/druntime/core/stdcpp/xutility.html#CppStdRevision"},{"doc":"Returns the target C++ version, encoded as C++ compilers do","kind":"variable","module":"core.stdcpp.xutility","name":"__cplusplus","package":"druntime","parentType":"","signature":"__cplusplus","url":"/ddoc/druntime/core/stdcpp/xutility.html#__cplusplus"},{"doc":"","kind":"variable","module":"core.stdcpp.xutility","name":"__cpp_sized_deallocation","package":"druntime","parentType":"","signature":"__cpp_sized_deallocation","url":"/ddoc/druntime/core/stdcpp/xutility.html#__cpp_sized_deallocation"},{"doc":"","kind":"variable","module":"core.stdcpp.xutility","name":"__cpp_aligned_new","package":"druntime","parentType":"","signature":"__cpp_aligned_new","url":"/ddoc/druntime/core/stdcpp/xutility.html#__cpp_aligned_new"},{"doc":"The barrier module provides a primitive for synchronizing the progress of a group of threads.","kind":"module","module":"core.sync.barrier","name":"core.sync.barrier","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/barrier.html"},{"doc":"This class represents a barrier across which threads may only travel in groups of a specific size.","kind":"class","module":"core.sync.barrier","name":"Barrier","package":"druntime","parentType":"","signature":"Barrier","url":"/ddoc/druntime/core/sync/barrier.html#Barrier"},{"doc":"Wait for the pre-determined number of threads and then proceed.","kind":"method","module":"core.sync.barrier","name":"wait","package":"druntime","parentType":"Barrier","signature":"void wait()","url":"/ddoc/druntime/core/sync/barrier/Barrier.wait.html"},{"doc":"The condition module provides a primitive for synchronized condition checking.","kind":"module","module":"core.sync.condition","name":"core.sync.condition","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/condition.html"},{"doc":"This class represents a condition variable as conceived by C.A.R. Hoare.  As per Mesa type monitors however, \"signal\" has been replaced with \"notif...","kind":"class","module":"core.sync.condition","name":"Condition","package":"druntime","parentType":"","signature":"Condition","url":"/ddoc/druntime/core/sync/condition.html#Condition"},{"doc":"Gets the mutex associated with this condition.","kind":"method","module":"core.sync.condition","name":"mutex","package":"druntime","parentType":"Condition","signature":"Mutex mutex()","url":"/ddoc/druntime/core/sync/condition/Condition.mutex.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"mutex","package":"druntime","parentType":"Condition","signature":"shared(Mutex) mutex()","url":"/ddoc/druntime/core/sync/condition/Condition.mutex.html"},{"doc":"","kind":"method","module":"core.sync.condition","name":"mutex_nothrow","package":"druntime","parentType":"Condition","signature":"Mutex mutex_nothrow()","url":"/ddoc/druntime/core/sync/condition/Condition.mutex_nothrow.html"},{"doc":"","kind":"method","module":"core.sync.condition","name":"mutex_nothrow","package":"druntime","parentType":"Condition","signature":"shared(Mutex) mutex_nothrow()","url":"/ddoc/druntime/core/sync/condition/Condition.mutex_nothrow.html"},{"doc":"Wait until notified.","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"void wait()","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"void wait()","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"void wait(this  Q)(  bool  _unused_ ) if (is(Q ==  Condition)  ||  is(Q ==  shared  Condition))","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"Suspends the calling thread until a notification occurs or until the supplied time period has elapsed.","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"bool wait(  Duration val )","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"bool wait(  Duration val )","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"wait","package":"druntime","parentType":"Condition","signature":"bool wait(this  Q)(  Duration val,  bool  _unused_ ) if (is(Q ==  Condition)  ||  is(Q ==  shared  Condition))","url":"/ddoc/druntime/core/sync/condition/Condition.wait.html"},{"doc":"Notifies one waiter.","kind":"method","module":"core.sync.condition","name":"notify","package":"druntime","parentType":"Condition","signature":"void notify()","url":"/ddoc/druntime/core/sync/condition/Condition.notify.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"notify","package":"druntime","parentType":"Condition","signature":"void notify()","url":"/ddoc/druntime/core/sync/condition/Condition.notify.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"notify","package":"druntime","parentType":"Condition","signature":"void notify(this  Q)(  bool  _unused_ ) if (is(Q ==  Condition)  ||  is(Q ==  shared  Condition))","url":"/ddoc/druntime/core/sync/condition/Condition.notify.html"},{"doc":"Notifies all waiters.","kind":"method","module":"core.sync.condition","name":"notifyAll","package":"druntime","parentType":"Condition","signature":"void notifyAll()","url":"/ddoc/druntime/core/sync/condition/Condition.notifyAll.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"notifyAll","package":"druntime","parentType":"Condition","signature":"void notifyAll()","url":"/ddoc/druntime/core/sync/condition/Condition.notifyAll.html"},{"doc":"ditto","kind":"method","module":"core.sync.condition","name":"notifyAll","package":"druntime","parentType":"Condition","signature":"void notifyAll(this  Q)(  bool  _unused_ ) if (is(Q ==  Condition)  ||  is(Q ==  shared  Condition))","url":"/ddoc/druntime/core/sync/condition/Condition.notifyAll.html"},{"doc":"The config module contains utility routines and configuration information specific to this package.","kind":"module","module":"core.sync.config","name":"core.sync.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/config.html"},{"doc":"The event module provides a primitive for lightweight signaling of other threads (emulating Windows events on Posix)","kind":"module","module":"core.sync.event","name":"core.sync.event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/event.html"},{"doc":"* represents an event. Clients of an event are suspended while waiting * for the event to be \"signaled\". * * Implemented using `pthread_mutex` and ...","kind":"struct","module":"core.sync.event","name":"Event","package":"druntime","parentType":"","signature":"Event","url":"/ddoc/druntime/core/sync/event.html#Event"},{"doc":"Initializes an event object. Does nothing if the event is already initialized.","kind":"method","module":"core.sync.event","name":"initialize","package":"druntime","parentType":"Event","signature":"void initialize(bool  manualReset,  bool  initialState)","url":"/ddoc/druntime/core/sync/event/Event.initialize.html"},{"doc":"","kind":"method","module":"core.sync.event","name":"opAssign","package":"druntime","parentType":"Event","signature":"void opAssign(Event)","url":"/ddoc/druntime/core/sync/event/Event.opAssign.html"},{"doc":"deinitialize event. Does nothing if the event is not initialized. There must not be threads currently waiting for the event to be signaled.","kind":"method","module":"core.sync.event","name":"terminate","package":"druntime","parentType":"Event","signature":"void terminate()","url":"/ddoc/druntime/core/sync/event/Event.terminate.html"},{"doc":"","kind":"method","module":"core.sync.event","name":"set","package":"druntime","parentType":"Event","signature":"void set()","url":"/ddoc/druntime/core/sync/event/Event.set.html"},{"doc":"Set the event to \"signaled\", so that waiting clients are resumed","kind":"method","module":"core.sync.event","name":"setIfInitialized","package":"druntime","parentType":"Event","signature":"void setIfInitialized()","url":"/ddoc/druntime/core/sync/event/Event.setIfInitialized.html"},{"doc":"Reset the event manually","kind":"method","module":"core.sync.event","name":"reset","package":"druntime","parentType":"Event","signature":"void reset()","url":"/ddoc/druntime/core/sync/event/Event.reset.html"},{"doc":"Wait for the event to be signaled without timeout.","kind":"method","module":"core.sync.event","name":"wait","package":"druntime","parentType":"Event","signature":"bool wait()","url":"/ddoc/druntime/core/sync/event/Event.wait.html"},{"doc":"Wait for the event to be signaled with timeout.","kind":"method","module":"core.sync.event","name":"wait","package":"druntime","parentType":"Event","signature":"bool wait(Duration tmout)","url":"/ddoc/druntime/core/sync/event/Event.wait.html"},{"doc":"Define base class for synchronization exceptions.","kind":"module","module":"core.sync.exception","name":"core.sync.exception","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/exception.html"},{"doc":"Base class for synchronization errors.","kind":"class","module":"core.sync.exception","name":"SyncError","package":"druntime","parentType":"","signature":"SyncError : Error","url":"/ddoc/druntime/core/sync/exception.html#SyncError"},{"doc":"The mutex module provides a primitive for maintaining mutually exclusive access.","kind":"module","module":"core.sync.mutex","name":"core.sync.mutex","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/mutex.html"},{"doc":"This class represents a general purpose, recursive mutex.","kind":"class","module":"core.sync.mutex","name":"Mutex","package":"druntime","parentType":"","signature":"Mutex : Object.Monitor","url":"/ddoc/druntime/core/sync/mutex.html#Mutex"},{"doc":"If this lock is not already held by the caller, the lock is acquired, then the internal counter is incremented by one.","kind":"method","module":"core.sync.mutex","name":"lock","package":"druntime","parentType":"Mutex","signature":"void lock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.lock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"lock","package":"druntime","parentType":"Mutex","signature":"void lock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.lock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"lock_nothrow","package":"druntime","parentType":"Mutex","signature":"void lock_nothrow(this  Q)() if (is(Q ==  Mutex)  ||  is(Q ==  shared  Mutex))","url":"/ddoc/druntime/core/sync/mutex/Mutex.lock_nothrow.html"},{"doc":"Decrements the internal lock count by one.  If this brings the count to zero, the lock is released.","kind":"method","module":"core.sync.mutex","name":"unlock","package":"druntime","parentType":"Mutex","signature":"void unlock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.unlock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"unlock","package":"druntime","parentType":"Mutex","signature":"void unlock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.unlock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"unlock_nothrow","package":"druntime","parentType":"Mutex","signature":"void unlock_nothrow(this  Q)() if (is(Q ==  Mutex)  ||  is(Q ==  shared  Mutex))","url":"/ddoc/druntime/core/sync/mutex/Mutex.unlock_nothrow.html"},{"doc":"If the lock is held by another caller, the method returns.  Otherwise, the lock is acquired if it is not already held, and then the internal counte...","kind":"method","module":"core.sync.mutex","name":"tryLock","package":"druntime","parentType":"Mutex","signature":"bool tryLock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.tryLock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"tryLock","package":"druntime","parentType":"Mutex","signature":"bool tryLock()","url":"/ddoc/druntime/core/sync/mutex/Mutex.tryLock.html"},{"doc":"ditto","kind":"method","module":"core.sync.mutex","name":"tryLock_nothrow","package":"druntime","parentType":"Mutex","signature":"bool tryLock_nothrow(this  Q)() if (is(Q ==  Mutex)  ||  is(Q ==  shared  Mutex))","url":"/ddoc/druntime/core/sync/mutex/Mutex.tryLock_nothrow.html"},{"doc":"Provides thread synchronization tools such as mutexes, semaphores and barriers.","kind":"module","module":"core.sync","name":"core.sync","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync.html"},{"doc":"The read/write mutex module provides a primitive for maintaining shared read access and mutually exclusive write access.","kind":"module","module":"core.sync.rwmutex","name":"core.sync.rwmutex","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/rwmutex.html"},{"doc":"This class represents a mutex that allows any number of readers to enter, but when a writer enters, all other readers and writers are blocked.","kind":"class","module":"core.sync.rwmutex","name":"ReadWriteMutex","package":"druntime","parentType":"","signature":"ReadWriteMutex","url":"/ddoc/druntime/core/sync/rwmutex.html#ReadWriteMutex"},{"doc":"Gets the policy used by this mutex.","kind":"method","module":"core.sync.rwmutex","name":"policy","package":"druntime","parentType":"ReadWriteMutex","signature":"Policy policy()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.policy.html"},{"doc":"ditto","kind":"method","module":"core.sync.rwmutex","name":"policy","package":"druntime","parentType":"ReadWriteMutex","signature":"Policy policy()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.policy.html"},{"doc":"Gets an object representing the reader lock for the associated mutex.","kind":"method","module":"core.sync.rwmutex","name":"reader","package":"druntime","parentType":"ReadWriteMutex","signature":"Reader reader()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.reader.html"},{"doc":"ditto","kind":"method","module":"core.sync.rwmutex","name":"reader","package":"druntime","parentType":"ReadWriteMutex","signature":"shared(Reader) reader()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.reader.html"},{"doc":"Gets an object representing the writer lock for the associated mutex.","kind":"method","module":"core.sync.rwmutex","name":"writer","package":"druntime","parentType":"ReadWriteMutex","signature":"Writer writer()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.writer.html"},{"doc":"ditto","kind":"method","module":"core.sync.rwmutex","name":"writer","package":"druntime","parentType":"ReadWriteMutex","signature":"shared(Writer) writer()","url":"/ddoc/druntime/core/sync/rwmutex/ReadWriteMutex.writer.html"},{"doc":"The semaphore module provides a general use semaphore for synchronization.","kind":"module","module":"core.sync.semaphore","name":"core.sync.semaphore","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sync/semaphore.html"},{"doc":"This class represents a general counting semaphore as concieved by Edsger Dijkstra.  As per Mesa type monitors however, \"signal\" has been replaced ...","kind":"class","module":"core.sync.semaphore","name":"Semaphore","package":"druntime","parentType":"","signature":"Semaphore","url":"/ddoc/druntime/core/sync/semaphore.html#Semaphore"},{"doc":"Wait until the current count is above zero, then atomically decrement the count by one and return.","kind":"method","module":"core.sync.semaphore","name":"wait","package":"druntime","parentType":"Semaphore","signature":"void wait()","url":"/ddoc/druntime/core/sync/semaphore/Semaphore.wait.html"},{"doc":"Suspends the calling thread until the current count moves above zero or until the supplied time period has elapsed.  If the count moves above zero ...","kind":"method","module":"core.sync.semaphore","name":"wait","package":"druntime","parentType":"Semaphore","signature":"bool wait(  Duration period )","url":"/ddoc/druntime/core/sync/semaphore/Semaphore.wait.html"},{"doc":"Atomically increment the current count by one.  This will notify one waiter, if there are any in the queue.","kind":"method","module":"core.sync.semaphore","name":"notify","package":"druntime","parentType":"Semaphore","signature":"void notify()","url":"/ddoc/druntime/core/sync/semaphore/Semaphore.notify.html"},{"doc":"If the current count is equal to zero, return.  Otherwise, atomically decrement the count by one and return true.","kind":"method","module":"core.sync.semaphore","name":"tryWait","package":"druntime","parentType":"Semaphore","signature":"bool tryWait()","url":"/ddoc/druntime/core/sync/semaphore/Semaphore.tryWait.html"},{"doc":"D header file for Bionic err.h.","kind":"module","module":"core.sys.bionic.err","name":"core.sys.bionic.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/bionic/err.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/bionic/err/err.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/bionic/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/bionic/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/bionic/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/bionic/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/bionic/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/bionic/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.bionic.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/bionic/err/vwarnx.html"},{"doc":"","kind":"module","module":"core.sys.bionic.fcntl","name":"core.sys.bionic.fcntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/bionic/fcntl.html"},{"doc":"","kind":"variable","module":"core.sys.bionic.fcntl","name":"LOCK_EX","package":"druntime","parentType":"","signature":"LOCK_EX","url":"/ddoc/druntime/core/sys/bionic/fcntl.html#LOCK_EX"},{"doc":"D header file for Bionic stdlib.h.","kind":"module","module":"core.sys.bionic.stdlib","name":"core.sys.bionic.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/bionic/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.bionic.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/bionic/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.bionic.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/bionic/stdlib/setprogname.html"},{"doc":"D header file for Bionic string.","kind":"module","module":"core.sys.bionic.string","name":"core.sys.bionic.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/bionic/string.html"},{"doc":"","kind":"function","module":"core.sys.bionic.string","name":"memmem","package":"druntime","parentType":"","signature":"void * memmem(return  scope  const  void *  haystack,  size_t haystacklen,  scope  const  void *  needle,  size_t needlelen)","url":"/ddoc/druntime/core/sys/bionic/string/memmem.html"},{"doc":"","kind":"module","module":"core.sys.bionic.unistd","name":"core.sys.bionic.unistd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/bionic/unistd.html"},{"doc":"","kind":"function","module":"core.sys.bionic.unistd","name":"flock","package":"druntime","parentType":"","signature":"int flock(int,  int)","url":"/ddoc/druntime/core/sys/bionic/unistd/flock.html"},{"doc":"D header file for $(LINK2 https://opensource.apple.com/source/Libc/Libc-1244.30.3/include/crt_externs.h.auto.html, libc/crt_externs.h).","kind":"module","module":"core.sys.darwin.crt_externs","name":"core.sys.darwin.crt_externs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/crt_externs.html"},{"doc":"","kind":"function","module":"core.sys.darwin.crt_externs","name":"_NSGetArgv","package":"druntime","parentType":"","signature":"char * * * _NSGetArgv()","url":"/ddoc/druntime/core/sys/darwin/crt_externs/_NSGetArgv.html"},{"doc":"","kind":"function","module":"core.sys.darwin.crt_externs","name":"_NSGetArgc","package":"druntime","parentType":"","signature":"int * _NSGetArgc()","url":"/ddoc/druntime/core/sys/darwin/crt_externs/_NSGetArgc.html"},{"doc":"","kind":"function","module":"core.sys.darwin.crt_externs","name":"_NSGetEnviron","package":"druntime","parentType":"","signature":"char * * * _NSGetEnviron()","url":"/ddoc/druntime/core/sys/darwin/crt_externs/_NSGetEnviron.html"},{"doc":"","kind":"function","module":"core.sys.darwin.crt_externs","name":"_NSGetProgname","package":"druntime","parentType":"","signature":"char * * _NSGetProgname()","url":"/ddoc/druntime/core/sys/darwin/crt_externs/_NSGetProgname.html"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.dlfcn","name":"core.sys.darwin.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/dlfcn.html"},{"doc":"","kind":"variable","module":"core.sys.darwin.dlfcn","name":"RTLD_NEXT","package":"druntime","parentType":"","signature":"RTLD_NEXT","url":"/ddoc/druntime/core/sys/darwin/dlfcn.html#RTLD_NEXT"},{"doc":"","kind":"variable","module":"core.sys.darwin.dlfcn","name":"RTLD_DEFAULT","package":"druntime","parentType":"","signature":"RTLD_DEFAULT","url":"/ddoc/druntime/core/sys/darwin/dlfcn.html#RTLD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.darwin.dlfcn","name":"RTLD_SELF","package":"druntime","parentType":"","signature":"RTLD_SELF","url":"/ddoc/druntime/core/sys/darwin/dlfcn.html#RTLD_SELF"},{"doc":"","kind":"variable","module":"core.sys.darwin.dlfcn","name":"RTLD_MAIN_ONLY","package":"druntime","parentType":"","signature":"RTLD_MAIN_ONLY","url":"/ddoc/druntime/core/sys/darwin/dlfcn.html#RTLD_MAIN_ONLY"},{"doc":"D header file for Darwin err.h.","kind":"module","module":"core.sys.darwin.err","name":"core.sys.darwin.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/err.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/err.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"errc","package":"druntime","parentType":"","signature":"void errc(int  eval,  int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/errc.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"warnc","package":"druntime","parentType":"","signature":"void warnc(int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/warnc.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/darwin/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"verrc","package":"druntime","parentType":"","signature":"void verrc(int  eval,  int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/verrc.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"vwarnc","package":"druntime","parentType":"","signature":"void vwarnc(int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/vwarnc.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/darwin/err/vwarnx.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"err_set_file","package":"druntime","parentType":"","signature":"void err_set_file(void *  vfp)","url":"/ddoc/druntime/core/sys/darwin/err/err_set_file.html"},{"doc":"","kind":"function","module":"core.sys.darwin.err","name":"err_set_exit","package":"druntime","parentType":"","signature":"void err_set_exit(ExitFunction exitf)","url":"/ddoc/druntime/core/sys/darwin/err/err_set_exit.html"},{"doc":"","kind":"alias","module":"core.sys.darwin.err","name":"ExitFunction","package":"druntime","parentType":"","signature":"ExitFunction = void  function(int)","url":"/ddoc/druntime/core/sys/darwin/err.html#ExitFunction"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.execinfo","name":"core.sys.darwin.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/execinfo.html"},{"doc":"","kind":"function","module":"core.sys.darwin.execinfo","name":"backtrace","package":"druntime","parentType":"","signature":"int backtrace(void * *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/darwin/execinfo/backtrace.html"},{"doc":"","kind":"function","module":"core.sys.darwin.execinfo","name":"backtrace_symbols","package":"druntime","parentType":"","signature":"char * * backtrace_symbols(const(void *) *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/darwin/execinfo/backtrace_symbols.html"},{"doc":"","kind":"function","module":"core.sys.darwin.execinfo","name":"backtrace_symbols_fd","package":"druntime","parentType":"","signature":"void backtrace_symbols_fd(const(void *) *  buffer,  int  size,  int  fd)","url":"/ddoc/druntime/core/sys/darwin/execinfo/backtrace_symbols_fd.html"},{"doc":"","kind":"module","module":"core.sys.darwin.fcntl","name":"core.sys.darwin.fcntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/fcntl.html"},{"doc":"","kind":"variable","module":"core.sys.darwin.fcntl","name":"F_FULLFSYNC","package":"druntime","parentType":"","signature":"F_FULLFSYNC","url":"/ddoc/druntime/core/sys/darwin/fcntl.html#F_FULLFSYNC"},{"doc":"Binding for Mac OSX's <ifaddr.h>, expose network interface addresses","kind":"module","module":"core.sys.darwin.ifaddrs","name":"core.sys.darwin.ifaddrs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/ifaddrs.html"},{"doc":"Returns: linked list of ifaddrs structures describing interfaces","kind":"function","module":"core.sys.darwin.ifaddrs","name":"getifaddrs","package":"druntime","parentType":"","signature":"int getifaddrs(ifaddrs * *)","url":"/ddoc/druntime/core/sys/darwin/ifaddrs/getifaddrs.html"},{"doc":"Frees the linked list returned by getifaddrs","kind":"function","module":"core.sys.darwin.ifaddrs","name":"freeifaddrs","package":"druntime","parentType":"","signature":"void freeifaddrs(ifaddrs *)","url":"/ddoc/druntime/core/sys/darwin/ifaddrs/freeifaddrs.html"},{"doc":"Stores a reference to a linked list of the multicast memberships on the local machine in the memory referenced by ifmaddrs","kind":"function","module":"core.sys.darwin.ifaddrs","name":"getifmaddrs","package":"druntime","parentType":"","signature":"int getifmaddrs(ifmaddrs * *)","url":"/ddoc/druntime/core/sys/darwin/ifaddrs/getifmaddrs.html"},{"doc":"Frees the list allocated by getifmaddrs","kind":"function","module":"core.sys.darwin.ifaddrs","name":"freeifmaddrs","package":"druntime","parentType":"","signature":"void freeifmaddrs(ifmaddrs *)","url":"/ddoc/druntime/core/sys/darwin/ifaddrs/freeifmaddrs.html"},{"doc":"","kind":"struct","module":"core.sys.darwin.ifaddrs","name":"ifaddrs","package":"druntime","parentType":"","signature":"ifaddrs","url":"/ddoc/druntime/core/sys/darwin/ifaddrs.html#ifaddrs"},{"doc":"","kind":"struct","module":"core.sys.darwin.ifaddrs","name":"ifmaddrs","package":"druntime","parentType":"","signature":"ifmaddrs","url":"/ddoc/druntime/core/sys/darwin/ifaddrs.html#ifmaddrs"},{"doc":"Copyright: Copyright Digital Mars 2010. License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors:   Jacob Carlborg Version: Ini...","kind":"module","module":"core.sys.darwin.mach.dyld","name":"core.sys.darwin.mach.dyld","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/dyld.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_image_count","package":"druntime","parentType":"","signature":"uint _dyld_image_count()","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_image_count.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_get_image_name","package":"druntime","parentType":"","signature":"const(char) * _dyld_get_image_name(uint  image_index)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_get_image_name.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_get_image_header","package":"druntime","parentType":"","signature":"mach_header * _dyld_get_image_header(uint  image_index)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_get_image_header.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_get_image_vmaddr_slide","package":"druntime","parentType":"","signature":"intptr_t _dyld_get_image_vmaddr_slide(uint  image_index)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_get_image_vmaddr_slide.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_register_func_for_add_image","package":"druntime","parentType":"","signature":"void _dyld_register_func_for_add_image(void  function(const  scope  mach_header *  mh,  intptr_t vmaddr_slide))","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_register_func_for_add_image.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_dyld_register_func_for_remove_image","package":"druntime","parentType":"","signature":"void _dyld_register_func_for_remove_image(void  function(const  scope  mach_header *  mh,  intptr_t vmaddr_slide))","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_dyld_register_func_for_remove_image.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"NSVersionOfRunTimeLibrary","package":"druntime","parentType":"","signature":"int NSVersionOfRunTimeLibrary(const  char *  libraryPath)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/NSVersionOfRunTimeLibrary.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"NSVersionOfLinkTimeLibrary","package":"druntime","parentType":"","signature":"int NSVersionOfLinkTimeLibrary(const  char *  libraryPath)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/NSVersionOfLinkTimeLibrary.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.dyld","name":"_NSGetExecutablePath","package":"druntime","parentType":"","signature":"int _NSGetExecutablePath(char *  buf,  uint *  bufsize)","url":"/ddoc/druntime/core/sys/darwin/mach/dyld/_NSGetExecutablePath.html"},{"doc":"D header file for $(LINK2 https://opensource.apple.com/source/cctools/cctools-895/include/mach-o/getsect.h.auto.html, mach-o/getsect.h).","kind":"module","module":"core.sys.darwin.mach.getsect","name":"core.sys.darwin.mach.getsect","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/getsect.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectdata","package":"druntime","parentType":"","signature":"char * getsectdata(\n     const  scope  char *  segname,\n     const  scope  char *  sectname,\n     c_ulong * size\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectdata.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectdatafromFramework","package":"druntime","parentType":"","signature":"char * getsectdatafromFramework(\n     const  scope  char *  FrameworkName,\n     const  scope  char *  segname,\n     const  scope  char *  sectname,\n     c_ulong *  size\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectdatafromFramework.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"get_end","package":"druntime","parentType":"","signature":"c_ulong get_end()","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/get_end.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"get_etext","package":"druntime","parentType":"","signature":"c_ulong get_etext()","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/get_etext.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"get_edata","package":"druntime","parentType":"","signature":"c_ulong get_edata()","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/get_edata.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectdatafromheader","package":"druntime","parentType":"","signature":"ubyte * getsectdatafromheader(\n     const  scope  mach_header *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  sectname,\n     c_ulong *  size\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectdatafromheader.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectbynamefromheader","package":"druntime","parentType":"","signature":"const(section) * getsectbynamefromheader(\n     const  scope  mach_header *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  sectname\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectbynamefromheader.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectbynamefromheaderwithswap","package":"druntime","parentType":"","signature":"const(section) * getsectbynamefromheaderwithswap(\n     const  scope  mach_header *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  section,\n     int  fSwap\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectbynamefromheaderwithswap.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectdatafromheader_64","package":"druntime","parentType":"","signature":"ubyte * getsectdatafromheader_64(\n     const  scope  mach_header_64 *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  sectname,\n     c_ulong *  size\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectdatafromheader_64.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectbynamefromheader_64","package":"druntime","parentType":"","signature":"const(section_64) * getsectbynamefromheader_64(\n     const  scope  mach_header_64 *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  sectname\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectbynamefromheader_64.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.getsect","name":"getsectbynamefromheaderwithswap_64","package":"druntime","parentType":"","signature":"const(section) * getsectbynamefromheaderwithswap_64(\n     const  scope  mach_header_64 *  mhp,\n     const  scope  char *  segname,\n     const  scope  char *  section,\n     int  fSwap\n)","url":"/ddoc/druntime/core/sys/darwin/mach/getsect/getsectbynamefromheaderwithswap_64.html"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.mach.kern_return","name":"core.sys.darwin.mach.kern_return","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/kern_return.html"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.kern_return","name":"kern_return_t","package":"druntime","parentType":"","signature":"kern_return_t = int","url":"/ddoc/druntime/core/sys/darwin/mach/kern_return.html#kern_return_t"},{"doc":"This file describes the format of Mach-O object files.","kind":"module","module":"core.sys.darwin.mach.loader","name":"core.sys.darwin.mach.loader","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"mach_header","package":"druntime","parentType":"","signature":"mach_header","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#mach_header"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"mach_header_64","package":"druntime","parentType":"","signature":"mach_header_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#mach_header_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"load_command","package":"druntime","parentType":"","signature":"load_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#load_command"},{"doc":"","kind":"union","module":"core.sys.darwin.mach.loader","name":"lc_str","package":"druntime","parentType":"","signature":"lc_str","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#lc_str"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"segment_command","package":"druntime","parentType":"","signature":"segment_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#segment_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"segment_command_64","package":"druntime","parentType":"","signature":"segment_command_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#segment_command_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"section","package":"druntime","parentType":"","signature":"section","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#section"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"section_64","package":"druntime","parentType":"","signature":"section_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#section_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"fvmlib","package":"druntime","parentType":"","signature":"fvmlib","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#fvmlib"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"fvmlib_command","package":"druntime","parentType":"","signature":"fvmlib_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#fvmlib_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib","package":"druntime","parentType":"","signature":"dylib","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib_command","package":"druntime","parentType":"","signature":"dylib_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"sub_framework_command","package":"druntime","parentType":"","signature":"sub_framework_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#sub_framework_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"sub_client_command","package":"druntime","parentType":"","signature":"sub_client_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#sub_client_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"sub_umbrella_command","package":"druntime","parentType":"","signature":"sub_umbrella_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#sub_umbrella_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"sub_library_command","package":"druntime","parentType":"","signature":"sub_library_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#sub_library_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"prebound_dylib_command","package":"druntime","parentType":"","signature":"prebound_dylib_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#prebound_dylib_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylinker_command","package":"druntime","parentType":"","signature":"dylinker_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylinker_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"thread_command","package":"druntime","parentType":"","signature":"thread_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#thread_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"routines_command","package":"druntime","parentType":"","signature":"routines_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#routines_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"routines_command_64","package":"druntime","parentType":"","signature":"routines_command_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#routines_command_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"symtab_command","package":"druntime","parentType":"","signature":"symtab_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#symtab_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dysymtab_command","package":"druntime","parentType":"","signature":"dysymtab_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dysymtab_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib_table_of_contents","package":"druntime","parentType":"","signature":"dylib_table_of_contents","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib_table_of_contents"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib_module","package":"druntime","parentType":"","signature":"dylib_module","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib_module"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib_module_64","package":"druntime","parentType":"","signature":"dylib_module_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib_module_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dylib_reference","package":"druntime","parentType":"","signature":"dylib_reference","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dylib_reference"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"isym","package":"druntime","parentType":"dylib_reference","signature":"uint isym()()","url":"/ddoc/druntime/core/sys/darwin/mach/loader/dylib_reference.isym.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"isym","package":"druntime","parentType":"dylib_reference","signature":"void isym()(uint  v)","url":"/ddoc/druntime/core/sys/darwin/mach/loader/dylib_reference.isym.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"flags","package":"druntime","parentType":"dylib_reference","signature":"uint flags()()","url":"/ddoc/druntime/core/sys/darwin/mach/loader/dylib_reference.flags.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"flags","package":"druntime","parentType":"dylib_reference","signature":"void flags()(uint  v)","url":"/ddoc/druntime/core/sys/darwin/mach/loader/dylib_reference.flags.html"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"twolevel_hints_command","package":"druntime","parentType":"","signature":"twolevel_hints_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#twolevel_hints_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"twolevel_hint","package":"druntime","parentType":"","signature":"twolevel_hint","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#twolevel_hint"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"isub_image","package":"druntime","parentType":"twolevel_hint","signature":"uint isub_image()()","url":"/ddoc/druntime/core/sys/darwin/mach/loader/twolevel_hint.isub_image.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"isub_image","package":"druntime","parentType":"twolevel_hint","signature":"void isub_image()(uint  v)","url":"/ddoc/druntime/core/sys/darwin/mach/loader/twolevel_hint.isub_image.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"itoc","package":"druntime","parentType":"twolevel_hint","signature":"uint itoc()()","url":"/ddoc/druntime/core/sys/darwin/mach/loader/twolevel_hint.itoc.html"},{"doc":"","kind":"method","module":"core.sys.darwin.mach.loader","name":"itoc","package":"druntime","parentType":"twolevel_hint","signature":"void itoc()(uint  v)","url":"/ddoc/druntime/core/sys/darwin/mach/loader/twolevel_hint.itoc.html"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"prebind_cksum_command","package":"druntime","parentType":"","signature":"prebind_cksum_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#prebind_cksum_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"uuid_command","package":"druntime","parentType":"","signature":"uuid_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#uuid_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"rpath_command","package":"druntime","parentType":"","signature":"rpath_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#rpath_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"linkedit_data_command","package":"druntime","parentType":"","signature":"linkedit_data_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#linkedit_data_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"encryption_info_command","package":"druntime","parentType":"","signature":"encryption_info_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#encryption_info_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"encryption_info_command_64","package":"druntime","parentType":"","signature":"encryption_info_command_64","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#encryption_info_command_64"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"version_min_command","package":"druntime","parentType":"","signature":"version_min_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#version_min_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"build_version_command","package":"druntime","parentType":"","signature":"build_version_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#build_version_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"build_tool_version","package":"druntime","parentType":"","signature":"build_tool_version","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#build_tool_version"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"dyld_info_command","package":"druntime","parentType":"","signature":"dyld_info_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#dyld_info_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"linker_option_command","package":"druntime","parentType":"","signature":"linker_option_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#linker_option_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"symseg_command","package":"druntime","parentType":"","signature":"symseg_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#symseg_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"ident_command","package":"druntime","parentType":"","signature":"ident_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#ident_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"fvmfile_command","package":"druntime","parentType":"","signature":"fvmfile_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#fvmfile_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"entry_point_command","package":"druntime","parentType":"","signature":"entry_point_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#entry_point_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"source_version_command","package":"druntime","parentType":"","signature":"source_version_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#source_version_command"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"data_in_code_entry","package":"druntime","parentType":"","signature":"data_in_code_entry","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#data_in_code_entry"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"tlv_descriptor","package":"druntime","parentType":"","signature":"tlv_descriptor","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#tlv_descriptor"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.loader","name":"note_command","package":"druntime","parentType":"","signature":"note_command","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#note_command"},{"doc":"","kind":"variable","module":"core.sys.darwin.mach.loader","name":"LC_REQ_DYLD","package":"druntime","parentType":"","signature":"LC_REQ_DYLD","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#LC_REQ_DYLD"},{"doc":"","kind":"variable","module":"core.sys.darwin.mach.loader","name":"LC_LOAD_WEAK_DYLIB","package":"druntime","parentType":"","signature":"LC_LOAD_WEAK_DYLIB","url":"/ddoc/druntime/core/sys/darwin/mach/loader.html#LC_LOAD_WEAK_DYLIB"},{"doc":"Bindings for symbols and defines in `mach-o/nlist.h`","kind":"module","module":"core.sys.darwin.mach.nlist","name":"core.sys.darwin.mach.nlist","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/nlist.html"},{"doc":"Common symbols are represented by undefined (N_UNDF) external (N_EXT) types who's values (n_value) are non-zero.  In which case the value of the n_...","kind":"function","module":"core.sys.darwin.mach.nlist","name":"GET_COMM_ALIGN","package":"druntime","parentType":"","signature":"ubyte GET_COMM_ALIGN(uint  n_desc)","url":"/ddoc/druntime/core/sys/darwin/mach/nlist/GET_COMM_ALIGN.html"},{"doc":"Ditto","kind":"function","module":"core.sys.darwin.mach.nlist","name":"SET_COMM_ALIGN","package":"druntime","parentType":"","signature":"ushort SET_COMM_ALIGN(return  ref  ushort  n_desc,  size_t wanted_align)","url":"/ddoc/druntime/core/sys/darwin/mach/nlist/SET_COMM_ALIGN.html"},{"doc":"For images created by the static link editor with the -twolevel_namespace option in effect the flags field of the mach header is marked with MH_TWO...","kind":"function","module":"core.sys.darwin.mach.nlist","name":"GET_LIBRARY_ORDINAL","package":"druntime","parentType":"","signature":"ubyte GET_LIBRARY_ORDINAL(uint  n_desc)","url":"/ddoc/druntime/core/sys/darwin/mach/nlist/GET_LIBRARY_ORDINAL.html"},{"doc":"Ditto","kind":"function","module":"core.sys.darwin.mach.nlist","name":"SET_LIBRARY_ORDINAL","package":"druntime","parentType":"","signature":"ushort SET_LIBRARY_ORDINAL(return  ref  ushort  n_desc,  uint  ordinal)","url":"/ddoc/druntime/core/sys/darwin/mach/nlist/SET_LIBRARY_ORDINAL.html"},{"doc":"An entry in a list of symbols for 64-bits architectures","kind":"struct","module":"core.sys.darwin.mach.nlist","name":"nlist_64","package":"druntime","parentType":"","signature":"nlist_64","url":"/ddoc/druntime/core/sys/darwin/mach/nlist.html#nlist_64"},{"doc":"Symbol is not in any section","kind":"variable","module":"core.sys.darwin.mach.nlist","name":"NO_SECT","package":"druntime","parentType":"","signature":"NO_SECT","url":"/ddoc/druntime/core/sys/darwin/mach/nlist.html#NO_SECT"},{"doc":"Maximum number of sections: 1 thru 255 inclusive","kind":"variable","module":"core.sys.darwin.mach.nlist","name":"MAX_SECT","package":"druntime","parentType":"","signature":"MAX_SECT","url":"/ddoc/druntime/core/sys/darwin/mach/nlist.html#MAX_SECT"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.mach.port","name":"core.sys.darwin.mach.port","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/port.html"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.port","name":"natural_t","package":"druntime","parentType":"","signature":"natural_t = uint","url":"/ddoc/druntime/core/sys/darwin/mach/port.html#natural_t"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.port","name":"mach_port_t","package":"druntime","parentType":"","signature":"mach_port_t = natural_t","url":"/ddoc/druntime/core/sys/darwin/mach/port.html#mach_port_t"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.mach.semaphore","name":"core.sys.darwin.mach.semaphore","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"mach_task_self","package":"druntime","parentType":"","signature":"task_t mach_task_self()","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/mach_task_self.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_create","package":"druntime","parentType":"","signature":"kern_return_t semaphore_create(task_t,  semaphore_t *,  int,  int)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_create.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_destroy","package":"druntime","parentType":"","signature":"kern_return_t semaphore_destroy(task_t,  semaphore_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_destroy.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_signal","package":"druntime","parentType":"","signature":"kern_return_t semaphore_signal(semaphore_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_signal.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_signal_all","package":"druntime","parentType":"","signature":"kern_return_t semaphore_signal_all(semaphore_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_signal_all.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_signal_thread","package":"druntime","parentType":"","signature":"kern_return_t semaphore_signal_thread(semaphore_t,  thread_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_signal_thread.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_wait","package":"druntime","parentType":"","signature":"kern_return_t semaphore_wait(semaphore_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_wait.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_wait_signal","package":"druntime","parentType":"","signature":"kern_return_t semaphore_wait_signal(semaphore_t,  semaphore_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_wait_signal.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_timedwait","package":"druntime","parentType":"","signature":"kern_return_t semaphore_timedwait(semaphore_t,  mach_timespec_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_timedwait.html"},{"doc":"","kind":"function","module":"core.sys.darwin.mach.semaphore","name":"semaphore_timedwait_signal","package":"druntime","parentType":"","signature":"kern_return_t semaphore_timedwait_signal(semaphore_t,  semaphore_t,  mach_timespec_t)","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore/semaphore_timedwait_signal.html"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.semaphore","name":"task_t","package":"druntime","parentType":"","signature":"task_t = mach_port_t","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#task_t"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.semaphore","name":"thread_t","package":"druntime","parentType":"","signature":"thread_t = mach_port_t","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#thread_t"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.semaphore","name":"semaphore_t","package":"druntime","parentType":"","signature":"semaphore_t = mach_port_t","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#semaphore_t"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.semaphore","name":"sync_policy_t","package":"druntime","parentType":"","signature":"sync_policy_t = int","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#sync_policy_t"},{"doc":"","kind":"alias","module":"core.sys.darwin.mach.semaphore","name":"clock_res_t","package":"druntime","parentType":"","signature":"clock_res_t = int","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#clock_res_t"},{"doc":"","kind":"struct","module":"core.sys.darwin.mach.semaphore","name":"mach_timespec_t","package":"druntime","parentType":"","signature":"mach_timespec_t","url":"/ddoc/druntime/core/sys/darwin/mach/semaphore.html#mach_timespec_t"},{"doc":"Bindings for symbols and defines in `mach-o/stab.h`","kind":"module","module":"core.sys.darwin.mach.stab","name":"core.sys.darwin.mach.stab","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/stab.html"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.mach.thread_act","name":"core.sys.darwin.mach.thread_act","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/mach/thread_act.html"},{"doc":"D header file for Darwin's extensions to POSIX's netinet/in.h.","kind":"module","module":"core.sys.darwin.netinet.in_","name":"core.sys.darwin.netinet.in_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html"},{"doc":"","kind":"function","module":"core.sys.darwin.netinet.in_","name":"IN6_IS_ADDR_6TO4","package":"druntime","parentType":"","signature":"bool IN6_IS_ADDR_6TO4(in6_addr *  x)","url":"/ddoc/druntime/core/sys/darwin/netinet/in_/IN6_IS_ADDR_6TO4.html"},{"doc":"","kind":"function","module":"core.sys.darwin.netinet.in_","name":"IN6_IS_ADDR_UNIQUE_LOCAL","package":"druntime","parentType":"","signature":"bool IN6_IS_ADDR_UNIQUE_LOCAL(in6_addr *  a)","url":"/ddoc/druntime/core/sys/darwin/netinet/in_/IN6_IS_ADDR_UNIQUE_LOCAL.html"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_IP","package":"druntime","parentType":"","signature":"IPPROTO_IP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_IP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_ICMP","package":"druntime","parentType":"","signature":"IPPROTO_ICMP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_ICMP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_TCP","package":"druntime","parentType":"","signature":"IPPROTO_TCP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_TCP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_UDP","package":"druntime","parentType":"","signature":"IPPROTO_UDP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_UDP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_IPV6","package":"druntime","parentType":"","signature":"IPPROTO_IPV6","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_IPV6"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPPROTO_RAW","package":"druntime","parentType":"","signature":"IPPROTO_RAW","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPPROTO_RAW"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IN6ADDR_ANY_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_ANY_INIT","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IN6ADDR_ANY_INIT"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IN6ADDR_LOOPBACK_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_LOOPBACK_INIT","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IN6ADDR_LOOPBACK_INIT"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"in6addr_any","package":"druntime","parentType":"","signature":"in6_addr in6addr_any","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#in6addr_any"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"in6addr_loopback","package":"druntime","parentType":"","signature":"in6_addr in6addr_loopback","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#in6addr_loopback"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"__IPV6_ADDR_SCOPE_NODELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_NODELOCAL","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#__IPV6_ADDR_SCOPE_NODELOCAL"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"__IPV6_ADDR_SCOPE_INTFACELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_INTFACELOCAL","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#__IPV6_ADDR_SCOPE_INTFACELOCAL"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"__IPV6_ADDR_SCOPE_LINKLOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_LINKLOCAL","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#__IPV6_ADDR_SCOPE_LINKLOCAL"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"__IPV6_ADDR_SCOPE_SITELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_SITELOCAL","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#__IPV6_ADDR_SCOPE_SITELOCAL"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"__IPV6_ADDR_SCOPE_GLOBAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_GLOBAL","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#__IPV6_ADDR_SCOPE_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_UNICAST_HOPS","package":"druntime","parentType":"","signature":"IPV6_UNICAST_HOPS","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_UNICAST_HOPS"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_MULTICAST_IF","package":"druntime","parentType":"","signature":"IPV6_MULTICAST_IF","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_MULTICAST_IF"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_MULTICAST_HOPS","package":"druntime","parentType":"","signature":"IPV6_MULTICAST_HOPS","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_MULTICAST_HOPS"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_MULTICAST_LOOP","package":"druntime","parentType":"","signature":"IPV6_MULTICAST_LOOP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_MULTICAST_LOOP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_JOIN_GROUP","package":"druntime","parentType":"","signature":"IPV6_JOIN_GROUP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_JOIN_GROUP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_LEAVE_GROUP","package":"druntime","parentType":"","signature":"IPV6_LEAVE_GROUP","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_LEAVE_GROUP"},{"doc":"","kind":"variable","module":"core.sys.darwin.netinet.in_","name":"IPV6_V6ONLY","package":"druntime","parentType":"","signature":"IPV6_V6ONLY","url":"/ddoc/druntime/core/sys/darwin/netinet/in_.html#IPV6_V6ONLY"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.pthread","name":"core.sys.darwin.pthread","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/pthread.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_is_threaded_np","package":"druntime","parentType":"","signature":"int pthread_is_threaded_np()","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_is_threaded_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_threadid_np","package":"druntime","parentType":"","signature":"int pthread_threadid_np(pthread_t,  ulong *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_threadid_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_longrdlock_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_longrdlock_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_longrdlock_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_yieldwrlock_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_yieldwrlock_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_yieldwrlock_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_downgrade_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_downgrade_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_downgrade_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_upgrade_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_upgrade_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_upgrade_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_tryupgrade_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_tryupgrade_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_tryupgrade_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_held_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_held_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_held_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_rdheld_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_rdheld_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_rdheld_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_rwlock_wrheld_np","package":"druntime","parentType":"","signature":"int pthread_rwlock_wrheld_np(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_rwlock_wrheld_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_getname_np","package":"druntime","parentType":"","signature":"int pthread_getname_np(pthread_t,  char *,  size_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_getname_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_setname_np","package":"druntime","parentType":"","signature":"int pthread_setname_np(const  scope  char *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_setname_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_main_np","package":"druntime","parentType":"","signature":"int pthread_main_np()","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_main_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_mach_thread_np","package":"druntime","parentType":"","signature":"mach_port_t pthread_mach_thread_np(pthread_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_mach_thread_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_get_stacksize_np","package":"druntime","parentType":"","signature":"size_t pthread_get_stacksize_np(pthread_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_get_stacksize_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_get_stackaddr_np","package":"druntime","parentType":"","signature":"void * pthread_get_stackaddr_np(pthread_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_get_stackaddr_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_cond_signal_thread_np","package":"druntime","parentType":"","signature":"int pthread_cond_signal_thread_np(pthread_cond_t *,  pthread_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_cond_signal_thread_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_cond_timedwait_relative_np","package":"druntime","parentType":"","signature":"int pthread_cond_timedwait_relative_np(pthread_cond_t *,  pthread_mutex_t *,  const  scope  timespec *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_cond_timedwait_relative_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_create_suspended_np","package":"druntime","parentType":"","signature":"int pthread_create_suspended_np(pthread_t *,  const  scope  pthread_attr_t *,  void *  function(void *),  void *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_create_suspended_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_kill","package":"druntime","parentType":"","signature":"int pthread_kill(pthread_t,  int)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_kill.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_from_mach_thread_np","package":"druntime","parentType":"","signature":"pthread_t pthread_from_mach_thread_np(mach_port_t)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_from_mach_thread_np.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_sigmask","package":"druntime","parentType":"","signature":"int pthread_sigmask(int,  const  scope  sigset_t *,  sigset_t *)","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_sigmask.html"},{"doc":"","kind":"function","module":"core.sys.darwin.pthread","name":"pthread_yield_np","package":"druntime","parentType":"","signature":"void pthread_yield_np()","url":"/ddoc/druntime/core/sys/darwin/pthread/pthread_yield_np.html"},{"doc":"D header file for Darwin stdlib.h.","kind":"module","module":"core.sys.darwin.stdlib","name":"core.sys.darwin.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.darwin.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/darwin/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.darwin.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/darwin/stdlib/setprogname.html"},{"doc":"D header file for Darwin string.","kind":"module","module":"core.sys.darwin.string","name":"core.sys.darwin.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/string.html"},{"doc":"D header file for Darwin","kind":"module","module":"core.sys.darwin.sys.cdefs","name":"core.sys.darwin.sys.cdefs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/sys/cdefs.html"},{"doc":"","kind":"variable","module":"core.sys.darwin.sys.cdefs","name":"_DARWIN_C_SOURCE","package":"druntime","parentType":"","signature":"_DARWIN_C_SOURCE","url":"/ddoc/druntime/core/sys/darwin/sys/cdefs.html#_DARWIN_C_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.darwin.sys.cdefs","name":"__DARWIN_C_FULL","package":"druntime","parentType":"","signature":"__DARWIN_C_FULL","url":"/ddoc/druntime/core/sys/darwin/sys/cdefs.html#__DARWIN_C_FULL"},{"doc":"","kind":"variable","module":"core.sys.darwin.sys.cdefs","name":"__DARWIN_C_LEVEL","package":"druntime","parentType":"","signature":"__DARWIN_C_LEVEL","url":"/ddoc/druntime/core/sys/darwin/sys/cdefs.html#__DARWIN_C_LEVEL"},{"doc":"D header file for Darwin.","kind":"module","module":"core.sys.darwin.sys.event","name":"core.sys.darwin.sys.event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/sys/event.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.event","name":"EV_SET","package":"druntime","parentType":"","signature":"void EV_SET()(kevent_t *  kevp,  typeof(kevent_t.tupleof)  args)","url":"/ddoc/druntime/core/sys/darwin/sys/event/EV_SET.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.event","name":"EV_SET64","package":"druntime","parentType":"","signature":"void EV_SET64()(kevent64_s *  kevp,  typeof(kevent64_s.tupleof)  args)","url":"/ddoc/druntime/core/sys/darwin/sys/event/EV_SET64.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.event","name":"kqueue","package":"druntime","parentType":"","signature":"int kqueue()","url":"/ddoc/druntime/core/sys/darwin/sys/event/kqueue.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.event","name":"kevent","package":"druntime","parentType":"","signature":"int kevent(int  kq,  const  kevent_t * changelist,  int  nchanges,\n            kevent_t * eventlist,  int  nevents,\n            const  timespec * timeout)","url":"/ddoc/druntime/core/sys/darwin/sys/event/kevent.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.event","name":"kevent64","package":"druntime","parentType":"","signature":"int kevent64(int  kq,\n              const  kevent64_s * changelist,  int  nchanges,\n              kevent64_s * eventlist,  int  nevents,\n              uint  flags,\n              const  timespec * timeout)","url":"/ddoc/druntime/core/sys/darwin/sys/event/kevent64.html"},{"doc":"","kind":"struct","module":"core.sys.darwin.sys.event","name":"kevent_t","package":"druntime","parentType":"","signature":"kevent_t","url":"/ddoc/druntime/core/sys/darwin/sys/event.html#kevent_t"},{"doc":"","kind":"struct","module":"core.sys.darwin.sys.event","name":"kevent64_s","package":"druntime","parentType":"","signature":"kevent64_s","url":"/ddoc/druntime/core/sys/darwin/sys/event.html#kevent64_s"},{"doc":"D header file for Darwin","kind":"module","module":"core.sys.darwin.sys.mman","name":"core.sys.darwin.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/sys/mman.html"},{"doc":"D header file for Darwin sys/sysctl.h","kind":"module","module":"core.sys.darwin.sys.sysctl","name":"core.sys.darwin.sys.sysctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/darwin/sys/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.sysctl","name":"sysctl","package":"druntime","parentType":"","signature":"int sysctl(const  int *  name,  uint  namelen,  void *  oldp,  size_t *  oldlenp,\n            const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/darwin/sys/sysctl/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.sysctl","name":"sysctlbyname","package":"druntime","parentType":"","signature":"int sysctlbyname(const  char *  name,  void *  oldp,  size_t *  oldlenp,\n                  const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/darwin/sys/sysctl/sysctlbyname.html"},{"doc":"","kind":"function","module":"core.sys.darwin.sys.sysctl","name":"sysctlnametomib","package":"druntime","parentType":"","signature":"int sysctlnametomib(const  char *  sname,  int *  name,  size_t *  namelenp)","url":"/ddoc/druntime/core/sys/darwin/sys/sysctl/sysctlnametomib.html"},{"doc":"D header file for DragonFlyBSD","kind":"module","module":"core.sys.dragonflybsd.dlfcn","name":"core.sys.dragonflybsd.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.dlfcn","name":"fdlopen","package":"druntime","parentType":"","signature":"void * fdlopen(int,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn/fdlopen.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.dlfcn","name":"dlfunc","package":"druntime","parentType":"","signature":"dlfunc_t dlfunc(void *,  const(char) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn/dlfunc.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.dlfcn","name":"dlinfo","package":"druntime","parentType":"","signature":"int dlinfo(void *,  int,  void *)","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn/dlinfo.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.dlfcn","name":"dlvsym","package":"druntime","parentType":"","signature":"void * dlvsym(void *,  const(char) *,  const(char) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn/dlvsym.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.dlfcn","name":"Dl_serpath","package":"druntime","parentType":"","signature":"Dl_serpath","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#Dl_serpath"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.dlfcn","name":"Dl_serinfo","package":"druntime","parentType":"","signature":"Dl_serinfo","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#Dl_serinfo"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.dlfcn","name":"__dlfunc_arg","package":"druntime","parentType":"","signature":"__dlfunc_arg","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#__dlfunc_arg"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.dlfcn","name":"dlfunc_t","package":"druntime","parentType":"","signature":"dlfunc_t = void  function(__dlfunc_arg)","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#dlfunc_t"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DI_LINKMAP","package":"druntime","parentType":"","signature":"RTLD_DI_LINKMAP","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DI_LINKMAP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DI_SERINFO","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFO","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DI_SERINFO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DI_SERINFOSIZE","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFOSIZE","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DI_SERINFOSIZE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DI_ORIGIN","package":"druntime","parentType":"","signature":"RTLD_DI_ORIGIN","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DI_ORIGIN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DI_MAX","package":"druntime","parentType":"","signature":"RTLD_DI_MAX","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DI_MAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_NEXT","package":"druntime","parentType":"","signature":"RTLD_NEXT","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_NEXT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_DEFAULT","package":"druntime","parentType":"","signature":"RTLD_DEFAULT","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.dlfcn","name":"RTLD_SELF","package":"druntime","parentType":"","signature":"RTLD_SELF","url":"/ddoc/druntime/core/sys/dragonflybsd/dlfcn.html#RTLD_SELF"},{"doc":"D header file for DragonFlyBSD err.h.","kind":"module","module":"core.sys.dragonflybsd.err","name":"core.sys.dragonflybsd.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/err.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/err.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"errc","package":"druntime","parentType":"","signature":"void errc(int  eval,  int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/errc.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"warnc","package":"druntime","parentType":"","signature":"void warnc(int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/warnc.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"verrc","package":"druntime","parentType":"","signature":"void verrc(int  eval,  int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/verrc.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"vwarnc","package":"druntime","parentType":"","signature":"void vwarnc(int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/vwarnc.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/vwarnx.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"err_set_file","package":"druntime","parentType":"","signature":"void err_set_file(void *  vfp)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/err_set_file.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.err","name":"err_set_exit","package":"druntime","parentType":"","signature":"void err_set_exit(ExitFunction exitf)","url":"/ddoc/druntime/core/sys/dragonflybsd/err/err_set_exit.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.err","name":"ExitFunction","package":"druntime","parentType":"","signature":"ExitFunction = void  function(int)","url":"/ddoc/druntime/core/sys/dragonflybsd/err.html#ExitFunction"},{"doc":"DragonFlyBSD implementation of glibc's $(LINK2 http://www.gnu.org/software/libc/manual/html_node/Backtraces.html backtrace) facility.","kind":"module","module":"core.sys.dragonflybsd.execinfo","name":"core.sys.dragonflybsd.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/execinfo.html"},{"doc":"D header file for DragonFlyBSD's extensions to POSIX's netinet/in.h.","kind":"module","module":"core.sys.dragonflybsd.netinet.in_","name":"core.sys.dragonflybsd.netinet.in_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSA","package":"druntime","parentType":"","signature":"bool IN_CLASSA(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_CLASSA.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSB","package":"druntime","parentType":"","signature":"bool IN_CLASSB(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_CLASSB.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSC","package":"druntime","parentType":"","signature":"bool IN_CLASSC(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_CLASSC.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSD","package":"druntime","parentType":"","signature":"bool IN_CLASSD(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_CLASSD.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_MULTICAST","package":"druntime","parentType":"","signature":"bool IN_MULTICAST(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_MULTICAST.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_EXPERIMENTAL","package":"druntime","parentType":"","signature":"bool IN_EXPERIMENTAL(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_EXPERIMENTAL.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_BADCLASS","package":"druntime","parentType":"","signature":"bool IN_BADCLASS(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_BADCLASS.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_LINKLOCAL","package":"druntime","parentType":"","signature":"bool IN_LINKLOCAL(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_LINKLOCAL.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_LOOPBACK","package":"druntime","parentType":"","signature":"bool IN_LOOPBACK(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_LOOPBACK.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_ZERONET","package":"druntime","parentType":"","signature":"bool IN_ZERONET(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_ZERONET.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_PRIVATE","package":"druntime","parentType":"","signature":"bool IN_PRIVATE(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_PRIVATE.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_LOCAL_GROUP","package":"druntime","parentType":"","signature":"bool IN_LOCAL_GROUP(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_LOCAL_GROUP.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_ANY_LOCAL","package":"druntime","parentType":"","signature":"bool IN_ANY_LOCAL(in_addr_t i)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN_ANY_LOCAL.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"setipv4sourcefilter","package":"druntime","parentType":"","signature":"int setipv4sourcefilter(int,  in_addr,  in_addr,  uint,  uint,  in_addr *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/setipv4sourcefilter.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"getipv4sourcefilter","package":"druntime","parentType":"","signature":"int getipv4sourcefilter(int,  in_addr,  in_addr,  uint *,  uint *,  in_addr *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/getipv4sourcefilter.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"setsourcefilter","package":"druntime","parentType":"","signature":"int setsourcefilter(int,  uint,  sockaddr *,  socklen_t,  uint,  uint,  sockaddr_storage *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/setsourcefilter.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"getsourcefilter","package":"druntime","parentType":"","signature":"int getsourcefilter(int,  uint,  sockaddr *,  socklen_t,  uint *,  uint *,  sockaddr_storage *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/getsourcefilter.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6_ARE_ADDR_EQUAL","package":"druntime","parentType":"","signature":"bool IN6_ARE_ADDR_EQUAL(in6_addr *  a,  in6_addr *  b)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/IN6_ARE_ADDR_EQUAL.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_space","package":"druntime","parentType":"","signature":"size_t inet6_rthdr_space(int,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_space.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_init","package":"druntime","parentType":"","signature":"cmsghdr * inet6_rthdr_init(void *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_init.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_add","package":"druntime","parentType":"","signature":"int inet6_rthdr_add(cmsghdr *,  const  in6_addr *,  uint)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_add.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_lasthop","package":"druntime","parentType":"","signature":"int inet6_rthdr_lasthop(cmsghdr *,  uint)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_lasthop.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_segments","package":"druntime","parentType":"","signature":"int inet6_rthdr_segments(const  cmsghdr *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_segments.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_getaddr","package":"druntime","parentType":"","signature":"in6_addr * inet6_rthdr_getaddr(cmsghdr *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_getaddr.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rthdr_getflags","package":"druntime","parentType":"","signature":"int inet6_rthdr_getflags(const  cmsghdr *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rthdr_getflags.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_init","package":"druntime","parentType":"","signature":"int inet6_opt_init(void *,  socklen_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_init.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_append","package":"druntime","parentType":"","signature":"int inet6_opt_append(void *,  socklen_t,  int,  ubyte,  socklen_t,  ubyte,  void * *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_append.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_finish","package":"druntime","parentType":"","signature":"int inet6_opt_finish(void *,  socklen_t,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_finish.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_set_val","package":"druntime","parentType":"","signature":"int inet6_opt_set_val(void *,  int,  void *,  socklen_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_set_val.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_next","package":"druntime","parentType":"","signature":"int inet6_opt_next(void *,  socklen_t,  int,  ubyte *,  socklen_t *,  void * *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_next.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_find","package":"druntime","parentType":"","signature":"int inet6_opt_find(void *,  socklen_t,  int,  ubyte,  socklen_t *,  void * *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_find.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_opt_get_val","package":"druntime","parentType":"","signature":"int inet6_opt_get_val(void *,  int,  void *,  socklen_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_opt_get_val.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_space","package":"druntime","parentType":"","signature":"socklen_t inet6_rth_space(int,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_space.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_init","package":"druntime","parentType":"","signature":"void * inet6_rth_init(void *,  socklen_t,  int,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_init.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_add","package":"druntime","parentType":"","signature":"int inet6_rth_add(void *,  const  in6_addr *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_add.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_reverse","package":"druntime","parentType":"","signature":"int inet6_rth_reverse(const  void *,  void *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_reverse.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_segments","package":"druntime","parentType":"","signature":"int inet6_rth_segments(const  void *)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_segments.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.netinet.in_","name":"inet6_rth_getaddr","package":"druntime","parentType":"","signature":"in6_addr * inet6_rth_getaddr(const  void *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_/inet6_rth_getaddr.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"ip_mreq","package":"druntime","parentType":"","signature":"ip_mreq","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ip_mreq"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"ip_mreqn","package":"druntime","parentType":"","signature":"ip_mreqn","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ip_mreqn"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"ip_mreq_source","package":"druntime","parentType":"","signature":"ip_mreq_source","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ip_mreq_source"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"group_req","package":"druntime","parentType":"","signature":"group_req","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#group_req"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"group_source_req","package":"druntime","parentType":"","signature":"group_source_req","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#group_source_req"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"in6_pktinfo","package":"druntime","parentType":"","signature":"in6_pktinfo","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#in6_pktinfo"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.netinet.in_","name":"ip6_mtuinfo","package":"druntime","parentType":"","signature":"ip6_mtuinfo","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ip6_mtuinfo"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_HOPOPTS","package":"druntime","parentType":"","signature":"IPPROTO_HOPOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_HOPOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPV4","package":"druntime","parentType":"","signature":"IPPROTO_IPV4","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPV4"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPIP","package":"druntime","parentType":"","signature":"IPPROTO_IPIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ST","package":"druntime","parentType":"","signature":"IPPROTO_ST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_EGP","package":"druntime","parentType":"","signature":"IPPROTO_EGP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_EGP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PIGP","package":"druntime","parentType":"","signature":"IPPROTO_PIGP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PIGP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RCCMON","package":"druntime","parentType":"","signature":"IPPROTO_RCCMON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RCCMON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_NVPII","package":"druntime","parentType":"","signature":"IPPROTO_NVPII","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_NVPII"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ARGUS","package":"druntime","parentType":"","signature":"IPPROTO_ARGUS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ARGUS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_EMCON","package":"druntime","parentType":"","signature":"IPPROTO_EMCON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_EMCON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_XNET","package":"druntime","parentType":"","signature":"IPPROTO_XNET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_XNET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CHAOS","package":"druntime","parentType":"","signature":"IPPROTO_CHAOS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CHAOS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MUX","package":"druntime","parentType":"","signature":"IPPROTO_MUX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MUX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MEAS","package":"druntime","parentType":"","signature":"IPPROTO_MEAS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MEAS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_HMP","package":"druntime","parentType":"","signature":"IPPROTO_HMP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_HMP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PRM","package":"druntime","parentType":"","signature":"IPPROTO_PRM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PRM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TRUNK1","package":"druntime","parentType":"","signature":"IPPROTO_TRUNK1","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TRUNK1"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TRUNK2","package":"druntime","parentType":"","signature":"IPPROTO_TRUNK2","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TRUNK2"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_LEAF1","package":"druntime","parentType":"","signature":"IPPROTO_LEAF1","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_LEAF1"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_LEAF2","package":"druntime","parentType":"","signature":"IPPROTO_LEAF2","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_LEAF2"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RDP","package":"druntime","parentType":"","signature":"IPPROTO_RDP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RDP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IRTP","package":"druntime","parentType":"","signature":"IPPROTO_IRTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IRTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TP","package":"druntime","parentType":"","signature":"IPPROTO_TP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_BLT","package":"druntime","parentType":"","signature":"IPPROTO_BLT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_BLT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_NSP","package":"druntime","parentType":"","signature":"IPPROTO_NSP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_NSP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_INP","package":"druntime","parentType":"","signature":"IPPROTO_INP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_INP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SEP","package":"druntime","parentType":"","signature":"IPPROTO_SEP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SEP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_3PC","package":"druntime","parentType":"","signature":"IPPROTO_3PC","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_3PC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IDPR","package":"druntime","parentType":"","signature":"IPPROTO_IDPR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IDPR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_XTP","package":"druntime","parentType":"","signature":"IPPROTO_XTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_XTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_DDP","package":"druntime","parentType":"","signature":"IPPROTO_DDP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_DDP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CMTP","package":"druntime","parentType":"","signature":"IPPROTO_CMTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CMTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TPXX","package":"druntime","parentType":"","signature":"IPPROTO_TPXX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TPXX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IL","package":"druntime","parentType":"","signature":"IPPROTO_IL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SDRP","package":"druntime","parentType":"","signature":"IPPROTO_SDRP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SDRP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ROUTING","package":"druntime","parentType":"","signature":"IPPROTO_ROUTING","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ROUTING"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_FRAGMENT","package":"druntime","parentType":"","signature":"IPPROTO_FRAGMENT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_FRAGMENT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IDRP","package":"druntime","parentType":"","signature":"IPPROTO_IDRP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IDRP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RSVP","package":"druntime","parentType":"","signature":"IPPROTO_RSVP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RSVP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_GRE","package":"druntime","parentType":"","signature":"IPPROTO_GRE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_GRE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MHRP","package":"druntime","parentType":"","signature":"IPPROTO_MHRP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MHRP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_BHA","package":"druntime","parentType":"","signature":"IPPROTO_BHA","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_BHA"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ESP","package":"druntime","parentType":"","signature":"IPPROTO_ESP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ESP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_AH","package":"druntime","parentType":"","signature":"IPPROTO_AH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_AH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_INLSP","package":"druntime","parentType":"","signature":"IPPROTO_INLSP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_INLSP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SWIPE","package":"druntime","parentType":"","signature":"IPPROTO_SWIPE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SWIPE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_NHRP","package":"druntime","parentType":"","signature":"IPPROTO_NHRP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_NHRP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MOBILE","package":"druntime","parentType":"","signature":"IPPROTO_MOBILE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MOBILE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TLSP","package":"druntime","parentType":"","signature":"IPPROTO_TLSP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TLSP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SKIP","package":"druntime","parentType":"","signature":"IPPROTO_SKIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SKIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ICMPV6","package":"druntime","parentType":"","signature":"IPPROTO_ICMPV6","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ICMPV6"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_NONE","package":"druntime","parentType":"","signature":"IPPROTO_NONE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_NONE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_DSTOPTS","package":"druntime","parentType":"","signature":"IPPROTO_DSTOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_DSTOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_AHIP","package":"druntime","parentType":"","signature":"IPPROTO_AHIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_AHIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CFTP","package":"druntime","parentType":"","signature":"IPPROTO_CFTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CFTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_HELLO","package":"druntime","parentType":"","signature":"IPPROTO_HELLO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_HELLO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SATEXPAK","package":"druntime","parentType":"","signature":"IPPROTO_SATEXPAK","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SATEXPAK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_KRYPTOLAN","package":"druntime","parentType":"","signature":"IPPROTO_KRYPTOLAN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_KRYPTOLAN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RVD","package":"druntime","parentType":"","signature":"IPPROTO_RVD","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RVD"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPPC","package":"druntime","parentType":"","signature":"IPPROTO_IPPC","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPPC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ADFS","package":"druntime","parentType":"","signature":"IPPROTO_ADFS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ADFS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SATMON","package":"druntime","parentType":"","signature":"IPPROTO_SATMON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SATMON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_VISA","package":"druntime","parentType":"","signature":"IPPROTO_VISA","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_VISA"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPCV","package":"druntime","parentType":"","signature":"IPPROTO_IPCV","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPCV"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CPNX","package":"druntime","parentType":"","signature":"IPPROTO_CPNX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CPNX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CPHB","package":"druntime","parentType":"","signature":"IPPROTO_CPHB","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CPHB"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_WSN","package":"druntime","parentType":"","signature":"IPPROTO_WSN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_WSN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PVP","package":"druntime","parentType":"","signature":"IPPROTO_PVP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PVP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_BRSATMON","package":"druntime","parentType":"","signature":"IPPROTO_BRSATMON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_BRSATMON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_WBMON","package":"druntime","parentType":"","signature":"IPPROTO_WBMON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_WBMON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_WBEXPAK","package":"druntime","parentType":"","signature":"IPPROTO_WBEXPAK","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_WBEXPAK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_EON","package":"druntime","parentType":"","signature":"IPPROTO_EON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_EON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_VMTP","package":"druntime","parentType":"","signature":"IPPROTO_VMTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_VMTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SVMTP","package":"druntime","parentType":"","signature":"IPPROTO_SVMTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SVMTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_VINES","package":"druntime","parentType":"","signature":"IPPROTO_VINES","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_VINES"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TTP","package":"druntime","parentType":"","signature":"IPPROTO_TTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IGP","package":"druntime","parentType":"","signature":"IPPROTO_IGP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IGP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_DGP","package":"druntime","parentType":"","signature":"IPPROTO_DGP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_DGP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_TCF","package":"druntime","parentType":"","signature":"IPPROTO_TCF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_TCF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IGRP","package":"druntime","parentType":"","signature":"IPPROTO_IGRP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IGRP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_OSPFIGP","package":"druntime","parentType":"","signature":"IPPROTO_OSPFIGP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_OSPFIGP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SRPC","package":"druntime","parentType":"","signature":"IPPROTO_SRPC","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SRPC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_LARP","package":"druntime","parentType":"","signature":"IPPROTO_LARP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_LARP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MTP","package":"druntime","parentType":"","signature":"IPPROTO_MTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_AX25","package":"druntime","parentType":"","signature":"IPPROTO_AX25","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_AX25"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPEIP","package":"druntime","parentType":"","signature":"IPPROTO_IPEIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPEIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MICP","package":"druntime","parentType":"","signature":"IPPROTO_MICP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MICP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SCCSP","package":"druntime","parentType":"","signature":"IPPROTO_SCCSP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SCCSP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ETHERIP","package":"druntime","parentType":"","signature":"IPPROTO_ETHERIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ETHERIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_ENCAP","package":"druntime","parentType":"","signature":"IPPROTO_ENCAP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_ENCAP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_APES","package":"druntime","parentType":"","signature":"IPPROTO_APES","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_APES"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_GMTP","package":"druntime","parentType":"","signature":"IPPROTO_GMTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_GMTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_IPCOMP","package":"druntime","parentType":"","signature":"IPPROTO_IPCOMP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_IPCOMP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SCTP","package":"druntime","parentType":"","signature":"IPPROTO_SCTP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SCTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MH","package":"druntime","parentType":"","signature":"IPPROTO_MH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_UDPLITE","package":"druntime","parentType":"","signature":"IPPROTO_UDPLITE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_UDPLITE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_HIP","package":"druntime","parentType":"","signature":"IPPROTO_HIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_HIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_SHIM6","package":"druntime","parentType":"","signature":"IPPROTO_SHIM6","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_SHIM6"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PIM","package":"druntime","parentType":"","signature":"IPPROTO_PIM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PIM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_CARP","package":"druntime","parentType":"","signature":"IPPROTO_CARP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_CARP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PGM","package":"druntime","parentType":"","signature":"IPPROTO_PGM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PGM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_MPLS","package":"druntime","parentType":"","signature":"IPPROTO_MPLS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_MPLS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_PFSYNC","package":"druntime","parentType":"","signature":"IPPROTO_PFSYNC","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_PFSYNC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RESERVED_253","package":"druntime","parentType":"","signature":"IPPROTO_RESERVED_253","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RESERVED_253"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_RESERVED_254","package":"druntime","parentType":"","signature":"IPPROTO_RESERVED_254","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_RESERVED_254"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPROTO_DONE","package":"druntime","parentType":"","signature":"IPPROTO_DONE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPROTO_DONE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_RESERVED","package":"druntime","parentType":"","signature":"IPPORT_RESERVED","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_EPHEMERALFIRST","package":"druntime","parentType":"","signature":"IPPORT_EPHEMERALFIRST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_EPHEMERALFIRST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_EPHEMERALLAST","package":"druntime","parentType":"","signature":"IPPORT_EPHEMERALLAST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_EPHEMERALLAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_HIFIRSTAUTO","package":"druntime","parentType":"","signature":"IPPORT_HIFIRSTAUTO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_HIFIRSTAUTO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_HILASTAUTO","package":"druntime","parentType":"","signature":"IPPORT_HILASTAUTO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_HILASTAUTO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_RESERVEDSTART","package":"druntime","parentType":"","signature":"IPPORT_RESERVEDSTART","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_RESERVEDSTART"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPPORT_MAX","package":"druntime","parentType":"","signature":"IPPORT_MAX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPPORT_MAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSA_NET","package":"druntime","parentType":"","signature":"IN_CLASSA_NET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSA_NET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSA_NSHIFT","package":"druntime","parentType":"","signature":"IN_CLASSA_NSHIFT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSA_NSHIFT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSA_HOST","package":"druntime","parentType":"","signature":"IN_CLASSA_HOST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSA_HOST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSA_MAX","package":"druntime","parentType":"","signature":"IN_CLASSA_MAX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSA_MAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSB_NET","package":"druntime","parentType":"","signature":"IN_CLASSB_NET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSB_NET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSB_NSHIFT","package":"druntime","parentType":"","signature":"IN_CLASSB_NSHIFT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSB_NSHIFT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSB_HOST","package":"druntime","parentType":"","signature":"IN_CLASSB_HOST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSB_HOST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSB_MAX","package":"druntime","parentType":"","signature":"IN_CLASSB_MAX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSB_MAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSC_NET","package":"druntime","parentType":"","signature":"IN_CLASSC_NET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSC_NET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSC_NSHIFT","package":"druntime","parentType":"","signature":"IN_CLASSC_NSHIFT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSC_NSHIFT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSC_HOST","package":"druntime","parentType":"","signature":"IN_CLASSC_HOST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSC_HOST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSD_NET","package":"druntime","parentType":"","signature":"IN_CLASSD_NET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSD_NET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSD_NSHIFT","package":"druntime","parentType":"","signature":"IN_CLASSD_NSHIFT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSD_NSHIFT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_CLASSD_HOST","package":"druntime","parentType":"","signature":"IN_CLASSD_HOST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_CLASSD_HOST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_UNSPEC_GROUP","package":"druntime","parentType":"","signature":"INADDR_UNSPEC_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_UNSPEC_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_ALLHOSTS_GROUP","package":"druntime","parentType":"","signature":"INADDR_ALLHOSTS_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_ALLHOSTS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_ALLRTRS_GROUP","package":"druntime","parentType":"","signature":"INADDR_ALLRTRS_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_ALLRTRS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_ALLRPTS_GROUP","package":"druntime","parentType":"","signature":"INADDR_ALLRPTS_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_ALLRPTS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_CARP_GROUP","package":"druntime","parentType":"","signature":"INADDR_CARP_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_CARP_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_PFSYNC_GROUP","package":"druntime","parentType":"","signature":"INADDR_PFSYNC_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_PFSYNC_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_ALLMDNS_GROUP","package":"druntime","parentType":"","signature":"INADDR_ALLMDNS_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_ALLMDNS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"INADDR_MAX_LOCAL_GROUP","package":"druntime","parentType":"","signature":"INADDR_MAX_LOCAL_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#INADDR_MAX_LOCAL_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_LOOPBACKNET","package":"druntime","parentType":"","signature":"IN_LOOPBACKNET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_LOOPBACKNET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN_RFC3021_MASK","package":"druntime","parentType":"","signature":"IN_RFC3021_MASK","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN_RFC3021_MASK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_OPTIONS","package":"druntime","parentType":"","signature":"IP_OPTIONS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_HDRINCL","package":"druntime","parentType":"","signature":"IP_HDRINCL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_HDRINCL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_TOS","package":"druntime","parentType":"","signature":"IP_TOS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_TOS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_TTL","package":"druntime","parentType":"","signature":"IP_TTL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_TTL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVOPTS","package":"druntime","parentType":"","signature":"IP_RECVOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVRETOPTS","package":"druntime","parentType":"","signature":"IP_RECVRETOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVRETOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVDSTADDR","package":"druntime","parentType":"","signature":"IP_RECVDSTADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVDSTADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_SENDSRCADDR","package":"druntime","parentType":"","signature":"IP_SENDSRCADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_SENDSRCADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RETOPTS","package":"druntime","parentType":"","signature":"IP_RETOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RETOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MULTICAST_IF","package":"druntime","parentType":"","signature":"IP_MULTICAST_IF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MULTICAST_IF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MULTICAST_TTL","package":"druntime","parentType":"","signature":"IP_MULTICAST_TTL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MULTICAST_TTL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MULTICAST_LOOP","package":"druntime","parentType":"","signature":"IP_MULTICAST_LOOP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MULTICAST_LOOP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_ADD_MEMBERSHIP","package":"druntime","parentType":"","signature":"IP_ADD_MEMBERSHIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_ADD_MEMBERSHIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_DROP_MEMBERSHIP","package":"druntime","parentType":"","signature":"IP_DROP_MEMBERSHIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_DROP_MEMBERSHIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MULTICAST_VIF","package":"druntime","parentType":"","signature":"IP_MULTICAST_VIF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MULTICAST_VIF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSVP_ON","package":"druntime","parentType":"","signature":"IP_RSVP_ON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSVP_ON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSVP_OFF","package":"druntime","parentType":"","signature":"IP_RSVP_OFF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSVP_OFF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSVP_VIF_ON","package":"druntime","parentType":"","signature":"IP_RSVP_VIF_ON","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSVP_VIF_ON"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSVP_VIF_OFF","package":"druntime","parentType":"","signature":"IP_RSVP_VIF_OFF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSVP_VIF_OFF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_PORTRANGE","package":"druntime","parentType":"","signature":"IP_PORTRANGE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_PORTRANGE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVIF","package":"druntime","parentType":"","signature":"IP_RECVIF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVIF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_IPSEC_POLICY","package":"druntime","parentType":"","signature":"IP_IPSEC_POLICY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_IPSEC_POLICY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_ONESBCAST","package":"druntime","parentType":"","signature":"IP_ONESBCAST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_ONESBCAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_BINDANY","package":"druntime","parentType":"","signature":"IP_BINDANY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_BINDANY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_BINDMULTI","package":"druntime","parentType":"","signature":"IP_BINDMULTI","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_BINDMULTI"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSS_LISTEN_BUCKET","package":"druntime","parentType":"","signature":"IP_RSS_LISTEN_BUCKET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSS_LISTEN_BUCKET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_ORIGDSTADDR","package":"druntime","parentType":"","signature":"IP_ORIGDSTADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_ORIGDSTADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVORIGDSTADDR","package":"druntime","parentType":"","signature":"IP_RECVORIGDSTADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVORIGDSTADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_FW3","package":"druntime","parentType":"","signature":"IP_FW3","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_FW3"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_DUMMYNET3","package":"druntime","parentType":"","signature":"IP_DUMMYNET3","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_DUMMYNET3"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_ADD_SOURCE_MEMBERSHIP","package":"druntime","parentType":"","signature":"IP_ADD_SOURCE_MEMBERSHIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_ADD_SOURCE_MEMBERSHIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_DROP_SOURCE_MEMBERSHIP","package":"druntime","parentType":"","signature":"IP_DROP_SOURCE_MEMBERSHIP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_DROP_SOURCE_MEMBERSHIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_BLOCK_SOURCE","package":"druntime","parentType":"","signature":"IP_BLOCK_SOURCE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_BLOCK_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_UNBLOCK_SOURCE","package":"druntime","parentType":"","signature":"IP_UNBLOCK_SOURCE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_UNBLOCK_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_JOIN_GROUP","package":"druntime","parentType":"","signature":"MCAST_JOIN_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_JOIN_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_LEAVE_GROUP","package":"druntime","parentType":"","signature":"MCAST_LEAVE_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_LEAVE_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_JOIN_SOURCE_GROUP","package":"druntime","parentType":"","signature":"MCAST_JOIN_SOURCE_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_JOIN_SOURCE_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_LEAVE_SOURCE_GROUP","package":"druntime","parentType":"","signature":"MCAST_LEAVE_SOURCE_GROUP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_LEAVE_SOURCE_GROUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_BLOCK_SOURCE","package":"druntime","parentType":"","signature":"MCAST_BLOCK_SOURCE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_BLOCK_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_UNBLOCK_SOURCE","package":"druntime","parentType":"","signature":"MCAST_UNBLOCK_SOURCE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_UNBLOCK_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_FLOWID","package":"druntime","parentType":"","signature":"IP_FLOWID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_FLOWID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_FLOWTYPE","package":"druntime","parentType":"","signature":"IP_FLOWTYPE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_FLOWTYPE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RSSBUCKETID","package":"druntime","parentType":"","signature":"IP_RSSBUCKETID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RSSBUCKETID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVFLOWID","package":"druntime","parentType":"","signature":"IP_RECVFLOWID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVFLOWID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_RECVRSSBUCKETID","package":"druntime","parentType":"","signature":"IP_RECVRSSBUCKETID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_RECVRSSBUCKETID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_DEFAULT_MULTICAST_TTL","package":"druntime","parentType":"","signature":"IP_DEFAULT_MULTICAST_TTL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_DEFAULT_MULTICAST_TTL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_DEFAULT_MULTICAST_LOOP","package":"druntime","parentType":"","signature":"IP_DEFAULT_MULTICAST_LOOP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_DEFAULT_MULTICAST_LOOP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MIN_MEMBERSHIPS","package":"druntime","parentType":"","signature":"IP_MIN_MEMBERSHIPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MIN_MEMBERSHIPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MAX_MEMBERSHIPS","package":"druntime","parentType":"","signature":"IP_MAX_MEMBERSHIPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MAX_MEMBERSHIPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MAX_GROUP_SRC_FILTER","package":"druntime","parentType":"","signature":"IP_MAX_GROUP_SRC_FILTER","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MAX_GROUP_SRC_FILTER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_MAX_SOCK_SRC_FILTER","package":"druntime","parentType":"","signature":"IP_MAX_SOCK_SRC_FILTER","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_MAX_SOCK_SRC_FILTER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_UNDEFINED","package":"druntime","parentType":"","signature":"MCAST_UNDEFINED","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_UNDEFINED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_INCLUDE","package":"druntime","parentType":"","signature":"MCAST_INCLUDE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_INCLUDE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"MCAST_EXCLUDE","package":"druntime","parentType":"","signature":"MCAST_EXCLUDE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#MCAST_EXCLUDE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_PORTRANGE_DEFAULT","package":"druntime","parentType":"","signature":"IP_PORTRANGE_DEFAULT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_PORTRANGE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_PORTRANGE_HIGH","package":"druntime","parentType":"","signature":"IP_PORTRANGE_HIGH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_PORTRANGE_HIGH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IP_PORTRANGE_LOW","package":"druntime","parentType":"","signature":"IP_PORTRANGE_LOW","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IP_PORTRANGE_LOW"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_FORWARDING","package":"druntime","parentType":"","signature":"IPCTL_FORWARDING","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_FORWARDING"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_SENDREDIRECTS","package":"druntime","parentType":"","signature":"IPCTL_SENDREDIRECTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_SENDREDIRECTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_DEFTTL","package":"druntime","parentType":"","signature":"IPCTL_DEFTTL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_DEFTTL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_DEFMTU","package":"druntime","parentType":"","signature":"IPCTL_DEFMTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_DEFMTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_SOURCEROUTE","package":"druntime","parentType":"","signature":"IPCTL_SOURCEROUTE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_SOURCEROUTE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_DIRECTEDBROADCAST","package":"druntime","parentType":"","signature":"IPCTL_DIRECTEDBROADCAST","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_DIRECTEDBROADCAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_INTRQMAXLEN","package":"druntime","parentType":"","signature":"IPCTL_INTRQMAXLEN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_INTRQMAXLEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_INTRQDROPS","package":"druntime","parentType":"","signature":"IPCTL_INTRQDROPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_INTRQDROPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_STATS","package":"druntime","parentType":"","signature":"IPCTL_STATS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_STATS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_ACCEPTSOURCEROUTE","package":"druntime","parentType":"","signature":"IPCTL_ACCEPTSOURCEROUTE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_ACCEPTSOURCEROUTE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_FASTFORWARDING","package":"druntime","parentType":"","signature":"IPCTL_FASTFORWARDING","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_FASTFORWARDING"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_GIF_TTL","package":"druntime","parentType":"","signature":"IPCTL_GIF_TTL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_GIF_TTL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_INTRDQMAXLEN","package":"druntime","parentType":"","signature":"IPCTL_INTRDQMAXLEN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_INTRDQMAXLEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPCTL_INTRDQDROPS","package":"druntime","parentType":"","signature":"IPCTL_INTRDQDROPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPCTL_INTRDQDROPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PORT_RESERVED","package":"druntime","parentType":"","signature":"IPV6PORT_RESERVED","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PORT_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PORT_ANONMIN","package":"druntime","parentType":"","signature":"IPV6PORT_ANONMIN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PORT_ANONMIN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PORT_ANONMAX","package":"druntime","parentType":"","signature":"IPV6PORT_ANONMAX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PORT_ANONMAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PORT_RESERVEDMIN","package":"druntime","parentType":"","signature":"IPV6PORT_RESERVEDMIN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PORT_RESERVEDMIN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PORT_RESERVEDMAX","package":"druntime","parentType":"","signature":"IPV6PORT_RESERVEDMAX","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PORT_RESERVEDMAX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_ANY_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_ANY_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_ANY_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_LOOPBACK_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_LOOPBACK_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_LOOPBACK_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_NODELOCAL_ALLNODES_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_NODELOCAL_ALLNODES_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_NODELOCAL_ALLNODES_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_INTFACELOCAL_ALLNODES_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_INTFACELOCAL_ALLNODES_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_INTFACELOCAL_ALLNODES_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_LINKLOCAL_ALLNODES_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_LINKLOCAL_ALLNODES_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_LINKLOCAL_ALLNODES_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_LINKLOCAL_ALLROUTERS_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_LINKLOCAL_ALLROUTERS_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_LINKLOCAL_ALLROUTERS_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IN6ADDR_LINKLOCAL_ALLV2ROUTERS_INIT","package":"druntime","parentType":"","signature":"IN6ADDR_LINKLOCAL_ALLV2ROUTERS_INIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IN6ADDR_LINKLOCAL_ALLV2ROUTERS_INIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"in6addr_nodelocal_allnodes","package":"druntime","parentType":"","signature":"in6_addr in6addr_nodelocal_allnodes","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#in6addr_nodelocal_allnodes"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"in6addr_linklocal_allnodes","package":"druntime","parentType":"","signature":"in6_addr in6addr_linklocal_allnodes","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#in6addr_linklocal_allnodes"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"in6addr_linklocal_allrouters","package":"druntime","parentType":"","signature":"in6_addr in6addr_linklocal_allrouters","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#in6addr_linklocal_allrouters"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"in6addr_linklocal_allv2routers","package":"druntime","parentType":"","signature":"in6_addr in6addr_linklocal_allv2routers","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#in6addr_linklocal_allv2routers"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"__IPV6_ADDR_SCOPE_NODELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_NODELOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#__IPV6_ADDR_SCOPE_NODELOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"__IPV6_ADDR_SCOPE_INTFACELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_INTFACELOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#__IPV6_ADDR_SCOPE_INTFACELOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"__IPV6_ADDR_SCOPE_LINKLOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_LINKLOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#__IPV6_ADDR_SCOPE_LINKLOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"__IPV6_ADDR_SCOPE_SITELOCAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_SITELOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#__IPV6_ADDR_SCOPE_SITELOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"__IPV6_ADDR_SCOPE_GLOBAL","package":"druntime","parentType":"","signature":"__IPV6_ADDR_SCOPE_GLOBAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#__IPV6_ADDR_SCOPE_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_SOCKOPT_RESERVED1","package":"druntime","parentType":"","signature":"IPV6_SOCKOPT_RESERVED1","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_SOCKOPT_RESERVED1"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PORTRANGE","package":"druntime","parentType":"","signature":"IPV6_PORTRANGE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PORTRANGE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"ICMP6_FILTER","package":"druntime","parentType":"","signature":"ICMP6_FILTER","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ICMP6_FILTER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_CHECKSUM","package":"druntime","parentType":"","signature":"IPV6_CHECKSUM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_CHECKSUM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_IPSEC_POLICY","package":"druntime","parentType":"","signature":"IPV6_IPSEC_POLICY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_IPSEC_POLICY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FW_ADD","package":"druntime","parentType":"","signature":"IPV6_FW_ADD","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FW_ADD"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FW_DEL","package":"druntime","parentType":"","signature":"IPV6_FW_DEL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FW_DEL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FW_FLUSH","package":"druntime","parentType":"","signature":"IPV6_FW_FLUSH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FW_FLUSH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FW_ZERO","package":"druntime","parentType":"","signature":"IPV6_FW_ZERO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FW_ZERO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FW_GET","package":"druntime","parentType":"","signature":"IPV6_FW_GET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FW_GET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RTHDRDSTOPTS","package":"druntime","parentType":"","signature":"IPV6_RTHDRDSTOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RTHDRDSTOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVPKTINFO","package":"druntime","parentType":"","signature":"IPV6_RECVPKTINFO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVPKTINFO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVHOPLIMIT","package":"druntime","parentType":"","signature":"IPV6_RECVHOPLIMIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVHOPLIMIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVRTHDR","package":"druntime","parentType":"","signature":"IPV6_RECVRTHDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVRTHDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVHOPOPTS","package":"druntime","parentType":"","signature":"IPV6_RECVHOPOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVHOPOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVDSTOPTS","package":"druntime","parentType":"","signature":"IPV6_RECVDSTOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVDSTOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_USE_MIN_MTU","package":"druntime","parentType":"","signature":"IPV6_USE_MIN_MTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_USE_MIN_MTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVPATHMTU","package":"druntime","parentType":"","signature":"IPV6_RECVPATHMTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVPATHMTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PATHMTU","package":"druntime","parentType":"","signature":"IPV6_PATHMTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PATHMTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PKTINFO","package":"druntime","parentType":"","signature":"IPV6_PKTINFO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PKTINFO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_HOPLIMIT","package":"druntime","parentType":"","signature":"IPV6_HOPLIMIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_HOPLIMIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_NEXTHOP","package":"druntime","parentType":"","signature":"IPV6_NEXTHOP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_NEXTHOP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_HOPOPTS","package":"druntime","parentType":"","signature":"IPV6_HOPOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_HOPOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_DSTOPTS","package":"druntime","parentType":"","signature":"IPV6_DSTOPTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_DSTOPTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RTHDR","package":"druntime","parentType":"","signature":"IPV6_RTHDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RTHDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVTCLASS","package":"druntime","parentType":"","signature":"IPV6_RECVTCLASS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVTCLASS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_AUTOFLOWLABEL","package":"druntime","parentType":"","signature":"IPV6_AUTOFLOWLABEL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_AUTOFLOWLABEL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_TCLASS","package":"druntime","parentType":"","signature":"IPV6_TCLASS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_TCLASS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_DONTFRAG","package":"druntime","parentType":"","signature":"IPV6_DONTFRAG","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_DONTFRAG"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PREFER_TEMPADDR","package":"druntime","parentType":"","signature":"IPV6_PREFER_TEMPADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PREFER_TEMPADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_BINDANY","package":"druntime","parentType":"","signature":"IPV6_BINDANY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_BINDANY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_BINDMULTI","package":"druntime","parentType":"","signature":"IPV6_BINDMULTI","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_BINDMULTI"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RSS_LISTEN_BUCKET","package":"druntime","parentType":"","signature":"IPV6_RSS_LISTEN_BUCKET","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RSS_LISTEN_BUCKET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FLOWID","package":"druntime","parentType":"","signature":"IPV6_FLOWID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FLOWID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_FLOWTYPE","package":"druntime","parentType":"","signature":"IPV6_FLOWTYPE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_FLOWTYPE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RSSBUCKETID","package":"druntime","parentType":"","signature":"IPV6_RSSBUCKETID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RSSBUCKETID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVFLOWID","package":"druntime","parentType":"","signature":"IPV6_RECVFLOWID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVFLOWID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVRSSBUCKETID","package":"druntime","parentType":"","signature":"IPV6_RECVRSSBUCKETID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVRSSBUCKETID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_ORIGDSTADDR","package":"druntime","parentType":"","signature":"IPV6_ORIGDSTADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_ORIGDSTADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RECVORIGDSTADDR","package":"druntime","parentType":"","signature":"IPV6_RECVORIGDSTADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RECVORIGDSTADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RTHDR_LOOSE","package":"druntime","parentType":"","signature":"IPV6_RTHDR_LOOSE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RTHDR_LOOSE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RTHDR_STRICT","package":"druntime","parentType":"","signature":"IPV6_RTHDR_STRICT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RTHDR_STRICT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_RTHDR_TYPE_0","package":"druntime","parentType":"","signature":"IPV6_RTHDR_TYPE_0","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_RTHDR_TYPE_0"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_DEFAULT_MULTICAST_HOPS","package":"druntime","parentType":"","signature":"IPV6_DEFAULT_MULTICAST_HOPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_DEFAULT_MULTICAST_HOPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_DEFAULT_MULTICAST_LOOP","package":"druntime","parentType":"","signature":"IPV6_DEFAULT_MULTICAST_LOOP","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_DEFAULT_MULTICAST_LOOP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_MIN_MEMBERSHIPS","package":"druntime","parentType":"","signature":"IPV6_MIN_MEMBERSHIPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_MIN_MEMBERSHIPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_MAX_MEMBERSHIPS","package":"druntime","parentType":"","signature":"IPV6_MAX_MEMBERSHIPS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_MAX_MEMBERSHIPS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_MAX_GROUP_SRC_FILTER","package":"druntime","parentType":"","signature":"IPV6_MAX_GROUP_SRC_FILTER","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_MAX_GROUP_SRC_FILTER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_MAX_SOCK_SRC_FILTER","package":"druntime","parentType":"","signature":"IPV6_MAX_SOCK_SRC_FILTER","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_MAX_SOCK_SRC_FILTER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PORTRANGE_DEFAULT","package":"druntime","parentType":"","signature":"IPV6_PORTRANGE_DEFAULT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PORTRANGE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PORTRANGE_HIGH","package":"druntime","parentType":"","signature":"IPV6_PORTRANGE_HIGH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PORTRANGE_HIGH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6_PORTRANGE_LOW","package":"druntime","parentType":"","signature":"IPV6_PORTRANGE_LOW","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6_PORTRANGE_LOW"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6PROTO_MAXID","package":"druntime","parentType":"","signature":"IPV6PROTO_MAXID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6PROTO_MAXID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_FORWARDING","package":"druntime","parentType":"","signature":"IPV6CTL_FORWARDING","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_FORWARDING"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_SENDREDIRECTS","package":"druntime","parentType":"","signature":"IPV6CTL_SENDREDIRECTS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_SENDREDIRECTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_DEFHLIM","package":"druntime","parentType":"","signature":"IPV6CTL_DEFHLIM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_DEFHLIM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_DEFMTU","package":"druntime","parentType":"","signature":"IPV6CTL_DEFMTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_DEFMTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_FORWSRCRT","package":"druntime","parentType":"","signature":"IPV6CTL_FORWSRCRT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_FORWSRCRT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_STATS","package":"druntime","parentType":"","signature":"IPV6CTL_STATS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_STATS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MRTSTATS","package":"druntime","parentType":"","signature":"IPV6CTL_MRTSTATS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MRTSTATS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MRTPROTO","package":"druntime","parentType":"","signature":"IPV6CTL_MRTPROTO","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MRTPROTO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MAXFRAGPACKETS","package":"druntime","parentType":"","signature":"IPV6CTL_MAXFRAGPACKETS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MAXFRAGPACKETS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_SOURCECHECK","package":"druntime","parentType":"","signature":"IPV6CTL_SOURCECHECK","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_SOURCECHECK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_SOURCECHECK_LOGINT","package":"druntime","parentType":"","signature":"IPV6CTL_SOURCECHECK_LOGINT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_SOURCECHECK_LOGINT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_ACCEPT_RTADV","package":"druntime","parentType":"","signature":"IPV6CTL_ACCEPT_RTADV","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_ACCEPT_RTADV"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_LOG_INTERVAL","package":"druntime","parentType":"","signature":"IPV6CTL_LOG_INTERVAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_LOG_INTERVAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_HDRNESTLIMIT","package":"druntime","parentType":"","signature":"IPV6CTL_HDRNESTLIMIT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_HDRNESTLIMIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_DAD_COUNT","package":"druntime","parentType":"","signature":"IPV6CTL_DAD_COUNT","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_DAD_COUNT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_AUTO_FLOWLABEL","package":"druntime","parentType":"","signature":"IPV6CTL_AUTO_FLOWLABEL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_AUTO_FLOWLABEL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_DEFMCASTHLIM","package":"druntime","parentType":"","signature":"IPV6CTL_DEFMCASTHLIM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_DEFMCASTHLIM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_GIF_HLIM","package":"druntime","parentType":"","signature":"IPV6CTL_GIF_HLIM","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_GIF_HLIM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_KAME_VERSION","package":"druntime","parentType":"","signature":"IPV6CTL_KAME_VERSION","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_KAME_VERSION"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_USE_DEPRECATED","package":"druntime","parentType":"","signature":"IPV6CTL_USE_DEPRECATED","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_USE_DEPRECATED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_RR_PRUNE","package":"druntime","parentType":"","signature":"IPV6CTL_RR_PRUNE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_RR_PRUNE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_V6ONLY","package":"druntime","parentType":"","signature":"IPV6CTL_V6ONLY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_V6ONLY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_USETEMPADDR","package":"druntime","parentType":"","signature":"IPV6CTL_USETEMPADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_USETEMPADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_TEMPPLTIME","package":"druntime","parentType":"","signature":"IPV6CTL_TEMPPLTIME","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_TEMPPLTIME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_TEMPVLTIME","package":"druntime","parentType":"","signature":"IPV6CTL_TEMPVLTIME","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_TEMPVLTIME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_AUTO_LINKLOCAL","package":"druntime","parentType":"","signature":"IPV6CTL_AUTO_LINKLOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_AUTO_LINKLOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_RIP6STATS","package":"druntime","parentType":"","signature":"IPV6CTL_RIP6STATS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_RIP6STATS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_PREFER_TEMPADDR","package":"druntime","parentType":"","signature":"IPV6CTL_PREFER_TEMPADDR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_PREFER_TEMPADDR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_ADDRCTLPOLICY","package":"druntime","parentType":"","signature":"IPV6CTL_ADDRCTLPOLICY","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_ADDRCTLPOLICY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_USE_DEFAULTZONE","package":"druntime","parentType":"","signature":"IPV6CTL_USE_DEFAULTZONE","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_USE_DEFAULTZONE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MAXFRAGS","package":"druntime","parentType":"","signature":"IPV6CTL_MAXFRAGS","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MAXFRAGS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MCAST_PMTU","package":"druntime","parentType":"","signature":"IPV6CTL_MCAST_PMTU","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MCAST_PMTU"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_STEALTH","package":"druntime","parentType":"","signature":"IPV6CTL_STEALTH","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_STEALTH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"ICMPV6CTL_ND6_ONLINKNSRFC4861","package":"druntime","parentType":"","signature":"ICMPV6CTL_ND6_ONLINKNSRFC4861","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#ICMPV6CTL_ND6_ONLINKNSRFC4861"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_NO_RADR","package":"druntime","parentType":"","signature":"IPV6CTL_NO_RADR","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_NO_RADR"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_NORBIT_RAIF","package":"druntime","parentType":"","signature":"IPV6CTL_NORBIT_RAIF","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_NORBIT_RAIF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_RFC6204W3","package":"druntime","parentType":"","signature":"IPV6CTL_RFC6204W3","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_RFC6204W3"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_INTRQMAXLEN","package":"druntime","parentType":"","signature":"IPV6CTL_INTRQMAXLEN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_INTRQMAXLEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_INTRDQMAXLEN","package":"druntime","parentType":"","signature":"IPV6CTL_INTRDQMAXLEN","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_INTRDQMAXLEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.netinet.in_","name":"IPV6CTL_MAXID","package":"druntime","parentType":"","signature":"IPV6CTL_MAXID","url":"/ddoc/druntime/core/sys/dragonflybsd/netinet/in_.html#IPV6CTL_MAXID"},{"doc":"D header file for DragonFlyBSD","kind":"module","module":"core.sys.dragonflybsd.pthread_np","name":"core.sys.dragonflybsd.pthread_np","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_attr_get_np","package":"druntime","parentType":"","signature":"int pthread_attr_get_np(pthread_t,  pthread_attr_t *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_attr_get_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_attr_getaffinity_np","package":"druntime","parentType":"","signature":"int pthread_attr_getaffinity_np(const(pthread_attr_t) *,  size_t,  cpuset_t *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_attr_getaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_attr_setaffinity_np","package":"druntime","parentType":"","signature":"int pthread_attr_setaffinity_np(pthread_attr_t *,  size_t,  const(cpuset_t) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_attr_setaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_attr_setcreatesuspend_np","package":"druntime","parentType":"","signature":"int pthread_attr_setcreatesuspend_np(pthread_attr_t *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_attr_setcreatesuspend_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_getaffinity_np","package":"druntime","parentType":"","signature":"int pthread_getaffinity_np(pthread_t,  size_t,  cpuset_t *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_getaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_main_np","package":"druntime","parentType":"","signature":"int pthread_main_np()","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_main_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_multi_np","package":"druntime","parentType":"","signature":"int pthread_multi_np()","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_multi_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_mutexattr_getkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_getkind_np(pthread_mutexattr_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_mutexattr_getkind_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_mutexattr_setkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_setkind_np(pthread_mutexattr_t *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_mutexattr_setkind_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_resume_all_np","package":"druntime","parentType":"","signature":"void pthread_resume_all_np()","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_resume_all_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_resume_np","package":"druntime","parentType":"","signature":"int pthread_resume_np(pthread_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_resume_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_set_name_np","package":"druntime","parentType":"","signature":"void pthread_set_name_np(pthread_t,  const(char) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_set_name_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_setaffinity_np","package":"druntime","parentType":"","signature":"int pthread_setaffinity_np(pthread_t,  size_t,  const(cpuset_t) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_setaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_single_np","package":"druntime","parentType":"","signature":"int pthread_single_np()","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_single_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_suspend_all_np","package":"druntime","parentType":"","signature":"void pthread_suspend_all_np()","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_suspend_all_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_suspend_np","package":"druntime","parentType":"","signature":"int pthread_suspend_np(pthread_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_suspend_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_switch_add_np","package":"druntime","parentType":"","signature":"int pthread_switch_add_np(pthread_switch_routine_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_switch_add_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_switch_delete_np","package":"druntime","parentType":"","signature":"int pthread_switch_delete_np(pthread_switch_routine_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_switch_delete_np.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_timedjoin_np","package":"druntime","parentType":"","signature":"int pthread_timedjoin_np(pthread_t,  void  * *,  const(timespec) *)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np/pthread_timedjoin_np.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.pthread_np","name":"pthread_switch_routine_t","package":"druntime","parentType":"","signature":"pthread_switch_routine_t = void  function(pthread_t,  pthread_t)","url":"/ddoc/druntime/core/sys/dragonflybsd/pthread_np.html#pthread_switch_routine_t"},{"doc":"D header file for DragonFlyBSD stdlib.h.","kind":"module","module":"core.sys.dragonflybsd.stdlib","name":"core.sys.dragonflybsd.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/dragonflybsd/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/dragonflybsd/stdlib/setprogname.html"},{"doc":"D header file for DragonFlyBSD string.","kind":"module","module":"core.sys.dragonflybsd.string","name":"core.sys.dragonflybsd.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/string.html"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys._bitset","name":"core.sys.dragonflybsd.sys._bitset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys._bitset","name":"__bitset_mask","package":"druntime","parentType":"","signature":"c_long __bitset_mask(size_t s)(size_t n)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset/__bitset_mask.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys._bitset","name":"__bitset_word","package":"druntime","parentType":"","signature":"size_t __bitset_word(size_t s)(size_t n)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset/__bitset_word.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys._bitset","name":"BITSET_DEFINE","package":"druntime","parentType":"","signature":"BITSET_DEFINE(size_t s)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset.html#BITSET_DEFINE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys._bitset","name":"NBBY","package":"druntime","parentType":"","signature":"NBBY","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset.html#NBBY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys._bitset","name":"_BITSET_BITS","package":"druntime","parentType":"","signature":"_BITSET_BITS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_bitset.html#_BITSET_BITS"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys._cpuset","name":"core.sys.dragonflybsd.sys._cpuset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys._cpuset","name":"_cpuset","package":"druntime","parentType":"","signature":"_cpuset = BITSET_DEFINE!(CPU_SETSIZE)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html#_cpuset"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys._cpuset","name":"cpuset_t","package":"druntime","parentType":"","signature":"cpuset_t = _cpuset","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html#cpuset_t"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys._cpuset","name":"CPU_MAXSIZE","package":"druntime","parentType":"","signature":"CPU_MAXSIZE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html#CPU_MAXSIZE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys._cpuset","name":"_NCPUBITS","package":"druntime","parentType":"","signature":"_NCPUBITS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html#_NCPUBITS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys._cpuset","name":"_NCPUWORDS","package":"druntime","parentType":"","signature":"_NCPUWORDS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/_cpuset.html#_NCPUWORDS"},{"doc":"D header file for DragonFlyBSD","kind":"module","module":"core.sys.dragonflybsd.sys.cdefs","name":"core.sys.dragonflybsd.sys.cdefs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/cdefs.html"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.cdefs","name":"__POSIX_VISIBLE","package":"druntime","parentType":"","signature":"__POSIX_VISIBLE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/cdefs.html#__POSIX_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.cdefs","name":"__XSI_VISIBLE","package":"druntime","parentType":"","signature":"__XSI_VISIBLE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/cdefs.html#__XSI_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.cdefs","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/cdefs.html#__BSD_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.cdefs","name":"__ISO_C_VISIBLE","package":"druntime","parentType":"","signature":"__ISO_C_VISIBLE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/cdefs.html#__ISO_C_VISIBLE"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.elf","name":"core.sys.dragonflybsd.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf.html"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.elf32","name":"core.sys.dragonflybsd.sys.elf32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf32","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Lword","package":"druntime","parentType":"","signature":"Elf32_Lword = uint64_t","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Lword"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Hashelt","package":"druntime","parentType":"","signature":"Elf32_Hashelt = Elf32_Word","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Size","package":"druntime","parentType":"","signature":"Elf32_Size = Elf32_Word","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Size"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Ssize","package":"druntime","parentType":"","signature":"Elf32_Ssize = Elf32_Sword","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Ssize"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Dyn"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf32","name":"Elf32_Cap","package":"druntime","parentType":"","signature":"Elf32_Cap","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf32.html#Elf32_Cap"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.elf64","name":"core.sys.dragonflybsd.sys.elf64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf64","name":"ELF64_R_TYPE_DATA","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_DATA(I)(I i)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64/ELF64_R_TYPE_DATA.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf64","name":"ELF64_R_TYPE_ID","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_ID(I)(I i)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64/ELF64_R_TYPE_ID.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf64","name":"ELF64_R_TYPE_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_INFO(D,  T)(D d,  T t)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64/ELF64_R_TYPE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf64","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF64_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64/ELF64_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Lword","package":"druntime","parentType":"","signature":"Elf64_Lword = uint64_t","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Lword"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Hashelt","package":"druntime","parentType":"","signature":"Elf64_Hashelt = Elf64_Word","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Size","package":"druntime","parentType":"","signature":"Elf64_Size = Elf64_Xword","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Size"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Ssize","package":"druntime","parentType":"","signature":"Elf64_Ssize = Elf64_Sxword","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Ssize"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Dyn"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf64","name":"Elf64_Cap","package":"druntime","parentType":"","signature":"Elf64_Cap","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf64.html#Elf64_Cap"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.elf_common","name":"core.sys.dragonflybsd.sys.elf_common","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf_common","name":"IS_ELF","package":"druntime","parentType":"","signature":"auto IS_ELF(T)(T ehdr)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common/IS_ELF.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NDX","package":"druntime","parentType":"","signature":"auto VER_NDX(V)(V v)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common/VER_NDX.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf_common","name":"Elf_Note","package":"druntime","parentType":"","signature":"Elf_Note","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#Elf_Note"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.elf_common","name":"Elf_GNU_Hash_Header","package":"druntime","parentType":"","signature":"Elf_GNU_Hash_Header","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#Elf_GNU_Hash_Header"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_DEF_IDX","package":"druntime","parentType":"","signature":"VER_DEF_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_DEF_IDX"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NEED_IDX","package":"druntime","parentType":"","signature":"VER_NEED_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_NEED_IDX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"OLD_EI_BRAND","package":"druntime","parentType":"","signature":"OLD_EI_BRAND","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#OLD_EI_BRAND"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"EM_486","package":"druntime","parentType":"","signature":"EM_486","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#EM_486"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"EM_MIPS_RS4_BE","package":"druntime","parentType":"","signature":"EM_MIPS_RS4_BE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#EM_MIPS_RS4_BE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"EM_ALPHA_STD","package":"druntime","parentType":"","signature":"EM_ALPHA_STD","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#EM_ALPHA_STD"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"PT_SUNW_EH_FRAME","package":"druntime","parentType":"","signature":"PT_SUNW_EH_FRAME","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#PT_SUNW_EH_FRAME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"SHT_GNU_INCREMENTAL_INPUTS","package":"druntime","parentType":"","signature":"SHT_GNU_INCREMENTAL_INPUTS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#SHT_GNU_INCREMENTAL_INPUTS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"SHT_SUNW_verdef","package":"druntime","parentType":"","signature":"SHT_SUNW_verdef","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#SHT_SUNW_verdef"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"SHT_SUNW_verneed","package":"druntime","parentType":"","signature":"SHT_SUNW_verneed","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#SHT_SUNW_verneed"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"SHT_SUNW_versym","package":"druntime","parentType":"","signature":"SHT_SUNW_versym","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#SHT_SUNW_versym"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"NT_FPREGSET","package":"druntime","parentType":"","signature":"NT_FPREGSET","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#NT_FPREGSET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"NT_TASKSTRUCT","package":"druntime","parentType":"","signature":"NT_TASKSTRUCT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#NT_TASKSTRUCT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"NT_AUXV","package":"druntime","parentType":"","signature":"NT_AUXV","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#NT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"DT_USED","package":"druntime","parentType":"","signature":"DT_USED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#DT_USED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"DF_1_BIND_NOW","package":"druntime","parentType":"","signature":"DF_1_BIND_NOW","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#DF_1_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_FLG_INFO","package":"druntime","parentType":"","signature":"VER_FLG_INFO","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_FLG_INFO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NDX_GIVEN","package":"druntime","parentType":"","signature":"VER_NDX_GIVEN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_NDX_GIVEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NDX_HIDDEN","package":"druntime","parentType":"","signature":"VER_NDX_HIDDEN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_NDX_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NEED_WEAK","package":"druntime","parentType":"","signature":"VER_NEED_WEAK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_NEED_WEAK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VER_NEED_HIDDEN","package":"druntime","parentType":"","signature":"VER_NEED_HIDDEN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VER_NEED_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VERSYM_HIDDEN","package":"druntime","parentType":"","signature":"VERSYM_HIDDEN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VERSYM_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"VERSYM_VERSION","package":"druntime","parentType":"","signature":"VERSYM_VERSION","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#VERSYM_VERSION"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.elf_common","name":"ELF_VER_CHR","package":"druntime","parentType":"","signature":"ELF_VER_CHR","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/elf_common.html#ELF_VER_CHR"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.event","name":"core.sys.dragonflybsd.sys.event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/event.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.event","name":"EV_SET","package":"druntime","parentType":"","signature":"void EV_SET(kevent_t *  kevp,  typeof(kevent_t.tupleof)  args)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/event/EV_SET.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.event","name":"kqueue","package":"druntime","parentType":"","signature":"int kqueue()","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/event/kqueue.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.event","name":"kevent","package":"druntime","parentType":"","signature":"int kevent(int  kq,  const  kevent_t * changelist,  int  nchanges,\n            int  nevents,  const  timespec * timeout)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/event/kevent.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.event","name":"kevent_t","package":"druntime","parentType":"","signature":"kevent_t","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/event.html#kevent_t"},{"doc":"D header file for DragonFlyBSD.","kind":"module","module":"core.sys.dragonflybsd.sys.link_elf","name":"core.sys.dragonflybsd.sys.link_elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb __callback,  void * __data)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb_ngc __callback,  void * __data)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.link_elf","name":"_rtld_addr_phdr","package":"druntime","parentType":"","signature":"int _rtld_addr_phdr(const  void *,  dl_phdr_info *)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf/_rtld_addr_phdr.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.link_elf","name":"_rtld_get_stack_prot","package":"druntime","parentType":"","signature":"int _rtld_get_stack_prot()","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf/_rtld_get_stack_prot.html"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.link_elf","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#link_map"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.link_elf","name":"Link_map","package":"druntime","parentType":"","signature":"Link_map = link_map","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#Link_map"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.link_elf","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.dragonflybsd.sys.link_elf","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.link_elf","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = int  function(dl_phdr_info *,  size_t,  void  *)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.link_elf","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = int  function(dl_phdr_info *,  size_t,  void  *) @nogc","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.dragonflybsd.sys.link_elf","name":"ElfW","package":"druntime","parentType":"","signature":"ElfW(string type)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#ElfW"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_ORIG","package":"druntime","parentType":"","signature":"LA_SER_ORIG","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_ORIG"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_LIBPATH","package":"druntime","parentType":"","signature":"LA_SER_LIBPATH","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_LIBPATH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_RUNPATH","package":"druntime","parentType":"","signature":"LA_SER_RUNPATH","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_RUNPATH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_CONFIG","package":"druntime","parentType":"","signature":"LA_SER_CONFIG","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_DEFAULT","package":"druntime","parentType":"","signature":"LA_SER_DEFAULT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.link_elf","name":"LA_SER_SECURE","package":"druntime","parentType":"","signature":"LA_SER_SECURE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/link_elf.html#LA_SER_SECURE"},{"doc":"D header file for DragonFlyBSD","kind":"module","module":"core.sys.dragonflybsd.sys.mman","name":"core.sys.dragonflybsd.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.mman","name":"getpagesizes","package":"druntime","parentType":"","signature":"int getpagesizes(size_t *,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman/getpagesizes.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.mman","name":"madvise","package":"druntime","parentType":"","signature":"int madvise(void  *,  size_t,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman/madvise.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.mman","name":"mincore","package":"druntime","parentType":"","signature":"int mincore(const(void)  *,  size_t,  char  *)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman/mincore.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.mman","name":"minherit","package":"druntime","parentType":"","signature":"int minherit(void  *,  size_t,  int)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman/minherit.html"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_COPY","package":"druntime","parentType":"","signature":"MAP_COPY = MAP_PRIVATE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_COPY"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_ANONYMOUS","package":"druntime","parentType":"","signature":"MAP_ANONYMOUS = MAP_ANON","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_ANONYMOUS"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_NORMAL","package":"druntime","parentType":"","signature":"MADV_NORMAL = _MADV_NORMAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_NORMAL"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_RANDOM","package":"druntime","parentType":"","signature":"MADV_RANDOM = _MADV_RANDOM","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_RANDOM"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_SEQUENTIAL","package":"druntime","parentType":"","signature":"MADV_SEQUENTIAL = _MADV_SEQUENTIAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_SEQUENTIAL"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_WILLNEED","package":"druntime","parentType":"","signature":"MADV_WILLNEED = _MADV_WILLNEED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_WILLNEED"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_DONTNEED","package":"druntime","parentType":"","signature":"MADV_DONTNEED = _MADV_DONTNEED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_DONTNEED"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_CONTROL_START","package":"druntime","parentType":"","signature":"MADV_CONTROL_START = MADV_INVAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_CONTROL_START"},{"doc":"","kind":"alias","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_CONTROL_END","package":"druntime","parentType":"","signature":"MADV_CONTROL_END = MADV_SETMAP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_CONTROL_END"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"INHERIT_SHARE","package":"druntime","parentType":"","signature":"INHERIT_SHARE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#INHERIT_SHARE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"INHERIT_COPY","package":"druntime","parentType":"","signature":"INHERIT_COPY","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#INHERIT_COPY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"INHERIT_NONE","package":"druntime","parentType":"","signature":"INHERIT_NONE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#INHERIT_NONE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_FIXED","package":"druntime","parentType":"","signature":"MAP_FIXED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_FIXED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_RENAME","package":"druntime","parentType":"","signature":"MAP_RENAME","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_RENAME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_NORESERVE","package":"druntime","parentType":"","signature":"MAP_NORESERVE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_NORESERVE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_INHERIT","package":"druntime","parentType":"","signature":"MAP_INHERIT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_INHERIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_NOEXTEND","package":"druntime","parentType":"","signature":"MAP_NOEXTEND","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_NOEXTEND"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_HASSEMAPHORE","package":"druntime","parentType":"","signature":"MAP_HASSEMAPHORE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_HASSEMAPHORE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_STACK","package":"druntime","parentType":"","signature":"MAP_STACK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_STACK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_NOSYNC","package":"druntime","parentType":"","signature":"MAP_NOSYNC","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_NOSYNC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_FILE","package":"druntime","parentType":"","signature":"MAP_FILE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_FILE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_VPAGETABLE","package":"druntime","parentType":"","signature":"MAP_VPAGETABLE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_VPAGETABLE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_TRYFIXED","package":"druntime","parentType":"","signature":"MAP_TRYFIXED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_TRYFIXED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_NOCORE","package":"druntime","parentType":"","signature":"MAP_NOCORE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_NOCORE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_SIZEALIGN","package":"druntime","parentType":"","signature":"MAP_SIZEALIGN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_SIZEALIGN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MAP_FAILED","package":"druntime","parentType":"","signature":"MAP_FAILED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MAP_FAILED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"_MADV_NORMAL","package":"druntime","parentType":"","signature":"_MADV_NORMAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#_MADV_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"_MADV_RANDOM","package":"druntime","parentType":"","signature":"_MADV_RANDOM","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#_MADV_RANDOM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"_MADV_SEQUENTIAL","package":"druntime","parentType":"","signature":"_MADV_SEQUENTIAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#_MADV_SEQUENTIAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"_MADV_WILLNEED","package":"druntime","parentType":"","signature":"_MADV_WILLNEED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#_MADV_WILLNEED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"_MADV_DONTNEED","package":"druntime","parentType":"","signature":"_MADV_DONTNEED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#_MADV_DONTNEED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_FREE","package":"druntime","parentType":"","signature":"MADV_FREE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_FREE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_NOSYNC","package":"druntime","parentType":"","signature":"MADV_NOSYNC","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_NOSYNC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_AUTOSYNC","package":"druntime","parentType":"","signature":"MADV_AUTOSYNC","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_AUTOSYNC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_NOCORE","package":"druntime","parentType":"","signature":"MADV_NOCORE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_NOCORE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_CORE","package":"druntime","parentType":"","signature":"MADV_CORE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_CORE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_INVAL","package":"druntime","parentType":"","signature":"MADV_INVAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_INVAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MADV_SETMAP","package":"druntime","parentType":"","signature":"MADV_SETMAP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MADV_SETMAP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_INCORE","package":"druntime","parentType":"","signature":"MINCORE_INCORE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_INCORE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_REFERENCED","package":"druntime","parentType":"","signature":"MINCORE_REFERENCED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_REFERENCED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_MODIFIED","package":"druntime","parentType":"","signature":"MINCORE_MODIFIED","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_MODIFIED"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_REFERENCED_OTHER","package":"druntime","parentType":"","signature":"MINCORE_REFERENCED_OTHER","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_REFERENCED_OTHER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_MODIFIED_OTHER","package":"druntime","parentType":"","signature":"MINCORE_MODIFIED_OTHER","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_MODIFIED_OTHER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"MINCORE_SUPER","package":"druntime","parentType":"","signature":"MINCORE_SUPER","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#MINCORE_SUPER"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.mman","name":"SHM_ANON","package":"druntime","parentType":"","signature":"SHM_ANON","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/mman.html#SHM_ANON"},{"doc":"D header file for DragonFlyBSD","kind":"module","module":"core.sys.dragonflybsd.sys.socket","name":"core.sys.dragonflybsd.sys.socket","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_UNSPEC","package":"druntime","parentType":"","signature":"PF_UNSPEC","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_UNSPEC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_LOCAL","package":"druntime","parentType":"","signature":"PF_LOCAL","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_UNIX","package":"druntime","parentType":"","signature":"PF_UNIX","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_UNIX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_INET","package":"druntime","parentType":"","signature":"PF_INET","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_INET"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_IMPLINK","package":"druntime","parentType":"","signature":"PF_IMPLINK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_IMPLINK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_PUP","package":"druntime","parentType":"","signature":"PF_PUP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_PUP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_CHAOS","package":"druntime","parentType":"","signature":"PF_CHAOS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_CHAOS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_NETBIOS","package":"druntime","parentType":"","signature":"PF_NETBIOS","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_NETBIOS"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_ISO","package":"druntime","parentType":"","signature":"PF_ISO","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_ISO"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_OSI","package":"druntime","parentType":"","signature":"PF_OSI","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_OSI"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_ECMA","package":"druntime","parentType":"","signature":"PF_ECMA","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_ECMA"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_DATAKIT","package":"druntime","parentType":"","signature":"PF_DATAKIT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_DATAKIT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_CCITT","package":"druntime","parentType":"","signature":"PF_CCITT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_CCITT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_SNA","package":"druntime","parentType":"","signature":"PF_SNA","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_SNA"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_DECnet","package":"druntime","parentType":"","signature":"PF_DECnet","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_DECnet"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_DLI","package":"druntime","parentType":"","signature":"PF_DLI","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_DLI"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_LAT","package":"druntime","parentType":"","signature":"PF_LAT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_LAT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_HYLINK","package":"druntime","parentType":"","signature":"PF_HYLINK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_HYLINK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_APPLETALK","package":"druntime","parentType":"","signature":"PF_APPLETALK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_APPLETALK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_ROUTE","package":"druntime","parentType":"","signature":"PF_ROUTE","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_ROUTE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_LINK","package":"druntime","parentType":"","signature":"PF_LINK","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_LINK"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_XTP","package":"druntime","parentType":"","signature":"PF_XTP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_XTP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_COIP","package":"druntime","parentType":"","signature":"PF_COIP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_COIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_CNT","package":"druntime","parentType":"","signature":"PF_CNT","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_CNT"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_SIP","package":"druntime","parentType":"","signature":"PF_SIP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_SIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_IPX","package":"druntime","parentType":"","signature":"PF_IPX","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_IPX"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_RTIP","package":"druntime","parentType":"","signature":"PF_RTIP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_RTIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_PIP","package":"druntime","parentType":"","signature":"PF_PIP","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_PIP"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_ISDN","package":"druntime","parentType":"","signature":"PF_ISDN","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_ISDN"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_KEY","package":"druntime","parentType":"","signature":"PF_KEY","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_KEY"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_INET6","package":"druntime","parentType":"","signature":"PF_INET6","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_INET6"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_NATM","package":"druntime","parentType":"","signature":"PF_NATM","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_NATM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_ATM","package":"druntime","parentType":"","signature":"PF_ATM","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_ATM"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_NETGRAPH","package":"druntime","parentType":"","signature":"PF_NETGRAPH","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_NETGRAPH"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.sys.socket","name":"PF_BLUETOOTH","package":"druntime","parentType":"","signature":"PF_BLUETOOTH","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/socket.html#PF_BLUETOOTH"},{"doc":"D header file for DragonFlyBSD sys/sysctl.h","kind":"module","module":"core.sys.dragonflybsd.sys.sysctl","name":"core.sys.dragonflybsd.sys.sysctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.sysctl","name":"sysctl","package":"druntime","parentType":"","signature":"int sysctl(const  int *  name,  uint  namelen,  void *  oldp,  size_t *  oldlenp,\n            const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/sysctl/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.sysctl","name":"sysctlbyname","package":"druntime","parentType":"","signature":"int sysctlbyname(const  char *  name,  void *  oldp,  size_t *  oldlenp,\n                  const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/sysctl/sysctlbyname.html"},{"doc":"","kind":"function","module":"core.sys.dragonflybsd.sys.sysctl","name":"sysctlnametomib","package":"druntime","parentType":"","signature":"int sysctlnametomib(const  char *  name,  int *  mibp,  size_t *  sizep)","url":"/ddoc/druntime/core/sys/dragonflybsd/sys/sysctl/sysctlnametomib.html"},{"doc":"D header file for DragonFlyBSD's extensions to POSIX's time.h.","kind":"module","module":"core.sys.dragonflybsd.time","name":"core.sys.dragonflybsd.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_REALTIME","package":"druntime","parentType":"","signature":"CLOCK_REALTIME","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_REALTIME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_VIRTUAL","package":"druntime","parentType":"","signature":"CLOCK_VIRTUAL","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_VIRTUAL"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_PROF","package":"druntime","parentType":"","signature":"CLOCK_PROF","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_PROF"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_MONOTONIC","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_MONOTONIC"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_UPTIME","package":"druntime","parentType":"","signature":"CLOCK_UPTIME","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_UPTIME"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_UPTIME_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_UPTIME_PRECISE","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_UPTIME_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_UPTIME_FAST","package":"druntime","parentType":"","signature":"CLOCK_UPTIME_FAST","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_UPTIME_FAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_REALTIME_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_PRECISE","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_REALTIME_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_REALTIME_FAST","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_FAST","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_REALTIME_FAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_MONOTONIC_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_PRECISE","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_MONOTONIC_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_MONOTONIC_FAST","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_FAST","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_MONOTONIC_FAST"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_SECOND","package":"druntime","parentType":"","signature":"CLOCK_SECOND","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_SECOND"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_THREAD_CPUTIME_ID","package":"druntime","parentType":"","signature":"CLOCK_THREAD_CPUTIME_ID","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_THREAD_CPUTIME_ID"},{"doc":"","kind":"variable","module":"core.sys.dragonflybsd.time","name":"CLOCK_PROCESS_CPUTIME_ID","package":"druntime","parentType":"","signature":"CLOCK_PROCESS_CPUTIME_ID","url":"/ddoc/druntime/core/sys/dragonflybsd/time.html#CLOCK_PROCESS_CPUTIME_ID"},{"doc":"D header file for standard ELF types, structures, and macros.","kind":"module","module":"core.sys.elf","name":"core.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/elf.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_ST_BIND","package":"druntime","parentType":"","signature":"auto ELF32_ST_BIND(T)(T val)","url":"/ddoc/druntime/core/sys/elf/ELF32_ST_BIND.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_ST_TYPE","package":"druntime","parentType":"","signature":"auto ELF32_ST_TYPE(T)(T val)","url":"/ddoc/druntime/core/sys/elf/ELF32_ST_TYPE.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_ST_INFO","package":"druntime","parentType":"","signature":"auto ELF32_ST_INFO(B,  T)(B bind,  T type)","url":"/ddoc/druntime/core/sys/elf/ELF32_ST_INFO.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_R_SYM","package":"druntime","parentType":"","signature":"auto ELF32_R_SYM(V)(V val)","url":"/ddoc/druntime/core/sys/elf/ELF32_R_SYM.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_R_TYPE","package":"druntime","parentType":"","signature":"auto ELF32_R_TYPE(V)(V val)","url":"/ddoc/druntime/core/sys/elf/ELF32_R_TYPE.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_R_INFO","package":"druntime","parentType":"","signature":"auto ELF32_R_INFO(S,  T)(S sym,  T type)","url":"/ddoc/druntime/core/sys/elf/ELF32_R_INFO.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF64_R_SYM","package":"druntime","parentType":"","signature":"auto ELF64_R_SYM(I)(I i)","url":"/ddoc/druntime/core/sys/elf/ELF64_R_SYM.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF64_R_TYPE","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE(I)(I i)","url":"/ddoc/druntime/core/sys/elf/ELF64_R_TYPE.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF64_R_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_INFO(S,  T)(S sym,  T type)","url":"/ddoc/druntime/core/sys/elf/ELF64_R_INFO.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"DT_VALTAGIDX","package":"druntime","parentType":"","signature":"extern (D) auto DT_VALTAGIDX(T)(T tag)","url":"/ddoc/druntime/core/sys/elf/DT_VALTAGIDX.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"DT_ADDRTAGIDX","package":"druntime","parentType":"","signature":"extern (D) auto DT_ADDRTAGIDX(T)(T tag)","url":"/ddoc/druntime/core/sys/elf/DT_ADDRTAGIDX.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"DT_VERSIONTAGIDX","package":"druntime","parentType":"","signature":"extern (D) auto DT_VERSIONTAGIDX(T)(T tag)","url":"/ddoc/druntime/core/sys/elf/DT_VERSIONTAGIDX.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"DT_EXTRATAGIDX","package":"druntime","parentType":"","signature":"extern (D) auto DT_EXTRATAGIDX(T)(T tag)","url":"/ddoc/druntime/core/sys/elf/DT_EXTRATAGIDX.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_M_SYM","package":"druntime","parentType":"","signature":"auto ELF32_M_SYM(I)(I info)","url":"/ddoc/druntime/core/sys/elf/ELF32_M_SYM.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_M_SIZE","package":"druntime","parentType":"","signature":"auto ELF32_M_SIZE(I)(I info)","url":"/ddoc/druntime/core/sys/elf/ELF32_M_SIZE.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"ELF32_M_INFO","package":"druntime","parentType":"","signature":"auto ELF32_M_INFO(S,  SZ)(S sym,  SZ size)","url":"/ddoc/druntime/core/sys/elf/ELF32_M_INFO.html"},{"doc":"","kind":"function","module":"core.sys.elf","name":"EF_ARM_EABI_VERSION","package":"druntime","parentType":"","signature":"extern (D) auto EF_ARM_EABI_VERSION(F)(F flags)","url":"/ddoc/druntime/core/sys/elf/EF_ARM_EABI_VERSION.html"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Half","package":"druntime","parentType":"","signature":"Elf32_Half = uint16_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Half"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Half","package":"druntime","parentType":"","signature":"Elf64_Half = uint16_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Half"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Word","package":"druntime","parentType":"","signature":"Elf32_Word = uint32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Word"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Sword","package":"druntime","parentType":"","signature":"Elf32_Sword = int32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Sword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Word","package":"druntime","parentType":"","signature":"Elf64_Word = uint32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Word"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Sword","package":"druntime","parentType":"","signature":"Elf64_Sword = int32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Sword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Xword","package":"druntime","parentType":"","signature":"Elf32_Xword = uint64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Xword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Sxword","package":"druntime","parentType":"","signature":"Elf32_Sxword = int64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Sxword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Xword","package":"druntime","parentType":"","signature":"Elf64_Xword = uint64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Xword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Sxword","package":"druntime","parentType":"","signature":"Elf64_Sxword = int64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Sxword"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Addr","package":"druntime","parentType":"","signature":"Elf32_Addr = uint32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Addr"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Addr","package":"druntime","parentType":"","signature":"Elf64_Addr = uint64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Addr"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Off","package":"druntime","parentType":"","signature":"Elf32_Off = uint32_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Off"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Off","package":"druntime","parentType":"","signature":"Elf64_Off = uint64_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Off"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Section","package":"druntime","parentType":"","signature":"Elf32_Section = uint16_t","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Section"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Section","package":"druntime","parentType":"","signature":"Elf64_Section = uint16_t","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Section"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Versym","package":"druntime","parentType":"","signature":"Elf32_Versym = Elf32_Half","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Versym"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf64_Versym","package":"druntime","parentType":"","signature":"Elf64_Versym = Elf64_Half","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Versym"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Ehdr","package":"druntime","parentType":"","signature":"Elf32_Ehdr","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Ehdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Ehdr","package":"druntime","parentType":"","signature":"Elf64_Ehdr","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Ehdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Shdr","package":"druntime","parentType":"","signature":"Elf32_Shdr","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Shdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Shdr","package":"druntime","parentType":"","signature":"Elf64_Shdr","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Shdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Sym","package":"druntime","parentType":"","signature":"Elf32_Sym","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Sym"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Sym","package":"druntime","parentType":"","signature":"Elf64_Sym","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Sym"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Syminfo","package":"druntime","parentType":"","signature":"Elf32_Syminfo","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Syminfo"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Syminfo","package":"druntime","parentType":"","signature":"Elf64_Syminfo","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Syminfo"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_ST_BIND","package":"druntime","parentType":"","signature":"ELF64_ST_BIND = ELF32_ST_BIND","url":"/ddoc/druntime/core/sys/elf.html#ELF64_ST_BIND"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_ST_TYPE","package":"druntime","parentType":"","signature":"ELF64_ST_TYPE = ELF32_ST_TYPE","url":"/ddoc/druntime/core/sys/elf.html#ELF64_ST_TYPE"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_ST_INFO","package":"druntime","parentType":"","signature":"ELF64_ST_INFO = ELF32_ST_INFO","url":"/ddoc/druntime/core/sys/elf.html#ELF64_ST_INFO"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Rel","package":"druntime","parentType":"","signature":"Elf32_Rel","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Rel"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Rel","package":"druntime","parentType":"","signature":"Elf64_Rel","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Rel"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Rela","package":"druntime","parentType":"","signature":"Elf32_Rela","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Rela"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Rela","package":"druntime","parentType":"","signature":"Elf64_Rela","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Rela"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Phdr","package":"druntime","parentType":"","signature":"Elf32_Phdr","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Phdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Phdr","package":"druntime","parentType":"","signature":"Elf64_Phdr","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Phdr"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Verdef","package":"druntime","parentType":"","signature":"Elf32_Verdef","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Verdef"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Verdef","package":"druntime","parentType":"","signature":"Elf64_Verdef","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Verdef"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Verdaux","package":"druntime","parentType":"","signature":"Elf32_Verdaux","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Verdaux"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Verdaux","package":"druntime","parentType":"","signature":"Elf64_Verdaux","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Verdaux"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Verneed","package":"druntime","parentType":"","signature":"Elf32_Verneed","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Verneed"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Verneed","package":"druntime","parentType":"","signature":"Elf64_Verneed","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Verneed"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Vernaux","package":"druntime","parentType":"","signature":"Elf32_Vernaux","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Vernaux"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Vernaux","package":"druntime","parentType":"","signature":"Elf64_Vernaux","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Vernaux"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Move","package":"druntime","parentType":"","signature":"Elf32_Move","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Move"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Move","package":"druntime","parentType":"","signature":"Elf64_Move","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Move"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_M_SYM","package":"druntime","parentType":"","signature":"ELF64_M_SYM = ELF32_M_SYM","url":"/ddoc/druntime/core/sys/elf.html#ELF64_M_SYM"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_M_SIZE","package":"druntime","parentType":"","signature":"ELF64_M_SIZE = ELF32_M_SIZE","url":"/ddoc/druntime/core/sys/elf.html#ELF64_M_SIZE"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"ELF64_M_INFO","package":"druntime","parentType":"","signature":"ELF64_M_INFO = ELF32_M_INFO","url":"/ddoc/druntime/core/sys/elf.html#ELF64_M_INFO"},{"doc":"","kind":"union","module":"core.sys.elf","name":"Elf32_gptab","package":"druntime","parentType":"","signature":"Elf32_gptab","url":"/ddoc/druntime/core/sys/elf.html#Elf32_gptab"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_RegInfo","package":"druntime","parentType":"","signature":"Elf32_RegInfo","url":"/ddoc/druntime/core/sys/elf.html#Elf32_RegInfo"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf_Options","package":"druntime","parentType":"","signature":"Elf_Options","url":"/ddoc/druntime/core/sys/elf.html#Elf_Options"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf_Options_Hw","package":"druntime","parentType":"","signature":"Elf_Options_Hw","url":"/ddoc/druntime/core/sys/elf.html#Elf_Options_Hw"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf32_Lib","package":"druntime","parentType":"","signature":"Elf32_Lib","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Lib"},{"doc":"","kind":"struct","module":"core.sys.elf","name":"Elf64_Lib","package":"druntime","parentType":"","signature":"Elf64_Lib","url":"/ddoc/druntime/core/sys/elf.html#Elf64_Lib"},{"doc":"","kind":"alias","module":"core.sys.elf","name":"Elf32_Conflict","package":"druntime","parentType":"","signature":"Elf32_Conflict = Elf32_Addr","url":"/ddoc/druntime/core/sys/elf.html#Elf32_Conflict"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_NIDENT","package":"druntime","parentType":"","signature":"EI_NIDENT","url":"/ddoc/druntime/core/sys/elf.html#EI_NIDENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_MAG0","package":"druntime","parentType":"","signature":"EI_MAG0","url":"/ddoc/druntime/core/sys/elf.html#EI_MAG0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFMAG0","package":"druntime","parentType":"","signature":"ELFMAG0","url":"/ddoc/druntime/core/sys/elf.html#ELFMAG0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_MAG1","package":"druntime","parentType":"","signature":"EI_MAG1","url":"/ddoc/druntime/core/sys/elf.html#EI_MAG1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFMAG1","package":"druntime","parentType":"","signature":"ELFMAG1","url":"/ddoc/druntime/core/sys/elf.html#ELFMAG1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_MAG2","package":"druntime","parentType":"","signature":"EI_MAG2","url":"/ddoc/druntime/core/sys/elf.html#EI_MAG2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFMAG2","package":"druntime","parentType":"","signature":"ELFMAG2","url":"/ddoc/druntime/core/sys/elf.html#ELFMAG2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_MAG3","package":"druntime","parentType":"","signature":"EI_MAG3","url":"/ddoc/druntime/core/sys/elf.html#EI_MAG3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFMAG3","package":"druntime","parentType":"","signature":"ELFMAG3","url":"/ddoc/druntime/core/sys/elf.html#ELFMAG3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFMAG","package":"druntime","parentType":"","signature":"ELFMAG","url":"/ddoc/druntime/core/sys/elf.html#ELFMAG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SELFMAG","package":"druntime","parentType":"","signature":"SELFMAG","url":"/ddoc/druntime/core/sys/elf.html#SELFMAG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_CLASS","package":"druntime","parentType":"","signature":"EI_CLASS","url":"/ddoc/druntime/core/sys/elf.html#EI_CLASS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFCLASSNONE","package":"druntime","parentType":"","signature":"ELFCLASSNONE","url":"/ddoc/druntime/core/sys/elf.html#ELFCLASSNONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFCLASS32","package":"druntime","parentType":"","signature":"ELFCLASS32","url":"/ddoc/druntime/core/sys/elf.html#ELFCLASS32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFCLASS64","package":"druntime","parentType":"","signature":"ELFCLASS64","url":"/ddoc/druntime/core/sys/elf.html#ELFCLASS64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFCLASSNUM","package":"druntime","parentType":"","signature":"ELFCLASSNUM","url":"/ddoc/druntime/core/sys/elf.html#ELFCLASSNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_DATA","package":"druntime","parentType":"","signature":"EI_DATA","url":"/ddoc/druntime/core/sys/elf.html#EI_DATA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFDATANONE","package":"druntime","parentType":"","signature":"ELFDATANONE","url":"/ddoc/druntime/core/sys/elf.html#ELFDATANONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFDATA2LSB","package":"druntime","parentType":"","signature":"ELFDATA2LSB","url":"/ddoc/druntime/core/sys/elf.html#ELFDATA2LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFDATA2MSB","package":"druntime","parentType":"","signature":"ELFDATA2MSB","url":"/ddoc/druntime/core/sys/elf.html#ELFDATA2MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFDATANUM","package":"druntime","parentType":"","signature":"ELFDATANUM","url":"/ddoc/druntime/core/sys/elf.html#ELFDATANUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_VERSION","package":"druntime","parentType":"","signature":"EI_VERSION","url":"/ddoc/druntime/core/sys/elf.html#EI_VERSION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_OSABI","package":"druntime","parentType":"","signature":"EI_OSABI","url":"/ddoc/druntime/core/sys/elf.html#EI_OSABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_NONE","package":"druntime","parentType":"","signature":"ELFOSABI_NONE","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_SYSV","package":"druntime","parentType":"","signature":"ELFOSABI_SYSV","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_SYSV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_HPUX","package":"druntime","parentType":"","signature":"ELFOSABI_HPUX","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_HPUX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_NETBSD","package":"druntime","parentType":"","signature":"ELFOSABI_NETBSD","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_NETBSD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_GNU","package":"druntime","parentType":"","signature":"ELFOSABI_GNU","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_GNU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_LINUX","package":"druntime","parentType":"","signature":"ELFOSABI_LINUX","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_LINUX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_HURD","package":"druntime","parentType":"","signature":"ELFOSABI_HURD","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_HURD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_86OPEN","package":"druntime","parentType":"","signature":"ELFOSABI_86OPEN","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_86OPEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_SOLARIS","package":"druntime","parentType":"","signature":"ELFOSABI_SOLARIS","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_SOLARIS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_AIX","package":"druntime","parentType":"","signature":"ELFOSABI_AIX","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_AIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_MONTEREY","package":"druntime","parentType":"","signature":"ELFOSABI_MONTEREY","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_MONTEREY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_IRIX","package":"druntime","parentType":"","signature":"ELFOSABI_IRIX","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_IRIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_FREEBSD","package":"druntime","parentType":"","signature":"ELFOSABI_FREEBSD","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_FREEBSD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_TRU64","package":"druntime","parentType":"","signature":"ELFOSABI_TRU64","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_TRU64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_MODESTO","package":"druntime","parentType":"","signature":"ELFOSABI_MODESTO","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_MODESTO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_OPENBSD","package":"druntime","parentType":"","signature":"ELFOSABI_OPENBSD","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_OPENBSD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_OPENVMS","package":"druntime","parentType":"","signature":"ELFOSABI_OPENVMS","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_OPENVMS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_NSK","package":"druntime","parentType":"","signature":"ELFOSABI_NSK","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_NSK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_AROS","package":"druntime","parentType":"","signature":"ELFOSABI_AROS","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_AROS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_ARM_AEABI","package":"druntime","parentType":"","signature":"ELFOSABI_ARM_AEABI","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_ARM_AEABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_ARM","package":"druntime","parentType":"","signature":"ELFOSABI_ARM","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_ARM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_STANDALONE","package":"druntime","parentType":"","signature":"ELFOSABI_STANDALONE","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_STANDALONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELFOSABI_DRAGONFLYBSD","package":"druntime","parentType":"","signature":"ELFOSABI_DRAGONFLYBSD","url":"/ddoc/druntime/core/sys/elf.html#ELFOSABI_DRAGONFLYBSD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_ABIVERSION","package":"druntime","parentType":"","signature":"EI_ABIVERSION","url":"/ddoc/druntime/core/sys/elf.html#EI_ABIVERSION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EI_PAD","package":"druntime","parentType":"","signature":"EI_PAD","url":"/ddoc/druntime/core/sys/elf.html#EI_PAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_NONE","package":"druntime","parentType":"","signature":"ET_NONE","url":"/ddoc/druntime/core/sys/elf.html#ET_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_REL","package":"druntime","parentType":"","signature":"ET_REL","url":"/ddoc/druntime/core/sys/elf.html#ET_REL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_EXEC","package":"druntime","parentType":"","signature":"ET_EXEC","url":"/ddoc/druntime/core/sys/elf.html#ET_EXEC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_DYN","package":"druntime","parentType":"","signature":"ET_DYN","url":"/ddoc/druntime/core/sys/elf.html#ET_DYN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_CORE","package":"druntime","parentType":"","signature":"ET_CORE","url":"/ddoc/druntime/core/sys/elf.html#ET_CORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_NUM","package":"druntime","parentType":"","signature":"ET_NUM","url":"/ddoc/druntime/core/sys/elf.html#ET_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_LOOS","package":"druntime","parentType":"","signature":"ET_LOOS","url":"/ddoc/druntime/core/sys/elf.html#ET_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_HIOS","package":"druntime","parentType":"","signature":"ET_HIOS","url":"/ddoc/druntime/core/sys/elf.html#ET_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_LOPROC","package":"druntime","parentType":"","signature":"ET_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#ET_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ET_HIPROC","package":"druntime","parentType":"","signature":"ET_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#ET_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NONE","package":"druntime","parentType":"","signature":"EM_NONE","url":"/ddoc/druntime/core/sys/elf.html#EM_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_M32","package":"druntime","parentType":"","signature":"EM_M32","url":"/ddoc/druntime/core/sys/elf.html#EM_M32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SPARC","package":"druntime","parentType":"","signature":"EM_SPARC","url":"/ddoc/druntime/core/sys/elf.html#EM_SPARC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_386","package":"druntime","parentType":"","signature":"EM_386","url":"/ddoc/druntime/core/sys/elf.html#EM_386"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68K","package":"druntime","parentType":"","signature":"EM_68K","url":"/ddoc/druntime/core/sys/elf.html#EM_68K"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_88K","package":"druntime","parentType":"","signature":"EM_88K","url":"/ddoc/druntime/core/sys/elf.html#EM_88K"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_860","package":"druntime","parentType":"","signature":"EM_860","url":"/ddoc/druntime/core/sys/elf.html#EM_860"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MIPS","package":"druntime","parentType":"","signature":"EM_MIPS","url":"/ddoc/druntime/core/sys/elf.html#EM_MIPS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_S370","package":"druntime","parentType":"","signature":"EM_S370","url":"/ddoc/druntime/core/sys/elf.html#EM_S370"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MIPS_RS3_LE","package":"druntime","parentType":"","signature":"EM_MIPS_RS3_LE","url":"/ddoc/druntime/core/sys/elf.html#EM_MIPS_RS3_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PARISC","package":"druntime","parentType":"","signature":"EM_PARISC","url":"/ddoc/druntime/core/sys/elf.html#EM_PARISC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VPP500","package":"druntime","parentType":"","signature":"EM_VPP500","url":"/ddoc/druntime/core/sys/elf.html#EM_VPP500"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SPARC32PLUS","package":"druntime","parentType":"","signature":"EM_SPARC32PLUS","url":"/ddoc/druntime/core/sys/elf.html#EM_SPARC32PLUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_960","package":"druntime","parentType":"","signature":"EM_960","url":"/ddoc/druntime/core/sys/elf.html#EM_960"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PPC","package":"druntime","parentType":"","signature":"EM_PPC","url":"/ddoc/druntime/core/sys/elf.html#EM_PPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PPC64","package":"druntime","parentType":"","signature":"EM_PPC64","url":"/ddoc/druntime/core/sys/elf.html#EM_PPC64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_S390","package":"druntime","parentType":"","signature":"EM_S390","url":"/ddoc/druntime/core/sys/elf.html#EM_S390"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_V800","package":"druntime","parentType":"","signature":"EM_V800","url":"/ddoc/druntime/core/sys/elf.html#EM_V800"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FR20","package":"druntime","parentType":"","signature":"EM_FR20","url":"/ddoc/druntime/core/sys/elf.html#EM_FR20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RH32","package":"druntime","parentType":"","signature":"EM_RH32","url":"/ddoc/druntime/core/sys/elf.html#EM_RH32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RCE","package":"druntime","parentType":"","signature":"EM_RCE","url":"/ddoc/druntime/core/sys/elf.html#EM_RCE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ARM","package":"druntime","parentType":"","signature":"EM_ARM","url":"/ddoc/druntime/core/sys/elf.html#EM_ARM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FAKE_ALPHA","package":"druntime","parentType":"","signature":"EM_FAKE_ALPHA","url":"/ddoc/druntime/core/sys/elf.html#EM_FAKE_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SH","package":"druntime","parentType":"","signature":"EM_SH","url":"/ddoc/druntime/core/sys/elf.html#EM_SH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SPARCV9","package":"druntime","parentType":"","signature":"EM_SPARCV9","url":"/ddoc/druntime/core/sys/elf.html#EM_SPARCV9"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TRICORE","package":"druntime","parentType":"","signature":"EM_TRICORE","url":"/ddoc/druntime/core/sys/elf.html#EM_TRICORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ARC","package":"druntime","parentType":"","signature":"EM_ARC","url":"/ddoc/druntime/core/sys/elf.html#EM_ARC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_H8_300","package":"druntime","parentType":"","signature":"EM_H8_300","url":"/ddoc/druntime/core/sys/elf.html#EM_H8_300"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_H8_300H","package":"druntime","parentType":"","signature":"EM_H8_300H","url":"/ddoc/druntime/core/sys/elf.html#EM_H8_300H"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_H8S","package":"druntime","parentType":"","signature":"EM_H8S","url":"/ddoc/druntime/core/sys/elf.html#EM_H8S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_H8_500","package":"druntime","parentType":"","signature":"EM_H8_500","url":"/ddoc/druntime/core/sys/elf.html#EM_H8_500"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_IA_64","package":"druntime","parentType":"","signature":"EM_IA_64","url":"/ddoc/druntime/core/sys/elf.html#EM_IA_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MIPS_X","package":"druntime","parentType":"","signature":"EM_MIPS_X","url":"/ddoc/druntime/core/sys/elf.html#EM_MIPS_X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_COLDFIRE","package":"druntime","parentType":"","signature":"EM_COLDFIRE","url":"/ddoc/druntime/core/sys/elf.html#EM_COLDFIRE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68HC12","package":"druntime","parentType":"","signature":"EM_68HC12","url":"/ddoc/druntime/core/sys/elf.html#EM_68HC12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MMA","package":"druntime","parentType":"","signature":"EM_MMA","url":"/ddoc/druntime/core/sys/elf.html#EM_MMA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PCP","package":"druntime","parentType":"","signature":"EM_PCP","url":"/ddoc/druntime/core/sys/elf.html#EM_PCP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NCPU","package":"druntime","parentType":"","signature":"EM_NCPU","url":"/ddoc/druntime/core/sys/elf.html#EM_NCPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NDR1","package":"druntime","parentType":"","signature":"EM_NDR1","url":"/ddoc/druntime/core/sys/elf.html#EM_NDR1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_STARCORE","package":"druntime","parentType":"","signature":"EM_STARCORE","url":"/ddoc/druntime/core/sys/elf.html#EM_STARCORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ME16","package":"druntime","parentType":"","signature":"EM_ME16","url":"/ddoc/druntime/core/sys/elf.html#EM_ME16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ST100","package":"druntime","parentType":"","signature":"EM_ST100","url":"/ddoc/druntime/core/sys/elf.html#EM_ST100"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TINYJ","package":"druntime","parentType":"","signature":"EM_TINYJ","url":"/ddoc/druntime/core/sys/elf.html#EM_TINYJ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_X86_64","package":"druntime","parentType":"","signature":"EM_X86_64","url":"/ddoc/druntime/core/sys/elf.html#EM_X86_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PDSP","package":"druntime","parentType":"","signature":"EM_PDSP","url":"/ddoc/druntime/core/sys/elf.html#EM_PDSP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FX66","package":"druntime","parentType":"","signature":"EM_FX66","url":"/ddoc/druntime/core/sys/elf.html#EM_FX66"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ST9PLUS","package":"druntime","parentType":"","signature":"EM_ST9PLUS","url":"/ddoc/druntime/core/sys/elf.html#EM_ST9PLUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ST7","package":"druntime","parentType":"","signature":"EM_ST7","url":"/ddoc/druntime/core/sys/elf.html#EM_ST7"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68HC16","package":"druntime","parentType":"","signature":"EM_68HC16","url":"/ddoc/druntime/core/sys/elf.html#EM_68HC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68HC11","package":"druntime","parentType":"","signature":"EM_68HC11","url":"/ddoc/druntime/core/sys/elf.html#EM_68HC11"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68HC08","package":"druntime","parentType":"","signature":"EM_68HC08","url":"/ddoc/druntime/core/sys/elf.html#EM_68HC08"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_68HC05","package":"druntime","parentType":"","signature":"EM_68HC05","url":"/ddoc/druntime/core/sys/elf.html#EM_68HC05"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SVX","package":"druntime","parentType":"","signature":"EM_SVX","url":"/ddoc/druntime/core/sys/elf.html#EM_SVX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ST19","package":"druntime","parentType":"","signature":"EM_ST19","url":"/ddoc/druntime/core/sys/elf.html#EM_ST19"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VAX","package":"druntime","parentType":"","signature":"EM_VAX","url":"/ddoc/druntime/core/sys/elf.html#EM_VAX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CRIS","package":"druntime","parentType":"","signature":"EM_CRIS","url":"/ddoc/druntime/core/sys/elf.html#EM_CRIS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_JAVELIN","package":"druntime","parentType":"","signature":"EM_JAVELIN","url":"/ddoc/druntime/core/sys/elf.html#EM_JAVELIN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FIREPATH","package":"druntime","parentType":"","signature":"EM_FIREPATH","url":"/ddoc/druntime/core/sys/elf.html#EM_FIREPATH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ZSP","package":"druntime","parentType":"","signature":"EM_ZSP","url":"/ddoc/druntime/core/sys/elf.html#EM_ZSP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MMIX","package":"druntime","parentType":"","signature":"EM_MMIX","url":"/ddoc/druntime/core/sys/elf.html#EM_MMIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_HUANY","package":"druntime","parentType":"","signature":"EM_HUANY","url":"/ddoc/druntime/core/sys/elf.html#EM_HUANY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PRISM","package":"druntime","parentType":"","signature":"EM_PRISM","url":"/ddoc/druntime/core/sys/elf.html#EM_PRISM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_AVR","package":"druntime","parentType":"","signature":"EM_AVR","url":"/ddoc/druntime/core/sys/elf.html#EM_AVR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FR30","package":"druntime","parentType":"","signature":"EM_FR30","url":"/ddoc/druntime/core/sys/elf.html#EM_FR30"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_D10V","package":"druntime","parentType":"","signature":"EM_D10V","url":"/ddoc/druntime/core/sys/elf.html#EM_D10V"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_D30V","package":"druntime","parentType":"","signature":"EM_D30V","url":"/ddoc/druntime/core/sys/elf.html#EM_D30V"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_V850","package":"druntime","parentType":"","signature":"EM_V850","url":"/ddoc/druntime/core/sys/elf.html#EM_V850"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_M32R","package":"druntime","parentType":"","signature":"EM_M32R","url":"/ddoc/druntime/core/sys/elf.html#EM_M32R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MN10300","package":"druntime","parentType":"","signature":"EM_MN10300","url":"/ddoc/druntime/core/sys/elf.html#EM_MN10300"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MN10200","package":"druntime","parentType":"","signature":"EM_MN10200","url":"/ddoc/druntime/core/sys/elf.html#EM_MN10200"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_PJ","package":"druntime","parentType":"","signature":"EM_PJ","url":"/ddoc/druntime/core/sys/elf.html#EM_PJ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_OPENRISC","package":"druntime","parentType":"","signature":"EM_OPENRISC","url":"/ddoc/druntime/core/sys/elf.html#EM_OPENRISC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ARC_A5","package":"druntime","parentType":"","signature":"EM_ARC_A5","url":"/ddoc/druntime/core/sys/elf.html#EM_ARC_A5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_XTENSA","package":"druntime","parentType":"","signature":"EM_XTENSA","url":"/ddoc/druntime/core/sys/elf.html#EM_XTENSA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VIDEOCORE","package":"druntime","parentType":"","signature":"EM_VIDEOCORE","url":"/ddoc/druntime/core/sys/elf.html#EM_VIDEOCORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TMM_GPP","package":"druntime","parentType":"","signature":"EM_TMM_GPP","url":"/ddoc/druntime/core/sys/elf.html#EM_TMM_GPP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NS32K","package":"druntime","parentType":"","signature":"EM_NS32K","url":"/ddoc/druntime/core/sys/elf.html#EM_NS32K"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TPC","package":"druntime","parentType":"","signature":"EM_TPC","url":"/ddoc/druntime/core/sys/elf.html#EM_TPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SNP1K","package":"druntime","parentType":"","signature":"EM_SNP1K","url":"/ddoc/druntime/core/sys/elf.html#EM_SNP1K"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ST200","package":"druntime","parentType":"","signature":"EM_ST200","url":"/ddoc/druntime/core/sys/elf.html#EM_ST200"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_IP2K","package":"druntime","parentType":"","signature":"EM_IP2K","url":"/ddoc/druntime/core/sys/elf.html#EM_IP2K"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MAX","package":"druntime","parentType":"","signature":"EM_MAX","url":"/ddoc/druntime/core/sys/elf.html#EM_MAX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CR","package":"druntime","parentType":"","signature":"EM_CR","url":"/ddoc/druntime/core/sys/elf.html#EM_CR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_F2MC16","package":"druntime","parentType":"","signature":"EM_F2MC16","url":"/ddoc/druntime/core/sys/elf.html#EM_F2MC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MSP430","package":"druntime","parentType":"","signature":"EM_MSP430","url":"/ddoc/druntime/core/sys/elf.html#EM_MSP430"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_BLACKFIN","package":"druntime","parentType":"","signature":"EM_BLACKFIN","url":"/ddoc/druntime/core/sys/elf.html#EM_BLACKFIN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SE_C33","package":"druntime","parentType":"","signature":"EM_SE_C33","url":"/ddoc/druntime/core/sys/elf.html#EM_SE_C33"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SEP","package":"druntime","parentType":"","signature":"EM_SEP","url":"/ddoc/druntime/core/sys/elf.html#EM_SEP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ARCA","package":"druntime","parentType":"","signature":"EM_ARCA","url":"/ddoc/druntime/core/sys/elf.html#EM_ARCA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_UNICORE","package":"druntime","parentType":"","signature":"EM_UNICORE","url":"/ddoc/druntime/core/sys/elf.html#EM_UNICORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_DXP","package":"druntime","parentType":"","signature":"EM_DXP","url":"/ddoc/druntime/core/sys/elf.html#EM_DXP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ALTERA_NIOS2","package":"druntime","parentType":"","signature":"EM_ALTERA_NIOS2","url":"/ddoc/druntime/core/sys/elf.html#EM_ALTERA_NIOS2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CRX","package":"druntime","parentType":"","signature":"EM_CRX","url":"/ddoc/druntime/core/sys/elf.html#EM_CRX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_XGATE","package":"druntime","parentType":"","signature":"EM_XGATE","url":"/ddoc/druntime/core/sys/elf.html#EM_XGATE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_C166","package":"druntime","parentType":"","signature":"EM_C166","url":"/ddoc/druntime/core/sys/elf.html#EM_C166"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_M16C","package":"druntime","parentType":"","signature":"EM_M16C","url":"/ddoc/druntime/core/sys/elf.html#EM_M16C"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_DSPIC30F","package":"druntime","parentType":"","signature":"EM_DSPIC30F","url":"/ddoc/druntime/core/sys/elf.html#EM_DSPIC30F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CE","package":"druntime","parentType":"","signature":"EM_CE","url":"/ddoc/druntime/core/sys/elf.html#EM_CE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_M32C","package":"druntime","parentType":"","signature":"EM_M32C","url":"/ddoc/druntime/core/sys/elf.html#EM_M32C"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res121","package":"druntime","parentType":"","signature":"EM_res121","url":"/ddoc/druntime/core/sys/elf.html#EM_res121"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res122","package":"druntime","parentType":"","signature":"EM_res122","url":"/ddoc/druntime/core/sys/elf.html#EM_res122"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res123","package":"druntime","parentType":"","signature":"EM_res123","url":"/ddoc/druntime/core/sys/elf.html#EM_res123"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res124","package":"druntime","parentType":"","signature":"EM_res124","url":"/ddoc/druntime/core/sys/elf.html#EM_res124"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res125","package":"druntime","parentType":"","signature":"EM_res125","url":"/ddoc/druntime/core/sys/elf.html#EM_res125"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res126","package":"druntime","parentType":"","signature":"EM_res126","url":"/ddoc/druntime/core/sys/elf.html#EM_res126"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res127","package":"druntime","parentType":"","signature":"EM_res127","url":"/ddoc/druntime/core/sys/elf.html#EM_res127"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res128","package":"druntime","parentType":"","signature":"EM_res128","url":"/ddoc/druntime/core/sys/elf.html#EM_res128"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res129","package":"druntime","parentType":"","signature":"EM_res129","url":"/ddoc/druntime/core/sys/elf.html#EM_res129"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res130","package":"druntime","parentType":"","signature":"EM_res130","url":"/ddoc/druntime/core/sys/elf.html#EM_res130"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TSK3000","package":"druntime","parentType":"","signature":"EM_TSK3000","url":"/ddoc/druntime/core/sys/elf.html#EM_TSK3000"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RS08","package":"druntime","parentType":"","signature":"EM_RS08","url":"/ddoc/druntime/core/sys/elf.html#EM_RS08"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_res133","package":"druntime","parentType":"","signature":"EM_res133","url":"/ddoc/druntime/core/sys/elf.html#EM_res133"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ECOG2","package":"druntime","parentType":"","signature":"EM_ECOG2","url":"/ddoc/druntime/core/sys/elf.html#EM_ECOG2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SCORE","package":"druntime","parentType":"","signature":"EM_SCORE","url":"/ddoc/druntime/core/sys/elf.html#EM_SCORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SCORE7","package":"druntime","parentType":"","signature":"EM_SCORE7","url":"/ddoc/druntime/core/sys/elf.html#EM_SCORE7"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_DSP24","package":"druntime","parentType":"","signature":"EM_DSP24","url":"/ddoc/druntime/core/sys/elf.html#EM_DSP24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VIDEOCORE3","package":"druntime","parentType":"","signature":"EM_VIDEOCORE3","url":"/ddoc/druntime/core/sys/elf.html#EM_VIDEOCORE3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_LATTICEMICO32","package":"druntime","parentType":"","signature":"EM_LATTICEMICO32","url":"/ddoc/druntime/core/sys/elf.html#EM_LATTICEMICO32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SE_C17","package":"druntime","parentType":"","signature":"EM_SE_C17","url":"/ddoc/druntime/core/sys/elf.html#EM_SE_C17"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TI_C6000","package":"druntime","parentType":"","signature":"EM_TI_C6000","url":"/ddoc/druntime/core/sys/elf.html#EM_TI_C6000"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TI_C2000","package":"druntime","parentType":"","signature":"EM_TI_C2000","url":"/ddoc/druntime/core/sys/elf.html#EM_TI_C2000"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TI_C5500","package":"druntime","parentType":"","signature":"EM_TI_C5500","url":"/ddoc/druntime/core/sys/elf.html#EM_TI_C5500"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TI_ARP32","package":"druntime","parentType":"","signature":"EM_TI_ARP32","url":"/ddoc/druntime/core/sys/elf.html#EM_TI_ARP32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TI_PRU","package":"druntime","parentType":"","signature":"EM_TI_PRU","url":"/ddoc/druntime/core/sys/elf.html#EM_TI_PRU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MMDSP_PLUS","package":"druntime","parentType":"","signature":"EM_MMDSP_PLUS","url":"/ddoc/druntime/core/sys/elf.html#EM_MMDSP_PLUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CYPRESS_M8C","package":"druntime","parentType":"","signature":"EM_CYPRESS_M8C","url":"/ddoc/druntime/core/sys/elf.html#EM_CYPRESS_M8C"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_R32C","package":"druntime","parentType":"","signature":"EM_R32C","url":"/ddoc/druntime/core/sys/elf.html#EM_R32C"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TRIMEDIA","package":"druntime","parentType":"","signature":"EM_TRIMEDIA","url":"/ddoc/druntime/core/sys/elf.html#EM_TRIMEDIA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_QDSP6","package":"druntime","parentType":"","signature":"EM_QDSP6","url":"/ddoc/druntime/core/sys/elf.html#EM_QDSP6"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_8051","package":"druntime","parentType":"","signature":"EM_8051","url":"/ddoc/druntime/core/sys/elf.html#EM_8051"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_STXP7X","package":"druntime","parentType":"","signature":"EM_STXP7X","url":"/ddoc/druntime/core/sys/elf.html#EM_STXP7X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NDS32","package":"druntime","parentType":"","signature":"EM_NDS32","url":"/ddoc/druntime/core/sys/elf.html#EM_NDS32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ECOG1","package":"druntime","parentType":"","signature":"EM_ECOG1","url":"/ddoc/druntime/core/sys/elf.html#EM_ECOG1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ECOG1X","package":"druntime","parentType":"","signature":"EM_ECOG1X","url":"/ddoc/druntime/core/sys/elf.html#EM_ECOG1X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MAXQ30","package":"druntime","parentType":"","signature":"EM_MAXQ30","url":"/ddoc/druntime/core/sys/elf.html#EM_MAXQ30"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_XIMO16","package":"druntime","parentType":"","signature":"EM_XIMO16","url":"/ddoc/druntime/core/sys/elf.html#EM_XIMO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MANIK","package":"druntime","parentType":"","signature":"EM_MANIK","url":"/ddoc/druntime/core/sys/elf.html#EM_MANIK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CRAYNV2","package":"druntime","parentType":"","signature":"EM_CRAYNV2","url":"/ddoc/druntime/core/sys/elf.html#EM_CRAYNV2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RX","package":"druntime","parentType":"","signature":"EM_RX","url":"/ddoc/druntime/core/sys/elf.html#EM_RX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_METAG","package":"druntime","parentType":"","signature":"EM_METAG","url":"/ddoc/druntime/core/sys/elf.html#EM_METAG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MCST_ELBRUS","package":"druntime","parentType":"","signature":"EM_MCST_ELBRUS","url":"/ddoc/druntime/core/sys/elf.html#EM_MCST_ELBRUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ECOG16","package":"druntime","parentType":"","signature":"EM_ECOG16","url":"/ddoc/druntime/core/sys/elf.html#EM_ECOG16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CR16","package":"druntime","parentType":"","signature":"EM_CR16","url":"/ddoc/druntime/core/sys/elf.html#EM_CR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ETPU","package":"druntime","parentType":"","signature":"EM_ETPU","url":"/ddoc/druntime/core/sys/elf.html#EM_ETPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_SLE9X","package":"druntime","parentType":"","signature":"EM_SLE9X","url":"/ddoc/druntime/core/sys/elf.html#EM_SLE9X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_L1OM","package":"druntime","parentType":"","signature":"EM_L1OM","url":"/ddoc/druntime/core/sys/elf.html#EM_L1OM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_K1OM","package":"druntime","parentType":"","signature":"EM_K1OM","url":"/ddoc/druntime/core/sys/elf.html#EM_K1OM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_INTEL182","package":"druntime","parentType":"","signature":"EM_INTEL182","url":"/ddoc/druntime/core/sys/elf.html#EM_INTEL182"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_AARCH64","package":"druntime","parentType":"","signature":"EM_AARCH64","url":"/ddoc/druntime/core/sys/elf.html#EM_AARCH64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_AVR32","package":"druntime","parentType":"","signature":"EM_AVR32","url":"/ddoc/druntime/core/sys/elf.html#EM_AVR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_STM8","package":"druntime","parentType":"","signature":"EM_STM8","url":"/ddoc/druntime/core/sys/elf.html#EM_STM8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TILE64","package":"druntime","parentType":"","signature":"EM_TILE64","url":"/ddoc/druntime/core/sys/elf.html#EM_TILE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TILEPRO","package":"druntime","parentType":"","signature":"EM_TILEPRO","url":"/ddoc/druntime/core/sys/elf.html#EM_TILEPRO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MICROBLAZE","package":"druntime","parentType":"","signature":"EM_MICROBLAZE","url":"/ddoc/druntime/core/sys/elf.html#EM_MICROBLAZE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CUDA","package":"druntime","parentType":"","signature":"EM_CUDA","url":"/ddoc/druntime/core/sys/elf.html#EM_CUDA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_TILEGX","package":"druntime","parentType":"","signature":"EM_TILEGX","url":"/ddoc/druntime/core/sys/elf.html#EM_TILEGX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CLOUDSHIELD","package":"druntime","parentType":"","signature":"EM_CLOUDSHIELD","url":"/ddoc/druntime/core/sys/elf.html#EM_CLOUDSHIELD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_COREA_1ST","package":"druntime","parentType":"","signature":"EM_COREA_1ST","url":"/ddoc/druntime/core/sys/elf.html#EM_COREA_1ST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_COREA_2ND","package":"druntime","parentType":"","signature":"EM_COREA_2ND","url":"/ddoc/druntime/core/sys/elf.html#EM_COREA_2ND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ARCV2","package":"druntime","parentType":"","signature":"EM_ARCV2","url":"/ddoc/druntime/core/sys/elf.html#EM_ARCV2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_OPEN8","package":"druntime","parentType":"","signature":"EM_OPEN8","url":"/ddoc/druntime/core/sys/elf.html#EM_OPEN8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RL78","package":"druntime","parentType":"","signature":"EM_RL78","url":"/ddoc/druntime/core/sys/elf.html#EM_RL78"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VIDEOCORE5","package":"druntime","parentType":"","signature":"EM_VIDEOCORE5","url":"/ddoc/druntime/core/sys/elf.html#EM_VIDEOCORE5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_78KOR","package":"druntime","parentType":"","signature":"EM_78KOR","url":"/ddoc/druntime/core/sys/elf.html#EM_78KOR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_56800EX","package":"druntime","parentType":"","signature":"EM_56800EX","url":"/ddoc/druntime/core/sys/elf.html#EM_56800EX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_BA1","package":"druntime","parentType":"","signature":"EM_BA1","url":"/ddoc/druntime/core/sys/elf.html#EM_BA1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_BA2","package":"druntime","parentType":"","signature":"EM_BA2","url":"/ddoc/druntime/core/sys/elf.html#EM_BA2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_XCORE","package":"druntime","parentType":"","signature":"EM_XCORE","url":"/ddoc/druntime/core/sys/elf.html#EM_XCORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MCHP_PIC","package":"druntime","parentType":"","signature":"EM_MCHP_PIC","url":"/ddoc/druntime/core/sys/elf.html#EM_MCHP_PIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_INTELGT","package":"druntime","parentType":"","signature":"EM_INTELGT","url":"/ddoc/druntime/core/sys/elf.html#EM_INTELGT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_KM32","package":"druntime","parentType":"","signature":"EM_KM32","url":"/ddoc/druntime/core/sys/elf.html#EM_KM32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_KMX32","package":"druntime","parentType":"","signature":"EM_KMX32","url":"/ddoc/druntime/core/sys/elf.html#EM_KMX32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_EMX16","package":"druntime","parentType":"","signature":"EM_EMX16","url":"/ddoc/druntime/core/sys/elf.html#EM_EMX16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_EMX8","package":"druntime","parentType":"","signature":"EM_EMX8","url":"/ddoc/druntime/core/sys/elf.html#EM_EMX8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_KVARC","package":"druntime","parentType":"","signature":"EM_KVARC","url":"/ddoc/druntime/core/sys/elf.html#EM_KVARC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CDP","package":"druntime","parentType":"","signature":"EM_CDP","url":"/ddoc/druntime/core/sys/elf.html#EM_CDP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_COGE","package":"druntime","parentType":"","signature":"EM_COGE","url":"/ddoc/druntime/core/sys/elf.html#EM_COGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_COOL","package":"druntime","parentType":"","signature":"EM_COOL","url":"/ddoc/druntime/core/sys/elf.html#EM_COOL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NORC","package":"druntime","parentType":"","signature":"EM_NORC","url":"/ddoc/druntime/core/sys/elf.html#EM_NORC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CSR_KALIMBA","package":"druntime","parentType":"","signature":"EM_CSR_KALIMBA","url":"/ddoc/druntime/core/sys/elf.html#EM_CSR_KALIMBA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_Z80","package":"druntime","parentType":"","signature":"EM_Z80","url":"/ddoc/druntime/core/sys/elf.html#EM_Z80"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_VISIUM","package":"druntime","parentType":"","signature":"EM_VISIUM","url":"/ddoc/druntime/core/sys/elf.html#EM_VISIUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_FT32","package":"druntime","parentType":"","signature":"EM_FT32","url":"/ddoc/druntime/core/sys/elf.html#EM_FT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_MOXIE","package":"druntime","parentType":"","signature":"EM_MOXIE","url":"/ddoc/druntime/core/sys/elf.html#EM_MOXIE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_AMDGPU","package":"druntime","parentType":"","signature":"EM_AMDGPU","url":"/ddoc/druntime/core/sys/elf.html#EM_AMDGPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_RISCV","package":"druntime","parentType":"","signature":"EM_RISCV","url":"/ddoc/druntime/core/sys/elf.html#EM_RISCV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_BPF","package":"druntime","parentType":"","signature":"EM_BPF","url":"/ddoc/druntime/core/sys/elf.html#EM_BPF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_CSKY","package":"druntime","parentType":"","signature":"EM_CSKY","url":"/ddoc/druntime/core/sys/elf.html#EM_CSKY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_NUM","package":"druntime","parentType":"","signature":"EM_NUM","url":"/ddoc/druntime/core/sys/elf.html#EM_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_LOONGARCH","package":"druntime","parentType":"","signature":"EM_LOONGARCH","url":"/ddoc/druntime/core/sys/elf.html#EM_LOONGARCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EM_ALPHA","package":"druntime","parentType":"","signature":"EM_ALPHA","url":"/ddoc/druntime/core/sys/elf.html#EM_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EV_NONE","package":"druntime","parentType":"","signature":"EV_NONE","url":"/ddoc/druntime/core/sys/elf.html#EV_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EV_CURRENT","package":"druntime","parentType":"","signature":"EV_CURRENT","url":"/ddoc/druntime/core/sys/elf.html#EV_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EV_NUM","package":"druntime","parentType":"","signature":"EV_NUM","url":"/ddoc/druntime/core/sys/elf.html#EV_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_UNDEF","package":"druntime","parentType":"","signature":"SHN_UNDEF","url":"/ddoc/druntime/core/sys/elf.html#SHN_UNDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_LORESERVE","package":"druntime","parentType":"","signature":"SHN_LORESERVE","url":"/ddoc/druntime/core/sys/elf.html#SHN_LORESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_LOPROC","package":"druntime","parentType":"","signature":"SHN_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#SHN_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_BEFORE","package":"druntime","parentType":"","signature":"SHN_BEFORE","url":"/ddoc/druntime/core/sys/elf.html#SHN_BEFORE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_AFTER","package":"druntime","parentType":"","signature":"SHN_AFTER","url":"/ddoc/druntime/core/sys/elf.html#SHN_AFTER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_HIPROC","package":"druntime","parentType":"","signature":"SHN_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#SHN_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_LOOS","package":"druntime","parentType":"","signature":"SHN_LOOS","url":"/ddoc/druntime/core/sys/elf.html#SHN_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_HIOS","package":"druntime","parentType":"","signature":"SHN_HIOS","url":"/ddoc/druntime/core/sys/elf.html#SHN_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_ABS","package":"druntime","parentType":"","signature":"SHN_ABS","url":"/ddoc/druntime/core/sys/elf.html#SHN_ABS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_COMMON","package":"druntime","parentType":"","signature":"SHN_COMMON","url":"/ddoc/druntime/core/sys/elf.html#SHN_COMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_XINDEX","package":"druntime","parentType":"","signature":"SHN_XINDEX","url":"/ddoc/druntime/core/sys/elf.html#SHN_XINDEX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_HIRESERVE","package":"druntime","parentType":"","signature":"SHN_HIRESERVE","url":"/ddoc/druntime/core/sys/elf.html#SHN_HIRESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_NULL","package":"druntime","parentType":"","signature":"SHT_NULL","url":"/ddoc/druntime/core/sys/elf.html#SHT_NULL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_PROGBITS","package":"druntime","parentType":"","signature":"SHT_PROGBITS","url":"/ddoc/druntime/core/sys/elf.html#SHT_PROGBITS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SYMTAB","package":"druntime","parentType":"","signature":"SHT_SYMTAB","url":"/ddoc/druntime/core/sys/elf.html#SHT_SYMTAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_STRTAB","package":"druntime","parentType":"","signature":"SHT_STRTAB","url":"/ddoc/druntime/core/sys/elf.html#SHT_STRTAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_RELA","package":"druntime","parentType":"","signature":"SHT_RELA","url":"/ddoc/druntime/core/sys/elf.html#SHT_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_HASH","package":"druntime","parentType":"","signature":"SHT_HASH","url":"/ddoc/druntime/core/sys/elf.html#SHT_HASH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_DYNAMIC","package":"druntime","parentType":"","signature":"SHT_DYNAMIC","url":"/ddoc/druntime/core/sys/elf.html#SHT_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_NOTE","package":"druntime","parentType":"","signature":"SHT_NOTE","url":"/ddoc/druntime/core/sys/elf.html#SHT_NOTE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_NOBITS","package":"druntime","parentType":"","signature":"SHT_NOBITS","url":"/ddoc/druntime/core/sys/elf.html#SHT_NOBITS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_REL","package":"druntime","parentType":"","signature":"SHT_REL","url":"/ddoc/druntime/core/sys/elf.html#SHT_REL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SHLIB","package":"druntime","parentType":"","signature":"SHT_SHLIB","url":"/ddoc/druntime/core/sys/elf.html#SHT_SHLIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_DYNSYM","package":"druntime","parentType":"","signature":"SHT_DYNSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_DYNSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_INIT_ARRAY","package":"druntime","parentType":"","signature":"SHT_INIT_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#SHT_INIT_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_FINI_ARRAY","package":"druntime","parentType":"","signature":"SHT_FINI_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#SHT_FINI_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_PREINIT_ARRAY","package":"druntime","parentType":"","signature":"SHT_PREINIT_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#SHT_PREINIT_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GROUP","package":"druntime","parentType":"","signature":"SHT_GROUP","url":"/ddoc/druntime/core/sys/elf.html#SHT_GROUP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SYMTAB_SHNDX","package":"druntime","parentType":"","signature":"SHT_SYMTAB_SHNDX","url":"/ddoc/druntime/core/sys/elf.html#SHT_SYMTAB_SHNDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_NUM","package":"druntime","parentType":"","signature":"SHT_NUM","url":"/ddoc/druntime/core/sys/elf.html#SHT_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_LOOS","package":"druntime","parentType":"","signature":"SHT_LOOS","url":"/ddoc/druntime/core/sys/elf.html#SHT_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_ATTRIBUTES","package":"druntime","parentType":"","signature":"SHT_GNU_ATTRIBUTES","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_HASH","package":"druntime","parentType":"","signature":"SHT_GNU_HASH","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_HASH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_LIBLIST","package":"druntime","parentType":"","signature":"SHT_GNU_LIBLIST","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_LIBLIST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_CHECKSUM","package":"druntime","parentType":"","signature":"SHT_CHECKSUM","url":"/ddoc/druntime/core/sys/elf.html#SHT_CHECKSUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_LOSUNW","package":"druntime","parentType":"","signature":"SHT_LOSUNW","url":"/ddoc/druntime/core/sys/elf.html#SHT_LOSUNW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SUNW_move","package":"druntime","parentType":"","signature":"SHT_SUNW_move","url":"/ddoc/druntime/core/sys/elf.html#SHT_SUNW_move"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SUNW_COMDAT","package":"druntime","parentType":"","signature":"SHT_SUNW_COMDAT","url":"/ddoc/druntime/core/sys/elf.html#SHT_SUNW_COMDAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_SUNW_syminfo","package":"druntime","parentType":"","signature":"SHT_SUNW_syminfo","url":"/ddoc/druntime/core/sys/elf.html#SHT_SUNW_syminfo"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_verdef","package":"druntime","parentType":"","signature":"SHT_GNU_verdef","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_verdef"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_verneed","package":"druntime","parentType":"","signature":"SHT_GNU_verneed","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_verneed"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_GNU_versym","package":"druntime","parentType":"","signature":"SHT_GNU_versym","url":"/ddoc/druntime/core/sys/elf.html#SHT_GNU_versym"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_HISUNW","package":"druntime","parentType":"","signature":"SHT_HISUNW","url":"/ddoc/druntime/core/sys/elf.html#SHT_HISUNW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_HIOS","package":"druntime","parentType":"","signature":"SHT_HIOS","url":"/ddoc/druntime/core/sys/elf.html#SHT_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_LOPROC","package":"druntime","parentType":"","signature":"SHT_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#SHT_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_HIPROC","package":"druntime","parentType":"","signature":"SHT_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#SHT_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_LOUSER","package":"druntime","parentType":"","signature":"SHT_LOUSER","url":"/ddoc/druntime/core/sys/elf.html#SHT_LOUSER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_HIUSER","package":"druntime","parentType":"","signature":"SHT_HIUSER","url":"/ddoc/druntime/core/sys/elf.html#SHT_HIUSER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_WRITE","package":"druntime","parentType":"","signature":"SHF_WRITE","url":"/ddoc/druntime/core/sys/elf.html#SHF_WRITE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_ALLOC","package":"druntime","parentType":"","signature":"SHF_ALLOC","url":"/ddoc/druntime/core/sys/elf.html#SHF_ALLOC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_EXECINSTR","package":"druntime","parentType":"","signature":"SHF_EXECINSTR","url":"/ddoc/druntime/core/sys/elf.html#SHF_EXECINSTR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MERGE","package":"druntime","parentType":"","signature":"SHF_MERGE","url":"/ddoc/druntime/core/sys/elf.html#SHF_MERGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_STRINGS","package":"druntime","parentType":"","signature":"SHF_STRINGS","url":"/ddoc/druntime/core/sys/elf.html#SHF_STRINGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_INFO_LINK","package":"druntime","parentType":"","signature":"SHF_INFO_LINK","url":"/ddoc/druntime/core/sys/elf.html#SHF_INFO_LINK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_LINK_ORDER","package":"druntime","parentType":"","signature":"SHF_LINK_ORDER","url":"/ddoc/druntime/core/sys/elf.html#SHF_LINK_ORDER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_OS_NONCONFORMING","package":"druntime","parentType":"","signature":"SHF_OS_NONCONFORMING","url":"/ddoc/druntime/core/sys/elf.html#SHF_OS_NONCONFORMING"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_GROUP","package":"druntime","parentType":"","signature":"SHF_GROUP","url":"/ddoc/druntime/core/sys/elf.html#SHF_GROUP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_TLS","package":"druntime","parentType":"","signature":"SHF_TLS","url":"/ddoc/druntime/core/sys/elf.html#SHF_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_COMPRESSED","package":"druntime","parentType":"","signature":"SHF_COMPRESSED","url":"/ddoc/druntime/core/sys/elf.html#SHF_COMPRESSED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MASKOS","package":"druntime","parentType":"","signature":"SHF_MASKOS","url":"/ddoc/druntime/core/sys/elf.html#SHF_MASKOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MASKPROC","package":"druntime","parentType":"","signature":"SHF_MASKPROC","url":"/ddoc/druntime/core/sys/elf.html#SHF_MASKPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_ORDERED","package":"druntime","parentType":"","signature":"SHF_ORDERED","url":"/ddoc/druntime/core/sys/elf.html#SHF_ORDERED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_EXCLUDE","package":"druntime","parentType":"","signature":"SHF_EXCLUDE","url":"/ddoc/druntime/core/sys/elf.html#SHF_EXCLUDE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"GRP_COMDAT","package":"druntime","parentType":"","signature":"GRP_COMDAT","url":"/ddoc/druntime/core/sys/elf.html#GRP_COMDAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_BT_SELF","package":"druntime","parentType":"","signature":"SYMINFO_BT_SELF","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_BT_SELF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_BT_PARENT","package":"druntime","parentType":"","signature":"SYMINFO_BT_PARENT","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_BT_PARENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_BT_LOWRESERVE","package":"druntime","parentType":"","signature":"SYMINFO_BT_LOWRESERVE","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_BT_LOWRESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_FLG_DIRECT","package":"druntime","parentType":"","signature":"SYMINFO_FLG_DIRECT","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_FLG_DIRECT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_FLG_PASSTHRU","package":"druntime","parentType":"","signature":"SYMINFO_FLG_PASSTHRU","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_FLG_PASSTHRU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_FLG_COPY","package":"druntime","parentType":"","signature":"SYMINFO_FLG_COPY","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_FLG_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_FLG_LAZYLOAD","package":"druntime","parentType":"","signature":"SYMINFO_FLG_LAZYLOAD","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_FLG_LAZYLOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_NONE","package":"druntime","parentType":"","signature":"SYMINFO_NONE","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_CURRENT","package":"druntime","parentType":"","signature":"SYMINFO_CURRENT","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SYMINFO_NUM","package":"druntime","parentType":"","signature":"SYMINFO_NUM","url":"/ddoc/druntime/core/sys/elf.html#SYMINFO_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_LOCAL","package":"druntime","parentType":"","signature":"STB_LOCAL","url":"/ddoc/druntime/core/sys/elf.html#STB_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_GLOBAL","package":"druntime","parentType":"","signature":"STB_GLOBAL","url":"/ddoc/druntime/core/sys/elf.html#STB_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_WEAK","package":"druntime","parentType":"","signature":"STB_WEAK","url":"/ddoc/druntime/core/sys/elf.html#STB_WEAK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_NUM","package":"druntime","parentType":"","signature":"STB_NUM","url":"/ddoc/druntime/core/sys/elf.html#STB_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_LOOS","package":"druntime","parentType":"","signature":"STB_LOOS","url":"/ddoc/druntime/core/sys/elf.html#STB_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_GNU_UNIQUE","package":"druntime","parentType":"","signature":"STB_GNU_UNIQUE","url":"/ddoc/druntime/core/sys/elf.html#STB_GNU_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_HIOS","package":"druntime","parentType":"","signature":"STB_HIOS","url":"/ddoc/druntime/core/sys/elf.html#STB_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_LOPROC","package":"druntime","parentType":"","signature":"STB_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#STB_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_HIPROC","package":"druntime","parentType":"","signature":"STB_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#STB_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_NOTYPE","package":"druntime","parentType":"","signature":"STT_NOTYPE","url":"/ddoc/druntime/core/sys/elf.html#STT_NOTYPE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_OBJECT","package":"druntime","parentType":"","signature":"STT_OBJECT","url":"/ddoc/druntime/core/sys/elf.html#STT_OBJECT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_FUNC","package":"druntime","parentType":"","signature":"STT_FUNC","url":"/ddoc/druntime/core/sys/elf.html#STT_FUNC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_SECTION","package":"druntime","parentType":"","signature":"STT_SECTION","url":"/ddoc/druntime/core/sys/elf.html#STT_SECTION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_FILE","package":"druntime","parentType":"","signature":"STT_FILE","url":"/ddoc/druntime/core/sys/elf.html#STT_FILE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_COMMON","package":"druntime","parentType":"","signature":"STT_COMMON","url":"/ddoc/druntime/core/sys/elf.html#STT_COMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_TLS","package":"druntime","parentType":"","signature":"STT_TLS","url":"/ddoc/druntime/core/sys/elf.html#STT_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_NUM","package":"druntime","parentType":"","signature":"STT_NUM","url":"/ddoc/druntime/core/sys/elf.html#STT_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_LOOS","package":"druntime","parentType":"","signature":"STT_LOOS","url":"/ddoc/druntime/core/sys/elf.html#STT_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_GNU_IFUNC","package":"druntime","parentType":"","signature":"STT_GNU_IFUNC","url":"/ddoc/druntime/core/sys/elf.html#STT_GNU_IFUNC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_HIOS","package":"druntime","parentType":"","signature":"STT_HIOS","url":"/ddoc/druntime/core/sys/elf.html#STT_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_LOPROC","package":"druntime","parentType":"","signature":"STT_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#STT_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_HIPROC","package":"druntime","parentType":"","signature":"STT_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#STT_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STN_UNDEF","package":"druntime","parentType":"","signature":"STN_UNDEF","url":"/ddoc/druntime/core/sys/elf.html#STN_UNDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STV_DEFAULT","package":"druntime","parentType":"","signature":"STV_DEFAULT","url":"/ddoc/druntime/core/sys/elf.html#STV_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STV_INTERNAL","package":"druntime","parentType":"","signature":"STV_INTERNAL","url":"/ddoc/druntime/core/sys/elf.html#STV_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STV_HIDDEN","package":"druntime","parentType":"","signature":"STV_HIDDEN","url":"/ddoc/druntime/core/sys/elf.html#STV_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STV_PROTECTED","package":"druntime","parentType":"","signature":"STV_PROTECTED","url":"/ddoc/druntime/core/sys/elf.html#STV_PROTECTED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PN_XNUM","package":"druntime","parentType":"","signature":"PN_XNUM","url":"/ddoc/druntime/core/sys/elf.html#PN_XNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_NULL","package":"druntime","parentType":"","signature":"PT_NULL","url":"/ddoc/druntime/core/sys/elf.html#PT_NULL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_LOAD","package":"druntime","parentType":"","signature":"PT_LOAD","url":"/ddoc/druntime/core/sys/elf.html#PT_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_DYNAMIC","package":"druntime","parentType":"","signature":"PT_DYNAMIC","url":"/ddoc/druntime/core/sys/elf.html#PT_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_INTERP","package":"druntime","parentType":"","signature":"PT_INTERP","url":"/ddoc/druntime/core/sys/elf.html#PT_INTERP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_NOTE","package":"druntime","parentType":"","signature":"PT_NOTE","url":"/ddoc/druntime/core/sys/elf.html#PT_NOTE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_SHLIB","package":"druntime","parentType":"","signature":"PT_SHLIB","url":"/ddoc/druntime/core/sys/elf.html#PT_SHLIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_PHDR","package":"druntime","parentType":"","signature":"PT_PHDR","url":"/ddoc/druntime/core/sys/elf.html#PT_PHDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_TLS","package":"druntime","parentType":"","signature":"PT_TLS","url":"/ddoc/druntime/core/sys/elf.html#PT_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_NUM","package":"druntime","parentType":"","signature":"PT_NUM","url":"/ddoc/druntime/core/sys/elf.html#PT_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_LOOS","package":"druntime","parentType":"","signature":"PT_LOOS","url":"/ddoc/druntime/core/sys/elf.html#PT_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_GNU_EH_FRAME","package":"druntime","parentType":"","signature":"PT_GNU_EH_FRAME","url":"/ddoc/druntime/core/sys/elf.html#PT_GNU_EH_FRAME"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_GNU_STACK","package":"druntime","parentType":"","signature":"PT_GNU_STACK","url":"/ddoc/druntime/core/sys/elf.html#PT_GNU_STACK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_GNU_RELRO","package":"druntime","parentType":"","signature":"PT_GNU_RELRO","url":"/ddoc/druntime/core/sys/elf.html#PT_GNU_RELRO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_LOSUNW","package":"druntime","parentType":"","signature":"PT_LOSUNW","url":"/ddoc/druntime/core/sys/elf.html#PT_LOSUNW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_SUNWBSS","package":"druntime","parentType":"","signature":"PT_SUNWBSS","url":"/ddoc/druntime/core/sys/elf.html#PT_SUNWBSS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_SUNWSTACK","package":"druntime","parentType":"","signature":"PT_SUNWSTACK","url":"/ddoc/druntime/core/sys/elf.html#PT_SUNWSTACK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HISUNW","package":"druntime","parentType":"","signature":"PT_HISUNW","url":"/ddoc/druntime/core/sys/elf.html#PT_HISUNW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HIOS","package":"druntime","parentType":"","signature":"PT_HIOS","url":"/ddoc/druntime/core/sys/elf.html#PT_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_LOPROC","package":"druntime","parentType":"","signature":"PT_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#PT_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HIPROC","package":"druntime","parentType":"","signature":"PT_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#PT_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_X","package":"druntime","parentType":"","signature":"PF_X","url":"/ddoc/druntime/core/sys/elf.html#PF_X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_W","package":"druntime","parentType":"","signature":"PF_W","url":"/ddoc/druntime/core/sys/elf.html#PF_W"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_R","package":"druntime","parentType":"","signature":"PF_R","url":"/ddoc/druntime/core/sys/elf.html#PF_R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_MASKOS","package":"druntime","parentType":"","signature":"PF_MASKOS","url":"/ddoc/druntime/core/sys/elf.html#PF_MASKOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_MASKPROC","package":"druntime","parentType":"","signature":"PF_MASKPROC","url":"/ddoc/druntime/core/sys/elf.html#PF_MASKPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_NULL","package":"druntime","parentType":"","signature":"DT_NULL","url":"/ddoc/druntime/core/sys/elf.html#DT_NULL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_NEEDED","package":"druntime","parentType":"","signature":"DT_NEEDED","url":"/ddoc/druntime/core/sys/elf.html#DT_NEEDED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PLTRELSZ","package":"druntime","parentType":"","signature":"DT_PLTRELSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_PLTRELSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PLTGOT","package":"druntime","parentType":"","signature":"DT_PLTGOT","url":"/ddoc/druntime/core/sys/elf.html#DT_PLTGOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_HASH","package":"druntime","parentType":"","signature":"DT_HASH","url":"/ddoc/druntime/core/sys/elf.html#DT_HASH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_STRTAB","package":"druntime","parentType":"","signature":"DT_STRTAB","url":"/ddoc/druntime/core/sys/elf.html#DT_STRTAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMTAB","package":"druntime","parentType":"","signature":"DT_SYMTAB","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMTAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELA","package":"druntime","parentType":"","signature":"DT_RELA","url":"/ddoc/druntime/core/sys/elf.html#DT_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELASZ","package":"druntime","parentType":"","signature":"DT_RELASZ","url":"/ddoc/druntime/core/sys/elf.html#DT_RELASZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELAENT","package":"druntime","parentType":"","signature":"DT_RELAENT","url":"/ddoc/druntime/core/sys/elf.html#DT_RELAENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_STRSZ","package":"druntime","parentType":"","signature":"DT_STRSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_STRSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMENT","package":"druntime","parentType":"","signature":"DT_SYMENT","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_INIT","package":"druntime","parentType":"","signature":"DT_INIT","url":"/ddoc/druntime/core/sys/elf.html#DT_INIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FINI","package":"druntime","parentType":"","signature":"DT_FINI","url":"/ddoc/druntime/core/sys/elf.html#DT_FINI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SONAME","package":"druntime","parentType":"","signature":"DT_SONAME","url":"/ddoc/druntime/core/sys/elf.html#DT_SONAME"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RPATH","package":"druntime","parentType":"","signature":"DT_RPATH","url":"/ddoc/druntime/core/sys/elf.html#DT_RPATH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMBOLIC","package":"druntime","parentType":"","signature":"DT_SYMBOLIC","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMBOLIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_REL","package":"druntime","parentType":"","signature":"DT_REL","url":"/ddoc/druntime/core/sys/elf.html#DT_REL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELSZ","package":"druntime","parentType":"","signature":"DT_RELSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_RELSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELENT","package":"druntime","parentType":"","signature":"DT_RELENT","url":"/ddoc/druntime/core/sys/elf.html#DT_RELENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PLTREL","package":"druntime","parentType":"","signature":"DT_PLTREL","url":"/ddoc/druntime/core/sys/elf.html#DT_PLTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_DEBUG","package":"druntime","parentType":"","signature":"DT_DEBUG","url":"/ddoc/druntime/core/sys/elf.html#DT_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_TEXTREL","package":"druntime","parentType":"","signature":"DT_TEXTREL","url":"/ddoc/druntime/core/sys/elf.html#DT_TEXTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_JMPREL","package":"druntime","parentType":"","signature":"DT_JMPREL","url":"/ddoc/druntime/core/sys/elf.html#DT_JMPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_BIND_NOW","package":"druntime","parentType":"","signature":"DT_BIND_NOW","url":"/ddoc/druntime/core/sys/elf.html#DT_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_INIT_ARRAY","package":"druntime","parentType":"","signature":"DT_INIT_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#DT_INIT_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FINI_ARRAY","package":"druntime","parentType":"","signature":"DT_FINI_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#DT_FINI_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_INIT_ARRAYSZ","package":"druntime","parentType":"","signature":"DT_INIT_ARRAYSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_INIT_ARRAYSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FINI_ARRAYSZ","package":"druntime","parentType":"","signature":"DT_FINI_ARRAYSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_FINI_ARRAYSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RUNPATH","package":"druntime","parentType":"","signature":"DT_RUNPATH","url":"/ddoc/druntime/core/sys/elf.html#DT_RUNPATH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FLAGS","package":"druntime","parentType":"","signature":"DT_FLAGS","url":"/ddoc/druntime/core/sys/elf.html#DT_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ENCODING","package":"druntime","parentType":"","signature":"DT_ENCODING","url":"/ddoc/druntime/core/sys/elf.html#DT_ENCODING"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PREINIT_ARRAY","package":"druntime","parentType":"","signature":"DT_PREINIT_ARRAY","url":"/ddoc/druntime/core/sys/elf.html#DT_PREINIT_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PREINIT_ARRAYSZ","package":"druntime","parentType":"","signature":"DT_PREINIT_ARRAYSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_PREINIT_ARRAYSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_NUM","package":"druntime","parentType":"","signature":"DT_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_LOOS","package":"druntime","parentType":"","signature":"DT_LOOS","url":"/ddoc/druntime/core/sys/elf.html#DT_LOOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_HIOS","package":"druntime","parentType":"","signature":"DT_HIOS","url":"/ddoc/druntime/core/sys/elf.html#DT_HIOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_LOPROC","package":"druntime","parentType":"","signature":"DT_LOPROC","url":"/ddoc/druntime/core/sys/elf.html#DT_LOPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_HIPROC","package":"druntime","parentType":"","signature":"DT_HIPROC","url":"/ddoc/druntime/core/sys/elf.html#DT_HIPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PROCNUM","package":"druntime","parentType":"","signature":"DT_PROCNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_PROCNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VALRNGLO","package":"druntime","parentType":"","signature":"DT_VALRNGLO","url":"/ddoc/druntime/core/sys/elf.html#DT_VALRNGLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_PRELINKED","package":"druntime","parentType":"","signature":"DT_GNU_PRELINKED","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_PRELINKED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_CONFLICTSZ","package":"druntime","parentType":"","signature":"DT_GNU_CONFLICTSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_CONFLICTSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_LIBLISTSZ","package":"druntime","parentType":"","signature":"DT_GNU_LIBLISTSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_LIBLISTSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_CHECKSUM","package":"druntime","parentType":"","signature":"DT_CHECKSUM","url":"/ddoc/druntime/core/sys/elf.html#DT_CHECKSUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PLTPADSZ","package":"druntime","parentType":"","signature":"DT_PLTPADSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_PLTPADSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MOVEENT","package":"druntime","parentType":"","signature":"DT_MOVEENT","url":"/ddoc/druntime/core/sys/elf.html#DT_MOVEENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MOVESZ","package":"druntime","parentType":"","signature":"DT_MOVESZ","url":"/ddoc/druntime/core/sys/elf.html#DT_MOVESZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FEATURE_1","package":"druntime","parentType":"","signature":"DT_FEATURE_1","url":"/ddoc/druntime/core/sys/elf.html#DT_FEATURE_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_POSFLAG_1","package":"druntime","parentType":"","signature":"DT_POSFLAG_1","url":"/ddoc/druntime/core/sys/elf.html#DT_POSFLAG_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMINSZ","package":"druntime","parentType":"","signature":"DT_SYMINSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMINSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMINENT","package":"druntime","parentType":"","signature":"DT_SYMINENT","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMINENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VALRNGHI","package":"druntime","parentType":"","signature":"DT_VALRNGHI","url":"/ddoc/druntime/core/sys/elf.html#DT_VALRNGHI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VALNUM","package":"druntime","parentType":"","signature":"DT_VALNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_VALNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ADDRRNGLO","package":"druntime","parentType":"","signature":"DT_ADDRRNGLO","url":"/ddoc/druntime/core/sys/elf.html#DT_ADDRRNGLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_HASH","package":"druntime","parentType":"","signature":"DT_GNU_HASH","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_HASH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_TLSDESC_PLT","package":"druntime","parentType":"","signature":"DT_TLSDESC_PLT","url":"/ddoc/druntime/core/sys/elf.html#DT_TLSDESC_PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_TLSDESC_GOT","package":"druntime","parentType":"","signature":"DT_TLSDESC_GOT","url":"/ddoc/druntime/core/sys/elf.html#DT_TLSDESC_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_CONFLICT","package":"druntime","parentType":"","signature":"DT_GNU_CONFLICT","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_CONFLICT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_GNU_LIBLIST","package":"druntime","parentType":"","signature":"DT_GNU_LIBLIST","url":"/ddoc/druntime/core/sys/elf.html#DT_GNU_LIBLIST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_CONFIG","package":"druntime","parentType":"","signature":"DT_CONFIG","url":"/ddoc/druntime/core/sys/elf.html#DT_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_DEPAUDIT","package":"druntime","parentType":"","signature":"DT_DEPAUDIT","url":"/ddoc/druntime/core/sys/elf.html#DT_DEPAUDIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_AUDIT","package":"druntime","parentType":"","signature":"DT_AUDIT","url":"/ddoc/druntime/core/sys/elf.html#DT_AUDIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PLTPAD","package":"druntime","parentType":"","signature":"DT_PLTPAD","url":"/ddoc/druntime/core/sys/elf.html#DT_PLTPAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MOVETAB","package":"druntime","parentType":"","signature":"DT_MOVETAB","url":"/ddoc/druntime/core/sys/elf.html#DT_MOVETAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SYMINFO","package":"druntime","parentType":"","signature":"DT_SYMINFO","url":"/ddoc/druntime/core/sys/elf.html#DT_SYMINFO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ADDRRNGHI","package":"druntime","parentType":"","signature":"DT_ADDRRNGHI","url":"/ddoc/druntime/core/sys/elf.html#DT_ADDRRNGHI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ADDRNUM","package":"druntime","parentType":"","signature":"DT_ADDRNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_ADDRNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERSYM","package":"druntime","parentType":"","signature":"DT_VERSYM","url":"/ddoc/druntime/core/sys/elf.html#DT_VERSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELACOUNT","package":"druntime","parentType":"","signature":"DT_RELACOUNT","url":"/ddoc/druntime/core/sys/elf.html#DT_RELACOUNT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_RELCOUNT","package":"druntime","parentType":"","signature":"DT_RELCOUNT","url":"/ddoc/druntime/core/sys/elf.html#DT_RELCOUNT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FLAGS_1","package":"druntime","parentType":"","signature":"DT_FLAGS_1","url":"/ddoc/druntime/core/sys/elf.html#DT_FLAGS_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERDEF","package":"druntime","parentType":"","signature":"DT_VERDEF","url":"/ddoc/druntime/core/sys/elf.html#DT_VERDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERDEFNUM","package":"druntime","parentType":"","signature":"DT_VERDEFNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_VERDEFNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERNEED","package":"druntime","parentType":"","signature":"DT_VERNEED","url":"/ddoc/druntime/core/sys/elf.html#DT_VERNEED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERNEEDNUM","package":"druntime","parentType":"","signature":"DT_VERNEEDNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_VERNEEDNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_VERSIONTAGNUM","package":"druntime","parentType":"","signature":"DT_VERSIONTAGNUM","url":"/ddoc/druntime/core/sys/elf.html#DT_VERSIONTAGNUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_AUXILIARY","package":"druntime","parentType":"","signature":"DT_AUXILIARY","url":"/ddoc/druntime/core/sys/elf.html#DT_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_FILTER","package":"druntime","parentType":"","signature":"DT_FILTER","url":"/ddoc/druntime/core/sys/elf.html#DT_FILTER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_EXTRANUM","package":"druntime","parentType":"","signature":"DT_EXTRANUM","url":"/ddoc/druntime/core/sys/elf.html#DT_EXTRANUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_ORIGIN","package":"druntime","parentType":"","signature":"DF_ORIGIN","url":"/ddoc/druntime/core/sys/elf.html#DF_ORIGIN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_SYMBOLIC","package":"druntime","parentType":"","signature":"DF_SYMBOLIC","url":"/ddoc/druntime/core/sys/elf.html#DF_SYMBOLIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_TEXTREL","package":"druntime","parentType":"","signature":"DF_TEXTREL","url":"/ddoc/druntime/core/sys/elf.html#DF_TEXTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_BIND_NOW","package":"druntime","parentType":"","signature":"DF_BIND_NOW","url":"/ddoc/druntime/core/sys/elf.html#DF_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_STATIC_TLS","package":"druntime","parentType":"","signature":"DF_STATIC_TLS","url":"/ddoc/druntime/core/sys/elf.html#DF_STATIC_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NOW","package":"druntime","parentType":"","signature":"DF_1_NOW","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NOW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_GLOBAL","package":"druntime","parentType":"","signature":"DF_1_GLOBAL","url":"/ddoc/druntime/core/sys/elf.html#DF_1_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_GROUP","package":"druntime","parentType":"","signature":"DF_1_GROUP","url":"/ddoc/druntime/core/sys/elf.html#DF_1_GROUP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NODELETE","package":"druntime","parentType":"","signature":"DF_1_NODELETE","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NODELETE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_LOADFLTR","package":"druntime","parentType":"","signature":"DF_1_LOADFLTR","url":"/ddoc/druntime/core/sys/elf.html#DF_1_LOADFLTR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_INITFIRST","package":"druntime","parentType":"","signature":"DF_1_INITFIRST","url":"/ddoc/druntime/core/sys/elf.html#DF_1_INITFIRST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NOOPEN","package":"druntime","parentType":"","signature":"DF_1_NOOPEN","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NOOPEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_ORIGIN","package":"druntime","parentType":"","signature":"DF_1_ORIGIN","url":"/ddoc/druntime/core/sys/elf.html#DF_1_ORIGIN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_DIRECT","package":"druntime","parentType":"","signature":"DF_1_DIRECT","url":"/ddoc/druntime/core/sys/elf.html#DF_1_DIRECT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_TRANS","package":"druntime","parentType":"","signature":"DF_1_TRANS","url":"/ddoc/druntime/core/sys/elf.html#DF_1_TRANS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_INTERPOSE","package":"druntime","parentType":"","signature":"DF_1_INTERPOSE","url":"/ddoc/druntime/core/sys/elf.html#DF_1_INTERPOSE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NODEFLIB","package":"druntime","parentType":"","signature":"DF_1_NODEFLIB","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NODEFLIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NODUMP","package":"druntime","parentType":"","signature":"DF_1_NODUMP","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NODUMP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_CONFALT","package":"druntime","parentType":"","signature":"DF_1_CONFALT","url":"/ddoc/druntime/core/sys/elf.html#DF_1_CONFALT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_ENDFILTEE","package":"druntime","parentType":"","signature":"DF_1_ENDFILTEE","url":"/ddoc/druntime/core/sys/elf.html#DF_1_ENDFILTEE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_DISPRELDNE","package":"druntime","parentType":"","signature":"DF_1_DISPRELDNE","url":"/ddoc/druntime/core/sys/elf.html#DF_1_DISPRELDNE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_DISPRELPND","package":"druntime","parentType":"","signature":"DF_1_DISPRELPND","url":"/ddoc/druntime/core/sys/elf.html#DF_1_DISPRELPND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NODIRECT","package":"druntime","parentType":"","signature":"DF_1_NODIRECT","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NODIRECT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_IGNMULDEF","package":"druntime","parentType":"","signature":"DF_1_IGNMULDEF","url":"/ddoc/druntime/core/sys/elf.html#DF_1_IGNMULDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NOKSYMS","package":"druntime","parentType":"","signature":"DF_1_NOKSYMS","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NOKSYMS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NOHDR","package":"druntime","parentType":"","signature":"DF_1_NOHDR","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NOHDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_EDITED","package":"druntime","parentType":"","signature":"DF_1_EDITED","url":"/ddoc/druntime/core/sys/elf.html#DF_1_EDITED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_NORELOC","package":"druntime","parentType":"","signature":"DF_1_NORELOC","url":"/ddoc/druntime/core/sys/elf.html#DF_1_NORELOC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_SYMINTPOSE","package":"druntime","parentType":"","signature":"DF_1_SYMINTPOSE","url":"/ddoc/druntime/core/sys/elf.html#DF_1_SYMINTPOSE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_GLOBAUDIT","package":"druntime","parentType":"","signature":"DF_1_GLOBAUDIT","url":"/ddoc/druntime/core/sys/elf.html#DF_1_GLOBAUDIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_1_SINGLETON","package":"druntime","parentType":"","signature":"DF_1_SINGLETON","url":"/ddoc/druntime/core/sys/elf.html#DF_1_SINGLETON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DTF_1_PARINIT","package":"druntime","parentType":"","signature":"DTF_1_PARINIT","url":"/ddoc/druntime/core/sys/elf.html#DTF_1_PARINIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DTF_1_CONFEXP","package":"druntime","parentType":"","signature":"DTF_1_CONFEXP","url":"/ddoc/druntime/core/sys/elf.html#DTF_1_CONFEXP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_P1_LAZYLOAD","package":"druntime","parentType":"","signature":"DF_P1_LAZYLOAD","url":"/ddoc/druntime/core/sys/elf.html#DF_P1_LAZYLOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DF_P1_GROUPPERM","package":"druntime","parentType":"","signature":"DF_P1_GROUPPERM","url":"/ddoc/druntime/core/sys/elf.html#DF_P1_GROUPPERM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_DEF_NONE","package":"druntime","parentType":"","signature":"VER_DEF_NONE","url":"/ddoc/druntime/core/sys/elf.html#VER_DEF_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_DEF_CURRENT","package":"druntime","parentType":"","signature":"VER_DEF_CURRENT","url":"/ddoc/druntime/core/sys/elf.html#VER_DEF_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_DEF_NUM","package":"druntime","parentType":"","signature":"VER_DEF_NUM","url":"/ddoc/druntime/core/sys/elf.html#VER_DEF_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_FLG_BASE","package":"druntime","parentType":"","signature":"VER_FLG_BASE","url":"/ddoc/druntime/core/sys/elf.html#VER_FLG_BASE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_FLG_WEAK","package":"druntime","parentType":"","signature":"VER_FLG_WEAK","url":"/ddoc/druntime/core/sys/elf.html#VER_FLG_WEAK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NDX_LOCAL","package":"druntime","parentType":"","signature":"VER_NDX_LOCAL","url":"/ddoc/druntime/core/sys/elf.html#VER_NDX_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NDX_GLOBAL","package":"druntime","parentType":"","signature":"VER_NDX_GLOBAL","url":"/ddoc/druntime/core/sys/elf.html#VER_NDX_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NDX_LORESERVE","package":"druntime","parentType":"","signature":"VER_NDX_LORESERVE","url":"/ddoc/druntime/core/sys/elf.html#VER_NDX_LORESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NDX_ELIMINATE","package":"druntime","parentType":"","signature":"VER_NDX_ELIMINATE","url":"/ddoc/druntime/core/sys/elf.html#VER_NDX_ELIMINATE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NEED_NONE","package":"druntime","parentType":"","signature":"VER_NEED_NONE","url":"/ddoc/druntime/core/sys/elf.html#VER_NEED_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NEED_CURRENT","package":"druntime","parentType":"","signature":"VER_NEED_CURRENT","url":"/ddoc/druntime/core/sys/elf.html#VER_NEED_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"VER_NEED_NUM","package":"druntime","parentType":"","signature":"VER_NEED_NUM","url":"/ddoc/druntime/core/sys/elf.html#VER_NEED_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_SOLARIS","package":"druntime","parentType":"","signature":"ELF_NOTE_SOLARIS","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_SOLARIS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_GNU","package":"druntime","parentType":"","signature":"ELF_NOTE_GNU","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_GNU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_PAGESIZE_HINT","package":"druntime","parentType":"","signature":"ELF_NOTE_PAGESIZE_HINT","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_PAGESIZE_HINT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_ABI","package":"druntime","parentType":"","signature":"ELF_NOTE_ABI","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_ABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_OS_LINUX","package":"druntime","parentType":"","signature":"ELF_NOTE_OS_LINUX","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_OS_LINUX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_OS_GNU","package":"druntime","parentType":"","signature":"ELF_NOTE_OS_GNU","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_OS_GNU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_OS_SOLARIS2","package":"druntime","parentType":"","signature":"ELF_NOTE_OS_SOLARIS2","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_OS_SOLARIS2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ELF_NOTE_OS_FREEBSD","package":"druntime","parentType":"","signature":"ELF_NOTE_OS_FREEBSD","url":"/ddoc/druntime/core/sys/elf.html#ELF_NOTE_OS_FREEBSD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_CPU32","package":"druntime","parentType":"","signature":"EF_CPU32","url":"/ddoc/druntime/core/sys/elf.html#EF_CPU32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_NONE","package":"druntime","parentType":"","signature":"R_68K_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_68K_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_32","package":"druntime","parentType":"","signature":"R_68K_32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_16","package":"druntime","parentType":"","signature":"R_68K_16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_8","package":"druntime","parentType":"","signature":"R_68K_8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PC32","package":"druntime","parentType":"","signature":"R_68K_PC32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PC16","package":"druntime","parentType":"","signature":"R_68K_PC16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PC8","package":"druntime","parentType":"","signature":"R_68K_PC8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PC8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT32","package":"druntime","parentType":"","signature":"R_68K_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT16","package":"druntime","parentType":"","signature":"R_68K_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT8","package":"druntime","parentType":"","signature":"R_68K_GOT8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT32O","package":"druntime","parentType":"","signature":"R_68K_GOT32O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT32O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT16O","package":"druntime","parentType":"","signature":"R_68K_GOT16O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT16O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GOT8O","package":"druntime","parentType":"","signature":"R_68K_GOT8O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GOT8O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT32","package":"druntime","parentType":"","signature":"R_68K_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT16","package":"druntime","parentType":"","signature":"R_68K_PLT16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT8","package":"druntime","parentType":"","signature":"R_68K_PLT8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT32O","package":"druntime","parentType":"","signature":"R_68K_PLT32O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT32O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT16O","package":"druntime","parentType":"","signature":"R_68K_PLT16O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT16O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_PLT8O","package":"druntime","parentType":"","signature":"R_68K_PLT8O","url":"/ddoc/druntime/core/sys/elf.html#R_68K_PLT8O"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_COPY","package":"druntime","parentType":"","signature":"R_68K_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_68K_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_GLOB_DAT","package":"druntime","parentType":"","signature":"R_68K_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_68K_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_JMP_SLOT","package":"druntime","parentType":"","signature":"R_68K_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_68K_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_RELATIVE","package":"druntime","parentType":"","signature":"R_68K_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_68K_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_GD32","package":"druntime","parentType":"","signature":"R_68K_TLS_GD32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_GD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_GD16","package":"druntime","parentType":"","signature":"R_68K_TLS_GD16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_GD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_GD8","package":"druntime","parentType":"","signature":"R_68K_TLS_GD8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_GD8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDM32","package":"druntime","parentType":"","signature":"R_68K_TLS_LDM32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDM32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDM16","package":"druntime","parentType":"","signature":"R_68K_TLS_LDM16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDM16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDM8","package":"druntime","parentType":"","signature":"R_68K_TLS_LDM8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDM8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDO32","package":"druntime","parentType":"","signature":"R_68K_TLS_LDO32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDO32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDO16","package":"druntime","parentType":"","signature":"R_68K_TLS_LDO16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LDO8","package":"druntime","parentType":"","signature":"R_68K_TLS_LDO8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LDO8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_IE32","package":"druntime","parentType":"","signature":"R_68K_TLS_IE32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_IE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_IE16","package":"druntime","parentType":"","signature":"R_68K_TLS_IE16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_IE16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_IE8","package":"druntime","parentType":"","signature":"R_68K_TLS_IE8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_IE8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LE32","package":"druntime","parentType":"","signature":"R_68K_TLS_LE32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LE16","package":"druntime","parentType":"","signature":"R_68K_TLS_LE16","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LE16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_LE8","package":"druntime","parentType":"","signature":"R_68K_TLS_LE8","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_LE8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_68K_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_DTPREL32","package":"druntime","parentType":"","signature":"R_68K_TLS_DTPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_DTPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_TLS_TPREL32","package":"druntime","parentType":"","signature":"R_68K_TLS_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_68K_TLS_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_68K_NUM","package":"druntime","parentType":"","signature":"R_68K_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_68K_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_NONE","package":"druntime","parentType":"","signature":"R_386_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_386_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_32","package":"druntime","parentType":"","signature":"R_386_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_PC32","package":"druntime","parentType":"","signature":"R_386_PC32","url":"/ddoc/druntime/core/sys/elf.html#R_386_PC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_GOT32","package":"druntime","parentType":"","signature":"R_386_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_386_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_PLT32","package":"druntime","parentType":"","signature":"R_386_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_386_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_COPY","package":"druntime","parentType":"","signature":"R_386_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_386_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_GLOB_DAT","package":"druntime","parentType":"","signature":"R_386_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_386_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_JMP_SLOT","package":"druntime","parentType":"","signature":"R_386_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_386_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_RELATIVE","package":"druntime","parentType":"","signature":"R_386_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_386_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_GOTOFF","package":"druntime","parentType":"","signature":"R_386_GOTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_386_GOTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_GOTPC","package":"druntime","parentType":"","signature":"R_386_GOTPC","url":"/ddoc/druntime/core/sys/elf.html#R_386_GOTPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_32PLT","package":"druntime","parentType":"","signature":"R_386_32PLT","url":"/ddoc/druntime/core/sys/elf.html#R_386_32PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_TPOFF","package":"druntime","parentType":"","signature":"R_386_TLS_TPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_TPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_IE","package":"druntime","parentType":"","signature":"R_386_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GOTIE","package":"druntime","parentType":"","signature":"R_386_TLS_GOTIE","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GOTIE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LE","package":"druntime","parentType":"","signature":"R_386_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GD","package":"druntime","parentType":"","signature":"R_386_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDM","package":"druntime","parentType":"","signature":"R_386_TLS_LDM","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_16","package":"druntime","parentType":"","signature":"R_386_16","url":"/ddoc/druntime/core/sys/elf.html#R_386_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_PC16","package":"druntime","parentType":"","signature":"R_386_PC16","url":"/ddoc/druntime/core/sys/elf.html#R_386_PC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_8","package":"druntime","parentType":"","signature":"R_386_8","url":"/ddoc/druntime/core/sys/elf.html#R_386_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_PC8","package":"druntime","parentType":"","signature":"R_386_PC8","url":"/ddoc/druntime/core/sys/elf.html#R_386_PC8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GD_32","package":"druntime","parentType":"","signature":"R_386_TLS_GD_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GD_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GD_PUSH","package":"druntime","parentType":"","signature":"R_386_TLS_GD_PUSH","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GD_PUSH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GD_CALL","package":"druntime","parentType":"","signature":"R_386_TLS_GD_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GD_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GD_POP","package":"druntime","parentType":"","signature":"R_386_TLS_GD_POP","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GD_POP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDM_32","package":"druntime","parentType":"","signature":"R_386_TLS_LDM_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDM_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDM_PUSH","package":"druntime","parentType":"","signature":"R_386_TLS_LDM_PUSH","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDM_PUSH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDM_CALL","package":"druntime","parentType":"","signature":"R_386_TLS_LDM_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDM_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDM_POP","package":"druntime","parentType":"","signature":"R_386_TLS_LDM_POP","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDM_POP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LDO_32","package":"druntime","parentType":"","signature":"R_386_TLS_LDO_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LDO_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_IE_32","package":"druntime","parentType":"","signature":"R_386_TLS_IE_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_IE_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_LE_32","package":"druntime","parentType":"","signature":"R_386_TLS_LE_32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_LE_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_386_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_386_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_386_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_SIZE32","package":"druntime","parentType":"","signature":"R_386_SIZE32","url":"/ddoc/druntime/core/sys/elf.html#R_386_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_GOTDESC","package":"druntime","parentType":"","signature":"R_386_TLS_GOTDESC","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_GOTDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_DESC_CALL","package":"druntime","parentType":"","signature":"R_386_TLS_DESC_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_DESC_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_TLS_DESC","package":"druntime","parentType":"","signature":"R_386_TLS_DESC","url":"/ddoc/druntime/core/sys/elf.html#R_386_TLS_DESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_IRELATIVE","package":"druntime","parentType":"","signature":"R_386_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_386_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_386_NUM","package":"druntime","parentType":"","signature":"R_386_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_386_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_SPARC_REGISTER","package":"druntime","parentType":"","signature":"STT_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/elf.html#STT_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARCV9_MM","package":"druntime","parentType":"","signature":"EF_SPARCV9_MM","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARCV9_MM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARCV9_TSO","package":"druntime","parentType":"","signature":"EF_SPARCV9_TSO","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARCV9_TSO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARCV9_PSO","package":"druntime","parentType":"","signature":"EF_SPARCV9_PSO","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARCV9_PSO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARCV9_RMO","package":"druntime","parentType":"","signature":"EF_SPARCV9_RMO","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARCV9_RMO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_LEDATA","package":"druntime","parentType":"","signature":"EF_SPARC_LEDATA","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_LEDATA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_EXT_MASK","package":"druntime","parentType":"","signature":"EF_SPARC_EXT_MASK","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_EXT_MASK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_32PLUS","package":"druntime","parentType":"","signature":"EF_SPARC_32PLUS","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_32PLUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_SUN_US1","package":"druntime","parentType":"","signature":"EF_SPARC_SUN_US1","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_SUN_US1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_HAL_R1","package":"druntime","parentType":"","signature":"EF_SPARC_HAL_R1","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_HAL_R1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SPARC_SUN_US3","package":"druntime","parentType":"","signature":"EF_SPARC_SUN_US3","url":"/ddoc/druntime/core/sys/elf.html#EF_SPARC_SUN_US3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_NONE","package":"druntime","parentType":"","signature":"R_SPARC_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_8","package":"druntime","parentType":"","signature":"R_SPARC_8","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_16","package":"druntime","parentType":"","signature":"R_SPARC_16","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_32","package":"druntime","parentType":"","signature":"R_SPARC_32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_DISP8","package":"druntime","parentType":"","signature":"R_SPARC_DISP8","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_DISP8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_DISP16","package":"druntime","parentType":"","signature":"R_SPARC_DISP16","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_DISP16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_DISP32","package":"druntime","parentType":"","signature":"R_SPARC_DISP32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_DISP32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WDISP30","package":"druntime","parentType":"","signature":"R_SPARC_WDISP30","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WDISP30"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WDISP22","package":"druntime","parentType":"","signature":"R_SPARC_WDISP22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WDISP22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_HI22","package":"druntime","parentType":"","signature":"R_SPARC_HI22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_HI22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_22","package":"druntime","parentType":"","signature":"R_SPARC_22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_13","package":"druntime","parentType":"","signature":"R_SPARC_13","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_13"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_LO10","package":"druntime","parentType":"","signature":"R_SPARC_LO10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_LO10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOT10","package":"druntime","parentType":"","signature":"R_SPARC_GOT10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOT10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOT13","package":"druntime","parentType":"","signature":"R_SPARC_GOT13","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOT13"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOT22","package":"druntime","parentType":"","signature":"R_SPARC_GOT22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOT22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PC10","package":"druntime","parentType":"","signature":"R_SPARC_PC10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PC10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PC22","package":"druntime","parentType":"","signature":"R_SPARC_PC22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PC22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WPLT30","package":"druntime","parentType":"","signature":"R_SPARC_WPLT30","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WPLT30"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_COPY","package":"druntime","parentType":"","signature":"R_SPARC_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GLOB_DAT","package":"druntime","parentType":"","signature":"R_SPARC_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_JMP_SLOT","package":"druntime","parentType":"","signature":"R_SPARC_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_RELATIVE","package":"druntime","parentType":"","signature":"R_SPARC_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_UA32","package":"druntime","parentType":"","signature":"R_SPARC_UA32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_UA32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PLT32","package":"druntime","parentType":"","signature":"R_SPARC_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_HIPLT22","package":"druntime","parentType":"","signature":"R_SPARC_HIPLT22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_HIPLT22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_LOPLT10","package":"druntime","parentType":"","signature":"R_SPARC_LOPLT10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_LOPLT10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PCPLT32","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PCPLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PCPLT22","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PCPLT22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PCPLT10","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PCPLT10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_10","package":"druntime","parentType":"","signature":"R_SPARC_10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_11","package":"druntime","parentType":"","signature":"R_SPARC_11","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_11"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_64","package":"druntime","parentType":"","signature":"R_SPARC_64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_OLO10","package":"druntime","parentType":"","signature":"R_SPARC_OLO10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_OLO10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_HH22","package":"druntime","parentType":"","signature":"R_SPARC_HH22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_HH22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_HM10","package":"druntime","parentType":"","signature":"R_SPARC_HM10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_HM10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_LM22","package":"druntime","parentType":"","signature":"R_SPARC_LM22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_LM22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PC_HH22","package":"druntime","parentType":"","signature":"R_SPARC_PC_HH22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PC_HH22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PC_HM10","package":"druntime","parentType":"","signature":"R_SPARC_PC_HM10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PC_HM10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PC_LM22","package":"druntime","parentType":"","signature":"R_SPARC_PC_LM22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PC_LM22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WDISP16","package":"druntime","parentType":"","signature":"R_SPARC_WDISP16","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WDISP16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WDISP19","package":"druntime","parentType":"","signature":"R_SPARC_WDISP19","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WDISP19"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GLOB_JMP","package":"druntime","parentType":"","signature":"R_SPARC_GLOB_JMP","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GLOB_JMP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_7","package":"druntime","parentType":"","signature":"R_SPARC_7","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_7"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_5","package":"druntime","parentType":"","signature":"R_SPARC_5","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_6","package":"druntime","parentType":"","signature":"R_SPARC_6","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_6"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_DISP64","package":"druntime","parentType":"","signature":"R_SPARC_DISP64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_DISP64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_PLT64","package":"druntime","parentType":"","signature":"R_SPARC_PLT64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_PLT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_HIX22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_HIX22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_LOX10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_LOX10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_H44","package":"druntime","parentType":"","signature":"R_SPARC_H44","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_H44"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_M44","package":"druntime","parentType":"","signature":"R_SPARC_M44","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_M44"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_L44","package":"druntime","parentType":"","signature":"R_SPARC_L44","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_L44"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_REGISTER","package":"druntime","parentType":"","signature":"R_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_UA64","package":"druntime","parentType":"","signature":"R_SPARC_UA64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_UA64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_UA16","package":"druntime","parentType":"","signature":"R_SPARC_UA16","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_UA16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_GD_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_HI22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_GD_HI22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_GD_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_LO10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_GD_LO10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_GD_CALL","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_GD_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDM_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_HI22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDM_HI22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDM_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_LO10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDM_LO10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDM_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDM_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDM_CALL","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDM_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDO_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_HIX22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDO_HIX22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDO_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_LOX10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDO_LOX10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LDO_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LDO_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_IE_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_HI22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_IE_HI22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_IE_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LO10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_IE_LO10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_IE_LD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LD","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_IE_LD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_IE_LDX","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LDX","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_IE_LDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_IE_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_IE_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LE_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LE_HIX22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LE_HIX22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_LE_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LE_LOX10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_LE_LOX10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_DTPOFF64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_TLS_TPOFF64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_TPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_TLS_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOTDATA_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_HIX22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOTDATA_HIX22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOTDATA_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_LOX10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOTDATA_LOX10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOTDATA_OP_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP_HIX22","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOTDATA_OP_HIX22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOTDATA_OP_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP_LOX10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOTDATA_OP_LOX10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GOTDATA_OP","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GOTDATA_OP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_H34","package":"druntime","parentType":"","signature":"R_SPARC_H34","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_H34"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_SIZE32","package":"druntime","parentType":"","signature":"R_SPARC_SIZE32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_SIZE64","package":"druntime","parentType":"","signature":"R_SPARC_SIZE64","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_SIZE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_WDISP10","package":"druntime","parentType":"","signature":"R_SPARC_WDISP10","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_WDISP10"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_JMP_IREL","package":"druntime","parentType":"","signature":"R_SPARC_JMP_IREL","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_JMP_IREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_IRELATIVE","package":"druntime","parentType":"","signature":"R_SPARC_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_SPARC_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_SPARC_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_REV32","package":"druntime","parentType":"","signature":"R_SPARC_REV32","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_REV32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SPARC_NUM","package":"druntime","parentType":"","signature":"R_SPARC_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_SPARC_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SPARC_REGISTER","package":"druntime","parentType":"","signature":"DT_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/elf.html#DT_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_SPARC_NUM","package":"druntime","parentType":"","signature":"DT_SPARC_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_SPARC_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_NOREORDER","package":"druntime","parentType":"","signature":"EF_MIPS_NOREORDER","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_NOREORDER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_PIC","package":"druntime","parentType":"","signature":"EF_MIPS_PIC","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_PIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_CPIC","package":"druntime","parentType":"","signature":"EF_MIPS_CPIC","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_CPIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_XGOT","package":"druntime","parentType":"","signature":"EF_MIPS_XGOT","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_XGOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_64BIT_WHIRL","package":"druntime","parentType":"","signature":"EF_MIPS_64BIT_WHIRL","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_64BIT_WHIRL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ABI2","package":"druntime","parentType":"","signature":"EF_MIPS_ABI2","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ABI2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ABI_ON32","package":"druntime","parentType":"","signature":"EF_MIPS_ABI_ON32","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ABI_ON32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_1","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_1","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_2","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_2","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_3","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_3","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_4","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_4","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_4"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_5","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_5","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_32","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_32","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_64","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_64","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_32R2","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_32R2","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_32R2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_MIPS_ARCH_64R2","package":"druntime","parentType":"","signature":"EF_MIPS_ARCH_64R2","url":"/ddoc/druntime/core/sys/elf.html#EF_MIPS_ARCH_64R2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_1","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_1","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_2","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_2","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_3","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_3","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_4","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_4","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_4"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_5","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_5","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_32","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_32","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"E_MIPS_ARCH_64","package":"druntime","parentType":"","signature":"E_MIPS_ARCH_64","url":"/ddoc/druntime/core/sys/elf.html#E_MIPS_ARCH_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_MIPS_ACOMMON","package":"druntime","parentType":"","signature":"SHN_MIPS_ACOMMON","url":"/ddoc/druntime/core/sys/elf.html#SHN_MIPS_ACOMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_MIPS_TEXT","package":"druntime","parentType":"","signature":"SHN_MIPS_TEXT","url":"/ddoc/druntime/core/sys/elf.html#SHN_MIPS_TEXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_MIPS_DATA","package":"druntime","parentType":"","signature":"SHN_MIPS_DATA","url":"/ddoc/druntime/core/sys/elf.html#SHN_MIPS_DATA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_MIPS_SCOMMON","package":"druntime","parentType":"","signature":"SHN_MIPS_SCOMMON","url":"/ddoc/druntime/core/sys/elf.html#SHN_MIPS_SCOMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_MIPS_SUNDEFINED","package":"druntime","parentType":"","signature":"SHN_MIPS_SUNDEFINED","url":"/ddoc/druntime/core/sys/elf.html#SHN_MIPS_SUNDEFINED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_LIBLIST","package":"druntime","parentType":"","signature":"SHT_MIPS_LIBLIST","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_LIBLIST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_MSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_MSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_MSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_CONFLICT","package":"druntime","parentType":"","signature":"SHT_MIPS_CONFLICT","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_CONFLICT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_GPTAB","package":"druntime","parentType":"","signature":"SHT_MIPS_GPTAB","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_GPTAB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_UCODE","package":"druntime","parentType":"","signature":"SHT_MIPS_UCODE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_UCODE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DEBUG","package":"druntime","parentType":"","signature":"SHT_MIPS_DEBUG","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_REGINFO","package":"druntime","parentType":"","signature":"SHT_MIPS_REGINFO","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_REGINFO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_PACKAGE","package":"druntime","parentType":"","signature":"SHT_MIPS_PACKAGE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_PACKAGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_PACKSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_PACKSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_PACKSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_RELD","package":"druntime","parentType":"","signature":"SHT_MIPS_RELD","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_RELD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_IFACE","package":"druntime","parentType":"","signature":"SHT_MIPS_IFACE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_IFACE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_CONTENT","package":"druntime","parentType":"","signature":"SHT_MIPS_CONTENT","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_CONTENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_OPTIONS","package":"druntime","parentType":"","signature":"SHT_MIPS_OPTIONS","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_SHDR","package":"druntime","parentType":"","signature":"SHT_MIPS_SHDR","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_SHDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_FDESC","package":"druntime","parentType":"","signature":"SHT_MIPS_FDESC","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_FDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_EXTSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_EXTSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_EXTSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DENSE","package":"druntime","parentType":"","signature":"SHT_MIPS_DENSE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DENSE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_PDESC","package":"druntime","parentType":"","signature":"SHT_MIPS_PDESC","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_PDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_LOCSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_LOCSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_LOCSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_AUXSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_AUXSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_AUXSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_OPTSYM","package":"druntime","parentType":"","signature":"SHT_MIPS_OPTSYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_OPTSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_LOCSTR","package":"druntime","parentType":"","signature":"SHT_MIPS_LOCSTR","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_LOCSTR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_LINE","package":"druntime","parentType":"","signature":"SHT_MIPS_LINE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_LINE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_RFDESC","package":"druntime","parentType":"","signature":"SHT_MIPS_RFDESC","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_RFDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DELTASYM","package":"druntime","parentType":"","signature":"SHT_MIPS_DELTASYM","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DELTASYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DELTAINST","package":"druntime","parentType":"","signature":"SHT_MIPS_DELTAINST","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DELTAINST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DELTACLASS","package":"druntime","parentType":"","signature":"SHT_MIPS_DELTACLASS","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DELTACLASS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DWARF","package":"druntime","parentType":"","signature":"SHT_MIPS_DWARF","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DWARF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_DELTADECL","package":"druntime","parentType":"","signature":"SHT_MIPS_DELTADECL","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_DELTADECL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_SYMBOL_LIB","package":"druntime","parentType":"","signature":"SHT_MIPS_SYMBOL_LIB","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_SYMBOL_LIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_EVENTS","package":"druntime","parentType":"","signature":"SHT_MIPS_EVENTS","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_EVENTS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_TRANSLATE","package":"druntime","parentType":"","signature":"SHT_MIPS_TRANSLATE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_TRANSLATE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_PIXIE","package":"druntime","parentType":"","signature":"SHT_MIPS_PIXIE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_PIXIE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_XLATE","package":"druntime","parentType":"","signature":"SHT_MIPS_XLATE","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_XLATE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_XLATE_DEBUG","package":"druntime","parentType":"","signature":"SHT_MIPS_XLATE_DEBUG","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_XLATE_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_WHIRL","package":"druntime","parentType":"","signature":"SHT_MIPS_WHIRL","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_WHIRL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_EH_REGION","package":"druntime","parentType":"","signature":"SHT_MIPS_EH_REGION","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_EH_REGION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_XLATE_OLD","package":"druntime","parentType":"","signature":"SHT_MIPS_XLATE_OLD","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_XLATE_OLD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_MIPS_PDR_EXCEPTION","package":"druntime","parentType":"","signature":"SHT_MIPS_PDR_EXCEPTION","url":"/ddoc/druntime/core/sys/elf.html#SHT_MIPS_PDR_EXCEPTION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_GPREL","package":"druntime","parentType":"","signature":"SHF_MIPS_GPREL","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_GPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_MERGE","package":"druntime","parentType":"","signature":"SHF_MIPS_MERGE","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_MERGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_ADDR","package":"druntime","parentType":"","signature":"SHF_MIPS_ADDR","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_ADDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_STRINGS","package":"druntime","parentType":"","signature":"SHF_MIPS_STRINGS","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_STRINGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_NOSTRIP","package":"druntime","parentType":"","signature":"SHF_MIPS_NOSTRIP","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_NOSTRIP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_LOCAL","package":"druntime","parentType":"","signature":"SHF_MIPS_LOCAL","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_NAMES","package":"druntime","parentType":"","signature":"SHF_MIPS_NAMES","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_NAMES"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_MIPS_NODUPE","package":"druntime","parentType":"","signature":"SHF_MIPS_NODUPE","url":"/ddoc/druntime/core/sys/elf.html#SHF_MIPS_NODUPE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_DEFAULT","package":"druntime","parentType":"","signature":"STO_MIPS_DEFAULT","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_INTERNAL","package":"druntime","parentType":"","signature":"STO_MIPS_INTERNAL","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_HIDDEN","package":"druntime","parentType":"","signature":"STO_MIPS_HIDDEN","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_PROTECTED","package":"druntime","parentType":"","signature":"STO_MIPS_PROTECTED","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_PROTECTED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_PLT","package":"druntime","parentType":"","signature":"STO_MIPS_PLT","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_MIPS_SC_ALIGN_UNUSED","package":"druntime","parentType":"","signature":"STO_MIPS_SC_ALIGN_UNUSED","url":"/ddoc/druntime/core/sys/elf.html#STO_MIPS_SC_ALIGN_UNUSED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STB_MIPS_SPLIT_COMMON","package":"druntime","parentType":"","signature":"STB_MIPS_SPLIT_COMMON","url":"/ddoc/druntime/core/sys/elf.html#STB_MIPS_SPLIT_COMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_NULL","package":"druntime","parentType":"","signature":"ODK_NULL","url":"/ddoc/druntime/core/sys/elf.html#ODK_NULL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_REGINFO","package":"druntime","parentType":"","signature":"ODK_REGINFO","url":"/ddoc/druntime/core/sys/elf.html#ODK_REGINFO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_EXCEPTIONS","package":"druntime","parentType":"","signature":"ODK_EXCEPTIONS","url":"/ddoc/druntime/core/sys/elf.html#ODK_EXCEPTIONS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_PAD","package":"druntime","parentType":"","signature":"ODK_PAD","url":"/ddoc/druntime/core/sys/elf.html#ODK_PAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_HWPATCH","package":"druntime","parentType":"","signature":"ODK_HWPATCH","url":"/ddoc/druntime/core/sys/elf.html#ODK_HWPATCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_FILL","package":"druntime","parentType":"","signature":"ODK_FILL","url":"/ddoc/druntime/core/sys/elf.html#ODK_FILL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_TAGS","package":"druntime","parentType":"","signature":"ODK_TAGS","url":"/ddoc/druntime/core/sys/elf.html#ODK_TAGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_HWAND","package":"druntime","parentType":"","signature":"ODK_HWAND","url":"/ddoc/druntime/core/sys/elf.html#ODK_HWAND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"ODK_HWOR","package":"druntime","parentType":"","signature":"ODK_HWOR","url":"/ddoc/druntime/core/sys/elf.html#ODK_HWOR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_MIN","package":"druntime","parentType":"","signature":"OEX_FPU_MIN","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_MIN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_MAX","package":"druntime","parentType":"","signature":"OEX_FPU_MAX","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_MAX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_PAGE0","package":"druntime","parentType":"","signature":"OEX_PAGE0","url":"/ddoc/druntime/core/sys/elf.html#OEX_PAGE0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_SMM","package":"druntime","parentType":"","signature":"OEX_SMM","url":"/ddoc/druntime/core/sys/elf.html#OEX_SMM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPDBUG","package":"druntime","parentType":"","signature":"OEX_FPDBUG","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPDBUG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_PRECISEFP","package":"druntime","parentType":"","signature":"OEX_PRECISEFP","url":"/ddoc/druntime/core/sys/elf.html#OEX_PRECISEFP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_DISMISS","package":"druntime","parentType":"","signature":"OEX_DISMISS","url":"/ddoc/druntime/core/sys/elf.html#OEX_DISMISS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_INVAL","package":"druntime","parentType":"","signature":"OEX_FPU_INVAL","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_INVAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_DIV0","package":"druntime","parentType":"","signature":"OEX_FPU_DIV0","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_DIV0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_OFLO","package":"druntime","parentType":"","signature":"OEX_FPU_OFLO","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_OFLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_UFLO","package":"druntime","parentType":"","signature":"OEX_FPU_UFLO","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_UFLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OEX_FPU_INEX","package":"druntime","parentType":"","signature":"OEX_FPU_INEX","url":"/ddoc/druntime/core/sys/elf.html#OEX_FPU_INEX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHW_R4KEOP","package":"druntime","parentType":"","signature":"OHW_R4KEOP","url":"/ddoc/druntime/core/sys/elf.html#OHW_R4KEOP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHW_R8KPFETCH","package":"druntime","parentType":"","signature":"OHW_R8KPFETCH","url":"/ddoc/druntime/core/sys/elf.html#OHW_R8KPFETCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHW_R5KEOP","package":"druntime","parentType":"","signature":"OHW_R5KEOP","url":"/ddoc/druntime/core/sys/elf.html#OHW_R5KEOP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHW_R5KCVTL","package":"druntime","parentType":"","signature":"OHW_R5KCVTL","url":"/ddoc/druntime/core/sys/elf.html#OHW_R5KCVTL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OPAD_PREFIX","package":"druntime","parentType":"","signature":"OPAD_PREFIX","url":"/ddoc/druntime/core/sys/elf.html#OPAD_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OPAD_POSTFIX","package":"druntime","parentType":"","signature":"OPAD_POSTFIX","url":"/ddoc/druntime/core/sys/elf.html#OPAD_POSTFIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OPAD_SYMBOL","package":"druntime","parentType":"","signature":"OPAD_SYMBOL","url":"/ddoc/druntime/core/sys/elf.html#OPAD_SYMBOL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHWA0_R4KEOP_CHECKED","package":"druntime","parentType":"","signature":"OHWA0_R4KEOP_CHECKED","url":"/ddoc/druntime/core/sys/elf.html#OHWA0_R4KEOP_CHECKED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"OHWA1_R4KEOP_CLEAN","package":"druntime","parentType":"","signature":"OHWA1_R4KEOP_CLEAN","url":"/ddoc/druntime/core/sys/elf.html#OHWA1_R4KEOP_CLEAN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_NONE","package":"druntime","parentType":"","signature":"R_MIPS_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_16","package":"druntime","parentType":"","signature":"R_MIPS_16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_32","package":"druntime","parentType":"","signature":"R_MIPS_32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_REL32","package":"druntime","parentType":"","signature":"R_MIPS_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_26","package":"druntime","parentType":"","signature":"R_MIPS_26","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_26"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_HI16","package":"druntime","parentType":"","signature":"R_MIPS_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_LO16","package":"druntime","parentType":"","signature":"R_MIPS_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GPREL16","package":"druntime","parentType":"","signature":"R_MIPS_GPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_LITERAL","package":"druntime","parentType":"","signature":"R_MIPS_LITERAL","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_LITERAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT16","package":"druntime","parentType":"","signature":"R_MIPS_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_PC16","package":"druntime","parentType":"","signature":"R_MIPS_PC16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_PC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_CALL16","package":"druntime","parentType":"","signature":"R_MIPS_CALL16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_CALL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GPREL32","package":"druntime","parentType":"","signature":"R_MIPS_GPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_SHIFT5","package":"druntime","parentType":"","signature":"R_MIPS_SHIFT5","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_SHIFT5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_SHIFT6","package":"druntime","parentType":"","signature":"R_MIPS_SHIFT6","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_SHIFT6"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_64","package":"druntime","parentType":"","signature":"R_MIPS_64","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT_DISP","package":"druntime","parentType":"","signature":"R_MIPS_GOT_DISP","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT_DISP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT_PAGE","package":"druntime","parentType":"","signature":"R_MIPS_GOT_PAGE","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT_PAGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT_OFST","package":"druntime","parentType":"","signature":"R_MIPS_GOT_OFST","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT_OFST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT_HI16","package":"druntime","parentType":"","signature":"R_MIPS_GOT_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GOT_LO16","package":"druntime","parentType":"","signature":"R_MIPS_GOT_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GOT_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_SUB","package":"druntime","parentType":"","signature":"R_MIPS_SUB","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_SUB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_INSERT_A","package":"druntime","parentType":"","signature":"R_MIPS_INSERT_A","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_INSERT_A"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_INSERT_B","package":"druntime","parentType":"","signature":"R_MIPS_INSERT_B","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_INSERT_B"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_DELETE","package":"druntime","parentType":"","signature":"R_MIPS_DELETE","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_DELETE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_HIGHER","package":"druntime","parentType":"","signature":"R_MIPS_HIGHER","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_HIGHER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_HIGHEST","package":"druntime","parentType":"","signature":"R_MIPS_HIGHEST","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_HIGHEST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_CALL_HI16","package":"druntime","parentType":"","signature":"R_MIPS_CALL_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_CALL_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_CALL_LO16","package":"druntime","parentType":"","signature":"R_MIPS_CALL_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_CALL_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_SCN_DISP","package":"druntime","parentType":"","signature":"R_MIPS_SCN_DISP","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_SCN_DISP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_REL16","package":"druntime","parentType":"","signature":"R_MIPS_REL16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_REL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_ADD_IMMEDIATE","package":"druntime","parentType":"","signature":"R_MIPS_ADD_IMMEDIATE","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_ADD_IMMEDIATE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_PJUMP","package":"druntime","parentType":"","signature":"R_MIPS_PJUMP","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_PJUMP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_RELGOT","package":"druntime","parentType":"","signature":"R_MIPS_RELGOT","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_RELGOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_JALR","package":"druntime","parentType":"","signature":"R_MIPS_JALR","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_JALR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPREL32","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPREL64","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_GD","package":"druntime","parentType":"","signature":"R_MIPS_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_LDM","package":"druntime","parentType":"","signature":"R_MIPS_TLS_LDM","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_LDM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPREL_HI16","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPREL_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPREL_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_DTPREL_LO16","package":"druntime","parentType":"","signature":"R_MIPS_TLS_DTPREL_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_DTPREL_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_GOTTPREL","package":"druntime","parentType":"","signature":"R_MIPS_TLS_GOTTPREL","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_GOTTPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_TPREL32","package":"druntime","parentType":"","signature":"R_MIPS_TLS_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_TPREL64","package":"druntime","parentType":"","signature":"R_MIPS_TLS_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_TPREL_HI16","package":"druntime","parentType":"","signature":"R_MIPS_TLS_TPREL_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_TPREL_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_TLS_TPREL_LO16","package":"druntime","parentType":"","signature":"R_MIPS_TLS_TPREL_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_TLS_TPREL_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_GLOB_DAT","package":"druntime","parentType":"","signature":"R_MIPS_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_COPY","package":"druntime","parentType":"","signature":"R_MIPS_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_MIPS_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MIPS_NUM","package":"druntime","parentType":"","signature":"R_MIPS_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_MIPS_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_MIPS_REGINFO","package":"druntime","parentType":"","signature":"PT_MIPS_REGINFO","url":"/ddoc/druntime/core/sys/elf.html#PT_MIPS_REGINFO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_MIPS_RTPROC","package":"druntime","parentType":"","signature":"PT_MIPS_RTPROC","url":"/ddoc/druntime/core/sys/elf.html#PT_MIPS_RTPROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_MIPS_OPTIONS","package":"druntime","parentType":"","signature":"PT_MIPS_OPTIONS","url":"/ddoc/druntime/core/sys/elf.html#PT_MIPS_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_MIPS_LOCAL","package":"druntime","parentType":"","signature":"PF_MIPS_LOCAL","url":"/ddoc/druntime/core/sys/elf.html#PF_MIPS_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_RLD_VERSION","package":"druntime","parentType":"","signature":"DT_MIPS_RLD_VERSION","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_RLD_VERSION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_TIME_STAMP","package":"druntime","parentType":"","signature":"DT_MIPS_TIME_STAMP","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_TIME_STAMP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_ICHECKSUM","package":"druntime","parentType":"","signature":"DT_MIPS_ICHECKSUM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_ICHECKSUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_IVERSION","package":"druntime","parentType":"","signature":"DT_MIPS_IVERSION","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_IVERSION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_FLAGS","package":"druntime","parentType":"","signature":"DT_MIPS_FLAGS","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_BASE_ADDRESS","package":"druntime","parentType":"","signature":"DT_MIPS_BASE_ADDRESS","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_BASE_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_MSYM","package":"druntime","parentType":"","signature":"DT_MIPS_MSYM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_MSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_CONFLICT","package":"druntime","parentType":"","signature":"DT_MIPS_CONFLICT","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_CONFLICT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_LIBLIST","package":"druntime","parentType":"","signature":"DT_MIPS_LIBLIST","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_LIBLIST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_LOCAL_GOTNO","package":"druntime","parentType":"","signature":"DT_MIPS_LOCAL_GOTNO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_LOCAL_GOTNO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_CONFLICTNO","package":"druntime","parentType":"","signature":"DT_MIPS_CONFLICTNO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_CONFLICTNO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_LIBLISTNO","package":"druntime","parentType":"","signature":"DT_MIPS_LIBLISTNO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_LIBLISTNO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_SYMTABNO","package":"druntime","parentType":"","signature":"DT_MIPS_SYMTABNO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_SYMTABNO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_UNREFEXTNO","package":"druntime","parentType":"","signature":"DT_MIPS_UNREFEXTNO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_UNREFEXTNO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_GOTSYM","package":"druntime","parentType":"","signature":"DT_MIPS_GOTSYM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_GOTSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_HIPAGENO","package":"druntime","parentType":"","signature":"DT_MIPS_HIPAGENO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_HIPAGENO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_RLD_MAP","package":"druntime","parentType":"","signature":"DT_MIPS_RLD_MAP","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_RLD_MAP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_CLASS","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_CLASS","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_CLASS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_CLASS_NO","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_CLASS_NO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_CLASS_NO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_INSTANCE","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_INSTANCE","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_INSTANCE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_INSTANCE_NO","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_INSTANCE_NO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_INSTANCE_NO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_RELOC","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_RELOC","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_RELOC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_RELOC_NO","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_RELOC_NO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_RELOC_NO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_SYM","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_SYM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_SYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_SYM_NO","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_SYM_NO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_SYM_NO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_CLASSSYM","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_CLASSSYM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_CLASSSYM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DELTA_CLASSSYM_NO","package":"druntime","parentType":"","signature":"DT_MIPS_DELTA_CLASSSYM_NO","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DELTA_CLASSSYM_NO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_CXX_FLAGS","package":"druntime","parentType":"","signature":"DT_MIPS_CXX_FLAGS","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_CXX_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_PIXIE_INIT","package":"druntime","parentType":"","signature":"DT_MIPS_PIXIE_INIT","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_PIXIE_INIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_SYMBOL_LIB","package":"druntime","parentType":"","signature":"DT_MIPS_SYMBOL_LIB","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_SYMBOL_LIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_LOCALPAGE_GOTIDX","package":"druntime","parentType":"","signature":"DT_MIPS_LOCALPAGE_GOTIDX","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_LOCALPAGE_GOTIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_LOCAL_GOTIDX","package":"druntime","parentType":"","signature":"DT_MIPS_LOCAL_GOTIDX","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_LOCAL_GOTIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_HIDDEN_GOTIDX","package":"druntime","parentType":"","signature":"DT_MIPS_HIDDEN_GOTIDX","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_HIDDEN_GOTIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_PROTECTED_GOTIDX","package":"druntime","parentType":"","signature":"DT_MIPS_PROTECTED_GOTIDX","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_PROTECTED_GOTIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_OPTIONS","package":"druntime","parentType":"","signature":"DT_MIPS_OPTIONS","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_INTERFACE","package":"druntime","parentType":"","signature":"DT_MIPS_INTERFACE","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_INTERFACE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_DYNSTR_ALIGN","package":"druntime","parentType":"","signature":"DT_MIPS_DYNSTR_ALIGN","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_DYNSTR_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_INTERFACE_SIZE","package":"druntime","parentType":"","signature":"DT_MIPS_INTERFACE_SIZE","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_INTERFACE_SIZE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_RLD_TEXT_RESOLVE_ADDR","package":"druntime","parentType":"","signature":"DT_MIPS_RLD_TEXT_RESOLVE_ADDR","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_RLD_TEXT_RESOLVE_ADDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_PERF_SUFFIX","package":"druntime","parentType":"","signature":"DT_MIPS_PERF_SUFFIX","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_PERF_SUFFIX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_COMPACT_SIZE","package":"druntime","parentType":"","signature":"DT_MIPS_COMPACT_SIZE","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_COMPACT_SIZE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_GP_VALUE","package":"druntime","parentType":"","signature":"DT_MIPS_GP_VALUE","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_GP_VALUE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_AUX_DYNAMIC","package":"druntime","parentType":"","signature":"DT_MIPS_AUX_DYNAMIC","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_AUX_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_PLTGOT","package":"druntime","parentType":"","signature":"DT_MIPS_PLTGOT","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_PLTGOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_RWPLT","package":"druntime","parentType":"","signature":"DT_MIPS_RWPLT","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_RWPLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_MIPS_NUM","package":"druntime","parentType":"","signature":"DT_MIPS_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_MIPS_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_NONE","package":"druntime","parentType":"","signature":"RHF_NONE","url":"/ddoc/druntime/core/sys/elf.html#RHF_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_QUICKSTART","package":"druntime","parentType":"","signature":"RHF_QUICKSTART","url":"/ddoc/druntime/core/sys/elf.html#RHF_QUICKSTART"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_NOTPOT","package":"druntime","parentType":"","signature":"RHF_NOTPOT","url":"/ddoc/druntime/core/sys/elf.html#RHF_NOTPOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_NO_LIBRARY_REPLACEMENT","package":"druntime","parentType":"","signature":"RHF_NO_LIBRARY_REPLACEMENT","url":"/ddoc/druntime/core/sys/elf.html#RHF_NO_LIBRARY_REPLACEMENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_NO_MOVE","package":"druntime","parentType":"","signature":"RHF_NO_MOVE","url":"/ddoc/druntime/core/sys/elf.html#RHF_NO_MOVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_SGI_ONLY","package":"druntime","parentType":"","signature":"RHF_SGI_ONLY","url":"/ddoc/druntime/core/sys/elf.html#RHF_SGI_ONLY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_GUARANTEE_INIT","package":"druntime","parentType":"","signature":"RHF_GUARANTEE_INIT","url":"/ddoc/druntime/core/sys/elf.html#RHF_GUARANTEE_INIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_DELTA_C_PLUS_PLUS","package":"druntime","parentType":"","signature":"RHF_DELTA_C_PLUS_PLUS","url":"/ddoc/druntime/core/sys/elf.html#RHF_DELTA_C_PLUS_PLUS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_GUARANTEE_START_INIT","package":"druntime","parentType":"","signature":"RHF_GUARANTEE_START_INIT","url":"/ddoc/druntime/core/sys/elf.html#RHF_GUARANTEE_START_INIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_PIXIE","package":"druntime","parentType":"","signature":"RHF_PIXIE","url":"/ddoc/druntime/core/sys/elf.html#RHF_PIXIE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_DEFAULT_DELAY_LOAD","package":"druntime","parentType":"","signature":"RHF_DEFAULT_DELAY_LOAD","url":"/ddoc/druntime/core/sys/elf.html#RHF_DEFAULT_DELAY_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_REQUICKSTART","package":"druntime","parentType":"","signature":"RHF_REQUICKSTART","url":"/ddoc/druntime/core/sys/elf.html#RHF_REQUICKSTART"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_REQUICKSTARTED","package":"druntime","parentType":"","signature":"RHF_REQUICKSTARTED","url":"/ddoc/druntime/core/sys/elf.html#RHF_REQUICKSTARTED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_CORD","package":"druntime","parentType":"","signature":"RHF_CORD","url":"/ddoc/druntime/core/sys/elf.html#RHF_CORD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_NO_UNRES_UNDEF","package":"druntime","parentType":"","signature":"RHF_NO_UNRES_UNDEF","url":"/ddoc/druntime/core/sys/elf.html#RHF_NO_UNRES_UNDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"RHF_RLD_ORDER_SAFE","package":"druntime","parentType":"","signature":"RHF_RLD_ORDER_SAFE","url":"/ddoc/druntime/core/sys/elf.html#RHF_RLD_ORDER_SAFE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_NONE","package":"druntime","parentType":"","signature":"LL_NONE","url":"/ddoc/druntime/core/sys/elf.html#LL_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_EXACT_MATCH","package":"druntime","parentType":"","signature":"LL_EXACT_MATCH","url":"/ddoc/druntime/core/sys/elf.html#LL_EXACT_MATCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_IGNORE_INT_VER","package":"druntime","parentType":"","signature":"LL_IGNORE_INT_VER","url":"/ddoc/druntime/core/sys/elf.html#LL_IGNORE_INT_VER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_REQUIRE_MINOR","package":"druntime","parentType":"","signature":"LL_REQUIRE_MINOR","url":"/ddoc/druntime/core/sys/elf.html#LL_REQUIRE_MINOR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_EXPORTS","package":"druntime","parentType":"","signature":"LL_EXPORTS","url":"/ddoc/druntime/core/sys/elf.html#LL_EXPORTS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_DELAY_LOAD","package":"druntime","parentType":"","signature":"LL_DELAY_LOAD","url":"/ddoc/druntime/core/sys/elf.html#LL_DELAY_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LL_DELTA","package":"druntime","parentType":"","signature":"LL_DELTA","url":"/ddoc/druntime/core/sys/elf.html#LL_DELTA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_TRAPNIL","package":"druntime","parentType":"","signature":"EF_PARISC_TRAPNIL","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_TRAPNIL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_EXT","package":"druntime","parentType":"","signature":"EF_PARISC_EXT","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_EXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_LSB","package":"druntime","parentType":"","signature":"EF_PARISC_LSB","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_WIDE","package":"druntime","parentType":"","signature":"EF_PARISC_WIDE","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_WIDE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_NO_KABP","package":"druntime","parentType":"","signature":"EF_PARISC_NO_KABP","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_NO_KABP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_LAZYSWAP","package":"druntime","parentType":"","signature":"EF_PARISC_LAZYSWAP","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_LAZYSWAP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PARISC_ARCH","package":"druntime","parentType":"","signature":"EF_PARISC_ARCH","url":"/ddoc/druntime/core/sys/elf.html#EF_PARISC_ARCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EFA_PARISC_1_0","package":"druntime","parentType":"","signature":"EFA_PARISC_1_0","url":"/ddoc/druntime/core/sys/elf.html#EFA_PARISC_1_0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EFA_PARISC_1_1","package":"druntime","parentType":"","signature":"EFA_PARISC_1_1","url":"/ddoc/druntime/core/sys/elf.html#EFA_PARISC_1_1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EFA_PARISC_2_0","package":"druntime","parentType":"","signature":"EFA_PARISC_2_0","url":"/ddoc/druntime/core/sys/elf.html#EFA_PARISC_2_0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_PARISC_ANSI_COMMON","package":"druntime","parentType":"","signature":"SHN_PARISC_ANSI_COMMON","url":"/ddoc/druntime/core/sys/elf.html#SHN_PARISC_ANSI_COMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHN_PARISC_HUGE_COMMON","package":"druntime","parentType":"","signature":"SHN_PARISC_HUGE_COMMON","url":"/ddoc/druntime/core/sys/elf.html#SHN_PARISC_HUGE_COMMON"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_PARISC_EXT","package":"druntime","parentType":"","signature":"SHT_PARISC_EXT","url":"/ddoc/druntime/core/sys/elf.html#SHT_PARISC_EXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_PARISC_UNWIND","package":"druntime","parentType":"","signature":"SHT_PARISC_UNWIND","url":"/ddoc/druntime/core/sys/elf.html#SHT_PARISC_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_PARISC_DOC","package":"druntime","parentType":"","signature":"SHT_PARISC_DOC","url":"/ddoc/druntime/core/sys/elf.html#SHT_PARISC_DOC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_PARISC_SHORT","package":"druntime","parentType":"","signature":"SHF_PARISC_SHORT","url":"/ddoc/druntime/core/sys/elf.html#SHF_PARISC_SHORT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_PARISC_HUGE","package":"druntime","parentType":"","signature":"SHF_PARISC_HUGE","url":"/ddoc/druntime/core/sys/elf.html#SHF_PARISC_HUGE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_PARISC_SBP","package":"druntime","parentType":"","signature":"SHF_PARISC_SBP","url":"/ddoc/druntime/core/sys/elf.html#SHF_PARISC_SBP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_PARISC_MILLICODE","package":"druntime","parentType":"","signature":"STT_PARISC_MILLICODE","url":"/ddoc/druntime/core/sys/elf.html#STT_PARISC_MILLICODE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_HP_OPAQUE","package":"druntime","parentType":"","signature":"STT_HP_OPAQUE","url":"/ddoc/druntime/core/sys/elf.html#STT_HP_OPAQUE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_HP_STUB","package":"druntime","parentType":"","signature":"STT_HP_STUB","url":"/ddoc/druntime/core/sys/elf.html#STT_HP_STUB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_NONE","package":"druntime","parentType":"","signature":"R_PARISC_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR32","package":"druntime","parentType":"","signature":"R_PARISC_DIR32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR21L","package":"druntime","parentType":"","signature":"R_PARISC_DIR21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR17R","package":"druntime","parentType":"","signature":"R_PARISC_DIR17R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR17R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR17F","package":"druntime","parentType":"","signature":"R_PARISC_DIR17F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR17F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR14R","package":"druntime","parentType":"","signature":"R_PARISC_DIR14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL32","package":"druntime","parentType":"","signature":"R_PARISC_PCREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL21L","package":"druntime","parentType":"","signature":"R_PARISC_PCREL21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL17R","package":"druntime","parentType":"","signature":"R_PARISC_PCREL17R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL17R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL17F","package":"druntime","parentType":"","signature":"R_PARISC_PCREL17F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL17F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL14R","package":"druntime","parentType":"","signature":"R_PARISC_PCREL14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DPREL21L","package":"druntime","parentType":"","signature":"R_PARISC_DPREL21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DPREL21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DPREL14R","package":"druntime","parentType":"","signature":"R_PARISC_DPREL14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DPREL14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL21L","package":"druntime","parentType":"","signature":"R_PARISC_GPREL21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL14R","package":"druntime","parentType":"","signature":"R_PARISC_GPREL14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF21L","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF14R","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_SECREL32","package":"druntime","parentType":"","signature":"R_PARISC_SECREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_SECREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_SEGBASE","package":"druntime","parentType":"","signature":"R_PARISC_SEGBASE","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_SEGBASE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_SEGREL32","package":"druntime","parentType":"","signature":"R_PARISC_SEGREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_SEGREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF21L","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF14R","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR32","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR21L","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR14R","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_FPTR64","package":"druntime","parentType":"","signature":"R_PARISC_FPTR64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_FPTR64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLABEL32","package":"druntime","parentType":"","signature":"R_PARISC_PLABEL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLABEL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLABEL21L","package":"druntime","parentType":"","signature":"R_PARISC_PLABEL21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLABEL21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLABEL14R","package":"druntime","parentType":"","signature":"R_PARISC_PLABEL14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLABEL14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL64","package":"druntime","parentType":"","signature":"R_PARISC_PCREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL22F","package":"druntime","parentType":"","signature":"R_PARISC_PCREL22F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL22F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL14WR","package":"druntime","parentType":"","signature":"R_PARISC_PCREL14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL14DR","package":"druntime","parentType":"","signature":"R_PARISC_PCREL14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL16F","package":"druntime","parentType":"","signature":"R_PARISC_PCREL16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL16WF","package":"druntime","parentType":"","signature":"R_PARISC_PCREL16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PCREL16DF","package":"druntime","parentType":"","signature":"R_PARISC_PCREL16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PCREL16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR64","package":"druntime","parentType":"","signature":"R_PARISC_DIR64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR14WR","package":"druntime","parentType":"","signature":"R_PARISC_DIR14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR14DR","package":"druntime","parentType":"","signature":"R_PARISC_DIR14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR16F","package":"druntime","parentType":"","signature":"R_PARISC_DIR16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR16WF","package":"druntime","parentType":"","signature":"R_PARISC_DIR16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_DIR16DF","package":"druntime","parentType":"","signature":"R_PARISC_DIR16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_DIR16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL64","package":"druntime","parentType":"","signature":"R_PARISC_GPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL14WR","package":"druntime","parentType":"","signature":"R_PARISC_GPREL14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL14DR","package":"druntime","parentType":"","signature":"R_PARISC_GPREL14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL16F","package":"druntime","parentType":"","signature":"R_PARISC_GPREL16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL16WF","package":"druntime","parentType":"","signature":"R_PARISC_GPREL16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GPREL16DF","package":"druntime","parentType":"","signature":"R_PARISC_GPREL16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GPREL16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF64","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF14WR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF14DR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF16F","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF16WF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF16DF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_SECREL64","package":"druntime","parentType":"","signature":"R_PARISC_SECREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_SECREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_SEGREL64","package":"druntime","parentType":"","signature":"R_PARISC_SEGREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_SEGREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF14WR","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF14DR","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF16F","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF16WF","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_PLTOFF16DF","package":"druntime","parentType":"","signature":"R_PARISC_PLTOFF16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_PLTOFF16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR64","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR14WR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR14DR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR16F","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR16WF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_FPTR16DF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_FPTR16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_FPTR16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LORESERVE","package":"druntime","parentType":"","signature":"R_PARISC_LORESERVE","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LORESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_COPY","package":"druntime","parentType":"","signature":"R_PARISC_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_IPLT","package":"druntime","parentType":"","signature":"R_PARISC_IPLT","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_IPLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_EPLT","package":"druntime","parentType":"","signature":"R_PARISC_EPLT","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_EPLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL32","package":"druntime","parentType":"","signature":"R_PARISC_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL21L","package":"druntime","parentType":"","signature":"R_PARISC_TPREL21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL14R","package":"druntime","parentType":"","signature":"R_PARISC_TPREL14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP21L","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP14R","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP14F","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP14F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP14F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL64","package":"druntime","parentType":"","signature":"R_PARISC_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL14WR","package":"druntime","parentType":"","signature":"R_PARISC_TPREL14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL14DR","package":"druntime","parentType":"","signature":"R_PARISC_TPREL14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL16F","package":"druntime","parentType":"","signature":"R_PARISC_TPREL16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL16WF","package":"druntime","parentType":"","signature":"R_PARISC_TPREL16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TPREL16DF","package":"druntime","parentType":"","signature":"R_PARISC_TPREL16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TPREL16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP64","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP14WR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP14WR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP14WR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP14DR","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP14DR","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP14DR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP16F","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP16F","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP16F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP16WF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP16WF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP16WF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_LTOFF_TP16DF","package":"druntime","parentType":"","signature":"R_PARISC_LTOFF_TP16DF","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_LTOFF_TP16DF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_PARISC_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_PARISC_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_GD21L","package":"druntime","parentType":"","signature":"R_PARISC_TLS_GD21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_GD21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_GD14R","package":"druntime","parentType":"","signature":"R_PARISC_TLS_GD14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_GD14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_GDCALL","package":"druntime","parentType":"","signature":"R_PARISC_TLS_GDCALL","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_GDCALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LDM21L","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LDM21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LDM21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LDM14R","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LDM14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LDM14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LDMCALL","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LDMCALL","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LDMCALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LDO21L","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LDO21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LDO21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LDO14R","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LDO14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LDO14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_PARISC_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_PARISC_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_PARISC_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_DTPOFF64","package":"druntime","parentType":"","signature":"R_PARISC_TLS_DTPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LE21L","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LE21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LE21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_LE14R","package":"druntime","parentType":"","signature":"R_PARISC_TLS_LE14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_LE14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_IE21L","package":"druntime","parentType":"","signature":"R_PARISC_TLS_IE21L","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_IE21L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_IE14R","package":"druntime","parentType":"","signature":"R_PARISC_TLS_IE14R","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_IE14R"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_TPREL32","package":"druntime","parentType":"","signature":"R_PARISC_TLS_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_TLS_TPREL64","package":"druntime","parentType":"","signature":"R_PARISC_TLS_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_TLS_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PARISC_HIRESERVE","package":"druntime","parentType":"","signature":"R_PARISC_HIRESERVE","url":"/ddoc/druntime/core/sys/elf.html#R_PARISC_HIRESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_TLS","package":"druntime","parentType":"","signature":"PT_HP_TLS","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_NONE","package":"druntime","parentType":"","signature":"PT_HP_CORE_NONE","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_VERSION","package":"druntime","parentType":"","signature":"PT_HP_CORE_VERSION","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_VERSION"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_KERNEL","package":"druntime","parentType":"","signature":"PT_HP_CORE_KERNEL","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_KERNEL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_COMM","package":"druntime","parentType":"","signature":"PT_HP_CORE_COMM","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_COMM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_PROC","package":"druntime","parentType":"","signature":"PT_HP_CORE_PROC","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_PROC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_LOADABLE","package":"druntime","parentType":"","signature":"PT_HP_CORE_LOADABLE","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_LOADABLE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_STACK","package":"druntime","parentType":"","signature":"PT_HP_CORE_STACK","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_STACK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_SHM","package":"druntime","parentType":"","signature":"PT_HP_CORE_SHM","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_SHM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_CORE_MMF","package":"druntime","parentType":"","signature":"PT_HP_CORE_MMF","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_CORE_MMF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_PARALLEL","package":"druntime","parentType":"","signature":"PT_HP_PARALLEL","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_PARALLEL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_FASTBIND","package":"druntime","parentType":"","signature":"PT_HP_FASTBIND","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_FASTBIND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_OPT_ANNOT","package":"druntime","parentType":"","signature":"PT_HP_OPT_ANNOT","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_OPT_ANNOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_HSL_ANNOT","package":"druntime","parentType":"","signature":"PT_HP_HSL_ANNOT","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_HSL_ANNOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_HP_STACK","package":"druntime","parentType":"","signature":"PT_HP_STACK","url":"/ddoc/druntime/core/sys/elf.html#PT_HP_STACK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_PARISC_ARCHEXT","package":"druntime","parentType":"","signature":"PT_PARISC_ARCHEXT","url":"/ddoc/druntime/core/sys/elf.html#PT_PARISC_ARCHEXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_PARISC_UNWIND","package":"druntime","parentType":"","signature":"PT_PARISC_UNWIND","url":"/ddoc/druntime/core/sys/elf.html#PT_PARISC_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_PARISC_SBP","package":"druntime","parentType":"","signature":"PF_PARISC_SBP","url":"/ddoc/druntime/core/sys/elf.html#PF_PARISC_SBP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_PAGE_SIZE","package":"druntime","parentType":"","signature":"PF_HP_PAGE_SIZE","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_PAGE_SIZE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_FAR_SHARED","package":"druntime","parentType":"","signature":"PF_HP_FAR_SHARED","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_FAR_SHARED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_NEAR_SHARED","package":"druntime","parentType":"","signature":"PF_HP_NEAR_SHARED","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_NEAR_SHARED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_CODE","package":"druntime","parentType":"","signature":"PF_HP_CODE","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_CODE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_MODIFY","package":"druntime","parentType":"","signature":"PF_HP_MODIFY","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_MODIFY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_LAZYSWAP","package":"druntime","parentType":"","signature":"PF_HP_LAZYSWAP","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_LAZYSWAP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_HP_SBP","package":"druntime","parentType":"","signature":"PF_HP_SBP","url":"/ddoc/druntime/core/sys/elf.html#PF_HP_SBP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ALPHA_32BIT","package":"druntime","parentType":"","signature":"EF_ALPHA_32BIT","url":"/ddoc/druntime/core/sys/elf.html#EF_ALPHA_32BIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ALPHA_CANRELAX","package":"druntime","parentType":"","signature":"EF_ALPHA_CANRELAX","url":"/ddoc/druntime/core/sys/elf.html#EF_ALPHA_CANRELAX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_ALPHA_DEBUG","package":"druntime","parentType":"","signature":"SHT_ALPHA_DEBUG","url":"/ddoc/druntime/core/sys/elf.html#SHT_ALPHA_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_ALPHA_REGINFO","package":"druntime","parentType":"","signature":"SHT_ALPHA_REGINFO","url":"/ddoc/druntime/core/sys/elf.html#SHT_ALPHA_REGINFO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_ALPHA_GPREL","package":"druntime","parentType":"","signature":"SHF_ALPHA_GPREL","url":"/ddoc/druntime/core/sys/elf.html#SHF_ALPHA_GPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_ALPHA_NOPV","package":"druntime","parentType":"","signature":"STO_ALPHA_NOPV","url":"/ddoc/druntime/core/sys/elf.html#STO_ALPHA_NOPV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STO_ALPHA_STD_GPLOAD","package":"druntime","parentType":"","signature":"STO_ALPHA_STD_GPLOAD","url":"/ddoc/druntime/core/sys/elf.html#STO_ALPHA_STD_GPLOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_NONE","package":"druntime","parentType":"","signature":"R_ALPHA_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_REFLONG","package":"druntime","parentType":"","signature":"R_ALPHA_REFLONG","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_REFLONG"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_REFQUAD","package":"druntime","parentType":"","signature":"R_ALPHA_REFQUAD","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_REFQUAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GPREL32","package":"druntime","parentType":"","signature":"R_ALPHA_GPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_LITERAL","package":"druntime","parentType":"","signature":"R_ALPHA_LITERAL","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_LITERAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_LITUSE","package":"druntime","parentType":"","signature":"R_ALPHA_LITUSE","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_LITUSE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GPDISP","package":"druntime","parentType":"","signature":"R_ALPHA_GPDISP","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GPDISP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_BRADDR","package":"druntime","parentType":"","signature":"R_ALPHA_BRADDR","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_BRADDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_HINT","package":"druntime","parentType":"","signature":"R_ALPHA_HINT","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_HINT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_SREL16","package":"druntime","parentType":"","signature":"R_ALPHA_SREL16","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_SREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_SREL32","package":"druntime","parentType":"","signature":"R_ALPHA_SREL32","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_SREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_SREL64","package":"druntime","parentType":"","signature":"R_ALPHA_SREL64","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_SREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GPRELHIGH","package":"druntime","parentType":"","signature":"R_ALPHA_GPRELHIGH","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GPRELHIGH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GPRELLOW","package":"druntime","parentType":"","signature":"R_ALPHA_GPRELLOW","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GPRELLOW"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GPREL16","package":"druntime","parentType":"","signature":"R_ALPHA_GPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_COPY","package":"druntime","parentType":"","signature":"R_ALPHA_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GLOB_DAT","package":"druntime","parentType":"","signature":"R_ALPHA_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_JMP_SLOT","package":"druntime","parentType":"","signature":"R_ALPHA_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_RELATIVE","package":"druntime","parentType":"","signature":"R_ALPHA_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TLS_GD_HI","package":"druntime","parentType":"","signature":"R_ALPHA_TLS_GD_HI","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TLS_GD_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TLSGD","package":"druntime","parentType":"","signature":"R_ALPHA_TLSGD","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TLSGD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TLS_LDM","package":"druntime","parentType":"","signature":"R_ALPHA_TLS_LDM","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TLS_LDM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_DTPMOD64","package":"druntime","parentType":"","signature":"R_ALPHA_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GOTDTPREL","package":"druntime","parentType":"","signature":"R_ALPHA_GOTDTPREL","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GOTDTPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_DTPREL64","package":"druntime","parentType":"","signature":"R_ALPHA_DTPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_DTPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_DTPRELHI","package":"druntime","parentType":"","signature":"R_ALPHA_DTPRELHI","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_DTPRELHI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_DTPRELLO","package":"druntime","parentType":"","signature":"R_ALPHA_DTPRELLO","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_DTPRELLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_DTPREL16","package":"druntime","parentType":"","signature":"R_ALPHA_DTPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_DTPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_GOTTPREL","package":"druntime","parentType":"","signature":"R_ALPHA_GOTTPREL","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_GOTTPREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TPREL64","package":"druntime","parentType":"","signature":"R_ALPHA_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TPRELHI","package":"druntime","parentType":"","signature":"R_ALPHA_TPRELHI","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TPRELHI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TPRELLO","package":"druntime","parentType":"","signature":"R_ALPHA_TPRELLO","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TPRELLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_TPREL16","package":"druntime","parentType":"","signature":"R_ALPHA_TPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_TPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ALPHA_NUM","package":"druntime","parentType":"","signature":"R_ALPHA_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_ALPHA_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_ADDR","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_ADDR","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_ADDR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_BASE","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_BASE","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_BASE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_BYTOFF","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_BYTOFF","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_BYTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_JSR","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_JSR","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_JSR"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_TLS_GD","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"LITUSE_ALPHA_TLS_LDM","package":"druntime","parentType":"","signature":"LITUSE_ALPHA_TLS_LDM","url":"/ddoc/druntime/core/sys/elf.html#LITUSE_ALPHA_TLS_LDM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ALPHA_PLTRO","package":"druntime","parentType":"","signature":"DT_ALPHA_PLTRO","url":"/ddoc/druntime/core/sys/elf.html#DT_ALPHA_PLTRO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_ALPHA_NUM","package":"druntime","parentType":"","signature":"DT_ALPHA_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_ALPHA_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PPC_EMB","package":"druntime","parentType":"","signature":"EF_PPC_EMB","url":"/ddoc/druntime/core/sys/elf.html#EF_PPC_EMB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PPC_RELOCATABLE","package":"druntime","parentType":"","signature":"EF_PPC_RELOCATABLE","url":"/ddoc/druntime/core/sys/elf.html#EF_PPC_RELOCATABLE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_PPC_RELOCATABLE_LIB","package":"druntime","parentType":"","signature":"EF_PPC_RELOCATABLE_LIB","url":"/ddoc/druntime/core/sys/elf.html#EF_PPC_RELOCATABLE_LIB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_NONE","package":"druntime","parentType":"","signature":"R_PPC_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR32","package":"druntime","parentType":"","signature":"R_PPC_ADDR32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR24","package":"druntime","parentType":"","signature":"R_PPC_ADDR24","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR16","package":"druntime","parentType":"","signature":"R_PPC_ADDR16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR16_LO","package":"druntime","parentType":"","signature":"R_PPC_ADDR16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR16_HI","package":"druntime","parentType":"","signature":"R_PPC_ADDR16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR16_HA","package":"druntime","parentType":"","signature":"R_PPC_ADDR16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR14","package":"druntime","parentType":"","signature":"R_PPC_ADDR14","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR14_BRTAKEN","package":"druntime","parentType":"","signature":"R_PPC_ADDR14_BRTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR14_BRTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_ADDR14_BRNTAKEN","package":"druntime","parentType":"","signature":"R_PPC_ADDR14_BRNTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_ADDR14_BRNTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL24","package":"druntime","parentType":"","signature":"R_PPC_REL24","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL14","package":"druntime","parentType":"","signature":"R_PPC_REL14","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL14_BRTAKEN","package":"druntime","parentType":"","signature":"R_PPC_REL14_BRTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL14_BRTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL14_BRNTAKEN","package":"druntime","parentType":"","signature":"R_PPC_REL14_BRNTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL14_BRNTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT16","package":"druntime","parentType":"","signature":"R_PPC_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT16_LO","package":"druntime","parentType":"","signature":"R_PPC_GOT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT16_HI","package":"druntime","parentType":"","signature":"R_PPC_GOT16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT16_HA","package":"druntime","parentType":"","signature":"R_PPC_GOT16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLTREL24","package":"druntime","parentType":"","signature":"R_PPC_PLTREL24","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLTREL24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_COPY","package":"druntime","parentType":"","signature":"R_PPC_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GLOB_DAT","package":"druntime","parentType":"","signature":"R_PPC_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_JMP_SLOT","package":"druntime","parentType":"","signature":"R_PPC_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_RELATIVE","package":"druntime","parentType":"","signature":"R_PPC_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_LOCAL24PC","package":"druntime","parentType":"","signature":"R_PPC_LOCAL24PC","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_LOCAL24PC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_UADDR32","package":"druntime","parentType":"","signature":"R_PPC_UADDR32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_UADDR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_UADDR16","package":"druntime","parentType":"","signature":"R_PPC_UADDR16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_UADDR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL32","package":"druntime","parentType":"","signature":"R_PPC_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLT32","package":"druntime","parentType":"","signature":"R_PPC_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLTREL32","package":"druntime","parentType":"","signature":"R_PPC_PLTREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLTREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLT16_LO","package":"druntime","parentType":"","signature":"R_PPC_PLT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLT16_HI","package":"druntime","parentType":"","signature":"R_PPC_PLT16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLT16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_PLT16_HA","package":"druntime","parentType":"","signature":"R_PPC_PLT16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_PLT16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_SDAREL16","package":"druntime","parentType":"","signature":"R_PPC_SDAREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_SDAREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_SECTOFF","package":"druntime","parentType":"","signature":"R_PPC_SECTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_SECTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_SECTOFF_LO","package":"druntime","parentType":"","signature":"R_PPC_SECTOFF_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_SECTOFF_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_SECTOFF_HI","package":"druntime","parentType":"","signature":"R_PPC_SECTOFF_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_SECTOFF_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_SECTOFF_HA","package":"druntime","parentType":"","signature":"R_PPC_SECTOFF_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_SECTOFF_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TLS","package":"druntime","parentType":"","signature":"R_PPC_TLS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPMOD32","package":"druntime","parentType":"","signature":"R_PPC_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TPREL16","package":"druntime","parentType":"","signature":"R_PPC_TPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC_TPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC_TPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC_TPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TPREL32","package":"druntime","parentType":"","signature":"R_PPC_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPREL16","package":"druntime","parentType":"","signature":"R_PPC_DTPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC_DTPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC_DTPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC_DTPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DTPREL32","package":"druntime","parentType":"","signature":"R_PPC_DTPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DTPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSGD16","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSGD16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSGD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSGD16_LO","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSGD16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSGD16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSGD16_HI","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSGD16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSGD16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSGD16_HA","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSGD16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSGD16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSLD16","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSLD16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSLD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSLD16_LO","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSLD16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSLD16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSLD16_HI","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSLD16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSLD16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TLSLD16_HA","package":"druntime","parentType":"","signature":"R_PPC_GOT_TLSLD16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TLSLD16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TPREL16","package":"druntime","parentType":"","signature":"R_PPC_GOT_TPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC_GOT_TPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC_GOT_TPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_TPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC_GOT_TPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_TPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_DTPREL16","package":"druntime","parentType":"","signature":"R_PPC_GOT_DTPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_DTPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_DTPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC_GOT_DTPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_DTPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_DTPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC_GOT_DTPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_DTPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_GOT_DTPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC_GOT_DTPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_GOT_DTPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_NADDR32","package":"druntime","parentType":"","signature":"R_PPC_EMB_NADDR32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_NADDR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_NADDR16","package":"druntime","parentType":"","signature":"R_PPC_EMB_NADDR16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_NADDR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_NADDR16_LO","package":"druntime","parentType":"","signature":"R_PPC_EMB_NADDR16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_NADDR16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_NADDR16_HI","package":"druntime","parentType":"","signature":"R_PPC_EMB_NADDR16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_NADDR16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_NADDR16_HA","package":"druntime","parentType":"","signature":"R_PPC_EMB_NADDR16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_NADDR16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_SDAI16","package":"druntime","parentType":"","signature":"R_PPC_EMB_SDAI16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_SDAI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_SDA2I16","package":"druntime","parentType":"","signature":"R_PPC_EMB_SDA2I16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_SDA2I16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_SDA2REL","package":"druntime","parentType":"","signature":"R_PPC_EMB_SDA2REL","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_SDA2REL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_SDA21","package":"druntime","parentType":"","signature":"R_PPC_EMB_SDA21","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_SDA21"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_MRKREF","package":"druntime","parentType":"","signature":"R_PPC_EMB_MRKREF","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_MRKREF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_RELSEC16","package":"druntime","parentType":"","signature":"R_PPC_EMB_RELSEC16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_RELSEC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_RELST_LO","package":"druntime","parentType":"","signature":"R_PPC_EMB_RELST_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_RELST_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_RELST_HI","package":"druntime","parentType":"","signature":"R_PPC_EMB_RELST_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_RELST_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_RELST_HA","package":"druntime","parentType":"","signature":"R_PPC_EMB_RELST_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_RELST_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_BIT_FLD","package":"druntime","parentType":"","signature":"R_PPC_EMB_BIT_FLD","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_BIT_FLD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_EMB_RELSDA","package":"druntime","parentType":"","signature":"R_PPC_EMB_RELSDA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_EMB_RELSDA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_SDA21_LO","package":"druntime","parentType":"","signature":"R_PPC_DIAB_SDA21_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_SDA21_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_SDA21_HI","package":"druntime","parentType":"","signature":"R_PPC_DIAB_SDA21_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_SDA21_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_SDA21_HA","package":"druntime","parentType":"","signature":"R_PPC_DIAB_SDA21_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_SDA21_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_RELSDA_LO","package":"druntime","parentType":"","signature":"R_PPC_DIAB_RELSDA_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_RELSDA_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_RELSDA_HI","package":"druntime","parentType":"","signature":"R_PPC_DIAB_RELSDA_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_RELSDA_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_DIAB_RELSDA_HA","package":"druntime","parentType":"","signature":"R_PPC_DIAB_RELSDA_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_DIAB_RELSDA_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_IRELATIVE","package":"druntime","parentType":"","signature":"R_PPC_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL16","package":"druntime","parentType":"","signature":"R_PPC_REL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL16_LO","package":"druntime","parentType":"","signature":"R_PPC_REL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL16_HI","package":"druntime","parentType":"","signature":"R_PPC_REL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_REL16_HA","package":"druntime","parentType":"","signature":"R_PPC_REL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_REL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC_TOC16","package":"druntime","parentType":"","signature":"R_PPC_TOC16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC_TOC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC_GOT","package":"druntime","parentType":"","signature":"DT_PPC_GOT","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC_NUM","package":"druntime","parentType":"","signature":"DT_PPC_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_NONE","package":"druntime","parentType":"","signature":"R_PPC64_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR32","package":"druntime","parentType":"","signature":"R_PPC64_ADDR32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR24","package":"druntime","parentType":"","signature":"R_PPC64_ADDR24","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_LO","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HI","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HA","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR14","package":"druntime","parentType":"","signature":"R_PPC64_ADDR14","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR14_BRTAKEN","package":"druntime","parentType":"","signature":"R_PPC64_ADDR14_BRTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR14_BRTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR14_BRNTAKEN","package":"druntime","parentType":"","signature":"R_PPC64_ADDR14_BRNTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR14_BRNTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL24","package":"druntime","parentType":"","signature":"R_PPC64_REL24","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL14","package":"druntime","parentType":"","signature":"R_PPC64_REL14","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL14_BRTAKEN","package":"druntime","parentType":"","signature":"R_PPC64_REL14_BRTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL14_BRTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL14_BRNTAKEN","package":"druntime","parentType":"","signature":"R_PPC64_REL14_BRNTAKEN","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL14_BRNTAKEN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16","package":"druntime","parentType":"","signature":"R_PPC64_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16_LO","package":"druntime","parentType":"","signature":"R_PPC64_GOT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16_HI","package":"druntime","parentType":"","signature":"R_PPC64_GOT16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16_HA","package":"druntime","parentType":"","signature":"R_PPC64_GOT16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_COPY","package":"druntime","parentType":"","signature":"R_PPC64_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GLOB_DAT","package":"druntime","parentType":"","signature":"R_PPC64_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_JMP_SLOT","package":"druntime","parentType":"","signature":"R_PPC64_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_RELATIVE","package":"druntime","parentType":"","signature":"R_PPC64_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_UADDR32","package":"druntime","parentType":"","signature":"R_PPC64_UADDR32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_UADDR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_UADDR16","package":"druntime","parentType":"","signature":"R_PPC64_UADDR16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_UADDR16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL32","package":"druntime","parentType":"","signature":"R_PPC64_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT32","package":"druntime","parentType":"","signature":"R_PPC64_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTREL32","package":"druntime","parentType":"","signature":"R_PPC64_PLTREL32","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT16_LO","package":"druntime","parentType":"","signature":"R_PPC64_PLT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT16_HI","package":"druntime","parentType":"","signature":"R_PPC64_PLT16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT16_HA","package":"druntime","parentType":"","signature":"R_PPC64_PLT16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF_LO","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF_HI","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF_HA","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR30","package":"druntime","parentType":"","signature":"R_PPC64_ADDR30","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR30"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR64","package":"druntime","parentType":"","signature":"R_PPC64_ADDR64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HIGHER","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HIGHER","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HIGHER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HIGHERA","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HIGHERA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HIGHERA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HIGHEST","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HIGHEST","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HIGHEST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_HIGHESTA","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_HIGHESTA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_HIGHESTA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_UADDR64","package":"druntime","parentType":"","signature":"R_PPC64_UADDR64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_UADDR64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL64","package":"druntime","parentType":"","signature":"R_PPC64_REL64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT64","package":"druntime","parentType":"","signature":"R_PPC64_PLT64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTREL64","package":"druntime","parentType":"","signature":"R_PPC64_PLTREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16","package":"druntime","parentType":"","signature":"R_PPC64_TOC16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16_LO","package":"druntime","parentType":"","signature":"R_PPC64_TOC16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16_HI","package":"druntime","parentType":"","signature":"R_PPC64_TOC16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16_HA","package":"druntime","parentType":"","signature":"R_PPC64_TOC16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC","package":"druntime","parentType":"","signature":"R_PPC64_TOC","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16_LO","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16_HI","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16_HA","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_DS","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_ADDR16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_ADDR16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_ADDR16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLT16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_PLT16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLT16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF_DS","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_SECTOFF_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_SECTOFF_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_SECTOFF_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16_DS","package":"druntime","parentType":"","signature":"R_PPC64_TOC16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TOC16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_TOC16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TOC16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16_DS","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_PLTGOT16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_PLTGOT16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_PLTGOT16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TLS","package":"druntime","parentType":"","signature":"R_PPC64_TLS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TLS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPMOD64","package":"druntime","parentType":"","signature":"R_PPC64_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL64","package":"druntime","parentType":"","signature":"R_PPC64_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_LO","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL64","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSGD16","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSGD16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSGD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSGD16_LO","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSGD16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSGD16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSGD16_HI","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSGD16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSGD16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSGD16_HA","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSGD16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSGD16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSLD16","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSLD16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSLD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSLD16_LO","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSLD16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSLD16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSLD16_HI","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSLD16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSLD16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TLSLD16_HA","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TLSLD16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TLSLD16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TPREL16_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TPREL16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TPREL16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TPREL16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TPREL16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TPREL16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_TPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC64_GOT_TPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_TPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_DTPREL16_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT_DTPREL16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_DTPREL16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_DTPREL16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_GOT_DTPREL16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_DTPREL16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_DTPREL16_HI","package":"druntime","parentType":"","signature":"R_PPC64_GOT_DTPREL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_DTPREL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_GOT_DTPREL16_HA","package":"druntime","parentType":"","signature":"R_PPC64_GOT_DTPREL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_GOT_DTPREL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_DS","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HIGHER","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HIGHER","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HIGHER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HIGHERA","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HIGHERA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HIGHERA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HIGHEST","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HIGHEST","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HIGHEST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_TPREL16_HIGHESTA","package":"druntime","parentType":"","signature":"R_PPC64_TPREL16_HIGHESTA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_TPREL16_HIGHESTA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_DS","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_LO_DS","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_LO_DS","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_LO_DS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HIGHER","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HIGHER","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HIGHER"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HIGHERA","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HIGHERA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HIGHERA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HIGHEST","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HIGHEST","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HIGHEST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_DTPREL16_HIGHESTA","package":"druntime","parentType":"","signature":"R_PPC64_DTPREL16_HIGHESTA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_DTPREL16_HIGHESTA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_JMP_IREL","package":"druntime","parentType":"","signature":"R_PPC64_JMP_IREL","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_JMP_IREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_IRELATIVE","package":"druntime","parentType":"","signature":"R_PPC64_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL16","package":"druntime","parentType":"","signature":"R_PPC64_REL16","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL16_LO","package":"druntime","parentType":"","signature":"R_PPC64_REL16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL16_HI","package":"druntime","parentType":"","signature":"R_PPC64_REL16_HI","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL16_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_PPC64_REL16_HA","package":"druntime","parentType":"","signature":"R_PPC64_REL16_HA","url":"/ddoc/druntime/core/sys/elf.html#R_PPC64_REL16_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC64_GLINK","package":"druntime","parentType":"","signature":"DT_PPC64_GLINK","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC64_GLINK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC64_OPD","package":"druntime","parentType":"","signature":"DT_PPC64_OPD","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC64_OPD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC64_OPDSZ","package":"druntime","parentType":"","signature":"DT_PPC64_OPDSZ","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC64_OPDSZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_PPC64_NUM","package":"druntime","parentType":"","signature":"DT_PPC64_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_PPC64_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_RELEXEC","package":"druntime","parentType":"","signature":"EF_ARM_RELEXEC","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_RELEXEC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_HASENTRY","package":"druntime","parentType":"","signature":"EF_ARM_HASENTRY","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_HASENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_INTERWORK","package":"druntime","parentType":"","signature":"EF_ARM_INTERWORK","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_INTERWORK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_APCS_26","package":"druntime","parentType":"","signature":"EF_ARM_APCS_26","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_APCS_26"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_APCS_FLOAT","package":"druntime","parentType":"","signature":"EF_ARM_APCS_FLOAT","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_APCS_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_PIC","package":"druntime","parentType":"","signature":"EF_ARM_PIC","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_PIC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_ALIGN8","package":"druntime","parentType":"","signature":"EF_ARM_ALIGN8","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_ALIGN8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_NEW_ABI","package":"druntime","parentType":"","signature":"EF_ARM_NEW_ABI","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_NEW_ABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_OLD_ABI","package":"druntime","parentType":"","signature":"EF_ARM_OLD_ABI","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_OLD_ABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_SOFT_FLOAT","package":"druntime","parentType":"","signature":"EF_ARM_SOFT_FLOAT","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_SOFT_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_VFP_FLOAT","package":"druntime","parentType":"","signature":"EF_ARM_VFP_FLOAT","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_VFP_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_MAVERICK_FLOAT","package":"druntime","parentType":"","signature":"EF_ARM_MAVERICK_FLOAT","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_MAVERICK_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_ABI_FLOAT_SOFT","package":"druntime","parentType":"","signature":"EF_ARM_ABI_FLOAT_SOFT","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_ABI_FLOAT_SOFT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_ABI_FLOAT_HARD","package":"druntime","parentType":"","signature":"EF_ARM_ABI_FLOAT_HARD","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_ABI_FLOAT_HARD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_SYMSARESORTED","package":"druntime","parentType":"","signature":"EF_ARM_SYMSARESORTED","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_SYMSARESORTED"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_DYNSYMSUSESEGIDX","package":"druntime","parentType":"","signature":"EF_ARM_DYNSYMSUSESEGIDX","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_DYNSYMSUSESEGIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_MAPSYMSFIRST","package":"druntime","parentType":"","signature":"EF_ARM_MAPSYMSFIRST","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_MAPSYMSFIRST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABIMASK","package":"druntime","parentType":"","signature":"EF_ARM_EABIMASK","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABIMASK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_BE8","package":"druntime","parentType":"","signature":"EF_ARM_BE8","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_BE8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_LE8","package":"druntime","parentType":"","signature":"EF_ARM_LE8","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_LE8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_UNKNOWN","package":"druntime","parentType":"","signature":"EF_ARM_EABI_UNKNOWN","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_VER1","package":"druntime","parentType":"","signature":"EF_ARM_EABI_VER1","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_VER1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_VER2","package":"druntime","parentType":"","signature":"EF_ARM_EABI_VER2","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_VER2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_VER3","package":"druntime","parentType":"","signature":"EF_ARM_EABI_VER3","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_VER3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_VER4","package":"druntime","parentType":"","signature":"EF_ARM_EABI_VER4","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_VER4"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_ARM_EABI_VER5","package":"druntime","parentType":"","signature":"EF_ARM_EABI_VER5","url":"/ddoc/druntime/core/sys/elf.html#EF_ARM_EABI_VER5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_ARM_TFUNC","package":"druntime","parentType":"","signature":"STT_ARM_TFUNC","url":"/ddoc/druntime/core/sys/elf.html#STT_ARM_TFUNC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"STT_ARM_16BIT","package":"druntime","parentType":"","signature":"STT_ARM_16BIT","url":"/ddoc/druntime/core/sys/elf.html#STT_ARM_16BIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_ARM_ENTRYSECT","package":"druntime","parentType":"","signature":"SHF_ARM_ENTRYSECT","url":"/ddoc/druntime/core/sys/elf.html#SHF_ARM_ENTRYSECT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_ARM_COMDEF","package":"druntime","parentType":"","signature":"SHF_ARM_COMDEF","url":"/ddoc/druntime/core/sys/elf.html#SHF_ARM_COMDEF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_ARM_SB","package":"druntime","parentType":"","signature":"PF_ARM_SB","url":"/ddoc/druntime/core/sys/elf.html#PF_ARM_SB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_ARM_PI","package":"druntime","parentType":"","signature":"PF_ARM_PI","url":"/ddoc/druntime/core/sys/elf.html#PF_ARM_PI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_ARM_ABS","package":"druntime","parentType":"","signature":"PF_ARM_ABS","url":"/ddoc/druntime/core/sys/elf.html#PF_ARM_ABS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_ARM_EXIDX","package":"druntime","parentType":"","signature":"PT_ARM_EXIDX","url":"/ddoc/druntime/core/sys/elf.html#PT_ARM_EXIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_ARM_EXIDX","package":"druntime","parentType":"","signature":"SHT_ARM_EXIDX","url":"/ddoc/druntime/core/sys/elf.html#SHT_ARM_EXIDX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_ARM_PREEMPTMAP","package":"druntime","parentType":"","signature":"SHT_ARM_PREEMPTMAP","url":"/ddoc/druntime/core/sys/elf.html#SHT_ARM_PREEMPTMAP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_ARM_ATTRIBUTES","package":"druntime","parentType":"","signature":"SHT_ARM_ATTRIBUTES","url":"/ddoc/druntime/core/sys/elf.html#SHT_ARM_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_NONE","package":"druntime","parentType":"","signature":"R_AARCH64_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_ABS64","package":"druntime","parentType":"","signature":"R_AARCH64_ABS64","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_ABS64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_ABS32","package":"druntime","parentType":"","signature":"R_AARCH64_ABS32","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_ABS32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_COPY","package":"druntime","parentType":"","signature":"R_AARCH64_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_GLOB_DAT","package":"druntime","parentType":"","signature":"R_AARCH64_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_AARCH64_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_RELATIVE","package":"druntime","parentType":"","signature":"R_AARCH64_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_AARCH64_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_TLS_DTPREL64","package":"druntime","parentType":"","signature":"R_AARCH64_TLS_DTPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_TLS_DTPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_TLS_TPREL64","package":"druntime","parentType":"","signature":"R_AARCH64_TLS_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_TLS_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_AARCH64_TLSDESC","package":"druntime","parentType":"","signature":"R_AARCH64_TLSDESC","url":"/ddoc/druntime/core/sys/elf.html#R_AARCH64_TLSDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_NONE","package":"druntime","parentType":"","signature":"R_ARM_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_PC24","package":"druntime","parentType":"","signature":"R_ARM_PC24","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_PC24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ABS32","package":"druntime","parentType":"","signature":"R_ARM_ABS32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ABS32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_REL32","package":"druntime","parentType":"","signature":"R_ARM_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_PC13","package":"druntime","parentType":"","signature":"R_ARM_PC13","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_PC13"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ABS16","package":"druntime","parentType":"","signature":"R_ARM_ABS16","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ABS16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ABS12","package":"druntime","parentType":"","signature":"R_ARM_ABS12","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ABS12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_ABS5","package":"druntime","parentType":"","signature":"R_ARM_THM_ABS5","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_ABS5"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ABS8","package":"druntime","parentType":"","signature":"R_ARM_ABS8","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ABS8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_SBREL32","package":"druntime","parentType":"","signature":"R_ARM_SBREL32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_SBREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_PC22","package":"druntime","parentType":"","signature":"R_ARM_THM_PC22","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_PC22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_PC8","package":"druntime","parentType":"","signature":"R_ARM_THM_PC8","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_PC8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_AMP_VCALL9","package":"druntime","parentType":"","signature":"R_ARM_AMP_VCALL9","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_AMP_VCALL9"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_SWI24","package":"druntime","parentType":"","signature":"R_ARM_SWI24","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_SWI24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_DESC","package":"druntime","parentType":"","signature":"R_ARM_TLS_DESC","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_DESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_SWI8","package":"druntime","parentType":"","signature":"R_ARM_THM_SWI8","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_SWI8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_XPC25","package":"druntime","parentType":"","signature":"R_ARM_XPC25","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_XPC25"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_XPC22","package":"druntime","parentType":"","signature":"R_ARM_THM_XPC22","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_XPC22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_ARM_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_ARM_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_ARM_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_COPY","package":"druntime","parentType":"","signature":"R_ARM_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GLOB_DAT","package":"druntime","parentType":"","signature":"R_ARM_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_ARM_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RELATIVE","package":"druntime","parentType":"","signature":"R_ARM_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GOTOFF","package":"druntime","parentType":"","signature":"R_ARM_GOTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GOTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GOTPC","package":"druntime","parentType":"","signature":"R_ARM_GOTPC","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GOTPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GOT32","package":"druntime","parentType":"","signature":"R_ARM_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_PLT32","package":"druntime","parentType":"","signature":"R_ARM_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ALU_PCREL_7_0","package":"druntime","parentType":"","signature":"R_ARM_ALU_PCREL_7_0","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ALU_PCREL_7_0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ALU_PCREL_15_8","package":"druntime","parentType":"","signature":"R_ARM_ALU_PCREL_15_8","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ALU_PCREL_15_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ALU_PCREL_23_15","package":"druntime","parentType":"","signature":"R_ARM_ALU_PCREL_23_15","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ALU_PCREL_23_15"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_LDR_SBREL_11_0","package":"druntime","parentType":"","signature":"R_ARM_LDR_SBREL_11_0","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_LDR_SBREL_11_0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ALU_SBREL_19_12","package":"druntime","parentType":"","signature":"R_ARM_ALU_SBREL_19_12","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ALU_SBREL_19_12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_ALU_SBREL_27_20","package":"druntime","parentType":"","signature":"R_ARM_ALU_SBREL_27_20","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_ALU_SBREL_27_20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_GOTDESC","package":"druntime","parentType":"","signature":"R_ARM_TLS_GOTDESC","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_GOTDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_CALL","package":"druntime","parentType":"","signature":"R_ARM_TLS_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_DESCSEQ","package":"druntime","parentType":"","signature":"R_ARM_TLS_DESCSEQ","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_DESCSEQ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_TLS_CALL","package":"druntime","parentType":"","signature":"R_ARM_THM_TLS_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_TLS_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_ARM_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_ARM_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_PC11","package":"druntime","parentType":"","signature":"R_ARM_THM_PC11","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_PC11"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_PC9","package":"druntime","parentType":"","signature":"R_ARM_THM_PC9","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_PC9"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_GD32","package":"druntime","parentType":"","signature":"R_ARM_TLS_GD32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_GD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_LDM32","package":"druntime","parentType":"","signature":"R_ARM_TLS_LDM32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_LDM32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_LDO32","package":"druntime","parentType":"","signature":"R_ARM_TLS_LDO32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_LDO32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_IE32","package":"druntime","parentType":"","signature":"R_ARM_TLS_IE32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_IE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_TLS_LE32","package":"druntime","parentType":"","signature":"R_ARM_TLS_LE32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_TLS_LE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_TLS_DESCSEQ","package":"druntime","parentType":"","signature":"R_ARM_THM_TLS_DESCSEQ","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_TLS_DESCSEQ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_IRELATIVE","package":"druntime","parentType":"","signature":"R_ARM_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RXPC25","package":"druntime","parentType":"","signature":"R_ARM_RXPC25","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RXPC25"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RSBREL32","package":"druntime","parentType":"","signature":"R_ARM_RSBREL32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RSBREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_THM_RPC22","package":"druntime","parentType":"","signature":"R_ARM_THM_RPC22","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_THM_RPC22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RREL32","package":"druntime","parentType":"","signature":"R_ARM_RREL32","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RABS22","package":"druntime","parentType":"","signature":"R_ARM_RABS22","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RABS22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RPC24","package":"druntime","parentType":"","signature":"R_ARM_RPC24","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RPC24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_RBASE","package":"druntime","parentType":"","signature":"R_ARM_RBASE","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_RBASE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_ARM_NUM","package":"druntime","parentType":"","signature":"R_ARM_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_ARM_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_IA_64_MASKOS","package":"druntime","parentType":"","signature":"EF_IA_64_MASKOS","url":"/ddoc/druntime/core/sys/elf.html#EF_IA_64_MASKOS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_IA_64_ABI64","package":"druntime","parentType":"","signature":"EF_IA_64_ABI64","url":"/ddoc/druntime/core/sys/elf.html#EF_IA_64_ABI64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_IA_64_ARCH","package":"druntime","parentType":"","signature":"EF_IA_64_ARCH","url":"/ddoc/druntime/core/sys/elf.html#EF_IA_64_ARCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_IA_64_ARCHEXT","package":"druntime","parentType":"","signature":"PT_IA_64_ARCHEXT","url":"/ddoc/druntime/core/sys/elf.html#PT_IA_64_ARCHEXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_IA_64_UNWIND","package":"druntime","parentType":"","signature":"PT_IA_64_UNWIND","url":"/ddoc/druntime/core/sys/elf.html#PT_IA_64_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_IA_64_HP_OPT_ANOT","package":"druntime","parentType":"","signature":"PT_IA_64_HP_OPT_ANOT","url":"/ddoc/druntime/core/sys/elf.html#PT_IA_64_HP_OPT_ANOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_IA_64_HP_HSL_ANOT","package":"druntime","parentType":"","signature":"PT_IA_64_HP_HSL_ANOT","url":"/ddoc/druntime/core/sys/elf.html#PT_IA_64_HP_HSL_ANOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PT_IA_64_HP_STACK","package":"druntime","parentType":"","signature":"PT_IA_64_HP_STACK","url":"/ddoc/druntime/core/sys/elf.html#PT_IA_64_HP_STACK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"PF_IA_64_NORECOV","package":"druntime","parentType":"","signature":"PF_IA_64_NORECOV","url":"/ddoc/druntime/core/sys/elf.html#PF_IA_64_NORECOV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_IA_64_EXT","package":"druntime","parentType":"","signature":"SHT_IA_64_EXT","url":"/ddoc/druntime/core/sys/elf.html#SHT_IA_64_EXT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHT_IA_64_UNWIND","package":"druntime","parentType":"","signature":"SHT_IA_64_UNWIND","url":"/ddoc/druntime/core/sys/elf.html#SHT_IA_64_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_IA_64_SHORT","package":"druntime","parentType":"","signature":"SHF_IA_64_SHORT","url":"/ddoc/druntime/core/sys/elf.html#SHF_IA_64_SHORT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"SHF_IA_64_NORECOV","package":"druntime","parentType":"","signature":"SHF_IA_64_NORECOV","url":"/ddoc/druntime/core/sys/elf.html#SHF_IA_64_NORECOV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_IA_64_PLT_RESERVE","package":"druntime","parentType":"","signature":"DT_IA_64_PLT_RESERVE","url":"/ddoc/druntime/core/sys/elf.html#DT_IA_64_PLT_RESERVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"DT_IA_64_NUM","package":"druntime","parentType":"","signature":"DT_IA_64_NUM","url":"/ddoc/druntime/core/sys/elf.html#DT_IA_64_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_NONE","package":"druntime","parentType":"","signature":"R_IA64_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_IMM14","package":"druntime","parentType":"","signature":"R_IA64_IMM14","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_IMM14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_IMM22","package":"druntime","parentType":"","signature":"R_IA64_IMM22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_IMM22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_IMM64","package":"druntime","parentType":"","signature":"R_IA64_IMM64","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_IMM64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DIR32MSB","package":"druntime","parentType":"","signature":"R_IA64_DIR32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DIR32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DIR32LSB","package":"druntime","parentType":"","signature":"R_IA64_DIR32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DIR32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DIR64MSB","package":"druntime","parentType":"","signature":"R_IA64_DIR64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DIR64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DIR64LSB","package":"druntime","parentType":"","signature":"R_IA64_DIR64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DIR64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL22","package":"druntime","parentType":"","signature":"R_IA64_GPREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL64I","package":"druntime","parentType":"","signature":"R_IA64_GPREL64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL32MSB","package":"druntime","parentType":"","signature":"R_IA64_GPREL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL32LSB","package":"druntime","parentType":"","signature":"R_IA64_GPREL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_GPREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_GPREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_GPREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_GPREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF22","package":"druntime","parentType":"","signature":"R_IA64_LTOFF22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF64I","package":"druntime","parentType":"","signature":"R_IA64_LTOFF64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PLTOFF22","package":"druntime","parentType":"","signature":"R_IA64_PLTOFF22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PLTOFF22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PLTOFF64I","package":"druntime","parentType":"","signature":"R_IA64_PLTOFF64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PLTOFF64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PLTOFF64MSB","package":"druntime","parentType":"","signature":"R_IA64_PLTOFF64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PLTOFF64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PLTOFF64LSB","package":"druntime","parentType":"","signature":"R_IA64_PLTOFF64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PLTOFF64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_FPTR64I","package":"druntime","parentType":"","signature":"R_IA64_FPTR64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_FPTR64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_FPTR32MSB","package":"druntime","parentType":"","signature":"R_IA64_FPTR32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_FPTR32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_FPTR32LSB","package":"druntime","parentType":"","signature":"R_IA64_FPTR32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_FPTR32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_FPTR64MSB","package":"druntime","parentType":"","signature":"R_IA64_FPTR64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_FPTR64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_FPTR64LSB","package":"druntime","parentType":"","signature":"R_IA64_FPTR64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_FPTR64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL60B","package":"druntime","parentType":"","signature":"R_IA64_PCREL60B","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL60B"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL21B","package":"druntime","parentType":"","signature":"R_IA64_PCREL21B","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL21B"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL21M","package":"druntime","parentType":"","signature":"R_IA64_PCREL21M","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL21M"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL21F","package":"druntime","parentType":"","signature":"R_IA64_PCREL21F","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL21F"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL32MSB","package":"druntime","parentType":"","signature":"R_IA64_PCREL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL32LSB","package":"druntime","parentType":"","signature":"R_IA64_PCREL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_PCREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_PCREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR22","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR64I","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR32MSB","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR32LSB","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR64MSB","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_FPTR64LSB","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_FPTR64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_FPTR64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SEGREL32MSB","package":"druntime","parentType":"","signature":"R_IA64_SEGREL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SEGREL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SEGREL32LSB","package":"druntime","parentType":"","signature":"R_IA64_SEGREL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SEGREL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SEGREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_SEGREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SEGREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SEGREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_SEGREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SEGREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SECREL32MSB","package":"druntime","parentType":"","signature":"R_IA64_SECREL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SECREL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SECREL32LSB","package":"druntime","parentType":"","signature":"R_IA64_SECREL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SECREL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SECREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_SECREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SECREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SECREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_SECREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SECREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_REL32MSB","package":"druntime","parentType":"","signature":"R_IA64_REL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_REL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_REL32LSB","package":"druntime","parentType":"","signature":"R_IA64_REL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_REL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_REL64MSB","package":"druntime","parentType":"","signature":"R_IA64_REL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_REL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_REL64LSB","package":"druntime","parentType":"","signature":"R_IA64_REL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_REL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTV32MSB","package":"druntime","parentType":"","signature":"R_IA64_LTV32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTV32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTV32LSB","package":"druntime","parentType":"","signature":"R_IA64_LTV32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTV32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTV64MSB","package":"druntime","parentType":"","signature":"R_IA64_LTV64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTV64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTV64LSB","package":"druntime","parentType":"","signature":"R_IA64_LTV64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTV64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL21BI","package":"druntime","parentType":"","signature":"R_IA64_PCREL21BI","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL21BI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL22","package":"druntime","parentType":"","signature":"R_IA64_PCREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_PCREL64I","package":"druntime","parentType":"","signature":"R_IA64_PCREL64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_PCREL64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_IPLTMSB","package":"druntime","parentType":"","signature":"R_IA64_IPLTMSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_IPLTMSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_IPLTLSB","package":"druntime","parentType":"","signature":"R_IA64_IPLTLSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_IPLTLSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_COPY","package":"druntime","parentType":"","signature":"R_IA64_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_SUB","package":"druntime","parentType":"","signature":"R_IA64_SUB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_SUB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF22X","package":"druntime","parentType":"","signature":"R_IA64_LTOFF22X","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF22X"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LDXMOV","package":"druntime","parentType":"","signature":"R_IA64_LDXMOV","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LDXMOV"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_TPREL14","package":"druntime","parentType":"","signature":"R_IA64_TPREL14","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_TPREL14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_TPREL22","package":"druntime","parentType":"","signature":"R_IA64_TPREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_TPREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_TPREL64I","package":"druntime","parentType":"","signature":"R_IA64_TPREL64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_TPREL64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_TPREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_TPREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_TPREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_TPREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_TPREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_TPREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_TPREL22","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_TPREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_TPREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPMOD64MSB","package":"druntime","parentType":"","signature":"R_IA64_DTPMOD64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPMOD64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPMOD64LSB","package":"druntime","parentType":"","signature":"R_IA64_DTPMOD64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPMOD64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_DTPMOD22","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_DTPMOD22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_DTPMOD22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL14","package":"druntime","parentType":"","signature":"R_IA64_DTPREL14","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL14"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL22","package":"druntime","parentType":"","signature":"R_IA64_DTPREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL64I","package":"druntime","parentType":"","signature":"R_IA64_DTPREL64I","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL64I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL32MSB","package":"druntime","parentType":"","signature":"R_IA64_DTPREL32MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL32MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL32LSB","package":"druntime","parentType":"","signature":"R_IA64_DTPREL32LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL32LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL64MSB","package":"druntime","parentType":"","signature":"R_IA64_DTPREL64MSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL64MSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_DTPREL64LSB","package":"druntime","parentType":"","signature":"R_IA64_DTPREL64LSB","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_DTPREL64LSB"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_IA64_LTOFF_DTPREL22","package":"druntime","parentType":"","signature":"R_IA64_LTOFF_DTPREL22","url":"/ddoc/druntime/core/sys/elf.html#R_IA64_LTOFF_DTPREL22"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH_MACH_MASK","package":"druntime","parentType":"","signature":"EF_SH_MACH_MASK","url":"/ddoc/druntime/core/sys/elf.html#EF_SH_MACH_MASK"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH_UNKNOWN","package":"druntime","parentType":"","signature":"EF_SH_UNKNOWN","url":"/ddoc/druntime/core/sys/elf.html#EF_SH_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH1","package":"druntime","parentType":"","signature":"EF_SH1","url":"/ddoc/druntime/core/sys/elf.html#EF_SH1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2","package":"druntime","parentType":"","signature":"EF_SH2","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH3","package":"druntime","parentType":"","signature":"EF_SH3","url":"/ddoc/druntime/core/sys/elf.html#EF_SH3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH_DSP","package":"druntime","parentType":"","signature":"EF_SH_DSP","url":"/ddoc/druntime/core/sys/elf.html#EF_SH_DSP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH3_DSP","package":"druntime","parentType":"","signature":"EF_SH3_DSP","url":"/ddoc/druntime/core/sys/elf.html#EF_SH3_DSP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4AL_DSP","package":"druntime","parentType":"","signature":"EF_SH4AL_DSP","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4AL_DSP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH3E","package":"druntime","parentType":"","signature":"EF_SH3E","url":"/ddoc/druntime/core/sys/elf.html#EF_SH3E"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4","package":"druntime","parentType":"","signature":"EF_SH4","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2E","package":"druntime","parentType":"","signature":"EF_SH2E","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2E"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4A","package":"druntime","parentType":"","signature":"EF_SH4A","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4A"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A","package":"druntime","parentType":"","signature":"EF_SH2A","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4_NOFPU","package":"druntime","parentType":"","signature":"EF_SH4_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4A_NOFPU","package":"druntime","parentType":"","signature":"EF_SH4A_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4A_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH4_NOMMU_NOFPU","package":"druntime","parentType":"","signature":"EF_SH4_NOMMU_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH4_NOMMU_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A_NOFPU","package":"druntime","parentType":"","signature":"EF_SH2A_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH3_NOMMU","package":"druntime","parentType":"","signature":"EF_SH3_NOMMU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH3_NOMMU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A_SH4_NOFPU","package":"druntime","parentType":"","signature":"EF_SH2A_SH4_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A_SH4_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A_SH3_NOFPU","package":"druntime","parentType":"","signature":"EF_SH2A_SH3_NOFPU","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A_SH3_NOFPU"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A_SH4","package":"druntime","parentType":"","signature":"EF_SH2A_SH4","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A_SH4"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_SH2A_SH3E","package":"druntime","parentType":"","signature":"EF_SH2A_SH3E","url":"/ddoc/druntime/core/sys/elf.html#EF_SH2A_SH3E"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_NONE","package":"druntime","parentType":"","signature":"R_SH_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_SH_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR32","package":"druntime","parentType":"","signature":"R_SH_DIR32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_REL32","package":"druntime","parentType":"","signature":"R_SH_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8WPN","package":"druntime","parentType":"","signature":"R_SH_DIR8WPN","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8WPN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_IND12W","package":"druntime","parentType":"","signature":"R_SH_IND12W","url":"/ddoc/druntime/core/sys/elf.html#R_SH_IND12W"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8WPL","package":"druntime","parentType":"","signature":"R_SH_DIR8WPL","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8WPL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8WPZ","package":"druntime","parentType":"","signature":"R_SH_DIR8WPZ","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8WPZ"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8BP","package":"druntime","parentType":"","signature":"R_SH_DIR8BP","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8BP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8W","package":"druntime","parentType":"","signature":"R_SH_DIR8W","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8W"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DIR8L","package":"druntime","parentType":"","signature":"R_SH_DIR8L","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DIR8L"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_SWITCH16","package":"druntime","parentType":"","signature":"R_SH_SWITCH16","url":"/ddoc/druntime/core/sys/elf.html#R_SH_SWITCH16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_SWITCH32","package":"druntime","parentType":"","signature":"R_SH_SWITCH32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_SWITCH32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_USES","package":"druntime","parentType":"","signature":"R_SH_USES","url":"/ddoc/druntime/core/sys/elf.html#R_SH_USES"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_COUNT","package":"druntime","parentType":"","signature":"R_SH_COUNT","url":"/ddoc/druntime/core/sys/elf.html#R_SH_COUNT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_ALIGN","package":"druntime","parentType":"","signature":"R_SH_ALIGN","url":"/ddoc/druntime/core/sys/elf.html#R_SH_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_CODE","package":"druntime","parentType":"","signature":"R_SH_CODE","url":"/ddoc/druntime/core/sys/elf.html#R_SH_CODE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_DATA","package":"druntime","parentType":"","signature":"R_SH_DATA","url":"/ddoc/druntime/core/sys/elf.html#R_SH_DATA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_LABEL","package":"druntime","parentType":"","signature":"R_SH_LABEL","url":"/ddoc/druntime/core/sys/elf.html#R_SH_LABEL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_SWITCH8","package":"druntime","parentType":"","signature":"R_SH_SWITCH8","url":"/ddoc/druntime/core/sys/elf.html#R_SH_SWITCH8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_SH_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_SH_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_GD_32","package":"druntime","parentType":"","signature":"R_SH_TLS_GD_32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_GD_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_LD_32","package":"druntime","parentType":"","signature":"R_SH_TLS_LD_32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_LD_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_LDO_32","package":"druntime","parentType":"","signature":"R_SH_TLS_LDO_32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_LDO_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_IE_32","package":"druntime","parentType":"","signature":"R_SH_TLS_IE_32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_IE_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_LE_32","package":"druntime","parentType":"","signature":"R_SH_TLS_LE_32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_LE_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_SH_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_SH_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_SH_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GOT32","package":"druntime","parentType":"","signature":"R_SH_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_PLT32","package":"druntime","parentType":"","signature":"R_SH_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_SH_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_COPY","package":"druntime","parentType":"","signature":"R_SH_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_SH_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GLOB_DAT","package":"druntime","parentType":"","signature":"R_SH_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_JMP_SLOT","package":"druntime","parentType":"","signature":"R_SH_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_SH_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_RELATIVE","package":"druntime","parentType":"","signature":"R_SH_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_SH_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GOTOFF","package":"druntime","parentType":"","signature":"R_SH_GOTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GOTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_GOTPC","package":"druntime","parentType":"","signature":"R_SH_GOTPC","url":"/ddoc/druntime/core/sys/elf.html#R_SH_GOTPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_SH_NUM","package":"druntime","parentType":"","signature":"R_SH_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_SH_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_S390_HIGH_GPRS","package":"druntime","parentType":"","signature":"EF_S390_HIGH_GPRS","url":"/ddoc/druntime/core/sys/elf.html#EF_S390_HIGH_GPRS"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_NONE","package":"druntime","parentType":"","signature":"R_390_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_390_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_8","package":"druntime","parentType":"","signature":"R_390_8","url":"/ddoc/druntime/core/sys/elf.html#R_390_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_12","package":"druntime","parentType":"","signature":"R_390_12","url":"/ddoc/druntime/core/sys/elf.html#R_390_12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_16","package":"druntime","parentType":"","signature":"R_390_16","url":"/ddoc/druntime/core/sys/elf.html#R_390_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_32","package":"druntime","parentType":"","signature":"R_390_32","url":"/ddoc/druntime/core/sys/elf.html#R_390_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PC32","package":"druntime","parentType":"","signature":"R_390_PC32","url":"/ddoc/druntime/core/sys/elf.html#R_390_PC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOT12","package":"druntime","parentType":"","signature":"R_390_GOT12","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOT12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOT32","package":"druntime","parentType":"","signature":"R_390_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLT32","package":"druntime","parentType":"","signature":"R_390_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_COPY","package":"druntime","parentType":"","signature":"R_390_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_390_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GLOB_DAT","package":"druntime","parentType":"","signature":"R_390_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_390_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_JMP_SLOT","package":"druntime","parentType":"","signature":"R_390_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_390_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_RELATIVE","package":"druntime","parentType":"","signature":"R_390_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_390_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTOFF32","package":"druntime","parentType":"","signature":"R_390_GOTOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPC","package":"druntime","parentType":"","signature":"R_390_GOTPC","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOT16","package":"druntime","parentType":"","signature":"R_390_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PC16","package":"druntime","parentType":"","signature":"R_390_PC16","url":"/ddoc/druntime/core/sys/elf.html#R_390_PC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PC16DBL","package":"druntime","parentType":"","signature":"R_390_PC16DBL","url":"/ddoc/druntime/core/sys/elf.html#R_390_PC16DBL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLT16DBL","package":"druntime","parentType":"","signature":"R_390_PLT16DBL","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLT16DBL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PC32DBL","package":"druntime","parentType":"","signature":"R_390_PC32DBL","url":"/ddoc/druntime/core/sys/elf.html#R_390_PC32DBL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLT32DBL","package":"druntime","parentType":"","signature":"R_390_PLT32DBL","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLT32DBL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPCDBL","package":"druntime","parentType":"","signature":"R_390_GOTPCDBL","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPCDBL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_64","package":"druntime","parentType":"","signature":"R_390_64","url":"/ddoc/druntime/core/sys/elf.html#R_390_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PC64","package":"druntime","parentType":"","signature":"R_390_PC64","url":"/ddoc/druntime/core/sys/elf.html#R_390_PC64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOT64","package":"druntime","parentType":"","signature":"R_390_GOT64","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLT64","package":"druntime","parentType":"","signature":"R_390_PLT64","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTENT","package":"druntime","parentType":"","signature":"R_390_GOTENT","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTOFF16","package":"druntime","parentType":"","signature":"R_390_GOTOFF16","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTOFF16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTOFF64","package":"druntime","parentType":"","signature":"R_390_GOTOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLT12","package":"druntime","parentType":"","signature":"R_390_GOTPLT12","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLT12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLT16","package":"druntime","parentType":"","signature":"R_390_GOTPLT16","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLT32","package":"druntime","parentType":"","signature":"R_390_GOTPLT32","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLT64","package":"druntime","parentType":"","signature":"R_390_GOTPLT64","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLTENT","package":"druntime","parentType":"","signature":"R_390_GOTPLTENT","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLTENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLTOFF16","package":"druntime","parentType":"","signature":"R_390_PLTOFF16","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLTOFF16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLTOFF32","package":"druntime","parentType":"","signature":"R_390_PLTOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLTOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_PLTOFF64","package":"druntime","parentType":"","signature":"R_390_PLTOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_390_PLTOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LOAD","package":"druntime","parentType":"","signature":"R_390_TLS_LOAD","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GDCALL","package":"druntime","parentType":"","signature":"R_390_TLS_GDCALL","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GDCALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LDCALL","package":"druntime","parentType":"","signature":"R_390_TLS_LDCALL","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LDCALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GD32","package":"druntime","parentType":"","signature":"R_390_TLS_GD32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GD64","package":"druntime","parentType":"","signature":"R_390_TLS_GD64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GOTIE12","package":"druntime","parentType":"","signature":"R_390_TLS_GOTIE12","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GOTIE12"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GOTIE32","package":"druntime","parentType":"","signature":"R_390_TLS_GOTIE32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GOTIE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GOTIE64","package":"druntime","parentType":"","signature":"R_390_TLS_GOTIE64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GOTIE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LDM32","package":"druntime","parentType":"","signature":"R_390_TLS_LDM32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LDM32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LDM64","package":"druntime","parentType":"","signature":"R_390_TLS_LDM64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LDM64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_IE32","package":"druntime","parentType":"","signature":"R_390_TLS_IE32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_IE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_IE64","package":"druntime","parentType":"","signature":"R_390_TLS_IE64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_IE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_IEENT","package":"druntime","parentType":"","signature":"R_390_TLS_IEENT","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_IEENT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LE32","package":"druntime","parentType":"","signature":"R_390_TLS_LE32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LE64","package":"druntime","parentType":"","signature":"R_390_TLS_LE64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LDO32","package":"druntime","parentType":"","signature":"R_390_TLS_LDO32","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LDO32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_LDO64","package":"druntime","parentType":"","signature":"R_390_TLS_LDO64","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_LDO64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_DTPMOD","package":"druntime","parentType":"","signature":"R_390_TLS_DTPMOD","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_DTPMOD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_DTPOFF","package":"druntime","parentType":"","signature":"R_390_TLS_DTPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_DTPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_TPOFF","package":"druntime","parentType":"","signature":"R_390_TLS_TPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_TPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_20","package":"druntime","parentType":"","signature":"R_390_20","url":"/ddoc/druntime/core/sys/elf.html#R_390_20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOT20","package":"druntime","parentType":"","signature":"R_390_GOT20","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOT20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_GOTPLT20","package":"druntime","parentType":"","signature":"R_390_GOTPLT20","url":"/ddoc/druntime/core/sys/elf.html#R_390_GOTPLT20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_TLS_GOTIE20","package":"druntime","parentType":"","signature":"R_390_TLS_GOTIE20","url":"/ddoc/druntime/core/sys/elf.html#R_390_TLS_GOTIE20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_IRELATIVE","package":"druntime","parentType":"","signature":"R_390_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_390_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_390_NUM","package":"druntime","parentType":"","signature":"R_390_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_390_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_NONE","package":"druntime","parentType":"","signature":"R_CRIS_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_8","package":"druntime","parentType":"","signature":"R_CRIS_8","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_16","package":"druntime","parentType":"","signature":"R_CRIS_16","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32","package":"druntime","parentType":"","signature":"R_CRIS_32","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_8_PCREL","package":"druntime","parentType":"","signature":"R_CRIS_8_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_8_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_16_PCREL","package":"druntime","parentType":"","signature":"R_CRIS_16_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_16_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_PCREL","package":"druntime","parentType":"","signature":"R_CRIS_32_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_CRIS_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_CRIS_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_COPY","package":"druntime","parentType":"","signature":"R_CRIS_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_GLOB_DAT","package":"druntime","parentType":"","signature":"R_CRIS_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_CRIS_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_RELATIVE","package":"druntime","parentType":"","signature":"R_CRIS_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_16_GOT","package":"druntime","parentType":"","signature":"R_CRIS_16_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_16_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_GOT","package":"druntime","parentType":"","signature":"R_CRIS_32_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_16_GOTPLT","package":"druntime","parentType":"","signature":"R_CRIS_16_GOTPLT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_16_GOTPLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_GOTPLT","package":"druntime","parentType":"","signature":"R_CRIS_32_GOTPLT","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_GOTPLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_GOTREL","package":"druntime","parentType":"","signature":"R_CRIS_32_GOTREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_GOTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_PLT_GOTREL","package":"druntime","parentType":"","signature":"R_CRIS_32_PLT_GOTREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_PLT_GOTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_32_PLT_PCREL","package":"druntime","parentType":"","signature":"R_CRIS_32_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_32_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_CRIS_NUM","package":"druntime","parentType":"","signature":"R_CRIS_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_CRIS_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_NONE","package":"druntime","parentType":"","signature":"R_X86_64_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_64","package":"druntime","parentType":"","signature":"R_X86_64_64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PC32","package":"druntime","parentType":"","signature":"R_X86_64_PC32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOT32","package":"druntime","parentType":"","signature":"R_X86_64_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PLT32","package":"druntime","parentType":"","signature":"R_X86_64_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_COPY","package":"druntime","parentType":"","signature":"R_X86_64_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GLOB_DAT","package":"druntime","parentType":"","signature":"R_X86_64_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_X86_64_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_RELATIVE","package":"druntime","parentType":"","signature":"R_X86_64_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPCREL","package":"druntime","parentType":"","signature":"R_X86_64_GOTPCREL","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_32","package":"druntime","parentType":"","signature":"R_X86_64_32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_32S","package":"druntime","parentType":"","signature":"R_X86_64_32S","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_32S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_16","package":"druntime","parentType":"","signature":"R_X86_64_16","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PC16","package":"druntime","parentType":"","signature":"R_X86_64_PC16","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_8","package":"druntime","parentType":"","signature":"R_X86_64_8","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PC8","package":"druntime","parentType":"","signature":"R_X86_64_PC8","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PC8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_DTPMOD64","package":"druntime","parentType":"","signature":"R_X86_64_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_DTPOFF64","package":"druntime","parentType":"","signature":"R_X86_64_DTPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TPOFF64","package":"druntime","parentType":"","signature":"R_X86_64_TPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TLSGD","package":"druntime","parentType":"","signature":"R_X86_64_TLSGD","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TLSGD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TLSLD","package":"druntime","parentType":"","signature":"R_X86_64_TLSLD","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TLSLD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_DTPOFF32","package":"druntime","parentType":"","signature":"R_X86_64_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTTPOFF","package":"druntime","parentType":"","signature":"R_X86_64_GOTTPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTTPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TPOFF32","package":"druntime","parentType":"","signature":"R_X86_64_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PC64","package":"druntime","parentType":"","signature":"R_X86_64_PC64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PC64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTOFF64","package":"druntime","parentType":"","signature":"R_X86_64_GOTOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPC32","package":"druntime","parentType":"","signature":"R_X86_64_GOTPC32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOT64","package":"druntime","parentType":"","signature":"R_X86_64_GOT64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPCREL64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPCREL64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPCREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPC64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPC64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPC64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPLT64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPLT64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPLT64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_PLTOFF64","package":"druntime","parentType":"","signature":"R_X86_64_PLTOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_PLTOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_SIZE32","package":"druntime","parentType":"","signature":"R_X86_64_SIZE32","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_SIZE64","package":"druntime","parentType":"","signature":"R_X86_64_SIZE64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_SIZE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_GOTPC32_TLSDESC","package":"druntime","parentType":"","signature":"R_X86_64_GOTPC32_TLSDESC","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_GOTPC32_TLSDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TLSDESC_CALL","package":"druntime","parentType":"","signature":"R_X86_64_TLSDESC_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TLSDESC_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_TLSDESC","package":"druntime","parentType":"","signature":"R_X86_64_TLSDESC","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_TLSDESC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_IRELATIVE","package":"druntime","parentType":"","signature":"R_X86_64_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_RELATIVE64","package":"druntime","parentType":"","signature":"R_X86_64_RELATIVE64","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_RELATIVE64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_X86_64_NUM","package":"druntime","parentType":"","signature":"R_X86_64_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_X86_64_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_NONE","package":"druntime","parentType":"","signature":"R_MN10300_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_32","package":"druntime","parentType":"","signature":"R_MN10300_32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_16","package":"druntime","parentType":"","signature":"R_MN10300_16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_8","package":"druntime","parentType":"","signature":"R_MN10300_8","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_PCREL32","package":"druntime","parentType":"","signature":"R_MN10300_PCREL32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_PCREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_PCREL16","package":"druntime","parentType":"","signature":"R_MN10300_PCREL16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_PCREL16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_PCREL8","package":"druntime","parentType":"","signature":"R_MN10300_PCREL8","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_PCREL8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_MN10300_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_MN10300_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_24","package":"druntime","parentType":"","signature":"R_MN10300_24","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOTPC32","package":"druntime","parentType":"","signature":"R_MN10300_GOTPC32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOTPC32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOTPC16","package":"druntime","parentType":"","signature":"R_MN10300_GOTPC16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOTPC16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOTOFF32","package":"druntime","parentType":"","signature":"R_MN10300_GOTOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOTOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOTOFF24","package":"druntime","parentType":"","signature":"R_MN10300_GOTOFF24","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOTOFF24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOTOFF16","package":"druntime","parentType":"","signature":"R_MN10300_GOTOFF16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOTOFF16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_PLT32","package":"druntime","parentType":"","signature":"R_MN10300_PLT32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_PLT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_PLT16","package":"druntime","parentType":"","signature":"R_MN10300_PLT16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_PLT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOT32","package":"druntime","parentType":"","signature":"R_MN10300_GOT32","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOT32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOT24","package":"druntime","parentType":"","signature":"R_MN10300_GOT24","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOT24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GOT16","package":"druntime","parentType":"","signature":"R_MN10300_GOT16","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GOT16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_COPY","package":"druntime","parentType":"","signature":"R_MN10300_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_GLOB_DAT","package":"druntime","parentType":"","signature":"R_MN10300_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_JMP_SLOT","package":"druntime","parentType":"","signature":"R_MN10300_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_RELATIVE","package":"druntime","parentType":"","signature":"R_MN10300_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_GD","package":"druntime","parentType":"","signature":"R_MN10300_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_LD","package":"druntime","parentType":"","signature":"R_MN10300_TLS_LD","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_LD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_LDO","package":"druntime","parentType":"","signature":"R_MN10300_TLS_LDO","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_LDO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_GOTIE","package":"druntime","parentType":"","signature":"R_MN10300_TLS_GOTIE","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_GOTIE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_IE","package":"druntime","parentType":"","signature":"R_MN10300_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_LE","package":"druntime","parentType":"","signature":"R_MN10300_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_DTPMOD","package":"druntime","parentType":"","signature":"R_MN10300_TLS_DTPMOD","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_DTPMOD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_DTPOFF","package":"druntime","parentType":"","signature":"R_MN10300_TLS_DTPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_DTPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_TLS_TPOFF","package":"druntime","parentType":"","signature":"R_MN10300_TLS_TPOFF","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_TLS_TPOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_SYM_DIFF","package":"druntime","parentType":"","signature":"R_MN10300_SYM_DIFF","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_SYM_DIFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_ALIGN","package":"druntime","parentType":"","signature":"R_MN10300_ALIGN","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_MN10300_NUM","package":"druntime","parentType":"","signature":"R_MN10300_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_MN10300_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_NONE","package":"druntime","parentType":"","signature":"R_M32R_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_16","package":"druntime","parentType":"","signature":"R_M32R_16","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_32","package":"druntime","parentType":"","signature":"R_M32R_32","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_24","package":"druntime","parentType":"","signature":"R_M32R_24","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_10_PCREL","package":"druntime","parentType":"","signature":"R_M32R_10_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_10_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_18_PCREL","package":"druntime","parentType":"","signature":"R_M32R_18_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_18_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_26_PCREL","package":"druntime","parentType":"","signature":"R_M32R_26_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_26_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_HI16_ULO","package":"druntime","parentType":"","signature":"R_M32R_HI16_ULO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_HI16_ULO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_HI16_SLO","package":"druntime","parentType":"","signature":"R_M32R_HI16_SLO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_HI16_SLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_LO16","package":"druntime","parentType":"","signature":"R_M32R_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_SDA16","package":"druntime","parentType":"","signature":"R_M32R_SDA16","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_SDA16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_M32R_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_M32R_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_16_RELA","package":"druntime","parentType":"","signature":"R_M32R_16_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_16_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_32_RELA","package":"druntime","parentType":"","signature":"R_M32R_32_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_32_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_24_RELA","package":"druntime","parentType":"","signature":"R_M32R_24_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_24_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_10_PCREL_RELA","package":"druntime","parentType":"","signature":"R_M32R_10_PCREL_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_10_PCREL_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_18_PCREL_RELA","package":"druntime","parentType":"","signature":"R_M32R_18_PCREL_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_18_PCREL_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_26_PCREL_RELA","package":"druntime","parentType":"","signature":"R_M32R_26_PCREL_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_26_PCREL_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_HI16_ULO_RELA","package":"druntime","parentType":"","signature":"R_M32R_HI16_ULO_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_HI16_ULO_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_HI16_SLO_RELA","package":"druntime","parentType":"","signature":"R_M32R_HI16_SLO_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_HI16_SLO_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_LO16_RELA","package":"druntime","parentType":"","signature":"R_M32R_LO16_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_LO16_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_SDA16_RELA","package":"druntime","parentType":"","signature":"R_M32R_SDA16_RELA","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_SDA16_RELA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_RELA_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_M32R_RELA_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_RELA_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_RELA_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_M32R_RELA_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_RELA_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_REL32","package":"druntime","parentType":"","signature":"R_M32R_REL32","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_REL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOT24","package":"druntime","parentType":"","signature":"R_M32R_GOT24","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOT24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_26_PLTREL","package":"druntime","parentType":"","signature":"R_M32R_26_PLTREL","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_26_PLTREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_COPY","package":"druntime","parentType":"","signature":"R_M32R_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GLOB_DAT","package":"druntime","parentType":"","signature":"R_M32R_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_JMP_SLOT","package":"druntime","parentType":"","signature":"R_M32R_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_RELATIVE","package":"druntime","parentType":"","signature":"R_M32R_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTOFF","package":"druntime","parentType":"","signature":"R_M32R_GOTOFF","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTOFF"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTPC24","package":"druntime","parentType":"","signature":"R_M32R_GOTPC24","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTPC24"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOT16_HI_ULO","package":"druntime","parentType":"","signature":"R_M32R_GOT16_HI_ULO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOT16_HI_ULO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOT16_HI_SLO","package":"druntime","parentType":"","signature":"R_M32R_GOT16_HI_SLO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOT16_HI_SLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOT16_LO","package":"druntime","parentType":"","signature":"R_M32R_GOT16_LO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOT16_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTPC_HI_ULO","package":"druntime","parentType":"","signature":"R_M32R_GOTPC_HI_ULO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTPC_HI_ULO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTPC_HI_SLO","package":"druntime","parentType":"","signature":"R_M32R_GOTPC_HI_SLO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTPC_HI_SLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTPC_LO","package":"druntime","parentType":"","signature":"R_M32R_GOTPC_LO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTPC_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTOFF_HI_ULO","package":"druntime","parentType":"","signature":"R_M32R_GOTOFF_HI_ULO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTOFF_HI_ULO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTOFF_HI_SLO","package":"druntime","parentType":"","signature":"R_M32R_GOTOFF_HI_SLO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTOFF_HI_SLO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_GOTOFF_LO","package":"druntime","parentType":"","signature":"R_M32R_GOTOFF_LO","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_GOTOFF_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_M32R_NUM","package":"druntime","parentType":"","signature":"R_M32R_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_M32R_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_NONE","package":"druntime","parentType":"","signature":"R_TILEPRO_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_32","package":"druntime","parentType":"","signature":"R_TILEPRO_32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_16","package":"druntime","parentType":"","signature":"R_TILEPRO_16","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_8","package":"druntime","parentType":"","signature":"R_TILEPRO_8","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_32_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_32_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_32_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_16_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_16_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_16_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_8_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_8_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_8_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_LO16","package":"druntime","parentType":"","signature":"R_TILEPRO_LO16","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_LO16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_HI16","package":"druntime","parentType":"","signature":"R_TILEPRO_HI16","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_HI16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_HA16","package":"druntime","parentType":"","signature":"R_TILEPRO_HA16","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_HA16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_COPY","package":"druntime","parentType":"","signature":"R_TILEPRO_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_GLOB_DAT","package":"druntime","parentType":"","signature":"R_TILEPRO_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_JMP_SLOT","package":"druntime","parentType":"","signature":"R_TILEPRO_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_RELATIVE","package":"druntime","parentType":"","signature":"R_TILEPRO_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_BROFF_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_BROFF_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_BROFF_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_JOFFLONG_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_JOFFLONG_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_JOFFLONG_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_JOFFLONG_X1_PLT","package":"druntime","parentType":"","signature":"R_TILEPRO_JOFFLONG_X1_PLT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_JOFFLONG_X1_PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_X0","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_Y0","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_Y0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_Y0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_Y1","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_Y1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_Y1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MT_IMM15_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_MT_IMM15_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MT_IMM15_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MF_IMM15_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_MF_IMM15_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MF_IMM15_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_LO_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_LO_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_LO_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_LO_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_LO_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_LO_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_HI_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_HI_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_HI_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_HI_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_HI_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_HI_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_HA_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_HA_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_HA_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_HA_PCREL","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_HA_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_HA_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_GOT","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_GOT","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_GOT_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_GOT_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_GOT_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_GOT_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_GOT_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_GOT_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_GOT_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_GOT_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_GOT_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_GOT_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_GOT_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_GOT_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_GOT_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_GOT_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_GOT_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_GOT_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_GOT_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_GOT_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MMSTART_X0","package":"druntime","parentType":"","signature":"R_TILEPRO_MMSTART_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MMSTART_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MMEND_X0","package":"druntime","parentType":"","signature":"R_TILEPRO_MMEND_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MMEND_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MMSTART_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_MMSTART_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MMSTART_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_MMEND_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_MMEND_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_MMEND_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_SHAMT_X0","package":"druntime","parentType":"","signature":"R_TILEPRO_SHAMT_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_SHAMT_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_SHAMT_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_SHAMT_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_SHAMT_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_SHAMT_Y0","package":"druntime","parentType":"","signature":"R_TILEPRO_SHAMT_Y0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_SHAMT_Y0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_SHAMT_Y1","package":"druntime","parentType":"","signature":"R_TILEPRO_SHAMT_Y1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_SHAMT_Y1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_DEST_IMM8_X1","package":"druntime","parentType":"","signature":"R_TILEPRO_DEST_IMM8_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_DEST_IMM8_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_TLS_GD_CALL","package":"druntime","parentType":"","signature":"R_TILEPRO_TLS_GD_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_TLS_GD_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_X0_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_X0_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_X0_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_X1_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_X1_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_X1_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_Y0_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_Y0_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_Y0_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM8_Y1_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM8_Y1_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM8_Y1_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_TLS_IE_LOAD","package":"druntime","parentType":"","signature":"R_TILEPRO_TLS_IE_LOAD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_TLS_IE_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_GD_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_GD_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_GD_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_GD_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_GD_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_GD_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_GD_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_GD_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_GD_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_GD_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_GD_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_GD_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_GD_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_GD_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_GD_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_GD_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_GD_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_GD_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_IE_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_IE_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_IE_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_IE_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_IE_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_IE_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_IE_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_IE_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_IE_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_IE_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_IE_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_IE_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_IE_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_IE_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_IE_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_IE_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_IE_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_IE_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_TILEPRO_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_TILEPRO_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_TILEPRO_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_LE_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_LE_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_LE_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_LE_LO","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_LE_LO","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_LE_LO"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_LE_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_LE_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_LE_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_LE_HI","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_LE_HI","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_LE_HI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X0_TLS_LE_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X0_TLS_LE_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X0_TLS_LE_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_IMM16_X1_TLS_LE_HA","package":"druntime","parentType":"","signature":"R_TILEPRO_IMM16_X1_TLS_LE_HA","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_IMM16_X1_TLS_LE_HA"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_TILEPRO_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_TILEPRO_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEPRO_NUM","package":"druntime","parentType":"","signature":"R_TILEPRO_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_TILEPRO_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_NONE","package":"druntime","parentType":"","signature":"R_TILEGX_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_64","package":"druntime","parentType":"","signature":"R_TILEGX_64","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_32","package":"druntime","parentType":"","signature":"R_TILEGX_32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_16","package":"druntime","parentType":"","signature":"R_TILEGX_16","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_8","package":"druntime","parentType":"","signature":"R_TILEGX_8","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_64_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_64_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_64_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_32_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_32_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_32_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_16_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_16_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_16_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_8_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_8_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_8_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW0","package":"druntime","parentType":"","signature":"R_TILEGX_HW0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW1","package":"druntime","parentType":"","signature":"R_TILEGX_HW1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW2","package":"druntime","parentType":"","signature":"R_TILEGX_HW2","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW3","package":"druntime","parentType":"","signature":"R_TILEGX_HW3","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW0_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_HW0_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW0_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW1_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_HW1_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW1_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_HW2_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_HW2_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_HW2_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_COPY","package":"druntime","parentType":"","signature":"R_TILEGX_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_GLOB_DAT","package":"druntime","parentType":"","signature":"R_TILEGX_GLOB_DAT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_JMP_SLOT","package":"druntime","parentType":"","signature":"R_TILEGX_JMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_RELATIVE","package":"druntime","parentType":"","signature":"R_TILEGX_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_BROFF_X1","package":"druntime","parentType":"","signature":"R_TILEGX_BROFF_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_BROFF_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_JUMPOFF_X1","package":"druntime","parentType":"","signature":"R_TILEGX_JUMPOFF_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_JUMPOFF_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_JUMPOFF_X1_PLT","package":"druntime","parentType":"","signature":"R_TILEGX_JUMPOFF_X1_PLT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_JUMPOFF_X1_PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X0","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y0","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X1","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y1","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_DEST_IMM8_X1","package":"druntime","parentType":"","signature":"R_TILEGX_DEST_IMM8_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_DEST_IMM8_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_MT_IMM14_X1","package":"druntime","parentType":"","signature":"R_TILEGX_MT_IMM14_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_MT_IMM14_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_MF_IMM14_X1","package":"druntime","parentType":"","signature":"R_TILEGX_MF_IMM14_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_MF_IMM14_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_MMSTART_X0","package":"druntime","parentType":"","signature":"R_TILEGX_MMSTART_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_MMSTART_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_MMEND_X0","package":"druntime","parentType":"","signature":"R_TILEGX_MMEND_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_MMEND_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_SHAMT_X0","package":"druntime","parentType":"","signature":"R_TILEGX_SHAMT_X0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_SHAMT_X0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_SHAMT_X1","package":"druntime","parentType":"","signature":"R_TILEGX_SHAMT_X1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_SHAMT_X1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_SHAMT_Y0","package":"druntime","parentType":"","signature":"R_TILEGX_SHAMT_Y0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_SHAMT_Y0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_SHAMT_Y1","package":"druntime","parentType":"","signature":"R_TILEGX_SHAMT_Y1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_SHAMT_Y1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW3","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW3","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW3","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW3","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW3"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2_LAST","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2_LAST","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2_LAST"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW3_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW3_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW3_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW3_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW3_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW3_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2_LAST_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2_LAST_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2_LAST_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_GOT","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_GOT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_GOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW3_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW3_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW3_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW3_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW3_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW3_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE","package":"druntime","parentType":"","signature":"R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_DTPOFF64","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_DTPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_TPOFF64","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_TPOFF64","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_GD_CALL","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_GD_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_GD_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X0_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X0_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X0_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X1_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X1_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X1_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y0_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y0_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y0_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y1_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y1_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y1_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_TLS_IE_LOAD","package":"druntime","parentType":"","signature":"R_TILEGX_TLS_IE_LOAD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_TLS_IE_LOAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X0_TLS_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X0_TLS_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X0_TLS_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_X1_TLS_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_X1_TLS_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_X1_TLS_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y0_TLS_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y0_TLS_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y0_TLS_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_IMM8_Y1_TLS_ADD","package":"druntime","parentType":"","signature":"R_TILEGX_IMM8_Y1_TLS_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_IMM8_Y1_TLS_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_TILEGX_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_TILEGX_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_TILEGX_NUM","package":"druntime","parentType":"","signature":"R_TILEGX_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_TILEGX_NUM"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_RVC","package":"druntime","parentType":"","signature":"EF_RISCV_RVC","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_RVC"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_FLOAT_ABI","package":"druntime","parentType":"","signature":"EF_RISCV_FLOAT_ABI","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_FLOAT_ABI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_FLOAT_ABI_SOFT","package":"druntime","parentType":"","signature":"EF_RISCV_FLOAT_ABI_SOFT","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_FLOAT_ABI_SOFT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_FLOAT_ABI_SINGLE","package":"druntime","parentType":"","signature":"EF_RISCV_FLOAT_ABI_SINGLE","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_FLOAT_ABI_SINGLE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_FLOAT_ABI_DOUBLE","package":"druntime","parentType":"","signature":"EF_RISCV_FLOAT_ABI_DOUBLE","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_FLOAT_ABI_DOUBLE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"EF_RISCV_FLOAT_ABI_QUAD","package":"druntime","parentType":"","signature":"EF_RISCV_FLOAT_ABI_QUAD","url":"/ddoc/druntime/core/sys/elf.html#EF_RISCV_FLOAT_ABI_QUAD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_NONE","package":"druntime","parentType":"","signature":"R_RISCV_NONE","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_NONE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_32","package":"druntime","parentType":"","signature":"R_RISCV_32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_64","package":"druntime","parentType":"","signature":"R_RISCV_64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_RELATIVE","package":"druntime","parentType":"","signature":"R_RISCV_RELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_COPY","package":"druntime","parentType":"","signature":"R_RISCV_COPY","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_COPY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_RISCV_JUMP_SLOT","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_RISCV_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_RISCV_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_DTPREL32","package":"druntime","parentType":"","signature":"R_RISCV_TLS_DTPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_DTPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_DTPREL64","package":"druntime","parentType":"","signature":"R_RISCV_TLS_DTPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_DTPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_TPREL32","package":"druntime","parentType":"","signature":"R_RISCV_TLS_TPREL32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_TPREL32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_TPREL64","package":"druntime","parentType":"","signature":"R_RISCV_TLS_TPREL64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_TPREL64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_BRANCH","package":"druntime","parentType":"","signature":"R_RISCV_BRANCH","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_BRANCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_JAL","package":"druntime","parentType":"","signature":"R_RISCV_JAL","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_JAL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_CALL","package":"druntime","parentType":"","signature":"R_RISCV_CALL","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_CALL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_CALL_PLT","package":"druntime","parentType":"","signature":"R_RISCV_CALL_PLT","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_CALL_PLT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_GOT_HI20","package":"druntime","parentType":"","signature":"R_RISCV_GOT_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_GOT_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_GOT_HI20","package":"druntime","parentType":"","signature":"R_RISCV_TLS_GOT_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_GOT_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TLS_GD_HI20","package":"druntime","parentType":"","signature":"R_RISCV_TLS_GD_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TLS_GD_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_PCREL_HI20","package":"druntime","parentType":"","signature":"R_RISCV_PCREL_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_PCREL_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_PCREL_LO12_I","package":"druntime","parentType":"","signature":"R_RISCV_PCREL_LO12_I","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_PCREL_LO12_I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_PCREL_LO12_S","package":"druntime","parentType":"","signature":"R_RISCV_PCREL_LO12_S","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_PCREL_LO12_S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_HI20","package":"druntime","parentType":"","signature":"R_RISCV_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_LO12_I","package":"druntime","parentType":"","signature":"R_RISCV_LO12_I","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_LO12_I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_LO12_S","package":"druntime","parentType":"","signature":"R_RISCV_LO12_S","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_LO12_S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_HI20","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_HI20","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_HI20"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_LO12_I","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_LO12_I","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_LO12_I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_LO12_S","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_LO12_S","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_LO12_S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_ADD","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_ADD","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_ADD"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_ADD8","package":"druntime","parentType":"","signature":"R_RISCV_ADD8","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_ADD8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_ADD16","package":"druntime","parentType":"","signature":"R_RISCV_ADD16","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_ADD16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_ADD32","package":"druntime","parentType":"","signature":"R_RISCV_ADD32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_ADD32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_ADD64","package":"druntime","parentType":"","signature":"R_RISCV_ADD64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_ADD64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SUB8","package":"druntime","parentType":"","signature":"R_RISCV_SUB8","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SUB8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SUB16","package":"druntime","parentType":"","signature":"R_RISCV_SUB16","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SUB16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SUB32","package":"druntime","parentType":"","signature":"R_RISCV_SUB32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SUB32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SUB64","package":"druntime","parentType":"","signature":"R_RISCV_SUB64","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SUB64"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_GNU_VTINHERIT","package":"druntime","parentType":"","signature":"R_RISCV_GNU_VTINHERIT","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_GNU_VTINHERIT"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_GNU_VTENTRY","package":"druntime","parentType":"","signature":"R_RISCV_GNU_VTENTRY","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_GNU_VTENTRY"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_ALIGN","package":"druntime","parentType":"","signature":"R_RISCV_ALIGN","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_RVC_BRANCH","package":"druntime","parentType":"","signature":"R_RISCV_RVC_BRANCH","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_RVC_BRANCH"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_RVC_JUMP","package":"druntime","parentType":"","signature":"R_RISCV_RVC_JUMP","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_RVC_JUMP"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_RVC_LUI","package":"druntime","parentType":"","signature":"R_RISCV_RVC_LUI","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_RVC_LUI"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_GPREL_I","package":"druntime","parentType":"","signature":"R_RISCV_GPREL_I","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_GPREL_I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_GPREL_S","package":"druntime","parentType":"","signature":"R_RISCV_GPREL_S","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_GPREL_S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_I","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_I","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_I"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_TPREL_S","package":"druntime","parentType":"","signature":"R_RISCV_TPREL_S","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_TPREL_S"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_RELAX","package":"druntime","parentType":"","signature":"R_RISCV_RELAX","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_RELAX"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SUB6","package":"druntime","parentType":"","signature":"R_RISCV_SUB6","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SUB6"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SET6","package":"druntime","parentType":"","signature":"R_RISCV_SET6","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SET6"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SET8","package":"druntime","parentType":"","signature":"R_RISCV_SET8","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SET8"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SET16","package":"druntime","parentType":"","signature":"R_RISCV_SET16","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SET16"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_SET32","package":"druntime","parentType":"","signature":"R_RISCV_SET32","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_SET32"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_32_PCREL","package":"druntime","parentType":"","signature":"R_RISCV_32_PCREL","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_32_PCREL"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_IRELATIVE","package":"druntime","parentType":"","signature":"R_RISCV_IRELATIVE","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_IRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.elf","name":"R_RISCV_NUM","package":"druntime","parentType":"","signature":"R_RISCV_NUM","url":"/ddoc/druntime/core/sys/elf.html#R_RISCV_NUM"},{"doc":"D header file for FreeBSD","kind":"module","module":"core.sys.freebsd.config","name":"core.sys.freebsd.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/config.html"},{"doc":"","kind":"variable","module":"core.sys.freebsd.config","name":"INO64_FIRST","package":"druntime","parentType":"","signature":"INO64_FIRST","url":"/ddoc/druntime/core/sys/freebsd/config.html#INO64_FIRST"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.dlfcn","name":"core.sys.freebsd.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#__BSD_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DI_LINKMAP","package":"druntime","parentType":"","signature":"RTLD_DI_LINKMAP","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DI_LINKMAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DI_SERINFO","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFO","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DI_SERINFO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DI_SERINFOSIZE","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFOSIZE","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DI_SERINFOSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DI_ORIGIN","package":"druntime","parentType":"","signature":"RTLD_DI_ORIGIN","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DI_ORIGIN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DI_MAX","package":"druntime","parentType":"","signature":"RTLD_DI_MAX","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DI_MAX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_NEXT","package":"druntime","parentType":"","signature":"RTLD_NEXT","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_NEXT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_DEFAULT","package":"druntime","parentType":"","signature":"RTLD_DEFAULT","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.dlfcn","name":"RTLD_SELF","package":"druntime","parentType":"","signature":"RTLD_SELF","url":"/ddoc/druntime/core/sys/freebsd/dlfcn.html#RTLD_SELF"},{"doc":"D header file for FreeBSD err.h.","kind":"module","module":"core.sys.freebsd.err","name":"core.sys.freebsd.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/err.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/err.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"errc","package":"druntime","parentType":"","signature":"void errc(int  eval,  int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/errc.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"warnc","package":"druntime","parentType":"","signature":"void warnc(int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/warnc.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/freebsd/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"verrc","package":"druntime","parentType":"","signature":"void verrc(int  eval,  int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/verrc.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"vwarnc","package":"druntime","parentType":"","signature":"void vwarnc(int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/vwarnc.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/freebsd/err/vwarnx.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"err_set_file","package":"druntime","parentType":"","signature":"void err_set_file(void *  vfp)","url":"/ddoc/druntime/core/sys/freebsd/err/err_set_file.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.err","name":"err_set_exit","package":"druntime","parentType":"","signature":"void err_set_exit(ExitFunction exitf)","url":"/ddoc/druntime/core/sys/freebsd/err/err_set_exit.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.err","name":"ExitFunction","package":"druntime","parentType":"","signature":"ExitFunction = void  function(int)","url":"/ddoc/druntime/core/sys/freebsd/err.html#ExitFunction"},{"doc":"FreeBSD implementation of glibc's $(LINK2 http://www.gnu.org/software/libc/manual/html_node/Backtraces.html backtrace) facility.","kind":"module","module":"core.sys.freebsd.execinfo","name":"core.sys.freebsd.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/execinfo.html"},{"doc":"D header file for FreeBSD's ifaddrs.h.","kind":"module","module":"core.sys.freebsd.ifaddrs","name":"core.sys.freebsd.ifaddrs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.ifaddrs","name":"getifaddrs","package":"druntime","parentType":"","signature":"int getifaddrs(ifaddrs * *)","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs/getifaddrs.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.ifaddrs","name":"freeifaddrs","package":"druntime","parentType":"","signature":"void freeifaddrs(ifaddrs *)","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs/freeifaddrs.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.ifaddrs","name":"getifmaddrs","package":"druntime","parentType":"","signature":"int getifmaddrs(ifmaddrs * *)","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs/getifmaddrs.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.ifaddrs","name":"freeifmaddrs","package":"druntime","parentType":"","signature":"void freeifmaddrs(ifmaddrs *)","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs/freeifmaddrs.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.ifaddrs","name":"ifaddrs","package":"druntime","parentType":"","signature":"ifaddrs","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs.html#ifaddrs"},{"doc":"","kind":"struct","module":"core.sys.freebsd.ifaddrs","name":"ifmaddrs","package":"druntime","parentType":"","signature":"ifmaddrs","url":"/ddoc/druntime/core/sys/freebsd/ifaddrs.html#ifmaddrs"},{"doc":"D header file for FreeBSD's ifaddrs.h.","kind":"module","module":"core.sys.freebsd.mqueue","name":"core.sys.freebsd.mqueue","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/mqueue.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.mqueue","name":"mq_getfd_np","package":"druntime","parentType":"","signature":"int mq_getfd_np(mqd_t mqd)","url":"/ddoc/druntime/core/sys/freebsd/mqueue/mq_getfd_np.html"},{"doc":"D header file for FreeBSD's net/if.h.","kind":"module","module":"core.sys.freebsd.net.if_","name":"core.sys.freebsd.net.if_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IF_Kbps","package":"druntime","parentType":"","signature":"auto IF_Kbps(T)(T x)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IF_Kbps.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IF_Mbps","package":"druntime","parentType":"","signature":"auto IF_Mbps(T)(T x)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IF_Mbps.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IF_Gbps","package":"druntime","parentType":"","signature":"auto IF_Gbps(T)(T x)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IF_Gbps.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IFCAP_BIT","package":"druntime","parentType":"","signature":"auto IFCAP_BIT(T)(T x)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IFCAP_BIT.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IFCAP2_BIT","package":"druntime","parentType":"","signature":"auto IFCAP2_BIT(T)(T x)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IFCAP2_BIT.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IF_MSGHDRL_IFM_DATA","package":"druntime","parentType":"","signature":"auto IF_MSGHDRL_IFM_DATA(T)(T _l)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IF_MSGHDRL_IFM_DATA.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IF_MSGHDRL_RTA","package":"druntime","parentType":"","signature":"auto IF_MSGHDRL_RTA(T)(T_l)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IF_MSGHDRL_RTA.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IFA_MSGHDRL_IFAM_DATA","package":"druntime","parentType":"","signature":"auto IFA_MSGHDRL_IFAM_DATA(T)(T _l)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IFA_MSGHDRL_IFAM_DATA.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"IFA_MSGHDRL_RTA","package":"druntime","parentType":"","signature":"auto IFA_MSGHDRL_RTA(T)(T _l)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/IFA_MSGHDRL_RTA.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_","name":"_SIZEOF_ADDR_IFREQ","package":"druntime","parentType":"","signature":"auto _SIZEOF_ADDR_IFREQ(T)(T ifr)","url":"/ddoc/druntime/core/sys/freebsd/net/if_/_SIZEOF_ADDR_IFREQ.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"if_clonereq","package":"druntime","parentType":"","signature":"if_clonereq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#if_clonereq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"if_data","package":"druntime","parentType":"","signature":"if_data","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#if_data"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"if_msghdr","package":"druntime","parentType":"","signature":"if_msghdr","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#if_msghdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"if_msghdrl","package":"druntime","parentType":"","signature":"if_msghdrl","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#if_msghdrl"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifa_msghdr","package":"druntime","parentType":"","signature":"ifa_msghdr","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifa_msghdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifa_msghdrl","package":"druntime","parentType":"","signature":"ifa_msghdrl","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifa_msghdrl"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifma_msghdr","package":"druntime","parentType":"","signature":"ifma_msghdr","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifma_msghdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"if_announcemsghdr","package":"druntime","parentType":"","signature":"if_announcemsghdr","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#if_announcemsghdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifreq_buffer","package":"druntime","parentType":"","signature":"ifreq_buffer","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifreq_buffer"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifreq_nv_req","package":"druntime","parentType":"","signature":"ifreq_nv_req","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifreq_nv_req"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifreq","package":"druntime","parentType":"","signature":"ifreq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifreq"},{"doc":"","kind":"method","module":"core.sys.freebsd.net.if_","name":"ifr_flags","package":"druntime","parentType":"ifreq","signature":"@property ref ifr_flags()","url":"/ddoc/druntime/core/sys/freebsd/net/if_/ifreq.ifr_flags.html"},{"doc":"","kind":"method","module":"core.sys.freebsd.net.if_","name":"ifr_flagshigh","package":"druntime","parentType":"ifreq","signature":"@property ref ifr_flagshigh()","url":"/ddoc/druntime/core/sys/freebsd/net/if_/ifreq.ifr_flagshigh.html"},{"doc":"","kind":"method","module":"core.sys.freebsd.net.if_","name":"ifr_reqcap","package":"druntime","parentType":"ifreq","signature":"@property ref ifr_reqcap()","url":"/ddoc/druntime/core/sys/freebsd/net/if_/ifreq.ifr_reqcap.html"},{"doc":"","kind":"method","module":"core.sys.freebsd.net.if_","name":"ifr_curcap","package":"druntime","parentType":"ifreq","signature":"@property ref ifr_curcap()","url":"/ddoc/druntime/core/sys/freebsd/net/if_/ifreq.ifr_curcap.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifaliasreq","package":"druntime","parentType":"","signature":"ifaliasreq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifaliasreq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"oifaliasreq","package":"druntime","parentType":"","signature":"oifaliasreq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#oifaliasreq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifmediareq","package":"druntime","parentType":"","signature":"ifmediareq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifmediareq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifdrv","package":"druntime","parentType":"","signature":"ifdrv","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifdrv"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifstat","package":"druntime","parentType":"","signature":"ifstat","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifstat"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifconf","package":"druntime","parentType":"","signature":"ifconf","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifconf"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifg_req","package":"druntime","parentType":"","signature":"ifg_req","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifg_req"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifgroupreq","package":"druntime","parentType":"","signature":"ifgroupreq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifgroupreq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifi2creq","package":"druntime","parentType":"","signature":"ifi2creq","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifi2creq"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifrsskey","package":"druntime","parentType":"","signature":"ifrsskey","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifrsskey"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifrsshash","package":"druntime","parentType":"","signature":"ifrsshash","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifrsshash"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_","name":"ifdownreason","package":"druntime","parentType":"","signature":"ifdownreason","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#ifdownreason"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IF_MAXUNIT","package":"druntime","parentType":"","signature":"IF_MAXUNIT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IF_MAXUNIT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_UP","package":"druntime","parentType":"","signature":"IFF_UP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_UP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_BROADCAST","package":"druntime","parentType":"","signature":"IFF_BROADCAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_BROADCAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_DEBUG","package":"druntime","parentType":"","signature":"IFF_DEBUG","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_LOOPBACK","package":"druntime","parentType":"","signature":"IFF_LOOPBACK","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_LOOPBACK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_POINTOPOINT","package":"druntime","parentType":"","signature":"IFF_POINTOPOINT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_POINTOPOINT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_NEEDSEPOCH","package":"druntime","parentType":"","signature":"IFF_NEEDSEPOCH","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_NEEDSEPOCH"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_DRV_RUNNING","package":"druntime","parentType":"","signature":"IFF_DRV_RUNNING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_DRV_RUNNING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_NOARP","package":"druntime","parentType":"","signature":"IFF_NOARP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_NOARP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_PROMISC","package":"druntime","parentType":"","signature":"IFF_PROMISC","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_PROMISC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_ALLMULTI","package":"druntime","parentType":"","signature":"IFF_ALLMULTI","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_ALLMULTI"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_DRV_OACTIVE","package":"druntime","parentType":"","signature":"IFF_DRV_OACTIVE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_DRV_OACTIVE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_SIMPLEX","package":"druntime","parentType":"","signature":"IFF_SIMPLEX","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_SIMPLEX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_LINK0","package":"druntime","parentType":"","signature":"IFF_LINK0","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_LINK0"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_LINK1","package":"druntime","parentType":"","signature":"IFF_LINK1","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_LINK1"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_LINK2","package":"druntime","parentType":"","signature":"IFF_LINK2","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_LINK2"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_ALTPHYS","package":"druntime","parentType":"","signature":"IFF_ALTPHYS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_ALTPHYS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_MULTICAST","package":"druntime","parentType":"","signature":"IFF_MULTICAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_MULTICAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_CANTCONFIG","package":"druntime","parentType":"","signature":"IFF_CANTCONFIG","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_CANTCONFIG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_PPROMISC","package":"druntime","parentType":"","signature":"IFF_PPROMISC","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_PPROMISC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_MONITOR","package":"druntime","parentType":"","signature":"IFF_MONITOR","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_MONITOR"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_STATICARP","package":"druntime","parentType":"","signature":"IFF_STATICARP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_STATICARP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_STICKYARP","package":"druntime","parentType":"","signature":"IFF_STICKYARP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_STICKYARP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_DYING","package":"druntime","parentType":"","signature":"IFF_DYING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_DYING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_RENAMING","package":"druntime","parentType":"","signature":"IFF_RENAMING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_RENAMING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_SPARE","package":"druntime","parentType":"","signature":"IFF_SPARE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_SPARE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_NETLINK_1","package":"druntime","parentType":"","signature":"IFF_NETLINK_1","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_NETLINK_1"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_RUNNING","package":"druntime","parentType":"","signature":"IFF_RUNNING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_RUNNING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_OACTIVE","package":"druntime","parentType":"","signature":"IFF_OACTIVE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_OACTIVE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFF_CANTCHANGE","package":"druntime","parentType":"","signature":"IFF_CANTCHANGE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFF_CANTCHANGE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"LINK_STATE_UNKNOWN","package":"druntime","parentType":"","signature":"LINK_STATE_UNKNOWN","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#LINK_STATE_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"LINK_STATE_DOWN","package":"druntime","parentType":"","signature":"LINK_STATE_DOWN","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#LINK_STATE_DOWN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"LINK_STATE_UP","package":"druntime","parentType":"","signature":"LINK_STATE_UP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#LINK_STATE_UP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_RXCSUM","package":"druntime","parentType":"","signature":"IFCAP_B_RXCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_RXCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXCSUM","package":"druntime","parentType":"","signature":"IFCAP_B_TXCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_NETCONS","package":"druntime","parentType":"","signature":"IFCAP_B_NETCONS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_NETCONS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VLAN_MTU","package":"druntime","parentType":"","signature":"IFCAP_B_VLAN_MTU","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VLAN_MTU"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VLAN_HWTAGGING","package":"druntime","parentType":"","signature":"IFCAP_B_VLAN_HWTAGGING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VLAN_HWTAGGING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_JUMBO_MTU","package":"druntime","parentType":"","signature":"IFCAP_B_JUMBO_MTU","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_JUMBO_MTU"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_POLLING","package":"druntime","parentType":"","signature":"IFCAP_B_POLLING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_POLLING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VLAN_HWCSUM","package":"druntime","parentType":"","signature":"IFCAP_B_VLAN_HWCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VLAN_HWCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TSO4","package":"druntime","parentType":"","signature":"IFCAP_B_TSO4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TSO4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TSO6","package":"druntime","parentType":"","signature":"IFCAP_B_TSO6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TSO6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_LRO","package":"druntime","parentType":"","signature":"IFCAP_B_LRO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_LRO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_WOL_UCAST","package":"druntime","parentType":"","signature":"IFCAP_B_WOL_UCAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_WOL_UCAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_WOL_MCAST","package":"druntime","parentType":"","signature":"IFCAP_B_WOL_MCAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_WOL_MCAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_WOL_MAGIC","package":"druntime","parentType":"","signature":"IFCAP_B_WOL_MAGIC","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_WOL_MAGIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TOE4","package":"druntime","parentType":"","signature":"IFCAP_B_TOE4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TOE4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TOE6","package":"druntime","parentType":"","signature":"IFCAP_B_TOE6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TOE6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VLAN_HWFILTER","package":"druntime","parentType":"","signature":"IFCAP_B_VLAN_HWFILTER","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VLAN_HWFILTER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_NV","package":"druntime","parentType":"","signature":"IFCAP_B_NV","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_NV"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VLAN_HWTSO","package":"druntime","parentType":"","signature":"IFCAP_B_VLAN_HWTSO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VLAN_HWTSO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_LINKSTATE","package":"druntime","parentType":"","signature":"IFCAP_B_LINKSTATE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_LINKSTATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_NETMAP","package":"druntime","parentType":"","signature":"IFCAP_B_NETMAP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_NETMAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_RXCSUM_IPV6","package":"druntime","parentType":"","signature":"IFCAP_B_RXCSUM_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_RXCSUM_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXCSUM_IPV6","package":"druntime","parentType":"","signature":"IFCAP_B_TXCSUM_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXCSUM_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_HWSTATS","package":"druntime","parentType":"","signature":"IFCAP_B_HWSTATS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_HWSTATS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXRTLMT","package":"druntime","parentType":"","signature":"IFCAP_B_TXRTLMT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXRTLMT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_HWRXTSTMP","package":"druntime","parentType":"","signature":"IFCAP_B_HWRXTSTMP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_HWRXTSTMP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_MEXTPG","package":"druntime","parentType":"","signature":"IFCAP_B_MEXTPG","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_MEXTPG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXTLS4","package":"druntime","parentType":"","signature":"IFCAP_B_TXTLS4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXTLS4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXTLS6","package":"druntime","parentType":"","signature":"IFCAP_B_TXTLS6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXTLS6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VXLAN_HWCSUM","package":"druntime","parentType":"","signature":"IFCAP_B_VXLAN_HWCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VXLAN_HWCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_VXLAN_HWTSO","package":"druntime","parentType":"","signature":"IFCAP_B_VXLAN_HWTSO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_VXLAN_HWTSO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_TXTLS_RTLMT","package":"druntime","parentType":"","signature":"IFCAP_B_TXTLS_RTLMT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_TXTLS_RTLMT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_RXTLS4","package":"druntime","parentType":"","signature":"IFCAP_B_RXTLS4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_RXTLS4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_RXTLS6","package":"druntime","parentType":"","signature":"IFCAP_B_RXTLS6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_RXTLS6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"__IFCAP_B_SIZE","package":"druntime","parentType":"","signature":"__IFCAP_B_SIZE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#__IFCAP_B_SIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_B_SIZE","package":"druntime","parentType":"","signature":"IFCAP_B_SIZE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_B_SIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_RXCSUM","package":"druntime","parentType":"","signature":"IFCAP_RXCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_RXCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXCSUM","package":"druntime","parentType":"","signature":"IFCAP_TXCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_NETCONS","package":"druntime","parentType":"","signature":"IFCAP_NETCONS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_NETCONS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VLAN_MTU","package":"druntime","parentType":"","signature":"IFCAP_VLAN_MTU","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VLAN_MTU"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VLAN_HWTAGGING","package":"druntime","parentType":"","signature":"IFCAP_VLAN_HWTAGGING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VLAN_HWTAGGING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_JUMBO_MTU","package":"druntime","parentType":"","signature":"IFCAP_JUMBO_MTU","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_JUMBO_MTU"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_POLLING","package":"druntime","parentType":"","signature":"IFCAP_POLLING","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_POLLING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VLAN_HWCSUM","package":"druntime","parentType":"","signature":"IFCAP_VLAN_HWCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VLAN_HWCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TSO4","package":"druntime","parentType":"","signature":"IFCAP_TSO4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TSO4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TSO6","package":"druntime","parentType":"","signature":"IFCAP_TSO6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TSO6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_LRO","package":"druntime","parentType":"","signature":"IFCAP_LRO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_LRO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_WOL_UCAST","package":"druntime","parentType":"","signature":"IFCAP_WOL_UCAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_WOL_UCAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_WOL_MCAST","package":"druntime","parentType":"","signature":"IFCAP_WOL_MCAST","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_WOL_MCAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_WOL_MAGIC","package":"druntime","parentType":"","signature":"IFCAP_WOL_MAGIC","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_WOL_MAGIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TOE4","package":"druntime","parentType":"","signature":"IFCAP_TOE4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TOE4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TOE6","package":"druntime","parentType":"","signature":"IFCAP_TOE6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TOE6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VLAN_HWFILTER","package":"druntime","parentType":"","signature":"IFCAP_VLAN_HWFILTER","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VLAN_HWFILTER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_NV","package":"druntime","parentType":"","signature":"IFCAP_NV","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_NV"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VLAN_HWTSO","package":"druntime","parentType":"","signature":"IFCAP_VLAN_HWTSO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VLAN_HWTSO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_LINKSTATE","package":"druntime","parentType":"","signature":"IFCAP_LINKSTATE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_LINKSTATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_NETMAP","package":"druntime","parentType":"","signature":"IFCAP_NETMAP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_NETMAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_RXCSUM_IPV6","package":"druntime","parentType":"","signature":"IFCAP_RXCSUM_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_RXCSUM_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXCSUM_IPV6","package":"druntime","parentType":"","signature":"IFCAP_TXCSUM_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXCSUM_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_HWSTATS","package":"druntime","parentType":"","signature":"IFCAP_HWSTATS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_HWSTATS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXRTLMT","package":"druntime","parentType":"","signature":"IFCAP_TXRTLMT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXRTLMT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_HWRXTSTMP","package":"druntime","parentType":"","signature":"IFCAP_HWRXTSTMP","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_HWRXTSTMP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_MEXTPG","package":"druntime","parentType":"","signature":"IFCAP_MEXTPG","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_MEXTPG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXTLS4","package":"druntime","parentType":"","signature":"IFCAP_TXTLS4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXTLS4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXTLS6","package":"druntime","parentType":"","signature":"IFCAP_TXTLS6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXTLS6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VXLAN_HWCSUM","package":"druntime","parentType":"","signature":"IFCAP_VXLAN_HWCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VXLAN_HWCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_VXLAN_HWTSO","package":"druntime","parentType":"","signature":"IFCAP_VXLAN_HWTSO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_VXLAN_HWTSO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXTLS_RTLMT","package":"druntime","parentType":"","signature":"IFCAP_TXTLS_RTLMT","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXTLS_RTLMT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP2_RXTLS4","package":"druntime","parentType":"","signature":"IFCAP2_RXTLS4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP2_RXTLS4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP2_RXTLS6","package":"druntime","parentType":"","signature":"IFCAP2_RXTLS6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP2_RXTLS6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_HWCSUM_IPV6","package":"druntime","parentType":"","signature":"IFCAP_HWCSUM_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_HWCSUM_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_HWCSUM","package":"druntime","parentType":"","signature":"IFCAP_HWCSUM","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_HWCSUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TSO","package":"druntime","parentType":"","signature":"IFCAP_TSO","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TSO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_WOL","package":"druntime","parentType":"","signature":"IFCAP_WOL","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_WOL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TOE","package":"druntime","parentType":"","signature":"IFCAP_TOE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TOE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_TXTLS","package":"druntime","parentType":"","signature":"IFCAP_TXTLS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_TXTLS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_CANTCHANGE","package":"druntime","parentType":"","signature":"IFCAP_CANTCHANGE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_CANTCHANGE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFCAP_ALLCAPS","package":"druntime","parentType":"","signature":"IFCAP_ALLCAPS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFCAP_ALLCAPS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFQ_MAXLEN","package":"druntime","parentType":"","signature":"IFQ_MAXLEN","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFQ_MAXLEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFNET_SLOWHZ","package":"druntime","parentType":"","signature":"IFNET_SLOWHZ","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFNET_SLOWHZ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFAN_ARRIVAL","package":"druntime","parentType":"","signature":"IFAN_ARRIVAL","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFAN_ARRIVAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFAN_DEPARTURE","package":"druntime","parentType":"","signature":"IFAN_DEPARTURE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFAN_DEPARTURE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFR_CAP_NV_MAXBUFSIZE","package":"druntime","parentType":"","signature":"IFR_CAP_NV_MAXBUFSIZE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFR_CAP_NV_MAXBUFSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFSTATMAX","package":"druntime","parentType":"","signature":"IFSTATMAX","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFSTATMAX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFG_ALL","package":"druntime","parentType":"","signature":"IFG_ALL","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFG_ALL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFG_EGRESS","package":"druntime","parentType":"","signature":"IFG_EGRESS","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFG_EGRESS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_FUNC_NONE","package":"druntime","parentType":"","signature":"RSS_FUNC_NONE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_FUNC_NONE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_FUNC_PRIVATE","package":"druntime","parentType":"","signature":"RSS_FUNC_PRIVATE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_FUNC_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_FUNC_TOEPLITZ","package":"druntime","parentType":"","signature":"RSS_FUNC_TOEPLITZ","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_FUNC_TOEPLITZ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_IPV4","package":"druntime","parentType":"","signature":"RSS_TYPE_IPV4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_IPV4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_TCP_IPV4","package":"druntime","parentType":"","signature":"RSS_TYPE_TCP_IPV4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_TCP_IPV4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_IPV6","package":"druntime","parentType":"","signature":"RSS_TYPE_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_IPV6_EX","package":"druntime","parentType":"","signature":"RSS_TYPE_IPV6_EX","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_IPV6_EX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_TCP_IPV6","package":"druntime","parentType":"","signature":"RSS_TYPE_TCP_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_TCP_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_TCP_IPV6_EX","package":"druntime","parentType":"","signature":"RSS_TYPE_TCP_IPV6_EX","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_TCP_IPV6_EX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_UDP_IPV4","package":"druntime","parentType":"","signature":"RSS_TYPE_UDP_IPV4","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_UDP_IPV4"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_UDP_IPV6","package":"druntime","parentType":"","signature":"RSS_TYPE_UDP_IPV6","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_UDP_IPV6"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_TYPE_UDP_IPV6_EX","package":"druntime","parentType":"","signature":"RSS_TYPE_UDP_IPV6_EX","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_TYPE_UDP_IPV6_EX"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"RSS_KEYLEN","package":"druntime","parentType":"","signature":"RSS_KEYLEN","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#RSS_KEYLEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFNET_PCP_NONE","package":"druntime","parentType":"","signature":"IFNET_PCP_NONE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFNET_PCP_NONE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFDR_MSG_SIZE","package":"druntime","parentType":"","signature":"IFDR_MSG_SIZE","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFDR_MSG_SIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFDR_REASON_MSG","package":"druntime","parentType":"","signature":"IFDR_REASON_MSG","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFDR_REASON_MSG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.net.if_","name":"IFDR_REASON_VENDOR","package":"druntime","parentType":"","signature":"IFDR_REASON_VENDOR","url":"/ddoc/druntime/core/sys/freebsd/net/if_.html#IFDR_REASON_VENDOR"},{"doc":"D header file for FreeBSD's net/if_dl.h.","kind":"module","module":"core.sys.freebsd.net.if_dl","name":"core.sys.freebsd.net.if_dl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"LLADDR","package":"druntime","parentType":"","signature":"auto LLADDR()(sockaddr_dl *  s)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/LLADDR.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"CLLADDR","package":"druntime","parentType":"","signature":"auto CLLADDR()(const  sockaddr_dl *  s)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/CLLADDR.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"LLINDEX","package":"druntime","parentType":"","signature":"ushort LLINDEX()(const  sockaddr_dl *  s)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/LLINDEX.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"link_alloc_sdl","package":"druntime","parentType":"","signature":"sockaddr_dl * link_alloc_sdl(size_t,  int)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/link_alloc_sdl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"link_free_sdl","package":"druntime","parentType":"","signature":"void link_free_sdl(sockaddr *  sa)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/link_free_sdl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"link_init_sdl","package":"druntime","parentType":"","signature":"sockaddr_dl * link_init_sdl(ifnet *,  sockaddr *,  ubyte)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/link_init_sdl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"link_addr","package":"druntime","parentType":"","signature":"void link_addr(const  char *,  sockaddr_dl *)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/link_addr.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.net.if_dl","name":"link_ntoa","package":"druntime","parentType":"","signature":"char * link_ntoa(const  sockaddr_dl *)","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl/link_ntoa.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_dl","name":"sockaddr_dl","package":"druntime","parentType":"","signature":"sockaddr_dl","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl.html#sockaddr_dl"},{"doc":"","kind":"struct","module":"core.sys.freebsd.net.if_dl","name":"ifnet","package":"druntime","parentType":"","signature":"ifnet","url":"/ddoc/druntime/core/sys/freebsd/net/if_dl.html#ifnet"},{"doc":"D header file for FreeBSD's extensions to POSIX's netinet/in.h.","kind":"module","module":"core.sys.freebsd.netinet.in_","name":"core.sys.freebsd.netinet.in_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/netinet/in_.html"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.pthread_np","name":"core.sys.freebsd.pthread_np","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/pthread_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_attr_setcreatesuspend_np","package":"druntime","parentType":"","signature":"int pthread_attr_setcreatesuspend_np(pthread_attr_t *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_attr_setcreatesuspend_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_attr_get_np","package":"druntime","parentType":"","signature":"int pthread_attr_get_np(pthread_t,  pthread_attr_t *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_attr_get_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_attr_getaffinity_np","package":"druntime","parentType":"","signature":"int pthread_attr_getaffinity_np(const(pthread_attr_t) *,  size_t,  cpuset_t *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_attr_getaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_attr_setaffinity_np","package":"druntime","parentType":"","signature":"int pthread_attr_setaffinity_np(pthread_attr_t *,  size_t,  const(cpuset_t) *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_attr_setaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_getaffinity_np","package":"druntime","parentType":"","signature":"int pthread_getaffinity_np(pthread_t,  size_t,  cpuset_t *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_getaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_getthreadid_np","package":"druntime","parentType":"","signature":"int pthread_getthreadid_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_getthreadid_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_main_np","package":"druntime","parentType":"","signature":"int pthread_main_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_main_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_multi_np","package":"druntime","parentType":"","signature":"int pthread_multi_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_multi_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutexattr_getkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_getkind_np(pthread_mutexattr_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutexattr_getkind_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutexattr_setkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_setkind_np(pthread_mutexattr_t *,  int)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutexattr_setkind_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_resume_all_np","package":"druntime","parentType":"","signature":"void pthread_resume_all_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_resume_all_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_resume_np","package":"druntime","parentType":"","signature":"int pthread_resume_np(pthread_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_resume_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_set_name_np","package":"druntime","parentType":"","signature":"void pthread_set_name_np(pthread_t,  const(char) *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_set_name_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutex_getspinloops_np","package":"druntime","parentType":"","signature":"int pthread_mutex_getspinloops_np(pthread_mutex_t * mutex,  int  * count)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutex_getspinloops_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutex_setspinloops_np","package":"druntime","parentType":"","signature":"int pthread_mutex_setspinloops_np(pthread_mutex_t * mutex,  int  count)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutex_setspinloops_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutex_getyieldloops_np","package":"druntime","parentType":"","signature":"int pthread_mutex_getyieldloops_np(pthread_mutex_t * mutex,  int  * count)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutex_getyieldloops_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutex_setyieldloops_np","package":"druntime","parentType":"","signature":"int pthread_mutex_setyieldloops_np(pthread_mutex_t * mutex,  int  count)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutex_setyieldloops_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_mutex_isowned_np","package":"druntime","parentType":"","signature":"int pthread_mutex_isowned_np(pthread_mutex_t * mutex)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_mutex_isowned_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_setaffinity_np","package":"druntime","parentType":"","signature":"int pthread_setaffinity_np(pthread_t,  size_t,  const(cpuset_t) *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_setaffinity_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_single_np","package":"druntime","parentType":"","signature":"int pthread_single_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_single_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_suspend_all_np","package":"druntime","parentType":"","signature":"void pthread_suspend_all_np()","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_suspend_all_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_suspend_np","package":"druntime","parentType":"","signature":"int pthread_suspend_np(pthread_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_suspend_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_switch_add_np","package":"druntime","parentType":"","signature":"int pthread_switch_add_np(pthread_switch_routine_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_switch_add_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_switch_delete_np","package":"druntime","parentType":"","signature":"int pthread_switch_delete_np(pthread_switch_routine_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_switch_delete_np.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.pthread_np","name":"pthread_timedjoin_np","package":"druntime","parentType":"","signature":"int pthread_timedjoin_np(pthread_t,  void  * *,  const(timespec) *)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np/pthread_timedjoin_np.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.pthread_np","name":"pthread_switch_routine_t","package":"druntime","parentType":"","signature":"pthread_switch_routine_t = void  function(pthread_t,  pthread_t)","url":"/ddoc/druntime/core/sys/freebsd/pthread_np.html#pthread_switch_routine_t"},{"doc":"","kind":"variable","module":"core.sys.freebsd.pthread_np","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/pthread_np.html#__BSD_VISIBLE"},{"doc":"D header file for FreeBSD stdlib.h.","kind":"module","module":"core.sys.freebsd.stdlib","name":"core.sys.freebsd.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/freebsd/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/freebsd/stdlib/setprogname.html"},{"doc":"D header file for FreeBSD string.","kind":"module","module":"core.sys.freebsd.string","name":"core.sys.freebsd.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/string.html"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys._bitset","name":"core.sys.freebsd.sys._bitset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys._bitset","name":"__bitset_mask","package":"druntime","parentType":"","signature":"c_long __bitset_mask(size_t s)(size_t n)","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset/__bitset_mask.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys._bitset","name":"__bitset_word","package":"druntime","parentType":"","signature":"size_t __bitset_word(size_t s)(size_t n)","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset/__bitset_word.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys._bitset","name":"BITSET_DEFINE","package":"druntime","parentType":"","signature":"BITSET_DEFINE(size_t s)","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset.html#BITSET_DEFINE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys._bitset","name":"NBBY","package":"druntime","parentType":"","signature":"NBBY","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset.html#NBBY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys._bitset","name":"_BITSET_BITS","package":"druntime","parentType":"","signature":"_BITSET_BITS","url":"/ddoc/druntime/core/sys/freebsd/sys/_bitset.html#_BITSET_BITS"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys._cpuset","name":"core.sys.freebsd.sys._cpuset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys._cpuset","name":"_cpuset","package":"druntime","parentType":"","signature":"_cpuset = BITSET_DEFINE!(CPU_SETSIZE)","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html#_cpuset"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys._cpuset","name":"cpuset_t","package":"druntime","parentType":"","signature":"cpuset_t = _cpuset","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html#cpuset_t"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys._cpuset","name":"CPU_MAXSIZE","package":"druntime","parentType":"","signature":"CPU_MAXSIZE","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html#CPU_MAXSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys._cpuset","name":"_NCPUBITS","package":"druntime","parentType":"","signature":"_NCPUBITS","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html#_NCPUBITS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys._cpuset","name":"_NCPUWORDS","package":"druntime","parentType":"","signature":"_NCPUWORDS","url":"/ddoc/druntime/core/sys/freebsd/sys/_cpuset.html#_NCPUWORDS"},{"doc":"D header file for FreeBSD","kind":"module","module":"core.sys.freebsd.sys.cdefs","name":"core.sys.freebsd.sys.cdefs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/cdefs.html"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.cdefs","name":"__POSIX_VISIBLE","package":"druntime","parentType":"","signature":"__POSIX_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/sys/cdefs.html#__POSIX_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.cdefs","name":"__XSI_VISIBLE","package":"druntime","parentType":"","signature":"__XSI_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/sys/cdefs.html#__XSI_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.cdefs","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/sys/cdefs.html#__BSD_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.cdefs","name":"__ISO_C_VISIBLE","package":"druntime","parentType":"","signature":"__ISO_C_VISIBLE","url":"/ddoc/druntime/core/sys/freebsd/sys/cdefs.html#__ISO_C_VISIBLE"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.elf","name":"core.sys.freebsd.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/elf.html"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.elf32","name":"core.sys.freebsd.sys.elf32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf32","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Lword","package":"druntime","parentType":"","signature":"Elf32_Lword = uint64_t","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Lword"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Hashelt","package":"druntime","parentType":"","signature":"Elf32_Hashelt = Elf32_Word","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Size","package":"druntime","parentType":"","signature":"Elf32_Size = Elf32_Word","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Size"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Ssize","package":"druntime","parentType":"","signature":"Elf32_Ssize = Elf32_Sword","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Ssize"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Dyn"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf32","name":"Elf32_Cap","package":"druntime","parentType":"","signature":"Elf32_Cap","url":"/ddoc/druntime/core/sys/freebsd/sys/elf32.html#Elf32_Cap"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.elf64","name":"core.sys.freebsd.sys.elf64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf64","name":"ELF64_R_TYPE_DATA","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_DATA(I)(I i)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64/ELF64_R_TYPE_DATA.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf64","name":"ELF64_R_TYPE_ID","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_ID(I)(I i)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64/ELF64_R_TYPE_ID.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf64","name":"ELF64_R_TYPE_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_INFO(D,  T)(D d,  T t)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64/ELF64_R_TYPE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf64","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF64_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64/ELF64_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Lword","package":"druntime","parentType":"","signature":"Elf64_Lword = uint64_t","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Lword"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Hashelt","package":"druntime","parentType":"","signature":"Elf64_Hashelt = Elf64_Word","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Size","package":"druntime","parentType":"","signature":"Elf64_Size = Elf64_Xword","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Size"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Ssize","package":"druntime","parentType":"","signature":"Elf64_Ssize = Elf64_Sxword","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Ssize"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Dyn"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf64","name":"Elf64_Cap","package":"druntime","parentType":"","signature":"Elf64_Cap","url":"/ddoc/druntime/core/sys/freebsd/sys/elf64.html#Elf64_Cap"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.elf_common","name":"core.sys.freebsd.sys.elf_common","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf_common","name":"IS_ELF","package":"druntime","parentType":"","signature":"auto IS_ELF(T)(T ehdr)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common/IS_ELF.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.elf_common","name":"VER_NDX","package":"druntime","parentType":"","signature":"auto VER_NDX(V)(V v)","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common/VER_NDX.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf_common","name":"Elf_Note","package":"druntime","parentType":"","signature":"Elf_Note","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#Elf_Note"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf_common","name":"Elf_GNU_Hash_Header","package":"druntime","parentType":"","signature":"Elf_GNU_Hash_Header","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#Elf_GNU_Hash_Header"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf_common","name":"VER_DEF_IDX","package":"druntime","parentType":"","signature":"VER_DEF_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_DEF_IDX"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.elf_common","name":"VER_NEED_IDX","package":"druntime","parentType":"","signature":"VER_NEED_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_NEED_IDX"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf_common","name":"Elf32_Auxinfo","package":"druntime","parentType":"","signature":"Elf32_Auxinfo","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#Elf32_Auxinfo"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.elf_common","name":"Elf64_Auxinfo","package":"druntime","parentType":"","signature":"Elf64_Auxinfo","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#Elf64_Auxinfo"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"OLD_EI_BRAND","package":"druntime","parentType":"","signature":"OLD_EI_BRAND","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#OLD_EI_BRAND"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"EM_486","package":"druntime","parentType":"","signature":"EM_486","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#EM_486"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"EM_MIPS_RS4_BE","package":"druntime","parentType":"","signature":"EM_MIPS_RS4_BE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#EM_MIPS_RS4_BE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"EM_ALPHA_STD","package":"druntime","parentType":"","signature":"EM_ALPHA_STD","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#EM_ALPHA_STD"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_dof","package":"druntime","parentType":"","signature":"SHT_SUNW_dof","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_dof"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_cap","package":"druntime","parentType":"","signature":"SHT_SUNW_cap","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_cap"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_SIGNATURE","package":"druntime","parentType":"","signature":"SHT_SUNW_SIGNATURE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_SIGNATURE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_verdef","package":"druntime","parentType":"","signature":"SHT_SUNW_verdef","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_verdef"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_verneed","package":"druntime","parentType":"","signature":"SHT_SUNW_verneed","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_verneed"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SHT_SUNW_versym","package":"druntime","parentType":"","signature":"SHT_SUNW_versym","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SHT_SUNW_versym"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"PT_SUNWDTRACE","package":"druntime","parentType":"","signature":"PT_SUNWDTRACE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#PT_SUNWDTRACE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"PT_SUNWCAP","package":"druntime","parentType":"","signature":"PT_SUNWCAP","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#PT_SUNWCAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_MAXPOSTAGS","package":"druntime","parentType":"","signature":"DT_MAXPOSTAGS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_MAXPOSTAGS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_SUNW_AUXILIARY","package":"druntime","parentType":"","signature":"DT_SUNW_AUXILIARY","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_SUNW_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_SUNW_RTLDINF","package":"druntime","parentType":"","signature":"DT_SUNW_RTLDINF","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_SUNW_RTLDINF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_SUNW_FILTER","package":"druntime","parentType":"","signature":"DT_SUNW_FILTER","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_SUNW_FILTER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_SUNW_CAP","package":"druntime","parentType":"","signature":"DT_SUNW_CAP","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_SUNW_CAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_DEPRECATED_SPARC_REGISTER","package":"druntime","parentType":"","signature":"DT_DEPRECATED_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_DEPRECATED_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DT_USED","package":"druntime","parentType":"","signature":"DT_USED","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DT_USED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"DF_1_BIND_NOW","package":"druntime","parentType":"","signature":"DF_1_BIND_NOW","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#DF_1_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_FPREGSET","package":"druntime","parentType":"","signature":"NT_FPREGSET","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_FPREGSET"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_THRMISC","package":"druntime","parentType":"","signature":"NT_THRMISC","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_THRMISC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_PROC","package":"druntime","parentType":"","signature":"NT_PROCSTAT_PROC","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_PROC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_FILES","package":"druntime","parentType":"","signature":"NT_PROCSTAT_FILES","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_FILES"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_VMMAP","package":"druntime","parentType":"","signature":"NT_PROCSTAT_VMMAP","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_VMMAP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_GROUPS","package":"druntime","parentType":"","signature":"NT_PROCSTAT_GROUPS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_GROUPS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_UMASK","package":"druntime","parentType":"","signature":"NT_PROCSTAT_UMASK","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_UMASK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_RLIMIT","package":"druntime","parentType":"","signature":"NT_PROCSTAT_RLIMIT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_RLIMIT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_OSREL","package":"druntime","parentType":"","signature":"NT_PROCSTAT_OSREL","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_OSREL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_PSSTRINGS","package":"druntime","parentType":"","signature":"NT_PROCSTAT_PSSTRINGS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_PSSTRINGS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"NT_PROCSTAT_AUXV","package":"druntime","parentType":"","signature":"NT_PROCSTAT_AUXV","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#NT_PROCSTAT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"STV_EXPORTED","package":"druntime","parentType":"","signature":"STV_EXPORTED","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#STV_EXPORTED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"STV_SINGLETON","package":"druntime","parentType":"","signature":"STV_SINGLETON","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#STV_SINGLETON"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"STV_ELIMINATE","package":"druntime","parentType":"","signature":"STV_ELIMINATE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#STV_ELIMINATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"VER_NEED_WEAK","package":"druntime","parentType":"","signature":"VER_NEED_WEAK","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_NEED_WEAK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"VER_NEED_HIDDEN","package":"druntime","parentType":"","signature":"VER_NEED_HIDDEN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_NEED_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"VER_NDX_GIVEN","package":"druntime","parentType":"","signature":"VER_NDX_GIVEN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_NDX_GIVEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"VER_NDX_HIDDEN","package":"druntime","parentType":"","signature":"VER_NDX_HIDDEN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#VER_NDX_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"CA_SUNW_NULL","package":"druntime","parentType":"","signature":"CA_SUNW_NULL","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#CA_SUNW_NULL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"CA_SUNW_HW_1","package":"druntime","parentType":"","signature":"CA_SUNW_HW_1","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#CA_SUNW_HW_1"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"CA_SUNW_SF_1","package":"druntime","parentType":"","signature":"CA_SUNW_SF_1","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#CA_SUNW_SF_1"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_FLG_DIRECTBIND","package":"druntime","parentType":"","signature":"SYMINFO_FLG_DIRECTBIND","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_FLG_DIRECTBIND"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_FLG_NOEXTDIRECT","package":"druntime","parentType":"","signature":"SYMINFO_FLG_NOEXTDIRECT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_FLG_NOEXTDIRECT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_FLG_FILTER","package":"druntime","parentType":"","signature":"SYMINFO_FLG_FILTER","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_FLG_FILTER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_FLG_AUXILIARY","package":"druntime","parentType":"","signature":"SYMINFO_FLG_AUXILIARY","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_FLG_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_BT_NONE","package":"druntime","parentType":"","signature":"SYMINFO_BT_NONE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_BT_NONE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"SYMINFO_BT_EXTERN","package":"druntime","parentType":"","signature":"SYMINFO_BT_EXTERN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#SYMINFO_BT_EXTERN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_NULL","package":"druntime","parentType":"","signature":"AT_NULL","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_NULL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_IGNORE","package":"druntime","parentType":"","signature":"AT_IGNORE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_EXECFD","package":"druntime","parentType":"","signature":"AT_EXECFD","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_EXECFD"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PHDR","package":"druntime","parentType":"","signature":"AT_PHDR","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PHDR"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PHENT","package":"druntime","parentType":"","signature":"AT_PHENT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PHENT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PHNUM","package":"druntime","parentType":"","signature":"AT_PHNUM","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PHNUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PAGESZ","package":"druntime","parentType":"","signature":"AT_PAGESZ","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PAGESZ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_BASE","package":"druntime","parentType":"","signature":"AT_BASE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_BASE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_FLAGS","package":"druntime","parentType":"","signature":"AT_FLAGS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_ENTRY","package":"druntime","parentType":"","signature":"AT_ENTRY","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_DCACHEBSIZE","package":"druntime","parentType":"","signature":"AT_DCACHEBSIZE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_DCACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_ICACHEBSIZE","package":"druntime","parentType":"","signature":"AT_ICACHEBSIZE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_ICACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_UCACHEBSIZE","package":"druntime","parentType":"","signature":"AT_UCACHEBSIZE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_UCACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_EXECPATH","package":"druntime","parentType":"","signature":"AT_EXECPATH","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_EXECPATH"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_CANARY","package":"druntime","parentType":"","signature":"AT_CANARY","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_CANARY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_CANARYLEN","package":"druntime","parentType":"","signature":"AT_CANARYLEN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_CANARYLEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_OSRELDATE","package":"druntime","parentType":"","signature":"AT_OSRELDATE","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_OSRELDATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_NCPUS","package":"druntime","parentType":"","signature":"AT_NCPUS","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_NCPUS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PAGESIZES","package":"druntime","parentType":"","signature":"AT_PAGESIZES","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PAGESIZES"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_PAGESIZESLEN","package":"druntime","parentType":"","signature":"AT_PAGESIZESLEN","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_PAGESIZESLEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_STACKPROT","package":"druntime","parentType":"","signature":"AT_STACKPROT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_STACKPROT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_TIMEKEEP","package":"druntime","parentType":"","signature":"AT_TIMEKEEP","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_TIMEKEEP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"AT_COUNT","package":"druntime","parentType":"","signature":"AT_COUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#AT_COUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"R_PPC_COUNT","package":"druntime","parentType":"","signature":"R_PPC_COUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#R_PPC_COUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"R_PPC_EMB_COUNT","package":"druntime","parentType":"","signature":"R_PPC_EMB_COUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#R_PPC_EMB_COUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.elf_common","name":"ET_DYN_LOAD_ADDR","package":"druntime","parentType":"","signature":"ET_DYN_LOAD_ADDR","url":"/ddoc/druntime/core/sys/freebsd/sys/elf_common.html#ET_DYN_LOAD_ADDR"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.event","name":"core.sys.freebsd.sys.event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/event.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.event","name":"EV_SET","package":"druntime","parentType":"","signature":"void EV_SET(kevent_t *  kevp,  typeof(kevent_t.tupleof)  args)","url":"/ddoc/druntime/core/sys/freebsd/sys/event/EV_SET.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.event","name":"kqueue","package":"druntime","parentType":"","signature":"int kqueue()","url":"/ddoc/druntime/core/sys/freebsd/sys/event/kqueue.html"},{"doc":"D header file for FreeBSD.","kind":"module","module":"core.sys.freebsd.sys.link_elf","name":"core.sys.freebsd.sys.link_elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb __callback,  void * __data)","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb_ngc __callback,  void * __data)","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.link_elf","name":"_rtld_addr_phdr","package":"druntime","parentType":"","signature":"int _rtld_addr_phdr(const  void *,  dl_phdr_info *)","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf/_rtld_addr_phdr.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.link_elf","name":"_rtld_get_stack_prot","package":"druntime","parentType":"","signature":"int _rtld_get_stack_prot()","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf/_rtld_get_stack_prot.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.link_elf","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#link_map"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.link_elf","name":"Link_map","package":"druntime","parentType":"","signature":"Link_map = link_map","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#Link_map"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.link_elf","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.link_elf","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.link_elf","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = int  function(dl_phdr_info *,  size_t,  void  *)","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.link_elf","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = int  function(dl_phdr_info *,  size_t,  void  *) @nogc","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.freebsd.sys.link_elf","name":"ElfW","package":"druntime","parentType":"","signature":"ElfW(string type)","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#ElfW"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_ORIG","package":"druntime","parentType":"","signature":"LA_SER_ORIG","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_ORIG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_LIBPATH","package":"druntime","parentType":"","signature":"LA_SER_LIBPATH","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_LIBPATH"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_RUNPATH","package":"druntime","parentType":"","signature":"LA_SER_RUNPATH","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_RUNPATH"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_CONFIG","package":"druntime","parentType":"","signature":"LA_SER_CONFIG","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_DEFAULT","package":"druntime","parentType":"","signature":"LA_SER_DEFAULT","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.link_elf","name":"LA_SER_SECURE","package":"druntime","parentType":"","signature":"LA_SER_SECURE","url":"/ddoc/druntime/core/sys/freebsd/sys/link_elf.html#LA_SER_SECURE"},{"doc":"D header file for FreeBSD","kind":"module","module":"core.sys.freebsd.sys.mman","name":"core.sys.freebsd.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"MAP_FAILED","package":"druntime","parentType":"","signature":"MAP_FAILED","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#MAP_FAILED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"_MADV_NORMAL","package":"druntime","parentType":"","signature":"_MADV_NORMAL","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#_MADV_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"_MADV_RANDOM","package":"druntime","parentType":"","signature":"_MADV_RANDOM","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#_MADV_RANDOM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"_MADV_SEQUENTIAL","package":"druntime","parentType":"","signature":"_MADV_SEQUENTIAL","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#_MADV_SEQUENTIAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"_MADV_WILLNEED","package":"druntime","parentType":"","signature":"_MADV_WILLNEED","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#_MADV_WILLNEED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mman","name":"_MADV_DONTNEED","package":"druntime","parentType":"","signature":"_MADV_DONTNEED","url":"/ddoc/druntime/core/sys/freebsd/sys/mman.html#_MADV_DONTNEED"},{"doc":"D header file for FreeBSD's sys/mount.h.","kind":"module","module":"core.sys.freebsd.sys.mount","name":"core.sys.freebsd.sys.mount","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"fsid_t","package":"druntime","parentType":"","signature":"fsid_t","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#fsid_t"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"fid","package":"druntime","parentType":"","signature":"fid","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#fid"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"statfs_t","package":"druntime","parentType":"","signature":"statfs_t","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#statfs_t"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"fhandle_t","package":"druntime","parentType":"","signature":"fhandle_t","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#fhandle_t"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"ovfsconf","package":"druntime","parentType":"","signature":"ovfsconf","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#ovfsconf"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.mount","name":"fsctlop_t","package":"druntime","parentType":"","signature":"fsctlop_t = uint","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#fsctlop_t"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"vfsidctl","package":"druntime","parentType":"","signature":"vfsidctl","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#vfsidctl"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.mount","name":"vfsquery","package":"druntime","parentType":"","signature":"vfsquery","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#vfsquery"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MAXFIDSZ","package":"druntime","parentType":"","signature":"MAXFIDSZ","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MAXFIDSZ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MFSNAMELEN","package":"druntime","parentType":"","signature":"MFSNAMELEN","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MFSNAMELEN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_RDONLY","package":"druntime","parentType":"","signature":"ulong MNT_RDONLY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_RDONLY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SYNCHRONOUS","package":"druntime","parentType":"","signature":"ulong MNT_SYNCHRONOUS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SYNCHRONOUS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOEXEC","package":"druntime","parentType":"","signature":"ulong MNT_NOEXEC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOEXEC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOSUID","package":"druntime","parentType":"","signature":"ulong MNT_NOSUID","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOSUID"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NFS4ACLS","package":"druntime","parentType":"","signature":"ulong MNT_NFS4ACLS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NFS4ACLS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_UNION","package":"druntime","parentType":"","signature":"ulong MNT_UNION","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_UNION"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_ASYNC","package":"druntime","parentType":"","signature":"ulong MNT_ASYNC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_ASYNC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SUIDDIR","package":"druntime","parentType":"","signature":"ulong MNT_SUIDDIR","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SUIDDIR"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SOFTDEP","package":"druntime","parentType":"","signature":"ulong MNT_SOFTDEP","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SOFTDEP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOSYMFOLLOW","package":"druntime","parentType":"","signature":"ulong MNT_NOSYMFOLLOW","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOSYMFOLLOW"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_GJOURNAL","package":"druntime","parentType":"","signature":"ulong MNT_GJOURNAL","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_GJOURNAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_MULTILABEL","package":"druntime","parentType":"","signature":"ulong MNT_MULTILABEL","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_MULTILABEL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_ACLS","package":"druntime","parentType":"","signature":"ulong MNT_ACLS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_ACLS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOATIME","package":"druntime","parentType":"","signature":"ulong MNT_NOATIME","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOATIME"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOCLUSTERR","package":"druntime","parentType":"","signature":"ulong MNT_NOCLUSTERR","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOCLUSTERR"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOCLUSTERW","package":"druntime","parentType":"","signature":"ulong MNT_NOCLUSTERW","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOCLUSTERW"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SUJ","package":"druntime","parentType":"","signature":"ulong MNT_SUJ","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SUJ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_AUTOMOUNTED","package":"druntime","parentType":"","signature":"ulong MNT_AUTOMOUNTED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_AUTOMOUNTED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_EXRDONLY","package":"druntime","parentType":"","signature":"ulong MNT_EXRDONLY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_EXRDONLY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_EXPORTED","package":"druntime","parentType":"","signature":"ulong MNT_EXPORTED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_EXPORTED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_DEFEXPORTED","package":"druntime","parentType":"","signature":"ulong MNT_DEFEXPORTED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_DEFEXPORTED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_EXPORTANON","package":"druntime","parentType":"","signature":"ulong MNT_EXPORTANON","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_EXPORTANON"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_EXKERB","package":"druntime","parentType":"","signature":"ulong MNT_EXKERB","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_EXKERB"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_EXPUBLIC","package":"druntime","parentType":"","signature":"ulong MNT_EXPUBLIC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_EXPUBLIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_LOCAL","package":"druntime","parentType":"","signature":"ulong MNT_LOCAL","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_QUOTA","package":"druntime","parentType":"","signature":"ulong MNT_QUOTA","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_QUOTA"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_ROOTFS","package":"druntime","parentType":"","signature":"ulong MNT_ROOTFS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_ROOTFS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_USER","package":"druntime","parentType":"","signature":"ulong MNT_USER","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_USER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_IGNORE","package":"druntime","parentType":"","signature":"ulong MNT_IGNORE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_VISFLAGMASK","package":"druntime","parentType":"","signature":"MNT_VISFLAGMASK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_VISFLAGMASK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_UPDATEMASK","package":"druntime","parentType":"","signature":"MNT_UPDATEMASK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_UPDATEMASK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_UPDATE","package":"druntime","parentType":"","signature":"ulong MNT_UPDATE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_DELEXPORT","package":"druntime","parentType":"","signature":"ulong MNT_DELEXPORT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_DELEXPORT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_RELOAD","package":"druntime","parentType":"","signature":"ulong MNT_RELOAD","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_RELOAD"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_FORCE","package":"druntime","parentType":"","signature":"ulong MNT_FORCE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_FORCE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SNAPSHOT","package":"druntime","parentType":"","signature":"ulong MNT_SNAPSHOT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SNAPSHOT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NONBUSY","package":"druntime","parentType":"","signature":"ulong MNT_NONBUSY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NONBUSY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_BYFSID","package":"druntime","parentType":"","signature":"ulong MNT_BYFSID","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_BYFSID"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_CMDFLAGS","package":"druntime","parentType":"","signature":"ulong MNT_CMDFLAGS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_CMDFLAGS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_UNMOUNTF","package":"druntime","parentType":"","signature":"uint MNTK_UNMOUNTF","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_UNMOUNTF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_ASYNC","package":"druntime","parentType":"","signature":"uint MNTK_ASYNC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_ASYNC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_SOFTDEP","package":"druntime","parentType":"","signature":"uint MNTK_SOFTDEP","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_SOFTDEP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_NOINSMNTQ","package":"druntime","parentType":"","signature":"uint MNTK_NOINSMNTQ","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_NOINSMNTQ"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_DRAINING","package":"druntime","parentType":"","signature":"uint MNTK_DRAINING","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_DRAINING"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_REFEXPIRE","package":"druntime","parentType":"","signature":"uint MNTK_REFEXPIRE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_REFEXPIRE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_EXTENDED_SHARED","package":"druntime","parentType":"","signature":"uint MNTK_EXTENDED_SHARED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_EXTENDED_SHARED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_SHARED_WRITES","package":"druntime","parentType":"","signature":"uint MNTK_SHARED_WRITES","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_SHARED_WRITES"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_NO_IOPF","package":"druntime","parentType":"","signature":"uint MNTK_NO_IOPF","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_NO_IOPF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_VGONE_UPPER","package":"druntime","parentType":"","signature":"uint MNTK_VGONE_UPPER","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_VGONE_UPPER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_VGONE_WAITER","package":"druntime","parentType":"","signature":"uint MNTK_VGONE_WAITER","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_VGONE_WAITER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_LOOKUP_EXCL_DOTDOT","package":"druntime","parentType":"","signature":"uint MNTK_LOOKUP_EXCL_DOTDOT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_LOOKUP_EXCL_DOTDOT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_MARKER","package":"druntime","parentType":"","signature":"uint MNTK_MARKER","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_MARKER"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_UNMAPPED_BUFS","package":"druntime","parentType":"","signature":"uint MNTK_UNMAPPED_BUFS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_UNMAPPED_BUFS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_USES_BCACHE","package":"druntime","parentType":"","signature":"uint MNTK_USES_BCACHE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_USES_BCACHE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_NOASYNC","package":"druntime","parentType":"","signature":"uint MNTK_NOASYNC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_NOASYNC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_UNMOUNT","package":"druntime","parentType":"","signature":"uint MNTK_UNMOUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_UNMOUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_MWAIT","package":"druntime","parentType":"","signature":"uint MNTK_MWAIT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_MWAIT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_SUSPEND","package":"druntime","parentType":"","signature":"uint MNTK_SUSPEND","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_SUSPEND"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_SUSPEND2","package":"druntime","parentType":"","signature":"uint MNTK_SUSPEND2","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_SUSPEND2"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_SUSPENDED","package":"druntime","parentType":"","signature":"uint MNTK_SUSPENDED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_SUSPENDED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_NULL_NOCACHE","package":"druntime","parentType":"","signature":"uint MNTK_NULL_NOCACHE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_NULL_NOCACHE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_LOOKUP_SHARED","package":"druntime","parentType":"","signature":"uint MNTK_LOOKUP_SHARED","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_LOOKUP_SHARED"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNTK_NOKNOTE","package":"druntime","parentType":"","signature":"uint MNTK_NOKNOTE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNTK_NOKNOTE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_VFSCONF","package":"druntime","parentType":"","signature":"VFS_VFSCONF","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_VFSCONF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_GENERIC","package":"druntime","parentType":"","signature":"VFS_GENERIC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_GENERIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_MAXTYPENUM","package":"druntime","parentType":"","signature":"VFS_MAXTYPENUM","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_MAXTYPENUM"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_CONF","package":"druntime","parentType":"","signature":"VFS_CONF","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_CONF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_WAIT","package":"druntime","parentType":"","signature":"MNT_WAIT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_WAIT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_NOWAIT","package":"druntime","parentType":"","signature":"MNT_NOWAIT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_NOWAIT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_LAZY","package":"druntime","parentType":"","signature":"MNT_LAZY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_LAZY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"MNT_SUSPEND","package":"druntime","parentType":"","signature":"MNT_SUSPEND","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#MNT_SUSPEND"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_STATIC","package":"druntime","parentType":"","signature":"uint VFCF_STATIC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_STATIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_NETWORK","package":"druntime","parentType":"","signature":"uint VFCF_NETWORK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_NETWORK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_READONLY","package":"druntime","parentType":"","signature":"uint VFCF_READONLY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_READONLY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_SYNTHETIC","package":"druntime","parentType":"","signature":"uint VFCF_SYNTHETIC","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_SYNTHETIC"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_LOOPBACK","package":"druntime","parentType":"","signature":"uint VFCF_LOOPBACK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_LOOPBACK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_UNICODE","package":"druntime","parentType":"","signature":"uint VFCF_UNICODE","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_JAIL","package":"druntime","parentType":"","signature":"uint VFCF_JAIL","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_JAIL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_DELEGADMIN","package":"druntime","parentType":"","signature":"uint VFCF_DELEGADMIN","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_DELEGADMIN"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFCF_SBDRY","package":"druntime","parentType":"","signature":"uint VFCF_SBDRY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFCF_SBDRY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_CTL_VERS1","package":"druntime","parentType":"","signature":"uint VFS_CTL_VERS1","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_CTL_VERS1"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_CTL_QUERY","package":"druntime","parentType":"","signature":"uint VFS_CTL_QUERY","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_CTL_QUERY"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_CTL_TIMEO","package":"druntime","parentType":"","signature":"uint VFS_CTL_TIMEO","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_CTL_TIMEO"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VFS_CTL_NOLOCKS","package":"druntime","parentType":"","signature":"uint VFS_CTL_NOLOCKS","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VFS_CTL_NOLOCKS"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_NOTRESP","package":"druntime","parentType":"","signature":"uint VQ_NOTRESP","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_NOTRESP"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_NEEDAUTH","package":"druntime","parentType":"","signature":"uint VQ_NEEDAUTH","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_NEEDAUTH"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_LOWDISK","package":"druntime","parentType":"","signature":"uint VQ_LOWDISK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_LOWDISK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_MOUNT","package":"druntime","parentType":"","signature":"uint VQ_MOUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_MOUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_UNMOUNT","package":"druntime","parentType":"","signature":"uint VQ_UNMOUNT","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_UNMOUNT"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_DEAD","package":"druntime","parentType":"","signature":"uint VQ_DEAD","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_DEAD"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_ASSIST","package":"druntime","parentType":"","signature":"uint VQ_ASSIST","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_ASSIST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_NOTRESPLOCK","package":"druntime","parentType":"","signature":"uint VQ_NOTRESPLOCK","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_NOTRESPLOCK"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG0100","package":"druntime","parentType":"","signature":"uint VQ_FLAG0100","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG0100"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG0200","package":"druntime","parentType":"","signature":"uint VQ_FLAG0200","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG0200"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG0400","package":"druntime","parentType":"","signature":"uint VQ_FLAG0400","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG0400"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG0800","package":"druntime","parentType":"","signature":"uint VQ_FLAG0800","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG0800"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG1000","package":"druntime","parentType":"","signature":"uint VQ_FLAG1000","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG1000"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG2000","package":"druntime","parentType":"","signature":"uint VQ_FLAG2000","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG2000"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG4000","package":"druntime","parentType":"","signature":"uint VQ_FLAG4000","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG4000"},{"doc":"","kind":"variable","module":"core.sys.freebsd.sys.mount","name":"VQ_FLAG8000","package":"druntime","parentType":"","signature":"uint VQ_FLAG8000","url":"/ddoc/druntime/core/sys/freebsd/sys/mount.html#VQ_FLAG8000"},{"doc":"D header file for FreeBSD's extensions to POSIX's sys/socket.h.","kind":"module","module":"core.sys.freebsd.sys.socket","name":"core.sys.freebsd.sys.socket","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/socket.html"},{"doc":"","kind":"struct","module":"core.sys.freebsd.sys.socket","name":"accept_filter_arg","package":"druntime","parentType":"","signature":"accept_filter_arg","url":"/ddoc/druntime/core/sys/freebsd/sys/socket.html#accept_filter_arg"},{"doc":"D header file for FreeBSD sys/sysctl.h","kind":"module","module":"core.sys.freebsd.sys.sysctl","name":"core.sys.freebsd.sys.sysctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.sysctl","name":"sysctl","package":"druntime","parentType":"","signature":"int sysctl(const  int *  name,  uint  namelen,  void *  oldp,  size_t *  oldlenp,\n            const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/freebsd/sys/sysctl/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.sysctl","name":"sysctlbyname","package":"druntime","parentType":"","signature":"int sysctlbyname(const  char *  name,  void *  oldp,  size_t *  oldlenp,\n                  const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/freebsd/sys/sysctl/sysctlbyname.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.sys.sysctl","name":"sysctlnametomib","package":"druntime","parentType":"","signature":"int sysctlnametomib(const  char *  name,  int *  mibp,  size_t *  sizep)","url":"/ddoc/druntime/core/sys/freebsd/sys/sysctl/sysctlnametomib.html"},{"doc":"D header file for FreeBSD's extensions to POSIX's sys/types.h.","kind":"module","module":"core.sys.freebsd.sys.types","name":"core.sys.freebsd.sys.types","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"caddr_t","package":"druntime","parentType":"","signature":"caddr_t = ubyte *","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#caddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"c_caddr_t","package":"druntime","parentType":"","signature":"c_caddr_t = const(ubyte) *","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#c_caddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"cpuwhich_t","package":"druntime","parentType":"","signature":"cpuwhich_t = int","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#cpuwhich_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"cpulevel_t","package":"druntime","parentType":"","signature":"cpulevel_t = int","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#cpulevel_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"cpusetid_t","package":"druntime","parentType":"","signature":"cpusetid_t = int","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#cpusetid_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"critical_t","package":"druntime","parentType":"","signature":"critical_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#critical_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"daddr_t","package":"druntime","parentType":"","signature":"daddr_t = long","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#daddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"fixpt_t","package":"druntime","parentType":"","signature":"fixpt_t = uint","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#fixpt_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"accmode_t","package":"druntime","parentType":"","signature":"accmode_t = int","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#accmode_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"register_t","package":"druntime","parentType":"","signature":"register_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#register_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"sbintime_t","package":"druntime","parentType":"","signature":"sbintime_t = long","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#sbintime_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"segsz_t","package":"druntime","parentType":"","signature":"segsz_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#segsz_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"u_register_t","package":"druntime","parentType":"","signature":"u_register_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#u_register_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"cap_ioctl_t","package":"druntime","parentType":"","signature":"cap_ioctl_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#cap_ioctl_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"kpaddr_t","package":"druntime","parentType":"","signature":"kpaddr_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#kpaddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"kvaddr_t","package":"druntime","parentType":"","signature":"kvaddr_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#kvaddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"ksize_t","package":"druntime","parentType":"","signature":"ksize_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#ksize_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"kssize_t","package":"druntime","parentType":"","signature":"kssize_t = long","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#kssize_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"vm_offset_t","package":"druntime","parentType":"","signature":"vm_offset_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#vm_offset_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"vm_ooffset_t","package":"druntime","parentType":"","signature":"vm_ooffset_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#vm_ooffset_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"vm_paddr_t","package":"druntime","parentType":"","signature":"vm_paddr_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#vm_paddr_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"vm_pindex_t","package":"druntime","parentType":"","signature":"vm_pindex_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#vm_pindex_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"vm_size_t","package":"druntime","parentType":"","signature":"vm_size_t = size_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#vm_size_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"rman_res_t","package":"druntime","parentType":"","signature":"rman_res_t = ulong","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#rman_res_t"},{"doc":"","kind":"alias","module":"core.sys.freebsd.sys.types","name":"syscallarg_t","package":"druntime","parentType":"","signature":"syscallarg_t = register_t","url":"/ddoc/druntime/core/sys/freebsd/sys/types.html#syscallarg_t"},{"doc":"D header file for FreeBSD's extensions to POSIX's time.h.","kind":"module","module":"core.sys.freebsd.time","name":"core.sys.freebsd.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/time.html"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_VIRTUAL","package":"druntime","parentType":"","signature":"CLOCK_VIRTUAL","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_VIRTUAL"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_PROF","package":"druntime","parentType":"","signature":"CLOCK_PROF","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_PROF"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_UPTIME","package":"druntime","parentType":"","signature":"CLOCK_UPTIME","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_UPTIME"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_UPTIME_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_UPTIME_PRECISE","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_UPTIME_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_UPTIME_FAST","package":"druntime","parentType":"","signature":"CLOCK_UPTIME_FAST","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_UPTIME_FAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_REALTIME_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_PRECISE","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_REALTIME_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_REALTIME_FAST","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_FAST","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_REALTIME_FAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_MONOTONIC_PRECISE","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_PRECISE","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_MONOTONIC_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_MONOTONIC_FAST","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_FAST","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_MONOTONIC_FAST"},{"doc":"","kind":"variable","module":"core.sys.freebsd.time","name":"CLOCK_SECOND","package":"druntime","parentType":"","signature":"CLOCK_SECOND","url":"/ddoc/druntime/core/sys/freebsd/time.html#CLOCK_SECOND"},{"doc":"D header file for FreeBSD's extensions to POSIX's unistd.h.","kind":"module","module":"core.sys.freebsd.unistd","name":"core.sys.freebsd.unistd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/freebsd/unistd.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.unistd","name":"getosreldate","package":"druntime","parentType":"","signature":"int getosreldate()","url":"/ddoc/druntime/core/sys/freebsd/unistd/getosreldate.html"},{"doc":"","kind":"function","module":"core.sys.freebsd.unistd","name":"closefrom","package":"druntime","parentType":"","signature":"void closefrom(int)","url":"/ddoc/druntime/core/sys/freebsd/unistd/closefrom.html"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.config","name":"core.sys.linux.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/config.html"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"_GNU_SOURCE","package":"druntime","parentType":"","signature":"_GNU_SOURCE","url":"/ddoc/druntime/core/sys/linux/config.html#_GNU_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"_DEFAULT_SOURCE","package":"druntime","parentType":"","signature":"_DEFAULT_SOURCE","url":"/ddoc/druntime/core/sys/linux/config.html#_DEFAULT_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"_ATFILE_SOURCE","package":"druntime","parentType":"","signature":"_ATFILE_SOURCE","url":"/ddoc/druntime/core/sys/linux/config.html#_ATFILE_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"_BSD_SOURCE","package":"druntime","parentType":"","signature":"_BSD_SOURCE","url":"/ddoc/druntime/core/sys/linux/config.html#_BSD_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"_SVID_SOURCE","package":"druntime","parentType":"","signature":"_SVID_SOURCE","url":"/ddoc/druntime/core/sys/linux/config.html#_SVID_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"__USE_MISC","package":"druntime","parentType":"","signature":"__USE_MISC","url":"/ddoc/druntime/core/sys/linux/config.html#__USE_MISC"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"__USE_ATFILE","package":"druntime","parentType":"","signature":"__USE_ATFILE","url":"/ddoc/druntime/core/sys/linux/config.html#__USE_ATFILE"},{"doc":"","kind":"variable","module":"core.sys.linux.config","name":"__USE_GNU","package":"druntime","parentType":"","signature":"__USE_GNU","url":"/ddoc/druntime/core/sys/linux/config.html#__USE_GNU"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.dlfcn","name":"core.sys.linux.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/dlfcn.html"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.elf","name":"core.sys.linux.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/elf.html"},{"doc":"","kind":"function","module":"core.sys.linux.elf","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/linux/elf/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.linux.elf","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"ELF64_ST_VISIBILITY = ELF32_ST_VISIBILITY","url":"/ddoc/druntime/core/sys/linux/elf.html#ELF64_ST_VISIBILITY"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf32_Dyn"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf64_Dyn"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf32_auxv_t","package":"druntime","parentType":"","signature":"Elf32_auxv_t","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf32_auxv_t"},{"doc":"","kind":"struct","module":"core.sys.linux.elf","name":"Elf64_auxv_t","package":"druntime","parentType":"","signature":"Elf64_auxv_t","url":"/ddoc/druntime/core/sys/linux/elf.html#Elf64_auxv_t"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_FPREGSET","package":"druntime","parentType":"","signature":"NT_FPREGSET","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_FPREGSET"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRXREG","package":"druntime","parentType":"","signature":"NT_PRXREG","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRXREG"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_TASKSTRUCT","package":"druntime","parentType":"","signature":"NT_TASKSTRUCT","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_TASKSTRUCT"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PLATFORM","package":"druntime","parentType":"","signature":"NT_PLATFORM","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PLATFORM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_AUXV","package":"druntime","parentType":"","signature":"NT_AUXV","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_GWINDOWS","package":"druntime","parentType":"","signature":"NT_GWINDOWS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_GWINDOWS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_ASRS","package":"druntime","parentType":"","signature":"NT_ASRS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_ASRS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PSTATUS","package":"druntime","parentType":"","signature":"NT_PSTATUS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PSTATUS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PSINFO","package":"druntime","parentType":"","signature":"NT_PSINFO","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PSINFO"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRCRED","package":"druntime","parentType":"","signature":"NT_PRCRED","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRCRED"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_UTSNAME","package":"druntime","parentType":"","signature":"NT_UTSNAME","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_UTSNAME"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_LWPSTATUS","package":"druntime","parentType":"","signature":"NT_LWPSTATUS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_LWPSTATUS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_LWPSINFO","package":"druntime","parentType":"","signature":"NT_LWPSINFO","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_LWPSINFO"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRFPXREG","package":"druntime","parentType":"","signature":"NT_PRFPXREG","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRFPXREG"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_SIGINFO","package":"druntime","parentType":"","signature":"NT_SIGINFO","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_SIGINFO"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_FILE","package":"druntime","parentType":"","signature":"NT_FILE","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_FILE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PRXFPREG","package":"druntime","parentType":"","signature":"NT_PRXFPREG","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PRXFPREG"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PPC_VMX","package":"druntime","parentType":"","signature":"NT_PPC_VMX","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PPC_VMX"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PPC_SPE","package":"druntime","parentType":"","signature":"NT_PPC_SPE","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PPC_SPE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_PPC_VSX","package":"druntime","parentType":"","signature":"NT_PPC_VSX","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_PPC_VSX"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_386_TLS","package":"druntime","parentType":"","signature":"NT_386_TLS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_386_TLS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_386_IOPERM","package":"druntime","parentType":"","signature":"NT_386_IOPERM","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_386_IOPERM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_X86_XSTATE","package":"druntime","parentType":"","signature":"NT_X86_XSTATE","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_X86_XSTATE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_HIGH_GPRS","package":"druntime","parentType":"","signature":"NT_S390_HIGH_GPRS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_HIGH_GPRS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_TIMER","package":"druntime","parentType":"","signature":"NT_S390_TIMER","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_TIMER"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_TODCMP","package":"druntime","parentType":"","signature":"NT_S390_TODCMP","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_TODCMP"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_TODPREG","package":"druntime","parentType":"","signature":"NT_S390_TODPREG","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_TODPREG"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_CTRS","package":"druntime","parentType":"","signature":"NT_S390_CTRS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_CTRS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_PREFIX","package":"druntime","parentType":"","signature":"NT_S390_PREFIX","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_LAST_BREAK","package":"druntime","parentType":"","signature":"NT_S390_LAST_BREAK","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_LAST_BREAK"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_SYSTEM_CALL","package":"druntime","parentType":"","signature":"NT_S390_SYSTEM_CALL","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_SYSTEM_CALL"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_S390_TDB","package":"druntime","parentType":"","signature":"NT_S390_TDB","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_S390_TDB"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_ARM_VFP","package":"druntime","parentType":"","signature":"NT_ARM_VFP","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_ARM_VFP"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_ARM_TLS","package":"druntime","parentType":"","signature":"NT_ARM_TLS","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_ARM_TLS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_ARM_HW_BREAK","package":"druntime","parentType":"","signature":"NT_ARM_HW_BREAK","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_ARM_HW_BREAK"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_ARM_HW_WATCH","package":"druntime","parentType":"","signature":"NT_ARM_HW_WATCH","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_ARM_HW_WATCH"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_VERSION","package":"druntime","parentType":"","signature":"NT_VERSION","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_VERSION"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_GNU_ABI_TAG","package":"druntime","parentType":"","signature":"NT_GNU_ABI_TAG","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_GNU_ABI_TAG"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_GNU_HWCAP","package":"druntime","parentType":"","signature":"NT_GNU_HWCAP","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_GNU_HWCAP"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_GNU_BUILD_ID","package":"druntime","parentType":"","signature":"NT_GNU_BUILD_ID","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_GNU_BUILD_ID"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"NT_GNU_GOLD_VERSION","package":"druntime","parentType":"","signature":"NT_GNU_GOLD_VERSION","url":"/ddoc/druntime/core/sys/linux/elf.html#NT_GNU_GOLD_VERSION"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_NULL","package":"druntime","parentType":"","signature":"AT_NULL","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_NULL"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_IGNORE","package":"druntime","parentType":"","signature":"AT_IGNORE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_EXECFD","package":"druntime","parentType":"","signature":"AT_EXECFD","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_EXECFD"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_PHDR","package":"druntime","parentType":"","signature":"AT_PHDR","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_PHDR"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_PHENT","package":"druntime","parentType":"","signature":"AT_PHENT","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_PHENT"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_PHNUM","package":"druntime","parentType":"","signature":"AT_PHNUM","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_PHNUM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_PAGESZ","package":"druntime","parentType":"","signature":"AT_PAGESZ","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_PAGESZ"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_BASE","package":"druntime","parentType":"","signature":"AT_BASE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_BASE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_FLAGS","package":"druntime","parentType":"","signature":"AT_FLAGS","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_ENTRY","package":"druntime","parentType":"","signature":"AT_ENTRY","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_NOTELF","package":"druntime","parentType":"","signature":"AT_NOTELF","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_NOTELF"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_UID","package":"druntime","parentType":"","signature":"AT_UID","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_UID"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_EUID","package":"druntime","parentType":"","signature":"AT_EUID","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_EUID"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_GID","package":"druntime","parentType":"","signature":"AT_GID","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_GID"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_EGID","package":"druntime","parentType":"","signature":"AT_EGID","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_EGID"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_CLKTCK","package":"druntime","parentType":"","signature":"AT_CLKTCK","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_CLKTCK"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_PLATFORM","package":"druntime","parentType":"","signature":"AT_PLATFORM","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_PLATFORM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_HWCAP","package":"druntime","parentType":"","signature":"AT_HWCAP","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_HWCAP"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_FPUCW","package":"druntime","parentType":"","signature":"AT_FPUCW","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_FPUCW"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_DCACHEBSIZE","package":"druntime","parentType":"","signature":"AT_DCACHEBSIZE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_DCACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_ICACHEBSIZE","package":"druntime","parentType":"","signature":"AT_ICACHEBSIZE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_ICACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_UCACHEBSIZE","package":"druntime","parentType":"","signature":"AT_UCACHEBSIZE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_UCACHEBSIZE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_IGNOREPPC","package":"druntime","parentType":"","signature":"AT_IGNOREPPC","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_IGNOREPPC"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_SECURE","package":"druntime","parentType":"","signature":"AT_SECURE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_SECURE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_BASE_PLATFORM","package":"druntime","parentType":"","signature":"AT_BASE_PLATFORM","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_BASE_PLATFORM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_RANDOM","package":"druntime","parentType":"","signature":"AT_RANDOM","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_RANDOM"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_HWCAP2","package":"druntime","parentType":"","signature":"AT_HWCAP2","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_HWCAP2"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_EXECFN","package":"druntime","parentType":"","signature":"AT_EXECFN","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_EXECFN"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_SYSINFO","package":"druntime","parentType":"","signature":"AT_SYSINFO","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_SYSINFO"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_SYSINFO_EHDR","package":"druntime","parentType":"","signature":"AT_SYSINFO_EHDR","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_SYSINFO_EHDR"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_L1I_CACHESHAPE","package":"druntime","parentType":"","signature":"AT_L1I_CACHESHAPE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_L1I_CACHESHAPE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_L1D_CACHESHAPE","package":"druntime","parentType":"","signature":"AT_L1D_CACHESHAPE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_L1D_CACHESHAPE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_L2_CACHESHAPE","package":"druntime","parentType":"","signature":"AT_L2_CACHESHAPE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_L2_CACHESHAPE"},{"doc":"","kind":"variable","module":"core.sys.linux.elf","name":"AT_L3_CACHESHAPE","package":"druntime","parentType":"","signature":"AT_L3_CACHESHAPE","url":"/ddoc/druntime/core/sys/linux/elf.html#AT_L3_CACHESHAPE"},{"doc":"D header file to interface with the Linux epoll API (http://man7.org/linux/man-pages/man7/epoll.7.html). Available since Linux 2.6","kind":"module","module":"core.sys.linux.epoll","name":"core.sys.linux.epoll","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/epoll.html"},{"doc":"Creates an epoll instance.","kind":"function","module":"core.sys.linux.epoll","name":"epoll_create","package":"druntime","parentType":"","signature":"int epoll_create(int  size)","url":"/ddoc/druntime/core/sys/linux/epoll/epoll_create.html"},{"doc":"Creates an epoll instance.","kind":"function","module":"core.sys.linux.epoll","name":"epoll_create1","package":"druntime","parentType":"","signature":"int epoll_create1(int  flags)","url":"/ddoc/druntime/core/sys/linux/epoll/epoll_create1.html"},{"doc":"Manipulate an epoll instance","kind":"function","module":"core.sys.linux.epoll","name":"epoll_ctl","package":"druntime","parentType":"","signature":"int epoll_ctl(int  epfd,  int  op,  int  fd,  epoll_event * event)","url":"/ddoc/druntime/core/sys/linux/epoll/epoll_ctl.html"},{"doc":"Wait for events on an epoll instance.","kind":"function","module":"core.sys.linux.epoll","name":"epoll_wait","package":"druntime","parentType":"","signature":"int epoll_wait(int  epfd,  epoll_event * events,  int  maxevents,  int  timeout)","url":"/ddoc/druntime/core/sys/linux/epoll/epoll_wait.html"},{"doc":"Wait for events on an epoll instance","kind":"function","module":"core.sys.linux.epoll","name":"epoll_pwait","package":"druntime","parentType":"","signature":"int epoll_pwait(int  epfd,  epoll_event * events,  int  maxevents,  int  timeout,\n     const  sigset_t * ss)","url":"/ddoc/druntime/core/sys/linux/epoll/epoll_pwait.html"},{"doc":"","kind":"union","module":"core.sys.linux.epoll","name":"epoll_data_t","package":"druntime","parentType":"","signature":"epoll_data_t","url":"/ddoc/druntime/core/sys/linux/epoll.html#epoll_data_t"},{"doc":"D header file for Linux err.h.","kind":"module","module":"core.sys.linux.err","name":"core.sys.linux.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/err.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/linux/err/err.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/linux/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/linux/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/linux/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/linux/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/linux/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/linux/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.linux.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/linux/err/vwarnx.html"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.errno","name":"core.sys.linux.errno","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/errno.html"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.execinfo","name":"core.sys.linux.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/execinfo.html"},{"doc":"","kind":"function","module":"core.sys.linux.execinfo","name":"backtrace","package":"druntime","parentType":"","signature":"int backtrace(void * *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/linux/execinfo/backtrace.html"},{"doc":"","kind":"function","module":"core.sys.linux.execinfo","name":"backtrace_symbols","package":"druntime","parentType":"","signature":"char * * backtrace_symbols(const(void *) *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/linux/execinfo/backtrace_symbols.html"},{"doc":"","kind":"function","module":"core.sys.linux.execinfo","name":"backtrace_symbols_fd","package":"druntime","parentType":"","signature":"void backtrace_symbols_fd(const(void *) *  buffer,  int  size,  int  fd)","url":"/ddoc/druntime/core/sys/linux/execinfo/backtrace_symbols_fd.html"},{"doc":"","kind":"module","module":"core.sys.linux.fcntl","name":"core.sys.linux.fcntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/fcntl.html"},{"doc":"Open File Description locks","kind":"function","module":"core.sys.linux.fcntl","name":"fallocate","package":"druntime","parentType":"","signature":"int fallocate(int  fd,  int  mode,  off_t offset,  off_t len)","url":"/ddoc/druntime/core/sys/linux/fcntl/fallocate.html"},{"doc":"D header file for the linux/fs.h interface.","kind":"module","module":"core.sys.linux.fs","name":"core.sys.linux.fs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/fs.html"},{"doc":"","kind":"struct","module":"core.sys.linux.fs","name":"file_clone_range","package":"druntime","parentType":"","signature":"file_clone_range","url":"/ddoc/druntime/core/sys/linux/fs.html#file_clone_range"},{"doc":"","kind":"struct","module":"core.sys.linux.fs","name":"fstrim_range","package":"druntime","parentType":"","signature":"fstrim_range","url":"/ddoc/druntime/core/sys/linux/fs.html#fstrim_range"},{"doc":"from struct btrfs_ioctl_file_extent_same_info","kind":"struct","module":"core.sys.linux.fs","name":"file_dedupe_range_info","package":"druntime","parentType":"","signature":"file_dedupe_range_info","url":"/ddoc/druntime/core/sys/linux/fs.html#file_dedupe_range_info"},{"doc":"from struct btrfs_ioctl_file_extent_same_args","kind":"struct","module":"core.sys.linux.fs","name":"file_dedupe_range","package":"druntime","parentType":"","signature":"file_dedupe_range","url":"/ddoc/druntime/core/sys/linux/fs.html#file_dedupe_range"},{"doc":"And dynamically-tunable limits and defaults:","kind":"struct","module":"core.sys.linux.fs","name":"files_stat_struct","package":"druntime","parentType":"","signature":"files_stat_struct","url":"/ddoc/druntime/core/sys/linux/fs.html#files_stat_struct"},{"doc":"","kind":"struct","module":"core.sys.linux.fs","name":"inodes_stat_t","package":"druntime","parentType":"","signature":"inodes_stat_t","url":"/ddoc/druntime/core/sys/linux/fs.html#inodes_stat_t"},{"doc":"Structure for FS_IOC_FSGETXATTR[A] and FS_IOC_FSSETXATTR.","kind":"struct","module":"core.sys.linux.fs","name":"fsxattr","package":"druntime","parentType":"","signature":"fsxattr","url":"/ddoc/druntime/core/sys/linux/fs.html#fsxattr"},{"doc":"","kind":"alias","module":"core.sys.linux.fs","name":"__kernel_rwf_t","package":"druntime","parentType":"","signature":"__kernel_rwf_t = int","url":"/ddoc/druntime/core/sys/linux/fs.html#__kernel_rwf_t"},{"doc":"Initial setting for nfile rlimits","kind":"variable","module":"core.sys.linux.fs","name":"INR_OPEN_CUR","package":"druntime","parentType":"","signature":"INR_OPEN_CUR","url":"/ddoc/druntime/core/sys/linux/fs.html#INR_OPEN_CUR"},{"doc":"Hard limit for nfile rlimits","kind":"variable","module":"core.sys.linux.fs","name":"INR_OPEN_MAX","package":"druntime","parentType":"","signature":"INR_OPEN_MAX","url":"/ddoc/druntime/core/sys/linux/fs.html#INR_OPEN_MAX"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"BLOCK_SIZE_BITS","package":"druntime","parentType":"","signature":"BLOCK_SIZE_BITS","url":"/ddoc/druntime/core/sys/linux/fs.html#BLOCK_SIZE_BITS"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"BLOCK_SIZE","package":"druntime","parentType":"","signature":"BLOCK_SIZE","url":"/ddoc/druntime/core/sys/linux/fs.html#BLOCK_SIZE"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"NR_FILE","package":"druntime","parentType":"","signature":"NR_FILE","url":"/ddoc/druntime/core/sys/linux/fs.html#NR_FILE"},{"doc":"Max chars for the interface; each fs may differ","kind":"variable","module":"core.sys.linux.fs","name":"FSLABEL_MAX","package":"druntime","parentType":"","signature":"FSLABEL_MAX","url":"/ddoc/druntime/core/sys/linux/fs.html#FSLABEL_MAX"},{"doc":"Inode flags (FS_IOC_GETFLAGS / FS_IOC_SETFLAGS)","kind":"variable","module":"core.sys.linux.fs","name":"FS_FL_USER_VISIBLE","package":"druntime","parentType":"","signature":"FS_FL_USER_VISIBLE","url":"/ddoc/druntime/core/sys/linux/fs.html#FS_FL_USER_VISIBLE"},{"doc":"User modifiable flags","kind":"variable","module":"core.sys.linux.fs","name":"FS_FL_USER_MODIFIABLE","package":"druntime","parentType":"","signature":"FS_FL_USER_MODIFIABLE","url":"/ddoc/druntime/core/sys/linux/fs.html#FS_FL_USER_MODIFIABLE"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"SYNC_FILE_RANGE_WAIT_BEFORE","package":"druntime","parentType":"","signature":"SYNC_FILE_RANGE_WAIT_BEFORE","url":"/ddoc/druntime/core/sys/linux/fs.html#SYNC_FILE_RANGE_WAIT_BEFORE"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"SYNC_FILE_RANGE_WRITE","package":"druntime","parentType":"","signature":"SYNC_FILE_RANGE_WRITE","url":"/ddoc/druntime/core/sys/linux/fs.html#SYNC_FILE_RANGE_WRITE"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"SYNC_FILE_RANGE_WAIT_AFTER","package":"druntime","parentType":"","signature":"SYNC_FILE_RANGE_WAIT_AFTER","url":"/ddoc/druntime/core/sys/linux/fs.html#SYNC_FILE_RANGE_WAIT_AFTER"},{"doc":"","kind":"variable","module":"core.sys.linux.fs","name":"SYNC_FILE_RANGE_WRITE_AND_WAIT","package":"druntime","parentType":"","signature":"SYNC_FILE_RANGE_WRITE_AND_WAIT","url":"/ddoc/druntime/core/sys/linux/fs.html#SYNC_FILE_RANGE_WRITE_AND_WAIT"},{"doc":"mask of flags supported by the kernel","kind":"variable","module":"core.sys.linux.fs","name":"RWF_SUPPORTED","package":"druntime","parentType":"","signature":"RWF_SUPPORTED","url":"/ddoc/druntime/core/sys/linux/fs.html#RWF_SUPPORTED"},{"doc":"D binding for the interface addresses querying","kind":"module","module":"core.sys.linux.ifaddrs","name":"core.sys.linux.ifaddrs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/ifaddrs.html"},{"doc":"Returns: linked list of ifaddrs structures describing interfaces","kind":"function","module":"core.sys.linux.ifaddrs","name":"getifaddrs","package":"druntime","parentType":"","signature":"int getifaddrs(ifaddrs * * )","url":"/ddoc/druntime/core/sys/linux/ifaddrs/getifaddrs.html"},{"doc":"Frees the linked list returned by getifaddrs","kind":"function","module":"core.sys.linux.ifaddrs","name":"freeifaddrs","package":"druntime","parentType":"","signature":"void freeifaddrs(ifaddrs * )","url":"/ddoc/druntime/core/sys/linux/ifaddrs/freeifaddrs.html"},{"doc":"","kind":"struct","module":"core.sys.linux.ifaddrs","name":"ifaddrs","package":"druntime","parentType":"","signature":"ifaddrs","url":"/ddoc/druntime/core/sys/linux/ifaddrs.html#ifaddrs"},{"doc":"D header file for the io_uring interface. Available since Linux 5.1","kind":"module","module":"core.sys.linux.io_uring","name":"core.sys.linux.io_uring","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/io_uring.html"},{"doc":"IO submission data structure (Submission Queue Entry)","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_sqe","package":"druntime","parentType":"","signature":"io_uring_sqe","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_sqe"},{"doc":"IO completion data structure (Completion Queue Entry)","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_cqe","package":"druntime","parentType":"","signature":"io_uring_cqe","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_cqe"},{"doc":"Filled with the offset for mmap(2)","kind":"struct","module":"core.sys.linux.io_uring","name":"io_sqring_offsets","package":"druntime","parentType":"","signature":"io_sqring_offsets","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_sqring_offsets"},{"doc":"","kind":"struct","module":"core.sys.linux.io_uring","name":"io_cqring_offsets","package":"druntime","parentType":"","signature":"io_cqring_offsets","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_cqring_offsets"},{"doc":"Passed in for io_uring_setup(2)","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_params","package":"druntime","parentType":"","signature":"io_uring_params","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_params"},{"doc":"io_uring_register(2) opcodes and arguments","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_files_update","package":"druntime","parentType":"","signature":"io_uring_files_update","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_files_update"},{"doc":"","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_probe_op","package":"druntime","parentType":"","signature":"io_uring_probe_op","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_probe_op"},{"doc":"","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_probe","package":"druntime","parentType":"","signature":"io_uring_probe","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_probe"},{"doc":"","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_restriction","package":"druntime","parentType":"","signature":"io_uring_restriction","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_restriction"},{"doc":"","kind":"struct","module":"core.sys.linux.io_uring","name":"io_uring_getevents_arg","package":"druntime","parentType":"","signature":"io_uring_getevents_arg","url":"/ddoc/druntime/core/sys/linux/io_uring.html#io_uring_getevents_arg"},{"doc":"io_uring_setup() flags","kind":"variable","module":"core.sys.linux.io_uring","name":"SPLICE_F_FD_IN_FIXED","package":"druntime","parentType":"","signature":"SPLICE_F_FD_IN_FIXED","url":"/ddoc/druntime/core/sys/linux/io_uring.html#SPLICE_F_FD_IN_FIXED"},{"doc":"If set, the upper 16 bits are the buffer ID","kind":"variable","module":"core.sys.linux.io_uring","name":"IORING_CQE_F_BUFFER","package":"druntime","parentType":"","signature":"IORING_CQE_F_BUFFER","url":"/ddoc/druntime/core/sys/linux/io_uring.html#IORING_CQE_F_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.linux.io_uring","name":"IO_URING_OP_SUPPORTED","package":"druntime","parentType":"","signature":"IO_URING_OP_SUPPORTED","url":"/ddoc/druntime/core/sys/linux/io_uring.html#IO_URING_OP_SUPPORTED"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.link","name":"core.sys.linux.link","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/link.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb __callback,  void * __data)","url":"/ddoc/druntime/core/sys/linux/link/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb_ngc __callback,  void * __data)","url":"/ddoc/druntime/core/sys/linux/link/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_version","package":"druntime","parentType":"","signature":"uint la_version(uint  __version)","url":"/ddoc/druntime/core/sys/linux/link/la_version.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_activity","package":"druntime","parentType":"","signature":"void la_activity(uintptr_t * __cookie,  uint  __flag)","url":"/ddoc/druntime/core/sys/linux/link/la_activity.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_objsearch","package":"druntime","parentType":"","signature":"char * la_objsearch(const(char) *  __name,  uintptr_t *  __cookie,\n                           uint  __flag)","url":"/ddoc/druntime/core/sys/linux/link/la_objsearch.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_objopen","package":"druntime","parentType":"","signature":"uint la_objopen(link_map *  __map,  Lmid_t __lmid,\n                        uintptr_t *  __cookie)","url":"/ddoc/druntime/core/sys/linux/link/la_objopen.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_preinit","package":"druntime","parentType":"","signature":"void la_preinit(uintptr_t *  __cookie)","url":"/ddoc/druntime/core/sys/linux/link/la_preinit.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_symbind32","package":"druntime","parentType":"","signature":"uintptr_t la_symbind32(Elf32_Sym *  __sym,  uint  __ndx,\n                               uintptr_t *  __refcook,  uintptr_t *  __defcook,\n                               uint  * __flags,  const(char) *  __symname)","url":"/ddoc/druntime/core/sys/linux/link/la_symbind32.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_symbind64","package":"druntime","parentType":"","signature":"uintptr_t la_symbind64(Elf64_Sym *  __sym,  uint  __ndx,\n                               uintptr_t *  __refcook,  uintptr_t *  __defcook,\n                               uint *  __flags,  const(char) *  __symname)","url":"/ddoc/druntime/core/sys/linux/link/la_symbind64.html"},{"doc":"","kind":"function","module":"core.sys.linux.link","name":"la_objclose","package":"druntime","parentType":"","signature":"uint la_objclose(uintptr_t * __cookie)","url":"/ddoc/druntime/core/sys/linux/link/la_objclose.html"},{"doc":"","kind":"struct","module":"core.sys.linux.link","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/linux/link.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.linux.link","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/linux/link.html#link_map"},{"doc":"","kind":"struct","module":"core.sys.linux.link","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/linux/link.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.linux.link","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = int  function(dl_phdr_info *,  size_t,  void  *)","url":"/ddoc/druntime/core/sys/linux/link.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.linux.link","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = int  function(dl_phdr_info *,  size_t,  void  *) @nogc","url":"/ddoc/druntime/core/sys/linux/link.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.linux.link","name":"ElfW","package":"druntime","parentType":"","signature":"ElfW(string type)","url":"/ddoc/druntime/core/sys/linux/link.html#ElfW"},{"doc":"","kind":"variable","module":"core.sys.linux.link","name":"_r_debug","package":"druntime","parentType":"","signature":"r_debug _r_debug","url":"/ddoc/druntime/core/sys/linux/link.html#_r_debug"},{"doc":"","kind":"variable","module":"core.sys.linux.link","name":"_DYNAMIC","package":"druntime","parentType":"","signature":"ElfW!\"Dyn\" * _DYNAMIC","url":"/ddoc/druntime/core/sys/linux/link.html#_DYNAMIC"},{"doc":"D header file for Linux's linux/if_arp.h.","kind":"module","module":"core.sys.linux.linux.if_arp","name":"core.sys.linux.linux.if_arp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/linux/if_arp.html"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_arp","name":"arpreq","package":"druntime","parentType":"","signature":"arpreq","url":"/ddoc/druntime/core/sys/linux/linux/if_arp.html#arpreq"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_arp","name":"arphdr","package":"druntime","parentType":"","signature":"arphdr","url":"/ddoc/druntime/core/sys/linux/linux/if_arp.html#arphdr"},{"doc":"D header file for Linux's linux/if_packet.h.","kind":"module","module":"core.sys.linux.linux.if_packet","name":"core.sys.linux.linux.if_packet","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html"},{"doc":"","kind":"function","module":"core.sys.linux.linux.if_packet","name":"TPACKET_ALIGN","package":"druntime","parentType":"","signature":"size_t TPACKET_ALIGN()(size_t x)","url":"/ddoc/druntime/core/sys/linux/linux/if_packet/TPACKET_ALIGN.html"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"sockaddr_pkt","package":"druntime","parentType":"","signature":"sockaddr_pkt","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#sockaddr_pkt"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"sockaddr_ll","package":"druntime","parentType":"","signature":"sockaddr_ll","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#sockaddr_ll"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_stats","package":"druntime","parentType":"","signature":"tpacket_stats","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_stats"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_stats_v3","package":"druntime","parentType":"","signature":"tpacket_stats_v3","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_stats_v3"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_rollover_stats","package":"druntime","parentType":"","signature":"tpacket_rollover_stats","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_rollover_stats"},{"doc":"","kind":"union","module":"core.sys.linux.linux.if_packet","name":"tpacket_stats_u","package":"druntime","parentType":"","signature":"tpacket_stats_u","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_stats_u"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_auxdata","package":"druntime","parentType":"","signature":"tpacket_auxdata","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_auxdata"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_hdr","package":"druntime","parentType":"","signature":"tpacket_hdr","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_hdr"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket2_hdr","package":"druntime","parentType":"","signature":"tpacket2_hdr","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket2_hdr"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_hdr_variant1","package":"druntime","parentType":"","signature":"tpacket_hdr_variant1","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_hdr_variant1"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket3_hdr","package":"druntime","parentType":"","signature":"tpacket3_hdr","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket3_hdr"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_bd_ts","package":"druntime","parentType":"","signature":"tpacket_bd_ts","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_bd_ts"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_hdr_v1","package":"druntime","parentType":"","signature":"tpacket_hdr_v1","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_hdr_v1"},{"doc":"","kind":"union","module":"core.sys.linux.linux.if_packet","name":"tpacket_bd_header_u","package":"druntime","parentType":"","signature":"tpacket_bd_header_u","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_bd_header_u"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_block_desc","package":"druntime","parentType":"","signature":"tpacket_block_desc","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_block_desc"},{"doc":"","kind":"enum","module":"core.sys.linux.linux.if_packet","name":"tpacket_versions","package":"druntime","parentType":"","signature":"tpacket_versions","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_versions"},{"doc":"","kind":"enum_member","module":"core.sys.linux.linux.if_packet","name":"TPACKET_V1","package":"druntime","parentType":"","signature":"TPACKET_V1 = ","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_versions"},{"doc":"","kind":"enum_member","module":"core.sys.linux.linux.if_packet","name":"TPACKET_V2","package":"druntime","parentType":"","signature":"TPACKET_V2 = ","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_versions"},{"doc":"","kind":"enum_member","module":"core.sys.linux.linux.if_packet","name":"TPACKET_V3","package":"druntime","parentType":"","signature":"TPACKET_V3 = ","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_versions"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_req","package":"druntime","parentType":"","signature":"tpacket_req","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_req"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"tpacket_req3","package":"druntime","parentType":"","signature":"tpacket_req3","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_req3"},{"doc":"","kind":"union","module":"core.sys.linux.linux.if_packet","name":"tpacket_req_u","package":"druntime","parentType":"","signature":"tpacket_req_u","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#tpacket_req_u"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"packet_mreq","package":"druntime","parentType":"","signature":"packet_mreq","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#packet_mreq"},{"doc":"","kind":"struct","module":"core.sys.linux.linux.if_packet","name":"fanout_args","package":"druntime","parentType":"","signature":"fanout_args","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#fanout_args"},{"doc":"","kind":"variable","module":"core.sys.linux.linux.if_packet","name":"TP_FT_REQ_FILL_RXHASH","package":"druntime","parentType":"","signature":"uint TP_FT_REQ_FILL_RXHASH","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#TP_FT_REQ_FILL_RXHASH"},{"doc":"","kind":"variable","module":"core.sys.linux.linux.if_packet","name":"TPACKET_ALIGNMENT","package":"druntime","parentType":"","signature":"TPACKET_ALIGNMENT","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#TPACKET_ALIGNMENT"},{"doc":"","kind":"variable","module":"core.sys.linux.linux.if_packet","name":"TPACKET_HDRLEN","package":"druntime","parentType":"","signature":"TPACKET_HDRLEN","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#TPACKET_HDRLEN"},{"doc":"","kind":"variable","module":"core.sys.linux.linux.if_packet","name":"TPACKET2_HDRLEN","package":"druntime","parentType":"","signature":"TPACKET2_HDRLEN","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#TPACKET2_HDRLEN"},{"doc":"","kind":"variable","module":"core.sys.linux.linux.if_packet","name":"TPACKET3_HDRLEN","package":"druntime","parentType":"","signature":"TPACKET3_HDRLEN","url":"/ddoc/druntime/core/sys/linux/linux/if_packet.html#TPACKET3_HDRLEN"},{"doc":"D header file for Linux's extensions to POSIX's netinet/in.h.","kind":"module","module":"core.sys.linux.netinet.in_","name":"core.sys.linux.netinet.in_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/netinet/in_.html"},{"doc":"D bindings for the Linux's netinet/tcp.h structures.","kind":"module","module":"core.sys.linux.netinet.tcp","name":"core.sys.linux.netinet.tcp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/netinet/tcp.html"},{"doc":"D header file for perf_event_open system call.","kind":"module","module":"core.sys.linux.perf_event","name":"core.sys.linux.perf_event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/perf_event.html"},{"doc":"","kind":"function","module":"core.sys.linux.perf_event","name":"perf_event_open","package":"druntime","parentType":"","signature":"long perf_event_open(perf_event_attr *  hw_event,  pid_t pid,  int  cpu,  int  group_fd,  ulong  flags)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_open.html"},{"doc":"","kind":"function","module":"core.sys.linux.perf_event","name":"perf_flags","package":"druntime","parentType":"","signature":"extern (D) auto perf_flags(T)(auto  ref  T attr)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_flags.html"},{"doc":"attr.type","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_type_id","package":"druntime","parentType":"","signature":"perf_type_id","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_HARDWARE","package":"druntime","parentType":"","signature":"PERF_TYPE_HARDWARE = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_SOFTWARE","package":"druntime","parentType":"","signature":"PERF_TYPE_SOFTWARE = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_TRACEPOINT","package":"druntime","parentType":"","signature":"PERF_TYPE_TRACEPOINT = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_HW_CACHE","package":"druntime","parentType":"","signature":"PERF_TYPE_HW_CACHE = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_RAW","package":"druntime","parentType":"","signature":"PERF_TYPE_RAW = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_BREAKPOINT","package":"druntime","parentType":"","signature":"PERF_TYPE_BREAKPOINT = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_TYPE_MAX","package":"druntime","parentType":"","signature":"PERF_TYPE_MAX = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_type_id"},{"doc":"Generalized performance event event_id types, used by the attr.event_id parameter of the sys_perf_event_open() syscall:","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_hw_id","package":"druntime","parentType":"","signature":"perf_hw_id","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CPU_CYCLES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CPU_CYCLES = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_INSTRUCTIONS","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_INSTRUCTIONS = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_REFERENCES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_REFERENCES = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_MISSES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_MISSES = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_BRANCH_INSTRUCTIONS","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_BRANCH_MISSES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_BRANCH_MISSES = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_BUS_CYCLES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_BUS_CYCLES = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_STALLED_CYCLES_FRONTEND","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_STALLED_CYCLES_BACKEND","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_REF_CPU_CYCLES","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_REF_CPU_CYCLES = 9","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_MAX","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_MAX = 10","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_id"},{"doc":"Generalized hardware cache events:","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_hw_cache_id","package":"druntime","parentType":"","signature":"perf_hw_cache_id","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_L1D","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_L1D = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_L1I","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_L1I = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_LL","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_LL = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_DTLB","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_DTLB = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_ITLB","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_ITLB = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_BPU","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_BPU = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_NODE","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_NODE = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_MAX","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_MAX = 7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_id"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_hw_cache_op_id","package":"druntime","parentType":"","signature":"perf_hw_cache_op_id","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_OP_READ","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_OP_READ = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_OP_WRITE","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_OP_WRITE = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_OP_PREFETCH","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_OP_PREFETCH = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_OP_MAX","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_OP_MAX = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_id"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_hw_cache_op_result_id","package":"druntime","parentType":"","signature":"perf_hw_cache_op_result_id","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_result_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_RESULT_ACCESS","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_result_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_RESULT_MISS","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_RESULT_MISS = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_result_id"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_HW_CACHE_RESULT_MAX","package":"druntime","parentType":"","signature":"PERF_COUNT_HW_CACHE_RESULT_MAX = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_hw_cache_op_result_id"},{"doc":"Special \"software\" events provided by the kernel, even if the hardware does not support performance events. These events measure various physical a...","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_sw_ids","package":"druntime","parentType":"","signature":"perf_sw_ids","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_CPU_CLOCK","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_CPU_CLOCK = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_TASK_CLOCK","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_TASK_CLOCK = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_PAGE_FAULTS","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_PAGE_FAULTS = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_CONTEXT_SWITCHES","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_CONTEXT_SWITCHES = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_CPU_MIGRATIONS","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_CPU_MIGRATIONS = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_PAGE_FAULTS_MIN","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_PAGE_FAULTS_MIN = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_PAGE_FAULTS_MAJ","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_ALIGNMENT_FAULTS","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_ALIGNMENT_FAULTS = 7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_EMULATION_FAULTS","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_EMULATION_FAULTS = 8","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_DUMMY","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_DUMMY = 9","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_BPF_OUTPUT","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_BPF_OUTPUT = 10","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_COUNT_SW_MAX","package":"druntime","parentType":"","signature":"PERF_COUNT_SW_MAX = 11","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sw_ids"},{"doc":"Bits that can be set in attr.sample_type to request information in the overflow packets.","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_event_sample_format","package":"druntime","parentType":"","signature":"perf_event_sample_format","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_IP","package":"druntime","parentType":"","signature":"PERF_SAMPLE_IP = 1U <<  0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_TID","package":"druntime","parentType":"","signature":"PERF_SAMPLE_TID = 1U <<  1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_TIME","package":"druntime","parentType":"","signature":"PERF_SAMPLE_TIME = 1U <<  2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_ADDR","package":"druntime","parentType":"","signature":"PERF_SAMPLE_ADDR = 1U <<  3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_READ","package":"druntime","parentType":"","signature":"PERF_SAMPLE_READ = 1U <<  4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_CALLCHAIN","package":"druntime","parentType":"","signature":"PERF_SAMPLE_CALLCHAIN = 1U <<  5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_ID","package":"druntime","parentType":"","signature":"PERF_SAMPLE_ID = 1U <<  6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_CPU","package":"druntime","parentType":"","signature":"PERF_SAMPLE_CPU = 1U <<  7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_PERIOD","package":"druntime","parentType":"","signature":"PERF_SAMPLE_PERIOD = 1U <<  8","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_STREAM_ID","package":"druntime","parentType":"","signature":"PERF_SAMPLE_STREAM_ID = 1U <<  9","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_RAW","package":"druntime","parentType":"","signature":"PERF_SAMPLE_RAW = 1U <<  10","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_STACK","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_STACK = 1U <<  11","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_REGS_USER","package":"druntime","parentType":"","signature":"PERF_SAMPLE_REGS_USER = 1U <<  12","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_STACK_USER","package":"druntime","parentType":"","signature":"PERF_SAMPLE_STACK_USER = 1U <<  13","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_WEIGHT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_WEIGHT = 1U <<  14","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_DATA_SRC","package":"druntime","parentType":"","signature":"PERF_SAMPLE_DATA_SRC = 1U <<  15","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_IDENTIFIER","package":"druntime","parentType":"","signature":"PERF_SAMPLE_IDENTIFIER = 1U <<  16","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_TRANSACTION","package":"druntime","parentType":"","signature":"PERF_SAMPLE_TRANSACTION = 1U <<  17","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_REGS_INTR","package":"druntime","parentType":"","signature":"PERF_SAMPLE_REGS_INTR = 1U <<  18","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_PHYS_ADDR","package":"druntime","parentType":"","signature":"PERF_SAMPLE_PHYS_ADDR = 1U <<  19","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_MAX","package":"druntime","parentType":"","signature":"PERF_SAMPLE_MAX = 1U <<  20","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_sample_format"},{"doc":"values to program into branch_sample_type when PERF_SAMPLE_BRANCH is set","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_branch_sample_type_shift","package":"druntime","parentType":"","signature":"perf_branch_sample_type_shift","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"user branches","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_USER_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_USER_SHIFT = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"kernel branches","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_KERNEL_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"hypervisor branches","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_HV_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_HV_SHIFT = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"any branch types","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY_SHIFT = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"any call branch","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"any return branch","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"indirect calls","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IND_CALL_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"transaction aborts","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"in transaction","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IN_TX_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"not in transaction","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_TX_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"conditional branches","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_COND_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_COND_SHIFT = 10","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"call/ret stack","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"indirect jumps","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"direct call","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_CALL_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_CALL_SHIFT = 13","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"no flags","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"no cycles","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"save branch type","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"non-ABI","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_MAX_SHIFT","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_MAX_SHIFT = 17","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type_shift"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_branch_sample_type","package":"druntime","parentType":"","signature":"perf_branch_sample_type","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_USER","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_USER = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_USER_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_KERNEL","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_KERNEL = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_KERNEL_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_HV","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_HV = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_HV_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_ANY_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY_CALL","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY_CALL = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ANY_RETURN","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ANY_RETURN = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IND_CALL","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IND_CALL = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_IND_CALL_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_ABORT_TX","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_ABORT_TX = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IN_TX","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IN_TX = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_IN_TX_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_TX","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_TX = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_NO_TX_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_COND","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_COND = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_COND_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_CALL_STACK","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_CALL_STACK = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_IND_JUMP","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_IND_JUMP = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_CALL","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_CALL = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_CALL_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_FLAGS","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_FLAGS = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_NO_CYCLES","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_NO_CYCLES = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_TYPE_SAVE","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_TYPE_SAVE = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_MAX","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_MAX = 1U <<  perf_branch_sample_type_shift.PERF_SAMPLE_BRANCH_MAX_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_sample_type"},{"doc":"Values to determine ABI of the registers dump.","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_sample_regs_abi","package":"druntime","parentType":"","signature":"perf_sample_regs_abi","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sample_regs_abi"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_REGS_ABI_NONE","package":"druntime","parentType":"","signature":"PERF_SAMPLE_REGS_ABI_NONE = 0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sample_regs_abi"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_REGS_ABI_32","package":"druntime","parentType":"","signature":"PERF_SAMPLE_REGS_ABI_32 = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sample_regs_abi"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_REGS_ABI_64","package":"druntime","parentType":"","signature":"PERF_SAMPLE_REGS_ABI_64 = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_sample_regs_abi"},{"doc":"The format of the data returned by read() on a perf event fd, as specified by attr.read_format: --- struct read_format { { u64        value; { u64 ...","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_event_read_format","package":"druntime","parentType":"","signature":"perf_event_read_format","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_FORMAT_TOTAL_TIME_ENABLED","package":"druntime","parentType":"","signature":"PERF_FORMAT_TOTAL_TIME_ENABLED = 1U <<  0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_FORMAT_TOTAL_TIME_RUNNING","package":"druntime","parentType":"","signature":"PERF_FORMAT_TOTAL_TIME_RUNNING = 1U <<  1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_FORMAT_ID","package":"druntime","parentType":"","signature":"PERF_FORMAT_ID = 1U <<  2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_FORMAT_GROUP","package":"druntime","parentType":"","signature":"PERF_FORMAT_GROUP = 1U <<  3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"non-ABI","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_FORMAT_MAX","package":"druntime","parentType":"","signature":"PERF_FORMAT_MAX = 1U <<  4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_read_format"},{"doc":"Hardware event_id to monitor via a performance monitoring event:","kind":"struct","module":"core.sys.linux.perf_event","name":"perf_event_attr","package":"druntime","parentType":"","signature":"perf_event_attr","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_attr"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"disabled","package":"druntime","parentType":"perf_event_attr","signature":"ulong disabled()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.disabled.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"disabled","package":"druntime","parentType":"perf_event_attr","signature":"void disabled(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.disabled.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"inherit","package":"druntime","parentType":"perf_event_attr","signature":"ulong inherit()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.inherit.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"inherit","package":"druntime","parentType":"perf_event_attr","signature":"void inherit(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.inherit.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"pinned","package":"druntime","parentType":"perf_event_attr","signature":"ulong pinned()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.pinned.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"pinned","package":"druntime","parentType":"perf_event_attr","signature":"void pinned(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.pinned.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclusive","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclusive()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclusive.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclusive","package":"druntime","parentType":"perf_event_attr","signature":"void exclusive(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclusive.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_user","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_user()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_user.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_user","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_user(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_user.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_kernel","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_kernel()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_kernel.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_kernel","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_kernel(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_kernel.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_hv","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_hv()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_hv.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_hv","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_hv(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_hv.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_idle","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_idle()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_idle.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_idle","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_idle(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_idle.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap","package":"druntime","parentType":"perf_event_attr","signature":"ulong mmap()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap","package":"druntime","parentType":"perf_event_attr","signature":"void mmap(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"comm","package":"druntime","parentType":"perf_event_attr","signature":"ulong comm()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.comm.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"comm","package":"druntime","parentType":"perf_event_attr","signature":"void comm(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.comm.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"freq","package":"druntime","parentType":"perf_event_attr","signature":"ulong freq()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.freq.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"freq","package":"druntime","parentType":"perf_event_attr","signature":"void freq(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.freq.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"inherit_stat","package":"druntime","parentType":"perf_event_attr","signature":"ulong inherit_stat()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.inherit_stat.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"inherit_stat","package":"druntime","parentType":"perf_event_attr","signature":"void inherit_stat(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.inherit_stat.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"enable_on_exec","package":"druntime","parentType":"perf_event_attr","signature":"ulong enable_on_exec()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.enable_on_exec.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"enable_on_exec","package":"druntime","parentType":"perf_event_attr","signature":"void enable_on_exec(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.enable_on_exec.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"task","package":"druntime","parentType":"perf_event_attr","signature":"ulong task()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.task.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"task","package":"druntime","parentType":"perf_event_attr","signature":"void task(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.task.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"watermark","package":"druntime","parentType":"perf_event_attr","signature":"ulong watermark()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.watermark.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"watermark","package":"druntime","parentType":"perf_event_attr","signature":"void watermark(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.watermark.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"precise_ip","package":"druntime","parentType":"perf_event_attr","signature":"ulong precise_ip()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.precise_ip.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"precise_ip","package":"druntime","parentType":"perf_event_attr","signature":"void precise_ip(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.precise_ip.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap_data","package":"druntime","parentType":"perf_event_attr","signature":"ulong mmap_data()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap_data.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap_data","package":"druntime","parentType":"perf_event_attr","signature":"void mmap_data(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap_data.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"sample_id_all","package":"druntime","parentType":"perf_event_attr","signature":"ulong sample_id_all()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.sample_id_all.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"sample_id_all","package":"druntime","parentType":"perf_event_attr","signature":"void sample_id_all(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.sample_id_all.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_host","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_host()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_host.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_host","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_host(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_host.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_guest","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_guest()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_guest.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_guest","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_guest(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_guest.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_callchain_kernel","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_callchain_kernel()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_callchain_kernel.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_callchain_kernel","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_callchain_kernel(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_callchain_kernel.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_callchain_user","package":"druntime","parentType":"perf_event_attr","signature":"ulong exclude_callchain_user()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_callchain_user.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"exclude_callchain_user","package":"druntime","parentType":"perf_event_attr","signature":"void exclude_callchain_user(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.exclude_callchain_user.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap2","package":"druntime","parentType":"perf_event_attr","signature":"ulong mmap2()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap2.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mmap2","package":"druntime","parentType":"perf_event_attr","signature":"void mmap2(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.mmap2.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"comm_exec","package":"druntime","parentType":"perf_event_attr","signature":"ulong comm_exec()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.comm_exec.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"comm_exec","package":"druntime","parentType":"perf_event_attr","signature":"void comm_exec(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.comm_exec.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"use_clockid","package":"druntime","parentType":"perf_event_attr","signature":"ulong use_clockid()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.use_clockid.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"use_clockid","package":"druntime","parentType":"perf_event_attr","signature":"void use_clockid(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.use_clockid.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"context_switch","package":"druntime","parentType":"perf_event_attr","signature":"ulong context_switch()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.context_switch.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"context_switch","package":"druntime","parentType":"perf_event_attr","signature":"void context_switch(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.context_switch.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"write_backward","package":"druntime","parentType":"perf_event_attr","signature":"ulong write_backward()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.write_backward.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"write_backward","package":"druntime","parentType":"perf_event_attr","signature":"void write_backward(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.write_backward.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"namespaces","package":"druntime","parentType":"perf_event_attr","signature":"ulong namespaces()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.namespaces.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"namespaces","package":"druntime","parentType":"perf_event_attr","signature":"void namespaces(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.namespaces.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"__reserved_1","package":"druntime","parentType":"perf_event_attr","signature":"ulong __reserved_1()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.__reserved_1.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"__reserved_1","package":"druntime","parentType":"perf_event_attr","signature":"void __reserved_1(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_event_attr.__reserved_1.html"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_event_ioc_flags","package":"druntime","parentType":"","signature":"perf_event_ioc_flags","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_ioc_flags"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_IOC_FLAG_GROUP","package":"druntime","parentType":"","signature":"PERF_IOC_FLAG_GROUP = 1U <<  0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_ioc_flags"},{"doc":"Structure of the page that can be mapped via mmap","kind":"struct","module":"core.sys.linux.perf_event","name":"perf_event_mmap_page","package":"druntime","parentType":"","signature":"perf_event_mmap_page","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_mmap_page"},{"doc":"","kind":"struct","module":"core.sys.linux.perf_event","name":"perf_event_header","package":"druntime","parentType":"","signature":"perf_event_header","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_header"},{"doc":"","kind":"struct","module":"core.sys.linux.perf_event","name":"perf_ns_link_info","package":"druntime","parentType":"","signature":"perf_ns_link_info","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_ns_link_info"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_event_type","package":"druntime","parentType":"","signature":"perf_event_type","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"If perf_event_attr.sample_id_all is set then all event types will have the sample_type selected fields related to where/when (identity) an event to...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MMAP","package":"druntime","parentType":"","signature":"PERF_RECORD_MMAP = 1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u64                id; u64                lost; struct sample_id        sample_id; }; ---","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_LOST","package":"druntime","parentType":"","signature":"PERF_RECORD_LOST = 2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header;","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_COMM","package":"druntime","parentType":"","signature":"PERF_RECORD_COMM = 3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u32                pid, ppid; u32                tid, ptid; u64                time; struct sample...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_EXIT","package":"druntime","parentType":"","signature":"PERF_RECORD_EXIT = 4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u64                time; u64                id; u64                stream_id; struct sample_id    ...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_THROTTLE","package":"druntime","parentType":"","signature":"PERF_RECORD_THROTTLE = 5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_UNTHROTTLE","package":"druntime","parentType":"","signature":"PERF_RECORD_UNTHROTTLE = 6","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u32                pid, ppid; u32                tid, ptid; u64                time; struct sample...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_FORK","package":"druntime","parentType":"","signature":"PERF_RECORD_FORK = 7","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u32                pid, tid;","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_READ","package":"druntime","parentType":"","signature":"PERF_RECORD_READ = 8","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header;","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_SAMPLE","package":"druntime","parentType":"","signature":"PERF_RECORD_SAMPLE = 9","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- The MMAP2 records are an augmented version of MMAP, they add maj, min, ino numbers to be used to uniquely identify each mapping","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MMAP2","package":"druntime","parentType":"","signature":"PERF_RECORD_MMAP2 = 10","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"Records that new data landed in the AUX buffer part. --- struct { struct perf_event_header    header;","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_AUX","package":"druntime","parentType":"","signature":"PERF_RECORD_AUX = 11","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- Indicates that instruction trace has started","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_ITRACE_START","package":"druntime","parentType":"","signature":"PERF_RECORD_ITRACE_START = 12","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"Records the dropped/lost sample number. --- struct { struct perf_event_header    header;","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_LOST_SAMPLES","package":"druntime","parentType":"","signature":"PERF_RECORD_LOST_SAMPLES = 13","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"Records a context switch in or out (flagged by PERF_RECORD_MISC_SWITCH_OUT). See also PERF_RECORD_SWITCH_CPU_WIDE. --- struct { struct perf_event_h...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_SWITCH","package":"druntime","parentType":"","signature":"PERF_RECORD_SWITCH = 14","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"CPU-wide version of PERF_RECORD_SWITCH with next_prev_pid and next_prev_tid that are the next (switching out) or previous (switching in) pid/tid. -...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_SWITCH_CPU_WIDE","package":"druntime","parentType":"","signature":"PERF_RECORD_SWITCH_CPU_WIDE = 15","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"--- struct { struct perf_event_header    header; u32                pid; u32                tid; u64                nr_namespaces; { u64           ...","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_NAMESPACES","package":"druntime","parentType":"","signature":"PERF_RECORD_NAMESPACES = 16","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MAX","package":"druntime","parentType":"","signature":"PERF_RECORD_MAX = 17","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_event_type"},{"doc":"","kind":"enum","module":"core.sys.linux.perf_event","name":"perf_callchain_context","package":"druntime","parentType":"","signature":"perf_callchain_context","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_HV","package":"druntime","parentType":"","signature":"PERF_CONTEXT_HV = cast(ulong) - 32","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_KERNEL","package":"druntime","parentType":"","signature":"PERF_CONTEXT_KERNEL = cast(ulong) - 128","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_USER","package":"druntime","parentType":"","signature":"PERF_CONTEXT_USER = cast(ulong) - 512","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_GUEST","package":"druntime","parentType":"","signature":"PERF_CONTEXT_GUEST = cast(ulong) - 2048","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_GUEST_KERNEL","package":"druntime","parentType":"","signature":"PERF_CONTEXT_GUEST_KERNEL = cast(ulong) - 2176","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_GUEST_USER","package":"druntime","parentType":"","signature":"PERF_CONTEXT_GUEST_USER = cast(ulong) - 2560","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"","kind":"enum_member","module":"core.sys.linux.perf_event","name":"PERF_CONTEXT_MAX","package":"druntime","parentType":"","signature":"PERF_CONTEXT_MAX = cast(ulong) - 4095","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_callchain_context"},{"doc":"single taken branch record layout:","kind":"struct","module":"core.sys.linux.perf_event","name":"perf_branch_entry","package":"druntime","parentType":"","signature":"perf_branch_entry","url":"/ddoc/druntime/core/sys/linux/perf_event.html#perf_branch_entry"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mispred","package":"druntime","parentType":"perf_branch_entry","signature":"ulong mispred()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.mispred.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"mispred","package":"druntime","parentType":"perf_branch_entry","signature":"void mispred(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.mispred.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"predicted","package":"druntime","parentType":"perf_branch_entry","signature":"ulong predicted()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.predicted.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"predicted","package":"druntime","parentType":"perf_branch_entry","signature":"void predicted(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.predicted.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"in_tx","package":"druntime","parentType":"perf_branch_entry","signature":"ulong in_tx()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.in_tx.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"in_tx","package":"druntime","parentType":"perf_branch_entry","signature":"void in_tx(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.in_tx.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"abort","package":"druntime","parentType":"perf_branch_entry","signature":"ulong abort()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.abort.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"abort","package":"druntime","parentType":"perf_branch_entry","signature":"void abort(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.abort.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"cycles","package":"druntime","parentType":"perf_branch_entry","signature":"ulong cycles()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.cycles.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"cycles","package":"druntime","parentType":"perf_branch_entry","signature":"void cycles(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.cycles.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"type","package":"druntime","parentType":"perf_branch_entry","signature":"ulong type()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.type.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"type","package":"druntime","parentType":"perf_branch_entry","signature":"void type(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.type.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"reserved","package":"druntime","parentType":"perf_branch_entry","signature":"ulong reserved()","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.reserved.html"},{"doc":"","kind":"method","module":"core.sys.linux.perf_event","name":"reserved","package":"druntime","parentType":"perf_branch_entry","signature":"void reserved(ulong  v)","url":"/ddoc/druntime/core/sys/linux/perf_event/perf_branch_entry.reserved.html"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_SAMPLE_BRANCH_PLM_ALL","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BRANCH_PLM_ALL","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_SAMPLE_BRANCH_PLM_ALL"},{"doc":"sizeof first published struct","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER0","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER0","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER0"},{"doc":"add: config2","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER1","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER1"},{"doc":"add: branch_sample_type","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER2","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER2"},{"doc":"add: sample_regs_user","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER3","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER3"},{"doc":"add: sample_regs_intr","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER4","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER4"},{"doc":"add: aux_watermark","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_ATTR_SIZE_VER5","package":"druntime","parentType":"","signature":"PERF_ATTR_SIZE_VER5","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_ATTR_SIZE_VER5"},{"doc":"Ioctls that can be done on a perf event fd:","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_ENABLE","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_ENABLE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_DISABLE","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_DISABLE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_DISABLE"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_REFRESH","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_REFRESH","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_REFRESH"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_RESET","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_RESET","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_RESET"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_PERIOD","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_PERIOD","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_PERIOD"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_SET_OUTPUT","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_SET_OUTPUT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_SET_OUTPUT"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_SET_FILTER","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_SET_FILTER","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_SET_FILTER"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_ID","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_ID","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_ID"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_SET_BPF","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_SET_BPF","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_SET_BPF"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_EVENT_IOC_PAUSE_OUTPUT","package":"druntime","parentType":"","signature":"PERF_EVENT_IOC_PAUSE_OUTPUT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_EVENT_IOC_PAUSE_OUTPUT"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_CPUMODE_MASK","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_CPUMODE_MASK","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_CPUMODE_MASK"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_CPUMODE_UNKNOWN","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_CPUMODE_UNKNOWN","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_CPUMODE_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_KERNEL","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_KERNEL","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_KERNEL"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_USER","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_USER","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_USER"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_HYPERVISOR","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_HYPERVISOR","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_HYPERVISOR"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_GUEST_KERNEL","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_GUEST_KERNEL","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_GUEST_KERNEL"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_GUEST_USER","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_GUEST_USER","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_GUEST_USER"},{"doc":"Indicates that /proc/PID/maps parsing are truncated by time out.","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT"},{"doc":"PERF_RECORD_MISC_MMAP_DATA and PERF_RECORD_MISC_COMM_EXEC are used on different events so can reuse the same bit position. Ditto PERF_RECORD_MISC_S...","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_MMAP_DATA","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_MMAP_DATA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_MMAP_DATA"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_COMM_EXEC","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_COMM_EXEC","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_COMM_EXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_SWITCH_OUT","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_SWITCH_OUT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_SWITCH_OUT"},{"doc":"Indicates that the content of PERF_SAMPLE_IP points to the actual instruction that triggered the event. See also perf_event_attr::precise_ip.","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_EXACT_IP","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_EXACT_IP","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_EXACT_IP"},{"doc":"Reserve the last bit to indicate some extended misc field","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_RECORD_MISC_EXT_RESERVED","package":"druntime","parentType":"","signature":"PERF_RECORD_MISC_EXT_RESERVED","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_RECORD_MISC_EXT_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MAX_STACK_DEPTH","package":"druntime","parentType":"","signature":"PERF_MAX_STACK_DEPTH","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MAX_STACK_DEPTH"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MAX_CONTEXTS_PER_STACK","package":"druntime","parentType":"","signature":"PERF_MAX_CONTEXTS_PER_STACK","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MAX_CONTEXTS_PER_STACK"},{"doc":"PERF_RECORD_AUX::flags bits record was truncated to fit","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_AUX_FLAG_TRUNCATED","package":"druntime","parentType":"","signature":"PERF_AUX_FLAG_TRUNCATED","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_AUX_FLAG_TRUNCATED"},{"doc":"snapshot from overwrite mode","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_AUX_FLAG_OVERWRITE","package":"druntime","parentType":"","signature":"PERF_AUX_FLAG_OVERWRITE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_AUX_FLAG_OVERWRITE"},{"doc":"record contains gaps","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_AUX_FLAG_PARTIAL","package":"druntime","parentType":"","signature":"PERF_AUX_FLAG_PARTIAL","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_AUX_FLAG_PARTIAL"},{"doc":"sample collided with another","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_AUX_FLAG_COLLISION","package":"druntime","parentType":"","signature":"PERF_AUX_FLAG_COLLISION","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_AUX_FLAG_COLLISION"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_FLAG_FD_NO_GROUP","package":"druntime","parentType":"","signature":"PERF_FLAG_FD_NO_GROUP","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_FLAG_FD_NO_GROUP"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_FLAG_FD_OUTPUT","package":"druntime","parentType":"","signature":"PERF_FLAG_FD_OUTPUT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_FLAG_FD_OUTPUT"},{"doc":"pid=cgroup id, per-cpu mode only","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_FLAG_PID_CGROUP","package":"druntime","parentType":"","signature":"PERF_FLAG_PID_CGROUP","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_FLAG_PID_CGROUP"},{"doc":"O_CLOEXEC","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_FLAG_FD_CLOEXEC","package":"druntime","parentType":"","signature":"PERF_FLAG_FD_CLOEXEC","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_FLAG_FD_CLOEXEC"},{"doc":"type of opcode (load/store/prefetch,code) not available","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_NA","package":"druntime","parentType":"","signature":"PERF_MEM_OP_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_NA"},{"doc":"load instruction","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_LOAD","package":"druntime","parentType":"","signature":"PERF_MEM_OP_LOAD","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_LOAD"},{"doc":"store instruction","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_STORE","package":"druntime","parentType":"","signature":"PERF_MEM_OP_STORE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_STORE"},{"doc":"prefetch","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_PFETCH","package":"druntime","parentType":"","signature":"PERF_MEM_OP_PFETCH","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_PFETCH"},{"doc":"code (execution)","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_EXEC","package":"druntime","parentType":"","signature":"PERF_MEM_OP_EXEC","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_EXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_OP_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_OP_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_OP_SHIFT"},{"doc":"not available","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_NA","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_NA"},{"doc":"hit level","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_HIT","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_HIT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_HIT"},{"doc":"miss level","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_MISS","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_MISS","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_MISS"},{"doc":"L1","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_L1","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_L1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_L1"},{"doc":"Line Fill Buffer","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_LFB","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_LFB","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_LFB"},{"doc":"L2","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_L2","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_L2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_L2"},{"doc":"L3","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_L3","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_L3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_L3"},{"doc":"Local DRAM","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_LOC_RAM","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_LOC_RAM","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_LOC_RAM"},{"doc":"Remote DRAM (1 hop)","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_REM_RAM1","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_REM_RAM1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_REM_RAM1"},{"doc":"Remote DRAM (2 hops)","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_REM_RAM2","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_REM_RAM2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_REM_RAM2"},{"doc":"Remote Cache (1 hop)","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_REM_CCE1","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_REM_CCE1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_REM_CCE1"},{"doc":"Remote Cache (2 hops)","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_REM_CCE2","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_REM_CCE2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_REM_CCE2"},{"doc":"I/O memory","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_IO","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_IO","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_IO"},{"doc":"Uncached memory","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_UNC","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_UNC","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_UNC"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVL_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_LVL_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVL_SHIFT"},{"doc":"Remote","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_REMOTE_REMOTE","package":"druntime","parentType":"","signature":"PERF_MEM_REMOTE_REMOTE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_REMOTE_REMOTE"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_REMOTE_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_REMOTE_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_REMOTE_SHIFT"},{"doc":"L1","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_L1","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_L1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_L1"},{"doc":"L2","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_L2","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_L2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_L2"},{"doc":"L3","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_L3","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_L3","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_L3"},{"doc":"L4","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_L4","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_L4","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_L4"},{"doc":"Any cache","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_ANY_CACHE","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_ANY_CACHE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_ANY_CACHE"},{"doc":"LFB","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_LFB","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_LFB","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_LFB"},{"doc":"RAM","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_RAM","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_RAM","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_RAM"},{"doc":"PMEM","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_PMEM","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_PMEM","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_PMEM"},{"doc":"N/A","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_NA","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_NA"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LVLNUM_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_LVLNUM_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LVLNUM_SHIFT"},{"doc":"not available","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_NA","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_NA"},{"doc":"no snoop","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_NONE","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_NONE","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_NONE"},{"doc":"snoop hit","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_HIT","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_HIT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_HIT"},{"doc":"snoop miss","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_MISS","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_MISS","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_MISS"},{"doc":"snoop hit modified","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_HITM","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_HITM","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_HITM"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOP_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOP_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOP_SHIFT"},{"doc":"forward","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOPX_FWD","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOPX_FWD","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOPX_FWD"},{"doc":"1 free","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_SNOOPX_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_SNOOPX_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_SNOOPX_SHIFT"},{"doc":"locked instruction not available","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LOCK_NA","package":"druntime","parentType":"","signature":"PERF_MEM_LOCK_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LOCK_NA"},{"doc":"locked transaction","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LOCK_LOCKED","package":"druntime","parentType":"","signature":"PERF_MEM_LOCK_LOCKED","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LOCK_LOCKED"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_LOCK_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_LOCK_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_LOCK_SHIFT"},{"doc":"not available","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_NA","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_NA","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_NA"},{"doc":"hit level","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_HIT","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_HIT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_HIT"},{"doc":"miss level","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_MISS","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_MISS","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_MISS"},{"doc":"L1","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_L1","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_L1","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_L1"},{"doc":"L2","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_L2","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_L2","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_L2"},{"doc":"Hardware Walker","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_WK","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_WK","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_WK"},{"doc":"OS fault handler","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_OS","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_OS","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_OS"},{"doc":"","kind":"variable","module":"core.sys.linux.perf_event","name":"PERF_MEM_TLB_SHIFT","package":"druntime","parentType":"","signature":"PERF_MEM_TLB_SHIFT","url":"/ddoc/druntime/core/sys/linux/perf_event.html#PERF_MEM_TLB_SHIFT"},{"doc":"D binding for Linux specific scheduler control and thread spawning methods.","kind":"module","module":"core.sys.linux.sched","name":"core.sys.linux.sched","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sched.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPUELT","package":"druntime","parentType":"","signature":"size_t __CPUELT()(size_t cpu)","url":"/ddoc/druntime/core/sys/linux/sched/__CPUELT.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPUMASK","package":"druntime","parentType":"","signature":"cpu_mask __CPUMASK()(size_t cpu)","url":"/ddoc/druntime/core/sys/linux/sched/__CPUMASK.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_ALLOC","package":"druntime","parentType":"","signature":"cpu_set_t * __CPU_ALLOC()(size_t count)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_ALLOC.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_ALLOC_SIZE","package":"druntime","parentType":"","signature":"size_t __CPU_ALLOC_SIZE()(size_t count)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_ALLOC_SIZE.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_FREE","package":"druntime","parentType":"","signature":"void __CPU_FREE()(cpu_set_t *  set)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_FREE.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_SET_S","package":"druntime","parentType":"","signature":"cpu_mask __CPU_SET_S()(size_t cpu,  size_t setsize,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_SET_S.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_ISSET_S","package":"druntime","parentType":"","signature":"bool __CPU_ISSET_S()(size_t cpu,  size_t setsize,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_ISSET_S.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"__CPU_COUNT_S","package":"druntime","parentType":"","signature":"int __CPU_COUNT_S()(size_t setsize,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/__CPU_COUNT_S.html"},{"doc":"Access macros for 'cpu_set' (missing a lot of them)","kind":"function","module":"core.sys.linux.sched","name":"CPU_ALLOC","package":"druntime","parentType":"","signature":"cpu_set_t * CPU_ALLOC()(size_t count)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_ALLOC.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_ALLOC_SIZE","package":"druntime","parentType":"","signature":"size_t CPU_ALLOC_SIZE()(size_t count)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_ALLOC_SIZE.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_FREE","package":"druntime","parentType":"","signature":"void CPU_FREE()(cpu_set_t *  set)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_FREE.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_SET","package":"druntime","parentType":"","signature":"cpu_mask CPU_SET()(size_t cpu,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_SET.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_ISSET","package":"druntime","parentType":"","signature":"bool CPU_ISSET()(size_t cpu,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_ISSET.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_COUNT","package":"druntime","parentType":"","signature":"int CPU_COUNT()(cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_COUNT.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"CPU_COUNT_S","package":"druntime","parentType":"","signature":"int CPU_COUNT_S()(size_t setsize,  cpu_set_t *  cpusetp)","url":"/ddoc/druntime/core/sys/linux/sched/CPU_COUNT_S.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"sched_setaffinity","package":"druntime","parentType":"","signature":"int sched_setaffinity(pid_t pid,  size_t cpusetsize,  cpu_set_t * mask)","url":"/ddoc/druntime/core/sys/linux/sched/sched_setaffinity.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"sched_getaffinity","package":"druntime","parentType":"","signature":"int sched_getaffinity(pid_t pid,  size_t cpusetsize,  cpu_set_t * mask)","url":"/ddoc/druntime/core/sys/linux/sched/sched_getaffinity.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"clone","package":"druntime","parentType":"","signature":"int clone(int  function(void *),  void *  child_stack,  int  flags,  void *  arg, ...)","url":"/ddoc/druntime/core/sys/linux/sched/clone.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"unshare","package":"druntime","parentType":"","signature":"int unshare(int  flags)","url":"/ddoc/druntime/core/sys/linux/sched/unshare.html"},{"doc":"","kind":"function","module":"core.sys.linux.sched","name":"setns","package":"druntime","parentType":"","signature":"int setns(int  fd,  int  nstype)","url":"/ddoc/druntime/core/sys/linux/sched/setns.html"},{"doc":"Type for array elements in 'cpu_set_t'.","kind":"alias","module":"core.sys.linux.sched","name":"cpu_mask","package":"druntime","parentType":"","signature":"cpu_mask = c_ulong","url":"/ddoc/druntime/core/sys/linux/sched.html#cpu_mask"},{"doc":"Data structure to describe CPU mask.","kind":"struct","module":"core.sys.linux.sched","name":"cpu_set_t","package":"druntime","parentType":"","signature":"cpu_set_t","url":"/ddoc/druntime/core/sys/linux/sched.html#cpu_set_t"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_FILES","package":"druntime","parentType":"","signature":"CLONE_FILES","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_FILES"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_FS","package":"druntime","parentType":"","signature":"CLONE_FS","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_FS"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWCGROUP","package":"druntime","parentType":"","signature":"CLONE_NEWCGROUP","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWCGROUP"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWIPC","package":"druntime","parentType":"","signature":"CLONE_NEWIPC","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWIPC"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWNET","package":"druntime","parentType":"","signature":"CLONE_NEWNET","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWNET"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWNS","package":"druntime","parentType":"","signature":"CLONE_NEWNS","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWNS"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWPID","package":"druntime","parentType":"","signature":"CLONE_NEWPID","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWPID"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWUSER","package":"druntime","parentType":"","signature":"CLONE_NEWUSER","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWUSER"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_NEWUTS","package":"druntime","parentType":"","signature":"CLONE_NEWUTS","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_NEWUTS"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_SIGHAND","package":"druntime","parentType":"","signature":"CLONE_SIGHAND","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_SIGHAND"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_SYSVSEM","package":"druntime","parentType":"","signature":"CLONE_SYSVSEM","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_SYSVSEM"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_THREAD","package":"druntime","parentType":"","signature":"CLONE_THREAD","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_THREAD"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_VFORK","package":"druntime","parentType":"","signature":"CLONE_VFORK","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_VFORK"},{"doc":"","kind":"variable","module":"core.sys.linux.sched","name":"CLONE_VM","package":"druntime","parentType":"","signature":"CLONE_VM","url":"/ddoc/druntime/core/sys/linux/sched.html#CLONE_VM"},{"doc":"D header file for GNU stdio.","kind":"module","module":"core.sys.linux.stdio","name":"core.sys.linux.stdio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/stdio.html"},{"doc":"","kind":"function","module":"core.sys.linux.stdio","name":"fopencookie","package":"druntime","parentType":"","signature":"FILE * fopencookie(void *  cookie,  const(char) *  mode,  cookie_io_functions_t io_funcs)","url":"/ddoc/druntime/core/sys/linux/stdio/fopencookie.html"},{"doc":"","kind":"function","module":"core.sys.linux.stdio","name":"setbuffer","package":"druntime","parentType":"","signature":"void setbuffer(FILE * stream,  char  * buf,  size_t size)","url":"/ddoc/druntime/core/sys/linux/stdio/setbuffer.html"},{"doc":"","kind":"alias","module":"core.sys.linux.stdio","name":"cookie_read_function_t","package":"druntime","parentType":"","signature":"cookie_read_function_t = ssize_t function(void  * cookie,  char  * buf,  size_t size)","url":"/ddoc/druntime/core/sys/linux/stdio.html#cookie_read_function_t"},{"doc":"","kind":"alias","module":"core.sys.linux.stdio","name":"cookie_write_function_t","package":"druntime","parentType":"","signature":"cookie_write_function_t = ssize_t function(void  * cookie,  const(char)  * buf,  size_t size)","url":"/ddoc/druntime/core/sys/linux/stdio.html#cookie_write_function_t"},{"doc":"","kind":"alias","module":"core.sys.linux.stdio","name":"cookie_seek_function_t","package":"druntime","parentType":"","signature":"cookie_seek_function_t = int  function(void  * cookie,  off64_t * offset,  int  whence)","url":"/ddoc/druntime/core/sys/linux/stdio.html#cookie_seek_function_t"},{"doc":"","kind":"alias","module":"core.sys.linux.stdio","name":"cookie_close_function_t","package":"druntime","parentType":"","signature":"cookie_close_function_t = int  function(void  * cookie)","url":"/ddoc/druntime/core/sys/linux/stdio.html#cookie_close_function_t"},{"doc":"","kind":"struct","module":"core.sys.linux.stdio","name":"cookie_io_functions_t","package":"druntime","parentType":"","signature":"cookie_io_functions_t","url":"/ddoc/druntime/core/sys/linux/stdio.html#cookie_io_functions_t"},{"doc":"D header file for Linux string.","kind":"module","module":"core.sys.linux.string","name":"core.sys.linux.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/string.html"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.auxv","name":"core.sys.linux.sys.auxv","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/auxv.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.auxv","name":"getauxval","package":"druntime","parentType":"","signature":"c_ulong getauxval(c_ulong type)","url":"/ddoc/druntime/core/sys/linux/sys/auxv/getauxval.html"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.eventfd","name":"core.sys.linux.sys.eventfd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/eventfd.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.eventfd","name":"eventfd","package":"druntime","parentType":"","signature":"int eventfd(uint  count,  int  flags)","url":"/ddoc/druntime/core/sys/linux/sys/eventfd/eventfd.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.eventfd","name":"eventfd_read","package":"druntime","parentType":"","signature":"int eventfd_read(int  fd,  eventfd_t *  value)","url":"/ddoc/druntime/core/sys/linux/sys/eventfd/eventfd_read.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.eventfd","name":"eventfd_write","package":"druntime","parentType":"","signature":"int eventfd_write(int  fd,  eventfd_t value)","url":"/ddoc/druntime/core/sys/linux/sys/eventfd/eventfd_write.html"},{"doc":"Type for the event counter","kind":"alias","module":"core.sys.linux.sys.eventfd","name":"eventfd_t","package":"druntime","parentType":"","signature":"eventfd_t = uint64_t","url":"/ddoc/druntime/core/sys/linux/sys/eventfd.html#eventfd_t"},{"doc":"D header file for Linux file ops.","kind":"module","module":"core.sys.linux.sys.file","name":"core.sys.linux.sys.file","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/file.html"},{"doc":"Apply or remove an advisory lock on an open file Params: fd = file to apply or remove lock from operation = lock operation to perform Returns: 0 on...","kind":"function","module":"core.sys.linux.sys.file","name":"flock","package":"druntime","parentType":"","signature":"int flock(int  fd,  int  operation)","url":"/ddoc/druntime/core/sys/linux/sys/file/flock.html"},{"doc":"Shared lock","kind":"variable","module":"core.sys.linux.sys.file","name":"LOCK_SH","package":"druntime","parentType":"","signature":"LOCK_SH","url":"/ddoc/druntime/core/sys/linux/sys/file.html#LOCK_SH"},{"doc":"Exclusive lock","kind":"variable","module":"core.sys.linux.sys.file","name":"LOCK_EX","package":"druntime","parentType":"","signature":"LOCK_EX","url":"/ddoc/druntime/core/sys/linux/sys/file.html#LOCK_EX"},{"doc":"Unlock","kind":"variable","module":"core.sys.linux.sys.file","name":"LOCK_UN","package":"druntime","parentType":"","signature":"LOCK_UN","url":"/ddoc/druntime/core/sys/linux/sys/file.html#LOCK_UN"},{"doc":"Don't block when locking. Can be OR'd into one of the above.","kind":"variable","module":"core.sys.linux.sys.file","name":"LOCK_NB","package":"druntime","parentType":"","signature":"LOCK_NB","url":"/ddoc/druntime/core/sys/linux/sys/file.html#LOCK_NB"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.inotify","name":"core.sys.linux.sys.inotify","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/inotify.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.inotify","name":"inotify_init","package":"druntime","parentType":"","signature":"int inotify_init()","url":"/ddoc/druntime/core/sys/linux/sys/inotify/inotify_init.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.inotify","name":"inotify_init1","package":"druntime","parentType":"","signature":"int inotify_init1(int  flags)","url":"/ddoc/druntime/core/sys/linux/sys/inotify/inotify_init1.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.inotify","name":"inotify_add_watch","package":"druntime","parentType":"","signature":"int inotify_add_watch(int  fd,  const(char) *  name,  uint  mask)","url":"/ddoc/druntime/core/sys/linux/sys/inotify/inotify_add_watch.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.inotify","name":"inotify_rm_watch","package":"druntime","parentType":"","signature":"int inotify_rm_watch(int  fd,  uint  wd)","url":"/ddoc/druntime/core/sys/linux/sys/inotify/inotify_rm_watch.html"},{"doc":"","kind":"struct","module":"core.sys.linux.sys.inotify","name":"inotify_event","package":"druntime","parentType":"","signature":"inotify_event","url":"/ddoc/druntime/core/sys/linux/sys/inotify.html#inotify_event"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.inotify","name":"IN_UMOUNT","package":"druntime","parentType":"","signature":"IN_UMOUNT","url":"/ddoc/druntime/core/sys/linux/sys/inotify.html#IN_UMOUNT"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.sys.mman","name":"core.sys.linux.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/mman.html"},{"doc":"D header file for Linux.","kind":"module","module":"core.sys.linux.sys.mount","name":"core.sys.linux.sys.mount","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/mount.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.mount","name":"mount","package":"druntime","parentType":"","signature":"int mount(const(char) *,  const(char) *,  const(char) *,  c_ulong,  const(void) *)","url":"/ddoc/druntime/core/sys/linux/sys/mount/mount.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.mount","name":"umount","package":"druntime","parentType":"","signature":"int umount(const(char) *)","url":"/ddoc/druntime/core/sys/linux/sys/mount/umount.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.mount","name":"umount2","package":"druntime","parentType":"","signature":"int umount2(const(char) *,  int)","url":"/ddoc/druntime/core/sys/linux/sys/mount/umount2.html"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_RDONLY","package":"druntime","parentType":"","signature":"c_ulong MS_RDONLY","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_RDONLY"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOSUID","package":"druntime","parentType":"","signature":"c_ulong MS_NOSUID","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOSUID"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NODEV","package":"druntime","parentType":"","signature":"c_ulong MS_NODEV","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NODEV"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOEXEC","package":"druntime","parentType":"","signature":"c_ulong MS_NOEXEC","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOEXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_SYNCHRONOUS","package":"druntime","parentType":"","signature":"c_ulong MS_SYNCHRONOUS","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_SYNCHRONOUS"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_REMOUNT","package":"druntime","parentType":"","signature":"c_ulong MS_REMOUNT","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_REMOUNT"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_MANDLOCK","package":"druntime","parentType":"","signature":"c_ulong MS_MANDLOCK","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_MANDLOCK"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_DIRSYNC","package":"druntime","parentType":"","signature":"c_ulong MS_DIRSYNC","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_DIRSYNC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOSYMFOLLOW","package":"druntime","parentType":"","signature":"c_ulong MS_NOSYMFOLLOW","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOSYMFOLLOW"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOATIME","package":"druntime","parentType":"","signature":"c_ulong MS_NOATIME","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOATIME"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NODIRATIME","package":"druntime","parentType":"","signature":"c_ulong MS_NODIRATIME","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NODIRATIME"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_BIND","package":"druntime","parentType":"","signature":"c_ulong MS_BIND","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_BIND"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_MOVE","package":"druntime","parentType":"","signature":"c_ulong MS_MOVE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_MOVE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_REC","package":"druntime","parentType":"","signature":"c_ulong MS_REC","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_REC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_SILENT","package":"druntime","parentType":"","signature":"c_ulong MS_SILENT","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_SILENT"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_POSIXACL","package":"druntime","parentType":"","signature":"c_ulong MS_POSIXACL","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_POSIXACL"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_UNBINDABLE","package":"druntime","parentType":"","signature":"c_ulong MS_UNBINDABLE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_UNBINDABLE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_PRIVATE","package":"druntime","parentType":"","signature":"c_ulong MS_PRIVATE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_SLAVE","package":"druntime","parentType":"","signature":"c_ulong MS_SLAVE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_SLAVE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_SHARED","package":"druntime","parentType":"","signature":"c_ulong MS_SHARED","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_SHARED"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_RELATIME","package":"druntime","parentType":"","signature":"c_ulong MS_RELATIME","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_RELATIME"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_KERNMOUNT","package":"druntime","parentType":"","signature":"c_ulong MS_KERNMOUNT","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_KERNMOUNT"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_I_VERSION","package":"druntime","parentType":"","signature":"c_ulong MS_I_VERSION","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_I_VERSION"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_STRICTATIME","package":"druntime","parentType":"","signature":"c_ulong MS_STRICTATIME","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_STRICTATIME"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_LAZYTIME","package":"druntime","parentType":"","signature":"c_ulong MS_LAZYTIME","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_LAZYTIME"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOREMOTELOCK","package":"druntime","parentType":"","signature":"c_ulong MS_NOREMOTELOCK","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOREMOTELOCK"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOSEC","package":"druntime","parentType":"","signature":"c_ulong MS_NOSEC","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOSEC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_BORN","package":"druntime","parentType":"","signature":"c_ulong MS_BORN","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_BORN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_ACTIVE","package":"druntime","parentType":"","signature":"c_ulong MS_ACTIVE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_NOUSER","package":"druntime","parentType":"","signature":"c_ulong MS_NOUSER","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_NOUSER"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_RMT_MASK","package":"druntime","parentType":"","signature":"MS_RMT_MASK","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_RMT_MASK"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_MGC_VAL","package":"druntime","parentType":"","signature":"MS_MGC_VAL","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_MGC_VAL"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MS_MGC_MSK","package":"druntime","parentType":"","signature":"MS_MGC_MSK","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MS_MGC_MSK"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MNT_FORCE","package":"druntime","parentType":"","signature":"MNT_FORCE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MNT_FORCE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MNT_DETACH","package":"druntime","parentType":"","signature":"MNT_DETACH","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MNT_DETACH"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"MNT_EXPIRE","package":"druntime","parentType":"","signature":"MNT_EXPIRE","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#MNT_EXPIRE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.mount","name":"UMOUNT_NOFOLLOW","package":"druntime","parentType":"","signature":"UMOUNT_NOFOLLOW","url":"/ddoc/druntime/core/sys/linux/sys/mount.html#UMOUNT_NOFOLLOW"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.prctl","name":"core.sys.linux.sys.prctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/prctl.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.prctl","name":"prctl","package":"druntime","parentType":"","signature":"int prctl(int  option,  size_t arg2,  size_t arg3,  size_t arg4,  size_t arg5)","url":"/ddoc/druntime/core/sys/linux/sys/prctl/prctl.html"},{"doc":"","kind":"struct","module":"core.sys.linux.sys.prctl","name":"prctl_mm_map","package":"druntime","parentType":"","signature":"prctl_mm_map","url":"/ddoc/druntime/core/sys/linux/sys/prctl.html#prctl_mm_map"},{"doc":"D header file for Linux.","kind":"module","module":"core.sys.linux.sys.signalfd","name":"core.sys.linux.sys.signalfd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/signalfd.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.signalfd","name":"signalfd","package":"druntime","parentType":"","signature":"int signalfd(int  __fd,  const(sigset_t) *  __mask,  int  __flags)","url":"/ddoc/druntime/core/sys/linux/sys/signalfd/signalfd.html"},{"doc":"","kind":"struct","module":"core.sys.linux.sys.signalfd","name":"signalfd_siginfo","package":"druntime","parentType":"","signature":"signalfd_siginfo","url":"/ddoc/druntime/core/sys/linux/sys/signalfd.html#signalfd_siginfo"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.signalfd","name":"SFD_CLOEXEC","package":"druntime","parentType":"","signature":"SFD_CLOEXEC","url":"/ddoc/druntime/core/sys/linux/sys/signalfd.html#SFD_CLOEXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.signalfd","name":"SFD_NONBLOCK","package":"druntime","parentType":"","signature":"SFD_NONBLOCK","url":"/ddoc/druntime/core/sys/linux/sys/signalfd.html#SFD_NONBLOCK"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.socket","name":"core.sys.linux.sys.socket","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/socket.html"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.sys.syscall","name":"core.sys.linux.sys.syscall","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/syscall.html"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.syscall","name":"SYS_getrandom","package":"druntime","parentType":"","signature":"SYS_getrandom","url":"/ddoc/druntime/core/sys/linux/sys/syscall.html#SYS_getrandom"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.syscall","name":"SYS_perf_event_open","package":"druntime","parentType":"","signature":"SYS_perf_event_open","url":"/ddoc/druntime/core/sys/linux/sys/syscall.html#SYS_perf_event_open"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.sysinfo","name":"core.sys.linux.sys.sysinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.sysinfo","name":"sysinfo","package":"druntime","parentType":"","signature":"int sysinfo(sysinfo_ * info)","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo/sysinfo.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.sysinfo","name":"get_nprocs_conf","package":"druntime","parentType":"","signature":"int get_nprocs_conf()","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo/get_nprocs_conf.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.sysinfo","name":"get_nprocs","package":"druntime","parentType":"","signature":"int get_nprocs()","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo/get_nprocs.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.sysinfo","name":"get_phys_pages","package":"druntime","parentType":"","signature":"c_long get_phys_pages()","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo/get_phys_pages.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.sysinfo","name":"get_avphys_pages","package":"druntime","parentType":"","signature":"c_long get_avphys_pages()","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo/get_avphys_pages.html"},{"doc":"","kind":"struct","module":"core.sys.linux.sys.sysinfo","name":"sysinfo_","package":"druntime","parentType":"","signature":"sysinfo_","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo.html#sysinfo_"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.sysinfo","name":"SI_LOAD_SHIFT","package":"druntime","parentType":"","signature":"SI_LOAD_SHIFT","url":"/ddoc/druntime/core/sys/linux/sys/sysinfo.html#SI_LOAD_SHIFT"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.linux.sys.time","name":"core.sys.linux.sys.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/time.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.time","name":"timeradd","package":"druntime","parentType":"","signature":"void timeradd()(const  timeval *  a,  const  timeval *  b,\n             timeval *  result)","url":"/ddoc/druntime/core/sys/linux/sys/time/timeradd.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.time","name":"timersub","package":"druntime","parentType":"","signature":"void timersub()(const  timeval *  a,  const  timeval *  b,\n             timeval * result)","url":"/ddoc/druntime/core/sys/linux/sys/time/timersub.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.time","name":"timerclear","package":"druntime","parentType":"","signature":"void timerclear()(timeval *  tvp)","url":"/ddoc/druntime/core/sys/linux/sys/time/timerclear.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.time","name":"timerisset","package":"druntime","parentType":"","signature":"int timerisset()(timeval *  tvp)","url":"/ddoc/druntime/core/sys/linux/sys/time/timerisset.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.time","name":"timercmp","package":"druntime","parentType":"","signature":"int timercmp(string CMP)(const  timeval *  a,  const  timeval *  b)","url":"/ddoc/druntime/core/sys/linux/sys/time/timercmp.html"},{"doc":"D header file for GNU/Linux.","kind":"module","module":"core.sys.linux.sys.xattr","name":"core.sys.linux.sys.xattr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"setxattr","package":"druntime","parentType":"","signature":"int setxattr(const  scope  char *  path,  const  scope  char *  name,  const  scope  void *  value,  size_t size,  int  flags)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/setxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"lsetxattr","package":"druntime","parentType":"","signature":"int lsetxattr(const  scope  char *  path,  const  scope  char *  name,  const  scope  void *  value,  size_t size,  int  flags)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/lsetxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"fsetxattr","package":"druntime","parentType":"","signature":"int fsetxattr(int  fd,  const  scope  char *  name,  const  scope  void *  value,  size_t size,  int  flags)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/fsetxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"getxattr","package":"druntime","parentType":"","signature":"ssize_t getxattr(const  scope  char *  path,  const  scope  char *  name,  void *  value,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/getxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"lgetxattr","package":"druntime","parentType":"","signature":"ssize_t lgetxattr(const  scope  char *  path,  const  scope  char *  name,  void *  value,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/lgetxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"fgetxattr","package":"druntime","parentType":"","signature":"ssize_t fgetxattr(int  fd,  const  scope  char *  name,  void *  value,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/fgetxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"listxattr","package":"druntime","parentType":"","signature":"ssize_t listxattr(const  scope  char *  path,  char *  list,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/listxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"llistxattr","package":"druntime","parentType":"","signature":"ssize_t llistxattr(const  scope  char *  path,  char *  list,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/llistxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"flistxattr","package":"druntime","parentType":"","signature":"ssize_t flistxattr(int  __fd,  char  * list,  size_t size)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/flistxattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"removexattr","package":"druntime","parentType":"","signature":"int removexattr(const  scope  char  * path,  const  scope  char  * name)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/removexattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"lremovexattr","package":"druntime","parentType":"","signature":"int lremovexattr(const  scope  char  * path,  const  scope  char  * name)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/lremovexattr.html"},{"doc":"","kind":"function","module":"core.sys.linux.sys.xattr","name":"fremovexattr","package":"druntime","parentType":"","signature":"int fremovexattr(int  fd,  const  scope  char  * name)","url":"/ddoc/druntime/core/sys/linux/sys/xattr/fremovexattr.html"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_OS2_PREFIX","package":"druntime","parentType":"","signature":"XATTR_OS2_PREFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_OS2_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_OS2_PREFIX_LEN","package":"druntime","parentType":"","signature":"XATTR_OS2_PREFIX_LEN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_OS2_PREFIX_LEN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SECURITY_PREFIX","package":"druntime","parentType":"","signature":"XATTR_SECURITY_PREFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SECURITY_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SECURITY_PREFIX_LEN","package":"druntime","parentType":"","signature":"XATTR_SECURITY_PREFIX_LEN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SECURITY_PREFIX_LEN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SYSTEM_PREFIX","package":"druntime","parentType":"","signature":"XATTR_SYSTEM_PREFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SYSTEM_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SYSTEM_PREFIX_LEN","package":"druntime","parentType":"","signature":"XATTR_SYSTEM_PREFIX_LEN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SYSTEM_PREFIX_LEN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_TRUSTED_PREFIX","package":"druntime","parentType":"","signature":"XATTR_TRUSTED_PREFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_TRUSTED_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_TRUSTED_PREFIX_LEN","package":"druntime","parentType":"","signature":"XATTR_TRUSTED_PREFIX_LEN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_TRUSTED_PREFIX_LEN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_USER_PREFIX","package":"druntime","parentType":"","signature":"XATTR_USER_PREFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_USER_PREFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_USER_PREFIX_LEN","package":"druntime","parentType":"","signature":"XATTR_USER_PREFIX_LEN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_USER_PREFIX_LEN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SELINUX_SUFFIX","package":"druntime","parentType":"","signature":"XATTR_SELINUX_SUFFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SELINUX_SUFFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SELINUX","package":"druntime","parentType":"","signature":"XATTR_NAME_SELINUX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SELINUX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_SUFFIX","package":"druntime","parentType":"","signature":"XATTR_SMACK_SUFFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_SUFFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_IPIN","package":"druntime","parentType":"","signature":"XATTR_SMACK_IPIN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_IPIN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_IPOUT","package":"druntime","parentType":"","signature":"XATTR_SMACK_IPOUT","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_IPOUT"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_EXEC","package":"druntime","parentType":"","signature":"XATTR_SMACK_EXEC","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_EXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_TRANSMUTE","package":"druntime","parentType":"","signature":"XATTR_SMACK_TRANSMUTE","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_TRANSMUTE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_SMACK_MMAP","package":"druntime","parentType":"","signature":"XATTR_SMACK_MMAP","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_SMACK_MMAP"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACK","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACK","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACK"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACKIPIN","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACKIPIN","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACKIPIN"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACKIPOUT","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACKIPOUT","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACKIPOUT"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACKEXEC","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACKEXEC","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACKEXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACKTRANSMUTE","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACKTRANSMUTE","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACKTRANSMUTE"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_SMACKMMAP","package":"druntime","parentType":"","signature":"XATTR_NAME_SMACKMMAP","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_SMACKMMAP"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_CAPS_SUFFIX","package":"druntime","parentType":"","signature":"XATTR_CAPS_SUFFIX","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_CAPS_SUFFIX"},{"doc":"","kind":"variable","module":"core.sys.linux.sys.xattr","name":"XATTR_NAME_CAPS","package":"druntime","parentType":"","signature":"XATTR_NAME_CAPS","url":"/ddoc/druntime/core/sys/linux/sys/xattr.html#XATTR_NAME_CAPS"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.syscall","name":"core.sys.linux.syscall","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/syscall.html"},{"doc":"D header file for GNU/Linux","kind":"module","module":"core.sys.linux.termios","name":"core.sys.linux.termios","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/termios.html"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B57600","package":"druntime","parentType":"","signature":"B57600","url":"/ddoc/druntime/core/sys/linux/termios.html#B57600"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B115200","package":"druntime","parentType":"","signature":"B115200","url":"/ddoc/druntime/core/sys/linux/termios.html#B115200"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B230400","package":"druntime","parentType":"","signature":"B230400","url":"/ddoc/druntime/core/sys/linux/termios.html#B230400"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B460800","package":"druntime","parentType":"","signature":"B460800","url":"/ddoc/druntime/core/sys/linux/termios.html#B460800"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B500000","package":"druntime","parentType":"","signature":"B500000","url":"/ddoc/druntime/core/sys/linux/termios.html#B500000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B576000","package":"druntime","parentType":"","signature":"B576000","url":"/ddoc/druntime/core/sys/linux/termios.html#B576000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B921600","package":"druntime","parentType":"","signature":"B921600","url":"/ddoc/druntime/core/sys/linux/termios.html#B921600"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B1000000","package":"druntime","parentType":"","signature":"B1000000","url":"/ddoc/druntime/core/sys/linux/termios.html#B1000000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B1152000","package":"druntime","parentType":"","signature":"B1152000","url":"/ddoc/druntime/core/sys/linux/termios.html#B1152000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B1500000","package":"druntime","parentType":"","signature":"B1500000","url":"/ddoc/druntime/core/sys/linux/termios.html#B1500000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B2000000","package":"druntime","parentType":"","signature":"B2000000","url":"/ddoc/druntime/core/sys/linux/termios.html#B2000000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B2500000","package":"druntime","parentType":"","signature":"B2500000","url":"/ddoc/druntime/core/sys/linux/termios.html#B2500000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B3000000","package":"druntime","parentType":"","signature":"B3000000","url":"/ddoc/druntime/core/sys/linux/termios.html#B3000000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B3500000","package":"druntime","parentType":"","signature":"B3500000","url":"/ddoc/druntime/core/sys/linux/termios.html#B3500000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"B4000000","package":"druntime","parentType":"","signature":"B4000000","url":"/ddoc/druntime/core/sys/linux/termios.html#B4000000"},{"doc":"","kind":"variable","module":"core.sys.linux.termios","name":"CRTSCTS","package":"druntime","parentType":"","signature":"CRTSCTS","url":"/ddoc/druntime/core/sys/linux/termios.html#CRTSCTS"},{"doc":"D header file for Linux extensions to POSIX's time.h.","kind":"module","module":"core.sys.linux.time","name":"core.sys.linux.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/time.html"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_MONOTONIC_RAW","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_RAW","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_MONOTONIC_RAW"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_REALTIME_COARSE","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_COARSE","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_REALTIME_COARSE"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_MONOTONIC_COARSE","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC_COARSE","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_MONOTONIC_COARSE"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_BOOTTIME","package":"druntime","parentType":"","signature":"CLOCK_BOOTTIME","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_BOOTTIME"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_REALTIME_ALARM","package":"druntime","parentType":"","signature":"CLOCK_REALTIME_ALARM","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_REALTIME_ALARM"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_BOOTTIME_ALARM","package":"druntime","parentType":"","signature":"CLOCK_BOOTTIME_ALARM","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_BOOTTIME_ALARM"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_SGI_CYCLE","package":"druntime","parentType":"","signature":"CLOCK_SGI_CYCLE","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_SGI_CYCLE"},{"doc":"","kind":"variable","module":"core.sys.linux.time","name":"CLOCK_TAI","package":"druntime","parentType":"","signature":"CLOCK_TAI","url":"/ddoc/druntime/core/sys/linux/time.html#CLOCK_TAI"},{"doc":"D header file to interface with the Linux timefd API <http://man7.org/linux/man-pages/man2/timerfd_create.2.html> Available since Linux 2.6","kind":"module","module":"core.sys.linux.timerfd","name":"core.sys.linux.timerfd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/timerfd.html"},{"doc":"","kind":"function","module":"core.sys.linux.timerfd","name":"timerfd_create","package":"druntime","parentType":"","signature":"int timerfd_create(int  clockid,  int  flags)","url":"/ddoc/druntime/core/sys/linux/timerfd/timerfd_create.html"},{"doc":"","kind":"function","module":"core.sys.linux.timerfd","name":"timerfd_settime","package":"druntime","parentType":"","signature":"int timerfd_settime(int  fd,  int  flags,  const  itimerspec *  new_value,  itimerspec *  old_value)","url":"/ddoc/druntime/core/sys/linux/timerfd/timerfd_settime.html"},{"doc":"","kind":"function","module":"core.sys.linux.timerfd","name":"timerfd_gettime","package":"druntime","parentType":"","signature":"int timerfd_gettime(int  fd,  itimerspec *  curr_value)","url":"/ddoc/druntime/core/sys/linux/timerfd/timerfd_gettime.html"},{"doc":"","kind":"variable","module":"core.sys.linux.timerfd","name":"TFD_TIMER_ABSTIME","package":"druntime","parentType":"","signature":"TFD_TIMER_ABSTIME","url":"/ddoc/druntime/core/sys/linux/timerfd.html#TFD_TIMER_ABSTIME"},{"doc":"","kind":"variable","module":"core.sys.linux.timerfd","name":"TFD_TIMER_CANCEL_ON_SET","package":"druntime","parentType":"","signature":"TFD_TIMER_CANCEL_ON_SET","url":"/ddoc/druntime/core/sys/linux/timerfd.html#TFD_TIMER_CANCEL_ON_SET"},{"doc":"","kind":"variable","module":"core.sys.linux.timerfd","name":"TFD_CLOEXEC","package":"druntime","parentType":"","signature":"TFD_CLOEXEC","url":"/ddoc/druntime/core/sys/linux/timerfd.html#TFD_CLOEXEC"},{"doc":"","kind":"variable","module":"core.sys.linux.timerfd","name":"TFD_NONBLOCK","package":"druntime","parentType":"","signature":"TFD_NONBLOCK","url":"/ddoc/druntime/core/sys/linux/timerfd.html#TFD_NONBLOCK"},{"doc":"Interface for Linux TIPC sockets, /usr/include/linux/tipc.h","kind":"module","module":"core.sys.linux.tipc","name":"core.sys.linux.tipc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/tipc.html"},{"doc":"","kind":"function","module":"core.sys.linux.tipc","name":"tipc_addr","package":"druntime","parentType":"","signature":"uint tipc_addr(uint  zone,  uint  cluster,  uint  node)","url":"/ddoc/druntime/core/sys/linux/tipc/tipc_addr.html"},{"doc":"","kind":"function","module":"core.sys.linux.tipc","name":"tipc_zone","package":"druntime","parentType":"","signature":"uint tipc_zone(uint  addr)","url":"/ddoc/druntime/core/sys/linux/tipc/tipc_zone.html"},{"doc":"","kind":"function","module":"core.sys.linux.tipc","name":"tipc_cluster","package":"druntime","parentType":"","signature":"uint tipc_cluster(uint  addr)","url":"/ddoc/druntime/core/sys/linux/tipc/tipc_cluster.html"},{"doc":"","kind":"function","module":"core.sys.linux.tipc","name":"tipc_node","package":"druntime","parentType":"","signature":"uint tipc_node(uint  addr)","url":"/ddoc/druntime/core/sys/linux/tipc/tipc_node.html"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"tipc_portid","package":"druntime","parentType":"","signature":"tipc_portid","url":"/ddoc/druntime/core/sys/linux/tipc.html#tipc_portid"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"tipc_name","package":"druntime","parentType":"","signature":"tipc_name","url":"/ddoc/druntime/core/sys/linux/tipc.html#tipc_name"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"tipc_name_seq","package":"druntime","parentType":"","signature":"tipc_name_seq","url":"/ddoc/druntime/core/sys/linux/tipc.html#tipc_name_seq"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"tipc_subscr","package":"druntime","parentType":"","signature":"tipc_subscr","url":"/ddoc/druntime/core/sys/linux/tipc.html#tipc_subscr"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"tipc_event","package":"druntime","parentType":"","signature":"tipc_event","url":"/ddoc/druntime/core/sys/linux/tipc.html#tipc_event"},{"doc":"","kind":"struct","module":"core.sys.linux.tipc","name":"sockaddr_tipc","package":"druntime","parentType":"","signature":"sockaddr_tipc","url":"/ddoc/druntime/core/sys/linux/tipc.html#sockaddr_tipc"},{"doc":"","kind":"module","module":"core.sys.linux.unistd","name":"core.sys.linux.unistd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/linux/unistd.html"},{"doc":"Prompt for a password without echoing it.","kind":"function","module":"core.sys.linux.unistd","name":"getpass","package":"druntime","parentType":"","signature":"char * getpass(const(char) *  prompt)","url":"/ddoc/druntime/core/sys/linux/unistd/getpass.html"},{"doc":"","kind":"function","module":"core.sys.linux.unistd","name":"exit_group","package":"druntime","parentType":"","signature":"void exit_group(int  status)","url":"/ddoc/druntime/core/sys/linux/unistd/exit_group.html"},{"doc":"Close all open file descriptors greater or equal to `lowfd`","kind":"function","module":"core.sys.linux.unistd","name":"closefrom","package":"druntime","parentType":"","signature":"void closefrom(int  lowfd)","url":"/ddoc/druntime/core/sys/linux/unistd/closefrom.html"},{"doc":"Invoke system call number `sysno`, passing it the remaining arguments.","kind":"function","module":"core.sys.linux.unistd","name":"syscall","package":"druntime","parentType":"","signature":"c_long syscall(c_long sysno, ...)","url":"/ddoc/druntime/core/sys/linux/unistd/syscall.html"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.dlfcn","name":"core.sys.netbsd.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#__BSD_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DI_LINKMAP","package":"druntime","parentType":"","signature":"RTLD_DI_LINKMAP","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DI_LINKMAP"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DI_SERINFO","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFO","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DI_SERINFO"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DI_SERINFOSIZE","package":"druntime","parentType":"","signature":"RTLD_DI_SERINFOSIZE","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DI_SERINFOSIZE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DI_ORIGIN","package":"druntime","parentType":"","signature":"RTLD_DI_ORIGIN","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DI_ORIGIN"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DI_MAX","package":"druntime","parentType":"","signature":"RTLD_DI_MAX","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DI_MAX"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_NEXT","package":"druntime","parentType":"","signature":"RTLD_NEXT","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_NEXT"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_DEFAULT","package":"druntime","parentType":"","signature":"RTLD_DEFAULT","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.netbsd.dlfcn","name":"RTLD_SELF","package":"druntime","parentType":"","signature":"RTLD_SELF","url":"/ddoc/druntime/core/sys/netbsd/dlfcn.html#RTLD_SELF"},{"doc":"D header file for NetBSD err.h.","kind":"module","module":"core.sys.netbsd.err","name":"core.sys.netbsd.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/err.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/err.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"errc","package":"druntime","parentType":"","signature":"void errc(int  eval,  int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/errc.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"warnc","package":"druntime","parentType":"","signature":"void warnc(int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/warnc.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/netbsd/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"verrc","package":"druntime","parentType":"","signature":"void verrc(int  eval,  int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/verrc.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"vwarnc","package":"druntime","parentType":"","signature":"void vwarnc(int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/vwarnc.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/netbsd/err/vwarnx.html"},{"doc":"NetBSD implementation of glibc's $(LINK2 http://www.gnu.org/software/libc/manual/html_node/Backtraces.html backtrace) facility.","kind":"module","module":"core.sys.netbsd.execinfo","name":"core.sys.netbsd.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/execinfo.html"},{"doc":"D header file for NetBSD stdlib.h.","kind":"module","module":"core.sys.netbsd.stdlib","name":"core.sys.netbsd.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/netbsd/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/netbsd/stdlib/setprogname.html"},{"doc":"D header file for NetBSD string.","kind":"module","module":"core.sys.netbsd.string","name":"core.sys.netbsd.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/string.html"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.elf","name":"core.sys.netbsd.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/elf.html"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.elf32","name":"core.sys.netbsd.sys.elf32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf32","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Lword","package":"druntime","parentType":"","signature":"Elf32_Lword = uint64_t","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Lword"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Hashelt","package":"druntime","parentType":"","signature":"Elf32_Hashelt = Elf32_Word","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Size","package":"druntime","parentType":"","signature":"Elf32_Size = Elf32_Word","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Size"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Ssize","package":"druntime","parentType":"","signature":"Elf32_Ssize = Elf32_Sword","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Ssize"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Dyn"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf32","name":"Elf32_Cap","package":"druntime","parentType":"","signature":"Elf32_Cap","url":"/ddoc/druntime/core/sys/netbsd/sys/elf32.html#Elf32_Cap"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.elf64","name":"core.sys.netbsd.sys.elf64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf64","name":"ELF64_R_TYPE_DATA","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_DATA(I)(I i)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64/ELF64_R_TYPE_DATA.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf64","name":"ELF64_R_TYPE_ID","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_ID(I)(I i)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64/ELF64_R_TYPE_ID.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf64","name":"ELF64_R_TYPE_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_INFO(D,  T)(D d,  T t)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64/ELF64_R_TYPE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf64","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF64_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64/ELF64_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Lword","package":"druntime","parentType":"","signature":"Elf64_Lword = uint64_t","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Lword"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Hashelt","package":"druntime","parentType":"","signature":"Elf64_Hashelt = Elf64_Word","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Size","package":"druntime","parentType":"","signature":"Elf64_Size = Elf64_Xword","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Size"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Ssize","package":"druntime","parentType":"","signature":"Elf64_Ssize = Elf64_Sxword","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Ssize"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Dyn"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf64","name":"Elf64_Cap","package":"druntime","parentType":"","signature":"Elf64_Cap","url":"/ddoc/druntime/core/sys/netbsd/sys/elf64.html#Elf64_Cap"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.elf_common","name":"core.sys.netbsd.sys.elf_common","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf_common","name":"IS_ELF","package":"druntime","parentType":"","signature":"auto IS_ELF(T)(T ehdr)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common/IS_ELF.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.elf_common","name":"VER_NDX","package":"druntime","parentType":"","signature":"auto VER_NDX(V)(V v)","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common/VER_NDX.html"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf_common","name":"Elf_Note","package":"druntime","parentType":"","signature":"Elf_Note","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#Elf_Note"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.elf_common","name":"Elf_GNU_Hash_Header","package":"druntime","parentType":"","signature":"Elf_GNU_Hash_Header","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#Elf_GNU_Hash_Header"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf_common","name":"VER_DEF_IDX","package":"druntime","parentType":"","signature":"VER_DEF_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_DEF_IDX"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.elf_common","name":"VER_NEED_IDX","package":"druntime","parentType":"","signature":"VER_NEED_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_NEED_IDX"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"OLD_EI_BRAND","package":"druntime","parentType":"","signature":"OLD_EI_BRAND","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#OLD_EI_BRAND"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"EM_AVR32","package":"druntime","parentType":"","signature":"EM_AVR32","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#EM_AVR32"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"EM_ALPHA_EXP","package":"druntime","parentType":"","signature":"EM_ALPHA_EXP","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#EM_ALPHA_EXP"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"EM_486","package":"druntime","parentType":"","signature":"EM_486","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#EM_486"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"EM_MIPS_RS4_BE","package":"druntime","parentType":"","signature":"EM_MIPS_RS4_BE","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#EM_MIPS_RS4_BE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"EM_ALPHA_STD","package":"druntime","parentType":"","signature":"EM_ALPHA_STD","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#EM_ALPHA_STD"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_dof","package":"druntime","parentType":"","signature":"SHT_SUNW_dof","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_dof"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_cap","package":"druntime","parentType":"","signature":"SHT_SUNW_cap","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_cap"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_SIGNATURE","package":"druntime","parentType":"","signature":"SHT_SUNW_SIGNATURE","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_SIGNATURE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_verdef","package":"druntime","parentType":"","signature":"SHT_SUNW_verdef","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_verdef"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_verneed","package":"druntime","parentType":"","signature":"SHT_SUNW_verneed","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_verneed"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SHT_SUNW_versym","package":"druntime","parentType":"","signature":"SHT_SUNW_versym","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SHT_SUNW_versym"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"PT_SUNWDTRACE","package":"druntime","parentType":"","signature":"PT_SUNWDTRACE","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#PT_SUNWDTRACE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"PT_SUNWCAP","package":"druntime","parentType":"","signature":"PT_SUNWCAP","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#PT_SUNWCAP"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_MAXPOSTAGS","package":"druntime","parentType":"","signature":"DT_MAXPOSTAGS","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_MAXPOSTAGS"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_SUNW_AUXILIARY","package":"druntime","parentType":"","signature":"DT_SUNW_AUXILIARY","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_SUNW_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_SUNW_RTLDINF","package":"druntime","parentType":"","signature":"DT_SUNW_RTLDINF","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_SUNW_RTLDINF"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_SUNW_FILTER","package":"druntime","parentType":"","signature":"DT_SUNW_FILTER","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_SUNW_FILTER"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_SUNW_CAP","package":"druntime","parentType":"","signature":"DT_SUNW_CAP","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_SUNW_CAP"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_DEPRECATED_SPARC_REGISTER","package":"druntime","parentType":"","signature":"DT_DEPRECATED_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_DEPRECATED_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DT_USED","package":"druntime","parentType":"","signature":"DT_USED","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DT_USED"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"DF_1_BIND_NOW","package":"druntime","parentType":"","signature":"DF_1_BIND_NOW","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#DF_1_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_FPREGSET","package":"druntime","parentType":"","signature":"NT_FPREGSET","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_FPREGSET"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_THRMISC","package":"druntime","parentType":"","signature":"NT_THRMISC","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_THRMISC"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_PROC","package":"druntime","parentType":"","signature":"NT_PROCSTAT_PROC","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_PROC"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_FILES","package":"druntime","parentType":"","signature":"NT_PROCSTAT_FILES","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_FILES"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_VMMAP","package":"druntime","parentType":"","signature":"NT_PROCSTAT_VMMAP","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_VMMAP"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_GROUPS","package":"druntime","parentType":"","signature":"NT_PROCSTAT_GROUPS","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_GROUPS"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_UMASK","package":"druntime","parentType":"","signature":"NT_PROCSTAT_UMASK","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_UMASK"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_RLIMIT","package":"druntime","parentType":"","signature":"NT_PROCSTAT_RLIMIT","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_RLIMIT"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_OSREL","package":"druntime","parentType":"","signature":"NT_PROCSTAT_OSREL","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_OSREL"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_PSSTRINGS","package":"druntime","parentType":"","signature":"NT_PROCSTAT_PSSTRINGS","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_PSSTRINGS"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"NT_PROCSTAT_AUXV","package":"druntime","parentType":"","signature":"NT_PROCSTAT_AUXV","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#NT_PROCSTAT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"STV_EXPORTED","package":"druntime","parentType":"","signature":"STV_EXPORTED","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#STV_EXPORTED"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"STV_SINGLETON","package":"druntime","parentType":"","signature":"STV_SINGLETON","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#STV_SINGLETON"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"STV_ELIMINATE","package":"druntime","parentType":"","signature":"STV_ELIMINATE","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#STV_ELIMINATE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"VER_NEED_WEAK","package":"druntime","parentType":"","signature":"VER_NEED_WEAK","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_NEED_WEAK"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"VER_NEED_HIDDEN","package":"druntime","parentType":"","signature":"VER_NEED_HIDDEN","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_NEED_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"VER_NDX_GIVEN","package":"druntime","parentType":"","signature":"VER_NDX_GIVEN","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_NDX_GIVEN"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"VER_NDX_HIDDEN","package":"druntime","parentType":"","signature":"VER_NDX_HIDDEN","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#VER_NDX_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"CA_SUNW_NULL","package":"druntime","parentType":"","signature":"CA_SUNW_NULL","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#CA_SUNW_NULL"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"CA_SUNW_HW_1","package":"druntime","parentType":"","signature":"CA_SUNW_HW_1","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#CA_SUNW_HW_1"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"CA_SUNW_SF_1","package":"druntime","parentType":"","signature":"CA_SUNW_SF_1","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#CA_SUNW_SF_1"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_FLG_DIRECTBIND","package":"druntime","parentType":"","signature":"SYMINFO_FLG_DIRECTBIND","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_FLG_DIRECTBIND"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_FLG_NOEXTDIRECT","package":"druntime","parentType":"","signature":"SYMINFO_FLG_NOEXTDIRECT","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_FLG_NOEXTDIRECT"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_FLG_FILTER","package":"druntime","parentType":"","signature":"SYMINFO_FLG_FILTER","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_FLG_FILTER"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_FLG_AUXILIARY","package":"druntime","parentType":"","signature":"SYMINFO_FLG_AUXILIARY","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_FLG_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_BT_NONE","package":"druntime","parentType":"","signature":"SYMINFO_BT_NONE","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_BT_NONE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.elf_common","name":"SYMINFO_BT_EXTERN","package":"druntime","parentType":"","signature":"SYMINFO_BT_EXTERN","url":"/ddoc/druntime/core/sys/netbsd/sys/elf_common.html#SYMINFO_BT_EXTERN"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.event","name":"core.sys.netbsd.sys.event","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/event.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.event","name":"EV_SET","package":"druntime","parentType":"","signature":"void EV_SET(kevent_t *  kevp,  typeof(kevent_t.tupleof)  args)","url":"/ddoc/druntime/core/sys/netbsd/sys/event/EV_SET.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.event","name":"kqueue","package":"druntime","parentType":"","signature":"int kqueue()","url":"/ddoc/druntime/core/sys/netbsd/sys/event/kqueue.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.event","name":"__kevent50","package":"druntime","parentType":"","signature":"int __kevent50(int  kq,  const  kevent_t * changelist,  int  nchanges,\n            kevent_t * eventlist,  int  nevents,\n            const  timespec * timeout)","url":"/ddoc/druntime/core/sys/netbsd/sys/event/__kevent50.html"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.event","name":"kevent_t","package":"druntime","parentType":"","signature":"kevent_t","url":"/ddoc/druntime/core/sys/netbsd/sys/event.html#kevent_t"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.event","name":"kevent","package":"druntime","parentType":"","signature":"kevent = __kevent50","url":"/ddoc/druntime/core/sys/netbsd/sys/event.html#kevent"},{"doc":"D header file for NetBSD featuretest;.","kind":"module","module":"core.sys.netbsd.sys.featuretest","name":"core.sys.netbsd.sys.featuretest","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/featuretest.html"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.featuretest","name":"_NETBSD_SOURCE","package":"druntime","parentType":"","signature":"_NETBSD_SOURCE","url":"/ddoc/druntime/core/sys/netbsd/sys/featuretest.html#_NETBSD_SOURCE"},{"doc":"D header file for NetBSD.","kind":"module","module":"core.sys.netbsd.sys.link_elf","name":"core.sys.netbsd.sys.link_elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb __callback,  void * __data)","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb_ngc __callback,  void * __data)","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.link_elf","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#link_map"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.link_elf","name":"Link_map","package":"druntime","parentType":"","signature":"Link_map = link_map","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#Link_map"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.link_elf","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.netbsd.sys.link_elf","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.link_elf","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = int  function(dl_phdr_info *,  size_t,  void  *)","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.netbsd.sys.link_elf","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = int  function(dl_phdr_info *,  size_t,  void  *) @nogc","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.netbsd.sys.link_elf","name":"ElfW","package":"druntime","parentType":"","signature":"ElfW(string type)","url":"/ddoc/druntime/core/sys/netbsd/sys/link_elf.html#ElfW"},{"doc":"D header file for NetBSD","kind":"module","module":"core.sys.netbsd.sys.mman","name":"core.sys.netbsd.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#__BSD_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"MAP_FAILED","package":"druntime","parentType":"","signature":"MAP_FAILED","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#MAP_FAILED"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"_MADV_NORMAL","package":"druntime","parentType":"","signature":"_MADV_NORMAL","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#_MADV_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"_MADV_RANDOM","package":"druntime","parentType":"","signature":"_MADV_RANDOM","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#_MADV_RANDOM"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"_MADV_SEQUENTIAL","package":"druntime","parentType":"","signature":"_MADV_SEQUENTIAL","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#_MADV_SEQUENTIAL"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"_MADV_WILLNEED","package":"druntime","parentType":"","signature":"_MADV_WILLNEED","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#_MADV_WILLNEED"},{"doc":"","kind":"variable","module":"core.sys.netbsd.sys.mman","name":"_MADV_DONTNEED","package":"druntime","parentType":"","signature":"_MADV_DONTNEED","url":"/ddoc/druntime/core/sys/netbsd/sys/mman.html#_MADV_DONTNEED"},{"doc":"D header file for NetBSD sys/sysctl.h","kind":"module","module":"core.sys.netbsd.sys.sysctl","name":"core.sys.netbsd.sys.sysctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/sys/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.sysctl","name":"sysctl","package":"druntime","parentType":"","signature":"int sysctl(const  int *  name,  uint  namelen,  void *  oldp,  size_t *  oldlenp,\n            const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/netbsd/sys/sysctl/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.sysctl","name":"sysctlbyname","package":"druntime","parentType":"","signature":"int sysctlbyname(const  char *  name,  void *  oldp,  size_t *  oldlenp,\n                  const  void *  newp,  size_t newlen)","url":"/ddoc/druntime/core/sys/netbsd/sys/sysctl/sysctlbyname.html"},{"doc":"","kind":"function","module":"core.sys.netbsd.sys.sysctl","name":"sysctlnametomib","package":"druntime","parentType":"","signature":"int sysctlnametomib(const  char *  sname,  int *  name,  size_t *  namelenp)","url":"/ddoc/druntime/core/sys/netbsd/sys/sysctl/sysctlnametomib.html"},{"doc":"D header file for NetBSD's extensions to POSIX's time.h.","kind":"module","module":"core.sys.netbsd.time","name":"core.sys.netbsd.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/netbsd/time.html"},{"doc":"","kind":"variable","module":"core.sys.netbsd.time","name":"CLOCK_REALTIME","package":"druntime","parentType":"","signature":"CLOCK_REALTIME","url":"/ddoc/druntime/core/sys/netbsd/time.html#CLOCK_REALTIME"},{"doc":"","kind":"variable","module":"core.sys.netbsd.time","name":"CLOCK_VIRTUAL","package":"druntime","parentType":"","signature":"CLOCK_VIRTUAL","url":"/ddoc/druntime/core/sys/netbsd/time.html#CLOCK_VIRTUAL"},{"doc":"","kind":"variable","module":"core.sys.netbsd.time","name":"CLOCK_PROF","package":"druntime","parentType":"","signature":"CLOCK_PROF","url":"/ddoc/druntime/core/sys/netbsd/time.html#CLOCK_PROF"},{"doc":"","kind":"variable","module":"core.sys.netbsd.time","name":"CLOCK_MONOTONIC","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC","url":"/ddoc/druntime/core/sys/netbsd/time.html#CLOCK_MONOTONIC"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.dlfcn","name":"core.sys.openbsd.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.dlfcn","name":"dlctl","package":"druntime","parentType":"","signature":"int dlctl(void  *,  int,  void  *)","url":"/ddoc/druntime/core/sys/openbsd/dlfcn/dlctl.html"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"RTLD_NEXT","package":"druntime","parentType":"","signature":"RTLD_NEXT","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#RTLD_NEXT"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"RTLD_DEFAULT","package":"druntime","parentType":"","signature":"RTLD_DEFAULT","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#RTLD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"RTLD_SELF","package":"druntime","parentType":"","signature":"RTLD_SELF","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#RTLD_SELF"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"DL_GETERRNO","package":"druntime","parentType":"","signature":"DL_GETERRNO","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#DL_GETERRNO"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"DL_SETTHREADLCK","package":"druntime","parentType":"","signature":"DL_SETTHREADLCK","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#DL_SETTHREADLCK"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"DL_SETBINDLCK","package":"druntime","parentType":"","signature":"DL_SETBINDLCK","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#DL_SETBINDLCK"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"DL_REFERENCE","package":"druntime","parentType":"","signature":"DL_REFERENCE","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#DL_REFERENCE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.dlfcn","name":"DL_LAZY","package":"druntime","parentType":"","signature":"DL_LAZY","url":"/ddoc/druntime/core/sys/openbsd/dlfcn.html#DL_LAZY"},{"doc":"D header file for OpenBSD err.h.","kind":"module","module":"core.sys.openbsd.err","name":"core.sys.openbsd.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/err.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/err.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"errc","package":"druntime","parentType":"","signature":"void errc(int  eval,  int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/errc.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"warnc","package":"druntime","parentType":"","signature":"void warnc(int  code,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/warnc.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/openbsd/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"verrc","package":"druntime","parentType":"","signature":"void verrc(int  eval,  int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/verrc.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"vwarnc","package":"druntime","parentType":"","signature":"void vwarnc(int  code,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/vwarnc.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/openbsd/err/vwarnx.html"},{"doc":"OpenBSD implementation of glibc's $(LINK2 http://www.gnu.org/software/libc/manual/html_node/Backtraces.html backtrace) facility.","kind":"module","module":"core.sys.openbsd.execinfo","name":"core.sys.openbsd.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/execinfo.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.execinfo","name":"backtrace","package":"druntime","parentType":"","signature":"size_t backtrace(void * *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/execinfo/backtrace.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.execinfo","name":"backtrace_symbols","package":"druntime","parentType":"","signature":"char * * backtrace_symbols(const(void *) *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/execinfo/backtrace_symbols.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.execinfo","name":"backtrace_symbols_fd","package":"druntime","parentType":"","signature":"void backtrace_symbols_fd(const(void *) *,  size_t,  int)","url":"/ddoc/druntime/core/sys/openbsd/execinfo/backtrace_symbols_fd.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.execinfo","name":"backtrace_symbols_fmt","package":"druntime","parentType":"","signature":"char * * backtrace_symbols_fmt(const(void *) *,  size_t,  const  char *)","url":"/ddoc/druntime/core/sys/openbsd/execinfo/backtrace_symbols_fmt.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.execinfo","name":"backtrace_symbols_fd_fmt","package":"druntime","parentType":"","signature":"int backtrace_symbols_fd_fmt(const(void *) *,  size_t,  int,  const  char *)","url":"/ddoc/druntime/core/sys/openbsd/execinfo/backtrace_symbols_fd_fmt.html"},{"doc":"D header file for OpenBSD pthread_np.h.","kind":"module","module":"core.sys.openbsd.pthread_np","name":"core.sys.openbsd.pthread_np","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/pthread_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_mutexattr_getkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_getkind_np(pthread_mutexattr_t)","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_mutexattr_getkind_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_mutexattr_setkind_np","package":"druntime","parentType":"","signature":"int pthread_mutexattr_setkind_np(pthread_mutexattr_t *,  int)","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_mutexattr_setkind_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_get_name_np","package":"druntime","parentType":"","signature":"void pthread_get_name_np(pthread_t,  char *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_get_name_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_set_name_np","package":"druntime","parentType":"","signature":"void pthread_set_name_np(pthread_t,  const(char) *)","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_set_name_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_stackseg_np","package":"druntime","parentType":"","signature":"int pthread_stackseg_np(pthread_t,  stack_t *)","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_stackseg_np.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pthread_np","name":"pthread_main_np","package":"druntime","parentType":"","signature":"int pthread_main_np()","url":"/ddoc/druntime/core/sys/openbsd/pthread_np/pthread_main_np.html"},{"doc":"D header file for OpenBSD pwd.h.","kind":"module","module":"core.sys.openbsd.pwd","name":"core.sys.openbsd.pwd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/pwd.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pwd","name":"getpwnam_shadow","package":"druntime","parentType":"","signature":"passwd * getpwnam_shadow(scope  const  char *)","url":"/ddoc/druntime/core/sys/openbsd/pwd/getpwnam_shadow.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.pwd","name":"getpwuid_shadow","package":"druntime","parentType":"","signature":"passwd * getpwuid_shadow(uid_t)","url":"/ddoc/druntime/core/sys/openbsd/pwd/getpwuid_shadow.html"},{"doc":"D header file for OpenBSD stdlib.h.","kind":"module","module":"core.sys.openbsd.stdlib","name":"core.sys.openbsd.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"freezero","package":"druntime","parentType":"","signature":"void freezero(void *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/freezero.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"calloc_conceal","package":"druntime","parentType":"","signature":"void * calloc_conceal(size_t,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/calloc_conceal.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"malloc_conceal","package":"druntime","parentType":"","signature":"void * malloc_conceal(size_t)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/malloc_conceal.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"reallocarray","package":"druntime","parentType":"","signature":"void * reallocarray(void *,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/reallocarray.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"recallocarray","package":"druntime","parentType":"","signature":"void * recallocarray(void *,  size_t,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/recallocarray.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/openbsd/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *)","url":"/ddoc/druntime/core/sys/openbsd/stdlib/setprogname.html"},{"doc":"D header file for OpenBSD string.","kind":"module","module":"core.sys.openbsd.string","name":"core.sys.openbsd.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/string.html"},{"doc":"D header file for OpenBSD","kind":"module","module":"core.sys.openbsd.sys.cdefs","name":"core.sys.openbsd.sys.cdefs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/cdefs.html"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.cdefs","name":"__XPG_VISIBLE","package":"druntime","parentType":"","signature":"__XPG_VISIBLE","url":"/ddoc/druntime/core/sys/openbsd/sys/cdefs.html#__XPG_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.cdefs","name":"__POSIX_VISIBLE","package":"druntime","parentType":"","signature":"__POSIX_VISIBLE","url":"/ddoc/druntime/core/sys/openbsd/sys/cdefs.html#__POSIX_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.cdefs","name":"__ISO_C_VISIBLE","package":"druntime","parentType":"","signature":"__ISO_C_VISIBLE","url":"/ddoc/druntime/core/sys/openbsd/sys/cdefs.html#__ISO_C_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.cdefs","name":"__BSD_VISIBLE","package":"druntime","parentType":"","signature":"__BSD_VISIBLE","url":"/ddoc/druntime/core/sys/openbsd/sys/cdefs.html#__BSD_VISIBLE"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.sys.elf","name":"core.sys.openbsd.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/elf.html"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.sys.elf32","name":"core.sys.openbsd.sys.elf32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf32","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Lword","package":"druntime","parentType":"","signature":"Elf32_Lword = uint64_t","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Lword"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Hashelt","package":"druntime","parentType":"","signature":"Elf32_Hashelt = Elf32_Word","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Size","package":"druntime","parentType":"","signature":"Elf32_Size = Elf32_Word","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Size"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Ssize","package":"druntime","parentType":"","signature":"Elf32_Ssize = Elf32_Sword","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Ssize"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Dyn"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf32","name":"Elf32_Cap","package":"druntime","parentType":"","signature":"Elf32_Cap","url":"/ddoc/druntime/core/sys/openbsd/sys/elf32.html#Elf32_Cap"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.sys.elf64","name":"core.sys.openbsd.sys.elf64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf64","name":"ELF64_R_TYPE_DATA","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_DATA(I)(I i)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64/ELF64_R_TYPE_DATA.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf64","name":"ELF64_R_TYPE_ID","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_ID(I)(I i)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64/ELF64_R_TYPE_ID.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf64","name":"ELF64_R_TYPE_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_INFO(D,  T)(D d,  T t)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64/ELF64_R_TYPE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf64","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF64_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64/ELF64_ST_VISIBILITY.html"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Lword","package":"druntime","parentType":"","signature":"Elf64_Lword = uint64_t","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Lword"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Hashelt","package":"druntime","parentType":"","signature":"Elf64_Hashelt = Elf64_Word","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Hashelt"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Size","package":"druntime","parentType":"","signature":"Elf64_Size = Elf64_Xword","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Size"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Ssize","package":"druntime","parentType":"","signature":"Elf64_Ssize = Elf64_Sxword","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Ssize"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Dyn"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr = Elf_Note","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf64","name":"Elf64_Cap","package":"druntime","parentType":"","signature":"Elf64_Cap","url":"/ddoc/druntime/core/sys/openbsd/sys/elf64.html#Elf64_Cap"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.sys.elf_common","name":"core.sys.openbsd.sys.elf_common","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf_common","name":"IS_ELF","package":"druntime","parentType":"","signature":"auto IS_ELF(T)(T ehdr)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common/IS_ELF.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.elf_common","name":"VER_NDX","package":"druntime","parentType":"","signature":"auto VER_NDX(V)(V v)","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common/VER_NDX.html"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf_common","name":"Elf_Note","package":"druntime","parentType":"","signature":"Elf_Note","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#Elf_Note"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.elf_common","name":"Elf_GNU_Hash_Header","package":"druntime","parentType":"","signature":"Elf_GNU_Hash_Header","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#Elf_GNU_Hash_Header"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf_common","name":"VER_DEF_IDX","package":"druntime","parentType":"","signature":"VER_DEF_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_DEF_IDX"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.elf_common","name":"VER_NEED_IDX","package":"druntime","parentType":"","signature":"VER_NEED_IDX = VER_NDX","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_NEED_IDX"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"OLD_EI_BRAND","package":"druntime","parentType":"","signature":"OLD_EI_BRAND","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#OLD_EI_BRAND"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"EM_486","package":"druntime","parentType":"","signature":"EM_486","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#EM_486"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"EM_MIPS_RS4_BE","package":"druntime","parentType":"","signature":"EM_MIPS_RS4_BE","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#EM_MIPS_RS4_BE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"EM_ALPHA_STD","package":"druntime","parentType":"","signature":"EM_ALPHA_STD","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#EM_ALPHA_STD"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"PT_SUNW_EH_FRAME","package":"druntime","parentType":"","signature":"PT_SUNW_EH_FRAME","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#PT_SUNW_EH_FRAME"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"SHT_GNU_INCREMENTAL_INPUTS","package":"druntime","parentType":"","signature":"SHT_GNU_INCREMENTAL_INPUTS","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#SHT_GNU_INCREMENTAL_INPUTS"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"SHT_SUNW_verdef","package":"druntime","parentType":"","signature":"SHT_SUNW_verdef","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#SHT_SUNW_verdef"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"SHT_SUNW_verneed","package":"druntime","parentType":"","signature":"SHT_SUNW_verneed","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#SHT_SUNW_verneed"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"SHT_SUNW_versym","package":"druntime","parentType":"","signature":"SHT_SUNW_versym","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#SHT_SUNW_versym"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"NT_FPREGSET","package":"druntime","parentType":"","signature":"NT_FPREGSET","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#NT_FPREGSET"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"NT_TASKSTRUCT","package":"druntime","parentType":"","signature":"NT_TASKSTRUCT","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#NT_TASKSTRUCT"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"NT_AUXV","package":"druntime","parentType":"","signature":"NT_AUXV","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#NT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"DT_USED","package":"druntime","parentType":"","signature":"DT_USED","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#DT_USED"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"DF_1_BIND_NOW","package":"druntime","parentType":"","signature":"DF_1_BIND_NOW","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#DF_1_BIND_NOW"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VER_FLG_INFO","package":"druntime","parentType":"","signature":"VER_FLG_INFO","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_FLG_INFO"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VER_NDX_GIVEN","package":"druntime","parentType":"","signature":"VER_NDX_GIVEN","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_NDX_GIVEN"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VER_NDX_HIDDEN","package":"druntime","parentType":"","signature":"VER_NDX_HIDDEN","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_NDX_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VER_NEED_WEAK","package":"druntime","parentType":"","signature":"VER_NEED_WEAK","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_NEED_WEAK"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VER_NEED_HIDDEN","package":"druntime","parentType":"","signature":"VER_NEED_HIDDEN","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VER_NEED_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VERSYM_HIDDEN","package":"druntime","parentType":"","signature":"VERSYM_HIDDEN","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VERSYM_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"VERSYM_VERSION","package":"druntime","parentType":"","signature":"VERSYM_VERSION","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#VERSYM_VERSION"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.elf_common","name":"ELF_VER_CHR","package":"druntime","parentType":"","signature":"ELF_VER_CHR","url":"/ddoc/druntime/core/sys/openbsd/sys/elf_common.html#ELF_VER_CHR"},{"doc":"D header file for OpenBSD.","kind":"module","module":"core.sys.openbsd.sys.link_elf","name":"core.sys.openbsd.sys.link_elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb __callback,  void * __data)","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.link_elf","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"int dl_iterate_phdr(dl_iterate_phdr_cb_ngc __callback,  void * __data)","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.link_elf","name":"_rtld_addr_phdr","package":"druntime","parentType":"","signature":"int _rtld_addr_phdr(const  void *,  dl_phdr_info *)","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf/_rtld_addr_phdr.html"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.link_elf","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#link_map"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.link_elf","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.openbsd.sys.link_elf","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.link_elf","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = int  function(dl_phdr_info *,  size_t,  void  *)","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.link_elf","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = int  function(dl_phdr_info *,  size_t,  void  *) @nogc","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.openbsd.sys.link_elf","name":"ElfW","package":"druntime","parentType":"","signature":"ElfW(string type)","url":"/ddoc/druntime/core/sys/openbsd/sys/link_elf.html#ElfW"},{"doc":"D header file for OpenBSD","kind":"module","module":"core.sys.openbsd.sys.mman","name":"core.sys.openbsd.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.mman","name":"MAP_ANONYMOUS","package":"druntime","parentType":"","signature":"MAP_ANONYMOUS = MAP_ANON","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_ANONYMOUS"},{"doc":"","kind":"alias","module":"core.sys.openbsd.sys.mman","name":"MAP_COPY","package":"druntime","parentType":"","signature":"MAP_COPY = MAP_PRIVATE","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_COPY"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_CONCEAL","package":"druntime","parentType":"","signature":"MAP_CONCEAL","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_CONCEAL"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_FLAGMASK","package":"druntime","parentType":"","signature":"MAP_FLAGMASK","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_FLAGMASK"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_FILE","package":"druntime","parentType":"","signature":"MAP_FILE","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_FILE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_HASSEMAPHORE","package":"druntime","parentType":"","signature":"MAP_HASSEMAPHORE","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_HASSEMAPHORE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_INHERIT","package":"druntime","parentType":"","signature":"MAP_INHERIT","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_INHERIT"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_NOEXTEND","package":"druntime","parentType":"","signature":"MAP_NOEXTEND","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_NOEXTEND"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_NORESERVE","package":"druntime","parentType":"","signature":"MAP_NORESERVE","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_NORESERVE"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_RENAME","package":"druntime","parentType":"","signature":"MAP_RENAME","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_RENAME"},{"doc":"","kind":"variable","module":"core.sys.openbsd.sys.mman","name":"MAP_TRYFIXED","package":"druntime","parentType":"","signature":"MAP_TRYFIXED","url":"/ddoc/druntime/core/sys/openbsd/sys/mman.html#MAP_TRYFIXED"},{"doc":"D header file for OpenBSD sys/sysctl.h","kind":"module","module":"core.sys.openbsd.sys.sysctl","name":"core.sys.openbsd.sys.sysctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/sys/sysctl.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.sys.sysctl","name":"sysctl","package":"druntime","parentType":"","signature":"int sysctl(const  int *,  uint,  void *,  size_t *,  void *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/sys/sysctl/sysctl.html"},{"doc":"D header file for OpenBSD's extensions to POSIX's time.h.","kind":"module","module":"core.sys.openbsd.time","name":"core.sys.openbsd.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/time.html"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_REALTIME","package":"druntime","parentType":"","signature":"CLOCK_REALTIME","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_REALTIME"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_PROCESS_CPUTIME_ID","package":"druntime","parentType":"","signature":"CLOCK_PROCESS_CPUTIME_ID","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_PROCESS_CPUTIME_ID"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_MONOTONIC","package":"druntime","parentType":"","signature":"CLOCK_MONOTONIC","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_MONOTONIC"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_THREAD_CPUTIME_ID","package":"druntime","parentType":"","signature":"CLOCK_THREAD_CPUTIME_ID","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_THREAD_CPUTIME_ID"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_UPTIME","package":"druntime","parentType":"","signature":"CLOCK_UPTIME","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_UPTIME"},{"doc":"","kind":"variable","module":"core.sys.openbsd.time","name":"CLOCK_BOOTTIME","package":"druntime","parentType":"","signature":"CLOCK_BOOTTIME","url":"/ddoc/druntime/core/sys/openbsd/time.html#CLOCK_BOOTTIME"},{"doc":"D header file for OpenBSD unistd.h.","kind":"module","module":"core.sys.openbsd.unistd","name":"core.sys.openbsd.unistd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/openbsd/unistd.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.unistd","name":"getthrname","package":"druntime","parentType":"","signature":"int getthrname(pid_t,  char *,  size_t)","url":"/ddoc/druntime/core/sys/openbsd/unistd/getthrname.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.unistd","name":"pledge","package":"druntime","parentType":"","signature":"int pledge(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/openbsd/unistd/pledge.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.unistd","name":"setthrname","package":"druntime","parentType":"","signature":"int setthrname(pid_t,  const  scope  char *)","url":"/ddoc/druntime/core/sys/openbsd/unistd/setthrname.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.unistd","name":"unveil","package":"druntime","parentType":"","signature":"int unveil(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/openbsd/unistd/unveil.html"},{"doc":"","kind":"function","module":"core.sys.openbsd.unistd","name":"closefrom","package":"druntime","parentType":"","signature":"int closefrom(int)","url":"/ddoc/druntime/core/sys/openbsd/unistd/closefrom.html"},{"doc":"D header file to interface with the $(HTTP pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html, Posix AIO API).","kind":"module","module":"core.sys.posix.aio","name":"core.sys.posix.aio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/aio.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.arpa.inet","name":"core.sys.posix.arpa.inet","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/arpa/inet.html"},{"doc":"","kind":"variable","module":"core.sys.posix.arpa.inet","name":"INET_ADDRSTRLEN","package":"druntime","parentType":"","signature":"INET_ADDRSTRLEN","url":"/ddoc/druntime/core/sys/posix/arpa/inet.html#INET_ADDRSTRLEN"},{"doc":"","kind":"variable","module":"core.sys.posix.arpa.inet","name":"INET6_ADDRSTRLEN","package":"druntime","parentType":"","signature":"INET6_ADDRSTRLEN","url":"/ddoc/druntime/core/sys/posix/arpa/inet.html#INET6_ADDRSTRLEN"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). ...","kind":"module","module":"core.sys.posix.config","name":"core.sys.posix.config","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/config.html"},{"doc":"","kind":"variable","module":"core.sys.posix.config","name":"_XOPEN_SOURCE","package":"druntime","parentType":"","signature":"_XOPEN_SOURCE","url":"/ddoc/druntime/core/sys/posix/config.html#_XOPEN_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.posix.config","name":"_POSIX_SOURCE","package":"druntime","parentType":"","signature":"_POSIX_SOURCE","url":"/ddoc/druntime/core/sys/posix/config.html#_POSIX_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.posix.config","name":"_POSIX_C_SOURCE","package":"druntime","parentType":"","signature":"_POSIX_C_SOURCE","url":"/ddoc/druntime/core/sys/posix/config.html#_POSIX_C_SOURCE"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). ...","kind":"module","module":"core.sys.posix.dirent","name":"core.sys.posix.dirent","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/dirent.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.dlfcn","name":"core.sys.posix.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/dlfcn.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.endian","name":"core.sys.posix.endian","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/endian.html"},{"doc":"","kind":"variable","module":"core.sys.posix.endian","name":"LITTLE_ENDIAN","package":"druntime","parentType":"","signature":"LITTLE_ENDIAN","url":"/ddoc/druntime/core/sys/posix/endian.html#LITTLE_ENDIAN"},{"doc":"","kind":"variable","module":"core.sys.posix.endian","name":"BIG_ENDIAN","package":"druntime","parentType":"","signature":"BIG_ENDIAN","url":"/ddoc/druntime/core/sys/posix/endian.html#BIG_ENDIAN"},{"doc":"","kind":"variable","module":"core.sys.posix.endian","name":"PDP_ENDIAN","package":"druntime","parentType":"","signature":"PDP_ENDIAN","url":"/ddoc/druntime/core/sys/posix/endian.html#PDP_ENDIAN"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.fcntl","name":"core.sys.posix.fcntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/fcntl.html"},{"doc":"","kind":"function","module":"core.sys.posix.fcntl","name":"fcntl","package":"druntime","parentType":"","signature":"int fcntl(int,  int, ...)","url":"/ddoc/druntime/core/sys/posix/fcntl/fcntl.html"},{"doc":"","kind":"function","module":"core.sys.posix.fcntl","name":"posix_fallocate","package":"druntime","parentType":"","signature":"int posix_fallocate(int,  off_t,  off_t)","url":"/ddoc/druntime/core/sys/posix/fcntl/posix_fallocate.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.grp","name":"core.sys.posix.grp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/grp.html"},{"doc":"","kind":"function","module":"core.sys.posix.grp","name":"getgrnam","package":"druntime","parentType":"","signature":"group * getgrnam(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/grp/getgrnam.html"},{"doc":"","kind":"function","module":"core.sys.posix.grp","name":"getgrgid","package":"druntime","parentType":"","signature":"group * getgrgid(gid_t)","url":"/ddoc/druntime/core/sys/posix/grp/getgrgid.html"},{"doc":"D binding for the POSIX iconv library.","kind":"module","module":"core.sys.posix.iconv","name":"core.sys.posix.iconv","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/iconv.html"},{"doc":"Allocate descriptor for code conversion from codeset FROMCODE to codeset TOCODE.","kind":"function","module":"core.sys.posix.iconv","name":"iconv_open","package":"druntime","parentType":"","signature":"iconv_t iconv_open(const  scope  char *  tocode,  const  scope  char *  fromcode)","url":"/ddoc/druntime/core/sys/posix/iconv/iconv_open.html"},{"doc":"Convert at most *INBYTESLEFT bytes from *INBUF according to the code conversion algorithm specified by CD and place up to *OUTBYTESLEFT bytes in bu...","kind":"function","module":"core.sys.posix.iconv","name":"iconv","package":"druntime","parentType":"","signature":"size_t iconv(iconv_t cd,  const  scope  char * *  inbuf,\n          size_t *  inbytesleft,\n          char * *  outbuf,\n          size_t *  outbytesleft)","url":"/ddoc/druntime/core/sys/posix/iconv/iconv.html"},{"doc":"iconvctl queries or adjusts the behavior of the iconv function, when invoked with the specified conversion descriptor, depending on the request value.","kind":"function","module":"core.sys.posix.iconv","name":"iconvctl","package":"druntime","parentType":"","signature":"int iconvctl(iconv_t cd,  int  request,  void *  argument)","url":"/ddoc/druntime/core/sys/posix/iconv/iconvctl.html"},{"doc":"Free resources allocated for descriptor CD for code conversion.","kind":"function","module":"core.sys.posix.iconv","name":"iconv_close","package":"druntime","parentType":"","signature":"int iconv_close(iconv_t cd)","url":"/ddoc/druntime/core/sys/posix/iconv/iconv_close.html"},{"doc":"","kind":"alias","module":"core.sys.posix.iconv","name":"iconv_t","package":"druntime","parentType":"","signature":"iconv_t = void *","url":"/ddoc/druntime/core/sys/posix/iconv.html#iconv_t"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.inttypes","name":"core.sys.posix.inttypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/inttypes.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"imaxabs","package":"druntime","parentType":"","signature":"intmax_t imaxabs(intmax_t)","url":"/ddoc/druntime/core/sys/posix/inttypes/imaxabs.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"imaxdiv","package":"druntime","parentType":"","signature":"imaxdiv_t imaxdiv(intmax_t,  intmax_t)","url":"/ddoc/druntime/core/sys/posix/inttypes/imaxdiv.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"strtoimax","package":"druntime","parentType":"","signature":"intmax_t strtoimax(const  scope  char *,  char * *,  int)","url":"/ddoc/druntime/core/sys/posix/inttypes/strtoimax.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"strtoumax","package":"druntime","parentType":"","signature":"uintmax_t strtoumax(const  scope  char *,  char * *,  int)","url":"/ddoc/druntime/core/sys/posix/inttypes/strtoumax.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"wcstoimax","package":"druntime","parentType":"","signature":"intmax_t wcstoimax(const  scope  wchar_t *,  wchar_t * *,  int)","url":"/ddoc/druntime/core/sys/posix/inttypes/wcstoimax.html"},{"doc":"","kind":"function","module":"core.sys.posix.inttypes","name":"wcstoumax","package":"druntime","parentType":"","signature":"uintmax_t wcstoumax(const  scope  wchar_t *,  wchar_t * *,  int)","url":"/ddoc/druntime/core/sys/posix/inttypes/wcstoumax.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.libgen","name":"core.sys.posix.libgen","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/libgen.html"},{"doc":"","kind":"function","module":"core.sys.posix.libgen","name":"basename","package":"druntime","parentType":"","signature":"char * basename(char *)","url":"/ddoc/druntime/core/sys/posix/libgen/basename.html"},{"doc":"","kind":"function","module":"core.sys.posix.libgen","name":"dirname","package":"druntime","parentType":"","signature":"char * dirname(char *)","url":"/ddoc/druntime/core/sys/posix/libgen/dirname.html"},{"doc":"D header file for POSIX's <locale.h>.","kind":"module","module":"core.sys.posix.locale","name":"core.sys.posix.locale","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/locale.html"},{"doc":"D header file for Posix Message Queues","kind":"module","module":"core.sys.posix.mqueue","name":"core.sys.posix.mqueue","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/mqueue.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.net.if_","name":"core.sys.posix.net.if_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/net/if_.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.netdb","name":"core.sys.posix.netdb","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/netdb.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"endhostent","package":"druntime","parentType":"","signature":"void endhostent()","url":"/ddoc/druntime/core/sys/posix/netdb/endhostent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"endnetent","package":"druntime","parentType":"","signature":"void endnetent()","url":"/ddoc/druntime/core/sys/posix/netdb/endnetent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"endprotoent","package":"druntime","parentType":"","signature":"void endprotoent()","url":"/ddoc/druntime/core/sys/posix/netdb/endprotoent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"endservent","package":"druntime","parentType":"","signature":"void endservent()","url":"/ddoc/druntime/core/sys/posix/netdb/endservent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"freeaddrinfo","package":"druntime","parentType":"","signature":"void freeaddrinfo(addrinfo *)","url":"/ddoc/druntime/core/sys/posix/netdb/freeaddrinfo.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"gai_strerror","package":"druntime","parentType":"","signature":"const(char) * gai_strerror(int)","url":"/ddoc/druntime/core/sys/posix/netdb/gai_strerror.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getaddrinfo","package":"druntime","parentType":"","signature":"int getaddrinfo(const(char) *,  const(char) *,  const(addrinfo) *,  addrinfo * *)","url":"/ddoc/druntime/core/sys/posix/netdb/getaddrinfo.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"gethostbyaddr","package":"druntime","parentType":"","signature":"hostent * gethostbyaddr(const(void) *,  socklen_t,  int)","url":"/ddoc/druntime/core/sys/posix/netdb/gethostbyaddr.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"gethostbyname","package":"druntime","parentType":"","signature":"hostent * gethostbyname(const(char) *)","url":"/ddoc/druntime/core/sys/posix/netdb/gethostbyname.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"gethostent","package":"druntime","parentType":"","signature":"hostent * gethostent()","url":"/ddoc/druntime/core/sys/posix/netdb/gethostent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getnameinfo","package":"druntime","parentType":"","signature":"int getnameinfo(const(sockaddr) *,  socklen_t,  char *,  socklen_t,  char *,  socklen_t,  int)","url":"/ddoc/druntime/core/sys/posix/netdb/getnameinfo.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getnetbyaddr","package":"druntime","parentType":"","signature":"netent * getnetbyaddr(uint32_t,  int)","url":"/ddoc/druntime/core/sys/posix/netdb/getnetbyaddr.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getnetbyname","package":"druntime","parentType":"","signature":"netent * getnetbyname(const(char) *)","url":"/ddoc/druntime/core/sys/posix/netdb/getnetbyname.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getnetent","package":"druntime","parentType":"","signature":"netent * getnetent()","url":"/ddoc/druntime/core/sys/posix/netdb/getnetent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getprotobyname","package":"druntime","parentType":"","signature":"protoent * getprotobyname(const(char) *)","url":"/ddoc/druntime/core/sys/posix/netdb/getprotobyname.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getprotobynumber","package":"druntime","parentType":"","signature":"protoent * getprotobynumber(int)","url":"/ddoc/druntime/core/sys/posix/netdb/getprotobynumber.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getprotoent","package":"druntime","parentType":"","signature":"protoent * getprotoent()","url":"/ddoc/druntime/core/sys/posix/netdb/getprotoent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getservbyname","package":"druntime","parentType":"","signature":"servent * getservbyname(const(char) *,  const(char) *)","url":"/ddoc/druntime/core/sys/posix/netdb/getservbyname.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getservbyport","package":"druntime","parentType":"","signature":"servent * getservbyport(int,  const(char) *)","url":"/ddoc/druntime/core/sys/posix/netdb/getservbyport.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"getservent","package":"druntime","parentType":"","signature":"servent * getservent()","url":"/ddoc/druntime/core/sys/posix/netdb/getservent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"sethostent","package":"druntime","parentType":"","signature":"void sethostent(int)","url":"/ddoc/druntime/core/sys/posix/netdb/sethostent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"setnetent","package":"druntime","parentType":"","signature":"void setnetent(int)","url":"/ddoc/druntime/core/sys/posix/netdb/setnetent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"setprotoent","package":"druntime","parentType":"","signature":"void setprotoent(int)","url":"/ddoc/druntime/core/sys/posix/netdb/setprotoent.html"},{"doc":"","kind":"function","module":"core.sys.posix.netdb","name":"setservent","package":"druntime","parentType":"","signature":"void setservent(int)","url":"/ddoc/druntime/core/sys/posix/netdb/setservent.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.netinet.in_","name":"core.sys.posix.netinet.in_","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/netinet/in_.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.netinet.tcp","name":"core.sys.posix.netinet.tcp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/netinet/tcp.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.poll","name":"core.sys.posix.poll","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/poll.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.pthread","name":"core.sys.posix.pthread","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/pthread.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_atfork","package":"druntime","parentType":"","signature":"int pthread_atfork(void  function(),  void  function(),  void  function())","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_atfork.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_atfork","package":"druntime","parentType":"","signature":"int pthread_atfork(void  function() @nogc,  void  function() @nogc,  void  function() @nogc)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_atfork.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_destroy","package":"druntime","parentType":"","signature":"int pthread_attr_destroy(pthread_attr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_getdetachstate","package":"druntime","parentType":"","signature":"int pthread_attr_getdetachstate(const  scope  pthread_attr_t *,  int *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_getdetachstate.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_getschedparam","package":"druntime","parentType":"","signature":"int pthread_attr_getschedparam(const  scope  pthread_attr_t *,  sched_param *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_getschedparam.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_init","package":"druntime","parentType":"","signature":"int pthread_attr_init(pthread_attr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_setdetachstate","package":"druntime","parentType":"","signature":"int pthread_attr_setdetachstate(pthread_attr_t *,  int)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_setdetachstate.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_attr_setschedparam","package":"druntime","parentType":"","signature":"int pthread_attr_setschedparam(const  scope  pthread_attr_t *,  sched_param *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_attr_setschedparam.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cancel","package":"druntime","parentType":"","signature":"int pthread_cancel(pthread_t)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cancel.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_broadcast","package":"druntime","parentType":"","signature":"int pthread_cond_broadcast(pthread_cond_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_broadcast.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_destroy","package":"druntime","parentType":"","signature":"int pthread_cond_destroy(pthread_cond_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_init","package":"druntime","parentType":"","signature":"int pthread_cond_init(const  scope  pthread_cond_t *,  pthread_condattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_signal","package":"druntime","parentType":"","signature":"int pthread_cond_signal(pthread_cond_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_signal.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_timedwait","package":"druntime","parentType":"","signature":"int pthread_cond_timedwait(pthread_cond_t *,  pthread_mutex_t *,  const  scope  timespec *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_timedwait.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_cond_wait","package":"druntime","parentType":"","signature":"int pthread_cond_wait(pthread_cond_t *,  pthread_mutex_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_cond_wait.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_condattr_destroy","package":"druntime","parentType":"","signature":"int pthread_condattr_destroy(pthread_condattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_condattr_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_condattr_init","package":"druntime","parentType":"","signature":"int pthread_condattr_init(pthread_condattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_condattr_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_create","package":"druntime","parentType":"","signature":"int pthread_create(pthread_t *,  const  scope  pthread_attr_t *,  void *  function(void *),  void *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_create.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_detach","package":"druntime","parentType":"","signature":"int pthread_detach(pthread_t)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_detach.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_equal","package":"druntime","parentType":"","signature":"int pthread_equal(pthread_t,  pthread_t)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_equal.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_exit","package":"druntime","parentType":"","signature":"void pthread_exit(void *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_exit.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_getspecific","package":"druntime","parentType":"","signature":"void * pthread_getspecific(pthread_key_t)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_getspecific.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_join","package":"druntime","parentType":"","signature":"int pthread_join(pthread_t,  void * *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_join.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_key_create","package":"druntime","parentType":"","signature":"int pthread_key_create(pthread_key_t *,  void  function(void *))","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_key_create.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_key_delete","package":"druntime","parentType":"","signature":"int pthread_key_delete(pthread_key_t)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_key_delete.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_destroy","package":"druntime","parentType":"","signature":"int pthread_mutex_destroy(pthread_mutex_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_init","package":"druntime","parentType":"","signature":"int pthread_mutex_init(pthread_mutex_t *,  pthread_mutexattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_lock","package":"druntime","parentType":"","signature":"int pthread_mutex_lock(pthread_mutex_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_lock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_lock","package":"druntime","parentType":"","signature":"int pthread_mutex_lock(shared(pthread_mutex_t) *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_lock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_trylock","package":"druntime","parentType":"","signature":"int pthread_mutex_trylock(pthread_mutex_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_trylock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_trylock","package":"druntime","parentType":"","signature":"int pthread_mutex_trylock(shared(pthread_mutex_t) *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_trylock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_unlock","package":"druntime","parentType":"","signature":"int pthread_mutex_unlock(pthread_mutex_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_unlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutex_unlock","package":"druntime","parentType":"","signature":"int pthread_mutex_unlock(shared(pthread_mutex_t) *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutex_unlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutexattr_destroy","package":"druntime","parentType":"","signature":"int pthread_mutexattr_destroy(pthread_mutexattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutexattr_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_mutexattr_init","package":"druntime","parentType":"","signature":"int pthread_mutexattr_init(pthread_mutexattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_mutexattr_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_once","package":"druntime","parentType":"","signature":"int pthread_once(pthread_once_t *,  void  function())","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_once.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_destroy","package":"druntime","parentType":"","signature":"int pthread_rwlock_destroy(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_init","package":"druntime","parentType":"","signature":"int pthread_rwlock_init(pthread_rwlock_t *,  const  scope  pthread_rwlockattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_rdlock","package":"druntime","parentType":"","signature":"int pthread_rwlock_rdlock(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_rdlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_tryrdlock","package":"druntime","parentType":"","signature":"int pthread_rwlock_tryrdlock(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_tryrdlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_trywrlock","package":"druntime","parentType":"","signature":"int pthread_rwlock_trywrlock(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_trywrlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_unlock","package":"druntime","parentType":"","signature":"int pthread_rwlock_unlock(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_unlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlock_wrlock","package":"druntime","parentType":"","signature":"int pthread_rwlock_wrlock(pthread_rwlock_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlock_wrlock.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlockattr_destroy","package":"druntime","parentType":"","signature":"int pthread_rwlockattr_destroy(pthread_rwlockattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlockattr_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_rwlockattr_init","package":"druntime","parentType":"","signature":"int pthread_rwlockattr_init(pthread_rwlockattr_t *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_rwlockattr_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_self","package":"druntime","parentType":"","signature":"pthread_t pthread_self()","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_self.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_setcancelstate","package":"druntime","parentType":"","signature":"int pthread_setcancelstate(int,  int *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_setcancelstate.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_setcanceltype","package":"druntime","parentType":"","signature":"int pthread_setcanceltype(int,  int *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_setcanceltype.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_setspecific","package":"druntime","parentType":"","signature":"int pthread_setspecific(pthread_key_t,  const  scope  void *)","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_setspecific.html"},{"doc":"","kind":"function","module":"core.sys.posix.pthread","name":"pthread_testcancel","package":"druntime","parentType":"","signature":"void pthread_testcancel()","url":"/ddoc/druntime/core/sys/posix/pthread/pthread_testcancel.html"},{"doc":"","kind":"alias","module":"core.sys.posix.pthread","name":"_pthread_cleanup_routine","package":"druntime","parentType":"","signature":"_pthread_cleanup_routine = void  function(void *)","url":"/ddoc/druntime/core/sys/posix/pthread.html#_pthread_cleanup_routine"},{"doc":"","kind":"alias","module":"core.sys.posix.pthread","name":"_pthread_cleanup_routine_nogc","package":"druntime","parentType":"","signature":"_pthread_cleanup_routine_nogc = void  function(void *) @nogc","url":"/ddoc/druntime/core/sys/posix/pthread.html#_pthread_cleanup_routine_nogc"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.pwd","name":"core.sys.posix.pwd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/pwd.html"},{"doc":"","kind":"function","module":"core.sys.posix.pwd","name":"getpwnam","package":"druntime","parentType":"","signature":"passwd * getpwnam(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/pwd/getpwnam.html"},{"doc":"","kind":"function","module":"core.sys.posix.pwd","name":"getpwuid","package":"druntime","parentType":"","signature":"passwd * getpwuid(uid_t)","url":"/ddoc/druntime/core/sys/posix/pwd/getpwuid.html"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). ...","kind":"module","module":"core.sys.posix.sched","name":"core.sys.posix.sched","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sched.html"},{"doc":"","kind":"function","module":"core.sys.posix.sched","name":"sched_getparam","package":"druntime","parentType":"","signature":"int sched_getparam(pid_t,  sched_param *)","url":"/ddoc/druntime/core/sys/posix/sched/sched_getparam.html"},{"doc":"","kind":"function","module":"core.sys.posix.sched","name":"sched_getscheduler","package":"druntime","parentType":"","signature":"int sched_getscheduler(pid_t)","url":"/ddoc/druntime/core/sys/posix/sched/sched_getscheduler.html"},{"doc":"","kind":"function","module":"core.sys.posix.sched","name":"sched_setparam","package":"druntime","parentType":"","signature":"int sched_setparam(pid_t,  const  scope  sched_param *)","url":"/ddoc/druntime/core/sys/posix/sched/sched_setparam.html"},{"doc":"","kind":"function","module":"core.sys.posix.sched","name":"sched_setscheduler","package":"druntime","parentType":"","signature":"int sched_setscheduler(pid_t,  int,  const  scope  sched_param *)","url":"/ddoc/druntime/core/sys/posix/sched/sched_setscheduler.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.semaphore","name":"core.sys.posix.semaphore","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/semaphore.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_close","package":"druntime","parentType":"","signature":"int sem_close(sem_t *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_close.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_destroy","package":"druntime","parentType":"","signature":"int sem_destroy(sem_t *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_getvalue","package":"druntime","parentType":"","signature":"int sem_getvalue(sem_t *,  int *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_getvalue.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_init","package":"druntime","parentType":"","signature":"int sem_init(sem_t *,  int,  uint)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_open","package":"druntime","parentType":"","signature":"sem_t * sem_open(const  scope  char *,  int, ...)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_open.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_post","package":"druntime","parentType":"","signature":"int sem_post(sem_t *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_post.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_trywait","package":"druntime","parentType":"","signature":"int sem_trywait(sem_t *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_trywait.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_unlink","package":"druntime","parentType":"","signature":"int sem_unlink(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_unlink.html"},{"doc":"","kind":"function","module":"core.sys.posix.semaphore","name":"sem_wait","package":"druntime","parentType":"","signature":"int sem_wait(sem_t *)","url":"/ddoc/druntime/core/sys/posix/semaphore/sem_wait.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.setjmp","name":"core.sys.posix.setjmp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/setjmp.html"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Licens...","kind":"module","module":"core.sys.posix.signal","name":"core.sys.posix.signal","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/signal.html"},{"doc":"","kind":"alias","module":"core.sys.posix.signal","name":"sigfn_t","package":"druntime","parentType":"","signature":"sigfn_t = void  function(int)","url":"/ddoc/druntime/core/sys/posix/signal.html#sigfn_t"},{"doc":"","kind":"alias","module":"core.sys.posix.signal","name":"sigactfn_t","package":"druntime","parentType":"","signature":"sigactfn_t = void  function(int,  siginfo_t *,  void *)","url":"/ddoc/druntime/core/sys/posix/signal.html#sigactfn_t"},{"doc":"","kind":"alias","module":"core.sys.posix.signal","name":"sigfn_t2","package":"druntime","parentType":"","signature":"sigfn_t2 = void  function(int)","url":"/ddoc/druntime/core/sys/posix/signal.html#sigfn_t2"},{"doc":"","kind":"alias","module":"core.sys.posix.signal","name":"sigactfn_t2","package":"druntime","parentType":"","signature":"sigactfn_t2 = void  function(int,  siginfo_t *,  void *)","url":"/ddoc/druntime/core/sys/posix/signal.html#sigactfn_t2"},{"doc":"","kind":"union","module":"core.sys.posix.signal","name":"sigval","package":"druntime","parentType":"","signature":"sigval","url":"/ddoc/druntime/core/sys/posix/signal.html#sigval"},{"doc":"D header file for spawn.h.","kind":"module","module":"core.sys.posix.spawn","name":"core.sys.posix.spawn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/spawn.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn_file_actions_addclose","package":"druntime","parentType":"","signature":"int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *,  int)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn_file_actions_addclose.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn_file_actions_adddup2","package":"druntime","parentType":"","signature":"int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *,  int,  int)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn_file_actions_adddup2.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn_file_actions_addopen","package":"druntime","parentType":"","signature":"int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *,  int,  const  char *,  int,  mode_t)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn_file_actions_addopen.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn_file_actions_destroy","package":"druntime","parentType":"","signature":"int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn_file_actions_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn_file_actions_init","package":"druntime","parentType":"","signature":"int posix_spawn_file_actions_init(posix_spawn_file_actions_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn_file_actions_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_destroy","package":"druntime","parentType":"","signature":"int posix_spawnattr_destroy(posix_spawnattr_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_destroy.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_getflags","package":"druntime","parentType":"","signature":"int posix_spawnattr_getflags(const  posix_spawnattr_t *,  short *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_getflags.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_getpgroup","package":"druntime","parentType":"","signature":"int posix_spawnattr_getpgroup(const  posix_spawnattr_t *,  pid_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_getpgroup.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_getsigdefault","package":"druntime","parentType":"","signature":"int posix_spawnattr_getsigdefault(const  posix_spawnattr_t *,  sigset_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_getsigdefault.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_getsigmask","package":"druntime","parentType":"","signature":"int posix_spawnattr_getsigmask(const  posix_spawnattr_t *,  sigset_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_getsigmask.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_init","package":"druntime","parentType":"","signature":"int posix_spawnattr_init(posix_spawnattr_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_init.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_setflags","package":"druntime","parentType":"","signature":"int posix_spawnattr_setflags(posix_spawnattr_t *,  short)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_setflags.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_setpgroup","package":"druntime","parentType":"","signature":"int posix_spawnattr_setpgroup(posix_spawnattr_t *,  pid_t)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_setpgroup.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_setsigdefault","package":"druntime","parentType":"","signature":"int posix_spawnattr_setsigdefault(posix_spawnattr_t *,  const  sigset_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_setsigdefault.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnattr_setsigmask","package":"druntime","parentType":"","signature":"int posix_spawnattr_setsigmask(posix_spawnattr_t *,  const  sigset_t *)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnattr_setsigmask.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawn","package":"druntime","parentType":"","signature":"int posix_spawn(pid_t * pid,  const  char *  path,\n                 const  posix_spawn_file_actions_t *  file_actions,\n                 const  posix_spawnattr_t *  attrp,\n                 const  char * *  argv,  const  char * *  envp)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawn.html"},{"doc":"","kind":"function","module":"core.sys.posix.spawn","name":"posix_spawnp","package":"druntime","parentType":"","signature":"int posix_spawnp(pid_t *  pid,  const  char *  file,\n                  const  posix_spawn_file_actions_t *  file_actions,\n                  const  posix_spawnattr_t *  attrp,\n                  const  char * *  argv,  const  char * *  envp)","url":"/ddoc/druntime/core/sys/posix/spawn/posix_spawnp.html"},{"doc":"D header file for C99.","kind":"module","module":"core.sys.posix.stdc.time","name":"core.sys.posix.stdc.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/stdc/time.html"},{"doc":"","kind":"struct","module":"core.sys.posix.stdc.time","name":"tm","package":"druntime","parentType":"","signature":"tm","url":"/ddoc/druntime/core/sys/posix/stdc/time.html#tm"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.stdio","name":"core.sys.posix.stdio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/stdio.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"ctermid","package":"druntime","parentType":"","signature":"char * ctermid(char *)","url":"/ddoc/druntime/core/sys/posix/stdio/ctermid.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"fdopen","package":"druntime","parentType":"","signature":"FILE * fdopen(int,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/stdio/fdopen.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"fileno","package":"druntime","parentType":"","signature":"int fileno(FILE *)","url":"/ddoc/druntime/core/sys/posix/stdio/fileno.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"gets","package":"druntime","parentType":"","signature":"char * gets(char *)","url":"/ddoc/druntime/core/sys/posix/stdio/gets.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"pclose","package":"druntime","parentType":"","signature":"int pclose(FILE *)","url":"/ddoc/druntime/core/sys/posix/stdio/pclose.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"popen","package":"druntime","parentType":"","signature":"FILE * popen(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/stdio/popen.html"},{"doc":"","kind":"function","module":"core.sys.posix.stdio","name":"tempnam","package":"druntime","parentType":"","signature":"char * tempnam(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/stdio/tempnam.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.stdlib","name":"core.sys.posix.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/stdlib.html"},{"doc":"D header file for POSIX's <string.h>.","kind":"module","module":"core.sys.posix.string","name":"core.sys.posix.string","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/string.html"},{"doc":"Copy string until character found","kind":"function","module":"core.sys.posix.string","name":"memccpy","package":"druntime","parentType":"","signature":"void * memccpy(return  scope  void *  dst,  scope  const  void *  src,  int  c,  size_t n)","url":"/ddoc/druntime/core/sys/posix/string/memccpy.html"},{"doc":"Copy string (including terminating '\\0')","kind":"function","module":"core.sys.posix.string","name":"stpcpy","package":"druntime","parentType":"","signature":"char * stpcpy(return  scope  char *  dst,  scope  const  char *  src)","url":"/ddoc/druntime/core/sys/posix/string/stpcpy.html"},{"doc":"Ditto","kind":"function","module":"core.sys.posix.string","name":"stpncpy","package":"druntime","parentType":"","signature":"char * stpncpy(return  scope  char *  dst,  const  char *  src,  size_t len)","url":"/ddoc/druntime/core/sys/posix/string/stpncpy.html"},{"doc":"Compare strings according to current collation","kind":"function","module":"core.sys.posix.string","name":"strcoll_l","package":"druntime","parentType":"","signature":"int strcoll_l(scope  const  char *  s1,  scope  const  char *  s2,  locale_t locale)","url":"/ddoc/druntime/core/sys/posix/string/strcoll_l.html"},{"doc":"","kind":"function","module":"core.sys.posix.string","name":"strerror_l","package":"druntime","parentType":"","signature":"char * strerror_l(int,  locale_t)","url":"/ddoc/druntime/core/sys/posix/string/strerror_l.html"},{"doc":"Find length of string up to `maxlen`","kind":"function","module":"core.sys.posix.string","name":"strnlen","package":"druntime","parentType":"","signature":"size_t strnlen(scope  const  char *  str,  size_t maxlen)","url":"/ddoc/druntime/core/sys/posix/string/strnlen.html"},{"doc":"System signal messages","kind":"function","module":"core.sys.posix.string","name":"strsignal","package":"druntime","parentType":"","signature":"const(char) * strsignal(int)","url":"/ddoc/druntime/core/sys/posix/string/strsignal.html"},{"doc":"Isolate sequential tokens in a null-terminated string","kind":"function","module":"core.sys.posix.string","name":"strtok_r","package":"druntime","parentType":"","signature":"char * strtok_r(return  scope  char *  str,  scope  const  char *  sep,  char * *  context)","url":"/ddoc/druntime/core/sys/posix/string/strtok_r.html"},{"doc":"Transform a string under locale","kind":"function","module":"core.sys.posix.string","name":"strxfrm_l","package":"druntime","parentType":"","signature":"size_t strxfrm_l(char *  s1,  scope  const  char *  s2,  size_t n,  locale_t locale)","url":"/ddoc/druntime/core/sys/posix/string/strxfrm_l.html"},{"doc":"D header file for POSIX's <strings.h>.","kind":"module","module":"core.sys.posix.strings","name":"core.sys.posix.strings","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/strings.html"},{"doc":"Find first bit set in a word","kind":"function","module":"core.sys.posix.strings","name":"ffs","package":"druntime","parentType":"","signature":"int ffs(int  i)","url":"/ddoc/druntime/core/sys/posix/strings/ffs.html"},{"doc":"Compare two strings ignoring case","kind":"function","module":"core.sys.posix.strings","name":"strcasecmp","package":"druntime","parentType":"","signature":"int strcasecmp(scope  const  char *  s1,  scope  const  char *  s2)","url":"/ddoc/druntime/core/sys/posix/strings/strcasecmp.html"},{"doc":"Compare two strings ignoring case, with the specified locale","kind":"function","module":"core.sys.posix.strings","name":"strcasecmp_l","package":"druntime","parentType":"","signature":"int strcasecmp_l(scope  const  char *  s1,  scope  const  char *  s2,  scope  locale_t locale)","url":"/ddoc/druntime/core/sys/posix/strings/strcasecmp_l.html"},{"doc":"Compare two strings ignoring case, up to n characters","kind":"function","module":"core.sys.posix.strings","name":"strncasecmp","package":"druntime","parentType":"","signature":"int strncasecmp(scope  const  char *  s1,  scope  const  char *  s2,  size_t n)","url":"/ddoc/druntime/core/sys/posix/strings/strncasecmp.html"},{"doc":"Compare two strings ignoring case, with the specified locale, up to n characters","kind":"function","module":"core.sys.posix.strings","name":"strncasecmp_l","package":"druntime","parentType":"","signature":"int strncasecmp_l(scope  const  char *  s1,  const  char *  s2,  size_t n,  locale_t locale)","url":"/ddoc/druntime/core/sys/posix/strings/strncasecmp_l.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.filio","name":"core.sys.posix.sys.filio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/filio.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.ioccom","name":"core.sys.posix.sys.ioccom","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/ioccom.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.ioctl","name":"core.sys.posix.sys.ioctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/ioctl.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.ipc","name":"core.sys.posix.sys.ipc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/ipc.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.mman","name":"core.sys.posix.sys.mman","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/mman.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.msg","name":"core.sys.posix.sys.msg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/msg.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.msg","name":"msgctl","package":"druntime","parentType":"","signature":"int msgctl(int  msqid,  int  cmd,  msqid_ds *  __buf)","url":"/ddoc/druntime/core/sys/posix/sys/msg/msgctl.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.msg","name":"msgget","package":"druntime","parentType":"","signature":"int msgget(key_t key,  int  msgflg)","url":"/ddoc/druntime/core/sys/posix/sys/msg/msgget.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.msg","name":"msgrcv","package":"druntime","parentType":"","signature":"ssize_t msgrcv(int  msqid,  void *  msgp,  size_t msgsz,  c_long msgtyp,  int  msgflg)","url":"/ddoc/druntime/core/sys/posix/sys/msg/msgrcv.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.msg","name":"msgsnd","package":"druntime","parentType":"","signature":"int msgsnd(int  msqid,  msgbuf *  msgp,  int  msgsz,  int  msgflg)","url":"/ddoc/druntime/core/sys/posix/sys/msg/msgsnd.html"},{"doc":"","kind":"struct","module":"core.sys.posix.sys.msg","name":"msgbuf","package":"druntime","parentType":"","signature":"msgbuf","url":"/ddoc/druntime/core/sys/posix/sys/msg.html#msgbuf"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.resource","name":"core.sys.posix.sys.resource","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/resource.html"},{"doc":"","kind":"struct","module":"core.sys.posix.sys.resource","name":"rlimit","package":"druntime","parentType":"","signature":"rlimit","url":"/ddoc/druntime/core/sys/posix/sys/resource.html#rlimit"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.select","name":"core.sys.posix.sys.select","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/select.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.shm","name":"core.sys.posix.sys.shm","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/shm.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.socket","name":"core.sys.posix.sys.socket","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/socket.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.stat","name":"core.sys.posix.sys.stat","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/stat.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.stat","name":"chmod","package":"druntime","parentType":"","signature":"int chmod(const  scope  char *,  mode_t)","url":"/ddoc/druntime/core/sys/posix/sys/stat/chmod.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.stat","name":"fchmod","package":"druntime","parentType":"","signature":"int fchmod(int,  mode_t)","url":"/ddoc/druntime/core/sys/posix/sys/stat/fchmod.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.stat","name":"mkdir","package":"druntime","parentType":"","signature":"int mkdir(const  scope  char *,  mode_t)","url":"/ddoc/druntime/core/sys/posix/sys/stat/mkdir.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.stat","name":"mkfifo","package":"druntime","parentType":"","signature":"int mkfifo(const  scope  char *,  mode_t)","url":"/ddoc/druntime/core/sys/posix/sys/stat/mkfifo.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.stat","name":"umask","package":"druntime","parentType":"","signature":"mode_t umask(mode_t)","url":"/ddoc/druntime/core/sys/posix/sys/stat/umask.html"},{"doc":"D header file correspoding to sys/statvfs.h.","kind":"module","module":"core.sys.posix.sys.statvfs","name":"core.sys.posix.sys.statvfs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/statvfs.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.time","name":"core.sys.posix.sys.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/time.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.ttycom","name":"core.sys.posix.sys.ttycom","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/ttycom.html"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). ...","kind":"module","module":"core.sys.posix.sys.types","name":"core.sys.posix.sys.types","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/types.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.uio","name":"core.sys.posix.sys.uio","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/uio.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.un","name":"core.sys.posix.sys.un","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/un.html"},{"doc":"","kind":"module","module":"core.sys.posix.sys.utsname","name":"core.sys.posix.sys.utsname","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/utsname.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.sys.wait","name":"core.sys.posix.sys.wait","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/sys/wait.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.wait","name":"wait","package":"druntime","parentType":"","signature":"pid_t wait(int *)","url":"/ddoc/druntime/core/sys/posix/sys/wait/wait.html"},{"doc":"","kind":"function","module":"core.sys.posix.sys.wait","name":"waitpid","package":"druntime","parentType":"","signature":"pid_t waitpid(pid_t,  int *,  int)","url":"/ddoc/druntime/core/sys/posix/sys/wait/waitpid.html"},{"doc":"D header file for POSIX system logger API. (http://pubs.opengroup.org/onlinepubs/007904875/basedefs/syslog.h.html)","kind":"module","module":"core.sys.posix.syslog","name":"core.sys.posix.syslog","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/syslog.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.termios","name":"core.sys.posix.termios","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/termios.html"},{"doc":"* D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). ...","kind":"module","module":"core.sys.posix.time","name":"core.sys.posix.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/time.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.ucontext","name":"core.sys.posix.ucontext","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/ucontext.html"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.unistd","name":"core.sys.posix.unistd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/unistd.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"access","package":"druntime","parentType":"","signature":"int access(const  scope  char *,  int)","url":"/ddoc/druntime/core/sys/posix/unistd/access.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"alarm","package":"druntime","parentType":"","signature":"uint alarm(uint)","url":"/ddoc/druntime/core/sys/posix/unistd/alarm.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"chdir","package":"druntime","parentType":"","signature":"int chdir(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/chdir.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"chown","package":"druntime","parentType":"","signature":"int chown(const  scope  char *,  uid_t,  gid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/chown.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"close","package":"druntime","parentType":"","signature":"int close(int)","url":"/ddoc/druntime/core/sys/posix/unistd/close.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"confstr","package":"druntime","parentType":"","signature":"size_t confstr(int,  char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/confstr.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"dup","package":"druntime","parentType":"","signature":"int dup(int)","url":"/ddoc/druntime/core/sys/posix/unistd/dup.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"dup2","package":"druntime","parentType":"","signature":"int dup2(int,  int)","url":"/ddoc/druntime/core/sys/posix/unistd/dup2.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execl","package":"druntime","parentType":"","signature":"int execl(const  scope  char *,  const  scope  char *, ...)","url":"/ddoc/druntime/core/sys/posix/unistd/execl.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execle","package":"druntime","parentType":"","signature":"int execle(const  scope  char *,  const  scope  char *, ...)","url":"/ddoc/druntime/core/sys/posix/unistd/execle.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execlp","package":"druntime","parentType":"","signature":"int execlp(const  scope  char *,  const  scope  char *, ...)","url":"/ddoc/druntime/core/sys/posix/unistd/execlp.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execv","package":"druntime","parentType":"","signature":"int execv(const  scope  char *,  const  scope  char * *)","url":"/ddoc/druntime/core/sys/posix/unistd/execv.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execve","package":"druntime","parentType":"","signature":"int execve(const  scope  char *,  const  scope  char * *,  const  scope  char * *)","url":"/ddoc/druntime/core/sys/posix/unistd/execve.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"execvp","package":"druntime","parentType":"","signature":"int execvp(const  scope  char *,  const  scope  char * *)","url":"/ddoc/druntime/core/sys/posix/unistd/execvp.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"_exit","package":"druntime","parentType":"","signature":"noreturn _exit(int)","url":"/ddoc/druntime/core/sys/posix/unistd/_exit.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"fchown","package":"druntime","parentType":"","signature":"int fchown(int,  uid_t,  gid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/fchown.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"fork","package":"druntime","parentType":"","signature":"pid_t fork()","url":"/ddoc/druntime/core/sys/posix/unistd/fork.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"fpathconf","package":"druntime","parentType":"","signature":"c_long fpathconf(int,  int)","url":"/ddoc/druntime/core/sys/posix/unistd/fpathconf.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getcwd","package":"druntime","parentType":"","signature":"char * getcwd(char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/getcwd.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getegid","package":"druntime","parentType":"","signature":"gid_t getegid()","url":"/ddoc/druntime/core/sys/posix/unistd/getegid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"geteuid","package":"druntime","parentType":"","signature":"uid_t geteuid()","url":"/ddoc/druntime/core/sys/posix/unistd/geteuid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getgid","package":"druntime","parentType":"","signature":"gid_t getgid()","url":"/ddoc/druntime/core/sys/posix/unistd/getgid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getgroups","package":"druntime","parentType":"","signature":"int getgroups(int,  gid_t *)","url":"/ddoc/druntime/core/sys/posix/unistd/getgroups.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"gethostname","package":"druntime","parentType":"","signature":"int gethostname(char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/gethostname.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getlogin","package":"druntime","parentType":"","signature":"char * getlogin()","url":"/ddoc/druntime/core/sys/posix/unistd/getlogin.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getlogin_r","package":"druntime","parentType":"","signature":"int getlogin_r(char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/getlogin_r.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getopt","package":"druntime","parentType":"","signature":"int getopt(int,  const  scope  char * *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/getopt.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getpgrp","package":"druntime","parentType":"","signature":"pid_t getpgrp()","url":"/ddoc/druntime/core/sys/posix/unistd/getpgrp.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getpid","package":"druntime","parentType":"","signature":"pid_t getpid()","url":"/ddoc/druntime/core/sys/posix/unistd/getpid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getppid","package":"druntime","parentType":"","signature":"pid_t getppid()","url":"/ddoc/druntime/core/sys/posix/unistd/getppid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"getuid","package":"druntime","parentType":"","signature":"uid_t getuid()","url":"/ddoc/druntime/core/sys/posix/unistd/getuid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"isatty","package":"druntime","parentType":"","signature":"int isatty(int)","url":"/ddoc/druntime/core/sys/posix/unistd/isatty.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"link","package":"druntime","parentType":"","signature":"int link(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/link.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"pathconf","package":"druntime","parentType":"","signature":"c_long pathconf(const  scope  char *,  int)","url":"/ddoc/druntime/core/sys/posix/unistd/pathconf.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"pause","package":"druntime","parentType":"","signature":"int pause()","url":"/ddoc/druntime/core/sys/posix/unistd/pause.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"pipe","package":"druntime","parentType":"","signature":"int pipe(ref  int[2])","url":"/ddoc/druntime/core/sys/posix/unistd/pipe.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"read","package":"druntime","parentType":"","signature":"ssize_t read(int,  void *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/read.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"readlink","package":"druntime","parentType":"","signature":"ssize_t readlink(const  scope  char *,  char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/readlink.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"rmdir","package":"druntime","parentType":"","signature":"int rmdir(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/rmdir.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setegid","package":"druntime","parentType":"","signature":"int setegid(gid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/setegid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"seteuid","package":"druntime","parentType":"","signature":"int seteuid(uid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/seteuid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setgid","package":"druntime","parentType":"","signature":"int setgid(gid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/setgid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setgroups","package":"druntime","parentType":"","signature":"int setgroups(size_t,  const  scope  gid_t *)","url":"/ddoc/druntime/core/sys/posix/unistd/setgroups.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setpgid","package":"druntime","parentType":"","signature":"int setpgid(pid_t,  pid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/setpgid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setsid","package":"druntime","parentType":"","signature":"pid_t setsid()","url":"/ddoc/druntime/core/sys/posix/unistd/setsid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"setuid","package":"druntime","parentType":"","signature":"int setuid(uid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/setuid.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"sleep","package":"druntime","parentType":"","signature":"uint sleep(uint)","url":"/ddoc/druntime/core/sys/posix/unistd/sleep.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"symlink","package":"druntime","parentType":"","signature":"int symlink(const  scope  char *,  const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/symlink.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"sysconf","package":"druntime","parentType":"","signature":"c_long sysconf(int)","url":"/ddoc/druntime/core/sys/posix/unistd/sysconf.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"tcgetpgrp","package":"druntime","parentType":"","signature":"pid_t tcgetpgrp(int)","url":"/ddoc/druntime/core/sys/posix/unistd/tcgetpgrp.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"tcsetpgrp","package":"druntime","parentType":"","signature":"int tcsetpgrp(int,  pid_t)","url":"/ddoc/druntime/core/sys/posix/unistd/tcsetpgrp.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"ttyname","package":"druntime","parentType":"","signature":"char * ttyname(int)","url":"/ddoc/druntime/core/sys/posix/unistd/ttyname.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"ttyname_r","package":"druntime","parentType":"","signature":"int ttyname_r(int,  char *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/ttyname_r.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"unlink","package":"druntime","parentType":"","signature":"int unlink(const  scope  char *)","url":"/ddoc/druntime/core/sys/posix/unistd/unlink.html"},{"doc":"","kind":"function","module":"core.sys.posix.unistd","name":"write","package":"druntime","parentType":"","signature":"ssize_t write(int,  const  scope  void *,  size_t)","url":"/ddoc/druntime/core/sys/posix/unistd/write.html"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"STDIN_FILENO","package":"druntime","parentType":"","signature":"STDIN_FILENO","url":"/ddoc/druntime/core/sys/posix/unistd.html#STDIN_FILENO"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"STDOUT_FILENO","package":"druntime","parentType":"","signature":"STDOUT_FILENO","url":"/ddoc/druntime/core/sys/posix/unistd.html#STDOUT_FILENO"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"STDERR_FILENO","package":"druntime","parentType":"","signature":"STDERR_FILENO","url":"/ddoc/druntime/core/sys/posix/unistd.html#STDERR_FILENO"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"optarg","package":"druntime","parentType":"","signature":"char * optarg","url":"/ddoc/druntime/core/sys/posix/unistd.html#optarg"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"optind","package":"druntime","parentType":"","signature":"int optind","url":"/ddoc/druntime/core/sys/posix/unistd.html#optind"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"opterr","package":"druntime","parentType":"","signature":"int opterr","url":"/ddoc/druntime/core/sys/posix/unistd.html#opterr"},{"doc":"","kind":"variable","module":"core.sys.posix.unistd","name":"optopt","package":"druntime","parentType":"","signature":"int optopt","url":"/ddoc/druntime/core/sys/posix/unistd.html#optopt"},{"doc":"D header file for POSIX.","kind":"module","module":"core.sys.posix.utime","name":"core.sys.posix.utime","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/posix/utime.html"},{"doc":"D header file for Solaris","kind":"module","module":"core.sys.solaris.dlfcn","name":"core.sys.solaris.dlfcn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/dlfcn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.dlfcn","name":"dlmopen","package":"druntime","parentType":"","signature":"void * dlmopen(Lmid_t,  const  scope  char *,  int)","url":"/ddoc/druntime/core/sys/solaris/dlfcn/dlmopen.html"},{"doc":"","kind":"function","module":"core.sys.solaris.dlfcn","name":"dldump","package":"druntime","parentType":"","signature":"int dldump(const  scope  char *,  const  scope  char *,  int)","url":"/ddoc/druntime/core/sys/solaris/dlfcn/dldump.html"},{"doc":"","kind":"function","module":"core.sys.solaris.dlfcn","name":"dladdr1","package":"druntime","parentType":"","signature":"int dladdr1(void *,  Dl_info *,  void * *,  int)","url":"/ddoc/druntime/core/sys/solaris/dlfcn/dladdr1.html"},{"doc":"","kind":"function","module":"core.sys.solaris.dlfcn","name":"dlinfo","package":"druntime","parentType":"","signature":"int dlinfo(void *,  int,  void *)","url":"/ddoc/druntime/core/sys/solaris/dlfcn/dlinfo.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.dlfcn","name":"Lmid_t","package":"druntime","parentType":"","signature":"Lmid_t = c_ulong","url":"/ddoc/druntime/core/sys/solaris/dlfcn.html#Lmid_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.dlfcn","name":"Dl_serpath","package":"druntime","parentType":"","signature":"Dl_serpath","url":"/ddoc/druntime/core/sys/solaris/dlfcn.html#Dl_serpath"},{"doc":"","kind":"struct","module":"core.sys.solaris.dlfcn","name":"Dl_serinfo","package":"druntime","parentType":"","signature":"Dl_serinfo","url":"/ddoc/druntime/core/sys/solaris/dlfcn.html#Dl_serinfo"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.elf","name":"core.sys.solaris.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/elf.html"},{"doc":"D header file for Solaris err.h.","kind":"module","module":"core.sys.solaris.err","name":"core.sys.solaris.err","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/err.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"err","package":"druntime","parentType":"","signature":"void err(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/solaris/err/err.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"errx","package":"druntime","parentType":"","signature":"void errx(int  eval,  scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/solaris/err/errx.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"warn","package":"druntime","parentType":"","signature":"void warn(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/solaris/err/warn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"warnx","package":"druntime","parentType":"","signature":"void warnx(scope  const  char *  fmt, ...)","url":"/ddoc/druntime/core/sys/solaris/err/warnx.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"verr","package":"druntime","parentType":"","signature":"void verr(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/solaris/err/verr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"verrx","package":"druntime","parentType":"","signature":"void verrx(int  eval,  scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/solaris/err/verrx.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"vwarn","package":"druntime","parentType":"","signature":"void vwarn(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/solaris/err/vwarn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.err","name":"vwarnx","package":"druntime","parentType":"","signature":"void vwarnx(scope  const  char *  fmt,  va_list args)","url":"/ddoc/druntime/core/sys/solaris/err/vwarnx.html"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.execinfo","name":"core.sys.solaris.execinfo","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/execinfo.html"},{"doc":"","kind":"function","module":"core.sys.solaris.execinfo","name":"backtrace","package":"druntime","parentType":"","signature":"int backtrace(void * *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/solaris/execinfo/backtrace.html"},{"doc":"","kind":"function","module":"core.sys.solaris.execinfo","name":"backtrace_symbols","package":"druntime","parentType":"","signature":"char * * backtrace_symbols(const(void *) *  buffer,  int  size)","url":"/ddoc/druntime/core/sys/solaris/execinfo/backtrace_symbols.html"},{"doc":"","kind":"function","module":"core.sys.solaris.execinfo","name":"backtrace_symbols_fd","package":"druntime","parentType":"","signature":"void backtrace_symbols_fd(const(void *) *  buffer,  int  size,  int  fd)","url":"/ddoc/druntime/core/sys/solaris/execinfo/backtrace_symbols_fd.html"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.libelf","name":"core.sys.solaris.libelf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/libelf.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_begin","package":"druntime","parentType":"","signature":"Elf * elf_begin(int,  Elf_Cmd,  Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_begin.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_cntl","package":"druntime","parentType":"","signature":"int elf_cntl(Elf *,  Elf_Cmd)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_cntl.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_end","package":"druntime","parentType":"","signature":"int elf_end(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_end.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_errmsg","package":"druntime","parentType":"","signature":"const(char) * elf_errmsg(int)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_errmsg.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_errno","package":"druntime","parentType":"","signature":"int elf_errno()","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_errno.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_fill","package":"druntime","parentType":"","signature":"void elf_fill(int)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_fill.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagdata","package":"druntime","parentType":"","signature":"uint elf_flagdata(Elf_Data *,  Elf_Cmd,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagdata.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagehdr","package":"druntime","parentType":"","signature":"uint elf_flagehdr(Elf *,  Elf_Cmd,   uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagehdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagelf","package":"druntime","parentType":"","signature":"uint elf_flagelf(Elf *,  Elf_Cmd,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagelf.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagphdr","package":"druntime","parentType":"","signature":"uint elf_flagphdr(Elf *,  Elf_Cmd,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagphdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagscn","package":"druntime","parentType":"","signature":"uint elf_flagscn(Elf_Scn *,  Elf_Cmd,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagscn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_flagshdr","package":"druntime","parentType":"","signature":"uint elf_flagshdr(Elf_Scn *,  Elf_Cmd,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_flagshdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_fsize","package":"druntime","parentType":"","signature":"size_t elf32_fsize(Elf_Type,  size_t,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_fsize.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getarhdr","package":"druntime","parentType":"","signature":"Elf_Arhdr * elf_getarhdr(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getarhdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getarsym","package":"druntime","parentType":"","signature":"Elf_Arsym * elf_getarsym(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getarsym.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getbase","package":"druntime","parentType":"","signature":"off_t elf_getbase(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getbase.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getdata","package":"druntime","parentType":"","signature":"Elf_Data * elf_getdata(Elf_Scn *,  Elf_Data *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getdata.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_getehdr","package":"druntime","parentType":"","signature":"Elf32_Ehdr * elf32_getehdr(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_getehdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getident","package":"druntime","parentType":"","signature":"char * elf_getident(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getident.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_getphdr","package":"druntime","parentType":"","signature":"Elf32_Phdr * elf32_getphdr(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_getphdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getscn","package":"druntime","parentType":"","signature":"Elf_Scn * elf_getscn(Elf *,  size_t)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getscn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_getshdr","package":"druntime","parentType":"","signature":"Elf32_Shdr * elf32_getshdr(Elf_Scn *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_getshdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getphnum","package":"druntime","parentType":"","signature":"int elf_getphnum(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getphnum.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getphdrnum","package":"druntime","parentType":"","signature":"int elf_getphdrnum(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getphdrnum.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getshnum","package":"druntime","parentType":"","signature":"int elf_getshnum(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getshnum.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getshdrnum","package":"druntime","parentType":"","signature":"int elf_getshdrnum(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getshdrnum.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getshstrndx","package":"druntime","parentType":"","signature":"int elf_getshstrndx(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getshstrndx.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_getshdrstrndx","package":"druntime","parentType":"","signature":"int elf_getshdrstrndx(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_getshdrstrndx.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_hash","package":"druntime","parentType":"","signature":"c_ulong elf_hash(const  scope  char *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_hash.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_sys_encoding","package":"druntime","parentType":"","signature":"uint elf_sys_encoding()","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_sys_encoding.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_checksum","package":"druntime","parentType":"","signature":"long elf32_checksum(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_checksum.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_kind","package":"druntime","parentType":"","signature":"Elf_Kind elf_kind(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_kind.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_memory","package":"druntime","parentType":"","signature":"Elf * elf_memory(char *,  size_t)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_memory.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_ndxscn","package":"druntime","parentType":"","signature":"size_t elf_ndxscn(Elf_Scn *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_ndxscn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_newdata","package":"druntime","parentType":"","signature":"Elf_Data * elf_newdata(Elf_Scn *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_newdata.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_newehdr","package":"druntime","parentType":"","signature":"Elf32_Ehdr * elf32_newehdr(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_newehdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_newphdr","package":"druntime","parentType":"","signature":"Elf32_Phdr * elf32_newphdr(Elf *,  size_t)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_newphdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_newscn","package":"druntime","parentType":"","signature":"Elf_Scn * elf_newscn(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_newscn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_nextscn","package":"druntime","parentType":"","signature":"Elf_Scn * elf_nextscn(Elf *,  Elf_Scn *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_nextscn.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_next","package":"druntime","parentType":"","signature":"Elf_Cmd elf_next(Elf *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_next.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_rand","package":"druntime","parentType":"","signature":"size_t elf_rand(Elf *,  size_t)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_rand.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_rawdata","package":"druntime","parentType":"","signature":"Elf_Data * elf_rawdata(Elf_Scn *,  Elf_Data *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_rawdata.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_rawfile","package":"druntime","parentType":"","signature":"char * elf_rawfile(Elf *,  size_t *)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_rawfile.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_strptr","package":"druntime","parentType":"","signature":"char * elf_strptr(Elf *,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_strptr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_update","package":"druntime","parentType":"","signature":"off_t elf_update(Elf *,  Elf_Cmd)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_update.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf_version","package":"druntime","parentType":"","signature":"uint elf_version(uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf_version.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_xlatetof","package":"druntime","parentType":"","signature":"Elf_Data * elf32_xlatetof(Elf_Data *,  const  scope  Elf_Data *,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_xlatetof.html"},{"doc":"","kind":"function","module":"core.sys.solaris.libelf","name":"elf32_xlatetom","package":"druntime","parentType":"","signature":"Elf_Data * elf32_xlatetom(Elf_Data *,  const  scope  Elf_Data *,  uint)","url":"/ddoc/druntime/core/sys/solaris/libelf/elf32_xlatetom.html"},{"doc":"","kind":"enum","module":"core.sys.solaris.libelf","name":"Elf_Cmd","package":"druntime","parentType":"","signature":"Elf_Cmd","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_NULL","package":"druntime","parentType":"","signature":"ELF_C_NULL = 0","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_READ","package":"druntime","parentType":"","signature":"ELF_C_READ = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_WRITE","package":"druntime","parentType":"","signature":"ELF_C_WRITE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_CLR","package":"druntime","parentType":"","signature":"ELF_C_CLR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_SET","package":"druntime","parentType":"","signature":"ELF_C_SET = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_FDDONE","package":"druntime","parentType":"","signature":"ELF_C_FDDONE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_FDREAD","package":"druntime","parentType":"","signature":"ELF_C_FDREAD = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_RDWR","package":"druntime","parentType":"","signature":"ELF_C_RDWR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_WRIMAGE","package":"druntime","parentType":"","signature":"ELF_C_WRIMAGE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_IMAGE","package":"druntime","parentType":"","signature":"ELF_C_IMAGE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_C_NUM","package":"druntime","parentType":"","signature":"ELF_C_NUM = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Cmd"},{"doc":"","kind":"enum","module":"core.sys.solaris.libelf","name":"Elf_Kind","package":"druntime","parentType":"","signature":"Elf_Kind","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_K_NONE","package":"druntime","parentType":"","signature":"ELF_K_NONE = 0","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_K_AR","package":"druntime","parentType":"","signature":"ELF_K_AR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_K_COFF","package":"druntime","parentType":"","signature":"ELF_K_COFF = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_K_ELF","package":"druntime","parentType":"","signature":"ELF_K_ELF = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_K_NUM","package":"druntime","parentType":"","signature":"ELF_K_NUM = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Kind"},{"doc":"","kind":"enum","module":"core.sys.solaris.libelf","name":"Elf_Type","package":"druntime","parentType":"","signature":"Elf_Type","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_BYTE","package":"druntime","parentType":"","signature":"ELF_T_BYTE = 0","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_ADDR","package":"druntime","parentType":"","signature":"ELF_T_ADDR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_DYN","package":"druntime","parentType":"","signature":"ELF_T_DYN = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_EHDR","package":"druntime","parentType":"","signature":"ELF_T_EHDR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_HALF","package":"druntime","parentType":"","signature":"ELF_T_HALF = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_OFF","package":"druntime","parentType":"","signature":"ELF_T_OFF = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_PHDR","package":"druntime","parentType":"","signature":"ELF_T_PHDR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_RELA","package":"druntime","parentType":"","signature":"ELF_T_RELA = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_REL","package":"druntime","parentType":"","signature":"ELF_T_REL = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_SHDR","package":"druntime","parentType":"","signature":"ELF_T_SHDR = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_SWORD","package":"druntime","parentType":"","signature":"ELF_T_SWORD = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_SYM","package":"druntime","parentType":"","signature":"ELF_T_SYM = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_WORD","package":"druntime","parentType":"","signature":"ELF_T_WORD = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_VDEF","package":"druntime","parentType":"","signature":"ELF_T_VDEF = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_VNEED","package":"druntime","parentType":"","signature":"ELF_T_VNEED = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_SXWORD","package":"druntime","parentType":"","signature":"ELF_T_SXWORD = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_XWORD","package":"druntime","parentType":"","signature":"ELF_T_XWORD = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_SYMINFO","package":"druntime","parentType":"","signature":"ELF_T_SYMINFO = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_NOTE","package":"druntime","parentType":"","signature":"ELF_T_NOTE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_MOVE","package":"druntime","parentType":"","signature":"ELF_T_MOVE = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_MOVEP","package":"druntime","parentType":"","signature":"ELF_T_MOVEP = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_CAP","package":"druntime","parentType":"","signature":"ELF_T_CAP = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.libelf","name":"ELF_T_NUM","package":"druntime","parentType":"","signature":"ELF_T_NUM = ","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Type"},{"doc":"","kind":"struct","module":"core.sys.solaris.libelf","name":"Elf","package":"druntime","parentType":"","signature":"Elf","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf"},{"doc":"","kind":"struct","module":"core.sys.solaris.libelf","name":"Elf_Scn","package":"druntime","parentType":"","signature":"Elf_Scn","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Scn"},{"doc":"","kind":"struct","module":"core.sys.solaris.libelf","name":"Elf_Arhdr","package":"druntime","parentType":"","signature":"Elf_Arhdr","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Arhdr"},{"doc":"","kind":"struct","module":"core.sys.solaris.libelf","name":"Elf_Arsym","package":"druntime","parentType":"","signature":"Elf_Arsym","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Arsym"},{"doc":"","kind":"struct","module":"core.sys.solaris.libelf","name":"Elf_Data","package":"druntime","parentType":"","signature":"Elf_Data","url":"/ddoc/druntime/core/sys/solaris/libelf.html#Elf_Data"},{"doc":"","kind":"variable","module":"core.sys.solaris.libelf","name":"ELF_F_DIRTY","package":"druntime","parentType":"","signature":"ELF_F_DIRTY","url":"/ddoc/druntime/core/sys/solaris/libelf.html#ELF_F_DIRTY"},{"doc":"","kind":"variable","module":"core.sys.solaris.libelf","name":"ELF_F_LAYOUT","package":"druntime","parentType":"","signature":"ELF_F_LAYOUT","url":"/ddoc/druntime/core/sys/solaris/libelf.html#ELF_F_LAYOUT"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.link","name":"core.sys.solaris.link","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/link.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_version","package":"druntime","parentType":"","signature":"; ld_version(i on(u int)","url":"/ddoc/druntime/core/sys/solaris/link/ld_version.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_input_done","package":"druntime","parentType":"","signature":") ld_input_done(o ne(u i nt*)","url":"/ddoc/druntime/core/sys/solaris/link/ld_input_done.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_start","package":"druntime","parentType":"","signature":"; ld_start(a rt(con st sco pe c h ar *, con st Elf32_H al f, con st sco pe c h ar*)","url":"/ddoc/druntime/core/sys/solaris/link/ld_start.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_atexit","package":"druntime","parentType":"","signature":") ld_atexit(x it(int)","url":"/ddoc/druntime/core/sys/solaris/link/ld_atexit.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_open","package":"druntime","parentType":"","signature":") ld_open(p en(con st sco pe c h a r* *, con st sco pe c h a r* *,  i nt *,  in t,  E l f* *,  E lf *, siz e_ t, con st Elf_K ind)","url":"/ddoc/druntime/core/sys/solaris/link/ld_open.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_file","package":"druntime","parentType":"","signature":") ld_file(i le(con st sco pe c h ar *, con st Elf_K in d,  in t,  E lf*)","url":"/ddoc/druntime/core/sys/solaris/link/ld_file.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_input_section","package":"druntime","parentType":"","signature":") ld_input_section(i on(con st sco pe c h ar *, Elf32_S h d r* *, Elf32_W or d, Elf_D a ta *,  E lf *, u i nt*)","url":"/ddoc/druntime/core/sys/solaris/link/ld_input_section.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"ld_section","package":"druntime","parentType":"","signature":") ld_section(i on(con st sco pe c h ar *, Elf32_S h dr *, Elf32_W or d, Elf_D a ta *,  E lf*)","url":"/ddoc/druntime/core/sys/solaris/link/ld_section.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_version","package":"druntime","parentType":"","signature":"} la_version(i on(u int)","url":"/ddoc/druntime/core/sys/solaris/link/la_version.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_activity","package":"druntime","parentType":"","signature":") la_activity(i ty(uintpt r _t *, u int)","url":"/ddoc/druntime/core/sys/solaris/link/la_activity.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_preinit","package":"druntime","parentType":"","signature":") la_preinit(n it(uintpt r _t*)","url":"/ddoc/druntime/core/sys/solaris/link/la_preinit.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_objsearch","package":"druntime","parentType":"","signature":");\nc har* la_objsearch(r ch(con st sco pe c h ar *, uintpt r _t *, u int)","url":"/ddoc/druntime/core/sys/solaris/link/la_objsearch.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_objopen","package":"druntime","parentType":"","signature":") la_objopen(p en(Link_ m ap *, Lmi d_ t, uintpt r _t*)","url":"/ddoc/druntime/core/sys/solaris/link/la_objopen.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_objclose","package":"druntime","parentType":"","signature":") la_objclose(o se(uintpt r _t*)","url":"/ddoc/druntime/core/sys/solaris/link/la_objclose.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"la_objfilter","package":"druntime","parentType":"","signature":") la_objfilter(t er(uintpt r _t *, con st sco pe c h ar *, uintpt r _t *, u int)","url":"/ddoc/druntime/core/sys/solaris/link/la_objfilter.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"rn dl_iterate_phdr(h dr(dl_iterate_phdr_cb __callb ac k, v o id*__d ata)","url":"/ddoc/druntime/core/sys/solaris/link/dl_iterate_phdr.html"},{"doc":"","kind":"function","module":"core.sys.solaris.link","name":"dl_iterate_phdr","package":"druntime","parentType":"","signature":"rn dl_iterate_phdr(h dr(dl_iterate_phdr_cb_ngc __callb ac k, v o id*__d ata)","url":"/ddoc/druntime/core/sys/solaris/link/dl_iterate_phdr.html"},{"doc":"","kind":"struct","module":"core.sys.solaris.link","name":"_la_sparc_regs","package":"druntime","parentType":"","signature":"_la_sparc_regs","url":"/ddoc/druntime/core/sys/solaris/link.html#_la_sparc_regs"},{"doc":"","kind":"struct","module":"core.sys.solaris.link","name":"dl_phdr_info","package":"druntime","parentType":"","signature":"dl_phdr_info","url":"/ddoc/druntime/core/sys/solaris/link.html#dl_phdr_info"},{"doc":"","kind":"alias","module":"core.sys.solaris.link","name":"dl_iterate_phdr_cb","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb = C) i nt funct i on(dl_phdr_i n fo *, siz e_ t, vo i d","url":"/ddoc/druntime/core/sys/solaris/link.html#dl_iterate_phdr_cb"},{"doc":"","kind":"alias","module":"core.sys.solaris.link","name":"dl_iterate_phdr_cb_ngc","package":"druntime","parentType":"","signature":"dl_iterate_phdr_cb_ngc = C) i nt funct i on(dl_phdr_i n fo *, siz e_ t, vo i d  *) @n","url":"/ddoc/druntime/core/sys/solaris/link.html#dl_iterate_phdr_cb_ngc"},{"doc":"","kind":"template","module":"core.sys.solaris.link","name":"ElfW","package":"druntime","parentType":"","signature":"ElfWl fW(string t ype","url":"/ddoc/druntime/core/sys/solaris/link.html#ElfW"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_VNONE","package":"druntime","parentType":"","signature":"LD_SUP_VNONE","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_VNONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_VERSION1","package":"druntime","parentType":"","signature":"LD_SUP_VERSION1","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_VERSION1"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_VERSION2","package":"druntime","parentType":"","signature":"LD_SUP_VERSION2","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_VERSION2"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_VERSION3","package":"druntime","parentType":"","signature":"LD_SUP_VERSION3","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_VERSION3"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_VCURRENT","package":"druntime","parentType":"","signature":"LD_SUP_VCURRENT","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_VCURRENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_DERIVED","package":"druntime","parentType":"","signature":"LD_SUP_DERIVED","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_DERIVED"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_INHERITED","package":"druntime","parentType":"","signature":"LD_SUP_INHERITED","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_INHERITED"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LD_SUP_EXTRACTED","package":"druntime","parentType":"","signature":"LD_SUP_EXTRACTED","url":"/ddoc/druntime/core/sys/solaris/link.html#LD_SUP_EXTRACTED"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_BASE","package":"druntime","parentType":"","signature":"LM_ID_BASE","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_BASE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_LDSO","package":"druntime","parentType":"","signature":"LM_ID_LDSO","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_LDSO"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_NUM","package":"druntime","parentType":"","signature":"LM_ID_NUM","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_BRAND","package":"druntime","parentType":"","signature":"LM_ID_BRAND","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_BRAND"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_NONE","package":"druntime","parentType":"","signature":"LM_ID_NONE","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LM_ID_NEWLM","package":"druntime","parentType":"","signature":"LM_ID_NEWLM","url":"/ddoc/druntime/core/sys/solaris/link.html#LM_ID_NEWLM"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_NONE","package":"druntime","parentType":"","signature":"LAV_NONE","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_VERSION1","package":"druntime","parentType":"","signature":"LAV_VERSION1","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_VERSION1"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_VERSION2","package":"druntime","parentType":"","signature":"LAV_VERSION2","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_VERSION2"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_VERSION3","package":"druntime","parentType":"","signature":"LAV_VERSION3","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_VERSION3"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_VERSION4","package":"druntime","parentType":"","signature":"LAV_VERSION4","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_VERSION4"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_VERSION5","package":"druntime","parentType":"","signature":"LAV_VERSION5","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_VERSION5"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_CURRENT","package":"druntime","parentType":"","signature":"LAV_CURRENT","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LAV_NUM","package":"druntime","parentType":"","signature":"LAV_NUM","url":"/ddoc/druntime/core/sys/solaris/link.html#LAV_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_FLG_BINDTO","package":"druntime","parentType":"","signature":"LA_FLG_BINDTO","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_FLG_BINDTO"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_FLG_BINDFROM","package":"druntime","parentType":"","signature":"LA_FLG_BINDFROM","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_FLG_BINDFROM"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SYMB_NOPLTENTER","package":"druntime","parentType":"","signature":"LA_SYMB_NOPLTENTER","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SYMB_NOPLTENTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SYMB_NOPLTEXIT","package":"druntime","parentType":"","signature":"LA_SYMB_NOPLTEXIT","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SYMB_NOPLTEXIT"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SYMB_STRUCTCALL","package":"druntime","parentType":"","signature":"LA_SYMB_STRUCTCALL","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SYMB_STRUCTCALL"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SYMB_DLSYM","package":"druntime","parentType":"","signature":"LA_SYMB_DLSYM","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SYMB_DLSYM"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SYMB_ALTVALUE","package":"druntime","parentType":"","signature":"LA_SYMB_ALTVALUE","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SYMB_ALTVALUE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_ORIG","package":"druntime","parentType":"","signature":"LA_SER_ORIG","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_ORIG"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_LIBPATH","package":"druntime","parentType":"","signature":"LA_SER_LIBPATH","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_LIBPATH"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_RUNPATH","package":"druntime","parentType":"","signature":"LA_SER_RUNPATH","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_RUNPATH"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_CONFIG","package":"druntime","parentType":"","signature":"LA_SER_CONFIG","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_DEFAULT","package":"druntime","parentType":"","signature":"LA_SER_DEFAULT","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_SECURE","package":"druntime","parentType":"","signature":"LA_SER_SECURE","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_SECURE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_SER_MASK","package":"druntime","parentType":"","signature":"LA_SER_MASK","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_SER_MASK"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_ACT_CONSISTENT","package":"druntime","parentType":"","signature":"LA_ACT_CONSISTENT","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_ACT_CONSISTENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_ACT_ADD","package":"druntime","parentType":"","signature":"LA_ACT_ADD","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_ACT_ADD"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_ACT_DELETE","package":"druntime","parentType":"","signature":"LA_ACT_DELETE","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_ACT_DELETE"},{"doc":"","kind":"variable","module":"core.sys.solaris.link","name":"LA_ACT_MAX","package":"druntime","parentType":"","signature":"LA_ACT_MAX","url":"/ddoc/druntime/core/sys/solaris/link.html#LA_ACT_MAX"},{"doc":"D header file for Solaris stdlib.h.","kind":"module","module":"core.sys.solaris.stdlib","name":"core.sys.solaris.stdlib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/stdlib.html"},{"doc":"","kind":"function","module":"core.sys.solaris.stdlib","name":"getprogname","package":"druntime","parentType":"","signature":"const(char) * getprogname()","url":"/ddoc/druntime/core/sys/solaris/stdlib/getprogname.html"},{"doc":"","kind":"function","module":"core.sys.solaris.stdlib","name":"setprogname","package":"druntime","parentType":"","signature":"void setprogname(scope  const  char *  name)","url":"/ddoc/druntime/core/sys/solaris/stdlib/setprogname.html"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elf","name":"core.sys.solaris.sys.elf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF32_ST_VISIBILITY","package":"druntime","parentType":"","signature":"auto ELF32_ST_VISIBILITY(O)(O o)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF32_ST_VISIBILITY.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_R_TYPE_DATA","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_DATA(I)(I i)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_R_TYPE_DATA.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_R_TYPE_ID","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_ID(I)(I i)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_R_TYPE_ID.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_R_TYPE_INFO","package":"druntime","parentType":"","signature":"auto ELF64_R_TYPE_INFO(S,  T)(S sym,  T type)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_R_TYPE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_C_SYM","package":"druntime","parentType":"","signature":"auto ELF64_C_SYM(I)(I info)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_C_SYM.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_C_GROUP","package":"druntime","parentType":"","signature":"auto ELF64_C_GROUP(I)(I info)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_C_GROUP.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.elf","name":"ELF64_C_INFO","package":"druntime","parentType":"","signature":"auto ELF64_C_INFO(S,  G)(S sym,  G grp)","url":"/ddoc/druntime/core/sys/solaris/sys/elf/ELF64_C_INFO.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"ELF64_ST_VISIBILITY","package":"druntime","parentType":"","signature":"ELF64_ST_VISIBILITY = ELF32_ST_VISIBILITY","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_ST_VISIBILITY"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.elf","name":"Elf32_Nhdr","package":"druntime","parentType":"","signature":"Elf32_Nhdr","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf32_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.elf","name":"Elf64_Nhdr","package":"druntime","parentType":"","signature":"Elf64_Nhdr","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf64_Nhdr"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.elf","name":"Elf32_Cap","package":"druntime","parentType":"","signature":"Elf32_Cap","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf32_Cap"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"Elf32_Capinfo","package":"druntime","parentType":"","signature":"Elf32_Capinfo = Elf32_Word","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf32_Capinfo"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"Elf32_Capchain","package":"druntime","parentType":"","signature":"Elf32_Capchain = Elf32_Word","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf32_Capchain"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"ELF32_C_SYM","package":"druntime","parentType":"","signature":"ELF32_C_SYM = ELF32_M_SYM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_C_SYM"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"ELF32_C_GROUP","package":"druntime","parentType":"","signature":"ELF32_C_GROUP = ELF32_M_SIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_C_GROUP"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"ELF32_C_INFO","package":"druntime","parentType":"","signature":"ELF32_C_INFO = ELF32_M_INFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_C_INFO"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.elf","name":"Elf64_Cap","package":"druntime","parentType":"","signature":"Elf64_Cap","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf64_Cap"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"Elf64_Capinfo","package":"druntime","parentType":"","signature":"Elf64_Capinfo = Elf64_Xword","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf64_Capinfo"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elf","name":"Elf64_Capchain","package":"druntime","parentType":"","signature":"Elf64_Capchain = Elf64_Word","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#Elf64_Capchain"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF32_FSZ_ADDR","package":"druntime","parentType":"","signature":"ELF32_FSZ_ADDR","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_FSZ_ADDR"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF32_FSZ_HALF","package":"druntime","parentType":"","signature":"ELF32_FSZ_HALF","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_FSZ_HALF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF32_FSZ_OFF","package":"druntime","parentType":"","signature":"ELF32_FSZ_OFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_FSZ_OFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF32_FSZ_SWORD","package":"druntime","parentType":"","signature":"ELF32_FSZ_SWORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_FSZ_SWORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF32_FSZ_WORD","package":"druntime","parentType":"","signature":"ELF32_FSZ_WORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF32_FSZ_WORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_ADDR","package":"druntime","parentType":"","signature":"ELF64_FSZ_ADDR","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_ADDR"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_HALF","package":"druntime","parentType":"","signature":"ELF64_FSZ_HALF","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_HALF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_OFF","package":"druntime","parentType":"","signature":"ELF64_FSZ_OFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_OFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_SWORD","package":"druntime","parentType":"","signature":"ELF64_FSZ_SWORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_SWORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_WORD","package":"druntime","parentType":"","signature":"ELF64_FSZ_WORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_WORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_SXWORD","package":"druntime","parentType":"","signature":"ELF64_FSZ_SXWORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_SXWORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ELF64_FSZ_XWORD","package":"druntime","parentType":"","signature":"ELF64_FSZ_XWORD","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ELF64_FSZ_XWORD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ET_LOSUNW","package":"druntime","parentType":"","signature":"ET_LOSUNW","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ET_LOSUNW"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ET_SUNWPSEUDO","package":"druntime","parentType":"","signature":"ET_SUNWPSEUDO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ET_SUNWPSEUDO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"ET_HISUNW","package":"druntime","parentType":"","signature":"ET_HISUNW","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#ET_HISUNW"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"EAV_SUNW_NONE","package":"druntime","parentType":"","signature":"EAV_SUNW_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#EAV_SUNW_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"EAV_SUNW_CURRENT","package":"druntime","parentType":"","signature":"EAV_SUNW_CURRENT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#EAV_SUNW_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"EAV_SUNW_NUM","package":"druntime","parentType":"","signature":"EAV_SUNW_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#EAV_SUNW_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PT_SUNW_UNWIND","package":"druntime","parentType":"","signature":"PT_SUNW_UNWIND","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PT_SUNW_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PT_SUNW_EH_FRAME","package":"druntime","parentType":"","signature":"PT_SUNW_EH_FRAME","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PT_SUNW_EH_FRAME"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PT_SUNWDTRACE","package":"druntime","parentType":"","signature":"PT_SUNWDTRACE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PT_SUNWDTRACE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PT_SUNWCAP","package":"druntime","parentType":"","signature":"PT_SUNWCAP","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PT_SUNWCAP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PF_SUNW_FAILURE","package":"druntime","parentType":"","signature":"PF_SUNW_FAILURE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PF_SUNW_FAILURE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PF_SUNW_KILLED","package":"druntime","parentType":"","signature":"PF_SUNW_KILLED","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PF_SUNW_KILLED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"PF_SUNW_SIGINFO","package":"druntime","parentType":"","signature":"PF_SUNW_SIGINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#PF_SUNW_SIGINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_capchain","package":"druntime","parentType":"","signature":"SHT_SUNW_capchain","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_capchain"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_capinfo","package":"druntime","parentType":"","signature":"SHT_SUNW_capinfo","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_capinfo"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_symsort","package":"druntime","parentType":"","signature":"SHT_SUNW_symsort","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_symsort"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_tlssort","package":"druntime","parentType":"","signature":"SHT_SUNW_tlssort","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_tlssort"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_LDYNSYM","package":"druntime","parentType":"","signature":"SHT_SUNW_LDYNSYM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_LDYNSYM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_dof","package":"druntime","parentType":"","signature":"SHT_SUNW_dof","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_dof"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_cap","package":"druntime","parentType":"","signature":"SHT_SUNW_cap","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_cap"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_SIGNATURE","package":"druntime","parentType":"","signature":"SHT_SUNW_SIGNATURE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_SIGNATURE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_ANNOTATE","package":"druntime","parentType":"","signature":"SHT_SUNW_ANNOTATE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_ANNOTATE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_DEBUGSTR","package":"druntime","parentType":"","signature":"SHT_SUNW_DEBUGSTR","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_DEBUGSTR"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_DEBUG","package":"druntime","parentType":"","signature":"SHT_SUNW_DEBUG","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_DEBUG"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_verdef","package":"druntime","parentType":"","signature":"SHT_SUNW_verdef","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_verdef"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_verneed","package":"druntime","parentType":"","signature":"SHT_SUNW_verneed","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_verneed"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SHT_SUNW_versym","package":"druntime","parentType":"","signature":"SHT_SUNW_versym","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SHT_SUNW_versym"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"STV_EXPORTED","package":"druntime","parentType":"","signature":"STV_EXPORTED","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#STV_EXPORTED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"STV_SINGLETON","package":"druntime","parentType":"","signature":"STV_SINGLETON","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#STV_SINGLETON"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"STV_ELIMINATE","package":"druntime","parentType":"","signature":"STV_ELIMINATE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#STV_ELIMINATE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"STV_NUM","package":"druntime","parentType":"","signature":"STV_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#STV_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPINFO_NONE","package":"druntime","parentType":"","signature":"CAPINFO_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPINFO_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPINFO_CURRENT","package":"druntime","parentType":"","signature":"CAPINFO_CURRENT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPINFO_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPINFO_NUM","package":"druntime","parentType":"","signature":"CAPINFO_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPINFO_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPCHAIN_NONE","package":"druntime","parentType":"","signature":"CAPCHAIN_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPCHAIN_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPCHAIN_CURRENT","package":"druntime","parentType":"","signature":"CAPCHAIN_CURRENT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPCHAIN_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPCHAIN_NUM","package":"druntime","parentType":"","signature":"CAPCHAIN_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPCHAIN_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CAPINFO_SUNW_GLOB","package":"druntime","parentType":"","signature":"CAPINFO_SUNW_GLOB","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CAPINFO_SUNW_GLOB"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_NULL","package":"druntime","parentType":"","signature":"CA_SUNW_NULL","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_NULL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_HW_1","package":"druntime","parentType":"","signature":"CA_SUNW_HW_1","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_HW_1"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_SF_1","package":"druntime","parentType":"","signature":"CA_SUNW_SF_1","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_SF_1"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_HW_2","package":"druntime","parentType":"","signature":"CA_SUNW_HW_2","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_HW_2"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_PLAT","package":"druntime","parentType":"","signature":"CA_SUNW_PLAT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_PLAT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_MACH","package":"druntime","parentType":"","signature":"CA_SUNW_MACH","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_MACH"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_ID","package":"druntime","parentType":"","signature":"CA_SUNW_ID","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_ID"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"CA_SUNW_NUM","package":"druntime","parentType":"","signature":"CA_SUNW_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#CA_SUNW_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SF1_SUNW_FPKNWN","package":"druntime","parentType":"","signature":"SF1_SUNW_FPKNWN","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SF1_SUNW_FPKNWN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SF1_SUNW_FPUSED","package":"druntime","parentType":"","signature":"SF1_SUNW_FPUSED","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SF1_SUNW_FPUSED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SF1_SUNW_ADDR32","package":"druntime","parentType":"","signature":"SF1_SUNW_ADDR32","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SF1_SUNW_ADDR32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"SF1_SUNW_MASK","package":"druntime","parentType":"","signature":"SF1_SUNW_MASK","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#SF1_SUNW_MASK"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRSTATUS","package":"druntime","parentType":"","signature":"NT_PRSTATUS","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRSTATUS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRFPREG","package":"druntime","parentType":"","signature":"NT_PRFPREG","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRFPREG"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRPSINFO","package":"druntime","parentType":"","signature":"NT_PRPSINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRPSINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRXREG","package":"druntime","parentType":"","signature":"NT_PRXREG","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRXREG"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PLATFORM","package":"druntime","parentType":"","signature":"NT_PLATFORM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PLATFORM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_AUXV","package":"druntime","parentType":"","signature":"NT_AUXV","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_AUXV"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_GWINDOWS","package":"druntime","parentType":"","signature":"NT_GWINDOWS","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_GWINDOWS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_ASRS","package":"druntime","parentType":"","signature":"NT_ASRS","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_ASRS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_LDT","package":"druntime","parentType":"","signature":"NT_LDT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_LDT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PSTATUS","package":"druntime","parentType":"","signature":"NT_PSTATUS","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PSTATUS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PSINFO","package":"druntime","parentType":"","signature":"NT_PSINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PSINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRCRED","package":"druntime","parentType":"","signature":"NT_PRCRED","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRCRED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_UTSNAME","package":"druntime","parentType":"","signature":"NT_UTSNAME","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_UTSNAME"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_LWPSTATUS","package":"druntime","parentType":"","signature":"NT_LWPSTATUS","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_LWPSTATUS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_LWPSINFO","package":"druntime","parentType":"","signature":"NT_LWPSINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_LWPSINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRPRIV","package":"druntime","parentType":"","signature":"NT_PRPRIV","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRPRIV"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_PRPRIVINFO","package":"druntime","parentType":"","signature":"NT_PRPRIVINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_PRPRIVINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_CONTENT","package":"druntime","parentType":"","signature":"NT_CONTENT","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_CONTENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_ZONENAME","package":"druntime","parentType":"","signature":"NT_ZONENAME","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_ZONENAME"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_FDINFO","package":"druntime","parentType":"","signature":"NT_FDINFO","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_FDINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_SPYMASTER","package":"druntime","parentType":"","signature":"NT_SPYMASTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_SPYMASTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf","name":"NT_NUM","package":"druntime","parentType":"","signature":"NT_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf.html#NT_NUM"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elf_386","name":"core.sys.solaris.sys.elf_386","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_NONE","package":"druntime","parentType":"","signature":"R_386_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_32","package":"druntime","parentType":"","signature":"R_386_32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_PC32","package":"druntime","parentType":"","signature":"R_386_PC32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_PC32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_GOT32","package":"druntime","parentType":"","signature":"R_386_GOT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_GOT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_PLT32","package":"druntime","parentType":"","signature":"R_386_PLT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_PLT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_COPY","package":"druntime","parentType":"","signature":"R_386_COPY","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_COPY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_GLOB_DAT","package":"druntime","parentType":"","signature":"R_386_GLOB_DAT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_JMP_SLOT","package":"druntime","parentType":"","signature":"R_386_JMP_SLOT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_RELATIVE","package":"druntime","parentType":"","signature":"R_386_RELATIVE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_GOTOFF","package":"druntime","parentType":"","signature":"R_386_GOTOFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_GOTOFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_GOTPC","package":"druntime","parentType":"","signature":"R_386_GOTPC","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_GOTPC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_32PLT","package":"druntime","parentType":"","signature":"R_386_32PLT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_32PLT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_GD_PLT","package":"druntime","parentType":"","signature":"R_386_TLS_GD_PLT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_GD_PLT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_LDM_PLT","package":"druntime","parentType":"","signature":"R_386_TLS_LDM_PLT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_LDM_PLT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_TPOFF","package":"druntime","parentType":"","signature":"R_386_TLS_TPOFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_TPOFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_IE","package":"druntime","parentType":"","signature":"R_386_TLS_IE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_IE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_GOTIE","package":"druntime","parentType":"","signature":"R_386_TLS_GOTIE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_GOTIE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_LE","package":"druntime","parentType":"","signature":"R_386_TLS_LE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_LE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_GD","package":"druntime","parentType":"","signature":"R_386_TLS_GD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_GD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_LDM","package":"druntime","parentType":"","signature":"R_386_TLS_LDM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_LDM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_16","package":"druntime","parentType":"","signature":"R_386_16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_PC16","package":"druntime","parentType":"","signature":"R_386_PC16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_PC16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_8","package":"druntime","parentType":"","signature":"R_386_8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_PC8","package":"druntime","parentType":"","signature":"R_386_PC8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_PC8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN24","package":"druntime","parentType":"","signature":"R_386_UNKNOWN24","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN24"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN25","package":"druntime","parentType":"","signature":"R_386_UNKNOWN25","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN25"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN26","package":"druntime","parentType":"","signature":"R_386_UNKNOWN26","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN26"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN27","package":"druntime","parentType":"","signature":"R_386_UNKNOWN27","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN27"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN28","package":"druntime","parentType":"","signature":"R_386_UNKNOWN28","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN28"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN29","package":"druntime","parentType":"","signature":"R_386_UNKNOWN29","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN29"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN30","package":"druntime","parentType":"","signature":"R_386_UNKNOWN30","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN30"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN31","package":"druntime","parentType":"","signature":"R_386_UNKNOWN31","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN31"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_LDO_32","package":"druntime","parentType":"","signature":"R_386_TLS_LDO_32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_LDO_32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN33","package":"druntime","parentType":"","signature":"R_386_UNKNOWN33","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN33"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN34","package":"druntime","parentType":"","signature":"R_386_UNKNOWN34","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN34"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_386_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_386_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_UNKNOWN37","package":"druntime","parentType":"","signature":"R_386_UNKNOWN37","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_UNKNOWN37"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_SIZE32","package":"druntime","parentType":"","signature":"R_386_SIZE32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"R_386_NUM","package":"druntime","parentType":"","signature":"R_386_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#R_386_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"ELF_386_MAXPGSZ","package":"druntime","parentType":"","signature":"ELF_386_MAXPGSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#ELF_386_MAXPGSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"SHN_BEFORE","package":"druntime","parentType":"","signature":"SHN_BEFORE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#SHN_BEFORE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"SHN_AFTER","package":"druntime","parentType":"","signature":"SHN_AFTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#SHN_AFTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_PLT_INSSIZE","package":"druntime","parentType":"","signature":"M_PLT_INSSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_PLT_INSSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_PLT_XNumber","package":"druntime","parentType":"","signature":"M_PLT_XNumber","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_PLT_XNumber"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_GOT_XDYNAMIC","package":"druntime","parentType":"","signature":"M_GOT_XDYNAMIC","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_GOT_XDYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_GOT_XLINKMAP","package":"druntime","parentType":"","signature":"M_GOT_XLINKMAP","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_GOT_XLINKMAP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_GOT_XRTLD","package":"druntime","parentType":"","signature":"M_GOT_XRTLD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_GOT_XRTLD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M_GOT_XNumber","package":"druntime","parentType":"","signature":"M_GOT_XNumber","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M_GOT_XNumber"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M32_WORD_ALIGN","package":"druntime","parentType":"","signature":"M32_WORD_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M32_WORD_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M32_PLT_ENTSIZE","package":"druntime","parentType":"","signature":"M32_PLT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M32_PLT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M32_PLT_ALIGN","package":"druntime","parentType":"","signature":"M32_PLT_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M32_PLT_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M32_GOT_ENTSIZE","package":"druntime","parentType":"","signature":"M32_GOT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M32_GOT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_386","name":"M32_PLT_RESERVSZ","package":"druntime","parentType":"","signature":"M32_PLT_RESERVSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_386.html#M32_PLT_RESERVSZ"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elf_SPARC","name":"core.sys.solaris.sys.elf_SPARC","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_32PLUS_MASK","package":"druntime","parentType":"","signature":"EF_SPARC_32PLUS_MASK","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_32PLUS_MASK"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_32PLUS","package":"druntime","parentType":"","signature":"EF_SPARC_32PLUS","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_32PLUS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_EXT_MASK","package":"druntime","parentType":"","signature":"EF_SPARC_EXT_MASK","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_EXT_MASK"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_SUN_US1","package":"druntime","parentType":"","signature":"EF_SPARC_SUN_US1","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_SUN_US1"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_HAL_R1","package":"druntime","parentType":"","signature":"EF_SPARC_HAL_R1","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_HAL_R1"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARC_SUN_US3","package":"druntime","parentType":"","signature":"EF_SPARC_SUN_US3","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARC_SUN_US3"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARCV9_MM","package":"druntime","parentType":"","signature":"EF_SPARCV9_MM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARCV9_MM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARCV9_TSO","package":"druntime","parentType":"","signature":"EF_SPARCV9_TSO","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARCV9_TSO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARCV9_PSO","package":"druntime","parentType":"","signature":"EF_SPARCV9_PSO","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARCV9_PSO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"EF_SPARCV9_RMO","package":"druntime","parentType":"","signature":"EF_SPARCV9_RMO","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#EF_SPARCV9_RMO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_NONE","package":"druntime","parentType":"","signature":"R_SPARC_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_8","package":"druntime","parentType":"","signature":"R_SPARC_8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_16","package":"druntime","parentType":"","signature":"R_SPARC_16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_32","package":"druntime","parentType":"","signature":"R_SPARC_32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_DISP8","package":"druntime","parentType":"","signature":"R_SPARC_DISP8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_DISP8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_DISP16","package":"druntime","parentType":"","signature":"R_SPARC_DISP16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_DISP16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_DISP32","package":"druntime","parentType":"","signature":"R_SPARC_DISP32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_DISP32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_WDISP30","package":"druntime","parentType":"","signature":"R_SPARC_WDISP30","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_WDISP30"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_WDISP22","package":"druntime","parentType":"","signature":"R_SPARC_WDISP22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_WDISP22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_HI22","package":"druntime","parentType":"","signature":"R_SPARC_HI22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_HI22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_22","package":"druntime","parentType":"","signature":"R_SPARC_22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_13","package":"druntime","parentType":"","signature":"R_SPARC_13","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_13"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_LO10","package":"druntime","parentType":"","signature":"R_SPARC_LO10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_LO10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOT10","package":"druntime","parentType":"","signature":"R_SPARC_GOT10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOT10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOT13","package":"druntime","parentType":"","signature":"R_SPARC_GOT13","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOT13"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOT22","package":"druntime","parentType":"","signature":"R_SPARC_GOT22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOT22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PC10","package":"druntime","parentType":"","signature":"R_SPARC_PC10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PC10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PC22","package":"druntime","parentType":"","signature":"R_SPARC_PC22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PC22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_WPLT30","package":"druntime","parentType":"","signature":"R_SPARC_WPLT30","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_WPLT30"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_COPY","package":"druntime","parentType":"","signature":"R_SPARC_COPY","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_COPY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GLOB_DAT","package":"druntime","parentType":"","signature":"R_SPARC_GLOB_DAT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_JMP_SLOT","package":"druntime","parentType":"","signature":"R_SPARC_JMP_SLOT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_JMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_RELATIVE","package":"druntime","parentType":"","signature":"R_SPARC_RELATIVE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_UA32","package":"druntime","parentType":"","signature":"R_SPARC_UA32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_UA32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PLT32","package":"druntime","parentType":"","signature":"R_SPARC_PLT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PLT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_HIPLT22","package":"druntime","parentType":"","signature":"R_SPARC_HIPLT22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_HIPLT22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_LOPLT10","package":"druntime","parentType":"","signature":"R_SPARC_LOPLT10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_LOPLT10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PCPLT32","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PCPLT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PCPLT22","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PCPLT22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PCPLT10","package":"druntime","parentType":"","signature":"R_SPARC_PCPLT10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PCPLT10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_10","package":"druntime","parentType":"","signature":"R_SPARC_10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_11","package":"druntime","parentType":"","signature":"R_SPARC_11","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_11"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_64","package":"druntime","parentType":"","signature":"R_SPARC_64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_OLO10","package":"druntime","parentType":"","signature":"R_SPARC_OLO10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_OLO10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_HH22","package":"druntime","parentType":"","signature":"R_SPARC_HH22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_HH22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_HM10","package":"druntime","parentType":"","signature":"R_SPARC_HM10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_HM10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_LM22","package":"druntime","parentType":"","signature":"R_SPARC_LM22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_LM22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PC_HH22","package":"druntime","parentType":"","signature":"R_SPARC_PC_HH22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PC_HH22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PC_HM10","package":"druntime","parentType":"","signature":"R_SPARC_PC_HM10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PC_HM10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PC_LM22","package":"druntime","parentType":"","signature":"R_SPARC_PC_LM22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PC_LM22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_WDISP16","package":"druntime","parentType":"","signature":"R_SPARC_WDISP16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_WDISP16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_WDISP19","package":"druntime","parentType":"","signature":"R_SPARC_WDISP19","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_WDISP19"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GLOB_JMP","package":"druntime","parentType":"","signature":"R_SPARC_GLOB_JMP","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GLOB_JMP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_7","package":"druntime","parentType":"","signature":"R_SPARC_7","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_7"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_5","package":"druntime","parentType":"","signature":"R_SPARC_5","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_5"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_6","package":"druntime","parentType":"","signature":"R_SPARC_6","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_6"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_DISP64","package":"druntime","parentType":"","signature":"R_SPARC_DISP64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_DISP64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_PLT64","package":"druntime","parentType":"","signature":"R_SPARC_PLT64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_PLT64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_HIX22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_HIX22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_LOX10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_LOX10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_H44","package":"druntime","parentType":"","signature":"R_SPARC_H44","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_H44"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_M44","package":"druntime","parentType":"","signature":"R_SPARC_M44","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_M44"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_L44","package":"druntime","parentType":"","signature":"R_SPARC_L44","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_L44"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_REGISTER","package":"druntime","parentType":"","signature":"R_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_UA64","package":"druntime","parentType":"","signature":"R_SPARC_UA64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_UA64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_UA16","package":"druntime","parentType":"","signature":"R_SPARC_UA16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_UA16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_GD_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_HI22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_GD_HI22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_GD_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_LO10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_GD_LO10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_GD_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_ADD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_GD_ADD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_GD_CALL","package":"druntime","parentType":"","signature":"R_SPARC_TLS_GD_CALL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_GD_CALL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDM_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_HI22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDM_HI22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDM_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_LO10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDM_LO10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDM_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_ADD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDM_ADD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDM_CALL","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDM_CALL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDM_CALL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDO_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_HIX22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDO_HIX22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDO_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_LOX10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDO_LOX10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LDO_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LDO_ADD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LDO_ADD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_IE_HI22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_HI22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_IE_HI22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_IE_LO10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LO10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_IE_LO10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_IE_LD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_IE_LD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_IE_LDX","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_LDX","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_IE_LDX"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_IE_ADD","package":"druntime","parentType":"","signature":"R_SPARC_TLS_IE_ADD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_IE_ADD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LE_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LE_HIX22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LE_HIX22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_LE_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_TLS_LE_LOX10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_LE_LOX10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_DTPMOD32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPMOD32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_DTPMOD32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_DTPMOD64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPMOD64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_DTPOFF32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_DTPOFF64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_DTPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_TPOFF32","package":"druntime","parentType":"","signature":"R_SPARC_TLS_TPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_TLS_TPOFF64","package":"druntime","parentType":"","signature":"R_SPARC_TLS_TPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_TLS_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOTDATA_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_HIX22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOTDATA_HIX22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOTDATA_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_LOX10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOTDATA_LOX10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOTDATA_OP_HIX22","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP_HIX22","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOTDATA_OP_HIX22"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOTDATA_OP_LOX10","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP_LOX10","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOTDATA_OP_LOX10"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_GOTDATA_OP","package":"druntime","parentType":"","signature":"R_SPARC_GOTDATA_OP","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_GOTDATA_OP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_H34","package":"druntime","parentType":"","signature":"R_SPARC_H34","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_H34"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_SIZE32","package":"druntime","parentType":"","signature":"R_SPARC_SIZE32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_SIZE64","package":"druntime","parentType":"","signature":"R_SPARC_SIZE64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_SIZE64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_NUM","package":"druntime","parentType":"","signature":"R_SPARC_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"R_SPARC_L34","package":"druntime","parentType":"","signature":"R_SPARC_L34","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#R_SPARC_L34"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"ELF_SPARC_MAXPGSZ","package":"druntime","parentType":"","signature":"ELF_SPARC_MAXPGSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#ELF_SPARC_MAXPGSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"ELF_SPARCV9_MAXPGSZ","package":"druntime","parentType":"","signature":"ELF_SPARCV9_MAXPGSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#ELF_SPARCV9_MAXPGSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"SHT_SPARC_GOTDATA","package":"druntime","parentType":"","signature":"SHT_SPARC_GOTDATA","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#SHT_SPARC_GOTDATA"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"SHN_BEFORE","package":"druntime","parentType":"","signature":"SHN_BEFORE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#SHN_BEFORE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"SHN_AFTER","package":"druntime","parentType":"","signature":"SHN_AFTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#SHN_AFTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STT_SPARC_REGISTER","package":"druntime","parentType":"","signature":"STT_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STT_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"DT_SPARC_REGISTER","package":"druntime","parentType":"","signature":"DT_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#DT_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G1","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G1","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G1"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G2","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G2","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G2"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G3","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G3","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G3"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G4","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G4","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G4"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G5","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G5","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G5"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G6","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G6","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G6"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"STO_SPARC_REGISTER_G7","package":"druntime","parentType":"","signature":"STO_SPARC_REGISTER_G7","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#STO_SPARC_REGISTER_G7"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M_PLT_INSSIZE","package":"druntime","parentType":"","signature":"M_PLT_INSSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M_PLT_INSSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M_PLT_XNumber","package":"druntime","parentType":"","signature":"M_PLT_XNumber","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M_PLT_XNumber"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M_GOT_XDYNAMIC","package":"druntime","parentType":"","signature":"M_GOT_XDYNAMIC","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M_GOT_XDYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M_GOT_XNumber","package":"druntime","parentType":"","signature":"M_GOT_XNumber","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M_GOT_XNumber"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_WORD_ALIGN","package":"druntime","parentType":"","signature":"M32_WORD_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_WORD_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_PLT_ENTSIZE","package":"druntime","parentType":"","signature":"M32_PLT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_PLT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_PLT_ALIGN","package":"druntime","parentType":"","signature":"M32_PLT_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_PLT_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_GOT_ENTSIZE","package":"druntime","parentType":"","signature":"M32_GOT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_GOT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_GOT_MAXSMALL","package":"druntime","parentType":"","signature":"M32_GOT_MAXSMALL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_GOT_MAXSMALL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M32_PLT_RESERVSZ","package":"druntime","parentType":"","signature":"M32_PLT_RESERVSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M32_PLT_RESERVSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_WORD_ALIGN","package":"druntime","parentType":"","signature":"M64_WORD_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_WORD_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_ENTSIZE","package":"druntime","parentType":"","signature":"M64_PLT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_ALIGN","package":"druntime","parentType":"","signature":"M64_PLT_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_GOT_ENTSIZE","package":"druntime","parentType":"","signature":"M64_GOT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_GOT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_GOT_MAXSMALL","package":"druntime","parentType":"","signature":"M64_GOT_MAXSMALL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_GOT_MAXSMALL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_RESERVSZ","package":"druntime","parentType":"","signature":"M64_PLT_RESERVSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_RESERVSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_NEARPLTS","package":"druntime","parentType":"","signature":"M64_PLT_NEARPLTS","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_NEARPLTS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_FENTSIZE","package":"druntime","parentType":"","signature":"M64_PLT_FENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_FENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_PSIZE","package":"druntime","parentType":"","signature":"M64_PLT_PSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_PSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_FBLKCNTS","package":"druntime","parentType":"","signature":"M64_PLT_FBLKCNTS","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_FBLKCNTS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_SPARC","name":"M64_PLT_FBLOCKSZ","package":"druntime","parentType":"","signature":"M64_PLT_FBLOCKSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_SPARC.html#M64_PLT_FBLOCKSZ"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elf_amd64","name":"core.sys.solaris.sys.elf_amd64","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_NONE","package":"druntime","parentType":"","signature":"R_AMD64_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_64","package":"druntime","parentType":"","signature":"R_AMD64_64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PC32","package":"druntime","parentType":"","signature":"R_AMD64_PC32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PC32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOT32","package":"druntime","parentType":"","signature":"R_AMD64_GOT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PLT32","package":"druntime","parentType":"","signature":"R_AMD64_PLT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PLT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_COPY","package":"druntime","parentType":"","signature":"R_AMD64_COPY","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_COPY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GLOB_DAT","package":"druntime","parentType":"","signature":"R_AMD64_GLOB_DAT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_AMD64_JUMP_SLOT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_RELATIVE","package":"druntime","parentType":"","signature":"R_AMD64_RELATIVE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTPCREL","package":"druntime","parentType":"","signature":"R_AMD64_GOTPCREL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTPCREL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_32","package":"druntime","parentType":"","signature":"R_AMD64_32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_32S","package":"druntime","parentType":"","signature":"R_AMD64_32S","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_32S"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_16","package":"druntime","parentType":"","signature":"R_AMD64_16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PC16","package":"druntime","parentType":"","signature":"R_AMD64_PC16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PC16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_8","package":"druntime","parentType":"","signature":"R_AMD64_8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PC8","package":"druntime","parentType":"","signature":"R_AMD64_PC8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PC8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_DTPMOD64","package":"druntime","parentType":"","signature":"R_AMD64_DTPMOD64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_DTPOFF64","package":"druntime","parentType":"","signature":"R_AMD64_DTPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_TPOFF64","package":"druntime","parentType":"","signature":"R_AMD64_TPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_TLSGD","package":"druntime","parentType":"","signature":"R_AMD64_TLSGD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_TLSGD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_TLSLD","package":"druntime","parentType":"","signature":"R_AMD64_TLSLD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_TLSLD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_DTPOFF32","package":"druntime","parentType":"","signature":"R_AMD64_DTPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTTPOFF","package":"druntime","parentType":"","signature":"R_AMD64_GOTTPOFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTTPOFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_TPOFF32","package":"druntime","parentType":"","signature":"R_AMD64_TPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PC64","package":"druntime","parentType":"","signature":"R_AMD64_PC64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PC64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTOFF64","package":"druntime","parentType":"","signature":"R_AMD64_GOTOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTPC32","package":"druntime","parentType":"","signature":"R_AMD64_GOTPC32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTPC32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOT64","package":"druntime","parentType":"","signature":"R_AMD64_GOT64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOT64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTPCREL64","package":"druntime","parentType":"","signature":"R_AMD64_GOTPCREL64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTPCREL64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTPC64","package":"druntime","parentType":"","signature":"R_AMD64_GOTPC64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTPC64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_GOTPLT64","package":"druntime","parentType":"","signature":"R_AMD64_GOTPLT64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_GOTPLT64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_PLTOFF64","package":"druntime","parentType":"","signature":"R_AMD64_PLTOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_PLTOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_SIZE32","package":"druntime","parentType":"","signature":"R_AMD64_SIZE32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_SIZE64","package":"druntime","parentType":"","signature":"R_AMD64_SIZE64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_SIZE64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_AMD64_NUM","package":"druntime","parentType":"","signature":"R_AMD64_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_AMD64_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_NONE","package":"druntime","parentType":"","signature":"R_X86_64_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_64","package":"druntime","parentType":"","signature":"R_X86_64_64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PC32","package":"druntime","parentType":"","signature":"R_X86_64_PC32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PC32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOT32","package":"druntime","parentType":"","signature":"R_X86_64_GOT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PLT32","package":"druntime","parentType":"","signature":"R_X86_64_PLT32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PLT32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_COPY","package":"druntime","parentType":"","signature":"R_X86_64_COPY","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_COPY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GLOB_DAT","package":"druntime","parentType":"","signature":"R_X86_64_GLOB_DAT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GLOB_DAT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_JUMP_SLOT","package":"druntime","parentType":"","signature":"R_X86_64_JUMP_SLOT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_JUMP_SLOT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_RELATIVE","package":"druntime","parentType":"","signature":"R_X86_64_RELATIVE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTPCREL","package":"druntime","parentType":"","signature":"R_X86_64_GOTPCREL","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTPCREL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_32","package":"druntime","parentType":"","signature":"R_X86_64_32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_32S","package":"druntime","parentType":"","signature":"R_X86_64_32S","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_32S"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_16","package":"druntime","parentType":"","signature":"R_X86_64_16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PC16","package":"druntime","parentType":"","signature":"R_X86_64_PC16","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PC16"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_8","package":"druntime","parentType":"","signature":"R_X86_64_8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PC8","package":"druntime","parentType":"","signature":"R_X86_64_PC8","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PC8"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_DTPMOD64","package":"druntime","parentType":"","signature":"R_X86_64_DTPMOD64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_DTPMOD64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_DTPOFF64","package":"druntime","parentType":"","signature":"R_X86_64_DTPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_DTPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_TPOFF64","package":"druntime","parentType":"","signature":"R_X86_64_TPOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_TPOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_TLSGD","package":"druntime","parentType":"","signature":"R_X86_64_TLSGD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_TLSGD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_TLSLD","package":"druntime","parentType":"","signature":"R_X86_64_TLSLD","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_TLSLD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_DTPOFF32","package":"druntime","parentType":"","signature":"R_X86_64_DTPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_DTPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTTPOFF","package":"druntime","parentType":"","signature":"R_X86_64_GOTTPOFF","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTTPOFF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_TPOFF32","package":"druntime","parentType":"","signature":"R_X86_64_TPOFF32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_TPOFF32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PC64","package":"druntime","parentType":"","signature":"R_X86_64_PC64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PC64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTPC32","package":"druntime","parentType":"","signature":"R_X86_64_GOTPC32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTPC32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTOFF64","package":"druntime","parentType":"","signature":"R_X86_64_GOTOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOT64","package":"druntime","parentType":"","signature":"R_X86_64_GOT64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOT64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTPCREL64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPCREL64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTPCREL64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTPC64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPC64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTPC64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_GOTPLT64","package":"druntime","parentType":"","signature":"R_X86_64_GOTPLT64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_GOTPLT64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_PLTOFF64","package":"druntime","parentType":"","signature":"R_X86_64_PLTOFF64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_PLTOFF64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_SIZE32","package":"druntime","parentType":"","signature":"R_X86_64_SIZE32","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_SIZE64","package":"druntime","parentType":"","signature":"R_X86_64_SIZE64","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_SIZE64"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"R_X86_64_NUM","package":"druntime","parentType":"","signature":"R_X86_64_NUM","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#R_X86_64_NUM"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"ELF_AMD64_MAXPGSZ","package":"druntime","parentType":"","signature":"ELF_AMD64_MAXPGSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#ELF_AMD64_MAXPGSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHT_AMD64_UNWIND","package":"druntime","parentType":"","signature":"SHT_AMD64_UNWIND","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHT_AMD64_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHT_X86_64_UNWIND","package":"druntime","parentType":"","signature":"SHT_X86_64_UNWIND","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHT_X86_64_UNWIND"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHF_AMD64_LARGE","package":"druntime","parentType":"","signature":"SHF_AMD64_LARGE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHF_AMD64_LARGE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHF_X86_64_LARGE","package":"druntime","parentType":"","signature":"SHF_X86_64_LARGE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHF_X86_64_LARGE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHN_AMD64_LCOMMON","package":"druntime","parentType":"","signature":"SHN_AMD64_LCOMMON","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHN_AMD64_LCOMMON"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"SHN_X86_64_LCOMMON","package":"druntime","parentType":"","signature":"SHN_X86_64_LCOMMON","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#SHN_X86_64_LCOMMON"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"M64_WORD_ALIGN","package":"druntime","parentType":"","signature":"M64_WORD_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#M64_WORD_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"M64_PLT_ENTSIZE","package":"druntime","parentType":"","signature":"M64_PLT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#M64_PLT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"M64_PLT_ALIGN","package":"druntime","parentType":"","signature":"M64_PLT_ALIGN","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#M64_PLT_ALIGN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"M64_GOT_ENTSIZE","package":"druntime","parentType":"","signature":"M64_GOT_ENTSIZE","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#M64_GOT_ENTSIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_amd64","name":"M64_PLT_RESERVSZ","package":"druntime","parentType":"","signature":"M64_PLT_RESERVSZ","url":"/ddoc/druntime/core/sys/solaris/sys/elf_amd64.html#M64_PLT_RESERVSZ"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elf_notes","name":"core.sys.solaris.sys.elf_notes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elf_notes.html"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_notes","name":"ELF_NOTE_SOLARIS","package":"druntime","parentType":"","signature":"ELF_NOTE_SOLARIS","url":"/ddoc/druntime/core/sys/solaris/sys/elf_notes.html#ELF_NOTE_SOLARIS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.elf_notes","name":"ELF_NOTE_PAGESIZE_HINT","package":"druntime","parentType":"","signature":"ELF_NOTE_PAGESIZE_HINT","url":"/ddoc/druntime/core/sys/solaris/sys/elf_notes.html#ELF_NOTE_PAGESIZE_HINT"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.elftypes","name":"core.sys.solaris.sys.elftypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/elftypes.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elftypes","name":"Elf64_Lword","package":"druntime","parentType":"","signature":"Elf64_Lword = uint64_t","url":"/ddoc/druntime/core/sys/solaris/sys/elftypes.html#Elf64_Lword"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.elftypes","name":"Elf32_Lword","package":"druntime","parentType":"","signature":"Elf32_Lword = uint64_t","url":"/ddoc/druntime/core/sys/solaris/sys/elftypes.html#Elf32_Lword"},{"doc":"D header file for Solaris.","kind":"module","module":"core.sys.solaris.sys.link","name":"core.sys.solaris.sys.link","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/link.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.link","name":"_ld_libc","package":"druntime","parentType":"","signature":"void _ld_libc(void  *)","url":"/ddoc/druntime/core/sys/solaris/sys/link/_ld_libc.html"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"Elf32_Dyn","package":"druntime","parentType":"","signature":"Elf32_Dyn","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#Elf32_Dyn"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"Elf64_Dyn","package":"druntime","parentType":"","signature":"Elf64_Dyn","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#Elf64_Dyn"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.link","name":"Link_map","package":"druntime","parentType":"","signature":"Link_map = link_map","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#Link_map"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"link_map","package":"druntime","parentType":"","signature":"link_map","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#link_map"},{"doc":"","kind":"enum","module":"core.sys.solaris.sys.link","name":"r_state_e","package":"druntime","parentType":"","signature":"r_state_e","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#r_state_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RT_CONSISTENT","package":"druntime","parentType":"","signature":"RT_CONSISTENT = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#r_state_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RT_ADD","package":"druntime","parentType":"","signature":"RT_ADD = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#r_state_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RT_DELETE","package":"druntime","parentType":"","signature":"RT_DELETE = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#r_state_e"},{"doc":"","kind":"enum","module":"core.sys.solaris.sys.link","name":"rd_flags_e","package":"druntime","parentType":"","signature":"rd_flags_e","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_flags_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_FL_NONE","package":"druntime","parentType":"","signature":"RD_FL_NONE = 0","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_flags_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_FL_ODBG","package":"druntime","parentType":"","signature":"RD_FL_ODBG = (1 << 0)","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_flags_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_FL_DBG","package":"druntime","parentType":"","signature":"RD_FL_DBG = (1 << 1)","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_flags_e"},{"doc":"","kind":"enum","module":"core.sys.solaris.sys.link","name":"rd_event_e","package":"druntime","parentType":"","signature":"rd_event_e","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_event_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_NONE","package":"druntime","parentType":"","signature":"RD_NONE = 0","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_event_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_PREINIT","package":"druntime","parentType":"","signature":"RD_PREINIT = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_event_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_POSTINIT","package":"druntime","parentType":"","signature":"RD_POSTINIT = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_event_e"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.link","name":"RD_DLACTIVITY","package":"druntime","parentType":"","signature":"RD_DLACTIVITY = ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#rd_event_e"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"r_debug","package":"druntime","parentType":"","signature":"r_debug","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#r_debug"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"Elf32_Boot","package":"druntime","parentType":"","signature":"Elf32_Boot","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#Elf32_Boot"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.link","name":"Elf64_Boot","package":"druntime","parentType":"","signature":"Elf64_Boot","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#Elf64_Boot"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_MAXPOSTAGS","package":"druntime","parentType":"","signature":"DT_MAXPOSTAGS","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_MAXPOSTAGS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_AUXILIARY","package":"druntime","parentType":"","signature":"DT_SUNW_AUXILIARY","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_RTLDINF","package":"druntime","parentType":"","signature":"DT_SUNW_RTLDINF","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_RTLDINF"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_FILTER","package":"druntime","parentType":"","signature":"DT_SUNW_FILTER","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_FILTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_CAP","package":"druntime","parentType":"","signature":"DT_SUNW_CAP","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_CAP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_SYMTAB","package":"druntime","parentType":"","signature":"DT_SUNW_SYMTAB","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_SYMTAB"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_SYMSZ","package":"druntime","parentType":"","signature":"DT_SUNW_SYMSZ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_SYMSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_ENCODING","package":"druntime","parentType":"","signature":"DT_SUNW_ENCODING","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_ENCODING"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_SORTENT","package":"druntime","parentType":"","signature":"DT_SUNW_SORTENT","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_SORTENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_SYMSORT","package":"druntime","parentType":"","signature":"DT_SUNW_SYMSORT","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_SYMSORT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_SYMSORTSZ","package":"druntime","parentType":"","signature":"DT_SUNW_SYMSORTSZ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_SYMSORTSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_TLSSORT","package":"druntime","parentType":"","signature":"DT_SUNW_TLSSORT","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_TLSSORT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_TLSSORTSZ","package":"druntime","parentType":"","signature":"DT_SUNW_TLSSORTSZ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_TLSSORTSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_CAPINFO","package":"druntime","parentType":"","signature":"DT_SUNW_CAPINFO","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_CAPINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_STRPAD","package":"druntime","parentType":"","signature":"DT_SUNW_STRPAD","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_STRPAD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_CAPCHAIN","package":"druntime","parentType":"","signature":"DT_SUNW_CAPCHAIN","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_CAPCHAIN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_LDMACH","package":"druntime","parentType":"","signature":"DT_SUNW_LDMACH","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_LDMACH"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_CAPCHAINENT","package":"druntime","parentType":"","signature":"DT_SUNW_CAPCHAINENT","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_CAPCHAINENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_SUNW_CAPCHAINSZ","package":"druntime","parentType":"","signature":"DT_SUNW_CAPCHAINSZ","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_SUNW_CAPCHAINSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_DEPRECATED_SPARC_REGISTER","package":"druntime","parentType":"","signature":"DT_DEPRECATED_SPARC_REGISTER","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_DEPRECATED_SPARC_REGISTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DT_USED","package":"druntime","parentType":"","signature":"DT_USED","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DT_USED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"DF_P1_DEFERRED","package":"druntime","parentType":"","signature":"DF_P1_DEFERRED","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#DF_P1_DEFERRED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"VER_FLG_INFO","package":"druntime","parentType":"","signature":"VER_FLG_INFO","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#VER_FLG_INFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_FILTER","package":"druntime","parentType":"","signature":"SYMINFO_FLG_FILTER","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_FILTER"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_DIRECTBIND","package":"druntime","parentType":"","signature":"SYMINFO_FLG_DIRECTBIND","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_DIRECTBIND"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_NOEXTDIRECT","package":"druntime","parentType":"","signature":"SYMINFO_FLG_NOEXTDIRECT","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_NOEXTDIRECT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_AUXILIARY","package":"druntime","parentType":"","signature":"SYMINFO_FLG_AUXILIARY","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_INTERPOSE","package":"druntime","parentType":"","signature":"SYMINFO_FLG_INTERPOSE","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_INTERPOSE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_CAP","package":"druntime","parentType":"","signature":"SYMINFO_FLG_CAP","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_CAP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_FLG_DEFERRED","package":"druntime","parentType":"","signature":"SYMINFO_FLG_DEFERRED","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_FLG_DEFERRED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_BT_NONE","package":"druntime","parentType":"","signature":"SYMINFO_BT_NONE","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_BT_NONE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"SYMINFO_BT_EXTERN","package":"druntime","parentType":"","signature":"SYMINFO_BT_EXTERN","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#SYMINFO_BT_EXTERN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"R_DEBUG_VERSION","package":"druntime","parentType":"","signature":"R_DEBUG_VERSION","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#R_DEBUG_VERSION"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_NULL","package":"druntime","parentType":"","signature":"EB_NULL","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_NULL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_DYNAMIC","package":"druntime","parentType":"","signature":"EB_DYNAMIC","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_LDSO_BASE","package":"druntime","parentType":"","signature":"EB_LDSO_BASE","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_LDSO_BASE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_ARGV","package":"druntime","parentType":"","signature":"EB_ARGV","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_ARGV"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_ENVP","package":"druntime","parentType":"","signature":"EB_ENVP","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_ENVP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_AUXV","package":"druntime","parentType":"","signature":"EB_AUXV","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_AUXV"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_DEVZERO","package":"druntime","parentType":"","signature":"EB_DEVZERO","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_DEVZERO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_PAGESIZE","package":"druntime","parentType":"","signature":"EB_PAGESIZE","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_PAGESIZE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_MAX","package":"druntime","parentType":"","signature":"EB_MAX","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_MAX"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_MAX_SIZE32","package":"druntime","parentType":"","signature":"EB_MAX_SIZE32","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_MAX_SIZE32"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.link","name":"EB_MAX_SIZE64","package":"druntime","parentType":"","signature":"EB_MAX_SIZE64","url":"/ddoc/druntime/core/sys/solaris/sys/link.html#EB_MAX_SIZE64"},{"doc":"D header file for the Solaris priocntl(2) and priocntlset(2) functions.","kind":"module","module":"core.sys.solaris.sys.priocntl","name":"core.sys.solaris.sys.priocntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.priocntl","name":"priocntl","package":"druntime","parentType":"","signature":"c_long priocntl(idtype_t,  id_t,  int, ...)","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl/priocntl.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.priocntl","name":"priocntlset","package":"druntime","parentType":"","signature":"c_long priocntlset(procset_t *,  int, ...)","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl/priocntlset.html"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcinfo_t","package":"druntime","parentType":"","signature":"pcinfo_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcinfo_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcparms_t","package":"druntime","parentType":"","signature":"pcparms_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcparms_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcnice_t","package":"druntime","parentType":"","signature":"pcnice_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcnice_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcprio_t","package":"druntime","parentType":"","signature":"pcprio_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcprio_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pc_vaparm_t","package":"druntime","parentType":"","signature":"pc_vaparm_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pc_vaparm_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pc_vaparms_t","package":"druntime","parentType":"","signature":"pc_vaparms_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pc_vaparms_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcpri_t","package":"druntime","parentType":"","signature":"pcpri_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcpri_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.priocntl","name":"pcadmin_t","package":"druntime","parentType":"","signature":"pcadmin_t","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#pcadmin_t"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETCID","package":"druntime","parentType":"","signature":"PC_GETCID","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETCID"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETCLINFO","package":"druntime","parentType":"","signature":"PC_GETCLINFO","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETCLINFO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_SETPARMS","package":"druntime","parentType":"","signature":"PC_SETPARMS","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_SETPARMS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETPARMS","package":"druntime","parentType":"","signature":"PC_GETPARMS","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETPARMS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_ADMIN","package":"druntime","parentType":"","signature":"PC_ADMIN","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_ADMIN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETPRIRANGE","package":"druntime","parentType":"","signature":"PC_GETPRIRANGE","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETPRIRANGE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_DONICE","package":"druntime","parentType":"","signature":"PC_DONICE","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_DONICE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_SETXPARMS","package":"druntime","parentType":"","signature":"PC_SETXPARMS","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_SETXPARMS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETXPARMS","package":"druntime","parentType":"","signature":"PC_GETXPARMS","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETXPARMS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_SETDFLCL","package":"druntime","parentType":"","signature":"PC_SETDFLCL","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_SETDFLCL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETDFLCL","package":"druntime","parentType":"","signature":"PC_GETDFLCL","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETDFLCL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_DOPRIO","package":"druntime","parentType":"","signature":"PC_DOPRIO","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_DOPRIO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_CLNULL","package":"druntime","parentType":"","signature":"PC_CLNULL","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_CLNULL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_CLNMSZ","package":"druntime","parentType":"","signature":"PC_CLNMSZ","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_CLNMSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_CLINFOSZ","package":"druntime","parentType":"","signature":"PC_CLINFOSZ","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_CLINFOSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_CLPARMSZ","package":"druntime","parentType":"","signature":"PC_CLPARMSZ","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_CLPARMSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETNICE","package":"druntime","parentType":"","signature":"PC_GETNICE","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETNICE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_SETNICE","package":"druntime","parentType":"","signature":"PC_SETNICE","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_SETNICE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_GETPRIO","package":"druntime","parentType":"","signature":"PC_GETPRIO","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_GETPRIO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_SETPRIO","package":"druntime","parentType":"","signature":"PC_SETPRIO","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_SETPRIO"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_VAPARMCNT","package":"druntime","parentType":"","signature":"PC_VAPARMCNT","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_VAPARMCNT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_KY_NULL","package":"druntime","parentType":"","signature":"PC_KY_NULL","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_KY_NULL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.priocntl","name":"PC_KY_CLNAME","package":"druntime","parentType":"","signature":"PC_KY_CLNAME","url":"/ddoc/druntime/core/sys/solaris/sys/priocntl.html#PC_KY_CLNAME"},{"doc":"D header file for Solaris sys/procfs.h.","kind":"module","module":"core.sys.solaris.sys.procfs","name":"core.sys.solaris.sys.procfs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.procfs","name":"lwpstatus_t","package":"druntime","parentType":"","signature":"lwpstatus_t","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#lwpstatus_t"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PRCLSZ","package":"druntime","parentType":"","signature":"PRCLSZ","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PRCLSZ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PRSYSARGS","package":"druntime","parentType":"","signature":"PRSYSARGS","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PRSYSARGS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_STOPPED","package":"druntime","parentType":"","signature":"PR_STOPPED","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_STOPPED"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ISTOP","package":"druntime","parentType":"","signature":"PR_ISTOP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ISTOP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_DSTOP","package":"druntime","parentType":"","signature":"PR_DSTOP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_DSTOP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_STEP","package":"druntime","parentType":"","signature":"PR_STEP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_STEP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ASLEEP","package":"druntime","parentType":"","signature":"PR_ASLEEP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ASLEEP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_PCINVAL","package":"druntime","parentType":"","signature":"PR_PCINVAL","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_PCINVAL"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ASLWP","package":"druntime","parentType":"","signature":"PR_ASLWP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ASLWP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_AGENT","package":"druntime","parentType":"","signature":"PR_AGENT","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_AGENT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_DETACH","package":"druntime","parentType":"","signature":"PR_DETACH","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_DETACH"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_DAEMON","package":"druntime","parentType":"","signature":"PR_DAEMON","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_DAEMON"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_IDLE","package":"druntime","parentType":"","signature":"PR_IDLE","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_IDLE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ISSYS","package":"druntime","parentType":"","signature":"PR_ISSYS","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ISSYS"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_VFORKP","package":"druntime","parentType":"","signature":"PR_VFORKP","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_VFORKP"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ORPHAN","package":"druntime","parentType":"","signature":"PR_ORPHAN","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ORPHAN"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_NOSIGCHLD","package":"druntime","parentType":"","signature":"PR_NOSIGCHLD","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_NOSIGCHLD"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_WAITPID","package":"druntime","parentType":"","signature":"PR_WAITPID","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_WAITPID"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_FORK","package":"druntime","parentType":"","signature":"PR_FORK","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_FORK"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_RLC","package":"druntime","parentType":"","signature":"PR_RLC","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_RLC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_KLC","package":"druntime","parentType":"","signature":"PR_KLC","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_KLC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_ASYNC","package":"druntime","parentType":"","signature":"PR_ASYNC","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_ASYNC"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_MSACCT","package":"druntime","parentType":"","signature":"PR_MSACCT","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_MSACCT"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_BPTADJ","package":"druntime","parentType":"","signature":"PR_BPTADJ","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_BPTADJ"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_PTRACE","package":"druntime","parentType":"","signature":"PR_PTRACE","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_PTRACE"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procfs","name":"PR_MSFORK","package":"druntime","parentType":"","signature":"PR_MSFORK","url":"/ddoc/druntime/core/sys/solaris/sys/procfs.html#PR_MSFORK"},{"doc":"D header file defining a process set.","kind":"module","module":"core.sys.solaris.sys.procset","name":"core.sys.solaris.sys.procset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html"},{"doc":"","kind":"function","module":"core.sys.solaris.sys.procset","name":"setprocset","package":"druntime","parentType":"","signature":"void setprocset(ref  procset_t psp,  idop_t op,  idtype_t ltype,  id_t lid,  idtype_t rtype,  id_t rid)","url":"/ddoc/druntime/core/sys/solaris/sys/procset/setprocset.html"},{"doc":"","kind":"enum","module":"core.sys.solaris.sys.procset","name":"idop_t","package":"druntime","parentType":"","signature":"idop_t","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#idop_t"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.procset","name":"POP_DIFF","package":"druntime","parentType":"","signature":"POP_DIFF = ","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#idop_t"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.procset","name":"POP_AND","package":"druntime","parentType":"","signature":"POP_AND = ","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#idop_t"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.procset","name":"POP_OR","package":"druntime","parentType":"","signature":"POP_OR = ","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#idop_t"},{"doc":"","kind":"enum_member","module":"core.sys.solaris.sys.procset","name":"POP_XOR","package":"druntime","parentType":"","signature":"POP_XOR = ","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#idop_t"},{"doc":"","kind":"struct","module":"core.sys.solaris.sys.procset","name":"procset_t","package":"druntime","parentType":"","signature":"procset_t","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#procset_t"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procset","name":"P_INITPID","package":"druntime","parentType":"","signature":"P_INITPID","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#P_INITPID"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procset","name":"P_INITUID","package":"druntime","parentType":"","signature":"P_INITUID","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#P_INITUID"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.procset","name":"P_INITPGID","package":"druntime","parentType":"","signature":"P_INITPGID","url":"/ddoc/druntime/core/sys/solaris/sys/procset.html#P_INITPGID"},{"doc":"D header file for Solaris sys/regset.h.","kind":"module","module":"core.sys.solaris.sys.regset","name":"core.sys.solaris.sys.regset","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/regset.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.regset","name":"gregset_t","package":"druntime","parentType":"","signature":"gregset_t = greg_t[_NGREG]","url":"/ddoc/druntime/core/sys/solaris/sys/regset.html#gregset_t"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.regset","name":"fpregset_t","package":"druntime","parentType":"","signature":"fpregset_t = fpu","url":"/ddoc/druntime/core/sys/solaris/sys/regset.html#fpregset_t"},{"doc":"D header file that defines Solaris-specific types.","kind":"module","module":"core.sys.solaris.sys.types","name":"core.sys.solaris.sys.types","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/sys/types.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.sys.types","name":"pri_t","package":"druntime","parentType":"","signature":"pri_t = short","url":"/ddoc/druntime/core/sys/solaris/sys/types.html#pri_t"},{"doc":"","kind":"variable","module":"core.sys.solaris.sys.types","name":"P_MYID","package":"druntime","parentType":"","signature":"P_MYID","url":"/ddoc/druntime/core/sys/solaris/sys/types.html#P_MYID"},{"doc":"D header file for Solaris thread.h.","kind":"module","module":"core.sys.solaris.thread","name":"core.sys.solaris.thread","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/thread.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_create","package":"druntime","parentType":"","signature":"int thr_create(void *,  size_t,  void *  function(void *),  void *,  c_long,  thread_t *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_create.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_join","package":"druntime","parentType":"","signature":"int thr_join(thread_t,  thread_t *,  void * *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_join.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_setconcurrency","package":"druntime","parentType":"","signature":"int thr_setconcurrency(int)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_setconcurrency.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_getconcurrency","package":"druntime","parentType":"","signature":"int thr_getconcurrency()","url":"/ddoc/druntime/core/sys/solaris/thread/thr_getconcurrency.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_exit","package":"druntime","parentType":"","signature":"noreturn thr_exit(void *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_exit.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_self","package":"druntime","parentType":"","signature":"thread_t thr_self()","url":"/ddoc/druntime/core/sys/solaris/thread/thr_self.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_sigsetmask","package":"druntime","parentType":"","signature":"int thr_sigsetmask(int,  const  scope  sigset_t *,  sigset_t *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_sigsetmask.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_stksegment","package":"druntime","parentType":"","signature":"int thr_stksegment(stack_t *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_stksegment.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_main","package":"druntime","parentType":"","signature":"int thr_main()","url":"/ddoc/druntime/core/sys/solaris/thread/thr_main.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_kill","package":"druntime","parentType":"","signature":"int thr_kill(thread_t,  int)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_kill.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_suspend","package":"druntime","parentType":"","signature":"int thr_suspend(thread_t)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_suspend.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_continue","package":"druntime","parentType":"","signature":"int thr_continue(thread_t)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_continue.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_yield","package":"druntime","parentType":"","signature":"void thr_yield()","url":"/ddoc/druntime/core/sys/solaris/thread/thr_yield.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_setprio","package":"druntime","parentType":"","signature":"int thr_setprio(thread_t,  int)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_setprio.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_getprio","package":"druntime","parentType":"","signature":"int thr_getprio(thread_t,  int *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_getprio.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_keycreate","package":"druntime","parentType":"","signature":"int thr_keycreate(thread_key_t *,  void  function(void *))","url":"/ddoc/druntime/core/sys/solaris/thread/thr_keycreate.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_keycreate_once","package":"druntime","parentType":"","signature":"int thr_keycreate_once(thread_key_t *,  void  function(void *))","url":"/ddoc/druntime/core/sys/solaris/thread/thr_keycreate_once.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_setspecific","package":"druntime","parentType":"","signature":"int thr_setspecific(thread_key_t,  void *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_setspecific.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_getspecific","package":"druntime","parentType":"","signature":"int thr_getspecific(thread_key_t,  void * *)","url":"/ddoc/druntime/core/sys/solaris/thread/thr_getspecific.html"},{"doc":"","kind":"function","module":"core.sys.solaris.thread","name":"thr_min_stack","package":"druntime","parentType":"","signature":"size_t thr_min_stack()","url":"/ddoc/druntime/core/sys/solaris/thread/thr_min_stack.html"},{"doc":"","kind":"alias","module":"core.sys.solaris.thread","name":"thread_t","package":"druntime","parentType":"","signature":"thread_t = int","url":"/ddoc/druntime/core/sys/solaris/thread.html#thread_t"},{"doc":"","kind":"alias","module":"core.sys.solaris.thread","name":"thread_key_t","package":"druntime","parentType":"","signature":"thread_key_t = int","url":"/ddoc/druntime/core/sys/solaris/thread.html#thread_key_t"},{"doc":"","kind":"alias","module":"core.sys.solaris.thread","name":"THR_MIN_STACK","package":"druntime","parentType":"","signature":"THR_MIN_STACK = thr_min_stack","url":"/ddoc/druntime/core/sys/solaris/thread.html#THR_MIN_STACK"},{"doc":"","kind":"variable","module":"core.sys.solaris.thread","name":"THR_ONCE_KEY","package":"druntime","parentType":"","signature":"thread_key_t THR_ONCE_KEY","url":"/ddoc/druntime/core/sys/solaris/thread.html#THR_ONCE_KEY"},{"doc":"D header file for Solaris's extensions to POSIX's time.h.","kind":"module","module":"core.sys.solaris.time","name":"core.sys.solaris.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/solaris/time.html"},{"doc":"","kind":"variable","module":"core.sys.solaris.time","name":"CLOCK_VIRTUAL","package":"druntime","parentType":"","signature":"CLOCK_VIRTUAL","url":"/ddoc/druntime/core/sys/solaris/time.html#CLOCK_VIRTUAL"},{"doc":"","kind":"variable","module":"core.sys.solaris.time","name":"CLOCK_HIGHRES","package":"druntime","parentType":"","signature":"CLOCK_HIGHRES","url":"/ddoc/druntime/core/sys/solaris/time.html#CLOCK_HIGHRES"},{"doc":"","kind":"variable","module":"core.sys.solaris.time","name":"CLOCK_PROF","package":"druntime","parentType":"","signature":"CLOCK_PROF","url":"/ddoc/druntime/core/sys/solaris/time.html#CLOCK_PROF"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.accctrl","name":"core.sys.windows.accctrl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/accctrl.html"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"AccFree","package":"druntime","parentType":"","signature":"AccFree = LocalFree","url":"/ddoc/druntime/core/sys/windows/accctrl.html#AccFree"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"INHERIT_FLAGS","package":"druntime","parentType":"","signature":"INHERIT_FLAGS = ULONG","url":"/ddoc/druntime/core/sys/windows/accctrl.html#INHERIT_FLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PINHERIT_FLAGS","package":"druntime","parentType":"","signature":"PINHERIT_FLAGS = ULONG *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PINHERIT_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.accctrl","name":"ACCESS_MODE","package":"druntime","parentType":"","signature":"ACCESS_MODE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"NOT_USED_ACCESS","package":"druntime","parentType":"","signature":"NOT_USED_ACCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"GRANT_ACCESS","package":"druntime","parentType":"","signature":"GRANT_ACCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SET_ACCESS","package":"druntime","parentType":"","signature":"SET_ACCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"DENY_ACCESS","package":"druntime","parentType":"","signature":"DENY_ACCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"REVOKE_ACCESS","package":"druntime","parentType":"","signature":"REVOKE_ACCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SET_AUDIT_SUCCESS","package":"druntime","parentType":"","signature":"SET_AUDIT_SUCCESS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SET_AUDIT_FAILURE","package":"druntime","parentType":"","signature":"SET_AUDIT_FAILURE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCESS_MODE"},{"doc":"","kind":"enum","module":"core.sys.windows.accctrl","name":"SE_OBJECT_TYPE","package":"druntime","parentType":"","signature":"SE_OBJECT_TYPE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_UNKNOWN_OBJECT_TYPE","package":"druntime","parentType":"","signature":"SE_UNKNOWN_OBJECT_TYPE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_FILE_OBJECT","package":"druntime","parentType":"","signature":"SE_FILE_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_SERVICE","package":"druntime","parentType":"","signature":"SE_SERVICE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_PRINTER","package":"druntime","parentType":"","signature":"SE_PRINTER = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_REGISTRY_KEY","package":"druntime","parentType":"","signature":"SE_REGISTRY_KEY = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_LMSHARE","package":"druntime","parentType":"","signature":"SE_LMSHARE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_KERNEL_OBJECT","package":"druntime","parentType":"","signature":"SE_KERNEL_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_WINDOW_OBJECT","package":"druntime","parentType":"","signature":"SE_WINDOW_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_DS_OBJECT","package":"druntime","parentType":"","signature":"SE_DS_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_DS_OBJECT_ALL","package":"druntime","parentType":"","signature":"SE_DS_OBJECT_ALL = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_PROVIDER_DEFINED_OBJECT","package":"druntime","parentType":"","signature":"SE_PROVIDER_DEFINED_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_WMIGUID_OBJECT","package":"druntime","parentType":"","signature":"SE_WMIGUID_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"SE_REGISTRY_WOW64_32KEY","package":"druntime","parentType":"","signature":"SE_REGISTRY_WOW64_32KEY = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#SE_OBJECT_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.accctrl","name":"TRUSTEE_TYPE","package":"druntime","parentType":"","signature":"TRUSTEE_TYPE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_UNKNOWN","package":"druntime","parentType":"","signature":"TRUSTEE_IS_UNKNOWN = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_USER","package":"druntime","parentType":"","signature":"TRUSTEE_IS_USER = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_GROUP","package":"druntime","parentType":"","signature":"TRUSTEE_IS_GROUP = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_DOMAIN","package":"druntime","parentType":"","signature":"TRUSTEE_IS_DOMAIN = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_ALIAS","package":"druntime","parentType":"","signature":"TRUSTEE_IS_ALIAS = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_WELL_KNOWN_GROUP","package":"druntime","parentType":"","signature":"TRUSTEE_IS_WELL_KNOWN_GROUP = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_DELETED","package":"druntime","parentType":"","signature":"TRUSTEE_IS_DELETED = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_INVALID","package":"druntime","parentType":"","signature":"TRUSTEE_IS_INVALID = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_COMPUTER","package":"druntime","parentType":"","signature":"TRUSTEE_IS_COMPUTER = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.accctrl","name":"TRUSTEE_FORM","package":"druntime","parentType":"","signature":"TRUSTEE_FORM","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_SID","package":"druntime","parentType":"","signature":"TRUSTEE_IS_SID = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_NAME","package":"druntime","parentType":"","signature":"TRUSTEE_IS_NAME = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_BAD_FORM","package":"druntime","parentType":"","signature":"TRUSTEE_BAD_FORM = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_OBJECTS_AND_SID","package":"druntime","parentType":"","signature":"TRUSTEE_IS_OBJECTS_AND_SID = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_OBJECTS_AND_NAME","package":"druntime","parentType":"","signature":"TRUSTEE_IS_OBJECTS_AND_NAME = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_FORM"},{"doc":"","kind":"enum","module":"core.sys.windows.accctrl","name":"MULTIPLE_TRUSTEE_OPERATION","package":"druntime","parentType":"","signature":"MULTIPLE_TRUSTEE_OPERATION","url":"/ddoc/druntime/core/sys/windows/accctrl.html#MULTIPLE_TRUSTEE_OPERATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"NO_MULTIPLE_TRUSTEE","package":"druntime","parentType":"","signature":"NO_MULTIPLE_TRUSTEE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#MULTIPLE_TRUSTEE_OPERATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.accctrl","name":"TRUSTEE_IS_IMPERSONATE","package":"druntime","parentType":"","signature":"TRUSTEE_IS_IMPERSONATE = ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#MULTIPLE_TRUSTEE_OPERATION"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"TRUSTEE_A","package":"druntime","parentType":"","signature":"TRUSTEE_A","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_A"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"TRUSTEEA","package":"druntime","parentType":"","signature":"TRUSTEEA = TRUSTEE_A","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEEA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE_A","package":"druntime","parentType":"","signature":"PTRUSTEE_A = TRUSTEE_A *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE_A"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"TRUSTEE_W","package":"druntime","parentType":"","signature":"TRUSTEE_W","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_W"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"TRUSTEEW","package":"druntime","parentType":"","signature":"TRUSTEEW = TRUSTEE_W","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEEW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE_W","package":"druntime","parentType":"","signature":"PTRUSTEE_W = TRUSTEEW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE_W"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_ENTRYA","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_ENTRYA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_ENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRYA","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRYA = ACTRL_ACCESS_ENTRYA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_ENTRYW","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_ENTRYW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_ENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRYW","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRYW = ACTRL_ACCESS_ENTRYW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_ENTRY_LISTA","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_ENTRY_LISTA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_ENTRY_LISTA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRY_LISTA","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRY_LISTA = ACTRL_ACCESS_ENTRY_LISTA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRY_LISTA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_ENTRY_LISTW","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_ENTRY_LISTW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_ENTRY_LISTW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRY_LISTW","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRY_LISTW = ACTRL_ACCESS_ENTRY_LISTW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRY_LISTW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_PROPERTY_ENTRYA","package":"druntime","parentType":"","signature":"ACTRL_PROPERTY_ENTRYA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_PROPERTY_ENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_PROPERTY_ENTRYA","package":"druntime","parentType":"","signature":"PACTRL_PROPERTY_ENTRYA = ACTRL_PROPERTY_ENTRYA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_PROPERTY_ENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_PROPERTY_ENTRYW","package":"druntime","parentType":"","signature":"ACTRL_PROPERTY_ENTRYW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_PROPERTY_ENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_PROPERTY_ENTRYW","package":"druntime","parentType":"","signature":"PACTRL_PROPERTY_ENTRYW = ACTRL_PROPERTY_ENTRYW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_PROPERTY_ENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESSA","package":"druntime","parentType":"","signature":"ACTRL_ACCESSA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESSA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"ACTRL_AUDITA","package":"druntime","parentType":"","signature":"ACTRL_AUDITA = ACTRL_ACCESSA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_AUDITA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESSA","package":"druntime","parentType":"","signature":"PACTRL_ACCESSA = ACTRL_ACCESSA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESSA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESSW","package":"druntime","parentType":"","signature":"ACTRL_ACCESSW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESSW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"ACTRL_AUDITW","package":"druntime","parentType":"","signature":"ACTRL_AUDITW = ACTRL_ACCESSW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_AUDITW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESSW","package":"druntime","parentType":"","signature":"PACTRL_ACCESSW = ACTRL_ACCESSW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESSW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"TRUSTEE_ACCESSA","package":"druntime","parentType":"","signature":"TRUSTEE_ACCESSA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_ACCESSA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE_ACCESSA","package":"druntime","parentType":"","signature":"PTRUSTEE_ACCESSA = TRUSTEE_ACCESSA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE_ACCESSA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"TRUSTEE_ACCESSW","package":"druntime","parentType":"","signature":"TRUSTEE_ACCESSW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_ACCESSW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE_ACCESSW","package":"druntime","parentType":"","signature":"PTRUSTEE_ACCESSW = TRUSTEE_ACCESSW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE_ACCESSW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_OVERLAPPED","package":"druntime","parentType":"","signature":"ACTRL_OVERLAPPED","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_OVERLAPPED"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_OVERLAPPED","package":"druntime","parentType":"","signature":"PACTRL_OVERLAPPED = ACTRL_OVERLAPPED *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_OVERLAPPED"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_INFOA","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_INFOA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_INFOA","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_INFOA = ACTRL_ACCESS_INFOA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_ACCESS_INFOW","package":"druntime","parentType":"","signature":"ACTRL_ACCESS_INFOW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_ACCESS_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_INFOW","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_INFOW = ACTRL_ACCESS_INFOW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_CONTROL_INFOA","package":"druntime","parentType":"","signature":"ACTRL_CONTROL_INFOA","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_CONTROL_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_CONTROL_INFOA","package":"druntime","parentType":"","signature":"PACTRL_CONTROL_INFOA = ACTRL_CONTROL_INFOA *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_CONTROL_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"ACTRL_CONTROL_INFOW","package":"druntime","parentType":"","signature":"ACTRL_CONTROL_INFOW","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_CONTROL_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_CONTROL_INFOW","package":"druntime","parentType":"","signature":"PACTRL_CONTROL_INFOW = ACTRL_CONTROL_INFOW *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_CONTROL_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"EXPLICIT_ACCESS_A","package":"druntime","parentType":"","signature":"EXPLICIT_ACCESS_A","url":"/ddoc/druntime/core/sys/windows/accctrl.html#EXPLICIT_ACCESS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"EXPLICIT_ACCESSA","package":"druntime","parentType":"","signature":"EXPLICIT_ACCESSA = EXPLICIT_ACCESS_A","url":"/ddoc/druntime/core/sys/windows/accctrl.html#EXPLICIT_ACCESSA"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PEXPLICIT_ACCESS_A","package":"druntime","parentType":"","signature":"PEXPLICIT_ACCESS_A = EXPLICIT_ACCESS_A *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PEXPLICIT_ACCESS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"EXPLICIT_ACCESS_W","package":"druntime","parentType":"","signature":"EXPLICIT_ACCESS_W","url":"/ddoc/druntime/core/sys/windows/accctrl.html#EXPLICIT_ACCESS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"EXPLICIT_ACCESSW","package":"druntime","parentType":"","signature":"EXPLICIT_ACCESSW = EXPLICIT_ACCESS_W","url":"/ddoc/druntime/core/sys/windows/accctrl.html#EXPLICIT_ACCESSW"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PEXPLICIT_ACCESS_W","package":"druntime","parentType":"","signature":"PEXPLICIT_ACCESS_W = EXPLICIT_ACCESS_W *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PEXPLICIT_ACCESS_W"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"OBJECTS_AND_SID","package":"druntime","parentType":"","signature":"OBJECTS_AND_SID","url":"/ddoc/druntime/core/sys/windows/accctrl.html#OBJECTS_AND_SID"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"POBJECTS_AND_SID","package":"druntime","parentType":"","signature":"POBJECTS_AND_SID = OBJECTS_AND_SID *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#POBJECTS_AND_SID"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"OBJECTS_AND_NAME_A","package":"druntime","parentType":"","signature":"OBJECTS_AND_NAME_A","url":"/ddoc/druntime/core/sys/windows/accctrl.html#OBJECTS_AND_NAME_A"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"POBJECTS_AND_NAME_A","package":"druntime","parentType":"","signature":"POBJECTS_AND_NAME_A = OBJECTS_AND_NAME_A *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#POBJECTS_AND_NAME_A"},{"doc":"","kind":"struct","module":"core.sys.windows.accctrl","name":"OBJECTS_AND_NAME_W","package":"druntime","parentType":"","signature":"OBJECTS_AND_NAME_W","url":"/ddoc/druntime/core/sys/windows/accctrl.html#OBJECTS_AND_NAME_W"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"POBJECTS_AND_NAME_W","package":"druntime","parentType":"","signature":"POBJECTS_AND_NAME_W = OBJECTS_AND_NAME_W *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#POBJECTS_AND_NAME_W"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"TRUSTEE_","package":"druntime","parentType":"","signature":"TRUSTEE_ = TRUSTEE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE","package":"druntime","parentType":"","signature":"PTRUSTEE = TRUSTEE *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS","package":"druntime","parentType":"","signature":"PACTRL_ACCESS = ACTRL_ACCESS *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRY_LIST","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRY_LIST = ACTRL_ACCESS_ENTRY_LIST *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRY_LIST"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_INFO","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_INFO = ACTRL_ACCESS_INFO *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_ACCESS_ENTRY","package":"druntime","parentType":"","signature":"PACTRL_ACCESS_ENTRY = ACTRL_ACCESS_ENTRY *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_ACCESS_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_AUDIT","package":"druntime","parentType":"","signature":"PACTRL_AUDIT = ACTRL_AUDIT *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_AUDIT"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PACTRL_CONTROL_INFO","package":"druntime","parentType":"","signature":"PACTRL_CONTROL_INFO = ACTRL_CONTROL_INFO *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PACTRL_CONTROL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"EXPLICIT_ACCESS_","package":"druntime","parentType":"","signature":"EXPLICIT_ACCESS_ = EXPLICIT_ACCESS","url":"/ddoc/druntime/core/sys/windows/accctrl.html#EXPLICIT_ACCESS_"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PEXPLICIT_ACCESS","package":"druntime","parentType":"","signature":"PEXPLICIT_ACCESS = EXPLICIT_ACCESS *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PEXPLICIT_ACCESS"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"PTRUSTEE_ACCESS","package":"druntime","parentType":"","signature":"PTRUSTEE_ACCESS = TRUSTEE_ACCESS *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#PTRUSTEE_ACCESS"},{"doc":"","kind":"alias","module":"core.sys.windows.accctrl","name":"POBJECTS_AND_NAME_","package":"druntime","parentType":"","signature":"POBJECTS_AND_NAME_ = OBJECTS_AND_NAME_ *","url":"/ddoc/druntime/core/sys/windows/accctrl.html#POBJECTS_AND_NAME_"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_RESERVED","package":"druntime","parentType":"","signature":"uint ACTRL_RESERVED","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_FILE_READ","package":"druntime","parentType":"","signature":"uint ACTRL_FILE_READ","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_FILE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_DIR_LIST","package":"druntime","parentType":"","signature":"uint ACTRL_DIR_LIST","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_DIR_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_KERNEL_TERMINATE","package":"druntime","parentType":"","signature":"uint ACTRL_KERNEL_TERMINATE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_KERNEL_TERMINATE"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_PRINT_SADMIN","package":"druntime","parentType":"","signature":"uint ACTRL_PRINT_SADMIN","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_PRINT_SADMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_SVC_GET_INFO","package":"druntime","parentType":"","signature":"uint ACTRL_SVC_GET_INFO","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_SVC_GET_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_REG_QUERY","package":"druntime","parentType":"","signature":"uint ACTRL_REG_QUERY","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_REG_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACTRL_WIN_CLIPBRD","package":"druntime","parentType":"","signature":"uint ACTRL_WIN_CLIPBRD","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACTRL_WIN_CLIPBRD"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"ACCCTRL_DEFAULT_PROVIDER","package":"druntime","parentType":"","signature":"TCHAR[] ACCCTRL_DEFAULT_PROVIDER","url":"/ddoc/druntime/core/sys/windows/accctrl.html#ACCCTRL_DEFAULT_PROVIDER"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"TRUSTEE_ACCESS_ALLOWED","package":"druntime","parentType":"","signature":"uint TRUSTEE_ACCESS_ALLOWED","url":"/ddoc/druntime/core/sys/windows/accctrl.html#TRUSTEE_ACCESS_ALLOWED"},{"doc":"","kind":"variable","module":"core.sys.windows.accctrl","name":"NO_INHERITANCE","package":"druntime","parentType":"","signature":"uint NO_INHERITANCE","url":"/ddoc/druntime/core/sys/windows/accctrl.html#NO_INHERITANCE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.aclapi","name":"core.sys.windows.aclapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/aclapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildExplicitAccessWithNameA","package":"druntime","parentType":"","signature":"VOID BuildExplicitAccessWithNameA(PEXPLICIT_ACCESS_A,  LPSTR,  DWORD,\n       ACCESS_MODE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildExplicitAccessWithNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildExplicitAccessWithNameW","package":"druntime","parentType":"","signature":"VOID BuildExplicitAccessWithNameW(PEXPLICIT_ACCESS_W,  LPWSTR,  DWORD,\n       ACCESS_MODE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildExplicitAccessWithNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildSecurityDescriptorA","package":"druntime","parentType":"","signature":"DWORD BuildSecurityDescriptorA(PTRUSTEE_A,  PTRUSTEE_A ,  ULONG,\n       PEXPLICIT_ACCESS_A,  ULONG,  PEXPLICIT_ACCESS_A,  PSECURITY_DESCRIPTOR,\n       PULONG,  PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildSecurityDescriptorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildSecurityDescriptorW","package":"druntime","parentType":"","signature":"DWORD BuildSecurityDescriptorW(PTRUSTEE_W,  PTRUSTEE_W ,  ULONG,\n       PEXPLICIT_ACCESS_W,  ULONG,  PEXPLICIT_ACCESS_W,  PSECURITY_DESCRIPTOR,\n       PULONG,  PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildSecurityDescriptorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithNameA","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithNameA(PTRUSTEE_A,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithNameW","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithNameW(PTRUSTEE_W,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithObjectsAndNameA","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithObjectsAndNameA(PTRUSTEE_A,  POBJECTS_AND_NAME_A,\n       SE_OBJECT_TYPE,  LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithObjectsAndNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithObjectsAndNameW","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithObjectsAndNameW(PTRUSTEE_W,  POBJECTS_AND_NAME_W,\n       SE_OBJECT_TYPE,  LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithObjectsAndNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithObjectsAndSidA","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithObjectsAndSidA(PTRUSTEE_A,  POBJECTS_AND_SID,\n       GUID *,  GUID *,  PSID)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithObjectsAndSidA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithObjectsAndSidW","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithObjectsAndSidW(PTRUSTEE_W,  POBJECTS_AND_SID,\n       GUID *,  GUID *,  PSID)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithObjectsAndSidW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithSidA","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithSidA(PTRUSTEE_A,  PSID)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithSidA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildTrusteeWithSidW","package":"druntime","parentType":"","signature":"VOID BuildTrusteeWithSidW(PTRUSTEE_W,  PSID)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildTrusteeWithSidW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetAuditedPermissionsFromAclA","package":"druntime","parentType":"","signature":"DWORD GetAuditedPermissionsFromAclA(PACL,  PTRUSTEE_A,  PACCESS_MASK,\n       PACCESS_MASK)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetAuditedPermissionsFromAclA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetAuditedPermissionsFromAclW","package":"druntime","parentType":"","signature":"DWORD GetAuditedPermissionsFromAclW(PACL,  PTRUSTEE_W,  PACCESS_MASK,\n       PACCESS_MASK)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetAuditedPermissionsFromAclW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetEffectiveRightsFromAclA","package":"druntime","parentType":"","signature":"DWORD GetEffectiveRightsFromAclA(PACL,  PTRUSTEE_A,  PACCESS_MASK)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetEffectiveRightsFromAclA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetEffectiveRightsFromAclW","package":"druntime","parentType":"","signature":"DWORD GetEffectiveRightsFromAclW(PACL,  PTRUSTEE_W,  PACCESS_MASK)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetEffectiveRightsFromAclW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetExplicitEntriesFromAclA","package":"druntime","parentType":"","signature":"DWORD GetExplicitEntriesFromAclA(PACL,  PULONG,  PEXPLICIT_ACCESS_A *)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetExplicitEntriesFromAclA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetExplicitEntriesFromAclW","package":"druntime","parentType":"","signature":"DWORD GetExplicitEntriesFromAclW(PACL,  PULONG,  PEXPLICIT_ACCESS_W *)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetExplicitEntriesFromAclW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetNamedSecurityInfoA","package":"druntime","parentType":"","signature":"DWORD GetNamedSecurityInfoA(LPSTR,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,\n       PSID *,  PSID *,  PACL *,  PACL *,  PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetNamedSecurityInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetNamedSecurityInfoW","package":"druntime","parentType":"","signature":"DWORD GetNamedSecurityInfoW(LPWSTR,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,\n       PSID *,  PSID *,  PACL *,  PACL *,  PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetNamedSecurityInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetSecurityInfo","package":"druntime","parentType":"","signature":"DWORD GetSecurityInfo(HANDLE,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,\n       PSID *,  PSID *,  PACL *,  PACL *,  PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetSecurityInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeFormA","package":"druntime","parentType":"","signature":"TRUSTEE_FORM GetTrusteeFormA(PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeFormA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeFormW","package":"druntime","parentType":"","signature":"TRUSTEE_FORM GetTrusteeFormW(PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeFormW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeNameA","package":"druntime","parentType":"","signature":"LPSTR GetTrusteeNameA(PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeNameW","package":"druntime","parentType":"","signature":"LPWSTR GetTrusteeNameW(PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeTypeA","package":"druntime","parentType":"","signature":"TRUSTEE_TYPE GetTrusteeTypeA(PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetTrusteeTypeW","package":"druntime","parentType":"","signature":"TRUSTEE_TYPE GetTrusteeTypeW(PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetTrusteeTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"LookupSecurityDescriptorPartsA","package":"druntime","parentType":"","signature":"DWORD LookupSecurityDescriptorPartsA(PTRUSTEE_A *,  PTRUSTEE_A *,  PULONG,\n       PEXPLICIT_ACCESS_A *,  PULONG,  PEXPLICIT_ACCESS_A *,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/aclapi/LookupSecurityDescriptorPartsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"LookupSecurityDescriptorPartsW","package":"druntime","parentType":"","signature":"DWORD LookupSecurityDescriptorPartsW(PTRUSTEE_W *,  PTRUSTEE_W *,  PULONG,\n       PEXPLICIT_ACCESS_W *,  PULONG,  PEXPLICIT_ACCESS_W *,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/aclapi/LookupSecurityDescriptorPartsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"SetEntriesInAclA","package":"druntime","parentType":"","signature":"DWORD SetEntriesInAclA(ULONG,  PEXPLICIT_ACCESS_A,  PACL,  PACL *)","url":"/ddoc/druntime/core/sys/windows/aclapi/SetEntriesInAclA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"SetEntriesInAclW","package":"druntime","parentType":"","signature":"DWORD SetEntriesInAclW(ULONG,  PEXPLICIT_ACCESS_W,  PACL,  PACL *)","url":"/ddoc/druntime/core/sys/windows/aclapi/SetEntriesInAclW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"SetNamedSecurityInfoA","package":"druntime","parentType":"","signature":"DWORD SetNamedSecurityInfoA(LPSTR,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,\n       PSID,  PSID,  PACL,  PACL)","url":"/ddoc/druntime/core/sys/windows/aclapi/SetNamedSecurityInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"SetNamedSecurityInfoW","package":"druntime","parentType":"","signature":"DWORD SetNamedSecurityInfoW(LPWSTR,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,\n       PSID,  PSID,  PACL,  PACL)","url":"/ddoc/druntime/core/sys/windows/aclapi/SetNamedSecurityInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"SetSecurityInfo","package":"druntime","parentType":"","signature":"DWORD SetSecurityInfo(HANDLE,  SE_OBJECT_TYPE,  SECURITY_INFORMATION,  PSID,\n       PSID,  PACL,  PACL)","url":"/ddoc/druntime/core/sys/windows/aclapi/SetSecurityInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildImpersonateExplicitAccessWithNameA","package":"druntime","parentType":"","signature":"VOID BuildImpersonateExplicitAccessWithNameA(PEXPLICIT_ACCESS_A,  LPSTR,\n       PTRUSTEE_A,  DWORD,  ACCESS_MODE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildImpersonateExplicitAccessWithNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildImpersonateExplicitAccessWithNameW","package":"druntime","parentType":"","signature":"VOID BuildImpersonateExplicitAccessWithNameW(PEXPLICIT_ACCESS_W,  LPWSTR,\n       PTRUSTEE_W,  DWORD,  ACCESS_MODE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildImpersonateExplicitAccessWithNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildImpersonateTrusteeA","package":"druntime","parentType":"","signature":"VOID BuildImpersonateTrusteeA(PTRUSTEE_A,  PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildImpersonateTrusteeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"BuildImpersonateTrusteeW","package":"druntime","parentType":"","signature":"VOID BuildImpersonateTrusteeW(PTRUSTEE_W,  PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/BuildImpersonateTrusteeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetMultipleTrusteeA","package":"druntime","parentType":"","signature":"PTRUSTEE_A GetMultipleTrusteeA(PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetMultipleTrusteeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetMultipleTrusteeW","package":"druntime","parentType":"","signature":"PTRUSTEE_W GetMultipleTrusteeW(PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetMultipleTrusteeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetMultipleTrusteeOperationA","package":"druntime","parentType":"","signature":"MULTIPLE_TRUSTEE_OPERATION GetMultipleTrusteeOperationA(PTRUSTEE_A)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetMultipleTrusteeOperationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclapi","name":"GetMultipleTrusteeOperationW","package":"druntime","parentType":"","signature":"MULTIPLE_TRUSTEE_OPERATION GetMultipleTrusteeOperationW(PTRUSTEE_W)","url":"/ddoc/druntime/core/sys/windows/aclapi/GetMultipleTrusteeOperationW.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.aclui","name":"core.sys.windows.aclui","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/aclui.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclui","name":"CreateSecurityPage","package":"druntime","parentType":"","signature":"HPROPSHEETPAGE CreateSecurityPage(LPSECURITYINFO psi)","url":"/ddoc/druntime/core/sys/windows/aclui/CreateSecurityPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.aclui","name":"EditSecurity","package":"druntime","parentType":"","signature":"BOOL EditSecurity(HWND hwndOwner,  LPSECURITYINFO psi)","url":"/ddoc/druntime/core/sys/windows/aclui/EditSecurity.html"},{"doc":"","kind":"struct","module":"core.sys.windows.aclui","name":"SI_OBJECT_INFO","package":"druntime","parentType":"","signature":"SI_OBJECT_INFO","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_OBJECT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.aclui","name":"PSI_OBJECT_INFO","package":"druntime","parentType":"","signature":"PSI_OBJECT_INFO = SI_OBJECT_INFO *","url":"/ddoc/druntime/core/sys/windows/aclui.html#PSI_OBJECT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.aclui","name":"SI_ACCESS","package":"druntime","parentType":"","signature":"SI_ACCESS","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_ACCESS"},{"doc":"","kind":"alias","module":"core.sys.windows.aclui","name":"PSI_ACCESS","package":"druntime","parentType":"","signature":"PSI_ACCESS = SI_ACCESS *","url":"/ddoc/druntime/core/sys/windows/aclui.html#PSI_ACCESS"},{"doc":"","kind":"struct","module":"core.sys.windows.aclui","name":"SI_INHERIT_TYPE","package":"druntime","parentType":"","signature":"SI_INHERIT_TYPE","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_INHERIT_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.aclui","name":"PSI_INHERIT_TYPE","package":"druntime","parentType":"","signature":"PSI_INHERIT_TYPE = SI_INHERIT_TYPE *","url":"/ddoc/druntime/core/sys/windows/aclui.html#PSI_INHERIT_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.aclui","name":"SI_PAGE_TYPE","package":"druntime","parentType":"","signature":"SI_PAGE_TYPE","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_PAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.aclui","name":"SI_PAGE_PERM","package":"druntime","parentType":"","signature":"SI_PAGE_PERM = ","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_PAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.aclui","name":"SI_PAGE_ADVPERM","package":"druntime","parentType":"","signature":"SI_PAGE_ADVPERM = ","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_PAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.aclui","name":"SI_PAGE_AUDIT","package":"druntime","parentType":"","signature":"SI_PAGE_AUDIT = ","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_PAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.aclui","name":"SI_PAGE_OWNER","package":"druntime","parentType":"","signature":"SI_PAGE_OWNER = ","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_PAGE_TYPE"},{"doc":"","kind":"interface","module":"core.sys.windows.aclui","name":"ISecurityInformation","package":"druntime","parentType":"","signature":"ISecurityInformation : IUnknown","url":"/ddoc/druntime/core/sys/windows/aclui.html#ISecurityInformation"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"GetObjectInformation","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT GetObjectInformation(PSI_OBJECT_INFO)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.GetObjectInformation.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"GetSecurity","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT GetSecurity(SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.GetSecurity.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"SetSecurity","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT SetSecurity(SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.SetSecurity.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"GetAccessRights","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT GetAccessRights(const(GUID) *,  DWORD,  PSI_ACCESS *,  ULONG *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.GetAccessRights.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"MapGeneric","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT MapGeneric(const(GUID) *,  UCHAR *,  ACCESS_MASK *)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.MapGeneric.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"GetInheritTypes","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT GetInheritTypes(PSI_INHERIT_TYPE *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.GetInheritTypes.html"},{"doc":"","kind":"method","module":"core.sys.windows.aclui","name":"PropertySheetPageCallback","package":"druntime","parentType":"ISecurityInformation","signature":"HRESULT PropertySheetPageCallback(HWND,  UINT,  SI_PAGE_TYPE)","url":"/ddoc/druntime/core/sys/windows/aclui/ISecurityInformation.PropertySheetPageCallback.html"},{"doc":"","kind":"alias","module":"core.sys.windows.aclui","name":"LPSECURITYINFO","package":"druntime","parentType":"","signature":"LPSECURITYINFO = ISecurityInformation","url":"/ddoc/druntime/core/sys/windows/aclui.html#LPSECURITYINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.aclui","name":"SI_EDIT_PERMS","package":"druntime","parentType":"","signature":"DWORD SI_EDIT_PERMS","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_EDIT_PERMS"},{"doc":"","kind":"variable","module":"core.sys.windows.aclui","name":"SI_ACCESS_SPECIFIC","package":"druntime","parentType":"","signature":"DWORD SI_ACCESS_SPECIFIC","url":"/ddoc/druntime/core/sys/windows/aclui.html#SI_ACCESS_SPECIFIC"},{"doc":"","kind":"variable","module":"core.sys.windows.aclui","name":"PSPCB_SI_INITDIALOG","package":"druntime","parentType":"","signature":"uint PSPCB_SI_INITDIALOG","url":"/ddoc/druntime/core/sys/windows/aclui.html#PSPCB_SI_INITDIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.aclui","name":"IID_ISecurityInformation","package":"druntime","parentType":"","signature":"IID IID_ISecurityInformation","url":"/ddoc/druntime/core/sys/windows/aclui.html#IID_ISecurityInformation"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.basetsd","name":"core.sys.windows.basetsd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/basetsd.html"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"HANDLE","package":"druntime","parentType":"","signature":"HANDLE = void *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PHANDLE","package":"druntime","parentType":"","signature":"PHANDLE = HANDLE *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PHANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"UintToPtr","package":"druntime","parentType":"","signature":"UintToPtr = UIntToPtr","url":"/ddoc/druntime/core/sys/windows/basetsd.html#UintToPtr"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"INT8","package":"druntime","parentType":"","signature":"INT8 = byte","url":"/ddoc/druntime/core/sys/windows/basetsd.html#INT8"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PINT8","package":"druntime","parentType":"","signature":"PINT8 = byte *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PINT8"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"UINT8","package":"druntime","parentType":"","signature":"UINT8 = ubyte","url":"/ddoc/druntime/core/sys/windows/basetsd.html#UINT8"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PUINT8","package":"druntime","parentType":"","signature":"PUINT8 = ubyte *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PUINT8"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"INT16","package":"druntime","parentType":"","signature":"INT16 = short","url":"/ddoc/druntime/core/sys/windows/basetsd.html#INT16"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PINT16","package":"druntime","parentType":"","signature":"PINT16 = short *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PINT16"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"UINT16","package":"druntime","parentType":"","signature":"UINT16 = ushort","url":"/ddoc/druntime/core/sys/windows/basetsd.html#UINT16"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PUINT16","package":"druntime","parentType":"","signature":"PUINT16 = ushort *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PUINT16"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"LONG32","package":"druntime","parentType":"","signature":"LONG32 = int","url":"/ddoc/druntime/core/sys/windows/basetsd.html#LONG32"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PLONG32","package":"druntime","parentType":"","signature":"PLONG32 = int *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PLONG32"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"ULONG32","package":"druntime","parentType":"","signature":"ULONG32 = uint","url":"/ddoc/druntime/core/sys/windows/basetsd.html#ULONG32"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PULONG32","package":"druntime","parentType":"","signature":"PULONG32 = uint *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PULONG32"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"SIZE_T","package":"druntime","parentType":"","signature":"SIZE_T = ULONG_PTR","url":"/ddoc/druntime/core/sys/windows/basetsd.html#SIZE_T"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PSIZE_T","package":"druntime","parentType":"","signature":"PSIZE_T = ULONG_PTR *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PSIZE_T"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"SSIZE_T","package":"druntime","parentType":"","signature":"SSIZE_T = LONG_PTR","url":"/ddoc/druntime/core/sys/windows/basetsd.html#SSIZE_T"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PSSIZE_T","package":"druntime","parentType":"","signature":"PSSIZE_T = LONG_PTR *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PSSIZE_T"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"LONG64","package":"druntime","parentType":"","signature":"LONG64 = long","url":"/ddoc/druntime/core/sys/windows/basetsd.html#LONG64"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PLONG64","package":"druntime","parentType":"","signature":"PLONG64 = long *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PLONG64"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"ULONG64","package":"druntime","parentType":"","signature":"ULONG64 = ulong","url":"/ddoc/druntime/core/sys/windows/basetsd.html#ULONG64"},{"doc":"","kind":"alias","module":"core.sys.windows.basetsd","name":"PULONG64","package":"druntime","parentType":"","signature":"PULONG64 = ulong *","url":"/ddoc/druntime/core/sys/windows/basetsd.html#PULONG64"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.basetyps","name":"core.sys.windows.basetyps","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/basetyps.html"},{"doc":"","kind":"struct","module":"core.sys.windows.basetyps","name":"GUID","package":"druntime","parentType":"","signature":"GUID","url":"/ddoc/druntime/core/sys/windows/basetyps.html#GUID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"UUID","package":"druntime","parentType":"","signature":"UUID = GUID","url":"/ddoc/druntime/core/sys/windows/basetyps.html#UUID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"IID","package":"druntime","parentType":"","signature":"IID = const(GUID)","url":"/ddoc/druntime/core/sys/windows/basetyps.html#IID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"CLSID","package":"druntime","parentType":"","signature":"CLSID = const(GUID)","url":"/ddoc/druntime/core/sys/windows/basetyps.html#CLSID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"LPGUID","package":"druntime","parentType":"","signature":"LPGUID = GUID *","url":"/ddoc/druntime/core/sys/windows/basetyps.html#LPGUID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"LPCGUID","package":"druntime","parentType":"","signature":"LPCGUID = const(GUID) *","url":"/ddoc/druntime/core/sys/windows/basetyps.html#LPCGUID"},{"doc":"","kind":"alias","module":"core.sys.windows.basetyps","name":"error_status_t","package":"druntime","parentType":"","signature":"error_status_t = uint","url":"/ddoc/druntime/core/sys/windows/basetyps.html#error_status_t"},{"doc":"Cryptographic primitives","kind":"module","module":"core.sys.windows.bcrypt","name":"core.sys.windows.bcrypt","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/bcrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCRYPT_SUCCESS","package":"druntime","parentType":"","signature":"bool BCRYPT_SUCCESS(NTSTATUS Status)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCRYPT_SUCCESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCRYPT_INIT_AUTH_MODE_INFO","package":"druntime","parentType":"","signature":"void BCRYPT_INIT_AUTH_MODE_INFO(ref  BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO _AUTH_INFO_STRUCT_)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCRYPT_INIT_AUTH_MODE_INFO.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCRYPT_MAKE_INTERFACE_VERSION","package":"druntime","parentType":"","signature":"BCRYPT_INTERFACE_VERSION BCRYPT_MAKE_INTERFACE_VERSION(int  major,  int  minor)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCRYPT_MAKE_INTERFACE_VERSION.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCRYPT_IS_INTERFACE_VERSION_COMPATIBLE","package":"druntime","parentType":"","signature":"bool BCRYPT_IS_INTERFACE_VERSION_COMPATIBLE(BCRYPT_INTERFACE_VERSION loader,  BCRYPT_INTERFACE_VERSION provider)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCRYPT_IS_INTERFACE_VERSION_COMPATIBLE.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptOpenAlgorithmProvider","package":"druntime","parentType":"","signature":"NTSTATUS BCryptOpenAlgorithmProvider(scope  BCRYPT_ALG_HANDLE *  phAlgorithm,  scope  LPCWSTR pszAlgId,  scope  LPCWSTR pszImplementation,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptOpenAlgorithmProvider.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumAlgorithms","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumAlgorithms(ULONG dwAlgOperations,  scope  ULONG *  pAlgCount,  scope  BCRYPT_ALGORITHM_IDENTIFIER * *  ppAlgList,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumAlgorithms.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumProviders","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumProviders(scope  LPCWSTR pszAlgId,  scope  ULONG *  pImplCount,  scope  BCRYPT_PROVIDER_NAME * *  ppImplList,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumProviders.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptGetProperty","package":"druntime","parentType":"","signature":"NTSTATUS BCryptGetProperty(BCRYPT_HANDLE hObject,  scope  LPCWSTR pszProperty,  scope  PUCHAR pbOutput,  ULONG cbOutput,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptGetProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptSetProperty","package":"druntime","parentType":"","signature":"NTSTATUS BCryptSetProperty(BCRYPT_HANDLE hObject,  scope  LPCWSTR pszProperty,  scope  PUCHAR pbInput,  ULONG cbInput,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptSetProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptCloseAlgorithmProvider","package":"druntime","parentType":"","signature":"NTSTATUS BCryptCloseAlgorithmProvider(BCRYPT_ALG_HANDLE hAlgorithm,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptCloseAlgorithmProvider.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptFreeBuffer","package":"druntime","parentType":"","signature":"VOID BCryptFreeBuffer(PVOID pvBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptFreeBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptGenerateSymmetricKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptGenerateSymmetricKey(BCRYPT_ALG_HANDLE hAlgorithm,  scope  BCRYPT_KEY_HANDLE *  phKey,  scope  PUCHAR pbKeyObject,  ULONG cbKeyObject,  scope  PUCHAR pbSecret,  ULONG cbSecret,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptGenerateSymmetricKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptGenerateKeyPair","package":"druntime","parentType":"","signature":"NTSTATUS BCryptGenerateKeyPair(BCRYPT_ALG_HANDLE hAlgorithm,  scope  BCRYPT_KEY_HANDLE *  phKey,  ULONG dwLength,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptGenerateKeyPair.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEncrypt","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEncrypt(BCRYPT_KEY_HANDLE hKey,  scope  PUCHAR pbInput,  ULONG cbInput,  scope  VOID *  pPaddingInfo,  scope  PUCHAR pbIV,  ULONG cbIV,  scope  PUCHAR pbOutput,  ULONG cbOutput,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEncrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDecrypt","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDecrypt(BCRYPT_KEY_HANDLE hKey,  scope  PUCHAR pbInput,  ULONG cbInput,  scope  VOID *  pPaddingInfo,  scope  PUCHAR pbIV,  ULONG cbIV,  scope  PUCHAR pbOutput,  ULONG cbOutput,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDecrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptExportKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptExportKey(BCRYPT_KEY_HANDLE hKey,  BCRYPT_KEY_HANDLE hExportKey,  scope  LPCWSTR pszBlobType,  scope  PUCHAR pbOutput,  ULONG cbOutput,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptExportKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptImportKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptImportKey(BCRYPT_ALG_HANDLE hAlgorithm,  BCRYPT_KEY_HANDLE hImportKey,  scope  LPCWSTR pszBlobType,  scope  BCRYPT_KEY_HANDLE *  phKey,  scope  PUCHAR pbKeyObject,  ULONG cbKeyObject,  scope  PUCHAR pbInput,  ULONG cbInput,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptImportKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptImportKeyPair","package":"druntime","parentType":"","signature":"NTSTATUS BCryptImportKeyPair(BCRYPT_ALG_HANDLE hAlgorithm,  BCRYPT_KEY_HANDLE hImportKey,  scope  LPCWSTR pszBlobType,  scope  BCRYPT_KEY_HANDLE *  phKey,  scope  PUCHAR pbInput,  ULONG cbInput,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptImportKeyPair.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDuplicateKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDuplicateKey(BCRYPT_KEY_HANDLE hKey,  scope  BCRYPT_KEY_HANDLE *  phNewKey,  scope  PUCHAR pbKeyObject,  ULONG cbKeyObject,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDuplicateKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptFinalizeKeyPair","package":"druntime","parentType":"","signature":"NTSTATUS BCryptFinalizeKeyPair(BCRYPT_KEY_HANDLE hKey,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptFinalizeKeyPair.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDestroyKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDestroyKey(BCRYPT_KEY_HANDLE hKey)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDestroyKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDestroySecret","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDestroySecret(BCRYPT_SECRET_HANDLE hSecret)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDestroySecret.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptSignHash","package":"druntime","parentType":"","signature":"NTSTATUS BCryptSignHash(BCRYPT_KEY_HANDLE hKey,  scope  VOID *  pPaddingInfo,  scope  PUCHAR pbInput,  ULONG cbInput,  scope  PUCHAR pbOutput,  ULONG cbOutput,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptSignHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptVerifySignature","package":"druntime","parentType":"","signature":"NTSTATUS BCryptVerifySignature(BCRYPT_KEY_HANDLE hKey,  scope  VOID *  pPaddingInfo,  scope  PUCHAR pbHash,  ULONG cbHash,  scope  PUCHAR pbSignature,  ULONG cbSignature,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptVerifySignature.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptSecretAgreement","package":"druntime","parentType":"","signature":"NTSTATUS BCryptSecretAgreement(BCRYPT_KEY_HANDLE hPrivKey,  BCRYPT_KEY_HANDLE hPubKey,  scope  BCRYPT_SECRET_HANDLE *  phAgreedSecret,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptSecretAgreement.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDeriveKey","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDeriveKey(BCRYPT_SECRET_HANDLE hSharedSecret,  LPCWSTR pwszKDF,  scope  BCryptBufferDesc *  pParameterList,  scope  PUCHAR pbDerivedKey,  ULONG cbDerivedKey,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDeriveKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptKeyDerivation","package":"druntime","parentType":"","signature":"NTSTATUS BCryptKeyDerivation(BCRYPT_KEY_HANDLE hKey,  scope  BCryptBufferDesc *  pParameterList,  scope  PUCHAR pbDerivedKey,  ULONG cbDerivedKey,  scope  ULONG *  pcbResult,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptKeyDerivation.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptCreateHash","package":"druntime","parentType":"","signature":"NTSTATUS BCryptCreateHash(BCRYPT_ALG_HANDLE hAlgorithm,  scope  BCRYPT_HASH_HANDLE *  phHash,  scope  PUCHAR pbHashObject,  ULONG cbHashObject,  scope  PUCHAR pbSecret,  ULONG cbSecret,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptCreateHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptHashData","package":"druntime","parentType":"","signature":"NTSTATUS BCryptHashData(BCRYPT_HASH_HANDLE hHash,  scope  PUCHAR pbInput,  ULONG cbInput,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptHashData.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptFinishHash","package":"druntime","parentType":"","signature":"NTSTATUS BCryptFinishHash(BCRYPT_HASH_HANDLE hHash,  scope  PUCHAR pbOutput,  ULONG cbOutput,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptFinishHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDuplicateHash","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDuplicateHash(BCRYPT_HASH_HANDLE hHash,  scope  BCRYPT_HASH_HANDLE *  phNewHash,  scope  PUCHAR pbHashObject,  ULONG cbHashObject,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDuplicateHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDestroyHash","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDestroyHash(BCRYPT_HASH_HANDLE hHash)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDestroyHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptGenRandom","package":"druntime","parentType":"","signature":"NTSTATUS BCryptGenRandom(BCRYPT_ALG_HANDLE hAlgorithm,  scope  PUCHAR pbBuffer,  ULONG cbBuffer,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptGenRandom.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDeriveKeyCapi","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDeriveKeyCapi(BCRYPT_HASH_HANDLE hHash,  BCRYPT_ALG_HANDLE hTargetAlg,  scope  PUCHAR pbDerivedKey,  ULONG cbDerivedKey,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDeriveKeyCapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDeriveKeyPBKDF2","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDeriveKeyPBKDF2(BCRYPT_ALG_HANDLE hPrf,  scope  PUCHAR pbPassword,  ULONG cbPassword,  scope  PUCHAR pbSalt,  ULONG cbSalt,  ULONGLONG cIterations,  scope  PUCHAR pbDerivedKey,  ULONG cbDerivedKey,  ULONG dwFlags)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDeriveKeyPBKDF2.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptResolveProviders","package":"druntime","parentType":"","signature":"NTSTATUS BCryptResolveProviders(scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  scope  LPCWSTR pszProvider,  ULONG dwMode,  ULONG dwFlags,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_PROVIDER_REFS *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptResolveProviders.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptGetFipsAlgorithmMode","package":"druntime","parentType":"","signature":"NTSTATUS BCryptGetFipsAlgorithmMode(scope  BOOLEAN *  pfEnabled)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptGetFipsAlgorithmMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptQueryProviderRegistration","package":"druntime","parentType":"","signature":"NTSTATUS BCryptQueryProviderRegistration(scope  LPCWSTR pszProvider,  ULONG dwMode,  ULONG dwInterface,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_PROVIDER_REG *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptQueryProviderRegistration.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumRegisteredProviders","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumRegisteredProviders(scope  ULONG *  pcbBuffer,  scope  PCRYPT_PROVIDERS *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumRegisteredProviders.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptCreateContext","package":"druntime","parentType":"","signature":"NTSTATUS BCryptCreateContext(ULONG dwTable,  scope  LPCWSTR pszContext,  PCRYPT_CONTEXT_CONFIG pConfig)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptCreateContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptDeleteContext","package":"druntime","parentType":"","signature":"NTSTATUS BCryptDeleteContext(ULONG dwTable,  scope  LPCWSTR pszContext)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptDeleteContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumContexts","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumContexts(ULONG dwTable,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_CONTEXTS *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumContexts.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptConfigureContext","package":"druntime","parentType":"","signature":"NTSTATUS BCryptConfigureContext(ULONG dwTable,  scope  LPCWSTR pszContext,  PCRYPT_CONTEXT_CONFIG pConfig)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptConfigureContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptQueryContextConfiguration","package":"druntime","parentType":"","signature":"NTSTATUS BCryptQueryContextConfiguration(ULONG dwTable,  scope  LPCWSTR pszContext,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_CONTEXT_CONFIG *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptQueryContextConfiguration.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptAddContextFunction","package":"druntime","parentType":"","signature":"NTSTATUS BCryptAddContextFunction(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  ULONG dwPosition)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptAddContextFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptRemoveContextFunction","package":"druntime","parentType":"","signature":"NTSTATUS BCryptRemoveContextFunction(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptRemoveContextFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumContextFunctions","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumContextFunctions(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_CONTEXT_FUNCTIONS *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumContextFunctions.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptConfigureContextFunction","package":"druntime","parentType":"","signature":"NTSTATUS BCryptConfigureContextFunction(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  PCRYPT_CONTEXT_FUNCTION_CONFIG pConfig)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptConfigureContextFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptQueryContextFunctionConfiguration","package":"druntime","parentType":"","signature":"NTSTATUS BCryptQueryContextFunctionConfiguration(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_CONTEXT_FUNCTION_CONFIG *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptQueryContextFunctionConfiguration.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptEnumContextFunctionProviders","package":"druntime","parentType":"","signature":"NTSTATUS BCryptEnumContextFunctionProviders(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  scope  ULONG *  pcbBuffer,  scope  PCRYPT_CONTEXT_FUNCTION_PROVIDERS *  ppBuffer)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptEnumContextFunctionProviders.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptSetContextFunctionProperty","package":"druntime","parentType":"","signature":"NTSTATUS BCryptSetContextFunctionProperty(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  LPCWSTR pszProperty,  ULONG cbValue,  scope  PUCHAR pbValue)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptSetContextFunctionProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptQueryContextFunctionProperty","package":"druntime","parentType":"","signature":"NTSTATUS BCryptQueryContextFunctionProperty(ULONG dwTable,  scope  LPCWSTR pszContext,  ULONG dwInterface,  scope  LPCWSTR pszFunction,  LPCWSTR pszProperty,  ULONG *  pcbValue,  scope  PUCHAR *  ppbValue)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptQueryContextFunctionProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptRegisterConfigChangeNotify","package":"druntime","parentType":"","signature":"NTSTATUS BCryptRegisterConfigChangeNotify(scope  HANDLE *  phEvent)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptRegisterConfigChangeNotify.html"},{"doc":"","kind":"function","module":"core.sys.windows.bcrypt","name":"BCryptUnregisterConfigChangeNotify","package":"druntime","parentType":"","signature":"NTSTATUS BCryptUnregisterConfigChangeNotify(HANDLE hEvent)","url":"/ddoc/druntime/core/sys/windows/bcrypt/BCryptUnregisterConfigChangeNotify.html"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_KEY_LENGTHS_STRUCT","package":"druntime","parentType":"","signature":"BCRYPT_KEY_LENGTHS_STRUCT","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_KEY_LENGTHS_STRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_AUTH_TAG_LENGTHS_STRUCT","package":"druntime","parentType":"","signature":"BCRYPT_AUTH_TAG_LENGTHS_STRUCT = BCRYPT_KEY_LENGTHS_STRUCT","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_AUTH_TAG_LENGTHS_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_OID","package":"druntime","parentType":"","signature":"BCRYPT_OID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_OID"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_OID_LIST","package":"druntime","parentType":"","signature":"BCRYPT_OID_LIST","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_OID_LIST"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_PKCS1_PADDING_INFO","package":"druntime","parentType":"","signature":"BCRYPT_PKCS1_PADDING_INFO","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_PKCS1_PADDING_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_PSS_PADDING_INFO","package":"druntime","parentType":"","signature":"BCRYPT_PSS_PADDING_INFO","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_PSS_PADDING_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_OAEP_PADDING_INFO","package":"druntime","parentType":"","signature":"BCRYPT_OAEP_PADDING_INFO","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_OAEP_PADDING_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","package":"druntime","parentType":"","signature":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","package":"druntime","parentType":"","signature":"PBCRYPT_AUTHENTICATED_CIPHER_MODE_INFO = BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_AUTHENTICATED_CIPHER_MODE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCryptBuffer","package":"druntime","parentType":"","signature":"BCryptBuffer","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCryptBuffer"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCryptBuffer","package":"druntime","parentType":"","signature":"PBCryptBuffer = BCryptBuffer *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCryptBuffer"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCryptBufferDesc","package":"druntime","parentType":"","signature":"BCryptBufferDesc","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCryptBufferDesc"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCryptBufferDesc","package":"druntime","parentType":"","signature":"PBCryptBufferDesc = BCryptBufferDesc *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCryptBufferDesc"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_HANDLE","package":"druntime","parentType":"","signature":"BCRYPT_HANDLE = PVOID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_ALG_HANDLE","package":"druntime","parentType":"","signature":"BCRYPT_ALG_HANDLE = PVOID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_ALG_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_KEY_HANDLE","package":"druntime","parentType":"","signature":"BCRYPT_KEY_HANDLE = PVOID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_KEY_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_HASH_HANDLE","package":"druntime","parentType":"","signature":"BCRYPT_HASH_HANDLE = PVOID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_HASH_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_SECRET_HANDLE","package":"druntime","parentType":"","signature":"BCRYPT_SECRET_HANDLE = PVOID","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_SECRET_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_KEY_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_KEY_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_KEY_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_RSAKEY_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_RSAKEY_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_RSAKEY_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_ECCKEY_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_ECCKEY_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_ECCKEY_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_ECCKEY_BLOB","package":"druntime","parentType":"","signature":"PBCRYPT_ECCKEY_BLOB = BCRYPT_ECCKEY_BLOB *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_ECCKEY_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DH_KEY_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_DH_KEY_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DH_KEY_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_DH_KEY_BLOB","package":"druntime","parentType":"","signature":"PBCRYPT_DH_KEY_BLOB = BCRYPT_DH_KEY_BLOB *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_DH_KEY_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DH_PARAMETER_HEADER","package":"druntime","parentType":"","signature":"BCRYPT_DH_PARAMETER_HEADER","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DH_PARAMETER_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DSA_KEY_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_DSA_KEY_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DSA_KEY_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_DSA_KEY_BLOB","package":"druntime","parentType":"","signature":"PBCRYPT_DSA_KEY_BLOB = BCRYPT_DSA_KEY_BLOB *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_DSA_KEY_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"HASHALGORITHM_ENUM","package":"druntime","parentType":"","signature":"HASHALGORITHM_ENUM = int","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#HASHALGORITHM_ENUM"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"DSAFIPSVERSION_ENUM","package":"druntime","parentType":"","signature":"DSAFIPSVERSION_ENUM = int","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#DSAFIPSVERSION_ENUM"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DSA_KEY_BLOB_V2","package":"druntime","parentType":"","signature":"BCRYPT_DSA_KEY_BLOB_V2","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DSA_KEY_BLOB_V2"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_DSA_KEY_BLOB_V2","package":"druntime","parentType":"","signature":"PBCRYPT_DSA_KEY_BLOB_V2 = BCRYPT_DSA_KEY_BLOB_V2 *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_DSA_KEY_BLOB_V2"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_KEY_DATA_BLOB_HEADER","package":"druntime","parentType":"","signature":"BCRYPT_KEY_DATA_BLOB_HEADER","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_KEY_DATA_BLOB_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_KEY_DATA_BLOB_HEADER","package":"druntime","parentType":"","signature":"PBCRYPT_KEY_DATA_BLOB_HEADER = BCRYPT_KEY_DATA_BLOB_HEADER *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_KEY_DATA_BLOB_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DSA_PARAMETER_HEADER","package":"druntime","parentType":"","signature":"BCRYPT_DSA_PARAMETER_HEADER","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DSA_PARAMETER_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_DSA_PARAMETER_HEADER_V2","package":"druntime","parentType":"","signature":"BCRYPT_DSA_PARAMETER_HEADER_V2","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_DSA_PARAMETER_HEADER_V2"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_ECC_CURVE_NAMES","package":"druntime","parentType":"","signature":"BCRYPT_ECC_CURVE_NAMES","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_ECC_CURVE_NAMES"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_HASH_OPERATION_TYPE","package":"druntime","parentType":"","signature":"BCRYPT_HASH_OPERATION_TYPE = int","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_HASH_OPERATION_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_MULTI_HASH_OPERATION","package":"druntime","parentType":"","signature":"BCRYPT_MULTI_HASH_OPERATION","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_MULTI_HASH_OPERATION"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"BCRYPT_MULTI_OPERATION_TYPE","package":"druntime","parentType":"","signature":"BCRYPT_MULTI_OPERATION_TYPE = int","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_MULTI_OPERATION_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","package":"druntime","parentType":"","signature":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_MULTI_OBJECT_LENGTH_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_ALGORITHM_IDENTIFIER","package":"druntime","parentType":"","signature":"BCRYPT_ALGORITHM_IDENTIFIER","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_ALGORITHM_IDENTIFIER"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_PROVIDER_NAME","package":"druntime","parentType":"","signature":"BCRYPT_PROVIDER_NAME","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_PROVIDER_NAME"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"BCRYPT_INTERFACE_VERSION","package":"druntime","parentType":"","signature":"BCRYPT_INTERFACE_VERSION","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_INTERFACE_VERSION"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PBCRYPT_INTERFACE_VERSION","package":"druntime","parentType":"","signature":"PBCRYPT_INTERFACE_VERSION = BCRYPT_INTERFACE_VERSION *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PBCRYPT_INTERFACE_VERSION"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_INTERFACE_REG","package":"druntime","parentType":"","signature":"CRYPT_INTERFACE_REG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_INTERFACE_REG"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_INTERFACE_REG","package":"druntime","parentType":"","signature":"PCRYPT_INTERFACE_REG = CRYPT_INTERFACE_REG *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_INTERFACE_REG"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_IMAGE_REG","package":"druntime","parentType":"","signature":"CRYPT_IMAGE_REG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_IMAGE_REG"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_IMAGE_REG","package":"druntime","parentType":"","signature":"PCRYPT_IMAGE_REG = CRYPT_IMAGE_REG *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_IMAGE_REG"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_PROVIDER_REG","package":"druntime","parentType":"","signature":"CRYPT_PROVIDER_REG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_PROVIDER_REG"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_PROVIDER_REG","package":"druntime","parentType":"","signature":"PCRYPT_PROVIDER_REG = CRYPT_PROVIDER_REG *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_PROVIDER_REG"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_PROVIDERS","package":"druntime","parentType":"","signature":"CRYPT_PROVIDERS","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_PROVIDERS"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_PROVIDERS","package":"druntime","parentType":"","signature":"PCRYPT_PROVIDERS = CRYPT_PROVIDERS *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_PROVIDERS"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_CONTEXT_CONFIG","package":"druntime","parentType":"","signature":"CRYPT_CONTEXT_CONFIG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_CONTEXT_CONFIG"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_CONTEXT_CONFIG","package":"druntime","parentType":"","signature":"PCRYPT_CONTEXT_CONFIG = CRYPT_CONTEXT_CONFIG *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_CONTEXT_CONFIG"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_CONTEXT_FUNCTION_CONFIG","package":"druntime","parentType":"","signature":"CRYPT_CONTEXT_FUNCTION_CONFIG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_CONTEXT_FUNCTION_CONFIG"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_CONTEXT_FUNCTION_CONFIG","package":"druntime","parentType":"","signature":"PCRYPT_CONTEXT_FUNCTION_CONFIG = CRYPT_CONTEXT_FUNCTION_CONFIG *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_CONTEXT_FUNCTION_CONFIG"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_CONTEXTS","package":"druntime","parentType":"","signature":"CRYPT_CONTEXTS","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_CONTEXTS"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_CONTEXTS","package":"druntime","parentType":"","signature":"PCRYPT_CONTEXTS = CRYPT_CONTEXTS *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_CONTEXTS"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_CONTEXT_FUNCTIONS","package":"druntime","parentType":"","signature":"CRYPT_CONTEXT_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_CONTEXT_FUNCTIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_CONTEXT_FUNCTIONS","package":"druntime","parentType":"","signature":"PCRYPT_CONTEXT_FUNCTIONS = CRYPT_CONTEXT_FUNCTIONS *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_CONTEXT_FUNCTIONS"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","package":"druntime","parentType":"","signature":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_CONTEXT_FUNCTION_PROVIDERS"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_CONTEXT_FUNCTION_PROVIDERS","package":"druntime","parentType":"","signature":"PCRYPT_CONTEXT_FUNCTION_PROVIDERS = CRYPT_CONTEXT_FUNCTION_PROVIDERS *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_CONTEXT_FUNCTION_PROVIDERS"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_PROPERTY_REF","package":"druntime","parentType":"","signature":"CRYPT_PROPERTY_REF","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_PROPERTY_REF"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_PROPERTY_REF","package":"druntime","parentType":"","signature":"PCRYPT_PROPERTY_REF = CRYPT_PROPERTY_REF *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_PROPERTY_REF"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_IMAGE_REF","package":"druntime","parentType":"","signature":"CRYPT_IMAGE_REF","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_IMAGE_REF"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_IMAGE_REF","package":"druntime","parentType":"","signature":"PCRYPT_IMAGE_REF = CRYPT_IMAGE_REF *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_IMAGE_REF"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_PROVIDER_REF","package":"druntime","parentType":"","signature":"CRYPT_PROVIDER_REF","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_PROVIDER_REF"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_PROVIDER_REF","package":"druntime","parentType":"","signature":"PCRYPT_PROVIDER_REF = CRYPT_PROVIDER_REF *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_PROVIDER_REF"},{"doc":"","kind":"struct","module":"core.sys.windows.bcrypt","name":"CRYPT_PROVIDER_REFS","package":"druntime","parentType":"","signature":"CRYPT_PROVIDER_REFS","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_PROVIDER_REFS"},{"doc":"","kind":"alias","module":"core.sys.windows.bcrypt","name":"PCRYPT_PROVIDER_REFS","package":"druntime","parentType":"","signature":"PCRYPT_PROVIDER_REFS = CRYPT_PROVIDER_REFS *","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#PCRYPT_PROVIDER_REFS"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_OBJECT_ALIGNMENT","package":"druntime","parentType":"","signature":"BCRYPT_OBJECT_ALIGNMENT","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_OBJECT_ALIGNMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","package":"druntime","parentType":"","signature":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#KDF_USE_SECRET_AS_HMAC_KEY_FLAG"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","package":"druntime","parentType":"","signature":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_PROV_DISPATCH","package":"druntime","parentType":"","signature":"BCRYPT_PROV_DISPATCH","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_PROV_DISPATCH"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_BLOCK_PADDING","package":"druntime","parentType":"","signature":"BCRYPT_BLOCK_PADDING","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_BLOCK_PADDING"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPTBUFFER_VERSION","package":"druntime","parentType":"","signature":"BCRYPTBUFFER_VERSION","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPTBUFFER_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_RSAFULLPRIVATE_BLOB","package":"druntime","parentType":"","signature":"BCRYPT_RSAFULLPRIVATE_BLOB","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_RSAFULLPRIVATE_BLOB"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_RSAFULLPRIVATE_MAGIC","package":"druntime","parentType":"","signature":"BCRYPT_RSAFULLPRIVATE_MAGIC","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_RSAFULLPRIVATE_MAGIC"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"TLS_13_PRE_SHARED_KEY","package":"druntime","parentType":"","signature":"TLS_13_PRE_SHARED_KEY","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#TLS_13_PRE_SHARED_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"BCRYPT_NO_KEY_VALIDATION","package":"druntime","parentType":"","signature":"BCRYPT_NO_KEY_VALIDATION","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#BCRYPT_NO_KEY_VALIDATION"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"CRYPT_OVERWRITE","package":"druntime","parentType":"","signature":"CRYPT_OVERWRITE","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_OVERWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.bcrypt","name":"CRYPT_DEFAULT_CONTEXT","package":"druntime","parentType":"","signature":"CRYPT_DEFAULT_CONTEXT","url":"/ddoc/druntime/core/sys/windows/bcrypt.html#CRYPT_DEFAULT_CONTEXT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.cderr","name":"core.sys.windows.cderr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/cderr.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.cguid","name":"core.sys.windows.cguid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/cguid.html"},{"doc":"","kind":"module","module":"core.sys.windows.com","name":"core.sys.windows.com","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/com.html"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVER = CLSCTX.CLSCTX_INPROC_SERVER","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_SERVER"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_HANDLER","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLER = CLSCTX.CLSCTX_INPROC_HANDLER","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_HANDLER"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_LOCAL_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_LOCAL_SERVER = CLSCTX.CLSCTX_LOCAL_SERVER","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_LOCAL_SERVER"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_SERVER16","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVER16 = CLSCTX.CLSCTX_INPROC_SERVER16","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_SERVER16"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_REMOTE_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_REMOTE_SERVER = CLSCTX.CLSCTX_REMOTE_SERVER","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_REMOTE_SERVER"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_HANDLER16","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLER16 = CLSCTX.CLSCTX_INPROC_HANDLER16","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_HANDLER16"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_SERVERX86","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVERX86 = CLSCTX.CLSCTX_INPROC_SERVERX86","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_SERVERX86"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"CLSCTX_INPROC_HANDLERX86","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLERX86 = CLSCTX.CLSCTX_INPROC_HANDLERX86","url":"/ddoc/druntime/core/sys/windows/com.html#CLSCTX_INPROC_HANDLERX86"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"COINIT_APARTMENTTHREADED","package":"druntime","parentType":"","signature":"COINIT_APARTMENTTHREADED = COINIT.COINIT_APARTMENTTHREADED","url":"/ddoc/druntime/core/sys/windows/com.html#COINIT_APARTMENTTHREADED"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"COINIT_MULTITHREADED","package":"druntime","parentType":"","signature":"COINIT_MULTITHREADED = COINIT.COINIT_MULTITHREADED","url":"/ddoc/druntime/core/sys/windows/com.html#COINIT_MULTITHREADED"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"COINIT_DISABLE_OLE1DDE","package":"druntime","parentType":"","signature":"COINIT_DISABLE_OLE1DDE = COINIT.COINIT_DISABLE_OLE1DDE","url":"/ddoc/druntime/core/sys/windows/com.html#COINIT_DISABLE_OLE1DDE"},{"doc":"","kind":"alias","module":"core.sys.windows.com","name":"COINIT_SPEED_OVER_MEMORY","package":"druntime","parentType":"","signature":"COINIT_SPEED_OVER_MEMORY = COINIT.COINIT_SPEED_OVER_MEMORY","url":"/ddoc/druntime/core/sys/windows/com.html#COINIT_SPEED_OVER_MEMORY"},{"doc":"","kind":"class","module":"core.sys.windows.com","name":"ComObject","package":"druntime","parentType":"","signature":"ComObject : IUnknown","url":"/ddoc/druntime/core/sys/windows/com.html#ComObject"},{"doc":"","kind":"method","module":"core.sys.windows.com","name":"QueryInterface","package":"druntime","parentType":"ComObject","signature":"HRESULT QueryInterface(const(IID) *  riid,  void * *  ppv)","url":"/ddoc/druntime/core/sys/windows/com/ComObject.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.com","name":"AddRef","package":"druntime","parentType":"ComObject","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/com/ComObject.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.com","name":"Release","package":"druntime","parentType":"ComObject","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/com/ComObject.Release.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.comcat","name":"core.sys.windows.comcat","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/comcat.html"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPENUMGUID","package":"druntime","parentType":"","signature":"LPENUMGUID = IEnumGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPENUMGUID"},{"doc":"","kind":"interface","module":"core.sys.windows.comcat","name":"IEnumGUID","package":"druntime","parentType":"","signature":"IEnumGUID : IUnknown","url":"/ddoc/druntime/core/sys/windows/comcat.html#IEnumGUID"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Next","package":"druntime","parentType":"IEnumGUID","signature":"HRESULT Next(ULONG,  GUID *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumGUID.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Skip","package":"druntime","parentType":"IEnumGUID","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumGUID.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Reset","package":"druntime","parentType":"IEnumGUID","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumGUID.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Clone","package":"druntime","parentType":"IEnumGUID","signature":"HRESULT Clone(LPENUMGUID *)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumGUID.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"CATID","package":"druntime","parentType":"","signature":"CATID = GUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#CATID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"REFCATID","package":"druntime","parentType":"","signature":"REFCATID = REFGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#REFCATID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"CATID_NULL","package":"druntime","parentType":"","signature":"CATID_NULL = GUID_NULL","url":"/ddoc/druntime/core/sys/windows/comcat.html#CATID_NULL"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"IsEqualCATID","package":"druntime","parentType":"","signature":"IsEqualCATID = IsEqualGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#IsEqualCATID"},{"doc":"","kind":"struct","module":"core.sys.windows.comcat","name":"CATEGORYINFO","package":"druntime","parentType":"","signature":"CATEGORYINFO","url":"/ddoc/druntime/core/sys/windows/comcat.html#CATEGORYINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPCATEGORYINFO","package":"druntime","parentType":"","signature":"LPCATEGORYINFO = CATEGORYINFO *","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPCATEGORYINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"IEnumCATID","package":"druntime","parentType":"","signature":"IEnumCATID = IEnumGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#IEnumCATID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPENUMCATID","package":"druntime","parentType":"","signature":"LPENUMCATID = LPENUMGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPENUMCATID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"IID_IEnumCATID","package":"druntime","parentType":"","signature":"IID_IEnumCATID = IID_IEnumGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#IID_IEnumCATID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"IEnumCLSID","package":"druntime","parentType":"","signature":"IEnumCLSID = IEnumGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#IEnumCLSID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPENUMCLSID","package":"druntime","parentType":"","signature":"LPENUMCLSID = LPENUMGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPENUMCLSID"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"IID_IEnumCLSID","package":"druntime","parentType":"","signature":"IID_IEnumCLSID = IID_IEnumGUID","url":"/ddoc/druntime/core/sys/windows/comcat.html#IID_IEnumCLSID"},{"doc":"","kind":"interface","module":"core.sys.windows.comcat","name":"ICatInformation","package":"druntime","parentType":"","signature":"ICatInformation : IUnknown","url":"/ddoc/druntime/core/sys/windows/comcat.html#ICatInformation"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"EnumCategories","package":"druntime","parentType":"ICatInformation","signature":"HRESULT EnumCategories(LCID,  LPENUMCATEGORYINFO *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.EnumCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"GetCategoryDesc","package":"druntime","parentType":"ICatInformation","signature":"HRESULT GetCategoryDesc(REFCATID,  LCID,  PWCHAR *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.GetCategoryDesc.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"EnumClassesOfCategories","package":"druntime","parentType":"ICatInformation","signature":"HRESULT EnumClassesOfCategories(ULONG,  CATID *,  ULONG,  CATID *,\n       LPENUMCLSID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.EnumClassesOfCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"IsClassOfCategories","package":"druntime","parentType":"ICatInformation","signature":"HRESULT IsClassOfCategories(REFCLSID,  ULONG,  CATID *,  ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.IsClassOfCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"EnumImplCategoriesOfClass","package":"druntime","parentType":"ICatInformation","signature":"HRESULT EnumImplCategoriesOfClass(REFCLSID,  LPENUMCATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.EnumImplCategoriesOfClass.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"EnumReqCategoriesOfClass","package":"druntime","parentType":"ICatInformation","signature":"HRESULT EnumReqCategoriesOfClass(REFCLSID,  LPENUMCATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatInformation.EnumReqCategoriesOfClass.html"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPCATINFORMATION","package":"druntime","parentType":"","signature":"LPCATINFORMATION = ICatInformation","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPCATINFORMATION"},{"doc":"","kind":"interface","module":"core.sys.windows.comcat","name":"ICatRegister","package":"druntime","parentType":"","signature":"ICatRegister : IUnknown","url":"/ddoc/druntime/core/sys/windows/comcat.html#ICatRegister"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"RegisterCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT RegisterCategories(ULONG,  CATEGORYINFO *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.RegisterCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"UnRegisterCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT UnRegisterCategories(ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.UnRegisterCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"RegisterClassImplCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT RegisterClassImplCategories(REFCLSID,  ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.RegisterClassImplCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"UnRegisterClassImplCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT UnRegisterClassImplCategories(REFCLSID,  ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.UnRegisterClassImplCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"RegisterClassReqCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT RegisterClassReqCategories(REFCLSID,  ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.RegisterClassReqCategories.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"UnRegisterClassReqCategories","package":"druntime","parentType":"ICatRegister","signature":"HRESULT UnRegisterClassReqCategories(REFCLSID,  ULONG,  CATID *)","url":"/ddoc/druntime/core/sys/windows/comcat/ICatRegister.UnRegisterClassReqCategories.html"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPCATREGISTER","package":"druntime","parentType":"","signature":"LPCATREGISTER = ICatRegister","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPCATREGISTER"},{"doc":"","kind":"interface","module":"core.sys.windows.comcat","name":"IEnumCATEGORYINFO","package":"druntime","parentType":"","signature":"IEnumCATEGORYINFO : IUnknown","url":"/ddoc/druntime/core/sys/windows/comcat.html#IEnumCATEGORYINFO"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Next","package":"druntime","parentType":"IEnumCATEGORYINFO","signature":"HRESULT Next(ULONG,  CATEGORYINFO *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumCATEGORYINFO.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Skip","package":"druntime","parentType":"IEnumCATEGORYINFO","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumCATEGORYINFO.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Reset","package":"druntime","parentType":"IEnumCATEGORYINFO","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumCATEGORYINFO.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.comcat","name":"Clone","package":"druntime","parentType":"IEnumCATEGORYINFO","signature":"HRESULT Clone(LPENUMCATEGORYINFO *)","url":"/ddoc/druntime/core/sys/windows/comcat/IEnumCATEGORYINFO.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.comcat","name":"LPENUMCATEGORYINFO","package":"druntime","parentType":"","signature":"LPENUMCATEGORYINFO = IEnumCATEGORYINFO","url":"/ddoc/druntime/core/sys/windows/comcat.html#LPENUMCATEGORYINFO"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.commctrl","name":"core.sys.windows.commctrl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/commctrl.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"INDEXTOOVERLAYMASK","package":"druntime","parentType":"","signature":"uint INDEXTOOVERLAYMASK()(uint  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/INDEXTOOVERLAYMASK.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"INDEXTOSTATEIMAGEMASK","package":"druntime","parentType":"","signature":"uint INDEXTOSTATEIMAGEMASK()(uint  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/INDEXTOSTATEIMAGEMASK.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"FORWARD_WM_NOTIFY","package":"druntime","parentType":"","signature":"LRESULT FORWARD_WM_NOTIFY(HWND hwnd,  int  idFrom,  NMHDR *  pnmhdr,  _prm_FORWARD_WM_NOTIFY fn)","url":"/ddoc/druntime/core/sys/windows/commctrl/FORWARD_WM_NOTIFY.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MAKEIPADDRESS","package":"druntime","parentType":"","signature":"LPARAM MAKEIPADDRESS(ubyte  b1,  ubyte  b2,  ubyte  b3,  ubyte  b4)","url":"/ddoc/druntime/core/sys/windows/commctrl/MAKEIPADDRESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MAKEIPRANGE","package":"druntime","parentType":"","signature":"LPARAM MAKEIPRANGE(ubyte  low,  ubyte  high)","url":"/ddoc/druntime/core/sys/windows/commctrl/MAKEIPRANGE.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"FIRST_IPADDRESS","package":"druntime","parentType":"","signature":"ubyte FIRST_IPADDRESS(LPARAM x)","url":"/ddoc/druntime/core/sys/windows/commctrl/FIRST_IPADDRESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"SECOND_IPADDRESS","package":"druntime","parentType":"","signature":"ubyte SECOND_IPADDRESS(LPARAM x)","url":"/ddoc/druntime/core/sys/windows/commctrl/SECOND_IPADDRESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"THIRD_IPADDRESS","package":"druntime","parentType":"","signature":"ubyte THIRD_IPADDRESS(LPARAM x)","url":"/ddoc/druntime/core/sys/windows/commctrl/THIRD_IPADDRESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"FOURTH_IPADDRESS","package":"druntime","parentType":"","signature":"ubyte FOURTH_IPADDRESS(LPARAM x)","url":"/ddoc/druntime/core/sys/windows/commctrl/FOURTH_IPADDRESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Create","package":"druntime","parentType":"","signature":"HWND Animate_Create(HWND hwndP,  UINT id,  DWORD dwStyle,\n       HINSTANCE hInstance)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Create.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Open","package":"druntime","parentType":"","signature":"BOOL Animate_Open(HWND hwnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Open.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_OpenEx","package":"druntime","parentType":"","signature":"BOOL Animate_OpenEx(HWND hwnd,  HINSTANCE hInst,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_OpenEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Play","package":"druntime","parentType":"","signature":"BOOL Animate_Play(HWND hwnd,  int  from,  int  to,  int  rep)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Play.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Stop","package":"druntime","parentType":"","signature":"BOOL Animate_Stop(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Stop.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Close","package":"druntime","parentType":"","signature":"BOOL Animate_Close(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Close.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Animate_Seek","package":"druntime","parentType":"","signature":"BOOL Animate_Seek(HWND hwnd,  int  frame)","url":"/ddoc/druntime/core/sys/windows/commctrl/Animate_Seek.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"CreateMappedBitmap","package":"druntime","parentType":"","signature":"HBITMAP CreateMappedBitmap(HINSTANCE,  INT_PTR,  UINT,  LPCOLORMAP,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/CreateMappedBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"CreateStatusWindowA","package":"druntime","parentType":"","signature":"HWND CreateStatusWindowA(LONG,  LPCSTR,  HWND,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/CreateStatusWindowA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"CreateStatusWindowW","package":"druntime","parentType":"","signature":"HWND CreateStatusWindowW(LONG,  LPCWSTR,  HWND,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/CreateStatusWindowW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"CreateToolbarEx","package":"druntime","parentType":"","signature":"HWND CreateToolbarEx(HWND,  DWORD,  UINT,  int,  HINSTANCE,  UINT_PTR,\n       LPCTBBUTTON,  int,  int,  int,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/CreateToolbarEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"CreateUpDownControl","package":"druntime","parentType":"","signature":"HWND CreateUpDownControl(DWORD,  int,  int,  int,  int,  HWND,  int,  HINSTANCE,\n       HWND,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/CreateUpDownControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_GetMonthCal","package":"druntime","parentType":"","signature":"HWND DateTime_GetMonthCal(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_GetMonthCal.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_GetMonthCalColor","package":"druntime","parentType":"","signature":"COLORREF DateTime_GetMonthCalColor(HWND hwnd,  int  iColor)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_GetMonthCalColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_GetMonthCalFont","package":"druntime","parentType":"","signature":"HFONT DateTime_GetMonthCalFont(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_GetMonthCalFont.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_GetRange","package":"druntime","parentType":"","signature":"DWORD DateTime_GetRange(HWND hwnd,  LPSYSTEMTIME lpSysTimeArray)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_GetRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_GetSystemtime","package":"druntime","parentType":"","signature":"DWORD DateTime_GetSystemtime(HWND hwnd,  LPSYSTEMTIME lpSysTime)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_GetSystemtime.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_SetFormat","package":"druntime","parentType":"","signature":"BOOL DateTime_SetFormat(HWND hwnd,  LPCTSTR lpszFormat)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_SetFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_SetMonthCalColor","package":"druntime","parentType":"","signature":"LRESULT DateTime_SetMonthCalColor(HWND hwnd,  int  iColor,  COLORREF clr)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_SetMonthCalColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_SetMonthCalFont","package":"druntime","parentType":"","signature":"void DateTime_SetMonthCalFont(HWND hwnd,  HFONT hfont,  BOOL fRedraw)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_SetMonthCalFont.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_SetRange","package":"druntime","parentType":"","signature":"BOOL DateTime_SetRange(HWND hwnd,  WPARAM flags,  LPSYSTEMTIME lpSysTimeArray)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_SetRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DateTime_SetSystemtime","package":"druntime","parentType":"","signature":"BOOL DateTime_SetSystemtime(HWND hwnd,  WPARAM flag,  LPSYSTEMTIME lpSysTime)","url":"/ddoc/druntime/core/sys/windows/commctrl/DateTime_SetSystemtime.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DrawInsert","package":"druntime","parentType":"","signature":"void DrawInsert(HWND,  HWND,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/DrawInsert.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DrawStatusTextA","package":"druntime","parentType":"","signature":"void DrawStatusTextA(HDC,  LPRECT,  LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DrawStatusTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DrawStatusTextW","package":"druntime","parentType":"","signature":"void DrawStatusTextW(HDC,  LPRECT,  LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DrawStatusTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"GetEffectiveClientRect","package":"druntime","parentType":"","signature":"void GetEffectiveClientRect(HWND,  LPRECT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/GetEffectiveClientRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_GetItemCount","package":"druntime","parentType":"","signature":"int Header_GetItemCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_GetItemCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_InsertItem","package":"druntime","parentType":"","signature":"int Header_InsertItem(HWND w,  int  i,  const(HDITEM) *  phdi)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_InsertItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_DeleteItem","package":"druntime","parentType":"","signature":"BOOL Header_DeleteItem(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_DeleteItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_GetItem","package":"druntime","parentType":"","signature":"BOOL Header_GetItem(HWND w,  int  i,  LPHDITEM phdi)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_GetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_SetItem","package":"druntime","parentType":"","signature":"BOOL Header_SetItem(HWND w,  int  i,  const(HDITEM) *  phdi)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_SetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Header_Layout","package":"druntime","parentType":"","signature":"BOOL Header_Layout(HWND w,  LPHDLAYOUT playout)","url":"/ddoc/druntime/core/sys/windows/commctrl/Header_Layout.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DSA_Create","package":"druntime","parentType":"","signature":"HDSA DSA_Create(INT,  INT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DSA_Create.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DSA_Destroy","package":"druntime","parentType":"","signature":"BOOL DSA_Destroy(HDSA)","url":"/ddoc/druntime/core/sys/windows/commctrl/DSA_Destroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DSA_DestroyCallback","package":"druntime","parentType":"","signature":"VOID DSA_DestroyCallback(HDSA,  PFNDSAENUMCALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DSA_DestroyCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DSA_GetItemPtr","package":"druntime","parentType":"","signature":"PVOID DSA_GetItemPtr(HDSA,  INT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DSA_GetItemPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DSA_InsertItem","package":"druntime","parentType":"","signature":"INT DSA_InsertItem(HDSA,  INT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DSA_InsertItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_Create","package":"druntime","parentType":"","signature":"HDPA DPA_Create(INT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_Create.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_Destroy","package":"druntime","parentType":"","signature":"BOOL DPA_Destroy(HDPA)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_Destroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_DeletePtr","package":"druntime","parentType":"","signature":"PVOID DPA_DeletePtr(HDPA,  INT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_DeletePtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_DeleteAllPtrs","package":"druntime","parentType":"","signature":"BOOL DPA_DeleteAllPtrs(HDPA)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_DeleteAllPtrs.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_EnumCallback","package":"druntime","parentType":"","signature":"VOID DPA_EnumCallback(HDPA,  PFNDPAENUMCALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_EnumCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_DestroyCallback","package":"druntime","parentType":"","signature":"VOID DPA_DestroyCallback(HDPA,  PFNDPAENUMCALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_DestroyCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_SetPtr","package":"druntime","parentType":"","signature":"BOOL DPA_SetPtr(HDPA,  INT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_SetPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_InsertPtr","package":"druntime","parentType":"","signature":"INT DPA_InsertPtr(HDPA,  INT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_InsertPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_GetPtr","package":"druntime","parentType":"","signature":"PVOID DPA_GetPtr(HDPA,  INT_PTR)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_GetPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_Sort","package":"druntime","parentType":"","signature":"BOOL DPA_Sort(HDPA,  PFNDPACOMPARE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_Sort.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"DPA_Search","package":"druntime","parentType":"","signature":"INT DPA_Search(HDPA,  PVOID,  INT,  PFNDPACOMPARE,  LPARAM,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/DPA_Search.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"Str_SetPtrW","package":"druntime","parentType":"","signature":"BOOL Str_SetPtrW(LPWSTR *,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/commctrl/Str_SetPtrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Add","package":"druntime","parentType":"","signature":"int ImageList_Add(HIMAGELIST,  HBITMAP,  HBITMAP)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Add.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_AddMasked","package":"druntime","parentType":"","signature":"int ImageList_AddMasked(HIMAGELIST,  HBITMAP,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_AddMasked.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_BeginDrag","package":"druntime","parentType":"","signature":"BOOL ImageList_BeginDrag(HIMAGELIST,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_BeginDrag.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Create","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_Create(int,  int,  UINT,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Create.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Destroy","package":"druntime","parentType":"","signature":"BOOL ImageList_Destroy(HIMAGELIST)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Destroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_DragEnter","package":"druntime","parentType":"","signature":"BOOL ImageList_DragEnter(HWND,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_DragEnter.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_DragLeave","package":"druntime","parentType":"","signature":"BOOL ImageList_DragLeave(HWND)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_DragLeave.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_DragMove","package":"druntime","parentType":"","signature":"BOOL ImageList_DragMove(int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_DragMove.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_DragShowNolock","package":"druntime","parentType":"","signature":"BOOL ImageList_DragShowNolock(BOOL)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_DragShowNolock.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Draw","package":"druntime","parentType":"","signature":"BOOL ImageList_Draw(HIMAGELIST,  int,  HDC,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Draw.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_DrawEx","package":"druntime","parentType":"","signature":"BOOL ImageList_DrawEx(HIMAGELIST,  int,  HDC,  int,  int,  int,  int,  COLORREF,\n       COLORREF,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_DrawEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_EndDrag","package":"druntime","parentType":"","signature":"void ImageList_EndDrag()","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_EndDrag.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetBkColor","package":"druntime","parentType":"","signature":"COLORREF ImageList_GetBkColor(HIMAGELIST)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetDragImage","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_GetDragImage(LPPOINT,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetDragImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetIcon","package":"druntime","parentType":"","signature":"HICON ImageList_GetIcon(HIMAGELIST,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetIconSize","package":"druntime","parentType":"","signature":"BOOL ImageList_GetIconSize(HIMAGELIST,  int *,  int *)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetIconSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetImageCount","package":"druntime","parentType":"","signature":"int ImageList_GetImageCount(HIMAGELIST)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetImageCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_GetImageInfo","package":"druntime","parentType":"","signature":"BOOL ImageList_GetImageInfo(HIMAGELIST,  int,  IMAGEINFO *)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_GetImageInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_LoadImageA","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_LoadImageA(HINSTANCE,  LPCSTR,  int,  int,  COLORREF,\n       UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_LoadImageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_LoadImageW","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_LoadImageW(HINSTANCE,  LPCWSTR,  int,  int,  COLORREF,\n       UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_LoadImageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Merge","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_Merge(HIMAGELIST,  int,  HIMAGELIST,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Merge.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Remove","package":"druntime","parentType":"","signature":"BOOL ImageList_Remove(HIMAGELIST,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Remove.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Replace","package":"druntime","parentType":"","signature":"BOOL ImageList_Replace(HIMAGELIST,  int,  HBITMAP,  HBITMAP)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Replace.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_ReplaceIcon","package":"druntime","parentType":"","signature":"int ImageList_ReplaceIcon(HIMAGELIST,  int,  HICON)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_ReplaceIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_SetBkColor","package":"druntime","parentType":"","signature":"COLORREF ImageList_SetBkColor(HIMAGELIST,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_SetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_SetDragCursorImage","package":"druntime","parentType":"","signature":"BOOL ImageList_SetDragCursorImage(HIMAGELIST,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_SetDragCursorImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_SetIconSize","package":"druntime","parentType":"","signature":"BOOL ImageList_SetIconSize(HIMAGELIST,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_SetIconSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_SetOverlayImage","package":"druntime","parentType":"","signature":"BOOL ImageList_SetOverlayImage(HIMAGELIST,  int,  int)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_SetOverlayImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Read","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_Read(LPSTREAM)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Read.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_Write","package":"druntime","parentType":"","signature":"BOOL ImageList_Write(HIMAGELIST,  LPSTREAM)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_Write.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"InitCommonControls","package":"druntime","parentType":"","signature":"void InitCommonControls()","url":"/ddoc/druntime/core/sys/windows/commctrl/InitCommonControls.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"LBItemFromPt","package":"druntime","parentType":"","signature":"int LBItemFromPt(HWND,  POINT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/commctrl/LBItemFromPt.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_AddIcon","package":"druntime","parentType":"","signature":"int ImageList_AddIcon(HIMAGELIST himl,  HICON hicon)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_AddIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_ExtractIcon","package":"druntime","parentType":"","signature":"HICON ImageList_ExtractIcon(HINSTANCE hi,  HIMAGELIST himl,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_ExtractIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_LoadBitmap","package":"druntime","parentType":"","signature":"HIMAGELIST ImageList_LoadBitmap(HINSTANCE hi,  LPCTSTR lpbmp,  int  cx,\n       int  cGrow,  COLORREF crMask)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_LoadBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ImageList_RemoveAll","package":"druntime","parentType":"","signature":"BOOL ImageList_RemoveAll(HIMAGELIST himl)","url":"/ddoc/druntime/core/sys/windows/commctrl/ImageList_RemoveAll.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetBkColor","package":"druntime","parentType":"","signature":"COLORREF ListView_GetBkColor(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST ListView_GetImageList(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemCount","package":"druntime","parentType":"","signature":"int ListView_GetItemCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItem","package":"druntime","parentType":"","signature":"BOOL ListView_GetItem(HWND w,  LPLVITEM pitem)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetBkColor","package":"druntime","parentType":"","signature":"BOOL ListView_SetBkColor(HWND w,  COLORREF c)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST ListView_SetImageList(HWND w,  HIMAGELIST h,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItem","package":"druntime","parentType":"","signature":"BOOL ListView_SetItem(HWND w,  const(LV_ITEM) *  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_InsertItem","package":"druntime","parentType":"","signature":"int ListView_InsertItem(HWND w,  const(LV_ITEM) *  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_InsertItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_DeleteItem","package":"druntime","parentType":"","signature":"BOOL ListView_DeleteItem(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_DeleteItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_DeleteAllItems","package":"druntime","parentType":"","signature":"BOOL ListView_DeleteAllItems(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_DeleteAllItems.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetCallbackMask","package":"druntime","parentType":"","signature":"UINT ListView_GetCallbackMask(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetCallbackMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetCallbackMask","package":"druntime","parentType":"","signature":"BOOL ListView_SetCallbackMask(HWND w,  UINT m)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetCallbackMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetNextItem","package":"druntime","parentType":"","signature":"int ListView_GetNextItem(HWND w,  int  i,  UINT f)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetNextItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_FindItem","package":"druntime","parentType":"","signature":"int ListView_FindItem(HWND w,  int  i,  const(LV_FINDINFO) *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_FindItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemRect","package":"druntime","parentType":"","signature":"BOOL ListView_GetItemRect(HWND w,  int  i,  LPRECT p,  int  c)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItemPosition","package":"druntime","parentType":"","signature":"BOOL ListView_SetItemPosition(HWND w,  int  i,  int  x,  int  y)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItemPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemPosition","package":"druntime","parentType":"","signature":"BOOL ListView_GetItemPosition(HWND w,  int  i,  POINT *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemSpacing","package":"druntime","parentType":"","signature":"DWORD ListView_GetItemSpacing(HWND w,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemSpacing.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetStringWidth","package":"druntime","parentType":"","signature":"int ListView_GetStringWidth(HWND w,  LPCSTR s)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetStringWidth.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_HitTest","package":"druntime","parentType":"","signature":"int ListView_HitTest(HWND w,  LPLVHITTESTINFO p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_HitTest.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_EnsureVisible","package":"druntime","parentType":"","signature":"BOOL ListView_EnsureVisible(HWND w,  int  i,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_EnsureVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_Scroll","package":"druntime","parentType":"","signature":"BOOL ListView_Scroll(HWND w,  int  dx,  int  dy)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_Scroll.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_RedrawItems","package":"druntime","parentType":"","signature":"BOOL ListView_RedrawItems(HWND w,  int  f,  int  l)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_RedrawItems.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_Arrange","package":"druntime","parentType":"","signature":"BOOL ListView_Arrange(HWND w,  UINT c)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_Arrange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_EditLabel","package":"druntime","parentType":"","signature":"HWND ListView_EditLabel(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_EditLabel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetEditControl","package":"druntime","parentType":"","signature":"HWND ListView_GetEditControl(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetEditControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetColumn","package":"druntime","parentType":"","signature":"BOOL ListView_GetColumn(HWND w,  int  i,  LPLVCOLUMN p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetColumn.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetColumn","package":"druntime","parentType":"","signature":"BOOL ListView_SetColumn(HWND w,  int  i,  const(LV_COLUMN) *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetColumn.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_InsertColumn","package":"druntime","parentType":"","signature":"int ListView_InsertColumn(HWND w,  int  i,  const(LV_COLUMN) *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_InsertColumn.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_DeleteColumn","package":"druntime","parentType":"","signature":"BOOL ListView_DeleteColumn(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_DeleteColumn.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetColumnWidth","package":"druntime","parentType":"","signature":"int ListView_GetColumnWidth(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetColumnWidth.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetColumnWidth","package":"druntime","parentType":"","signature":"BOOL ListView_SetColumnWidth(HWND w,  int  i,  int  x)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetColumnWidth.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_CreateDragImage","package":"druntime","parentType":"","signature":"HIMAGELIST ListView_CreateDragImage(HWND w,  int  i,  LPPOINT p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_CreateDragImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetViewRect","package":"druntime","parentType":"","signature":"BOOL ListView_GetViewRect(HWND w,  RECT *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetViewRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetTextColor","package":"druntime","parentType":"","signature":"COLORREF ListView_GetTextColor(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetTextColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetTextColor","package":"druntime","parentType":"","signature":"BOOL ListView_SetTextColor(HWND w,  COLORREF c)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetTextColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetTextBkColor","package":"druntime","parentType":"","signature":"COLORREF ListView_GetTextBkColor(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetTextBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetTextBkColor","package":"druntime","parentType":"","signature":"BOOL ListView_SetTextBkColor(HWND w,  COLORREF c)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetTextBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetTopIndex","package":"druntime","parentType":"","signature":"int ListView_GetTopIndex(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetTopIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetCountPerPage","package":"druntime","parentType":"","signature":"int ListView_GetCountPerPage(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetCountPerPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetOrigin","package":"druntime","parentType":"","signature":"BOOL ListView_GetOrigin(HWND w,  LPPOINT p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetOrigin.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_Update","package":"druntime","parentType":"","signature":"BOOL ListView_Update(HWND w,  WPARAM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_Update.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItemState","package":"druntime","parentType":"","signature":"void ListView_SetItemState(HWND w,  int  i,  UINT d,  UINT m)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItemState.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemState","package":"druntime","parentType":"","signature":"UINT ListView_GetItemState(HWND w,  int  i,  UINT m)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemState.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetItemText","package":"druntime","parentType":"","signature":"void ListView_GetItemText(HWND w,  int  i,  int  iS,  LPTSTR s,  int  n)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetItemText.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItemText","package":"druntime","parentType":"","signature":"void ListView_SetItemText(HWND w,  int  i,  int  iS,  LPTSTR s)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItemText.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItemCount","package":"druntime","parentType":"","signature":"void ListView_SetItemCount(HWND w,  int  n)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItemCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SortItems","package":"druntime","parentType":"","signature":"BOOL ListView_SortItems(HWND w,  PFNLVCOMPARE f,  LPARAM l)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SortItems.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetItemPosition32","package":"druntime","parentType":"","signature":"void ListView_SetItemPosition32(HWND w,  int  i,  int  x,  int  y)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetItemPosition32.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetSelectedCount","package":"druntime","parentType":"","signature":"UINT ListView_GetSelectedCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetSelectedCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetCheckState","package":"druntime","parentType":"","signature":"UINT ListView_GetCheckState(HWND w,  UINT i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetCheckState.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SetCheckState","package":"druntime","parentType":"","signature":"void ListView_SetCheckState(HWND w,  UINT i,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SetCheckState.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_GetISearchString","package":"druntime","parentType":"","signature":"BOOL ListView_GetISearchString(HWND w,  LPSTR lpsz)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_GetISearchString.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_CancelEditLabel","package":"druntime","parentType":"","signature":"void ListView_CancelEditLabel(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_CancelEditLabel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_EnableGroupView","package":"druntime","parentType":"","signature":"int ListView_EnableGroupView(HWND w,  BOOL i)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_EnableGroupView.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ListView_SortItemsEx","package":"druntime","parentType":"","signature":"BOOL ListView_SortItemsEx(HWND w,  PFNLVCOMPARE c,  LPARAM p)","url":"/ddoc/druntime/core/sys/windows/commctrl/ListView_SortItemsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MakeDragList","package":"druntime","parentType":"","signature":"BOOL MakeDragList(HWND)","url":"/ddoc/druntime/core/sys/windows/commctrl/MakeDragList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MenuHelp","package":"druntime","parentType":"","signature":"void MenuHelp(UINT,  WPARAM,  LPARAM,  HMENU,  HINSTANCE,  HWND,\n   PUINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/MenuHelp.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetColor","package":"druntime","parentType":"","signature":"COLORREF MonthCal_GetColor(HWND hwnd,  INT icolor)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetCurSel","package":"druntime","parentType":"","signature":"BOOL MonthCal_GetCurSel(HWND hwnd,  LPSYSTEMTIME lpsystime)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetCurSel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetFirstDayOfWeek","package":"druntime","parentType":"","signature":"DWORD MonthCal_GetFirstDayOfWeek(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetFirstDayOfWeek.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetMaxSelCount","package":"druntime","parentType":"","signature":"DWORD MonthCal_GetMaxSelCount(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetMaxSelCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetMaxTodayWidth","package":"druntime","parentType":"","signature":"DWORD MonthCal_GetMaxTodayWidth(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetMaxTodayWidth.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetMinReqRect","package":"druntime","parentType":"","signature":"BOOL MonthCal_GetMinReqRect(HWND hwnd,  LPRECT lpRectInfo)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetMinReqRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetMonthDelta","package":"druntime","parentType":"","signature":"INT MonthCal_GetMonthDelta(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetMonthDelta.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetMonthRange","package":"druntime","parentType":"","signature":"INT MonthCal_GetMonthRange(HWND hwnd,  DWORD flag,  LPSYSTEMTIME systimearray)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetMonthRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetRange","package":"druntime","parentType":"","signature":"DWORD MonthCal_GetRange(HWND hwnd,  LPSYSTEMTIME systimearray)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetSelRange","package":"druntime","parentType":"","signature":"BOOL MonthCal_GetSelRange(HWND hwnd,  LPSYSTEMTIME systimearray)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetSelRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetToday","package":"druntime","parentType":"","signature":"BOOL MonthCal_GetToday(HWND hwnd,  LPSYSTEMTIME systime)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetToday.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_GetUnicodeFormat","package":"druntime","parentType":"","signature":"BOOL MonthCal_GetUnicodeFormat(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_GetUnicodeFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_HitTest","package":"druntime","parentType":"","signature":"DWORD MonthCal_HitTest(HWND hwnd,  PMCHITTESTINFO pmchittest)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_HitTest.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetColor","package":"druntime","parentType":"","signature":"COLORREF MonthCal_SetColor(HWND hwnd,  INT icolor,  COLORREF clr)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetCurSel","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetCurSel(HWND hwnd,  LPSYSTEMTIME lpsystime)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetCurSel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetDayState","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetDayState(HWND hwnd,  INT imonths,  LPMONTHDAYSTATE lpdatestatearray)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetDayState.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetFirstDayOfWeek","package":"druntime","parentType":"","signature":"DWORD MonthCal_SetFirstDayOfWeek(HWND hwnd,  INT iday)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetFirstDayOfWeek.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetMaxSelCount","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetMaxSelCount(HWND hwnd,  UINT imax)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetMaxSelCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetMonthDelta","package":"druntime","parentType":"","signature":"INT MonthCal_SetMonthDelta(HWND hwnd,  INT idelta)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetMonthDelta.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetSelRange","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetSelRange(HWND hwnd,  LPSYSTEMTIME systimearray)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetSelRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetToday","package":"druntime","parentType":"","signature":"void MonthCal_SetToday(HWND hwnd,  LPSYSTEMTIME systime)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetToday.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetUnicodeFormat","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetUnicodeFormat(HWND hwnd,  BOOL unicode)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetUnicodeFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"MonthCal_SetRange","package":"druntime","parentType":"","signature":"BOOL MonthCal_SetRange(HWND w,  DWORD f,  LPSYSTEMTIME st)","url":"/ddoc/druntime/core/sys/windows/commctrl/MonthCal_SetRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"ShowHideMenuCtl","package":"druntime","parentType":"","signature":"BOOL ShowHideMenuCtl(HWND,  UINT_PTR,  PINT)","url":"/ddoc/druntime/core/sys/windows/commctrl/ShowHideMenuCtl.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetItem","package":"druntime","parentType":"","signature":"BOOL TabCtrl_GetItem(HWND w,  int  i,  LPTCITEM p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetItem","package":"druntime","parentType":"","signature":"BOOL TabCtrl_SetItem(HWND w,  int  i,  LPTCITEM p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_InsertItem","package":"druntime","parentType":"","signature":"int TabCtrl_InsertItem(HWND w,  int  i,  const(TC_ITEM) *  p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_InsertItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_DeleteItem","package":"druntime","parentType":"","signature":"BOOL TabCtrl_DeleteItem(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_DeleteItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_DeleteAllItems","package":"druntime","parentType":"","signature":"BOOL TabCtrl_DeleteAllItems(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_DeleteAllItems.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetItemRect","package":"druntime","parentType":"","signature":"BOOL TabCtrl_GetItemRect(HWND w,  int  i,  LPRECT p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetItemRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetCurSel","package":"druntime","parentType":"","signature":"int TabCtrl_GetCurSel(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetCurSel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetCurSel","package":"druntime","parentType":"","signature":"int TabCtrl_SetCurSel(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetCurSel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_HitTest","package":"druntime","parentType":"","signature":"int TabCtrl_HitTest(HWND w,  LPTCHITTESTINFO p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_HitTest.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetItemExtra","package":"druntime","parentType":"","signature":"BOOL TabCtrl_SetItemExtra(HWND w,  int  c)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetItemExtra.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_AdjustRect","package":"druntime","parentType":"","signature":"int TabCtrl_AdjustRect(HWND w,  BOOL b,  LPRECT p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_AdjustRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetItemSize","package":"druntime","parentType":"","signature":"DWORD TabCtrl_SetItemSize(HWND w,  int  x,  int  y)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetItemSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_RemoveImage","package":"druntime","parentType":"","signature":"void TabCtrl_RemoveImage(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_RemoveImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetPadding","package":"druntime","parentType":"","signature":"void TabCtrl_SetPadding(HWND w,  int  x,  int  y)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetPadding.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetRowCount","package":"druntime","parentType":"","signature":"int TabCtrl_GetRowCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetRowCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetToolTips","package":"druntime","parentType":"","signature":"HWND TabCtrl_GetToolTips(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetToolTips.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetToolTips","package":"druntime","parentType":"","signature":"void TabCtrl_SetToolTips(HWND w,  HWND t)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetToolTips.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetCurFocus","package":"druntime","parentType":"","signature":"int TabCtrl_GetCurFocus(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetCurFocus.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetCurFocus","package":"druntime","parentType":"","signature":"void TabCtrl_SetCurFocus(HWND w,  int  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetCurFocus.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST TabCtrl_GetImageList(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_SetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST TabCtrl_SetImageList(HWND w,  HIMAGELIST h)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_SetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TabCtrl_GetItemCount","package":"druntime","parentType":"","signature":"int TabCtrl_GetItemCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TabCtrl_GetItemCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"_TrackMouseEvent","package":"druntime","parentType":"","signature":"BOOL _TrackMouseEvent(LPTRACKMOUSEEVENT)","url":"/ddoc/druntime/core/sys/windows/commctrl/_TrackMouseEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_InsertItem","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_InsertItem(HWND w,  LPTVINSERTSTRUCT i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_InsertItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_DeleteItem","package":"druntime","parentType":"","signature":"BOOL TreeView_DeleteItem(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_DeleteItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_DeleteAllItems","package":"druntime","parentType":"","signature":"BOOL TreeView_DeleteAllItems(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_DeleteAllItems.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_Expand","package":"druntime","parentType":"","signature":"BOOL TreeView_Expand(HWND w,  HTREEITEM i,  UINT c)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_Expand.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetItemRect","package":"druntime","parentType":"","signature":"BOOL TreeView_GetItemRect(HWND w,  HTREEITEM i,  LPRECT p,  BOOL c)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetItemRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetCount","package":"druntime","parentType":"","signature":"UINT TreeView_GetCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetIndent","package":"druntime","parentType":"","signature":"UINT TreeView_GetIndent(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetIndent.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SetIndent","package":"druntime","parentType":"","signature":"BOOL TreeView_SetIndent(HWND w,  INT i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SetIndent.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST TreeView_GetImageList(HWND w,  INT i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SetImageList","package":"druntime","parentType":"","signature":"HIMAGELIST TreeView_SetImageList(HWND w,  HIMAGELIST h,  INT i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SetImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetNextItem","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetNextItem(HWND w,  HTREEITEM i,  UINT c)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetNextItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetChild","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetChild(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetChild.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetNextSibling","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetNextSibling(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetNextSibling.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetPrevSibling","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetPrevSibling(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetPrevSibling.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetParent","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetParent(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetParent.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetFirstVisible","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetFirstVisible(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetFirstVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetNextVisible","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetNextVisible(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetNextVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetPrevVisible","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetPrevVisible(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetPrevVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetSelection","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetSelection(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetSelection.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetDropHilight","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetDropHilight(HTREEITEM w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetDropHilight.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetRoot","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_GetRoot(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetRoot.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_Select","package":"druntime","parentType":"","signature":"BOOL TreeView_Select(HWND w,  HTREEITEM i,  UINT c)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_Select.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SelectItem","package":"druntime","parentType":"","signature":"BOOL TreeView_SelectItem(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SelectItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SelectDropTarget","package":"druntime","parentType":"","signature":"BOOL TreeView_SelectDropTarget(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SelectDropTarget.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SelectSetFirstVisible","package":"druntime","parentType":"","signature":"BOOL TreeView_SelectSetFirstVisible(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SelectSetFirstVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetItem","package":"druntime","parentType":"","signature":"BOOL TreeView_GetItem(HWND w,  LPTVITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SetItem","package":"druntime","parentType":"","signature":"BOOL TreeView_SetItem(HWND w,  const(TV_ITEM) *  i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SetItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_EditLabel","package":"druntime","parentType":"","signature":"HWND TreeView_EditLabel(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_EditLabel.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetEditControl","package":"druntime","parentType":"","signature":"HWND TreeView_GetEditControl(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetEditControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetVisibleCount","package":"druntime","parentType":"","signature":"UINT TreeView_GetVisibleCount(HWND w)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetVisibleCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_HitTest","package":"druntime","parentType":"","signature":"HTREEITEM TreeView_HitTest(HWND w,  LPTVHITTESTINFO p)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_HitTest.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_CreateDragImage","package":"druntime","parentType":"","signature":"HIMAGELIST TreeView_CreateDragImage(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_CreateDragImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SortChildren","package":"druntime","parentType":"","signature":"BOOL TreeView_SortChildren(HWND w,  HTREEITEM i,  BOOL r)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SortChildren.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_EnsureVisible","package":"druntime","parentType":"","signature":"BOOL TreeView_EnsureVisible(HWND w,  HTREEITEM i)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_EnsureVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_SortChildrenCB","package":"druntime","parentType":"","signature":"BOOL TreeView_SortChildrenCB(HWND w,  LPTVSORTCB s,  BOOL r)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_SortChildrenCB.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_EndEditLabelNow","package":"druntime","parentType":"","signature":"BOOL TreeView_EndEditLabelNow(HWND w,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_EndEditLabelNow.html"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"TreeView_GetISearchString","package":"druntime","parentType":"","signature":"BOOL TreeView_GetISearchString(HWND w,  LPTSTR s)","url":"/ddoc/druntime/core/sys/windows/commctrl/TreeView_GetISearchString.html"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HTREEITEM","package":"druntime","parentType":"","signature":"HTREEITEM = HANDLE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HTREEITEM"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HIMAGELIST","package":"druntime","parentType":"","signature":"HIMAGELIST = HANDLE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HIMAGELIST"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBMETRICS","package":"druntime","parentType":"","signature":"TBMETRICS","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBMETRICS"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTBMETRICS","package":"druntime","parentType":"","signature":"LPTBMETRICS = TBMETRICS *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTBMETRICS"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"COMBOBOXEXITEMA","package":"druntime","parentType":"","signature":"COMBOBOXEXITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#COMBOBOXEXITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PCOMBOBOXEXITEMA","package":"druntime","parentType":"","signature":"PCOMBOBOXEXITEMA = COMBOBOXEXITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PCOMBOBOXEXITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PCCOMBOEXITEMA","package":"druntime","parentType":"","signature":"PCCOMBOEXITEMA = const(COMBOBOXEXITEMA) *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PCCOMBOEXITEMA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"COMBOBOXEXITEMW","package":"druntime","parentType":"","signature":"COMBOBOXEXITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#COMBOBOXEXITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PCOMBOBOXEXITEMW","package":"druntime","parentType":"","signature":"PCOMBOBOXEXITEMW = COMBOBOXEXITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PCOMBOBOXEXITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PCCOMBOEXITEMW","package":"druntime","parentType":"","signature":"PCCOMBOEXITEMW = const(COMBOBOXEXITEMW) *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PCCOMBOEXITEMW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMDATETIMECHANGE","package":"druntime","parentType":"","signature":"NMDATETIMECHANGE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMDATETIMECHANGE"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMDATETIMECHANGE","package":"druntime","parentType":"","signature":"LPNMDATETIMECHANGE = NMDATETIMECHANGE *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMDATETIMECHANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMCBEENDEDITW","package":"druntime","parentType":"","signature":"NMCBEENDEDITW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMCBEENDEDITW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMCBEENDEDITW","package":"druntime","parentType":"","signature":"LPNMCBEENDEDITW = NMCBEENDEDITW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMCBEENDEDITW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMCBEENDEDITA","package":"druntime","parentType":"","signature":"NMCBEENDEDITA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMCBEENDEDITA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMCBEENDEDITA","package":"druntime","parentType":"","signature":"LPNMCBEENDEDITA = NMCBEENDEDITA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMCBEENDEDITA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"COLORMAP","package":"druntime","parentType":"","signature":"COLORMAP","url":"/ddoc/druntime/core/sys/windows/commctrl.html#COLORMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPCOLORMAP","package":"druntime","parentType":"","signature":"LPCOLORMAP = COLORMAP *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPCOLORMAP"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"DRAGLISTINFO","package":"druntime","parentType":"","signature":"DRAGLISTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#DRAGLISTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPDRAGLISTINFO","package":"druntime","parentType":"","signature":"LPDRAGLISTINFO = DRAGLISTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPDRAGLISTINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBBUTTON","package":"druntime","parentType":"","signature":"TBBUTTON","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBBUTTON"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PTBBUTTON","package":"druntime","parentType":"","signature":"PTBBUTTON = TBBUTTON *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PTBBUTTON"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPCTBBUTTON","package":"druntime","parentType":"","signature":"LPCTBBUTTON = const(TBBUTTON) *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPCTBBUTTON"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"IMAGEINFO","package":"druntime","parentType":"","signature":"IMAGEINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#IMAGEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPIMAGEINFO","package":"druntime","parentType":"","signature":"LPIMAGEINFO = IMAGEINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPIMAGEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPHDITEMA","package":"druntime","parentType":"","signature":"LPHDITEMA = HDITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPHDITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPHDITEMW","package":"druntime","parentType":"","signature":"LPHDITEMW = HDITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPHDITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HD_ITEMA","package":"druntime","parentType":"","signature":"HD_ITEMA = HDITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_ITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HD_ITEMW","package":"druntime","parentType":"","signature":"HD_ITEMW = HDITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_ITEMW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"HD_LAYOUT","package":"druntime","parentType":"","signature":"HD_LAYOUT","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_LAYOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPHDLAYOUT","package":"druntime","parentType":"","signature":"LPHDLAYOUT = HD_LAYOUT *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPHDLAYOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HDLAYOUT","package":"druntime","parentType":"","signature":"HDLAYOUT = HD_LAYOUT","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HDLAYOUT"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"HD_HITTESTINFO","package":"druntime","parentType":"","signature":"HD_HITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_HITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPHDHITTESTINFO","package":"druntime","parentType":"","signature":"LPHDHITTESTINFO = HD_HITTESTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPHDHITTESTINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"HD_NOTIFYA","package":"druntime","parentType":"","signature":"HD_NOTIFYA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_NOTIFYA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"HD_NOTIFYW","package":"druntime","parentType":"","signature":"HD_NOTIFYW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HD_NOTIFYW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMHEADERA","package":"druntime","parentType":"","signature":"NMHEADERA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMHEADERA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMHEADERA","package":"druntime","parentType":"","signature":"LPNMHEADERA = NMHEADERA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMHEADERA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMHEADERW","package":"druntime","parentType":"","signature":"NMHEADERW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMHEADERW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMHEADERW","package":"druntime","parentType":"","signature":"LPNMHEADERW = NMHEADERW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMHEADERW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMHDDISPINFOA","package":"druntime","parentType":"","signature":"NMHDDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMHDDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMHDDISPINFOA","package":"druntime","parentType":"","signature":"LPNMHDDISPINFOA = NMHDDISPINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMHDDISPINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMHDDISPINFOW","package":"druntime","parentType":"","signature":"NMHDDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMHDDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMHDDISPINFOW","package":"druntime","parentType":"","signature":"LPNMHDDISPINFOW = NMHDDISPINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMHDDISPINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMCUSTOMDRAW","package":"druntime","parentType":"","signature":"NMCUSTOMDRAW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMCUSTOMDRAW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMCUSTOMDRAW","package":"druntime","parentType":"","signature":"LPNMCUSTOMDRAW = NMCUSTOMDRAW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMCUSTOMDRAW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMLVCUSTOMDRAW","package":"druntime","parentType":"","signature":"LPNMLVCUSTOMDRAW = NMLVCUSTOMDRAW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMLVCUSTOMDRAW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTVCUSTOMDRAW","package":"druntime","parentType":"","signature":"LPNMTVCUSTOMDRAW = NMTVCUSTOMDRAW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTVCUSTOMDRAW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBADDBITMAP","package":"druntime","parentType":"","signature":"TBADDBITMAP","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBADDBITMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTBADDBITMAP","package":"druntime","parentType":"","signature":"LPTBADDBITMAP = TBADDBITMAP *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTBADDBITMAP"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBSAVEPARAMSA","package":"druntime","parentType":"","signature":"TBSAVEPARAMSA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBSAVEPARAMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBSAVEPARAMSW","package":"druntime","parentType":"","signature":"TBSAVEPARAMSW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBSAVEPARAMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TBREPLACEBITMAP","package":"druntime","parentType":"","signature":"TBREPLACEBITMAP","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBREPLACEBITMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTBREPLACEBITMAP","package":"druntime","parentType":"","signature":"LPTBREPLACEBITMAP = TBREPLACEBITMAP *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTBREPLACEBITMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTOOLBARA","package":"druntime","parentType":"","signature":"LPNMTOOLBARA = NMTOOLBARA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTOOLBARA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTOOLBARW","package":"druntime","parentType":"","signature":"LPNMTOOLBARW = NMTOOLBARW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTOOLBARW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TBNOTIFYA","package":"druntime","parentType":"","signature":"TBNOTIFYA = NMTOOLBARA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBNOTIFYA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTBNOTIFYA","package":"druntime","parentType":"","signature":"LPTBNOTIFYA = LPNMTOOLBARA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTBNOTIFYA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TBNOTIFYW","package":"druntime","parentType":"","signature":"TBNOTIFYW = NMTOOLBARW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBNOTIFYW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTBNOTIFYW","package":"druntime","parentType":"","signature":"LPTBNOTIFYW = LPNMTOOLBARW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTBNOTIFYW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TTTOOLINFOA","package":"druntime","parentType":"","signature":"TTTOOLINFOA = TOOLINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TTTOOLINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TTTOOLINFOW","package":"druntime","parentType":"","signature":"TTTOOLINFOW = TOOLINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TTTOOLINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTTTOOLINFOA","package":"druntime","parentType":"","signature":"LPTTTOOLINFOA = TTTOOLINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTTTOOLINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTTTOOLINFOW","package":"druntime","parentType":"","signature":"LPTTTOOLINFOW = TTTOOLINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTTTOOLINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TTHITTESTINFOA","package":"druntime","parentType":"","signature":"TTHITTESTINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TTHITTESTINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTTHITTESTINFOA","package":"druntime","parentType":"","signature":"LPTTHITTESTINFOA = TTHITTESTINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTTHITTESTINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TTHITTESTINFOW","package":"druntime","parentType":"","signature":"TTHITTESTINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TTHITTESTINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTTHITTESTINFOW","package":"druntime","parentType":"","signature":"LPTTHITTESTINFOW = TTHITTESTINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTTHITTESTINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTTDISPINFOA","package":"druntime","parentType":"","signature":"LPNMTTDISPINFOA = NMTTDISPINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTTDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTTDISPINFOW","package":"druntime","parentType":"","signature":"LPNMTTDISPINFOW = NMTTDISPINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTTDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TOOLTIPTEXTA","package":"druntime","parentType":"","signature":"TOOLTIPTEXTA = NMTTDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TOOLTIPTEXTA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTOOLTIPTEXTA","package":"druntime","parentType":"","signature":"LPTOOLTIPTEXTA = LPNMTTDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTOOLTIPTEXTA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TOOLTIPTEXTW","package":"druntime","parentType":"","signature":"TOOLTIPTEXTW = NMTTDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TOOLTIPTEXTW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTOOLTIPTEXTW","package":"druntime","parentType":"","signature":"LPTOOLTIPTEXTW = LPNMTTDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTOOLTIPTEXTW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"UDACCEL","package":"druntime","parentType":"","signature":"UDACCEL","url":"/ddoc/druntime/core/sys/windows/commctrl.html#UDACCEL"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPUDACCEL","package":"druntime","parentType":"","signature":"LPUDACCEL = UDACCEL *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPUDACCEL"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMUPDOWN","package":"druntime","parentType":"","signature":"NMUPDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMUPDOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMUPDOWN","package":"druntime","parentType":"","signature":"LPNMUPDOWN = NMUPDOWN *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMUPDOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"NM_UPDOWN","package":"druntime","parentType":"","signature":"NM_UPDOWN = NMUPDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NM_UPDOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNM_UPDOWN","package":"druntime","parentType":"","signature":"LPNM_UPDOWN = LPNMUPDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNM_UPDOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPLVITEMA","package":"druntime","parentType":"","signature":"LPLVITEMA = LVITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPLVITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPLVITEMW","package":"druntime","parentType":"","signature":"LPLVITEMW = LVITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPLVITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_ITEMA","package":"druntime","parentType":"","signature":"LV_ITEMA = LVITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_ITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_ITEMW","package":"druntime","parentType":"","signature":"LV_ITEMW = LVITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_ITEMW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"LVFINDINFOA","package":"druntime","parentType":"","signature":"LVFINDINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LVFINDINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"LVFINDINFOW","package":"druntime","parentType":"","signature":"LVFINDINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LVFINDINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPFINDINFOA","package":"druntime","parentType":"","signature":"LPFINDINFOA = LVFINDINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPFINDINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_FINDINFOA","package":"druntime","parentType":"","signature":"LV_FINDINFOA = LVFINDINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_FINDINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPFINDINFOW","package":"druntime","parentType":"","signature":"LPFINDINFOW = LVFINDINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPFINDINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_FINDINFOW","package":"druntime","parentType":"","signature":"LV_FINDINFOW = LVFINDINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_FINDINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLVFINDITEMA","package":"druntime","parentType":"","signature":"NMLVFINDITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLVFINDITEMA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLVFINDITEMW","package":"druntime","parentType":"","signature":"NMLVFINDITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLVFINDITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PNMLVFINDITEMA","package":"druntime","parentType":"","signature":"PNMLVFINDITEMA = NMLVFINDITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PNMLVFINDITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PNMLVFINDITEMW","package":"druntime","parentType":"","signature":"PNMLVFINDITEMW = NMLVFINDITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PNMLVFINDITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPLVHITTESTINFO","package":"druntime","parentType":"","signature":"LPLVHITTESTINFO = LVHITTESTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPLVHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_HITTESTINFO","package":"druntime","parentType":"","signature":"LV_HITTESTINFO = LVHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_HITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPLVCOLUMNA","package":"druntime","parentType":"","signature":"LPLVCOLUMNA = LVCOLUMNA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPLVCOLUMNA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPLVCOLUMNW","package":"druntime","parentType":"","signature":"LPLVCOLUMNW = LVCOLUMNW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPLVCOLUMNW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_COLUMNA","package":"druntime","parentType":"","signature":"LV_COLUMNA = LVCOLUMNA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_COLUMNA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_COLUMNW","package":"druntime","parentType":"","signature":"LV_COLUMNW = LVCOLUMNW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_COLUMNW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PFNLVCOMPARE","package":"druntime","parentType":"","signature":"PFNLVCOMPARE = int  function(LPARAM,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PFNLVCOMPARE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLISTVIEW","package":"druntime","parentType":"","signature":"NMLISTVIEW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLISTVIEW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMLISTVIEW","package":"druntime","parentType":"","signature":"LPNMLISTVIEW = NMLISTVIEW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMLISTVIEW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"NM_LISTVIEW","package":"druntime","parentType":"","signature":"NM_LISTVIEW = NMLISTVIEW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NM_LISTVIEW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNM_LISTVIEW","package":"druntime","parentType":"","signature":"LPNM_LISTVIEW = LPNMLISTVIEW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNM_LISTVIEW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLVDISPINFOA","package":"druntime","parentType":"","signature":"NMLVDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLVDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMLVDISPINFOA","package":"druntime","parentType":"","signature":"LPNMLVDISPINFOA = NMLVDISPINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMLVDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_DISPINFOA","package":"druntime","parentType":"","signature":"LV_DISPINFOA = NMLVDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_DISPINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLVDISPINFOW","package":"druntime","parentType":"","signature":"NMLVDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLVDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMLVDISPINFOW","package":"druntime","parentType":"","signature":"LPNMLVDISPINFOW = NMLVDISPINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMLVDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LV_DISPINFOW","package":"druntime","parentType":"","signature":"LV_DISPINFOW = NMLVDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_DISPINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"LV_KEYDOWN","package":"druntime","parentType":"","signature":"LV_KEYDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LV_KEYDOWN"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMLVCACHEHINT","package":"druntime","parentType":"","signature":"NMLVCACHEHINT","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMLVCACHEHINT"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMLVCACHEHINT","package":"druntime","parentType":"","signature":"LPNMLVCACHEHINT = NMLVCACHEHINT *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMLVCACHEHINT"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"NM_CACHEHINT","package":"druntime","parentType":"","signature":"NM_CACHEHINT = NMLVCACHEHINT","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NM_CACHEHINT"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TVITEMA","package":"druntime","parentType":"","signature":"TVITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TVITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVITEMA","package":"druntime","parentType":"","signature":"LPTVITEMA = TVITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_ITEMA","package":"druntime","parentType":"","signature":"TV_ITEMA = TVITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_ITEMA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TVITEMW","package":"druntime","parentType":"","signature":"TVITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TVITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVITEMW","package":"druntime","parentType":"","signature":"LPTVITEMW = TVITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_ITEMW","package":"druntime","parentType":"","signature":"TV_ITEMW = TVITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_ITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVINSERTSTRUCTA","package":"druntime","parentType":"","signature":"LPTVINSERTSTRUCTA = TVINSERTSTRUCTA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVINSERTSTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_INSERTSTRUCTA","package":"druntime","parentType":"","signature":"TV_INSERTSTRUCTA = TVINSERTSTRUCTA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_INSERTSTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVINSERTSTRUCTW","package":"druntime","parentType":"","signature":"LPTVINSERTSTRUCTW = TVINSERTSTRUCTW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVINSERTSTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_INSERTSTRUCTW","package":"druntime","parentType":"","signature":"TV_INSERTSTRUCTW = TVINSERTSTRUCTW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_INSERTSTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TVHITTESTINFO","package":"druntime","parentType":"","signature":"TVHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TVHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVHITTESTINFO","package":"druntime","parentType":"","signature":"LPTVHITTESTINFO = TVHITTESTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_HITTESTINFO","package":"druntime","parentType":"","signature":"TV_HITTESTINFO = TVHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_HITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PFNTVCOMPARE","package":"druntime","parentType":"","signature":"PFNTVCOMPARE = int  function(LPARAM,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PFNTVCOMPARE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TVSORTCB","package":"druntime","parentType":"","signature":"TVSORTCB","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TVSORTCB"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTVSORTCB","package":"druntime","parentType":"","signature":"LPTVSORTCB = TVSORTCB *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTVSORTCB"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_SORTCB","package":"druntime","parentType":"","signature":"TV_SORTCB = TVSORTCB","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_SORTCB"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMTREEVIEWA","package":"druntime","parentType":"","signature":"NMTREEVIEWA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMTREEVIEWA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTREEVIEWA","package":"druntime","parentType":"","signature":"LPNMTREEVIEWA = NMTREEVIEWA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTREEVIEWA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"NM_TREEVIEWA","package":"druntime","parentType":"","signature":"NM_TREEVIEWA = NMTREEVIEWA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NM_TREEVIEWA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMTREEVIEWW","package":"druntime","parentType":"","signature":"NMTREEVIEWW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMTREEVIEWW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTREEVIEWW","package":"druntime","parentType":"","signature":"LPNMTREEVIEWW = NMTREEVIEWW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTREEVIEWW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"NM_TREEVIEWW","package":"druntime","parentType":"","signature":"NM_TREEVIEWW = NMTREEVIEWW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NM_TREEVIEWW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMTVDISPINFOA","package":"druntime","parentType":"","signature":"NMTVDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMTVDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTVDISPINFOA","package":"druntime","parentType":"","signature":"LPNMTVDISPINFOA = NMTVDISPINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTVDISPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_DISPINFOA","package":"druntime","parentType":"","signature":"TV_DISPINFOA = NMTVDISPINFOA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_DISPINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMTVDISPINFOW","package":"druntime","parentType":"","signature":"NMTVDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMTVDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMTVDISPINFOW","package":"druntime","parentType":"","signature":"LPNMTVDISPINFOW = NMTVDISPINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMTVDISPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TV_DISPINFOW","package":"druntime","parentType":"","signature":"TV_DISPINFOW = NMTVDISPINFOW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_DISPINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TV_KEYDOWN","package":"druntime","parentType":"","signature":"TV_KEYDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TV_KEYDOWN"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TC_ITEMHEADERA","package":"druntime","parentType":"","signature":"TC_ITEMHEADERA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_ITEMHEADERA"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TC_ITEMHEADERW","package":"druntime","parentType":"","signature":"TC_ITEMHEADERW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_ITEMHEADERW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTCITEMA","package":"druntime","parentType":"","signature":"LPTCITEMA = TCITEMA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTCITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TC_ITEMA","package":"druntime","parentType":"","signature":"TC_ITEMA = TCITEMA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_ITEMA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTCITEMW","package":"druntime","parentType":"","signature":"LPTCITEMW = TCITEMW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTCITEMW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TC_ITEMW","package":"druntime","parentType":"","signature":"TC_ITEMW = TCITEMW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_ITEMW"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TCHITTESTINFO","package":"druntime","parentType":"","signature":"TCHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TCHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPTCHITTESTINFO","package":"druntime","parentType":"","signature":"LPTCHITTESTINFO = TCHITTESTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPTCHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"TC_HITTESTINFO","package":"druntime","parentType":"","signature":"TC_HITTESTINFO = TCHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_HITTESTINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"TC_KEYDOWN","package":"druntime","parentType":"","signature":"TC_KEYDOWN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TC_KEYDOWN"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"PBRANGE","package":"druntime","parentType":"","signature":"PBRANGE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PBRANGE"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PPBRANGE","package":"druntime","parentType":"","signature":"PPBRANGE = PBRANGE *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PPBRANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"COLORSCHEME","package":"druntime","parentType":"","signature":"COLORSCHEME","url":"/ddoc/druntime/core/sys/windows/commctrl.html#COLORSCHEME"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPCOLORSCHEME","package":"druntime","parentType":"","signature":"LPCOLORSCHEME = COLORSCHEME *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPCOLORSCHEME"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"MCHITTESTINFO","package":"druntime","parentType":"","signature":"MCHITTESTINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#MCHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PMCHITTESTINFO","package":"druntime","parentType":"","signature":"PMCHITTESTINFO = MCHITTESTINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PMCHITTESTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"MONTHDAYSTATE","package":"druntime","parentType":"","signature":"MONTHDAYSTATE = DWORD","url":"/ddoc/druntime/core/sys/windows/commctrl.html#MONTHDAYSTATE"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPMONTHDAYSTATE","package":"druntime","parentType":"","signature":"LPMONTHDAYSTATE = MONTHDAYSTATE *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPMONTHDAYSTATE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"NMDAYSTATE","package":"druntime","parentType":"","signature":"NMDAYSTATE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#NMDAYSTATE"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPNMDAYSTATE","package":"druntime","parentType":"","signature":"LPNMDAYSTATE = NMDAYSTATE *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPNMDAYSTATE"},{"doc":"","kind":"struct","module":"core.sys.windows.commctrl","name":"REBARINFO","package":"druntime","parentType":"","signature":"REBARINFO","url":"/ddoc/druntime/core/sys/windows/commctrl.html#REBARINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPREBARINFO","package":"druntime","parentType":"","signature":"LPREBARINFO = REBARINFO *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPREBARINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPREBARBANDINFOA","package":"druntime","parentType":"","signature":"LPREBARBANDINFOA = REBARBANDINFOA *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPREBARBANDINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPCREBARBANDINFOA","package":"druntime","parentType":"","signature":"LPCREBARBANDINFOA = const(REBARBANDINFOA) *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPCREBARBANDINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPREBARBANDINFOW","package":"druntime","parentType":"","signature":"LPREBARBANDINFOW = REBARBANDINFOW *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPREBARBANDINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"LPCREBARBANDINFOW","package":"druntime","parentType":"","signature":"LPCREBARBANDINFOW = const(REBARBANDINFOW) *","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPCREBARBANDINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HDSA","package":"druntime","parentType":"","signature":"HDSA = HANDLE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HDSA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"HDPA","package":"druntime","parentType":"","signature":"HDPA = HANDLE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HDPA"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PFNDPAENUMCALLBACK","package":"druntime","parentType":"","signature":"PFNDPAENUMCALLBACK = INT function(PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PFNDPAENUMCALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PFNDSAENUMCALLBACK","package":"druntime","parentType":"","signature":"PFNDSAENUMCALLBACK = INT function(PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PFNDSAENUMCALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"PFNDPACOMPARE","package":"druntime","parentType":"","signature":"PFNDPACOMPARE = INT function(PVOID,  PVOID,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#PFNDPACOMPARE"},{"doc":"","kind":"alias","module":"core.sys.windows.commctrl","name":"_prm_FORWARD_WM_NOTIFY","package":"druntime","parentType":"","signature":"_prm_FORWARD_WM_NOTIFY = LRESULT function(HWND hWnd,  UINT Msg,  WPARAM wParam,  LPARAM lParam)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#_prm_FORWARD_WM_NOTIFY"},{"doc":"","kind":"template","module":"core.sys.windows.commctrl","name":"HANDLE_WM_NOTIFY","package":"druntime","parentType":"","signature":"HANDLE_WM_NOTIFY(R)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HANDLE_WM_NOTIFY"},{"doc":"","kind":"function","module":"core.sys.windows.commctrl","name":"HANDLE_WM_NOTIFY","package":"druntime","parentType":"","signature":"R HANDLE_WM_NOTIFY(HWND hwnd,  WPARAM wParam,  LPARAM lParam,  _prm_HANDLE_WM_NOTIFY fn)","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HANDLE_WM_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"COMCTL32_VERSION","package":"druntime","parentType":"","signature":"COMCTL32_VERSION","url":"/ddoc/druntime/core/sys/windows/commctrl.html#COMCTL32_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"DRAGLISTMSGSTRING","package":"druntime","parentType":"","signature":"TCHAR[] DRAGLISTMSGSTRING","url":"/ddoc/druntime/core/sys/windows/commctrl.html#DRAGLISTMSGSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"CBEMAXSTRLEN","package":"druntime","parentType":"","signature":"CBEMAXSTRLEN","url":"/ddoc/druntime/core/sys/windows/commctrl.html#CBEMAXSTRLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"CMB_MASKED","package":"druntime","parentType":"","signature":"CMB_MASKED","url":"/ddoc/druntime/core/sys/windows/commctrl.html#CMB_MASKED"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"MINSYSCOMMAND","package":"druntime","parentType":"","signature":"MINSYSCOMMAND","url":"/ddoc/druntime/core/sys/windows/commctrl.html#MINSYSCOMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"HINST_COMMCTRL","package":"druntime","parentType":"","signature":"HINST_COMMCTRL","url":"/ddoc/druntime/core/sys/windows/commctrl.html#HINST_COMMCTRL"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"TBBF_LARGE","package":"druntime","parentType":"","signature":"TBBF_LARGE","url":"/ddoc/druntime/core/sys/windows/commctrl.html#TBBF_LARGE"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"UD_MAXVAL","package":"druntime","parentType":"","signature":"UD_MAXVAL","url":"/ddoc/druntime/core/sys/windows/commctrl.html#UD_MAXVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"UD_MINVAL","package":"druntime","parentType":"","signature":"UD_MINVAL","url":"/ddoc/druntime/core/sys/windows/commctrl.html#UD_MINVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"LPSTR_TEXTCALLBACKW","package":"druntime","parentType":"","signature":"LPWSTR LPSTR_TEXTCALLBACKW","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPSTR_TEXTCALLBACKW"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"LPSTR_TEXTCALLBACKA","package":"druntime","parentType":"","signature":"LPSTR LPSTR_TEXTCALLBACKA","url":"/ddoc/druntime/core/sys/windows/commctrl.html#LPSTR_TEXTCALLBACKA"},{"doc":"","kind":"variable","module":"core.sys.windows.commctrl","name":"I_IMAGECALLBACK","package":"druntime","parentType":"","signature":"I_IMAGECALLBACK","url":"/ddoc/druntime/core/sys/windows/commctrl.html#I_IMAGECALLBACK"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.commdlg","name":"core.sys.windows.commdlg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/commdlg.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ChooseColorA","package":"druntime","parentType":"","signature":"BOOL ChooseColorA(LPCHOOSECOLORA)","url":"/ddoc/druntime/core/sys/windows/commdlg/ChooseColorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ChooseColorW","package":"druntime","parentType":"","signature":"BOOL ChooseColorW(LPCHOOSECOLORW)","url":"/ddoc/druntime/core/sys/windows/commdlg/ChooseColorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ChooseFontA","package":"druntime","parentType":"","signature":"BOOL ChooseFontA(LPCHOOSEFONTA)","url":"/ddoc/druntime/core/sys/windows/commdlg/ChooseFontA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ChooseFontW","package":"druntime","parentType":"","signature":"BOOL ChooseFontW(LPCHOOSEFONTW)","url":"/ddoc/druntime/core/sys/windows/commdlg/ChooseFontW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"CommDlgExtendedError","package":"druntime","parentType":"","signature":"DWORD CommDlgExtendedError()","url":"/ddoc/druntime/core/sys/windows/commdlg/CommDlgExtendedError.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"FindTextA","package":"druntime","parentType":"","signature":"HWND FindTextA(LPFINDREPLACEA)","url":"/ddoc/druntime/core/sys/windows/commdlg/FindTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"FindTextW","package":"druntime","parentType":"","signature":"HWND FindTextW(LPFINDREPLACEW)","url":"/ddoc/druntime/core/sys/windows/commdlg/FindTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetFileTitleA","package":"druntime","parentType":"","signature":"short GetFileTitleA(LPCSTR,  LPSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetFileTitleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetFileTitleW","package":"druntime","parentType":"","signature":"short GetFileTitleW(LPCWSTR,  LPWSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetFileTitleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetOpenFileNameA","package":"druntime","parentType":"","signature":"BOOL GetOpenFileNameA(LPOPENFILENAMEA)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetOpenFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetOpenFileNameW","package":"druntime","parentType":"","signature":"BOOL GetOpenFileNameW(LPOPENFILENAMEW)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetOpenFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetSaveFileNameA","package":"druntime","parentType":"","signature":"BOOL GetSaveFileNameA(LPOPENFILENAMEA)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetSaveFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"GetSaveFileNameW","package":"druntime","parentType":"","signature":"BOOL GetSaveFileNameW(LPOPENFILENAMEW)","url":"/ddoc/druntime/core/sys/windows/commdlg/GetSaveFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PageSetupDlgA","package":"druntime","parentType":"","signature":"BOOL PageSetupDlgA(LPPAGESETUPDLGA)","url":"/ddoc/druntime/core/sys/windows/commdlg/PageSetupDlgA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PageSetupDlgW","package":"druntime","parentType":"","signature":"BOOL PageSetupDlgW(LPPAGESETUPDLGW)","url":"/ddoc/druntime/core/sys/windows/commdlg/PageSetupDlgW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PrintDlgA","package":"druntime","parentType":"","signature":"BOOL PrintDlgA(LPPRINTDLGA)","url":"/ddoc/druntime/core/sys/windows/commdlg/PrintDlgA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PrintDlgW","package":"druntime","parentType":"","signature":"BOOL PrintDlgW(LPPRINTDLGW)","url":"/ddoc/druntime/core/sys/windows/commdlg/PrintDlgW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ReplaceTextA","package":"druntime","parentType":"","signature":"HWND ReplaceTextA(LPFINDREPLACEA)","url":"/ddoc/druntime/core/sys/windows/commdlg/ReplaceTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"ReplaceTextW","package":"druntime","parentType":"","signature":"HWND ReplaceTextW(LPFINDREPLACEW)","url":"/ddoc/druntime/core/sys/windows/commdlg/ReplaceTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PrintDlgExA","package":"druntime","parentType":"","signature":"HRESULT PrintDlgExA(LPPRINTDLGEXA)","url":"/ddoc/druntime/core/sys/windows/commdlg/PrintDlgExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.commdlg","name":"PrintDlgExW","package":"druntime","parentType":"","signature":"HRESULT PrintDlgExW(LPPRINTDLGEXW)","url":"/ddoc/druntime/core/sys/windows/commdlg/PrintDlgExW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCCHOOKPROC","package":"druntime","parentType":"","signature":"LPCCHOOKPROC = UINT_PTR function (HWND,  UINT,  WPARAM,  LPARAM)  nothrow","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCCHOOKPROC"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"CHOOSECOLORA","package":"druntime","parentType":"","signature":"CHOOSECOLORA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#CHOOSECOLORA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSECOLORA","package":"druntime","parentType":"","signature":"LPCHOOSECOLORA = CHOOSECOLORA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSECOLORA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"CHOOSECOLORW","package":"druntime","parentType":"","signature":"CHOOSECOLORW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#CHOOSECOLORW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSECOLORW","package":"druntime","parentType":"","signature":"LPCHOOSECOLORW = CHOOSECOLORW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSECOLORW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"CHOOSEFONTA","package":"druntime","parentType":"","signature":"CHOOSEFONTA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#CHOOSEFONTA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSEFONTA","package":"druntime","parentType":"","signature":"LPCHOOSEFONTA = CHOOSEFONTA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSEFONTA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"CHOOSEFONTW","package":"druntime","parentType":"","signature":"CHOOSEFONTW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#CHOOSEFONTW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSEFONTW","package":"druntime","parentType":"","signature":"LPCHOOSEFONTW = CHOOSEFONTW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSEFONTW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"DEVNAMES","package":"druntime","parentType":"","signature":"DEVNAMES","url":"/ddoc/druntime/core/sys/windows/commdlg.html#DEVNAMES"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPDEVNAMES","package":"druntime","parentType":"","signature":"LPDEVNAMES = DEVNAMES *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPDEVNAMES"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"FINDREPLACEA","package":"druntime","parentType":"","signature":"FINDREPLACEA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#FINDREPLACEA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPFINDREPLACEA","package":"druntime","parentType":"","signature":"LPFINDREPLACEA = FINDREPLACEA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPFINDREPLACEA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"FINDREPLACEW","package":"druntime","parentType":"","signature":"FINDREPLACEW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#FINDREPLACEW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPFINDREPLACEW","package":"druntime","parentType":"","signature":"LPFINDREPLACEW = FINDREPLACEW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPFINDREPLACEW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"OPENFILENAMEA","package":"druntime","parentType":"","signature":"OPENFILENAMEA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#OPENFILENAMEA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOPENFILENAMEA","package":"druntime","parentType":"","signature":"LPOPENFILENAMEA = OPENFILENAMEA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOPENFILENAMEA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"OPENFILENAMEW","package":"druntime","parentType":"","signature":"OPENFILENAMEW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#OPENFILENAMEW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOPENFILENAMEW","package":"druntime","parentType":"","signature":"LPOPENFILENAMEW = OPENFILENAMEW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOPENFILENAMEW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"OFNOTIFYA","package":"druntime","parentType":"","signature":"OFNOTIFYA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#OFNOTIFYA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOFNOTIFYA","package":"druntime","parentType":"","signature":"LPOFNOTIFYA = OFNOTIFYA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOFNOTIFYA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"OFNOTIFYW","package":"druntime","parentType":"","signature":"OFNOTIFYW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#OFNOTIFYW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOFNOTIFYW","package":"druntime","parentType":"","signature":"LPOFNOTIFYW = OFNOTIFYW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOFNOTIFYW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PAGESETUPDLGA","package":"druntime","parentType":"","signature":"PAGESETUPDLGA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PAGESETUPDLGA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPAGESETUPDLGA","package":"druntime","parentType":"","signature":"LPPAGESETUPDLGA = PAGESETUPDLGA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPAGESETUPDLGA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PAGESETUPDLGW","package":"druntime","parentType":"","signature":"PAGESETUPDLGW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PAGESETUPDLGW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPAGESETUPDLGW","package":"druntime","parentType":"","signature":"LPPAGESETUPDLGW = PAGESETUPDLGW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPAGESETUPDLGW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PRINTDLGA","package":"druntime","parentType":"","signature":"PRINTDLGA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PRINTDLGA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLGA","package":"druntime","parentType":"","signature":"LPPRINTDLGA = PRINTDLGA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLGA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PRINTDLGW","package":"druntime","parentType":"","signature":"PRINTDLGW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PRINTDLGW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLGW","package":"druntime","parentType":"","signature":"LPPRINTDLGW = PRINTDLGW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLGW"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PRINTPAGERANGE","package":"druntime","parentType":"","signature":"PRINTPAGERANGE","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PRINTPAGERANGE"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTPAGERANGE","package":"druntime","parentType":"","signature":"LPPRINTPAGERANGE = PRINTPAGERANGE *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTPAGERANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PRINTDLGEXA","package":"druntime","parentType":"","signature":"PRINTDLGEXA","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PRINTDLGEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLGEXA","package":"druntime","parentType":"","signature":"LPPRINTDLGEXA = PRINTDLGEXA *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLGEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.commdlg","name":"PRINTDLGEXW","package":"druntime","parentType":"","signature":"PRINTDLGEXW","url":"/ddoc/druntime/core/sys/windows/commdlg.html#PRINTDLGEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLGEXW","package":"druntime","parentType":"","signature":"LPPRINTDLGEXW = PRINTDLGEXW *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLGEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSECOLOR","package":"druntime","parentType":"","signature":"LPCHOOSECOLOR = CHOOSECOLOR *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSECOLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPCHOOSEFONT","package":"druntime","parentType":"","signature":"LPCHOOSEFONT = CHOOSEFONT *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPCHOOSEFONT"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPFINDREPLACE","package":"druntime","parentType":"","signature":"LPFINDREPLACE = FINDREPLACE *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPFINDREPLACE"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOPENFILENAME","package":"druntime","parentType":"","signature":"LPOPENFILENAME = OPENFILENAME *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOPENFILENAME"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPOFNOTIFY","package":"druntime","parentType":"","signature":"LPOFNOTIFY = OFNOTIFY *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPOFNOTIFY"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPAGESETUPDLG","package":"druntime","parentType":"","signature":"LPPAGESETUPDLG = PAGESETUPDLG *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPAGESETUPDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLG","package":"druntime","parentType":"","signature":"LPPRINTDLG = PRINTDLG *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.commdlg","name":"LPPRINTDLGEX","package":"druntime","parentType":"","signature":"LPPRINTDLGEX = PRINTDLGEX *","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LPPRINTDLGEX"},{"doc":"","kind":"variable","module":"core.sys.windows.commdlg","name":"LBSELCHSTRING","package":"druntime","parentType":"","signature":"TCHAR[] LBSELCHSTRING","url":"/ddoc/druntime/core/sys/windows/commdlg.html#LBSELCHSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.commdlg","name":"START_PAGE_GENERAL","package":"druntime","parentType":"","signature":"DWORD START_PAGE_GENERAL","url":"/ddoc/druntime/core/sys/windows/commdlg.html#START_PAGE_GENERAL"},{"doc":"","kind":"variable","module":"core.sys.windows.commdlg","name":"DN_DEFAULTPRN","package":"druntime","parentType":"","signature":"WORD DN_DEFAULTPRN","url":"/ddoc/druntime/core/sys/windows/commdlg.html#DN_DEFAULTPRN"},{"doc":"","kind":"variable","module":"core.sys.windows.commdlg","name":"OPENFILENAME_SIZE_VERSION_400","package":"druntime","parentType":"","signature":"size_t OPENFILENAME_SIZE_VERSION_400","url":"/ddoc/druntime/core/sys/windows/commdlg.html#OPENFILENAME_SIZE_VERSION_400"},{"doc":"Helper module for the Windows API","kind":"module","module":"core.sys.windows.core","name":"core.sys.windows.core","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/core.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.cpl","name":"core.sys.windows.cpl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/cpl.html"},{"doc":"","kind":"alias","module":"core.sys.windows.cpl","name":"APPLET_PROC","package":"druntime","parentType":"","signature":"APPLET_PROC = LONG function(HWND,  UINT,  LONG,  LONG)","url":"/ddoc/druntime/core/sys/windows/cpl.html#APPLET_PROC"},{"doc":"","kind":"struct","module":"core.sys.windows.cpl","name":"CPLINFO","package":"druntime","parentType":"","signature":"CPLINFO","url":"/ddoc/druntime/core/sys/windows/cpl.html#CPLINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.cpl","name":"LPCPLINFO","package":"druntime","parentType":"","signature":"LPCPLINFO = CPLINFO *","url":"/ddoc/druntime/core/sys/windows/cpl.html#LPCPLINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.cpl","name":"NEWCPLINFOA","package":"druntime","parentType":"","signature":"NEWCPLINFOA","url":"/ddoc/druntime/core/sys/windows/cpl.html#NEWCPLINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.cpl","name":"LPNEWCPLINFOA","package":"druntime","parentType":"","signature":"LPNEWCPLINFOA = NEWCPLINFOA *","url":"/ddoc/druntime/core/sys/windows/cpl.html#LPNEWCPLINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.cpl","name":"NEWCPLINFOW","package":"druntime","parentType":"","signature":"NEWCPLINFOW","url":"/ddoc/druntime/core/sys/windows/cpl.html#NEWCPLINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.cpl","name":"LPNEWCPLINFOW","package":"druntime","parentType":"","signature":"LPNEWCPLINFOW = NEWCPLINFOW *","url":"/ddoc/druntime/core/sys/windows/cpl.html#LPNEWCPLINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.cpl","name":"LPNEWCPLINFO","package":"druntime","parentType":"","signature":"LPNEWCPLINFO = NEWCPLINFO *","url":"/ddoc/druntime/core/sys/windows/cpl.html#LPNEWCPLINFO"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.cplext","name":"core.sys.windows.cplext","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/cplext.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.custcntl","name":"core.sys.windows.custcntl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/custcntl.html"},{"doc":"","kind":"function","module":"core.sys.windows.custcntl","name":"CustomControlInfoA","package":"druntime","parentType":"","signature":"UINT CustomControlInfoA(LPCCINFOA acci)","url":"/ddoc/druntime/core/sys/windows/custcntl/CustomControlInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.custcntl","name":"CustomControlInfoW","package":"druntime","parentType":"","signature":"UINT CustomControlInfoW(LPCCINFOW acci)","url":"/ddoc/druntime/core/sys/windows/custcntl/CustomControlInfoW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCSTYLEA","package":"druntime","parentType":"","signature":"CCSTYLEA","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCSTYLEA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLEA","package":"druntime","parentType":"","signature":"LPCCSTYLEA = CCSTYLEA *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLEA"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCSTYLEW","package":"druntime","parentType":"","signature":"CCSTYLEW","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCSTYLEW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLEW","package":"druntime","parentType":"","signature":"LPCCSTYLEW = CCSTYLEW *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLEW"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCSTYLEFLAGA","package":"druntime","parentType":"","signature":"CCSTYLEFLAGA","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCSTYLEFLAGA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLEFLAGA","package":"druntime","parentType":"","signature":"LPCCSTYLEFLAGA = CCSTYLEFLAGA *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLEFLAGA"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCSTYLEFLAGW","package":"druntime","parentType":"","signature":"CCSTYLEFLAGW","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCSTYLEFLAGW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLEFLAGW","package":"druntime","parentType":"","signature":"LPCCSTYLEFLAGW = CCSTYLEFLAGW *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLEFLAGW"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCINFOA","package":"druntime","parentType":"","signature":"CCINFOA","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCINFOA","package":"druntime","parentType":"","signature":"LPCCINFOA = CCINFOA *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.custcntl","name":"CCINFOW","package":"druntime","parentType":"","signature":"CCINFOW","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCINFOW","package":"druntime","parentType":"","signature":"LPCCINFOW = CCINFOW *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCSTYLEA","package":"druntime","parentType":"","signature":"LPFNCCSTYLEA = BOOL function(HWND,  LPCCSTYLEA)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCSTYLEA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCSTYLEW","package":"druntime","parentType":"","signature":"LPFNCCSTYLEW = BOOL function(HWND,  LPCCSTYLEW)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCSTYLEW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCSIZETOTEXTA","package":"druntime","parentType":"","signature":"LPFNCCSIZETOTEXTA = INT function(DWORD,  DWORD,  HFONT,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCSIZETOTEXTA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCSIZETOTEXTW","package":"druntime","parentType":"","signature":"LPFNCCSIZETOTEXTW = INT function(DWORD,  DWORD,  HFONT,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCSIZETOTEXTW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCINFOA","package":"druntime","parentType":"","signature":"LPFNCCINFOA = UINT function(LPCCINFOA)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPFNCCINFOW","package":"druntime","parentType":"","signature":"LPFNCCINFOW = UINT function(LPCCINFOW)","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPFNCCINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLE","package":"druntime","parentType":"","signature":"LPCCSTYLE = CCSTYLE *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLE"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCSTYLEFLAG","package":"druntime","parentType":"","signature":"LPCCSTYLEFLAG = CCSTYLEFLAG *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCSTYLEFLAG"},{"doc":"","kind":"alias","module":"core.sys.windows.custcntl","name":"LPCCINFO","package":"druntime","parentType":"","signature":"LPCCINFO = CCINFO *","url":"/ddoc/druntime/core/sys/windows/custcntl.html#LPCCINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.custcntl","name":"CCF_NOTEXT","package":"druntime","parentType":"","signature":"CCF_NOTEXT","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCF_NOTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.custcntl","name":"CCHCCCLASS","package":"druntime","parentType":"","signature":"size_t CCHCCCLASS","url":"/ddoc/druntime/core/sys/windows/custcntl.html#CCHCCCLASS"},{"doc":"...","kind":"module","module":"core.sys.windows.dbghelp","name":"core.sys.windows.dbghelp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dbghelp.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"ReadProcessMemoryProc64","package":"druntime","parentType":"","signature":"ReadProcessMemoryProc64 = BOOL         function(HANDLE hProcess,  DWORD64 lpBaseAddress,  PVOID lpBuffer,  DWORD nSize,  LPDWORD lpNumberOfBytesRead)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#ReadProcessMemoryProc64"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"FunctionTableAccessProc64","package":"druntime","parentType":"","signature":"FunctionTableAccessProc64 = PVOID        function(HANDLE hProcess,  DWORD64 AddrBase)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#FunctionTableAccessProc64"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"GetModuleBaseProc64","package":"druntime","parentType":"","signature":"GetModuleBaseProc64 = DWORD64      function(HANDLE hProcess,  DWORD64 Address)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#GetModuleBaseProc64"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"TranslateAddressProc64","package":"druntime","parentType":"","signature":"TranslateAddressProc64 = DWORD64      function(HANDLE hProcess,  HANDLE hThread,  ADDRESS64 * lpaddr)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#TranslateAddressProc64"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymInitializeFunc","package":"druntime","parentType":"","signature":"SymInitializeFunc = BOOL         function(HANDLE hProcess,  PCSTR UserSearchPath,  bool  fInvadeProcess)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymInitializeFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymCleanupFunc","package":"druntime","parentType":"","signature":"SymCleanupFunc = BOOL         function(HANDLE hProcess)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymCleanupFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymSetOptionsFunc","package":"druntime","parentType":"","signature":"SymSetOptionsFunc = DWORD        function(DWORD SymOptions)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymSetOptionsFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetOptionsFunc","package":"druntime","parentType":"","signature":"SymGetOptionsFunc = DWORD        function()","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetOptionsFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymFunctionTableAccess64Func","package":"druntime","parentType":"","signature":"SymFunctionTableAccess64Func = PVOID        function(HANDLE hProcess,  DWORD64 AddrBase)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymFunctionTableAccess64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"StackWalk64Func","package":"druntime","parentType":"","signature":"StackWalk64Func = BOOL         function(DWORD MachineType,  HANDLE hProcess,  HANDLE hThread,  STACKFRAME64 * StackFrame,  PVOID ContextRecord,\n                                 ReadProcessMemoryProc64 ReadMemoryRoutine,  FunctionTableAccessProc64 FunctoinTableAccess,\n                                 GetModuleBaseProc64 GetModuleBaseRoutine,  TranslateAddressProc64 TranslateAddress) @nogc","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#StackWalk64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetLineFromAddr64Func","package":"druntime","parentType":"","signature":"SymGetLineFromAddr64Func = BOOL         function(HANDLE hProcess,  DWORD64 dwAddr,  PDWORD pdwDisplacement,  IMAGEHLP_LINEA64 * line)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetLineFromAddr64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetModuleBase64Func","package":"druntime","parentType":"","signature":"SymGetModuleBase64Func = DWORD64      function(HANDLE hProcess,  DWORD64 dwAddr)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetModuleBase64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetModuleInfo64Func","package":"druntime","parentType":"","signature":"SymGetModuleInfo64Func = BOOL         function(HANDLE hProcess,  DWORD64 dwAddr,  IMAGEHLP_MODULEA64 * ModuleInfo)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetModuleInfo64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetSymFromAddr64Func","package":"druntime","parentType":"","signature":"SymGetSymFromAddr64Func = BOOL         function(HANDLE hProcess,  DWORD64 Address,  DWORD64 * Displacement,  IMAGEHLP_SYMBOLA64 * Symbol)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetSymFromAddr64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"UnDecorateSymbolNameFunc","package":"druntime","parentType":"","signature":"UnDecorateSymbolNameFunc = DWORD        function(PCSTR DecoratedName,  PSTR UnDecoratedName,  DWORD UndecoratedLength,  DWORD Flags)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#UnDecorateSymbolNameFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymLoadModule64Func","package":"druntime","parentType":"","signature":"SymLoadModule64Func = DWORD64      function(HANDLE hProcess,  HANDLE hFile,  PCSTR ImageName,  PCSTR ModuleName,  DWORD64 BaseOfDll,  DWORD SizeOfDll)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymLoadModule64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymGetSearchPathFunc","package":"druntime","parentType":"","signature":"SymGetSearchPathFunc = BOOL         function(HANDLE hProcess,  PSTR SearchPath,  DWORD SearchPathLength)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymGetSearchPathFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymSetSearchPathFunc","package":"druntime","parentType":"","signature":"SymSetSearchPathFunc = BOOL         function(HANDLE hProcess,  PCSTR SearchPath)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymSetSearchPathFunc"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymUnloadModule64Func","package":"druntime","parentType":"","signature":"SymUnloadModule64Func = BOOL         function(HANDLE hProcess,  DWORD64 Address)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymUnloadModule64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"PSYMBOL_REGISTERED_CALLBACK64","package":"druntime","parentType":"","signature":"PSYMBOL_REGISTERED_CALLBACK64 = BOOL         function(HANDLE hProcess,  ULONG ActionCode,  ulong  CallbackContext,  ulong  UserContext)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#PSYMBOL_REGISTERED_CALLBACK64"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"SymRegisterCallback64Func","package":"druntime","parentType":"","signature":"SymRegisterCallback64Func = BOOL         function(HANDLE hProcess,  PSYMBOL_REGISTERED_CALLBACK64 CallbackFunction,  ulong  UserContext)","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#SymRegisterCallback64Func"},{"doc":"","kind":"alias","module":"core.sys.windows.dbghelp","name":"ImagehlpApiVersionFunc","package":"druntime","parentType":"","signature":"ImagehlpApiVersionFunc = API_VERSION *  function()","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#ImagehlpApiVersionFunc"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp","name":"DbgHelp","package":"druntime","parentType":"","signature":"DbgHelp","url":"/ddoc/druntime/core/sys/windows/dbghelp.html#DbgHelp"},{"doc":"","kind":"method","module":"core.sys.windows.dbghelp","name":"get","package":"druntime","parentType":"DbgHelp","signature":"DbgHelp * get()","url":"/ddoc/druntime/core/sys/windows/dbghelp/DbgHelp.get.html"},{"doc":"...","kind":"module","module":"core.sys.windows.dbghelp_types","name":"core.sys.windows.dbghelp_types","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"ADDRESS64","package":"druntime","parentType":"","signature":"ADDRESS64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#ADDRESS64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"KDHELP64","package":"druntime","parentType":"","signature":"KDHELP64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#KDHELP64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"STACKFRAME64","package":"druntime","parentType":"","signature":"STACKFRAME64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#STACKFRAME64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_LINEA64","package":"druntime","parentType":"","signature":"IMAGEHLP_LINEA64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_LINEA64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_LINEW64","package":"druntime","parentType":"","signature":"IMAGEHLP_LINEW64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_LINEW64"},{"doc":"","kind":"enum","module":"core.sys.windows.dbghelp_types","name":"SYM_TYPE","package":"druntime","parentType":"","signature":"SYM_TYPE : int","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymNone","package":"druntime","parentType":"","signature":"SymNone = 0","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymCoff","package":"druntime","parentType":"","signature":"SymCoff = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymCv","package":"druntime","parentType":"","signature":"SymCv = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymPdb","package":"druntime","parentType":"","signature":"SymPdb = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymExport","package":"druntime","parentType":"","signature":"SymExport = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymDeferred","package":"druntime","parentType":"","signature":"SymDeferred = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymSym","package":"druntime","parentType":"","signature":"SymSym = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymDia","package":"druntime","parentType":"","signature":"SymDia = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"SymVirtual","package":"druntime","parentType":"","signature":"SymVirtual = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.dbghelp_types","name":"NumSymTypes","package":"druntime","parentType":"","signature":"NumSymTypes = ","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#SYM_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_MODULEA64","package":"druntime","parentType":"","signature":"IMAGEHLP_MODULEA64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_MODULEA64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_MODULEW64","package":"druntime","parentType":"","signature":"IMAGEHLP_MODULEW64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_MODULEW64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_SYMBOLA64","package":"druntime","parentType":"","signature":"IMAGEHLP_SYMBOLA64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_SYMBOLA64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_SYMBOLW64","package":"druntime","parentType":"","signature":"IMAGEHLP_SYMBOLW64","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_SYMBOLW64"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"IMAGEHLP_CBA_READ_MEMORY","package":"druntime","parentType":"","signature":"IMAGEHLP_CBA_READ_MEMORY","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#IMAGEHLP_CBA_READ_MEMORY"},{"doc":"","kind":"struct","module":"core.sys.windows.dbghelp_types","name":"API_VERSION","package":"druntime","parentType":"","signature":"API_VERSION","url":"/ddoc/druntime/core/sys/windows/dbghelp_types.html#API_VERSION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.dbt","name":"core.sys.windows.dbt","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dbt.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_HDR","package":"druntime","parentType":"","signature":"DEV_BROADCAST_HDR","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_HDR"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_HDR","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_HDR = DEV_BROADCAST_HDR *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_HDR"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_OEM","package":"druntime","parentType":"","signature":"DEV_BROADCAST_OEM","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_OEM"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_OEM","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_OEM = DEV_BROADCAST_OEM *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_OEM"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_PORT_A","package":"druntime","parentType":"","signature":"DEV_BROADCAST_PORT_A","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_PORT_A"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbcp_name","package":"druntime","parentType":"DEV_BROADCAST_PORT_A","signature":"char * dbcp_name()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_PORT_A.dbcp_name.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_PORT_A","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_PORT_A = DEV_BROADCAST_PORT_A *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_PORT_A"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_PORT_W","package":"druntime","parentType":"","signature":"DEV_BROADCAST_PORT_W","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_PORT_W"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbcp_name","package":"druntime","parentType":"DEV_BROADCAST_PORT_W","signature":"WCHAR * dbcp_name()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_PORT_W.dbcp_name.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_PORT_W","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_PORT_W = DEV_BROADCAST_PORT_W *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_PORT_W"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_USERDEFINED","package":"druntime","parentType":"","signature":"DEV_BROADCAST_USERDEFINED","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_USERDEFINED"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbud_szName","package":"druntime","parentType":"DEV_BROADCAST_USERDEFINED","signature":"char * dbud_szName()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_USERDEFINED.dbud_szName.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_VOLUME","package":"druntime","parentType":"","signature":"DEV_BROADCAST_VOLUME","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_VOLUME"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_VOLUME","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_VOLUME = DEV_BROADCAST_VOLUME *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_VOLUME"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_PORT","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_PORT = DEV_BROADCAST_PORT *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_PORT"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_DEVICEINTERFACE_A","package":"druntime","parentType":"","signature":"DEV_BROADCAST_DEVICEINTERFACE_A","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_DEVICEINTERFACE_A"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbcc_name","package":"druntime","parentType":"DEV_BROADCAST_DEVICEINTERFACE_A","signature":"char * dbcc_name()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_DEVICEINTERFACE_A.dbcc_name.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_DEVICEINTERFACE_A","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_DEVICEINTERFACE_A = DEV_BROADCAST_DEVICEINTERFACE_A *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_DEVICEINTERFACE_A"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_DEVICEINTERFACE_W","package":"druntime","parentType":"","signature":"DEV_BROADCAST_DEVICEINTERFACE_W","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_DEVICEINTERFACE_W"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbcc_name","package":"druntime","parentType":"DEV_BROADCAST_DEVICEINTERFACE_W","signature":"WCHAR * dbcc_name()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_DEVICEINTERFACE_W.dbcc_name.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_DEVICEINTERFACE_W","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_DEVICEINTERFACE_W = DEV_BROADCAST_DEVICEINTERFACE_W *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_DEVICEINTERFACE_W"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_DEVICEINTERFACE","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_DEVICEINTERFACE = DEV_BROADCAST_DEVICEINTERFACE *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_DEVICEINTERFACE"},{"doc":"","kind":"struct","module":"core.sys.windows.dbt","name":"DEV_BROADCAST_HANDLE","package":"druntime","parentType":"","signature":"DEV_BROADCAST_HANDLE","url":"/ddoc/druntime/core/sys/windows/dbt.html#DEV_BROADCAST_HANDLE"},{"doc":"","kind":"method","module":"core.sys.windows.dbt","name":"dbch_data","package":"druntime","parentType":"DEV_BROADCAST_HANDLE","signature":"BYTE * dbch_data()","url":"/ddoc/druntime/core/sys/windows/dbt/DEV_BROADCAST_HANDLE.dbch_data.html"},{"doc":"","kind":"alias","module":"core.sys.windows.dbt","name":"PDEV_BROADCAST_HANDLE","package":"druntime","parentType":"","signature":"PDEV_BROADCAST_HANDLE = DEV_BROADCAST_HANDLE *","url":"/ddoc/druntime/core/sys/windows/dbt.html#PDEV_BROADCAST_HANDLE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.dde","name":"core.sys.windows.dde","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dde.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"DdeSetQualityOfService","package":"druntime","parentType":"","signature":"BOOL DdeSetQualityOfService(HWND,  const(SECURITY_QUALITY_OF_SERVICE) *,\n       PSECURITY_QUALITY_OF_SERVICE)","url":"/ddoc/druntime/core/sys/windows/dde/DdeSetQualityOfService.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"ImpersonateDdeClientWindow","package":"druntime","parentType":"","signature":"BOOL ImpersonateDdeClientWindow(HWND,  HWND)","url":"/ddoc/druntime/core/sys/windows/dde/ImpersonateDdeClientWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"PackDDElParam","package":"druntime","parentType":"","signature":"LPARAM PackDDElParam(UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/dde/PackDDElParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"UnpackDDElParam","package":"druntime","parentType":"","signature":"BOOL UnpackDDElParam(UINT,  LPARAM,  PUINT_PTR,  PUINT_PTR)","url":"/ddoc/druntime/core/sys/windows/dde/UnpackDDElParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"FreeDDElParam","package":"druntime","parentType":"","signature":"BOOL FreeDDElParam(UINT,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/dde/FreeDDElParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.dde","name":"ReuseDDElParam","package":"druntime","parentType":"","signature":"LPARAM ReuseDDElParam(LPARAM,  UINT,  UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/dde/ReuseDDElParam.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDEACK","package":"druntime","parentType":"","signature":"DDEACK","url":"/ddoc/druntime/core/sys/windows/dde.html#DDEACK"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEACK","signature":"ubyte reserved()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fBusy","package":"druntime","parentType":"DDEACK","signature":"bool fBusy()","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.fBusy.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAck","package":"druntime","parentType":"DDEACK","signature":"bool fAck()","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.fAck.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEACK","signature":"ubyte reserved(ubyte  r)","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fBusy","package":"druntime","parentType":"DDEACK","signature":"bool fBusy(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.fBusy.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAck","package":"druntime","parentType":"DDEACK","signature":"bool fAck(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEACK.fAck.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDEADVISE","package":"druntime","parentType":"","signature":"DDEADVISE","url":"/ddoc/druntime/core/sys/windows/dde.html#DDEADVISE"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEADVISE","signature":"ushort reserved()","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fDeferUpd","package":"druntime","parentType":"DDEADVISE","signature":"bool fDeferUpd()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.fDeferUpd.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEADVISE","signature":"bool fAckReq()","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.fAckReq.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEADVISE","signature":"ushort reserved(ushort  r)","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fDeferUpd","package":"druntime","parentType":"DDEADVISE","signature":"bool fDeferUpd(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.fDeferUpd.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEADVISE","signature":"bool fAckReq(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEADVISE.fAckReq.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDEDATA","package":"druntime","parentType":"","signature":"DDEDATA","url":"/ddoc/druntime/core/sys/windows/dde.html#DDEDATA"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEDATA","signature":"ushort unused()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fResponse","package":"druntime","parentType":"DDEDATA","signature":"bool fResponse()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fResponse.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEDATA","signature":"bool fRelease()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEDATA","signature":"bool reserved()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEDATA","signature":"bool fAckReq()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fAckReq.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"Value","package":"druntime","parentType":"DDEDATA","signature":"byte * Value()","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.Value.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEDATA","signature":"ushort unused(ushort  r)","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fResponse","package":"druntime","parentType":"DDEDATA","signature":"bool fResponse(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fResponse.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEDATA","signature":"bool fRelease(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"reserved","package":"druntime","parentType":"DDEDATA","signature":"bool reserved(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEDATA","signature":"bool fAckReq(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEDATA.fAckReq.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDEPOKE","package":"druntime","parentType":"","signature":"DDEPOKE","url":"/ddoc/druntime/core/sys/windows/dde.html#DDEPOKE"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEPOKE","signature":"ushort unused()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEPOKE","signature":"bool fRelease()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fReserved","package":"druntime","parentType":"DDEPOKE","signature":"ubyte fReserved()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.fReserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"Value","package":"druntime","parentType":"DDEPOKE","signature":"byte * Value()","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.Value.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEPOKE","signature":"ushort unused()(ushort  u)","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEPOKE","signature":"bool fRelease()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fReserved","package":"druntime","parentType":"DDEPOKE","signature":"ubyte fReserved()(ubyte  r)","url":"/ddoc/druntime/core/sys/windows/dde/DDEPOKE.fReserved.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDELN","package":"druntime","parentType":"","signature":"DDELN","url":"/ddoc/druntime/core/sys/windows/dde.html#DDELN"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDELN","signature":"ushort unused()()","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDELN","signature":"bool fRelease()()","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fDeferUpd","package":"druntime","parentType":"DDELN","signature":"bool fDeferUpd()()","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fDeferUpd.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDELN","signature":"bool fAckReq()()","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fAckReq.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDELN","signature":"ushort unused()(ushort  u)","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDELN","signature":"bool fRelease()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fDeferUpd","package":"druntime","parentType":"DDELN","signature":"bool fDeferUpd()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fDeferUpd.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDELN","signature":"bool fAckReq()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDELN.fAckReq.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dde","name":"DDEUP","package":"druntime","parentType":"","signature":"DDEUP","url":"/ddoc/druntime/core/sys/windows/dde.html#DDEUP"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEUP","signature":"ushort unused()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAck","package":"druntime","parentType":"DDEUP","signature":"bool fAck()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fAck.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEUP","signature":"bool fRelease()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fReserved","package":"druntime","parentType":"DDEUP","signature":"bool fReserved()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fReserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEUP","signature":"bool fAckReq()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fAckReq.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"rgb","package":"druntime","parentType":"DDEUP","signature":"byte * rgb()()","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.rgb.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"unused","package":"druntime","parentType":"DDEUP","signature":"ushort unused()(ushort  r)","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.unused.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAck","package":"druntime","parentType":"DDEUP","signature":"bool fAck()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fAck.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fRelease","package":"druntime","parentType":"DDEUP","signature":"bool fRelease()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fRelease.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fReserved","package":"druntime","parentType":"DDEUP","signature":"bool fReserved()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fReserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.dde","name":"fAckReq","package":"druntime","parentType":"DDEUP","signature":"bool fAckReq()(bool  f)","url":"/ddoc/druntime/core/sys/windows/dde/DDEUP.fAckReq.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ddeml","name":"core.sys.windows.ddeml","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ddeml.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeAbandonTransaction","package":"druntime","parentType":"","signature":"BOOL DdeAbandonTransaction(DWORD,  HCONV,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeAbandonTransaction.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeAccessData","package":"druntime","parentType":"","signature":"PBYTE DdeAccessData(HDDEDATA,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeAccessData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeAddData","package":"druntime","parentType":"","signature":"HDDEDATA DdeAddData(HDDEDATA,  PBYTE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeAddData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeClientTransaction","package":"druntime","parentType":"","signature":"HDDEDATA DdeClientTransaction(PBYTE,  DWORD,  HCONV,  HSZ,  UINT,  UINT,\n       DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeClientTransaction.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeCmpStringHandles","package":"druntime","parentType":"","signature":"int DdeCmpStringHandles(HSZ,  HSZ)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeCmpStringHandles.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeConnect","package":"druntime","parentType":"","signature":"HCONV DdeConnect(DWORD,  HSZ,  HSZ,  PCONVCONTEXT)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeConnectList","package":"druntime","parentType":"","signature":"HCONVLIST DdeConnectList(DWORD,  HSZ,  HSZ,  HCONVLIST,  PCONVCONTEXT)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeConnectList.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeCreateDataHandle","package":"druntime","parentType":"","signature":"HDDEDATA DdeCreateDataHandle(DWORD,  PBYTE,  DWORD,  DWORD,  HSZ,  UINT,\n       UINT)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeCreateDataHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeCreateStringHandleA","package":"druntime","parentType":"","signature":"HSZ DdeCreateStringHandleA(DWORD,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeCreateStringHandleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeCreateStringHandleW","package":"druntime","parentType":"","signature":"HSZ DdeCreateStringHandleW(DWORD,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeCreateStringHandleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeDisconnect","package":"druntime","parentType":"","signature":"BOOL DdeDisconnect(HCONV)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeDisconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeDisconnectList","package":"druntime","parentType":"","signature":"BOOL DdeDisconnectList(HCONVLIST)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeDisconnectList.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeEnableCallback","package":"druntime","parentType":"","signature":"BOOL DdeEnableCallback(DWORD,  HCONV,  UINT)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeEnableCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeFreeDataHandle","package":"druntime","parentType":"","signature":"BOOL DdeFreeDataHandle(HDDEDATA)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeFreeDataHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeFreeStringHandle","package":"druntime","parentType":"","signature":"BOOL DdeFreeStringHandle(DWORD,  HSZ)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeFreeStringHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeGetData","package":"druntime","parentType":"","signature":"DWORD DdeGetData(HDDEDATA,  PBYTE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeGetData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeGetLastError","package":"druntime","parentType":"","signature":"UINT DdeGetLastError(DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeGetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeImpersonateClient","package":"druntime","parentType":"","signature":"BOOL DdeImpersonateClient(HCONV)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeImpersonateClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeInitializeA","package":"druntime","parentType":"","signature":"UINT DdeInitializeA(PDWORD,  PFNCALLBACK,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeInitializeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeInitializeW","package":"druntime","parentType":"","signature":"UINT DdeInitializeW(PDWORD,  PFNCALLBACK,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeInitializeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeKeepStringHandle","package":"druntime","parentType":"","signature":"BOOL DdeKeepStringHandle(DWORD,  HSZ)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeKeepStringHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeNameService","package":"druntime","parentType":"","signature":"HDDEDATA DdeNameService(DWORD,  HSZ,  HSZ,  UINT)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeNameService.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdePostAdvise","package":"druntime","parentType":"","signature":"BOOL DdePostAdvise(DWORD,  HSZ,  HSZ)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdePostAdvise.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeQueryConvInfo","package":"druntime","parentType":"","signature":"UINT DdeQueryConvInfo(HCONV,  DWORD,  PCONVINFO)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeQueryConvInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeQueryNextServer","package":"druntime","parentType":"","signature":"HCONV DdeQueryNextServer(HCONVLIST,  HCONV)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeQueryNextServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeQueryStringA","package":"druntime","parentType":"","signature":"DWORD DdeQueryStringA(DWORD,  HSZ,  LPSTR,  DWORD,  int)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeQueryStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeQueryStringW","package":"druntime","parentType":"","signature":"DWORD DdeQueryStringW(DWORD,  HSZ,  LPWSTR,  DWORD,  int)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeQueryStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeReconnect","package":"druntime","parentType":"","signature":"HCONV DdeReconnect(HCONV)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeReconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeSetUserHandle","package":"druntime","parentType":"","signature":"BOOL DdeSetUserHandle(HCONV,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeSetUserHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeUnaccessData","package":"druntime","parentType":"","signature":"BOOL DdeUnaccessData(HDDEDATA)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeUnaccessData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ddeml","name":"DdeUninitialize","package":"druntime","parentType":"","signature":"BOOL DdeUninitialize(DWORD)","url":"/ddoc/druntime/core/sys/windows/ddeml/DdeUninitialize.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"HCONVLIST","package":"druntime","parentType":"","signature":"HCONVLIST = HANDLE","url":"/ddoc/druntime/core/sys/windows/ddeml.html#HCONVLIST"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"HCONV","package":"druntime","parentType":"","signature":"HCONV = HANDLE","url":"/ddoc/druntime/core/sys/windows/ddeml.html#HCONV"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"HSZ","package":"druntime","parentType":"","signature":"HSZ = HANDLE","url":"/ddoc/druntime/core/sys/windows/ddeml.html#HSZ"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"HDDEDATA","package":"druntime","parentType":"","signature":"HDDEDATA = HANDLE","url":"/ddoc/druntime/core/sys/windows/ddeml.html#HDDEDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PFNCALLBACK","package":"druntime","parentType":"","signature":"PFNCALLBACK = HDDEDATA\n  function(UINT,  UINT,  HCONV,  HSZ,  HSZ,  HDDEDATA,  ULONG_PTR,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PFNCALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"HSZPAIR","package":"druntime","parentType":"","signature":"HSZPAIR","url":"/ddoc/druntime/core/sys/windows/ddeml.html#HSZPAIR"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PHSZPAIR","package":"druntime","parentType":"","signature":"PHSZPAIR = HSZPAIR *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PHSZPAIR"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"CONVCONTEXT","package":"druntime","parentType":"","signature":"CONVCONTEXT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#CONVCONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PCONVCONTEXT","package":"druntime","parentType":"","signature":"PCONVCONTEXT = CONVCONTEXT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PCONVCONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"CONVINFO","package":"druntime","parentType":"","signature":"CONVINFO","url":"/ddoc/druntime/core/sys/windows/ddeml.html#CONVINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PCONVINFO","package":"druntime","parentType":"","signature":"PCONVINFO = CONVINFO *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PCONVINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"DDEML_MSG_HOOK_DATA","package":"druntime","parentType":"","signature":"DDEML_MSG_HOOK_DATA","url":"/ddoc/druntime/core/sys/windows/ddeml.html#DDEML_MSG_HOOK_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONHSZSTRUCT","package":"druntime","parentType":"","signature":"MONHSZSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONHSZSTRUCT"},{"doc":"","kind":"method","module":"core.sys.windows.ddeml","name":"str","package":"druntime","parentType":"MONHSZSTRUCT","signature":"TCHAR * str()","url":"/ddoc/druntime/core/sys/windows/ddeml/MONHSZSTRUCT.str.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONHSZSTRUCT","package":"druntime","parentType":"","signature":"PMONHSZSTRUCT = MONHSZSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONHSZSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONLINKSTRUCT","package":"druntime","parentType":"","signature":"MONLINKSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONLINKSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONLINKSTRUCT","package":"druntime","parentType":"","signature":"PMONLINKSTRUCT = MONLINKSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONLINKSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONCONVSTRUCT","package":"druntime","parentType":"","signature":"MONCONVSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONCONVSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONCONVSTRUCT","package":"druntime","parentType":"","signature":"PMONCONVSTRUCT = MONCONVSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONCONVSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONCBSTRUCT","package":"druntime","parentType":"","signature":"MONCBSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONCBSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONCBSTRUCT","package":"druntime","parentType":"","signature":"PMONCBSTRUCT = MONCBSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONCBSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONERRSTRUCT","package":"druntime","parentType":"","signature":"MONERRSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONERRSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONERRSTRUCT","package":"druntime","parentType":"","signature":"PMONERRSTRUCT = MONERRSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONERRSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.ddeml","name":"MONMSGSTRUCT","package":"druntime","parentType":"","signature":"MONMSGSTRUCT","url":"/ddoc/druntime/core/sys/windows/ddeml.html#MONMSGSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.ddeml","name":"PMONMSGSTRUCT","package":"druntime","parentType":"","signature":"PMONMSGSTRUCT = MONMSGSTRUCT *","url":"/ddoc/druntime/core/sys/windows/ddeml.html#PMONMSGSTRUCT"},{"doc":"","kind":"variable","module":"core.sys.windows.ddeml","name":"CBR_BLOCK","package":"druntime","parentType":"","signature":"CBR_BLOCK","url":"/ddoc/druntime/core/sys/windows/ddeml.html#CBR_BLOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.ddeml","name":"APPCLASS_STANDARD","package":"druntime","parentType":"","signature":"DWORD APPCLASS_STANDARD","url":"/ddoc/druntime/core/sys/windows/ddeml.html#APPCLASS_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.ddeml","name":"SZDDESYS_TOPIC","package":"druntime","parentType":"","signature":"TCHAR[] SZDDESYS_TOPIC","url":"/ddoc/druntime/core/sys/windows/ddeml.html#SZDDESYS_TOPIC"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.dhcpcsdk","name":"core.sys.windows.dhcpcsdk","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpCApiCleanup","package":"druntime","parentType":"","signature":"void DhcpCApiCleanup()","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpCApiCleanup.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpCApiInitialize","package":"druntime","parentType":"","signature":"DWORD DhcpCApiInitialize(LPDWORD)","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpCApiInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpDeRegisterParamChange","package":"druntime","parentType":"","signature":"DWORD DhcpDeRegisterParamChange(DWORD,  LPVOID,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpDeRegisterParamChange.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpRegisterParamChange","package":"druntime","parentType":"","signature":"DWORD DhcpRegisterParamChange(DWORD,  LPVOID,  PWSTR,  LPDHCPCAPI_CLASSID,\n       DHCPCAPI_PARAMS_ARRAY,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpRegisterParamChange.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpRemoveDNSRegistrations","package":"druntime","parentType":"","signature":"DWORD DhcpRemoveDNSRegistrations()","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpRemoveDNSRegistrations.html"},{"doc":"","kind":"function","module":"core.sys.windows.dhcpcsdk","name":"DhcpUndoRequestParams","package":"druntime","parentType":"","signature":"DWORD DhcpUndoRequestParams(DWORD,  LPVOID,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk/DhcpUndoRequestParams.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dhcpcsdk","name":"DHCPCAPI_CLASSID","package":"druntime","parentType":"","signature":"DHCPCAPI_CLASSID","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPCAPI_CLASSID"},{"doc":"","kind":"alias","module":"core.sys.windows.dhcpcsdk","name":"PDHCPCAPI_CLASSID","package":"druntime","parentType":"","signature":"PDHCPCAPI_CLASSID = DHCPCAPI_CLASSID *","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#PDHCPCAPI_CLASSID"},{"doc":"","kind":"struct","module":"core.sys.windows.dhcpcsdk","name":"DHCPAPI_PARAMS","package":"druntime","parentType":"","signature":"DHCPAPI_PARAMS","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPAPI_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.dhcpcsdk","name":"PDHCPAPI_PARAMS","package":"druntime","parentType":"","signature":"PDHCPAPI_PARAMS = DHCPAPI_PARAMS *","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#PDHCPAPI_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.dhcpcsdk","name":"DHCPCAPI_PARAMS_ARRAY","package":"druntime","parentType":"","signature":"DHCPCAPI_PARAMS_ARRAY","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPCAPI_PARAMS_ARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.dhcpcsdk","name":"PDHCPCAPI_PARAMS_ARRAY","package":"druntime","parentType":"","signature":"PDHCPCAPI_PARAMS_ARRAY = DHCPCAPI_PARAMS_ARRAY *","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#PDHCPCAPI_PARAMS_ARRAY"},{"doc":"","kind":"variable","module":"core.sys.windows.dhcpcsdk","name":"DHCPCAPI_REGISTER_HANDLE_EVENT","package":"druntime","parentType":"","signature":"DHCPCAPI_REGISTER_HANDLE_EVENT","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPCAPI_REGISTER_HANDLE_EVENT"},{"doc":"","kind":"variable","module":"core.sys.windows.dhcpcsdk","name":"DHCPCAPI_REQUEST_PERSISTENT","package":"druntime","parentType":"","signature":"DHCPCAPI_REQUEST_PERSISTENT","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPCAPI_REQUEST_PERSISTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.dhcpcsdk","name":"DHCPCAPI_REQUEST_SYNCHRONOUS","package":"druntime","parentType":"","signature":"DHCPCAPI_REQUEST_SYNCHRONOUS","url":"/ddoc/druntime/core/sys/windows/dhcpcsdk.html#DHCPCAPI_REQUEST_SYNCHRONOUS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.dlgs","name":"core.sys.windows.dlgs","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dlgs.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dlgs","name":"CRGB","package":"druntime","parentType":"","signature":"CRGB","url":"/ddoc/druntime/core/sys/windows/dlgs.html#CRGB"},{"doc":"This module provides OS specific helper function for DLL support","kind":"module","module":"core.sys.windows.dll","name":"core.sys.windows.dll","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/dll.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"rt_moduleTlsCtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsCtor()","url":"/ddoc/druntime/core/sys/windows/dll/rt_moduleTlsCtor.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"rt_moduleTlsDtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsDtor()","url":"/ddoc/druntime/core/sys/windows/dll/rt_moduleTlsDtor.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"dll_fixTLS","package":"druntime","parentType":"","signature":"bool dll_fixTLS(  HINSTANCE hInstance,  void *  tlsstart,  void *  tlsend,  void *  tls_callbacks_a,  int *  tlsindex )","url":"/ddoc/druntime/core/sys/windows/dll/dll_fixTLS.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"VerSetConditionMask","package":"druntime","parentType":"","signature":"ULONGLONG VerSetConditionMask(ULONGLONG,  DWORD,  BYTE)","url":"/ddoc/druntime/core/sys/windows/dll/VerSetConditionMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"isWindows8OrLater","package":"druntime","parentType":"","signature":"bool isWindows8OrLater()","url":"/ddoc/druntime/core/sys/windows/dll/isWindows8OrLater.html"},{"doc":"","kind":"function","module":"core.sys.windows.dll","name":"dll_getRefCount","package":"druntime","parentType":"","signature":"int dll_getRefCount(  HINSTANCE hInstance )","url":"/ddoc/druntime/core/sys/windows/dll/dll_getRefCount.html"},{"doc":"To be called from DllMain with reason DLL_PROCESS_ATTACH","kind":"function","module":"core.sys.windows.dll","name":"dll_process_attach","package":"druntime","parentType":"","signature":"bool dll_process_attach(  HINSTANCE hInstance,  bool  attach_threads,\n                          void *  tlsstart,  void *  tlsend,  void *  tls_callbacks_a,  int *  tlsindex )","url":"/ddoc/druntime/core/sys/windows/dll/dll_process_attach.html"},{"doc":"same as above, but checking for shared runtime","kind":"function","module":"core.sys.windows.dll","name":"dll_process_attach","package":"druntime","parentType":"","signature":"bool dll_process_attach(  HINSTANCE hInstance,  bool  attach_threads =  true )","url":"/ddoc/druntime/core/sys/windows/dll/dll_process_attach.html"},{"doc":"to be called from DllMain with reason DLL_PROCESS_DETACH","kind":"function","module":"core.sys.windows.dll","name":"dll_process_detach","package":"druntime","parentType":"","signature":"void dll_process_detach(  HINSTANCE hInstance,  bool  detach_threads =  true )","url":"/ddoc/druntime/core/sys/windows/dll/dll_process_detach.html"},{"doc":"Check whether the D runtime is built as a DLL or linked statically","kind":"function","module":"core.sys.windows.dll","name":"isSharedDRuntime","package":"druntime","parentType":"","signature":"bool isSharedDRuntime()","url":"/ddoc/druntime/core/sys/windows/dll/isSharedDRuntime.html"},{"doc":"To be called from DllMain with reason DLL_THREAD_ATTACH Returns: true for success, false for failure","kind":"function","module":"core.sys.windows.dll","name":"dll_thread_attach","package":"druntime","parentType":"","signature":"bool dll_thread_attach(  bool  attach_thread =  true,  bool  initTls =  true,  HINSTANCE hInstance =  null )","url":"/ddoc/druntime/core/sys/windows/dll/dll_thread_attach.html"},{"doc":"To be called from DllMain with reason DLL_THREAD_DETACH Returns: true for success, false for failure","kind":"function","module":"core.sys.windows.dll","name":"dll_thread_detach","package":"druntime","parentType":"","signature":"bool dll_thread_detach(  bool  detach_thread =  true,  bool  exitTls =  true,  HINSTANCE hInstance =  null )","url":"/ddoc/druntime/core/sys/windows/dll/dll_thread_detach.html"},{"doc":"","kind":"struct","module":"core.sys.windows.dll","name":"dll_aux","package":"druntime","parentType":"","signature":"dll_aux","url":"/ddoc/druntime/core/sys/windows/dll.html#dll_aux"},{"doc":"","kind":"method","module":"core.sys.windows.dll","name":"findLdrModule","package":"druntime","parentType":"dll_aux","signature":"LDR_MODULE * findLdrModule(  HINSTANCE hInstance,  void * *  peb )","url":"/ddoc/druntime/core/sys/windows/dll/dll_aux.findLdrModule.html"},{"doc":"","kind":"method","module":"core.sys.windows.dll","name":"setDllTlsUsage","package":"druntime","parentType":"dll_aux","signature":"bool setDllTlsUsage(  HINSTANCE hInstance,  void * *  peb )","url":"/ddoc/druntime/core/sys/windows/dll/dll_aux.setDllTlsUsage.html"},{"doc":"","kind":"variable","module":"core.sys.windows.dll","name":"tlsCtorRun","package":"druntime","parentType":"","signature":"bool tlsCtorRun","url":"/ddoc/druntime/core/sys/windows/dll.html#tlsCtorRun"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.docobj","name":"core.sys.windows.docobj","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/docobj.html"},{"doc":"","kind":"enum","module":"core.sys.windows.docobj","name":"OLECMDID","package":"druntime","parentType":"","signature":"OLECMDID","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_OPEN","package":"druntime","parentType":"","signature":"OLECMDID_OPEN = 1","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_NEW","package":"druntime","parentType":"","signature":"OLECMDID_NEW = 2","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SAVE","package":"druntime","parentType":"","signature":"OLECMDID_SAVE = 3","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SAVEAS","package":"druntime","parentType":"","signature":"OLECMDID_SAVEAS = 4","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SAVECOPYAS","package":"druntime","parentType":"","signature":"OLECMDID_SAVECOPYAS = 5","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PRINT","package":"druntime","parentType":"","signature":"OLECMDID_PRINT = 6","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PRINTPREVIEW","package":"druntime","parentType":"","signature":"OLECMDID_PRINTPREVIEW = 7","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PAGESETUP","package":"druntime","parentType":"","signature":"OLECMDID_PAGESETUP = 8","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SPELL","package":"druntime","parentType":"","signature":"OLECMDID_SPELL = 9","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PROPERTIES","package":"druntime","parentType":"","signature":"OLECMDID_PROPERTIES = 10","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_CUT","package":"druntime","parentType":"","signature":"OLECMDID_CUT = 11","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_COPY","package":"druntime","parentType":"","signature":"OLECMDID_COPY = 12","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PASTE","package":"druntime","parentType":"","signature":"OLECMDID_PASTE = 13","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_PASTESPECIAL","package":"druntime","parentType":"","signature":"OLECMDID_PASTESPECIAL = 14","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_UNDO","package":"druntime","parentType":"","signature":"OLECMDID_UNDO = 15","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_REDO","package":"druntime","parentType":"","signature":"OLECMDID_REDO = 16","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SELECTALL","package":"druntime","parentType":"","signature":"OLECMDID_SELECTALL = 17","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_CLEARSELECTION","package":"druntime","parentType":"","signature":"OLECMDID_CLEARSELECTION = 18","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_ZOOM","package":"druntime","parentType":"","signature":"OLECMDID_ZOOM = 19","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_GETZOOMRANGE","package":"druntime","parentType":"","signature":"OLECMDID_GETZOOMRANGE = 20","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_UPDATECOMMANDS","package":"druntime","parentType":"","signature":"OLECMDID_UPDATECOMMANDS = 21","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_REFRESH","package":"druntime","parentType":"","signature":"OLECMDID_REFRESH = 22","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_STOP","package":"druntime","parentType":"","signature":"OLECMDID_STOP = 23","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_HIDETOOLBARS","package":"druntime","parentType":"","signature":"OLECMDID_HIDETOOLBARS = 24","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SETPROGRESSMAX","package":"druntime","parentType":"","signature":"OLECMDID_SETPROGRESSMAX = 25","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SETPROGRESSPOS","package":"druntime","parentType":"","signature":"OLECMDID_SETPROGRESSPOS = 26","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SETPROGRESSTEXT","package":"druntime","parentType":"","signature":"OLECMDID_SETPROGRESSTEXT = 27","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SETTITLE","package":"druntime","parentType":"","signature":"OLECMDID_SETTITLE = 28","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_SETDOWNLOADSTATE","package":"druntime","parentType":"","signature":"OLECMDID_SETDOWNLOADSTATE = 29","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDID_STOPDOWNLOAD","package":"druntime","parentType":"","signature":"OLECMDID_STOPDOWNLOAD = 30","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDID"},{"doc":"","kind":"enum","module":"core.sys.windows.docobj","name":"OLECMDF","package":"druntime","parentType":"","signature":"OLECMDF","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDF_SUPPORTED","package":"druntime","parentType":"","signature":"OLECMDF_SUPPORTED = 1","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDF_ENABLED","package":"druntime","parentType":"","signature":"OLECMDF_ENABLED = 2","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDF_LATCHED","package":"druntime","parentType":"","signature":"OLECMDF_LATCHED = 4","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDF_NINCHED","package":"druntime","parentType":"","signature":"OLECMDF_NINCHED = 8","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDF"},{"doc":"","kind":"enum","module":"core.sys.windows.docobj","name":"OLECMDEXECOPT","package":"druntime","parentType":"","signature":"OLECMDEXECOPT","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDEXECOPT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDEXECOPT_DODEFAULT","package":"druntime","parentType":"","signature":"OLECMDEXECOPT_DODEFAULT = 0","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDEXECOPT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDEXECOPT_PROMPTUSER","package":"druntime","parentType":"","signature":"OLECMDEXECOPT_PROMPTUSER = 1","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDEXECOPT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDEXECOPT_DONTPROMPTUSER","package":"druntime","parentType":"","signature":"OLECMDEXECOPT_DONTPROMPTUSER = 2","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDEXECOPT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.docobj","name":"OLECMDEXECOPT_SHOWHELP","package":"druntime","parentType":"","signature":"OLECMDEXECOPT_SHOWHELP = 3","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDEXECOPT"},{"doc":"","kind":"struct","module":"core.sys.windows.docobj","name":"OLECMDTEXT","package":"druntime","parentType":"","signature":"OLECMDTEXT","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMDTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.docobj","name":"OLECMD","package":"druntime","parentType":"","signature":"OLECMD","url":"/ddoc/druntime/core/sys/windows/docobj.html#OLECMD"},{"doc":"","kind":"alias","module":"core.sys.windows.docobj","name":"LPOLEINPLACESITE","package":"druntime","parentType":"","signature":"LPOLEINPLACESITE = IOleInPlaceSite","url":"/ddoc/druntime/core/sys/windows/docobj.html#LPOLEINPLACESITE"},{"doc":"","kind":"alias","module":"core.sys.windows.docobj","name":"LPENUMOLEDOCUMENTVIEWS","package":"druntime","parentType":"","signature":"LPENUMOLEDOCUMENTVIEWS = IEnumOleDocumentViews","url":"/ddoc/druntime/core/sys/windows/docobj.html#LPENUMOLEDOCUMENTVIEWS"},{"doc":"","kind":"interface","module":"core.sys.windows.docobj","name":"IOleDocumentView","package":"druntime","parentType":"","signature":"IOleDocumentView : IUnknown","url":"/ddoc/druntime/core/sys/windows/docobj.html#IOleDocumentView"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"SetInPlaceSite","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT SetInPlaceSite(LPOLEINPLACESITE)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.SetInPlaceSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"GetInPlaceSite","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT GetInPlaceSite(LPOLEINPLACESITE *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.GetInPlaceSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"GetDocument","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT GetDocument(IUnknown *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.GetDocument.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"SetRect","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT SetRect(LPRECT)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.SetRect.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"GetRect","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT GetRect(LPRECT)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.GetRect.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"SetRectComplex","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT SetRectComplex(LPRECT,  LPRECT,  LPRECT,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.SetRectComplex.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Show","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT Show(BOOL)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.Show.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"UIActivate","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT UIActivate(BOOL)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.UIActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Open","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT Open()","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.Open.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Close","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT Close(DWORD)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.Close.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"SaveViewState","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT SaveViewState(IStream)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.SaveViewState.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"ApplyViewState","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT ApplyViewState(IStream)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.ApplyViewState.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Clone","package":"druntime","parentType":"IOleDocumentView","signature":"HRESULT Clone(LPOLEINPLACESITE,  IOleDocumentView *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentView.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.docobj","name":"IEnumOleDocumentViews","package":"druntime","parentType":"","signature":"IEnumOleDocumentViews : IUnknown","url":"/ddoc/druntime/core/sys/windows/docobj.html#IEnumOleDocumentViews"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Next","package":"druntime","parentType":"IEnumOleDocumentViews","signature":"HRESULT Next(ULONG,  IOleDocumentView,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/docobj/IEnumOleDocumentViews.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Skip","package":"druntime","parentType":"IEnumOleDocumentViews","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/docobj/IEnumOleDocumentViews.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Reset","package":"druntime","parentType":"IEnumOleDocumentViews","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/docobj/IEnumOleDocumentViews.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Clone","package":"druntime","parentType":"IEnumOleDocumentViews","signature":"HRESULT Clone(IEnumOleDocumentViews *)","url":"/ddoc/druntime/core/sys/windows/docobj/IEnumOleDocumentViews.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.docobj","name":"IOleDocument","package":"druntime","parentType":"","signature":"IOleDocument : IUnknown","url":"/ddoc/druntime/core/sys/windows/docobj.html#IOleDocument"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"CreateView","package":"druntime","parentType":"IOleDocument","signature":"HRESULT CreateView(LPOLEINPLACESITE,  IStream,  DWORD,  IOleDocumentView *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocument.CreateView.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"GetDocMiscStatus","package":"druntime","parentType":"IOleDocument","signature":"HRESULT GetDocMiscStatus(DWORD *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocument.GetDocMiscStatus.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"EnumViews","package":"druntime","parentType":"IOleDocument","signature":"HRESULT EnumViews(LPENUMOLEDOCUMENTVIEWS *,  IOleDocumentView *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocument.EnumViews.html"},{"doc":"","kind":"interface","module":"core.sys.windows.docobj","name":"IOleCommandTarget","package":"druntime","parentType":"","signature":"IOleCommandTarget : IUnknown","url":"/ddoc/druntime/core/sys/windows/docobj.html#IOleCommandTarget"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"QueryStatus","package":"druntime","parentType":"IOleCommandTarget","signature":"HRESULT QueryStatus(const(GUID) *,  ULONG,  OLECMD *,  OLECMDTEXT *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleCommandTarget.QueryStatus.html"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"Exec","package":"druntime","parentType":"IOleCommandTarget","signature":"HRESULT Exec(const(GUID) *,  DWORD,  DWORD,  VARIANTARG *,  VARIANTARG *)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleCommandTarget.Exec.html"},{"doc":"","kind":"interface","module":"core.sys.windows.docobj","name":"IOleDocumentSite","package":"druntime","parentType":"","signature":"IOleDocumentSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/docobj.html#IOleDocumentSite"},{"doc":"","kind":"method","module":"core.sys.windows.docobj","name":"ActivateMe","package":"druntime","parentType":"IOleDocumentSite","signature":"HRESULT ActivateMe(IOleDocumentView)","url":"/ddoc/druntime/core/sys/windows/docobj/IOleDocumentSite.ActivateMe.html"},{"doc":"","kind":"variable","module":"core.sys.windows.docobj","name":"IID_IContinueCallback","package":"druntime","parentType":"","signature":"IID IID_IContinueCallback","url":"/ddoc/druntime/core/sys/windows/docobj.html#IID_IContinueCallback"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.errorrep","name":"core.sys.windows.errorrep","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/errorrep.html"},{"doc":"","kind":"function","module":"core.sys.windows.errorrep","name":"AddERExcludedApplicationA","package":"druntime","parentType":"","signature":"BOOL AddERExcludedApplicationA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/errorrep/AddERExcludedApplicationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.errorrep","name":"AddERExcludedApplicationW","package":"druntime","parentType":"","signature":"BOOL AddERExcludedApplicationW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/errorrep/AddERExcludedApplicationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.errorrep","name":"ReportFault","package":"druntime","parentType":"","signature":"EFaultRepRetVal ReportFault(LPEXCEPTION_POINTERS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/errorrep/ReportFault.html"},{"doc":"","kind":"enum","module":"core.sys.windows.errorrep","name":"EFaultRepRetVal","package":"druntime","parentType":"","signature":"EFaultRepRetVal","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvOk","package":"druntime","parentType":"","signature":"frrvOk = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvOkManifest","package":"druntime","parentType":"","signature":"frrvOkManifest = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvOkQueued","package":"druntime","parentType":"","signature":"frrvOkQueued = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvErr","package":"druntime","parentType":"","signature":"frrvErr = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvErrNoDW","package":"druntime","parentType":"","signature":"frrvErrNoDW = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvErrTimeout","package":"druntime","parentType":"","signature":"frrvErrTimeout = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvLaunchDebugger","package":"druntime","parentType":"","signature":"frrvLaunchDebugger = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"","kind":"enum_member","module":"core.sys.windows.errorrep","name":"frrvOkHeadless","package":"druntime","parentType":"","signature":"frrvOkHeadless = ","url":"/ddoc/druntime/core/sys/windows/errorrep.html#EFaultRepRetVal"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.exdisp","name":"core.sys.windows.exdisp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/exdisp.html"},{"doc":"","kind":"enum","module":"core.sys.windows.exdisp","name":"BrowserNavConstants","package":"druntime","parentType":"","signature":"BrowserNavConstants","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navOpenInNewWindow","package":"druntime","parentType":"","signature":"navOpenInNewWindow = 0x01","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navNoHistory","package":"druntime","parentType":"","signature":"navNoHistory = 0x02","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navNoReadFromCache","package":"druntime","parentType":"","signature":"navNoReadFromCache = 0x04","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navNoWriteTocache","package":"druntime","parentType":"","signature":"navNoWriteTocache = 0x08","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navAllowAutosearch","package":"druntime","parentType":"","signature":"navAllowAutosearch = 0x10","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navBrowserBar","package":"druntime","parentType":"","signature":"navBrowserBar = 0x20","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"enum_member","module":"core.sys.windows.exdisp","name":"navHyperLink","package":"druntime","parentType":"","signature":"navHyperLink = 0x40","url":"/ddoc/druntime/core/sys/windows/exdisp.html#BrowserNavConstants"},{"doc":"","kind":"interface","module":"core.sys.windows.exdisp","name":"IWebBrowser","package":"druntime","parentType":"","signature":"IWebBrowser : IDispatch","url":"/ddoc/druntime/core/sys/windows/exdisp.html#IWebBrowser"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"GoBack","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT GoBack()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.GoBack.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"GoForward","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT GoForward()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.GoForward.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"GoHome","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT GoHome()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.GoHome.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"GoSearch","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT GoSearch()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.GoSearch.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Navigate","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT Navigate(BSTR,  VARIANT *,  VARIANT *,  VARIANT *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.Navigate.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Refresh","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT Refresh()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.Refresh.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Refresh2","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT Refresh2(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.Refresh2.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Stop","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT Stop()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.Stop.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Application","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Application(IDispatch *  ppDisp)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Application.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Parent","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Parent(IDispatch *  ppDisp)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Parent.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Container","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Container(IDispatch *  ppDisp)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Container.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Document","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Document(IDispatch *  ppDisp)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Document.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_TopLevelContainer","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_TopLevelContainer(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_TopLevelContainer.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Type","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Type(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Type.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Left","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Left(LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Left.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Left","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT put_Left(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.put_Left.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Top","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Top(LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Top.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Top","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT put_Top(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.put_Top.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Width","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Width(LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Width.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Width","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT put_Width(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.put_Width.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Height","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Height(LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Height.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Height","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT put_Height(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.put_Height.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_LocationName","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_LocationName(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_LocationName.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_LocationURL","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_LocationURL(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_LocationURL.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Busy","package":"druntime","parentType":"IWebBrowser","signature":"HRESULT get_Busy(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser.get_Busy.html"},{"doc":"","kind":"interface","module":"core.sys.windows.exdisp","name":"IWebBrowserApp","package":"druntime","parentType":"","signature":"IWebBrowserApp : IWebBrowser","url":"/ddoc/druntime/core/sys/windows/exdisp.html#IWebBrowserApp"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Quit","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT Quit()","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.Quit.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"ClientToWindow","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT ClientToWindow(int *,  int *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.ClientToWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"PutProperty","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT PutProperty(BSTR,  VARIANT)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.PutProperty.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"GetProperty","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT GetProperty(BSTR,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.GetProperty.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Name","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_Name(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_Name.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_HWND","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_HWND(LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_HWND.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_FullName","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_FullName(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_FullName.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Path","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_Path(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_Path.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Visible","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_Visible(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_Visible.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Visible","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_Visible(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_Visible.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_StatusBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_StatusBar(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_StatusBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_StatusBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_StatusBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_StatusBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_StatusText","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_StatusText(BSTR *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_StatusText.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_StatusText","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_StatusText(BSTR)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_StatusText.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_ToolBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_ToolBar(int *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_ToolBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_ToolBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_ToolBar(int)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_ToolBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_MenuBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_MenuBar(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_MenuBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_MenuBar","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_MenuBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_MenuBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_FullScreen","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT get_FullScreen(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.get_FullScreen.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_FullScreen","package":"druntime","parentType":"IWebBrowserApp","signature":"HRESULT put_FullScreen(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowserApp.put_FullScreen.html"},{"doc":"","kind":"interface","module":"core.sys.windows.exdisp","name":"IWebBrowser2","package":"druntime","parentType":"","signature":"IWebBrowser2 : IWebBrowserApp","url":"/ddoc/druntime/core/sys/windows/exdisp.html#IWebBrowser2"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"Navigate2","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT Navigate2(VARIANT *,  VARIANT *,  VARIANT *,  VARIANT *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.Navigate2.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"QueryStatusWB","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT QueryStatusWB(OLECMDID,  OLECMDF *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.QueryStatusWB.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"ExecWB","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT ExecWB(OLECMDID,  OLECMDEXECOPT,  VARIANT *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.ExecWB.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"ShowBrowserBar","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT ShowBrowserBar(VARIANT *,  VARIANT *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.ShowBrowserBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_ReadyState","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_ReadyState(READYSTATE *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_ReadyState.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Offline","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_Offline(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_Offline.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Offline","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_Offline(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_Offline.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Silent","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_Silent(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_Silent.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Silent","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_Silent(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_Silent.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_RegistaerAsBrowser","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_RegistaerAsBrowser(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_RegistaerAsBrowser.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_RegisterAsBrowser","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_RegisterAsBrowser(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_RegisterAsBrowser.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_RegistaerAsDropTarget","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_RegistaerAsDropTarget(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_RegistaerAsDropTarget.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_RegisterAsDropTarget","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_RegisterAsDropTarget(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_RegisterAsDropTarget.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_TheaterMode","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_TheaterMode(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_TheaterMode.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_TheaterMode","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_TheaterMode(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_TheaterMode.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_AddressBar","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_AddressBar(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_AddressBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_AddressBar","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_AddressBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_AddressBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"get_Resizable","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT get_Resizable(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.get_Resizable.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"put_Resizable","package":"druntime","parentType":"IWebBrowser2","signature":"HRESULT put_Resizable(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/IWebBrowser2.put_Resizable.html"},{"doc":"","kind":"interface","module":"core.sys.windows.exdisp","name":"DWebBrowserEvents2","package":"druntime","parentType":"","signature":"DWebBrowserEvents2 : IDispatch","url":"/ddoc/druntime/core/sys/windows/exdisp.html#DWebBrowserEvents2"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"StatusTextChange","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void StatusTextChange(BSTR)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.StatusTextChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"ProgressChange","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void ProgressChange(LONG,  LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.ProgressChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"CommandStateChange","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void CommandStateChange(LONG,  VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.CommandStateChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"DownloadBegin","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void DownloadBegin()","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.DownloadBegin.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"DownloadComplete","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void DownloadComplete()","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.DownloadComplete.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"TitleChange","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void TitleChange(BSTR)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.TitleChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"PropertyChange","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void PropertyChange(BSTR)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.PropertyChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"BeforeNavigate2","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void BeforeNavigate2(IDispatch pDisp,  VARIANT *,  VARIANT *,  VARIANT *,  VARIANT *,  VARIANT *,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.BeforeNavigate2.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"NewWindow2","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void NewWindow2(IDispatch *  ppDisp,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.NewWindow2.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"NavigateComplete","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void NavigateComplete(IDispatch pDisp,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.NavigateComplete.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"DocumentComplete","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void DocumentComplete(IDispatch pDisp,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.DocumentComplete.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnQuit","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnQuit()","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnQuit.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnVisible","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnVisible(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnVisible.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnToolBar","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnToolBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnToolBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnMenuBar","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnMenuBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnMenuBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnStatusBar","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnStatusBar(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnStatusBar.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnFullScreen","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnFullScreen(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnFullScreen.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"OnTheaterMode","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void OnTheaterMode(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.OnTheaterMode.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowSetResizable","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowSetResizable(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowSetResizable.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowSetLeft","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowSetLeft(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowSetLeft.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowSetTop","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowSetTop(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowSetTop.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowSetWidth","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowSetWidth(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowSetWidth.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowSetHeight","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowSetHeight(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowSetHeight.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"WindowClosing","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void WindowClosing(VARIANT_BOOL,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.WindowClosing.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"ClientToHostWindow","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void ClientToHostWindow(LONG *,  LONG *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.ClientToHostWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"SetSecureLockIcon","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void SetSecureLockIcon(LONG)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.SetSecureLockIcon.html"},{"doc":"","kind":"method","module":"core.sys.windows.exdisp","name":"FileDownload","package":"druntime","parentType":"DWebBrowserEvents2","signature":"void FileDownload(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/exdisp/DWebBrowserEvents2.FileDownload.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.exdispid","name":"core.sys.windows.exdispid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/exdispid.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.httpext","name":"core.sys.windows.httpext","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/httpext.html"},{"doc":"","kind":"function","module":"core.sys.windows.httpext","name":"GetExtensionVersion","package":"druntime","parentType":"","signature":"BOOL GetExtensionVersion(HSE_VERSION_INFO *)","url":"/ddoc/druntime/core/sys/windows/httpext/GetExtensionVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.httpext","name":"HttpExtensionProc","package":"druntime","parentType":"","signature":"DWORD HttpExtensionProc(EXTENSION_CONTROL_BLOCK *)","url":"/ddoc/druntime/core/sys/windows/httpext/HttpExtensionProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.httpext","name":"TerminateExtension","package":"druntime","parentType":"","signature":"BOOL TerminateExtension(DWORD)","url":"/ddoc/druntime/core/sys/windows/httpext/TerminateExtension.html"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"HCONN","package":"druntime","parentType":"","signature":"HCONN = HANDLE","url":"/ddoc/druntime/core/sys/windows/httpext.html#HCONN"},{"doc":"","kind":"struct","module":"core.sys.windows.httpext","name":"HSE_VERSION_INFO","package":"druntime","parentType":"","signature":"HSE_VERSION_INFO","url":"/ddoc/druntime/core/sys/windows/httpext.html#HSE_VERSION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"LPHSE_VERSION_INFO","package":"druntime","parentType":"","signature":"LPHSE_VERSION_INFO = HSE_VERSION_INFO *","url":"/ddoc/druntime/core/sys/windows/httpext.html#LPHSE_VERSION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.httpext","name":"EXTENSION_CONTROL_BLOCK","package":"druntime","parentType":"","signature":"EXTENSION_CONTROL_BLOCK","url":"/ddoc/druntime/core/sys/windows/httpext.html#EXTENSION_CONTROL_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"LPEXTENSION_CONTROL_BLOCK","package":"druntime","parentType":"","signature":"LPEXTENSION_CONTROL_BLOCK = EXTENSION_CONTROL_BLOCK *","url":"/ddoc/druntime/core/sys/windows/httpext.html#LPEXTENSION_CONTROL_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"PFN_GETEXTENSIONVERSION","package":"druntime","parentType":"","signature":"PFN_GETEXTENSIONVERSION = BOOL function(HSE_VERSION_INFO *)","url":"/ddoc/druntime/core/sys/windows/httpext.html#PFN_GETEXTENSIONVERSION"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"PFN_HTTPEXTENSIONPROC","package":"druntime","parentType":"","signature":"PFN_HTTPEXTENSIONPROC = DWORD function(EXTENSION_CONTROL_BLOCK *)","url":"/ddoc/druntime/core/sys/windows/httpext.html#PFN_HTTPEXTENSIONPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"PFN_TERMINATEEXTENSION","package":"druntime","parentType":"","signature":"PFN_TERMINATEEXTENSION = BOOL function(DWORD)","url":"/ddoc/druntime/core/sys/windows/httpext.html#PFN_TERMINATEEXTENSION"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"PFN_HSE_IO_COMPLETION","package":"druntime","parentType":"","signature":"PFN_HSE_IO_COMPLETION = VOID function(EXTENSION_CONTROL_BLOCK *,  PVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/httpext.html#PFN_HSE_IO_COMPLETION"},{"doc":"","kind":"struct","module":"core.sys.windows.httpext","name":"HSE_TF_INFO","package":"druntime","parentType":"","signature":"HSE_TF_INFO","url":"/ddoc/druntime/core/sys/windows/httpext.html#HSE_TF_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"LPHSE_TF_INFO","package":"druntime","parentType":"","signature":"LPHSE_TF_INFO = HSE_TF_INFO *","url":"/ddoc/druntime/core/sys/windows/httpext.html#LPHSE_TF_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.httpext","name":"HSE_SEND_HEADER_EX_INFO","package":"druntime","parentType":"","signature":"HSE_SEND_HEADER_EX_INFO","url":"/ddoc/druntime/core/sys/windows/httpext.html#HSE_SEND_HEADER_EX_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.httpext","name":"LPHSE_SEND_HEADER_EX_INF","package":"druntime","parentType":"","signature":"LPHSE_SEND_HEADER_EX_INF = HSE_SEND_HEADER_EX_INFO *","url":"/ddoc/druntime/core/sys/windows/httpext.html#LPHSE_SEND_HEADER_EX_INF"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.idispids","name":"core.sys.windows.idispids","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/idispids.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.imagehlp","name":"core.sys.windows.imagehlp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/imagehlp.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"CheckSumMappedFile","package":"druntime","parentType":"","signature":"PIMAGE_NT_HEADERS CheckSumMappedFile(LPVOID,  DWORD,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/CheckSumMappedFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"MapFileAndCheckSumA","package":"druntime","parentType":"","signature":"DWORD MapFileAndCheckSumA(LPSTR,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/MapFileAndCheckSumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"MapFileAndCheckSumW","package":"druntime","parentType":"","signature":"DWORD MapFileAndCheckSumW(PWSTR,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/MapFileAndCheckSumW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"TouchFileTimes","package":"druntime","parentType":"","signature":"BOOL TouchFileTimes(HANDLE,  LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/imagehlp/TouchFileTimes.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SplitSymbols","package":"druntime","parentType":"","signature":"BOOL SplitSymbols(LPSTR,  LPSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SplitSymbols.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"FindDebugInfoFile","package":"druntime","parentType":"","signature":"HANDLE FindDebugInfoFile(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/FindDebugInfoFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"FindExecutableImage","package":"druntime","parentType":"","signature":"HANDLE FindExecutableImage(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/FindExecutableImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"UpdateDebugInfoFile","package":"druntime","parentType":"","signature":"BOOL UpdateDebugInfoFile(LPSTR,  LPSTR,  LPSTR,  PIMAGE_NT_HEADERS)","url":"/ddoc/druntime/core/sys/windows/imagehlp/UpdateDebugInfoFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"UpdateDebugInfoFileEx","package":"druntime","parentType":"","signature":"BOOL UpdateDebugInfoFileEx(LPSTR,  LPSTR,  LPSTR,  PIMAGE_NT_HEADERS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/UpdateDebugInfoFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"BindImage","package":"druntime","parentType":"","signature":"BOOL BindImage(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/BindImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"BindImageEx","package":"druntime","parentType":"","signature":"BOOL BindImageEx(DWORD,  LPSTR,  LPSTR,  LPSTR,  PIMAGEHLP_STATUS_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/BindImageEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ReBaseImage","package":"druntime","parentType":"","signature":"BOOL ReBaseImage(LPSTR,  LPSTR,  BOOL,  BOOL,  BOOL,  ULONG,  ULONG *,  ULONG_PTR *,\n       ULONG *,  ULONG_PTR *,  ULONG)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ReBaseImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageLoad","package":"druntime","parentType":"","signature":"PLOADED_IMAGE ImageLoad(LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageLoad.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageUnload","package":"druntime","parentType":"","signature":"BOOL ImageUnload(PLOADED_IMAGE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageUnload.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageNtHeader","package":"druntime","parentType":"","signature":"PIMAGE_NT_HEADERS ImageNtHeader(PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageNtHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageDirectoryEntryToData","package":"druntime","parentType":"","signature":"PVOID ImageDirectoryEntryToData(PVOID,  BOOLEAN,  USHORT,  PULONG)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageDirectoryEntryToData.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageRvaToSection","package":"druntime","parentType":"","signature":"PIMAGE_SECTION_HEADER ImageRvaToSection(PIMAGE_NT_HEADERS,  PVOID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageRvaToSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageRvaToVa","package":"druntime","parentType":"","signature":"PVOID ImageRvaToVa(PIMAGE_NT_HEADERS,  PVOID,  ULONG,\n       PIMAGE_SECTION_HEADER *)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageRvaToVa.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"MapAndLoad","package":"druntime","parentType":"","signature":"BOOL MapAndLoad(LPSTR,  LPSTR,  PLOADED_IMAGE,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/MapAndLoad.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"GetImageConfigInformation","package":"druntime","parentType":"","signature":"BOOL GetImageConfigInformation(PLOADED_IMAGE,\n       PIMAGE_LOAD_CONFIG_DIRECTORY)","url":"/ddoc/druntime/core/sys/windows/imagehlp/GetImageConfigInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"GetImageUnusedHeaderBytes","package":"druntime","parentType":"","signature":"DWORD GetImageUnusedHeaderBytes(PLOADED_IMAGE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/GetImageUnusedHeaderBytes.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SetImageConfigInformation","package":"druntime","parentType":"","signature":"BOOL SetImageConfigInformation(PLOADED_IMAGE,\n       PIMAGE_LOAD_CONFIG_DIRECTORY)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SetImageConfigInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"UnMapAndLoad","package":"druntime","parentType":"","signature":"BOOL UnMapAndLoad(PLOADED_IMAGE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/UnMapAndLoad.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"MapDebugInformation","package":"druntime","parentType":"","signature":"PIMAGE_DEBUG_INFORMATION MapDebugInformation(HANDLE,  LPSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/MapDebugInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"UnmapDebugInformation","package":"druntime","parentType":"","signature":"BOOL UnmapDebugInformation(PIMAGE_DEBUG_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/imagehlp/UnmapDebugInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"FindExecutableImage","package":"druntime","parentType":"","signature":"HANDLE FindExecutableImage(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/FindExecutableImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SearchTreeForFile","package":"druntime","parentType":"","signature":"BOOL SearchTreeForFile(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SearchTreeForFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"MakeSureDirectoryPathExists","package":"druntime","parentType":"","signature":"BOOL MakeSureDirectoryPathExists(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/MakeSureDirectoryPathExists.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"UnDecorateSymbolName","package":"druntime","parentType":"","signature":"DWORD UnDecorateSymbolName(LPCSTR,  LPSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/UnDecorateSymbolName.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"StackWalk","package":"druntime","parentType":"","signature":"BOOL StackWalk(DWORD,  HANDLE,  HANDLE,  LPSTACKFRAME,  LPVOID,\n       PREAD_PROCESS_MEMORY_ROUTINE,  PFUNCTION_TABLE_ACCESS_ROUTINE,\n       PGET_MODULE_BASE_ROUTINE,  PTRANSLATE_ADDRESS_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/StackWalk.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImagehlpApiVersion","package":"druntime","parentType":"","signature":"LPAPI_VERSION ImagehlpApiVersion()","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImagehlpApiVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImagehlpApiVersionEx","package":"druntime","parentType":"","signature":"LPAPI_VERSION ImagehlpApiVersionEx(LPAPI_VERSION)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImagehlpApiVersionEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"GetTimestampForLoadedLibrary","package":"druntime","parentType":"","signature":"DWORD GetTimestampForLoadedLibrary(HMODULE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/GetTimestampForLoadedLibrary.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"RemovePrivateCvSymbolic","package":"druntime","parentType":"","signature":"BOOL RemovePrivateCvSymbolic(PCHAR,  PCHAR *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/imagehlp/RemovePrivateCvSymbolic.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"RemoveRelocations","package":"druntime","parentType":"","signature":"VOID RemoveRelocations(PCHAR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/RemoveRelocations.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymSetOptions","package":"druntime","parentType":"","signature":"DWORD SymSetOptions(DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymSetOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetOptions","package":"druntime","parentType":"","signature":"DWORD SymGetOptions()","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymCleanup","package":"druntime","parentType":"","signature":"BOOL SymCleanup(HANDLE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymCleanup.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymEnumerateModules","package":"druntime","parentType":"","signature":"BOOL SymEnumerateModules(HANDLE,  PSYM_ENUMMODULES_CALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymEnumerateModules.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymEnumerateSymbols","package":"druntime","parentType":"","signature":"BOOL SymEnumerateSymbols(HANDLE,  DWORD,  PSYM_ENUMSYMBOLS_CALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymEnumerateSymbols.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"EnumerateLoadedModules","package":"druntime","parentType":"","signature":"BOOL EnumerateLoadedModules(HANDLE,  PENUMLOADED_MODULES_CALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp/EnumerateLoadedModules.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymFunctionTableAccess","package":"druntime","parentType":"","signature":"LPVOID SymFunctionTableAccess(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymFunctionTableAccess.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetModuleInfo","package":"druntime","parentType":"","signature":"BOOL SymGetModuleInfo(HANDLE,  DWORD,  PIMAGEHLP_MODULE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetModuleInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetModuleBase","package":"druntime","parentType":"","signature":"DWORD SymGetModuleBase(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetModuleBase.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetSymFromAddr","package":"druntime","parentType":"","signature":"BOOL SymGetSymFromAddr(HANDLE,  DWORD,  PDWORD,  PIMAGEHLP_SYMBOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetSymFromAddr.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetSymFromName","package":"druntime","parentType":"","signature":"BOOL SymGetSymFromName(HANDLE,  LPSTR,  PIMAGEHLP_SYMBOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetSymFromName.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetSymNext","package":"druntime","parentType":"","signature":"BOOL SymGetSymNext(HANDLE,  PIMAGEHLP_SYMBOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetSymNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetSymPrev","package":"druntime","parentType":"","signature":"BOOL SymGetSymPrev(HANDLE,  PIMAGEHLP_SYMBOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetSymPrev.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetLineFromAddr","package":"druntime","parentType":"","signature":"BOOL SymGetLineFromAddr(HANDLE,  DWORD,  PDWORD,  PIMAGEHLP_LINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetLineFromAddr.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetLineFromName","package":"druntime","parentType":"","signature":"BOOL SymGetLineFromName(HANDLE,  LPSTR,  LPSTR,  DWORD,  PLONG,\n       PIMAGEHLP_LINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetLineFromName.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetLineNext","package":"druntime","parentType":"","signature":"BOOL SymGetLineNext(HANDLE,  PIMAGEHLP_LINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetLineNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetLinePrev","package":"druntime","parentType":"","signature":"BOOL SymGetLinePrev(HANDLE,  PIMAGEHLP_LINE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetLinePrev.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymMatchFileName","package":"druntime","parentType":"","signature":"BOOL SymMatchFileName(LPSTR,  LPSTR,  LPSTR *,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymMatchFileName.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymInitialize","package":"druntime","parentType":"","signature":"BOOL SymInitialize(HANDLE,  LPSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymGetSearchPath","package":"druntime","parentType":"","signature":"BOOL SymGetSearchPath(HANDLE,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymGetSearchPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymSetSearchPath","package":"druntime","parentType":"","signature":"BOOL SymSetSearchPath(HANDLE,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymSetSearchPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymLoadModule","package":"druntime","parentType":"","signature":"BOOL SymLoadModule(HANDLE,  HANDLE,  PSTR,  PSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymLoadModule.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymUnloadModule","package":"druntime","parentType":"","signature":"BOOL SymUnloadModule(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymUnloadModule.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymUnDName","package":"druntime","parentType":"","signature":"BOOL SymUnDName(PIMAGEHLP_SYMBOL,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymUnDName.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"SymRegisterCallback","package":"druntime","parentType":"","signature":"BOOL SymRegisterCallback(HANDLE,  PSYMBOL_REGISTERED_CALLBACK,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp/SymRegisterCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageGetDigestStream","package":"druntime","parentType":"","signature":"BOOL ImageGetDigestStream(HANDLE,  DWORD,  DIGEST_FUNCTION,  DIGEST_HANDLE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageGetDigestStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageAddCertificate","package":"druntime","parentType":"","signature":"BOOL ImageAddCertificate(HANDLE,  LPWIN_CERTIFICATE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageAddCertificate.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageRemoveCertificate","package":"druntime","parentType":"","signature":"BOOL ImageRemoveCertificate(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageRemoveCertificate.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageEnumerateCertificates","package":"druntime","parentType":"","signature":"BOOL ImageEnumerateCertificates(HANDLE,  WORD,  PDWORD,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageEnumerateCertificates.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageGetCertificateData","package":"druntime","parentType":"","signature":"BOOL ImageGetCertificateData(HANDLE,  DWORD,  LPWIN_CERTIFICATE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageGetCertificateData.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"ImageGetCertificateHeader","package":"druntime","parentType":"","signature":"BOOL ImageGetCertificateHeader(HANDLE,  DWORD,  LPWIN_CERTIFICATE)","url":"/ddoc/druntime/core/sys/windows/imagehlp/ImageGetCertificateHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"CopyPdb","package":"druntime","parentType":"","signature":"BOOL CopyPdb(CHAR *,  CHAR *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/imagehlp/CopyPdb.html"},{"doc":"","kind":"function","module":"core.sys.windows.imagehlp","name":"RemovePrivateCvSymbolicEx","package":"druntime","parentType":"","signature":"BOOL RemovePrivateCvSymbolicEx(PCHAR,  ULONG,  PCHAR *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/imagehlp/RemovePrivateCvSymbolicEx.html"},{"doc":"","kind":"enum","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_STATUS_REASON","package":"druntime","parentType":"","signature":"IMAGEHLP_STATUS_REASON","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindOutOfMemory","package":"druntime","parentType":"","signature":"BindOutOfMemory = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindRvaToVaFailed","package":"druntime","parentType":"","signature":"BindRvaToVaFailed = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindNoRoomInImage","package":"druntime","parentType":"","signature":"BindNoRoomInImage = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImportModuleFailed","package":"druntime","parentType":"","signature":"BindImportModuleFailed = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImportProcedureFailed","package":"druntime","parentType":"","signature":"BindImportProcedureFailed = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImportModule","package":"druntime","parentType":"","signature":"BindImportModule = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImportProcedure","package":"druntime","parentType":"","signature":"BindImportProcedure = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindForwarder","package":"druntime","parentType":"","signature":"BindForwarder = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindForwarderNOT","package":"druntime","parentType":"","signature":"BindForwarderNOT = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImageModified","package":"druntime","parentType":"","signature":"BindImageModified = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindExpandFileHeaders","package":"druntime","parentType":"","signature":"BindExpandFileHeaders = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindImageComplete","package":"druntime","parentType":"","signature":"BindImageComplete = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindMismatchedSymbols","package":"druntime","parentType":"","signature":"BindMismatchedSymbols = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"BindSymbolsNotUpdated","package":"druntime","parentType":"","signature":"BindSymbolsNotUpdated = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_STATUS_REASON"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"LOADED_IMAGE","package":"druntime","parentType":"","signature":"LOADED_IMAGE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#LOADED_IMAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PLOADED_IMAGE","package":"druntime","parentType":"","signature":"PLOADED_IMAGE = LOADED_IMAGE *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PLOADED_IMAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGE_DEBUG_INFORMATION","package":"druntime","parentType":"","signature":"IMAGE_DEBUG_INFORMATION","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGE_DEBUG_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGE_DEBUG_INFORMATION","package":"druntime","parentType":"","signature":"PIMAGE_DEBUG_INFORMATION = IMAGE_DEBUG_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGE_DEBUG_INFORMATION"},{"doc":"","kind":"enum","module":"core.sys.windows.imagehlp","name":"ADDRESS_MODE","package":"druntime","parentType":"","signature":"ADDRESS_MODE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"AddrMode1616","package":"druntime","parentType":"","signature":"AddrMode1616 = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"AddrMode1632","package":"druntime","parentType":"","signature":"AddrMode1632 = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"AddrModeReal","package":"druntime","parentType":"","signature":"AddrModeReal = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS_MODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"AddrModeFlat","package":"druntime","parentType":"","signature":"AddrModeFlat = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS_MODE"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"ADDRESS","package":"druntime","parentType":"","signature":"ADDRESS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#ADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"LPADDRESS","package":"druntime","parentType":"","signature":"LPADDRESS = ADDRESS *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#LPADDRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"KDHELP","package":"druntime","parentType":"","signature":"KDHELP","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#KDHELP"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PKDHELP","package":"druntime","parentType":"","signature":"PKDHELP = KDHELP *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PKDHELP"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"STACKFRAME","package":"druntime","parentType":"","signature":"STACKFRAME","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#STACKFRAME"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"LPSTACKFRAME","package":"druntime","parentType":"","signature":"LPSTACKFRAME = STACKFRAME *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#LPSTACKFRAME"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"LPAPI_VERSION","package":"druntime","parentType":"","signature":"LPAPI_VERSION = API_VERSION *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#LPAPI_VERSION"},{"doc":"","kind":"enum","module":"core.sys.windows.imagehlp","name":"SYM_TYPE","package":"druntime","parentType":"","signature":"SYM_TYPE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymNone","package":"druntime","parentType":"","signature":"SymNone = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymCoff","package":"druntime","parentType":"","signature":"SymCoff = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymCv","package":"druntime","parentType":"","signature":"SymCv = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymPdb","package":"druntime","parentType":"","signature":"SymPdb = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymExport","package":"druntime","parentType":"","signature":"SymExport = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymDeferred","package":"druntime","parentType":"","signature":"SymDeferred = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.imagehlp","name":"SymSym","package":"druntime","parentType":"","signature":"SymSym = ","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYM_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_SYMBOL","package":"druntime","parentType":"","signature":"IMAGEHLP_SYMBOL","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_SYMBOL"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_SYMBOL","package":"druntime","parentType":"","signature":"PIMAGEHLP_SYMBOL = IMAGEHLP_SYMBOL *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_SYMBOL"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_MODULE","package":"druntime","parentType":"","signature":"IMAGEHLP_MODULE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_MODULE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_MODULE","package":"druntime","parentType":"","signature":"PIMAGEHLP_MODULE = IMAGEHLP_MODULE *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_MODULE"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_LINE","package":"druntime","parentType":"","signature":"IMAGEHLP_LINE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_LINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_LINE","package":"druntime","parentType":"","signature":"PIMAGEHLP_LINE = IMAGEHLP_LINE *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_LINE"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","package":"druntime","parentType":"","signature":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_DEFERRED_SYMBOL_LOAD"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_DEFERRED_SYMBOL_LOAD","package":"druntime","parentType":"","signature":"PIMAGEHLP_DEFERRED_SYMBOL_LOAD = IMAGEHLP_DEFERRED_SYMBOL_LOAD *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_DEFERRED_SYMBOL_LOAD"},{"doc":"","kind":"struct","module":"core.sys.windows.imagehlp","name":"IMAGEHLP_DUPLICATE_SYMBOL","package":"druntime","parentType":"","signature":"IMAGEHLP_DUPLICATE_SYMBOL","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGEHLP_DUPLICATE_SYMBOL"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_DUPLICATE_SYMBOL","package":"druntime","parentType":"","signature":"PIMAGEHLP_DUPLICATE_SYMBOL = IMAGEHLP_DUPLICATE_SYMBOL *","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_DUPLICATE_SYMBOL"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"DIGEST_HANDLE","package":"druntime","parentType":"","signature":"DIGEST_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#DIGEST_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PIMAGEHLP_STATUS_ROUTINE","package":"druntime","parentType":"","signature":"PIMAGEHLP_STATUS_ROUTINE = BOOL function(IMAGEHLP_STATUS_REASON,  LPSTR,  LPSTR,  ULONG_PTR,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PIMAGEHLP_STATUS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PREAD_PROCESS_MEMORY_ROUTINE","package":"druntime","parentType":"","signature":"PREAD_PROCESS_MEMORY_ROUTINE = BOOL function(HANDLE ,  LPCVOID,  LPVOID,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PREAD_PROCESS_MEMORY_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PFUNCTION_TABLE_ACCESS_ROUTINE","package":"druntime","parentType":"","signature":"PFUNCTION_TABLE_ACCESS_ROUTINE = LPVOID function(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PFUNCTION_TABLE_ACCESS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PGET_MODULE_BASE_ROUTINE","package":"druntime","parentType":"","signature":"PGET_MODULE_BASE_ROUTINE = DWORD function(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PGET_MODULE_BASE_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PTRANSLATE_ADDRESS_ROUTINE","package":"druntime","parentType":"","signature":"PTRANSLATE_ADDRESS_ROUTINE = DWORD function(HANDLE,  HANDLE,  LPADDRESS)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PTRANSLATE_ADDRESS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PSYM_ENUMMODULES_CALLBACK","package":"druntime","parentType":"","signature":"PSYM_ENUMMODULES_CALLBACK = BOOL function(LPSTR,  ULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PSYM_ENUMMODULES_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PSYM_ENUMSYMBOLS_CALLBACK","package":"druntime","parentType":"","signature":"PSYM_ENUMSYMBOLS_CALLBACK = BOOL function(LPSTR,  ULONG,  ULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PSYM_ENUMSYMBOLS_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PENUMLOADED_MODULES_CALLBACK","package":"druntime","parentType":"","signature":"PENUMLOADED_MODULES_CALLBACK = BOOL function(LPSTR,  ULONG,  ULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PENUMLOADED_MODULES_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"PSYMBOL_REGISTERED_CALLBACK","package":"druntime","parentType":"","signature":"PSYMBOL_REGISTERED_CALLBACK = BOOL function(HANDLE,  ULONG,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#PSYMBOL_REGISTERED_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.imagehlp","name":"DIGEST_FUNCTION","package":"druntime","parentType":"","signature":"DIGEST_FUNCTION = BOOL function(DIGEST_HANDLE refdata,  PBYTE pData,  DWORD dwLength)","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#DIGEST_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"API_VERSION_NUMBER","package":"druntime","parentType":"","signature":"API_VERSION_NUMBER","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#API_VERSION_NUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"BIND_NO_BOUND_IMPORTS","package":"druntime","parentType":"","signature":"BIND_NO_BOUND_IMPORTS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#BIND_NO_BOUND_IMPORTS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"BIND_NO_UPDATE","package":"druntime","parentType":"","signature":"BIND_NO_UPDATE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#BIND_NO_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"BIND_ALL_IMAGES","package":"druntime","parentType":"","signature":"BIND_ALL_IMAGES","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#BIND_ALL_IMAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"BIND_CACHE_IMPORT_DLLS","package":"druntime","parentType":"","signature":"BIND_CACHE_IMPORT_DLLS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#BIND_CACHE_IMPORT_DLLS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","package":"druntime","parentType":"","signature":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#CERT_PE_IMAGE_DIGEST_DEBUG_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"CERT_PE_IMAGE_DIGEST_RESOURCES","package":"druntime","parentType":"","signature":"CERT_PE_IMAGE_DIGEST_RESOURCES","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#CERT_PE_IMAGE_DIGEST_RESOURCES"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","package":"druntime","parentType":"","signature":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","package":"druntime","parentType":"","signature":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#CERT_PE_IMAGE_DIGEST_NON_PE_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"CERT_SECTION_TYPE_ANY","package":"druntime","parentType":"","signature":"CERT_SECTION_TYPE_ANY","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#CERT_SECTION_TYPE_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"IMAGE_SEPARATION","package":"druntime","parentType":"","signature":"IMAGE_SEPARATION","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#IMAGE_SEPARATION"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SPLITSYM_REMOVE_PRIVATE","package":"druntime","parentType":"","signature":"SPLITSYM_REMOVE_PRIVATE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SPLITSYM_REMOVE_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SPLITSYM_EXTRACT_ALL","package":"druntime","parentType":"","signature":"SPLITSYM_EXTRACT_ALL","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SPLITSYM_EXTRACT_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SPLITSYM_SYMBOLPATH_IS_SRC","package":"druntime","parentType":"","signature":"SPLITSYM_SYMBOLPATH_IS_SRC","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SPLITSYM_SYMBOLPATH_IS_SRC"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMF_OMAP_GENERATED","package":"druntime","parentType":"","signature":"SYMF_OMAP_GENERATED","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMF_OMAP_GENERATED"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMF_OMAP_MODIFIED","package":"druntime","parentType":"","signature":"SYMF_OMAP_MODIFIED","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMF_OMAP_MODIFIED"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMOPT_CASE_INSENSITIVE","package":"druntime","parentType":"","signature":"SYMOPT_CASE_INSENSITIVE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMOPT_CASE_INSENSITIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMOPT_UNDNAME","package":"druntime","parentType":"","signature":"SYMOPT_UNDNAME","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMOPT_UNDNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMOPT_DEFERRED_LOADS","package":"druntime","parentType":"","signature":"SYMOPT_DEFERRED_LOADS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMOPT_DEFERRED_LOADS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"SYMOPT_NO_CPP","package":"druntime","parentType":"","signature":"SYMOPT_NO_CPP","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#SYMOPT_NO_CPP"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_COMPLETE","package":"druntime","parentType":"","signature":"UNDNAME_COMPLETE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_LEADING_UNDERSCORES","package":"druntime","parentType":"","signature":"UNDNAME_NO_LEADING_UNDERSCORES","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_LEADING_UNDERSCORES"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_MS_KEYWORDS","package":"druntime","parentType":"","signature":"UNDNAME_NO_MS_KEYWORDS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_MS_KEYWORDS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_FUNCTION_RETURNS","package":"druntime","parentType":"","signature":"UNDNAME_NO_FUNCTION_RETURNS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_FUNCTION_RETURNS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_ALLOCATION_MODEL","package":"druntime","parentType":"","signature":"UNDNAME_NO_ALLOCATION_MODEL","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_ALLOCATION_MODEL"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_ALLOCATION_LANGUAGE","package":"druntime","parentType":"","signature":"UNDNAME_NO_ALLOCATION_LANGUAGE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_ALLOCATION_LANGUAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_MS_THISTYPE","package":"druntime","parentType":"","signature":"UNDNAME_NO_MS_THISTYPE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_MS_THISTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_CV_THISTYPE","package":"druntime","parentType":"","signature":"UNDNAME_NO_CV_THISTYPE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_CV_THISTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_THISTYPE","package":"druntime","parentType":"","signature":"UNDNAME_NO_THISTYPE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_THISTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_ACCESS_SPECIFIERS","package":"druntime","parentType":"","signature":"UNDNAME_NO_ACCESS_SPECIFIERS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_ACCESS_SPECIFIERS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_THROW_SIGNATURES","package":"druntime","parentType":"","signature":"UNDNAME_NO_THROW_SIGNATURES","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_THROW_SIGNATURES"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_MEMBER_TYPE","package":"druntime","parentType":"","signature":"UNDNAME_NO_MEMBER_TYPE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_MEMBER_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_RETURN_UDT_MODEL","package":"druntime","parentType":"","signature":"UNDNAME_NO_RETURN_UDT_MODEL","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_RETURN_UDT_MODEL"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_32_BIT_DECODE","package":"druntime","parentType":"","signature":"UNDNAME_32_BIT_DECODE","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_32_BIT_DECODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NAME_ONLY","package":"druntime","parentType":"","signature":"UNDNAME_NAME_ONLY","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NAME_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_ARGUMENTS","package":"druntime","parentType":"","signature":"UNDNAME_NO_ARGUMENTS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_ARGUMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.imagehlp","name":"UNDNAME_NO_SPECIAL_SYMS","package":"druntime","parentType":"","signature":"UNDNAME_NO_SPECIAL_SYMS","url":"/ddoc/druntime/core/sys/windows/imagehlp.html#UNDNAME_NO_SPECIAL_SYMS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.imm","name":"core.sys.windows.imm","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/imm.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmInstallIMEA","package":"druntime","parentType":"","signature":"HKL ImmInstallIMEA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmInstallIMEA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmInstallIMEW","package":"druntime","parentType":"","signature":"HKL ImmInstallIMEW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmInstallIMEW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetDefaultIMEWnd","package":"druntime","parentType":"","signature":"HWND ImmGetDefaultIMEWnd(HWND)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetDefaultIMEWnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetDescriptionA","package":"druntime","parentType":"","signature":"UINT ImmGetDescriptionA(HKL,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetDescriptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetDescriptionW","package":"druntime","parentType":"","signature":"UINT ImmGetDescriptionW(HKL,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetDescriptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetIMEFileNameA","package":"druntime","parentType":"","signature":"UINT ImmGetIMEFileNameA(HKL,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetIMEFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetIMEFileNameW","package":"druntime","parentType":"","signature":"UINT ImmGetIMEFileNameW(HKL,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetIMEFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetProperty","package":"druntime","parentType":"","signature":"DWORD ImmGetProperty(HKL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmIsIME","package":"druntime","parentType":"","signature":"BOOL ImmIsIME(HKL)","url":"/ddoc/druntime/core/sys/windows/imm/ImmIsIME.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSimulateHotKey","package":"druntime","parentType":"","signature":"BOOL ImmSimulateHotKey(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSimulateHotKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmCreateContext","package":"druntime","parentType":"","signature":"HIMC ImmCreateContext()","url":"/ddoc/druntime/core/sys/windows/imm/ImmCreateContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmDestroyContext","package":"druntime","parentType":"","signature":"BOOL ImmDestroyContext(HIMC)","url":"/ddoc/druntime/core/sys/windows/imm/ImmDestroyContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetContext","package":"druntime","parentType":"","signature":"HIMC ImmGetContext(HWND)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmReleaseContext","package":"druntime","parentType":"","signature":"BOOL ImmReleaseContext(HWND,  HIMC)","url":"/ddoc/druntime/core/sys/windows/imm/ImmReleaseContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmAssociateContext","package":"druntime","parentType":"","signature":"HIMC ImmAssociateContext(HWND,  HIMC)","url":"/ddoc/druntime/core/sys/windows/imm/ImmAssociateContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCompositionStringA","package":"druntime","parentType":"","signature":"LONG ImmGetCompositionStringA(HIMC,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCompositionStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCompositionStringW","package":"druntime","parentType":"","signature":"LONG ImmGetCompositionStringW(HIMC,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCompositionStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCompositionStringA","package":"druntime","parentType":"","signature":"BOOL ImmSetCompositionStringA(HIMC,  DWORD,  PCVOID,  DWORD,  PCVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCompositionStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCompositionStringW","package":"druntime","parentType":"","signature":"BOOL ImmSetCompositionStringW(HIMC,  DWORD,  PCVOID,  DWORD,  PCVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCompositionStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCandidateListCountA","package":"druntime","parentType":"","signature":"DWORD ImmGetCandidateListCountA(HIMC,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCandidateListCountA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCandidateListCountW","package":"druntime","parentType":"","signature":"DWORD ImmGetCandidateListCountW(HIMC,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCandidateListCountW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCandidateListA","package":"druntime","parentType":"","signature":"DWORD ImmGetCandidateListA(HIMC,  DWORD,  PCANDIDATELIST,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCandidateListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCandidateListW","package":"druntime","parentType":"","signature":"DWORD ImmGetCandidateListW(HIMC,  DWORD,  PCANDIDATELIST,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCandidateListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetGuideLineA","package":"druntime","parentType":"","signature":"DWORD ImmGetGuideLineA(HIMC,  DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetGuideLineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetGuideLineW","package":"druntime","parentType":"","signature":"DWORD ImmGetGuideLineW(HIMC,  DWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetGuideLineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetConversionStatus","package":"druntime","parentType":"","signature":"BOOL ImmGetConversionStatus(HIMC,  LPDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetConversionStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetConversionStatus","package":"druntime","parentType":"","signature":"BOOL ImmSetConversionStatus(HIMC,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetConversionStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetOpenStatus","package":"druntime","parentType":"","signature":"BOOL ImmGetOpenStatus(HIMC)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetOpenStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetOpenStatus","package":"druntime","parentType":"","signature":"BOOL ImmSetOpenStatus(HIMC,  BOOL)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetOpenStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCompositionFontA","package":"druntime","parentType":"","signature":"BOOL ImmGetCompositionFontA(HIMC,  LPLOGFONTA)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCompositionFontA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCompositionFontW","package":"druntime","parentType":"","signature":"BOOL ImmGetCompositionFontW(HIMC,  LPLOGFONTW)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCompositionFontW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCompositionFontA","package":"druntime","parentType":"","signature":"BOOL ImmSetCompositionFontA(HIMC,  LPLOGFONTA)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCompositionFontA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCompositionFontW","package":"druntime","parentType":"","signature":"BOOL ImmSetCompositionFontW(HIMC,  LPLOGFONTW)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCompositionFontW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmConfigureIMEA","package":"druntime","parentType":"","signature":"BOOL ImmConfigureIMEA(HKL,  HWND,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmConfigureIMEA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmConfigureIMEW","package":"druntime","parentType":"","signature":"BOOL ImmConfigureIMEW(HKL,  HWND,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmConfigureIMEW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmEscapeA","package":"druntime","parentType":"","signature":"LRESULT ImmEscapeA(HKL,  HIMC,  UINT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmEscapeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmEscapeW","package":"druntime","parentType":"","signature":"LRESULT ImmEscapeW(HKL,  HIMC,  UINT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmEscapeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetConversionListA","package":"druntime","parentType":"","signature":"DWORD ImmGetConversionListA(HKL,  HIMC,  LPCSTR,  PCANDIDATELIST,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetConversionListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetConversionListW","package":"druntime","parentType":"","signature":"DWORD ImmGetConversionListW(HKL,  HIMC,  LPCWSTR,  PCANDIDATELIST,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetConversionListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmNotifyIME","package":"druntime","parentType":"","signature":"BOOL ImmNotifyIME(HIMC,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmNotifyIME.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetStatusWindowPos","package":"druntime","parentType":"","signature":"BOOL ImmGetStatusWindowPos(HIMC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetStatusWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetStatusWindowPos","package":"druntime","parentType":"","signature":"BOOL ImmSetStatusWindowPos(HIMC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetStatusWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCompositionWindow","package":"druntime","parentType":"","signature":"BOOL ImmGetCompositionWindow(HIMC,  PCOMPOSITIONFORM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCompositionWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCompositionWindow","package":"druntime","parentType":"","signature":"BOOL ImmSetCompositionWindow(HIMC,  PCOMPOSITIONFORM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCompositionWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetCandidateWindow","package":"druntime","parentType":"","signature":"BOOL ImmGetCandidateWindow(HIMC,  DWORD,  PCANDIDATEFORM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetCandidateWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmSetCandidateWindow","package":"druntime","parentType":"","signature":"BOOL ImmSetCandidateWindow(HIMC,  PCANDIDATEFORM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmSetCandidateWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmIsUIMessageA","package":"druntime","parentType":"","signature":"BOOL ImmIsUIMessageA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmIsUIMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmIsUIMessageW","package":"druntime","parentType":"","signature":"BOOL ImmIsUIMessageW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/imm/ImmIsUIMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetVirtualKey","package":"druntime","parentType":"","signature":"UINT ImmGetVirtualKey(HWND)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetVirtualKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmRegisterWordA","package":"druntime","parentType":"","signature":"BOOL ImmRegisterWordA(HKL,  LPCSTR,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmRegisterWordA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmRegisterWordW","package":"druntime","parentType":"","signature":"BOOL ImmRegisterWordW(HKL,  LPCWSTR,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmRegisterWordW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmUnregisterWordA","package":"druntime","parentType":"","signature":"BOOL ImmUnregisterWordA(HKL,  LPCSTR,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmUnregisterWordA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmUnregisterWordW","package":"druntime","parentType":"","signature":"BOOL ImmUnregisterWordW(HKL,  LPCWSTR,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/imm/ImmUnregisterWordW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetRegisterWordStyleA","package":"druntime","parentType":"","signature":"UINT ImmGetRegisterWordStyleA(HKL,  UINT,  PSTYLEBUFA)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetRegisterWordStyleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetRegisterWordStyleW","package":"druntime","parentType":"","signature":"UINT ImmGetRegisterWordStyleW(HKL,  UINT,  PSTYLEBUFW)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetRegisterWordStyleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmEnumRegisterWordA","package":"druntime","parentType":"","signature":"UINT ImmEnumRegisterWordA(HKL,  REGISTERWORDENUMPROCA,  LPCSTR,  DWORD,  LPCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmEnumRegisterWordA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmEnumRegisterWordW","package":"druntime","parentType":"","signature":"UINT ImmEnumRegisterWordW(HKL,  REGISTERWORDENUMPROCW,  LPCWSTR,  DWORD,  LPCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/imm/ImmEnumRegisterWordW.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"EnableEUDC","package":"druntime","parentType":"","signature":"BOOL EnableEUDC(BOOL)","url":"/ddoc/druntime/core/sys/windows/imm/EnableEUDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmDisableIME","package":"druntime","parentType":"","signature":"BOOL ImmDisableIME(DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmDisableIME.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetImeMenuItemsA","package":"druntime","parentType":"","signature":"DWORD ImmGetImeMenuItemsA(HIMC,  DWORD,  DWORD,  LPIMEMENUITEMINFOA,  LPIMEMENUITEMINFOA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetImeMenuItemsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.imm","name":"ImmGetImeMenuItemsW","package":"druntime","parentType":"","signature":"DWORD ImmGetImeMenuItemsW(HIMC,  DWORD,  DWORD,  LPIMEMENUITEMINFOW,  LPIMEMENUITEMINFOW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/imm/ImmGetImeMenuItemsW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"HIMC","package":"druntime","parentType":"","signature":"HIMC = DWORD","url":"/ddoc/druntime/core/sys/windows/imm.html#HIMC"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"HIMCC","package":"druntime","parentType":"","signature":"HIMCC = DWORD","url":"/ddoc/druntime/core/sys/windows/imm.html#HIMCC"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"LPHKL","package":"druntime","parentType":"","signature":"LPHKL = HKL *","url":"/ddoc/druntime/core/sys/windows/imm.html#LPHKL"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"COMPOSITIONFORM","package":"druntime","parentType":"","signature":"COMPOSITIONFORM","url":"/ddoc/druntime/core/sys/windows/imm.html#COMPOSITIONFORM"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PCOMPOSITIONFORM","package":"druntime","parentType":"","signature":"PCOMPOSITIONFORM = COMPOSITIONFORM *","url":"/ddoc/druntime/core/sys/windows/imm.html#PCOMPOSITIONFORM"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"CANDIDATEFORM","package":"druntime","parentType":"","signature":"CANDIDATEFORM","url":"/ddoc/druntime/core/sys/windows/imm.html#CANDIDATEFORM"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PCANDIDATEFORM","package":"druntime","parentType":"","signature":"PCANDIDATEFORM = CANDIDATEFORM *","url":"/ddoc/druntime/core/sys/windows/imm.html#PCANDIDATEFORM"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"CANDIDATELIST","package":"druntime","parentType":"","signature":"CANDIDATELIST","url":"/ddoc/druntime/core/sys/windows/imm.html#CANDIDATELIST"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PCANDIDATELIST","package":"druntime","parentType":"","signature":"PCANDIDATELIST = CANDIDATELIST *","url":"/ddoc/druntime/core/sys/windows/imm.html#PCANDIDATELIST"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"REGISTERWORDA","package":"druntime","parentType":"","signature":"REGISTERWORDA","url":"/ddoc/druntime/core/sys/windows/imm.html#REGISTERWORDA"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PREGISTERWORDA","package":"druntime","parentType":"","signature":"PREGISTERWORDA = REGISTERWORDA *","url":"/ddoc/druntime/core/sys/windows/imm.html#PREGISTERWORDA"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"REGISTERWORDW","package":"druntime","parentType":"","signature":"REGISTERWORDW","url":"/ddoc/druntime/core/sys/windows/imm.html#REGISTERWORDW"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PREGISTERWORDW","package":"druntime","parentType":"","signature":"PREGISTERWORDW = REGISTERWORDW *","url":"/ddoc/druntime/core/sys/windows/imm.html#PREGISTERWORDW"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"STYLEBUFA","package":"druntime","parentType":"","signature":"STYLEBUFA","url":"/ddoc/druntime/core/sys/windows/imm.html#STYLEBUFA"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PSTYLEBUFA","package":"druntime","parentType":"","signature":"PSTYLEBUFA = STYLEBUFA *","url":"/ddoc/druntime/core/sys/windows/imm.html#PSTYLEBUFA"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"STYLEBUFW","package":"druntime","parentType":"","signature":"STYLEBUFW","url":"/ddoc/druntime/core/sys/windows/imm.html#STYLEBUFW"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PSTYLEBUFW","package":"druntime","parentType":"","signature":"PSTYLEBUFW = STYLEBUFW *","url":"/ddoc/druntime/core/sys/windows/imm.html#PSTYLEBUFW"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"IMEMENUITEMINFOA","package":"druntime","parentType":"","signature":"IMEMENUITEMINFOA","url":"/ddoc/druntime/core/sys/windows/imm.html#IMEMENUITEMINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PIMEMENUITEMINFOA","package":"druntime","parentType":"","signature":"PIMEMENUITEMINFOA = IMEMENUITEMINFOA *","url":"/ddoc/druntime/core/sys/windows/imm.html#PIMEMENUITEMINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.imm","name":"IMEMENUITEMINFOW","package":"druntime","parentType":"","signature":"IMEMENUITEMINFOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMEMENUITEMINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PIMEMENUITEMINFOW","package":"druntime","parentType":"","signature":"PIMEMENUITEMINFOW = IMEMENUITEMINFOW *","url":"/ddoc/druntime/core/sys/windows/imm.html#PIMEMENUITEMINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"REGISTERWORDENUMPROCA","package":"druntime","parentType":"","signature":"REGISTERWORDENUMPROCA = int  function (LPCSTR,  DWORD,  LPCSTR,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/imm.html#REGISTERWORDENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"REGISTERWORDENUMPROCW","package":"druntime","parentType":"","signature":"REGISTERWORDENUMPROCW = int  function (LPCWSTR,  DWORD,  LPCWSTR,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/imm.html#REGISTERWORDENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PSTYLEBUF","package":"druntime","parentType":"","signature":"PSTYLEBUF = STYLEBUF *","url":"/ddoc/druntime/core/sys/windows/imm.html#PSTYLEBUF"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PREGISTERWORD","package":"druntime","parentType":"","signature":"PREGISTERWORD = REGISTERWORD *","url":"/ddoc/druntime/core/sys/windows/imm.html#PREGISTERWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.imm","name":"PIMEMENUITEMINFO","package":"druntime","parentType":"","signature":"PIMEMENUITEMINFO = IMEMENUITEMINFO *","url":"/ddoc/druntime/core/sys/windows/imm.html#PIMEMENUITEMINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_CONVERTREQUESTEX","package":"druntime","parentType":"","signature":"WM_CONVERTREQUESTEX","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_CONVERTREQUESTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_STARTCOMPOSITION","package":"druntime","parentType":"","signature":"WM_IME_STARTCOMPOSITION","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_STARTCOMPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_ENDCOMPOSITION","package":"druntime","parentType":"","signature":"WM_IME_ENDCOMPOSITION","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_ENDCOMPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_COMPOSITION","package":"druntime","parentType":"","signature":"WM_IME_COMPOSITION","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_COMPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_KEYLAST","package":"druntime","parentType":"","signature":"WM_IME_KEYLAST","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_KEYLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_SETCONTEXT","package":"druntime","parentType":"","signature":"WM_IME_SETCONTEXT","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_SETCONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_NOTIFY","package":"druntime","parentType":"","signature":"WM_IME_NOTIFY","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_CONTROL","package":"druntime","parentType":"","signature":"WM_IME_CONTROL","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_CONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_COMPOSITIONFULL","package":"druntime","parentType":"","signature":"WM_IME_COMPOSITIONFULL","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_COMPOSITIONFULL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_SELECT","package":"druntime","parentType":"","signature":"WM_IME_SELECT","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_CHAR","package":"druntime","parentType":"","signature":"WM_IME_CHAR","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_REQUEST","package":"druntime","parentType":"","signature":"WM_IME_REQUEST","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_REQUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_KEYDOWN","package":"druntime","parentType":"","signature":"WM_IME_KEYDOWN","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_KEYDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"WM_IME_KEYUP","package":"druntime","parentType":"","signature":"WM_IME_KEYUP","url":"/ddoc/druntime/core/sys/windows/imm.html#WM_IME_KEYUP"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_GETCANDIDATEPOS","package":"druntime","parentType":"","signature":"IMC_GETCANDIDATEPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_GETCANDIDATEPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_SETCANDIDATEPOS","package":"druntime","parentType":"","signature":"IMC_SETCANDIDATEPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_SETCANDIDATEPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_GETCOMPOSITIONFONT","package":"druntime","parentType":"","signature":"IMC_GETCOMPOSITIONFONT","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_GETCOMPOSITIONFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_SETCOMPOSITIONFONT","package":"druntime","parentType":"","signature":"IMC_SETCOMPOSITIONFONT","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_SETCOMPOSITIONFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_GETCOMPOSITIONWINDOW","package":"druntime","parentType":"","signature":"IMC_GETCOMPOSITIONWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_GETCOMPOSITIONWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_SETCOMPOSITIONWINDOW","package":"druntime","parentType":"","signature":"IMC_SETCOMPOSITIONWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_SETCOMPOSITIONWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_GETSTATUSWINDOWPOS","package":"druntime","parentType":"","signature":"IMC_GETSTATUSWINDOWPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_GETSTATUSWINDOWPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_SETSTATUSWINDOWPOS","package":"druntime","parentType":"","signature":"IMC_SETSTATUSWINDOWPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_SETSTATUSWINDOWPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_CLOSESTATUSWINDOW","package":"druntime","parentType":"","signature":"IMC_CLOSESTATUSWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_CLOSESTATUSWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMC_OPENSTATUSWINDOW","package":"druntime","parentType":"","signature":"IMC_OPENSTATUSWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMC_OPENSTATUSWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_CLOSESTATUSWINDOW","package":"druntime","parentType":"","signature":"IMN_CLOSESTATUSWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_CLOSESTATUSWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_OPENSTATUSWINDOW","package":"druntime","parentType":"","signature":"IMN_OPENSTATUSWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_OPENSTATUSWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_CHANGECANDIDATE","package":"druntime","parentType":"","signature":"IMN_CHANGECANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_CHANGECANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_CLOSECANDIDATE","package":"druntime","parentType":"","signature":"IMN_CLOSECANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_CLOSECANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_OPENCANDIDATE","package":"druntime","parentType":"","signature":"IMN_OPENCANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_OPENCANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETCONVERSIONMODE","package":"druntime","parentType":"","signature":"IMN_SETCONVERSIONMODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETCONVERSIONMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETSENTENCEMODE","package":"druntime","parentType":"","signature":"IMN_SETSENTENCEMODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETSENTENCEMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETOPENSTATUS","package":"druntime","parentType":"","signature":"IMN_SETOPENSTATUS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETOPENSTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETCANDIDATEPOS","package":"druntime","parentType":"","signature":"IMN_SETCANDIDATEPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETCANDIDATEPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETCOMPOSITIONFONT","package":"druntime","parentType":"","signature":"IMN_SETCOMPOSITIONFONT","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETCOMPOSITIONFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETCOMPOSITIONWINDOW","package":"druntime","parentType":"","signature":"IMN_SETCOMPOSITIONWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETCOMPOSITIONWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_SETSTATUSWINDOWPOS","package":"druntime","parentType":"","signature":"IMN_SETSTATUSWINDOWPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_SETSTATUSWINDOWPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_GUIDELINE","package":"druntime","parentType":"","signature":"IMN_GUIDELINE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_GUIDELINE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMN_PRIVATE","package":"druntime","parentType":"","signature":"IMN_PRIVATE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMN_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_OPENCANDIDATE","package":"druntime","parentType":"","signature":"NI_OPENCANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_OPENCANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_CLOSECANDIDATE","package":"druntime","parentType":"","signature":"NI_CLOSECANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_CLOSECANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_SELECTCANDIDATESTR","package":"druntime","parentType":"","signature":"NI_SELECTCANDIDATESTR","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_SELECTCANDIDATESTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_CHANGECANDIDATELIST","package":"druntime","parentType":"","signature":"NI_CHANGECANDIDATELIST","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_CHANGECANDIDATELIST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_FINALIZECONVERSIONRESULT","package":"druntime","parentType":"","signature":"NI_FINALIZECONVERSIONRESULT","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_FINALIZECONVERSIONRESULT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_COMPOSITIONSTR","package":"druntime","parentType":"","signature":"NI_COMPOSITIONSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_COMPOSITIONSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_SETCANDIDATE_PAGESTART","package":"druntime","parentType":"","signature":"NI_SETCANDIDATE_PAGESTART","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_SETCANDIDATE_PAGESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_SETCANDIDATE_PAGESIZE","package":"druntime","parentType":"","signature":"NI_SETCANDIDATE_PAGESIZE","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_SETCANDIDATE_PAGESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"NI_IMEMENUSELECTED","package":"druntime","parentType":"","signature":"NI_IMEMENUSELECTED","url":"/ddoc/druntime/core/sys/windows/imm.html#NI_IMEMENUSELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ISC_SHOWUICANDIDATEWINDOW","package":"druntime","parentType":"","signature":"ISC_SHOWUICANDIDATEWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#ISC_SHOWUICANDIDATEWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ISC_SHOWUICOMPOSITIONWINDOW","package":"druntime","parentType":"","signature":"ISC_SHOWUICOMPOSITIONWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#ISC_SHOWUICOMPOSITIONWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ISC_SHOWUIGUIDELINE","package":"druntime","parentType":"","signature":"ISC_SHOWUIGUIDELINE","url":"/ddoc/druntime/core/sys/windows/imm.html#ISC_SHOWUIGUIDELINE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ISC_SHOWUIALLCANDIDATEWINDOW","package":"druntime","parentType":"","signature":"ISC_SHOWUIALLCANDIDATEWINDOW","url":"/ddoc/druntime/core/sys/windows/imm.html#ISC_SHOWUIALLCANDIDATEWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ISC_SHOWUIALL","package":"druntime","parentType":"","signature":"ISC_SHOWUIALL","url":"/ddoc/druntime/core/sys/windows/imm.html#ISC_SHOWUIALL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CPS_COMPLETE","package":"druntime","parentType":"","signature":"CPS_COMPLETE","url":"/ddoc/druntime/core/sys/windows/imm.html#CPS_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CPS_CONVERT","package":"druntime","parentType":"","signature":"CPS_CONVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#CPS_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CPS_REVERT","package":"druntime","parentType":"","signature":"CPS_REVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#CPS_REVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CPS_CANCEL","package":"druntime","parentType":"","signature":"CPS_CANCEL","url":"/ddoc/druntime/core/sys/windows/imm.html#CPS_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CHOTKEY_IME_NONIME_TOGGLE","package":"druntime","parentType":"","signature":"IME_CHOTKEY_IME_NONIME_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CHOTKEY_IME_NONIME_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CHOTKEY_SHAPE_TOGGLE","package":"druntime","parentType":"","signature":"IME_CHOTKEY_SHAPE_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CHOTKEY_SHAPE_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CHOTKEY_SYMBOL_TOGGLE","package":"druntime","parentType":"","signature":"IME_CHOTKEY_SYMBOL_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CHOTKEY_SYMBOL_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_JHOTKEY_CLOSE_OPEN","package":"druntime","parentType":"","signature":"IME_JHOTKEY_CLOSE_OPEN","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_JHOTKEY_CLOSE_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_KHOTKEY_SHAPE_TOGGLE","package":"druntime","parentType":"","signature":"IME_KHOTKEY_SHAPE_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_KHOTKEY_SHAPE_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_KHOTKEY_HANJACONVERT","package":"druntime","parentType":"","signature":"IME_KHOTKEY_HANJACONVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_KHOTKEY_HANJACONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_KHOTKEY_ENGLISH","package":"druntime","parentType":"","signature":"IME_KHOTKEY_ENGLISH","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_KHOTKEY_ENGLISH"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_THOTKEY_IME_NONIME_TOGGLE","package":"druntime","parentType":"","signature":"IME_THOTKEY_IME_NONIME_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_THOTKEY_IME_NONIME_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_THOTKEY_SHAPE_TOGGLE","package":"druntime","parentType":"","signature":"IME_THOTKEY_SHAPE_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_THOTKEY_SHAPE_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_THOTKEY_SYMBOL_TOGGLE","package":"druntime","parentType":"","signature":"IME_THOTKEY_SYMBOL_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_THOTKEY_SYMBOL_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_HOTKEY_DSWITCH_FIRST","package":"druntime","parentType":"","signature":"IME_HOTKEY_DSWITCH_FIRST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_HOTKEY_DSWITCH_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_HOTKEY_DSWITCH_LAST","package":"druntime","parentType":"","signature":"IME_HOTKEY_DSWITCH_LAST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_HOTKEY_DSWITCH_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ITHOTKEY_RESEND_RESULTSTR","package":"druntime","parentType":"","signature":"IME_ITHOTKEY_RESEND_RESULTSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ITHOTKEY_RESEND_RESULTSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","package":"druntime","parentType":"","signature":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ITHOTKEY_PREVIOUS_COMPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ITHOTKEY_UISTYLE_TOGGLE","package":"druntime","parentType":"","signature":"IME_ITHOTKEY_UISTYLE_TOGGLE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ITHOTKEY_UISTYLE_TOGGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPREADSTR","package":"druntime","parentType":"","signature":"GCS_COMPREADSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPREADSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPREADATTR","package":"druntime","parentType":"","signature":"GCS_COMPREADATTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPREADATTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPREADCLAUSE","package":"druntime","parentType":"","signature":"GCS_COMPREADCLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPREADCLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPSTR","package":"druntime","parentType":"","signature":"GCS_COMPSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPATTR","package":"druntime","parentType":"","signature":"GCS_COMPATTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPATTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_COMPCLAUSE","package":"druntime","parentType":"","signature":"GCS_COMPCLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_COMPCLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_CURSORPOS","package":"druntime","parentType":"","signature":"GCS_CURSORPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_CURSORPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_DELTASTART","package":"druntime","parentType":"","signature":"GCS_DELTASTART","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_DELTASTART"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_RESULTREADSTR","package":"druntime","parentType":"","signature":"GCS_RESULTREADSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_RESULTREADSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_RESULTREADCLAUSE","package":"druntime","parentType":"","signature":"GCS_RESULTREADCLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_RESULTREADCLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_RESULTSTR","package":"druntime","parentType":"","signature":"GCS_RESULTSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_RESULTSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCS_RESULTCLAUSE","package":"druntime","parentType":"","signature":"GCS_RESULTCLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#GCS_RESULTCLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CS_INSERTCHAR","package":"druntime","parentType":"","signature":"CS_INSERTCHAR","url":"/ddoc/druntime/core/sys/windows/imm.html#CS_INSERTCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CS_NOMOVECARET","package":"druntime","parentType":"","signature":"CS_NOMOVECARET","url":"/ddoc/druntime/core/sys/windows/imm.html#CS_NOMOVECARET"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMEVER_0310","package":"druntime","parentType":"","signature":"IMEVER_0310","url":"/ddoc/druntime/core/sys/windows/imm.html#IMEVER_0310"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMEVER_0400","package":"druntime","parentType":"","signature":"IMEVER_0400","url":"/ddoc/druntime/core/sys/windows/imm.html#IMEVER_0400"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_PROP_AT_CARET","package":"druntime","parentType":"","signature":"IME_PROP_AT_CARET","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_PROP_AT_CARET"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_PROP_SPECIAL_UI","package":"druntime","parentType":"","signature":"IME_PROP_SPECIAL_UI","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_PROP_SPECIAL_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_PROP_CANDLIST_START_FROM_1","package":"druntime","parentType":"","signature":"IME_PROP_CANDLIST_START_FROM_1","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_PROP_CANDLIST_START_FROM_1"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_PROP_UNICODE","package":"druntime","parentType":"","signature":"IME_PROP_UNICODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_PROP_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"UI_CAP_2700","package":"druntime","parentType":"","signature":"UI_CAP_2700","url":"/ddoc/druntime/core/sys/windows/imm.html#UI_CAP_2700"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"UI_CAP_ROT90","package":"druntime","parentType":"","signature":"UI_CAP_ROT90","url":"/ddoc/druntime/core/sys/windows/imm.html#UI_CAP_ROT90"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"UI_CAP_ROTANY","package":"druntime","parentType":"","signature":"UI_CAP_ROTANY","url":"/ddoc/druntime/core/sys/windows/imm.html#UI_CAP_ROTANY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SCS_CAP_COMPSTR","package":"druntime","parentType":"","signature":"SCS_CAP_COMPSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#SCS_CAP_COMPSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SCS_CAP_MAKEREAD","package":"druntime","parentType":"","signature":"SCS_CAP_MAKEREAD","url":"/ddoc/druntime/core/sys/windows/imm.html#SCS_CAP_MAKEREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SELECT_CAP_CONVERSION","package":"druntime","parentType":"","signature":"SELECT_CAP_CONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#SELECT_CAP_CONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SELECT_CAP_SENTENCE","package":"druntime","parentType":"","signature":"SELECT_CAP_SENTENCE","url":"/ddoc/druntime/core/sys/windows/imm.html#SELECT_CAP_SENTENCE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GGL_LEVEL","package":"druntime","parentType":"","signature":"GGL_LEVEL","url":"/ddoc/druntime/core/sys/windows/imm.html#GGL_LEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GGL_INDEX","package":"druntime","parentType":"","signature":"GGL_INDEX","url":"/ddoc/druntime/core/sys/windows/imm.html#GGL_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GGL_STRING","package":"druntime","parentType":"","signature":"GGL_STRING","url":"/ddoc/druntime/core/sys/windows/imm.html#GGL_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GGL_PRIVATE","package":"druntime","parentType":"","signature":"GGL_PRIVATE","url":"/ddoc/druntime/core/sys/windows/imm.html#GGL_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_LEVEL_NOGUIDELINE","package":"druntime","parentType":"","signature":"GL_LEVEL_NOGUIDELINE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_LEVEL_NOGUIDELINE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_LEVEL_FATAL","package":"druntime","parentType":"","signature":"GL_LEVEL_FATAL","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_LEVEL_FATAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_LEVEL_ERROR","package":"druntime","parentType":"","signature":"GL_LEVEL_ERROR","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_LEVEL_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_LEVEL_WARNING","package":"druntime","parentType":"","signature":"GL_LEVEL_WARNING","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_LEVEL_WARNING"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_LEVEL_INFORMATION","package":"druntime","parentType":"","signature":"GL_LEVEL_INFORMATION","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_LEVEL_INFORMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_UNKNOWN","package":"druntime","parentType":"","signature":"GL_ID_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_NOMODULE","package":"druntime","parentType":"","signature":"GL_ID_NOMODULE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_NOMODULE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_NODICTIONARY","package":"druntime","parentType":"","signature":"GL_ID_NODICTIONARY","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_NODICTIONARY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_CANNOTSAVE","package":"druntime","parentType":"","signature":"GL_ID_CANNOTSAVE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_CANNOTSAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_NOCONVERT","package":"druntime","parentType":"","signature":"GL_ID_NOCONVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_NOCONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_TYPINGERROR","package":"druntime","parentType":"","signature":"GL_ID_TYPINGERROR","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_TYPINGERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_TOOMANYSTROKE","package":"druntime","parentType":"","signature":"GL_ID_TOOMANYSTROKE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_TOOMANYSTROKE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_READINGCONFLICT","package":"druntime","parentType":"","signature":"GL_ID_READINGCONFLICT","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_READINGCONFLICT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_INPUTREADING","package":"druntime","parentType":"","signature":"GL_ID_INPUTREADING","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_INPUTREADING"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_INPUTRADICAL","package":"druntime","parentType":"","signature":"GL_ID_INPUTRADICAL","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_INPUTRADICAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_INPUTCODE","package":"druntime","parentType":"","signature":"GL_ID_INPUTCODE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_INPUTCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_INPUTSYMBOL","package":"druntime","parentType":"","signature":"GL_ID_INPUTSYMBOL","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_INPUTSYMBOL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_CHOOSECANDIDATE","package":"druntime","parentType":"","signature":"GL_ID_CHOOSECANDIDATE","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_CHOOSECANDIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_REVERSECONVERSION","package":"druntime","parentType":"","signature":"GL_ID_REVERSECONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_REVERSECONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_PRIVATE_FIRST","package":"druntime","parentType":"","signature":"GL_ID_PRIVATE_FIRST","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_PRIVATE_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GL_ID_PRIVATE_LAST","package":"druntime","parentType":"","signature":"GL_ID_PRIVATE_LAST","url":"/ddoc/druntime/core/sys/windows/imm.html#GL_ID_PRIVATE_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_GETIMEVERSION","package":"druntime","parentType":"","signature":"DWORD IGP_GETIMEVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_GETIMEVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_PROPERTY","package":"druntime","parentType":"","signature":"IGP_PROPERTY","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_PROPERTY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_CONVERSION","package":"druntime","parentType":"","signature":"IGP_CONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_CONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_SENTENCE","package":"druntime","parentType":"","signature":"IGP_SENTENCE","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_SENTENCE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_UI","package":"druntime","parentType":"","signature":"IGP_UI","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_SETCOMPSTR","package":"druntime","parentType":"","signature":"IGP_SETCOMPSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_SETCOMPSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGP_SELECT","package":"druntime","parentType":"","signature":"IGP_SELECT","url":"/ddoc/druntime/core/sys/windows/imm.html#IGP_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SCS_SETSTR","package":"druntime","parentType":"","signature":"SCS_SETSTR","url":"/ddoc/druntime/core/sys/windows/imm.html#SCS_SETSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SCS_CHANGEATTR","package":"druntime","parentType":"","signature":"SCS_CHANGEATTR","url":"/ddoc/druntime/core/sys/windows/imm.html#SCS_CHANGEATTR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SCS_CHANGECLAUSE","package":"druntime","parentType":"","signature":"SCS_CHANGECLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#SCS_CHANGECLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_INPUT","package":"druntime","parentType":"","signature":"ATTR_INPUT","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_INPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_TARGET_CONVERTED","package":"druntime","parentType":"","signature":"ATTR_TARGET_CONVERTED","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_TARGET_CONVERTED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_CONVERTED","package":"druntime","parentType":"","signature":"ATTR_CONVERTED","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_CONVERTED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_TARGET_NOTCONVERTED","package":"druntime","parentType":"","signature":"ATTR_TARGET_NOTCONVERTED","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_TARGET_NOTCONVERTED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_INPUT_ERROR","package":"druntime","parentType":"","signature":"ATTR_INPUT_ERROR","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_INPUT_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"ATTR_FIXEDCONVERTED","package":"druntime","parentType":"","signature":"ATTR_FIXEDCONVERTED","url":"/ddoc/druntime/core/sys/windows/imm.html#ATTR_FIXEDCONVERTED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_DEFAULT","package":"druntime","parentType":"","signature":"CFS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_RECT","package":"druntime","parentType":"","signature":"CFS_RECT","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_RECT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_POINT","package":"druntime","parentType":"","signature":"CFS_POINT","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_POINT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_SCREEN","package":"druntime","parentType":"","signature":"CFS_SCREEN","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_SCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_FORCE_POSITION","package":"druntime","parentType":"","signature":"CFS_FORCE_POSITION","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_FORCE_POSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_CANDIDATEPOS","package":"druntime","parentType":"","signature":"CFS_CANDIDATEPOS","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_CANDIDATEPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"CFS_EXCLUDE","package":"druntime","parentType":"","signature":"CFS_EXCLUDE","url":"/ddoc/druntime/core/sys/windows/imm.html#CFS_EXCLUDE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCL_CONVERSION","package":"druntime","parentType":"","signature":"GCL_CONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#GCL_CONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCL_REVERSECONVERSION","package":"druntime","parentType":"","signature":"GCL_REVERSECONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#GCL_REVERSECONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"GCL_REVERSE_LENGTH","package":"druntime","parentType":"","signature":"GCL_REVERSE_LENGTH","url":"/ddoc/druntime/core/sys/windows/imm.html#GCL_REVERSE_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_ALPHANUMERIC","package":"druntime","parentType":"","signature":"IME_CMODE_ALPHANUMERIC","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_ALPHANUMERIC"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_NATIVE","package":"druntime","parentType":"","signature":"IME_CMODE_NATIVE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_NATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_CHINESE","package":"druntime","parentType":"","signature":"IME_CMODE_CHINESE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_CHINESE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_HANGEUL","package":"druntime","parentType":"","signature":"IME_CMODE_HANGEUL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_HANGEUL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_HANGUL","package":"druntime","parentType":"","signature":"IME_CMODE_HANGUL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_HANGUL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_JAPANESE","package":"druntime","parentType":"","signature":"IME_CMODE_JAPANESE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_JAPANESE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_KATAKANA","package":"druntime","parentType":"","signature":"IME_CMODE_KATAKANA","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_KATAKANA"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_LANGUAGE","package":"druntime","parentType":"","signature":"IME_CMODE_LANGUAGE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_LANGUAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_FULLSHAPE","package":"druntime","parentType":"","signature":"IME_CMODE_FULLSHAPE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_FULLSHAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_ROMAN","package":"druntime","parentType":"","signature":"IME_CMODE_ROMAN","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_ROMAN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_CHARCODE","package":"druntime","parentType":"","signature":"IME_CMODE_CHARCODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_CHARCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_HANJACONVERT","package":"druntime","parentType":"","signature":"IME_CMODE_HANJACONVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_HANJACONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_SOFTKBD","package":"druntime","parentType":"","signature":"IME_CMODE_SOFTKBD","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_SOFTKBD"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_NOCONVERSION","package":"druntime","parentType":"","signature":"IME_CMODE_NOCONVERSION","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_NOCONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_EUDC","package":"druntime","parentType":"","signature":"IME_CMODE_EUDC","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_EUDC"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_SYMBOL","package":"druntime","parentType":"","signature":"IME_CMODE_SYMBOL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_SYMBOL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CMODE_FIXED","package":"druntime","parentType":"","signature":"IME_CMODE_FIXED","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CMODE_FIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_SMODE_NONE","package":"druntime","parentType":"","signature":"IME_SMODE_NONE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_SMODE_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_SMODE_PLAURALCLAUSE","package":"druntime","parentType":"","signature":"IME_SMODE_PLAURALCLAUSE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_SMODE_PLAURALCLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_SMODE_SINGLECONVERT","package":"druntime","parentType":"","signature":"IME_SMODE_SINGLECONVERT","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_SMODE_SINGLECONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_SMODE_AUTOMATIC","package":"druntime","parentType":"","signature":"IME_SMODE_AUTOMATIC","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_SMODE_AUTOMATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_SMODE_PHRASEPREDICT","package":"druntime","parentType":"","signature":"IME_SMODE_PHRASEPREDICT","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_SMODE_PHRASEPREDICT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_UNKNOWN","package":"druntime","parentType":"","signature":"IME_CAND_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_READ","package":"druntime","parentType":"","signature":"IME_CAND_READ","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_CODE","package":"druntime","parentType":"","signature":"IME_CAND_CODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_CODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_MEANING","package":"druntime","parentType":"","signature":"IME_CAND_MEANING","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_MEANING"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_RADICAL","package":"druntime","parentType":"","signature":"IME_CAND_RADICAL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_RADICAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CAND_STROKE","package":"druntime","parentType":"","signature":"IME_CAND_STROKE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CAND_STROKE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMM_ERROR_NODATA","package":"druntime","parentType":"","signature":"IMM_ERROR_NODATA","url":"/ddoc/druntime/core/sys/windows/imm.html#IMM_ERROR_NODATA"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMM_ERROR_GENERAL","package":"druntime","parentType":"","signature":"IMM_ERROR_GENERAL","url":"/ddoc/druntime/core/sys/windows/imm.html#IMM_ERROR_GENERAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CONFIG_GENERAL","package":"druntime","parentType":"","signature":"IME_CONFIG_GENERAL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CONFIG_GENERAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CONFIG_REGISTERWORD","package":"druntime","parentType":"","signature":"IME_CONFIG_REGISTERWORD","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CONFIG_REGISTERWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_CONFIG_SELECTDICTIONARY","package":"druntime","parentType":"","signature":"IME_CONFIG_SELECTDICTIONARY","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_CONFIG_SELECTDICTIONARY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_QUERY_SUPPORT","package":"druntime","parentType":"","signature":"IME_ESC_QUERY_SUPPORT","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_QUERY_SUPPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_RESERVED_FIRST","package":"druntime","parentType":"","signature":"IME_ESC_RESERVED_FIRST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_RESERVED_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_RESERVED_LAST","package":"druntime","parentType":"","signature":"IME_ESC_RESERVED_LAST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_RESERVED_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_PRIVATE_FIRST","package":"druntime","parentType":"","signature":"IME_ESC_PRIVATE_FIRST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_PRIVATE_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_PRIVATE_LAST","package":"druntime","parentType":"","signature":"IME_ESC_PRIVATE_LAST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_PRIVATE_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_SEQUENCE_TO_INTERNAL","package":"druntime","parentType":"","signature":"IME_ESC_SEQUENCE_TO_INTERNAL","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_SEQUENCE_TO_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_GET_EUDC_DICTIONARY","package":"druntime","parentType":"","signature":"IME_ESC_GET_EUDC_DICTIONARY","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_GET_EUDC_DICTIONARY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_SET_EUDC_DICTIONARY","package":"druntime","parentType":"","signature":"IME_ESC_SET_EUDC_DICTIONARY","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_SET_EUDC_DICTIONARY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_MAX_KEY","package":"druntime","parentType":"","signature":"IME_ESC_MAX_KEY","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_MAX_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_IME_NAME","package":"druntime","parentType":"","signature":"IME_ESC_IME_NAME","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_IME_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_SYNC_HOTKEY","package":"druntime","parentType":"","signature":"IME_ESC_SYNC_HOTKEY","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_SYNC_HOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_HANJA_MODE","package":"druntime","parentType":"","signature":"IME_ESC_HANJA_MODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_HANJA_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_ESC_AUTOMATA","package":"druntime","parentType":"","signature":"IME_ESC_AUTOMATA","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_ESC_AUTOMATA"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_REGWORD_STYLE_EUDC","package":"druntime","parentType":"","signature":"IME_REGWORD_STYLE_EUDC","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_REGWORD_STYLE_EUDC"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_REGWORD_STYLE_USER_FIRST","package":"druntime","parentType":"","signature":"IME_REGWORD_STYLE_USER_FIRST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_REGWORD_STYLE_USER_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IME_REGWORD_STYLE_USER_LAST","package":"druntime","parentType":"","signature":"IME_REGWORD_STYLE_USER_LAST","url":"/ddoc/druntime/core/sys/windows/imm.html#IME_REGWORD_STYLE_USER_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SOFTKEYBOARD_TYPE_T1","package":"druntime","parentType":"","signature":"SOFTKEYBOARD_TYPE_T1","url":"/ddoc/druntime/core/sys/windows/imm.html#SOFTKEYBOARD_TYPE_T1"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"SOFTKEYBOARD_TYPE_C1","package":"druntime","parentType":"","signature":"SOFTKEYBOARD_TYPE_C1","url":"/ddoc/druntime/core/sys/windows/imm.html#SOFTKEYBOARD_TYPE_C1"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMEMENUITEM_STRING_SIZE","package":"druntime","parentType":"","signature":"IMEMENUITEM_STRING_SIZE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMEMENUITEM_STRING_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_ALT","package":"druntime","parentType":"","signature":"MOD_ALT","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_ALT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_CONTROL","package":"druntime","parentType":"","signature":"MOD_CONTROL","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_CONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_SHIFT","package":"druntime","parentType":"","signature":"MOD_SHIFT","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_WIN","package":"druntime","parentType":"","signature":"MOD_WIN","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_WIN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_IGNORE_ALL_MODIFIER","package":"druntime","parentType":"","signature":"MOD_IGNORE_ALL_MODIFIER","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_IGNORE_ALL_MODIFIER"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_ON_KEYUP","package":"druntime","parentType":"","signature":"MOD_ON_KEYUP","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_ON_KEYUP"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_RIGHT","package":"druntime","parentType":"","signature":"MOD_RIGHT","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"MOD_LEFT","package":"druntime","parentType":"","signature":"MOD_LEFT","url":"/ddoc/druntime/core/sys/windows/imm.html#MOD_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IACE_CHILDREN","package":"druntime","parentType":"","signature":"IACE_CHILDREN","url":"/ddoc/druntime/core/sys/windows/imm.html#IACE_CHILDREN"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IACE_DEFAULT","package":"druntime","parentType":"","signature":"IACE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/imm.html#IACE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IACE_IGNORENOCONTEXT","package":"druntime","parentType":"","signature":"IACE_IGNORENOCONTEXT","url":"/ddoc/druntime/core/sys/windows/imm.html#IACE_IGNORENOCONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMIF_RIGHTMENU","package":"druntime","parentType":"","signature":"IGIMIF_RIGHTMENU","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMIF_RIGHTMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_CMODE","package":"druntime","parentType":"","signature":"IGIMII_CMODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_CMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_SMODE","package":"druntime","parentType":"","signature":"IGIMII_SMODE","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_SMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_CONFIGURE","package":"druntime","parentType":"","signature":"IGIMII_CONFIGURE","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_CONFIGURE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_TOOLS","package":"druntime","parentType":"","signature":"IGIMII_TOOLS","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_TOOLS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_HELP","package":"druntime","parentType":"","signature":"IGIMII_HELP","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_OTHER","package":"druntime","parentType":"","signature":"IGIMII_OTHER","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_OTHER"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IGIMII_INPUTTOOLS","package":"druntime","parentType":"","signature":"IGIMII_INPUTTOOLS","url":"/ddoc/druntime/core/sys/windows/imm.html#IGIMII_INPUTTOOLS"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFT_RADIOCHECK","package":"druntime","parentType":"","signature":"IMFT_RADIOCHECK","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFT_RADIOCHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFT_SEPARATOR","package":"druntime","parentType":"","signature":"IMFT_SEPARATOR","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFT_SEPARATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFT_SUBMENU","package":"druntime","parentType":"","signature":"IMFT_SUBMENU","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFT_SUBMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_GRAYED","package":"druntime","parentType":"","signature":"IMFS_GRAYED","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_GRAYED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_DISABLED","package":"druntime","parentType":"","signature":"IMFS_DISABLED","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_CHECKED","package":"druntime","parentType":"","signature":"IMFS_CHECKED","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_CHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_HILITE","package":"druntime","parentType":"","signature":"IMFS_HILITE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_HILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_ENABLED","package":"druntime","parentType":"","signature":"IMFS_ENABLED","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_ENABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_UNCHECKED","package":"druntime","parentType":"","signature":"IMFS_UNCHECKED","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_UNCHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_UNHILITE","package":"druntime","parentType":"","signature":"IMFS_UNHILITE","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_UNHILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"IMFS_DEFAULT","package":"druntime","parentType":"","signature":"IMFS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/imm.html#IMFS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.imm","name":"STYLE_DESCRIPTION_SIZE","package":"druntime","parentType":"","signature":"STYLE_DESCRIPTION_SIZE","url":"/ddoc/druntime/core/sys/windows/imm.html#STYLE_DESCRIPTION_SIZE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.intshcut","name":"core.sys.windows.intshcut","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/intshcut.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"InetIsOffline","package":"druntime","parentType":"","signature":"BOOL InetIsOffline(DWORD)","url":"/ddoc/druntime/core/sys/windows/intshcut/InetIsOffline.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"MIMEAssociationDialogA","package":"druntime","parentType":"","signature":"HRESULT MIMEAssociationDialogA(HWND,  DWORD,  PCSTR,  PCSTR,  PSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/intshcut/MIMEAssociationDialogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"MIMEAssociationDialogW","package":"druntime","parentType":"","signature":"HRESULT MIMEAssociationDialogW(HWND,  DWORD,  PCWSTR,  PCWSTR,  PWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/intshcut/MIMEAssociationDialogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"TranslateURLA","package":"druntime","parentType":"","signature":"HRESULT TranslateURLA(PCSTR,  DWORD,  PSTR *)","url":"/ddoc/druntime/core/sys/windows/intshcut/TranslateURLA.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"TranslateURLW","package":"druntime","parentType":"","signature":"HRESULT TranslateURLW(PCWSTR,  DWORD,  PWSTR *)","url":"/ddoc/druntime/core/sys/windows/intshcut/TranslateURLW.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"URLAssociationDialogA","package":"druntime","parentType":"","signature":"HRESULT URLAssociationDialogA(HWND,  DWORD,  PCSTR,  PCSTR,  PSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/intshcut/URLAssociationDialogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.intshcut","name":"URLAssociationDialogW","package":"druntime","parentType":"","signature":"HRESULT URLAssociationDialogW(HWND,  DWORD,  PCWSTR,  PCWSTR,  PWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/intshcut/URLAssociationDialogW.html"},{"doc":"","kind":"enum","module":"core.sys.windows.intshcut","name":"IURL_SETURL_FLAGS","package":"druntime","parentType":"","signature":"IURL_SETURL_FLAGS","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_SETURL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"IURL_SETURL_FL_GUESS_PROTOCOL","package":"druntime","parentType":"","signature":"IURL_SETURL_FL_GUESS_PROTOCOL = 1","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_SETURL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL","package":"druntime","parentType":"","signature":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_SETURL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"ALL_IURL_SETURL_FLAGS","package":"druntime","parentType":"","signature":"ALL_IURL_SETURL_FLAGS = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_SETURL_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.intshcut","name":"IURL_INVOKECOMMAND_FLAGS","package":"druntime","parentType":"","signature":"IURL_INVOKECOMMAND_FLAGS","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_INVOKECOMMAND_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"IURL_INVOKECOMMAND_FL_ALLOW_UI","package":"druntime","parentType":"","signature":"IURL_INVOKECOMMAND_FL_ALLOW_UI = 1","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_INVOKECOMMAND_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB","package":"druntime","parentType":"","signature":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_INVOKECOMMAND_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"ALL_IURL_INVOKECOMMAND_FLAGS","package":"druntime","parentType":"","signature":"ALL_IURL_INVOKECOMMAND_FLAGS = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IURL_INVOKECOMMAND_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.intshcut","name":"TRANSLATEURL_IN_FLAGS","package":"druntime","parentType":"","signature":"TRANSLATEURL_IN_FLAGS","url":"/ddoc/druntime/core/sys/windows/intshcut.html#TRANSLATEURL_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"TRANSLATEURL_FL_GUESS_PROTOCOL","package":"druntime","parentType":"","signature":"TRANSLATEURL_FL_GUESS_PROTOCOL = 1","url":"/ddoc/druntime/core/sys/windows/intshcut.html#TRANSLATEURL_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL","package":"druntime","parentType":"","signature":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#TRANSLATEURL_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"ALL_TRANSLATEURL_FLAGS","package":"druntime","parentType":"","signature":"ALL_TRANSLATEURL_FLAGS = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#TRANSLATEURL_IN_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.intshcut","name":"URLASSOCIATIONDIALOG_IN_FLAGS","package":"druntime","parentType":"","signature":"URLASSOCIATIONDIALOG_IN_FLAGS","url":"/ddoc/druntime/core/sys/windows/intshcut.html#URLASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"URLASSOCDLG_FL_USE_DEFAULT_NAME","package":"druntime","parentType":"","signature":"URLASSOCDLG_FL_USE_DEFAULT_NAME = 1","url":"/ddoc/druntime/core/sys/windows/intshcut.html#URLASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"URLASSOCDLG_FL_REGISTER_ASSOC","package":"druntime","parentType":"","signature":"URLASSOCDLG_FL_REGISTER_ASSOC = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#URLASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"ALL_URLASSOCDLG_FLAGS","package":"druntime","parentType":"","signature":"ALL_URLASSOCDLG_FLAGS = ","url":"/ddoc/druntime/core/sys/windows/intshcut.html#URLASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.intshcut","name":"MIMEASSOCIATIONDIALOG_IN_FLAGS","package":"druntime","parentType":"","signature":"MIMEASSOCIATIONDIALOG_IN_FLAGS","url":"/ddoc/druntime/core/sys/windows/intshcut.html#MIMEASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"MIMEASSOCDLG_FL_REGISTER_ASSOC","package":"druntime","parentType":"","signature":"MIMEASSOCDLG_FL_REGISTER_ASSOC = 1","url":"/ddoc/druntime/core/sys/windows/intshcut.html#MIMEASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.intshcut","name":"ALL_MIMEASSOCDLG_FLAGS","package":"druntime","parentType":"","signature":"ALL_MIMEASSOCDLG_FLAGS = MIMEASSOCDLG_FL_REGISTER_ASSOC","url":"/ddoc/druntime/core/sys/windows/intshcut.html#MIMEASSOCIATIONDIALOG_IN_FLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.intshcut","name":"URLINVOKECOMMANDINFO","package":"druntime","parentType":"","signature":"URLINVOKECOMMANDINFO","url":"/ddoc/druntime/core/sys/windows/intshcut.html#URLINVOKECOMMANDINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.intshcut","name":"CURLINVOKECOMMANDINFO","package":"druntime","parentType":"","signature":"CURLINVOKECOMMANDINFO = URLINVOKECOMMANDINFO","url":"/ddoc/druntime/core/sys/windows/intshcut.html#CURLINVOKECOMMANDINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.intshcut","name":"PURLINVOKECOMMANDINFO","package":"druntime","parentType":"","signature":"PURLINVOKECOMMANDINFO = URLINVOKECOMMANDINFO *","url":"/ddoc/druntime/core/sys/windows/intshcut.html#PURLINVOKECOMMANDINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.intshcut","name":"IUniformResourceLocator","package":"druntime","parentType":"","signature":"IUniformResourceLocator : IUnknown","url":"/ddoc/druntime/core/sys/windows/intshcut.html#IUniformResourceLocator"},{"doc":"","kind":"method","module":"core.sys.windows.intshcut","name":"SetURL","package":"druntime","parentType":"IUniformResourceLocator","signature":"HRESULT SetURL(PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/intshcut/IUniformResourceLocator.SetURL.html"},{"doc":"","kind":"method","module":"core.sys.windows.intshcut","name":"GetURL","package":"druntime","parentType":"IUniformResourceLocator","signature":"HRESULT GetURL(PSTR *)","url":"/ddoc/druntime/core/sys/windows/intshcut/IUniformResourceLocator.GetURL.html"},{"doc":"","kind":"method","module":"core.sys.windows.intshcut","name":"InvokeCommand","package":"druntime","parentType":"IUniformResourceLocator","signature":"HRESULT InvokeCommand(PURLINVOKECOMMANDINFO)","url":"/ddoc/druntime/core/sys/windows/intshcut/IUniformResourceLocator.InvokeCommand.html"},{"doc":"","kind":"alias","module":"core.sys.windows.intshcut","name":"PIUniformResourceLocator","package":"druntime","parentType":"","signature":"PIUniformResourceLocator = IUniformResourceLocator","url":"/ddoc/druntime/core/sys/windows/intshcut.html#PIUniformResourceLocator"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ipexport","name":"core.sys.windows.ipexport","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ipexport.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"IPAddr","package":"druntime","parentType":"","signature":"IPAddr = uint","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IPAddr"},{"doc":"","kind":"struct","module":"core.sys.windows.ipexport","name":"IP_OPTION_INFORMATION","package":"druntime","parentType":"","signature":"IP_OPTION_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IP_OPTION_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"PIP_OPTION_INFORMATION","package":"druntime","parentType":"","signature":"PIP_OPTION_INFORMATION = IP_OPTION_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ipexport.html#PIP_OPTION_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.ipexport","name":"ICMP_ECHO_REPLY","package":"druntime","parentType":"","signature":"ICMP_ECHO_REPLY","url":"/ddoc/druntime/core/sys/windows/ipexport.html#ICMP_ECHO_REPLY"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"PICMP_ECHO_REPLY","package":"druntime","parentType":"","signature":"PICMP_ECHO_REPLY = ICMP_ECHO_REPLY *","url":"/ddoc/druntime/core/sys/windows/ipexport.html#PICMP_ECHO_REPLY"},{"doc":"","kind":"struct","module":"core.sys.windows.ipexport","name":"IP_ADAPTER_INDEX_MAP","package":"druntime","parentType":"","signature":"IP_ADAPTER_INDEX_MAP","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IP_ADAPTER_INDEX_MAP"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"PIP_ADAPTER_INDEX_MAP","package":"druntime","parentType":"","signature":"PIP_ADAPTER_INDEX_MAP = IP_ADAPTER_INDEX_MAP *","url":"/ddoc/druntime/core/sys/windows/ipexport.html#PIP_ADAPTER_INDEX_MAP"},{"doc":"","kind":"struct","module":"core.sys.windows.ipexport","name":"IP_INTERFACE_INFO","package":"druntime","parentType":"","signature":"IP_INTERFACE_INFO","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IP_INTERFACE_INFO"},{"doc":"","kind":"method","module":"core.sys.windows.ipexport","name":"Adapter","package":"druntime","parentType":"IP_INTERFACE_INFO","signature":"IP_ADAPTER_INDEX_MAP * Adapter()","url":"/ddoc/druntime/core/sys/windows/ipexport/IP_INTERFACE_INFO.Adapter.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"PIP_INTERFACE_INFO","package":"druntime","parentType":"","signature":"PIP_INTERFACE_INFO = IP_INTERFACE_INFO *","url":"/ddoc/druntime/core/sys/windows/ipexport.html#PIP_INTERFACE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ipexport","name":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","package":"druntime","parentType":"","signature":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IP_UNIDIRECTIONAL_ADAPTER_ADDRESS"},{"doc":"","kind":"method","module":"core.sys.windows.ipexport","name":"Address","package":"druntime","parentType":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","signature":"IPAddr * Address()","url":"/ddoc/druntime/core/sys/windows/ipexport/IP_UNIDIRECTIONAL_ADAPTER_ADDRESS.Address.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ipexport","name":"PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS","package":"druntime","parentType":"","signature":"PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS = IP_UNIDIRECTIONAL_ADAPTER_ADDRESS *","url":"/ddoc/druntime/core/sys/windows/ipexport.html#PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.ipexport","name":"MAX_ADAPTER_NAME","package":"druntime","parentType":"","signature":"size_t MAX_ADAPTER_NAME","url":"/ddoc/druntime/core/sys/windows/ipexport.html#MAX_ADAPTER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.ipexport","name":"IP_FLAG_DF","package":"druntime","parentType":"","signature":"byte IP_FLAG_DF","url":"/ddoc/druntime/core/sys/windows/ipexport.html#IP_FLAG_DF"},{"doc":"","kind":"variable","module":"core.sys.windows.ipexport","name":"MAX_OPT_SIZE","package":"druntime","parentType":"","signature":"ubyte MAX_OPT_SIZE","url":"/ddoc/druntime/core/sys/windows/ipexport.html#MAX_OPT_SIZE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.iphlpapi","name":"core.sys.windows.iphlpapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/iphlpapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"AddIPAddress","package":"druntime","parentType":"","signature":"DWORD AddIPAddress(IPAddr,  IPMask,  DWORD,  PULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/AddIPAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"CreateIpForwardEntry","package":"druntime","parentType":"","signature":"DWORD CreateIpForwardEntry(PMIB_IPFORWARDROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/CreateIpForwardEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"CreateIpNetEntry","package":"druntime","parentType":"","signature":"DWORD CreateIpNetEntry(PMIB_IPNETROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/CreateIpNetEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"CreateProxyArpEntry","package":"druntime","parentType":"","signature":"DWORD CreateProxyArpEntry(DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/CreateProxyArpEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"DeleteIPAddress","package":"druntime","parentType":"","signature":"DWORD DeleteIPAddress(ULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/DeleteIPAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"DeleteIpForwardEntry","package":"druntime","parentType":"","signature":"DWORD DeleteIpForwardEntry(PMIB_IPFORWARDROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/DeleteIpForwardEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"DeleteIpNetEntry","package":"druntime","parentType":"","signature":"DWORD DeleteIpNetEntry(PMIB_IPNETROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/DeleteIpNetEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"DeleteProxyArpEntry","package":"druntime","parentType":"","signature":"DWORD DeleteProxyArpEntry(DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/DeleteProxyArpEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"EnableRouter","package":"druntime","parentType":"","signature":"DWORD EnableRouter(HANDLE *,  OVERLAPPED *)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/EnableRouter.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"FlushIpNetTable","package":"druntime","parentType":"","signature":"DWORD FlushIpNetTable(DWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/FlushIpNetTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetAdapterIndex","package":"druntime","parentType":"","signature":"DWORD GetAdapterIndex(LPWSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetAdapterIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetAdaptersInfo","package":"druntime","parentType":"","signature":"DWORD GetAdaptersInfo(PIP_ADAPTER_INFO,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetAdaptersInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetBestInterface","package":"druntime","parentType":"","signature":"DWORD GetBestInterface(IPAddr,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetBestInterface.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetBestRoute","package":"druntime","parentType":"","signature":"DWORD GetBestRoute(DWORD,  DWORD,  PMIB_IPFORWARDROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetBestRoute.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetFriendlyIfIndex","package":"druntime","parentType":"","signature":"DWORD GetFriendlyIfIndex(DWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetFriendlyIfIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIcmpStatistics","package":"druntime","parentType":"","signature":"DWORD GetIcmpStatistics(PMIB_ICMP)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIcmpStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIfEntry","package":"druntime","parentType":"","signature":"DWORD GetIfEntry(PMIB_IFROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIfEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIfTable","package":"druntime","parentType":"","signature":"DWORD GetIfTable(PMIB_IFTABLE,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIfTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetInterfaceInfo","package":"druntime","parentType":"","signature":"DWORD GetInterfaceInfo(PIP_INTERFACE_INFO,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetInterfaceInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIpAddrTable","package":"druntime","parentType":"","signature":"DWORD GetIpAddrTable(PMIB_IPADDRTABLE,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIpAddrTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIpForwardTable","package":"druntime","parentType":"","signature":"DWORD GetIpForwardTable(PMIB_IPFORWARDTABLE,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIpForwardTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIpNetTable","package":"druntime","parentType":"","signature":"DWORD GetIpNetTable(PMIB_IPNETTABLE,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIpNetTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetIpStatistics","package":"druntime","parentType":"","signature":"DWORD GetIpStatistics(PMIB_IPSTATS)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetIpStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetNetworkParams","package":"druntime","parentType":"","signature":"DWORD GetNetworkParams(PFIXED_INFO,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetNetworkParams.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetNumberOfInterfaces","package":"druntime","parentType":"","signature":"DWORD GetNumberOfInterfaces(PDWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetNumberOfInterfaces.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetPerAdapterInfo","package":"druntime","parentType":"","signature":"DWORD GetPerAdapterInfo(ULONG,  PIP_PER_ADAPTER_INFO,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetPerAdapterInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetRTTAndHopCount","package":"druntime","parentType":"","signature":"BOOL GetRTTAndHopCount(IPAddr,  PULONG,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetRTTAndHopCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetTcpStatistics","package":"druntime","parentType":"","signature":"DWORD GetTcpStatistics(PMIB_TCPSTATS)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetTcpStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetTcpTable","package":"druntime","parentType":"","signature":"DWORD GetTcpTable(PMIB_TCPTABLE,  PDWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetTcpTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetUniDirectionalAdapterInfo","package":"druntime","parentType":"","signature":"DWORD GetUniDirectionalAdapterInfo(PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS,\n       PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetUniDirectionalAdapterInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetUdpStatistics","package":"druntime","parentType":"","signature":"DWORD GetUdpStatistics(PMIB_UDPSTATS)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetUdpStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"GetUdpTable","package":"druntime","parentType":"","signature":"DWORD GetUdpTable(PMIB_UDPTABLE,  PDWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/GetUdpTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"IpReleaseAddress","package":"druntime","parentType":"","signature":"DWORD IpReleaseAddress(PIP_ADAPTER_INDEX_MAP)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/IpReleaseAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"IpRenewAddress","package":"druntime","parentType":"","signature":"DWORD IpRenewAddress(PIP_ADAPTER_INDEX_MAP)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/IpRenewAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"NotifyAddrChange","package":"druntime","parentType":"","signature":"DWORD NotifyAddrChange(PHANDLE,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/NotifyAddrChange.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"NotifyRouteChange","package":"druntime","parentType":"","signature":"DWORD NotifyRouteChange(PHANDLE,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/NotifyRouteChange.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SendARP","package":"druntime","parentType":"","signature":"DWORD SendARP(IPAddr,  IPAddr,  PULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SendARP.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetIfEntry","package":"druntime","parentType":"","signature":"DWORD SetIfEntry(PMIB_IFROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetIfEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetIpForwardEntry","package":"druntime","parentType":"","signature":"DWORD SetIpForwardEntry(PMIB_IPFORWARDROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetIpForwardEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetIpNetEntry","package":"druntime","parentType":"","signature":"DWORD SetIpNetEntry(PMIB_IPNETROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetIpNetEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetIpStatistics","package":"druntime","parentType":"","signature":"DWORD SetIpStatistics(PMIB_IPSTATS)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetIpStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetIpTTL","package":"druntime","parentType":"","signature":"DWORD SetIpTTL(UINT)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetIpTTL.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"SetTcpEntry","package":"druntime","parentType":"","signature":"DWORD SetTcpEntry(PMIB_TCPROW)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/SetTcpEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.iphlpapi","name":"UnenableRouter","package":"druntime","parentType":"","signature":"DWORD UnenableRouter(OVERLAPPED *,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/iphlpapi/UnenableRouter.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ipifcons","name":"core.sys.windows.ipifcons","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ipifcons.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.iprtrmib","name":"core.sys.windows.iprtrmib","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPADDRROW","package":"druntime","parentType":"","signature":"MIB_IPADDRROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPADDRROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPADDRROW","package":"druntime","parentType":"","signature":"PMIB_IPADDRROW = MIB_IPADDRROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPADDRROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPADDRTABLE","package":"druntime","parentType":"","signature":"MIB_IPADDRTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPADDRTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_IPADDRTABLE","signature":"MIB_IPADDRROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_IPADDRTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPADDRTABLE","package":"druntime","parentType":"","signature":"PMIB_IPADDRTABLE = MIB_IPADDRTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPADDRTABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPFORWARDROW","package":"druntime","parentType":"","signature":"MIB_IPFORWARDROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPFORWARDROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPFORWARDROW","package":"druntime","parentType":"","signature":"PMIB_IPFORWARDROW = MIB_IPFORWARDROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPFORWARDROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPFORWARDTABLE","package":"druntime","parentType":"","signature":"MIB_IPFORWARDTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPFORWARDTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_IPFORWARDTABLE","signature":"MIB_IPFORWARDROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_IPFORWARDTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPFORWARDTABLE","package":"druntime","parentType":"","signature":"PMIB_IPFORWARDTABLE = MIB_IPFORWARDTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPFORWARDTABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPNETROW","package":"druntime","parentType":"","signature":"MIB_IPNETROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPNETROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPNETROW","package":"druntime","parentType":"","signature":"PMIB_IPNETROW = MIB_IPNETROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPNETROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPNETTABLE","package":"druntime","parentType":"","signature":"MIB_IPNETTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPNETTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_IPNETTABLE","signature":"MIB_IPNETROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_IPNETTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPNETTABLE","package":"druntime","parentType":"","signature":"PMIB_IPNETTABLE = MIB_IPNETTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPNETTABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIBICMPSTATS","package":"druntime","parentType":"","signature":"MIBICMPSTATS","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIBICMPSTATS"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIBICMPSTATS","package":"druntime","parentType":"","signature":"PMIBICMPSTATS = MIBICMPSTATS *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIBICMPSTATS"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIBICMPINFO","package":"druntime","parentType":"","signature":"MIBICMPINFO","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIBICMPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIBICMPINFO","package":"druntime","parentType":"","signature":"PMIBICMPINFO = MIBICMPINFO *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIBICMPINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_ICMP","package":"druntime","parentType":"","signature":"MIB_ICMP","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_ICMP"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_ICMP","package":"druntime","parentType":"","signature":"PMIB_ICMP = MIB_ICMP *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_ICMP"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IFROW","package":"druntime","parentType":"","signature":"MIB_IFROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IFROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IFROW","package":"druntime","parentType":"","signature":"PMIB_IFROW = MIB_IFROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IFROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IFTABLE","package":"druntime","parentType":"","signature":"MIB_IFTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IFTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_IFTABLE","signature":"MIB_IFROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_IFTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IFTABLE","package":"druntime","parentType":"","signature":"PMIB_IFTABLE = MIB_IFTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IFTABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_IPSTATS","package":"druntime","parentType":"","signature":"MIB_IPSTATS","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_IPSTATS"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_IPSTATS","package":"druntime","parentType":"","signature":"PMIB_IPSTATS = MIB_IPSTATS *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_IPSTATS"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_TCPSTATS","package":"druntime","parentType":"","signature":"MIB_TCPSTATS","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_TCPSTATS"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_TCPSTATS","package":"druntime","parentType":"","signature":"PMIB_TCPSTATS = MIB_TCPSTATS *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_TCPSTATS"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_TCPROW","package":"druntime","parentType":"","signature":"MIB_TCPROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_TCPROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_TCPROW","package":"druntime","parentType":"","signature":"PMIB_TCPROW = MIB_TCPROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_TCPROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_TCPTABLE","package":"druntime","parentType":"","signature":"MIB_TCPTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_TCPTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_TCPTABLE","signature":"MIB_TCPROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_TCPTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_TCPTABLE","package":"druntime","parentType":"","signature":"PMIB_TCPTABLE = MIB_TCPTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_TCPTABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_UDPSTATS","package":"druntime","parentType":"","signature":"MIB_UDPSTATS","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_UDPSTATS"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_UDPSTATS","package":"druntime","parentType":"","signature":"PMIB_UDPSTATS = MIB_UDPSTATS *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_UDPSTATS"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_UDPROW","package":"druntime","parentType":"","signature":"MIB_UDPROW","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_UDPROW"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_UDPROW","package":"druntime","parentType":"","signature":"PMIB_UDPROW = MIB_UDPROW *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_UDPROW"},{"doc":"","kind":"struct","module":"core.sys.windows.iprtrmib","name":"MIB_UDPTABLE","package":"druntime","parentType":"","signature":"MIB_UDPTABLE","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_UDPTABLE"},{"doc":"","kind":"method","module":"core.sys.windows.iprtrmib","name":"table","package":"druntime","parentType":"MIB_UDPTABLE","signature":"MIB_UDPROW * table()","url":"/ddoc/druntime/core/sys/windows/iprtrmib/MIB_UDPTABLE.table.html"},{"doc":"","kind":"alias","module":"core.sys.windows.iprtrmib","name":"PMIB_UDPTABLE","package":"druntime","parentType":"","signature":"PMIB_UDPTABLE = MIB_UDPTABLE *","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#PMIB_UDPTABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.iprtrmib","name":"MAXLEN_PHYSADDR","package":"druntime","parentType":"","signature":"size_t MAXLEN_PHYSADDR","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MAXLEN_PHYSADDR"},{"doc":"","kind":"variable","module":"core.sys.windows.iprtrmib","name":"MIB_USE_CURRENT_TTL","package":"druntime","parentType":"","signature":"DWORD MIB_USE_CURRENT_TTL","url":"/ddoc/druntime/core/sys/windows/iprtrmib.html#MIB_USE_CURRENT_TTL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.iptypes","name":"core.sys.windows.iptypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/iptypes.html"},{"doc":"","kind":"struct","module":"core.sys.windows.iptypes","name":"IP_ADDRESS_STRING","package":"druntime","parentType":"","signature":"IP_ADDRESS_STRING","url":"/ddoc/druntime/core/sys/windows/iptypes.html#IP_ADDRESS_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"IP_MASK_STRING","package":"druntime","parentType":"","signature":"IP_MASK_STRING = IP_ADDRESS_STRING","url":"/ddoc/druntime/core/sys/windows/iptypes.html#IP_MASK_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"PIP_ADDRESS_STRING","package":"druntime","parentType":"","signature":"PIP_ADDRESS_STRING = IP_ADDRESS_STRING *","url":"/ddoc/druntime/core/sys/windows/iptypes.html#PIP_ADDRESS_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.iptypes","name":"IP_ADDR_STRING","package":"druntime","parentType":"","signature":"IP_ADDR_STRING","url":"/ddoc/druntime/core/sys/windows/iptypes.html#IP_ADDR_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"PIP_ADDR_STRING","package":"druntime","parentType":"","signature":"PIP_ADDR_STRING = IP_ADDR_STRING *","url":"/ddoc/druntime/core/sys/windows/iptypes.html#PIP_ADDR_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.iptypes","name":"IP_ADAPTER_INFO","package":"druntime","parentType":"","signature":"IP_ADAPTER_INFO","url":"/ddoc/druntime/core/sys/windows/iptypes.html#IP_ADAPTER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"PIP_ADAPTER_INFO","package":"druntime","parentType":"","signature":"PIP_ADAPTER_INFO = IP_ADAPTER_INFO *","url":"/ddoc/druntime/core/sys/windows/iptypes.html#PIP_ADAPTER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.iptypes","name":"IP_PER_ADAPTER_INFO","package":"druntime","parentType":"","signature":"IP_PER_ADAPTER_INFO","url":"/ddoc/druntime/core/sys/windows/iptypes.html#IP_PER_ADAPTER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"PIP_PER_ADAPTER_INFO","package":"druntime","parentType":"","signature":"PIP_PER_ADAPTER_INFO = IP_PER_ADAPTER_INFO *","url":"/ddoc/druntime/core/sys/windows/iptypes.html#PIP_PER_ADAPTER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.iptypes","name":"FIXED_INFO","package":"druntime","parentType":"","signature":"FIXED_INFO","url":"/ddoc/druntime/core/sys/windows/iptypes.html#FIXED_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.iptypes","name":"PFIXED_INFO","package":"druntime","parentType":"","signature":"PFIXED_INFO = FIXED_INFO *","url":"/ddoc/druntime/core/sys/windows/iptypes.html#PFIXED_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.iptypes","name":"DEFAULT_MINIMUM_ENTITIES","package":"druntime","parentType":"","signature":"size_t DEFAULT_MINIMUM_ENTITIES","url":"/ddoc/druntime/core/sys/windows/iptypes.html#DEFAULT_MINIMUM_ENTITIES"},{"doc":"","kind":"variable","module":"core.sys.windows.iptypes","name":"BROADCAST_NODETYPE","package":"druntime","parentType":"","signature":"UINT BROADCAST_NODETYPE","url":"/ddoc/druntime/core/sys/windows/iptypes.html#BROADCAST_NODETYPE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.isguids","name":"core.sys.windows.isguids","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/isguids.html"},{"doc":"","kind":"variable","module":"core.sys.windows.isguids","name":"CLSID_InternetShortcut","package":"druntime","parentType":"","signature":"GUID CLSID_InternetShortcut","url":"/ddoc/druntime/core/sys/windows/isguids.html#CLSID_InternetShortcut"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lm","name":"core.sys.windows.lm","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lm.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmaccess","name":"core.sys.windows.lmaccess","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmaccess.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessEnum(LPCWSTR, LPCWSTR, DWORD, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessSetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetAccessGetUserPerms","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAccessGetUserPerms(LPCWSTR, LPCWSTR, LPCWSTR, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetAccessGetUserPerms.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserEnum(LPCWSTR, DWORD, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserSetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserGetGroups","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserGetGroups(LPCWSTR, LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserGetGroups.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserSetGroups","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserSetGroups(LPCWSTR, LPCWSTR, DWORD, PBYTE, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserSetGroups.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserGetLocalGroups","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserGetLocalGroups(LPCWSTR, LPCWSTR, DWORD, DWORD, PBYTE *, DWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserGetLocalGroups.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserModalsGet","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserModalsGet(LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserModalsGet.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserModalsSet","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserModalsSet(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserModalsSet.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetUserChangePassword","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUserChangePassword(LPCWSTR, LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetUserChangePassword.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupAddUser","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupAddUser(LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupAddUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupEnum(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupSetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupDelUser","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupDelUser(LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupDelUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupGetUsers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupGetUsers(LPCWSTR, LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupGetUsers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGroupSetUsers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGroupSetUsers(LPCWSTR, LPCWSTR, DWORD, PBYTE, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGroupSetUsers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupAddMember","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupAddMember(LPCWSTR, LPCWSTR, PSID)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupAddMember.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupEnum(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupSetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupDelMember","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupDelMember(LPCWSTR, LPCWSTR, PSID)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupDelMember.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupGetMembers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupGetMembers(LPCWSTR, LPCWSTR, DWORD, PBYTE *, DWORD,\n PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupGetMembers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupSetMembers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupSetMembers(LPCWSTR, LPCWSTR, DWORD, PBYTE, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupSetMembers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupAddMembers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupAddMembers(LPCWSTR, LPCWSTR, DWORD, PBYTE, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupAddMembers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetLocalGroupDelMembers","package":"druntime","parentType":"","signature":"NET_API_STATUS NetLocalGroupDelMembers(LPCWSTR, LPCWSTR, DWORD, PBYTE, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetLocalGroupDelMembers.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetQueryDisplayInformation","package":"druntime","parentType":"","signature":"NET_API_STATUS NetQueryDisplayInformation(LPCWSTR, DWORD, DWORD, DWORD, DWORD, PDWORD, PVOID *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetQueryDisplayInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGetDisplayInformationIndex","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGetDisplayInformationIndex(LPCWSTR, DWORD, LPCWSTR, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGetDisplayInformationIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGetDCName","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGetDCName(LPCWSTR, LPCWSTR, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGetDCName.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"NetGetAnyDCName","package":"druntime","parentType":"","signature":"NET_API_STATUS NetGetAnyDCName(LPCWSTR, LPCWSTR, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/NetGetAnyDCName.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"I_NetLogonControl","package":"druntime","parentType":"","signature":"NET_API_STATUS I_NetLogonControl(LPCWSTR, DWORD, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/I_NetLogonControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaccess","name":"I_NetLogonControl2","package":"druntime","parentType":"","signature":"NET_API_STATUS I_NetLogonControl2(LPCWSTR, DWORD, DWORD, PBYTE, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmaccess/I_NetLogonControl2.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_0","package":"druntime","parentType":"","signature":"USER_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_0","package":"druntime","parentType":"","signature":"PUSER_INFO_0 = USER_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1","package":"druntime","parentType":"","signature":"USER_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1","package":"druntime","parentType":"","signature":"PUSER_INFO_1 = USER_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_2","package":"druntime","parentType":"","signature":"USER_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_2","package":"druntime","parentType":"","signature":"PUSER_INFO_2 = USER_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_3","package":"druntime","parentType":"","signature":"USER_INFO_3","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_3","package":"druntime","parentType":"","signature":"PUSER_INFO_3 = USER_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_3"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_10","package":"druntime","parentType":"","signature":"USER_INFO_10","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_10"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_10","package":"druntime","parentType":"","signature":"PUSER_INFO_10 = USER_INFO_10 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_10"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_11","package":"druntime","parentType":"","signature":"USER_INFO_11","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_11"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_11","package":"druntime","parentType":"","signature":"PUSER_INFO_11 = USER_INFO_11 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_11"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_20","package":"druntime","parentType":"","signature":"USER_INFO_20","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_20"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_20","package":"druntime","parentType":"","signature":"PUSER_INFO_20 = USER_INFO_20 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_20"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_21","package":"druntime","parentType":"","signature":"USER_INFO_21","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_21"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_21","package":"druntime","parentType":"","signature":"PUSER_INFO_21 = USER_INFO_21 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_21"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_22","package":"druntime","parentType":"","signature":"USER_INFO_22","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_22"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_22","package":"druntime","parentType":"","signature":"PUSER_INFO_22 = USER_INFO_22 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_22"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1003","package":"druntime","parentType":"","signature":"USER_INFO_1003","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1003"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1003","package":"druntime","parentType":"","signature":"PUSER_INFO_1003 = USER_INFO_1003 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1003"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1005","package":"druntime","parentType":"","signature":"USER_INFO_1005","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1005"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1005","package":"druntime","parentType":"","signature":"PUSER_INFO_1005 = USER_INFO_1005 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1005"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1006","package":"druntime","parentType":"","signature":"USER_INFO_1006","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1006"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1006","package":"druntime","parentType":"","signature":"PUSER_INFO_1006 = USER_INFO_1006 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1006"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1007","package":"druntime","parentType":"","signature":"USER_INFO_1007","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1007"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1007","package":"druntime","parentType":"","signature":"PUSER_INFO_1007 = USER_INFO_1007 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1007"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1008","package":"druntime","parentType":"","signature":"USER_INFO_1008","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1008"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1008","package":"druntime","parentType":"","signature":"PUSER_INFO_1008 = USER_INFO_1008 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1008"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1009","package":"druntime","parentType":"","signature":"USER_INFO_1009","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1009"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1009","package":"druntime","parentType":"","signature":"PUSER_INFO_1009 = USER_INFO_1009 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1009"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1010","package":"druntime","parentType":"","signature":"USER_INFO_1010","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1010"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1010","package":"druntime","parentType":"","signature":"PUSER_INFO_1010 = USER_INFO_1010 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1010"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1011","package":"druntime","parentType":"","signature":"USER_INFO_1011","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1011"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1011","package":"druntime","parentType":"","signature":"PUSER_INFO_1011 = USER_INFO_1011 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1011"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1012","package":"druntime","parentType":"","signature":"USER_INFO_1012","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1012"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1012","package":"druntime","parentType":"","signature":"PUSER_INFO_1012 = USER_INFO_1012 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1012"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1013","package":"druntime","parentType":"","signature":"USER_INFO_1013","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1013"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1013","package":"druntime","parentType":"","signature":"PUSER_INFO_1013 = USER_INFO_1013 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1013"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1014","package":"druntime","parentType":"","signature":"USER_INFO_1014","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1014"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1014","package":"druntime","parentType":"","signature":"PUSER_INFO_1014 = USER_INFO_1014 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1014"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1017","package":"druntime","parentType":"","signature":"USER_INFO_1017","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1017"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1017","package":"druntime","parentType":"","signature":"PUSER_INFO_1017 = USER_INFO_1017 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1017"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1018","package":"druntime","parentType":"","signature":"USER_INFO_1018","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1018"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1018","package":"druntime","parentType":"","signature":"PUSER_INFO_1018 = USER_INFO_1018 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1018"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1020","package":"druntime","parentType":"","signature":"USER_INFO_1020","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1020"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1020","package":"druntime","parentType":"","signature":"PUSER_INFO_1020 = USER_INFO_1020 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1020"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1023","package":"druntime","parentType":"","signature":"USER_INFO_1023","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1023"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1023","package":"druntime","parentType":"","signature":"PUSER_INFO_1023 = USER_INFO_1023 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1023"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1024","package":"druntime","parentType":"","signature":"USER_INFO_1024","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1024"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1024","package":"druntime","parentType":"","signature":"PUSER_INFO_1024 = USER_INFO_1024 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1024"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1025","package":"druntime","parentType":"","signature":"USER_INFO_1025","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1025"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1025","package":"druntime","parentType":"","signature":"PUSER_INFO_1025 = USER_INFO_1025 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1025"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1051","package":"druntime","parentType":"","signature":"USER_INFO_1051","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1051"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1051","package":"druntime","parentType":"","signature":"PUSER_INFO_1051 = USER_INFO_1051 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1051"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1052","package":"druntime","parentType":"","signature":"USER_INFO_1052","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1052"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1052","package":"druntime","parentType":"","signature":"PUSER_INFO_1052 = USER_INFO_1052 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1052"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_INFO_1053","package":"druntime","parentType":"","signature":"USER_INFO_1053","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_INFO_1053"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_INFO_1053","package":"druntime","parentType":"","signature":"PUSER_INFO_1053 = USER_INFO_1053 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_INFO_1053"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_0","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_0","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_0 = USER_MODALS_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1 = USER_MODALS_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_2","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_2","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_2 = USER_MODALS_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_3","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_3","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_3","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_3 = USER_MODALS_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_3"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1001","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1001","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1001"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1001","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1001 = USER_MODALS_INFO_1001 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1001"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1002","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1002","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1002 = USER_MODALS_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1003","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1003","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1003"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1003","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1003 = USER_MODALS_INFO_1003 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1003"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1004","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1004","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1004"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1004","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1004 = USER_MODALS_INFO_1004 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1004"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1005","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1005","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1005"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1005","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1005 = USER_MODALS_INFO_1005 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1005"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1006","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1006","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1006"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1006","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1006 = USER_MODALS_INFO_1006 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1006"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"USER_MODALS_INFO_1007","package":"druntime","parentType":"","signature":"USER_MODALS_INFO_1007","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MODALS_INFO_1007"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PUSER_MODALS_INFO_1007","package":"druntime","parentType":"","signature":"PUSER_MODALS_INFO_1007 = USER_MODALS_INFO_1007 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PUSER_MODALS_INFO_1007"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_INFO_0","package":"druntime","parentType":"","signature":"GROUP_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_INFO_0","package":"druntime","parentType":"","signature":"PGROUP_INFO_0 = GROUP_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_INFO_1","package":"druntime","parentType":"","signature":"GROUP_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_INFO_1","package":"druntime","parentType":"","signature":"PGROUP_INFO_1 = GROUP_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_INFO_2","package":"druntime","parentType":"","signature":"GROUP_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_INFO_2","package":"druntime","parentType":"","signature":"PGROUP_INFO_2 = GROUP_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_INFO_1002","package":"druntime","parentType":"","signature":"GROUP_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_INFO_1002","package":"druntime","parentType":"","signature":"PGROUP_INFO_1002 = GROUP_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_INFO_1005","package":"druntime","parentType":"","signature":"GROUP_INFO_1005","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_INFO_1005"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_INFO_1005","package":"druntime","parentType":"","signature":"PGROUP_INFO_1005 = GROUP_INFO_1005 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_INFO_1005"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_USERS_INFO_0","package":"druntime","parentType":"","signature":"GROUP_USERS_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_USERS_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_USERS_INFO_0","package":"druntime","parentType":"","signature":"PGROUP_USERS_INFO_0 = GROUP_USERS_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_USERS_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"GROUP_USERS_INFO_1","package":"druntime","parentType":"","signature":"GROUP_USERS_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_USERS_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PGROUP_USERS_INFO_1","package":"druntime","parentType":"","signature":"PGROUP_USERS_INFO_1 = GROUP_USERS_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PGROUP_USERS_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_INFO_0","package":"druntime","parentType":"","signature":"LOCALGROUP_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_INFO_0","package":"druntime","parentType":"","signature":"PLOCALGROUP_INFO_0 = LOCALGROUP_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_INFO_1","package":"druntime","parentType":"","signature":"LOCALGROUP_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_INFO_1","package":"druntime","parentType":"","signature":"PLOCALGROUP_INFO_1 = LOCALGROUP_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_INFO_1002","package":"druntime","parentType":"","signature":"LOCALGROUP_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_INFO_1002","package":"druntime","parentType":"","signature":"PLOCALGROUP_INFO_1002 = LOCALGROUP_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_MEMBERS_INFO_0","package":"druntime","parentType":"","signature":"LOCALGROUP_MEMBERS_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_MEMBERS_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_MEMBERS_INFO_0","package":"druntime","parentType":"","signature":"PLOCALGROUP_MEMBERS_INFO_0 = LOCALGROUP_MEMBERS_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_MEMBERS_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_MEMBERS_INFO_1","package":"druntime","parentType":"","signature":"LOCALGROUP_MEMBERS_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_MEMBERS_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_MEMBERS_INFO_1","package":"druntime","parentType":"","signature":"PLOCALGROUP_MEMBERS_INFO_1 = LOCALGROUP_MEMBERS_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_MEMBERS_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_MEMBERS_INFO_2","package":"druntime","parentType":"","signature":"LOCALGROUP_MEMBERS_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_MEMBERS_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_MEMBERS_INFO_2","package":"druntime","parentType":"","signature":"PLOCALGROUP_MEMBERS_INFO_2 = LOCALGROUP_MEMBERS_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_MEMBERS_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_MEMBERS_INFO_3","package":"druntime","parentType":"","signature":"LOCALGROUP_MEMBERS_INFO_3","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_MEMBERS_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_MEMBERS_INFO_3","package":"druntime","parentType":"","signature":"PLOCALGROUP_MEMBERS_INFO_3 = LOCALGROUP_MEMBERS_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_MEMBERS_INFO_3"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_USERS_INFO_0","package":"druntime","parentType":"","signature":"LOCALGROUP_USERS_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_USERS_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PLOCALGROUP_USERS_INFO_0","package":"druntime","parentType":"","signature":"PLOCALGROUP_USERS_INFO_0 = LOCALGROUP_USERS_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PLOCALGROUP_USERS_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NET_DISPLAY_USER","package":"druntime","parentType":"","signature":"NET_DISPLAY_USER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NET_DISPLAY_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNET_DISPLAY_USER","package":"druntime","parentType":"","signature":"PNET_DISPLAY_USER = NET_DISPLAY_USER *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNET_DISPLAY_USER"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NET_DISPLAY_MACHINE","package":"druntime","parentType":"","signature":"NET_DISPLAY_MACHINE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NET_DISPLAY_MACHINE"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNET_DISPLAY_MACHINE","package":"druntime","parentType":"","signature":"PNET_DISPLAY_MACHINE = NET_DISPLAY_MACHINE *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNET_DISPLAY_MACHINE"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NET_DISPLAY_GROUP","package":"druntime","parentType":"","signature":"NET_DISPLAY_GROUP","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NET_DISPLAY_GROUP"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNET_DISPLAY_GROUP","package":"druntime","parentType":"","signature":"PNET_DISPLAY_GROUP = NET_DISPLAY_GROUP *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNET_DISPLAY_GROUP"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"ACCESS_INFO_0","package":"druntime","parentType":"","signature":"ACCESS_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PACCESS_INFO_0","package":"druntime","parentType":"","signature":"PACCESS_INFO_0 = ACCESS_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PACCESS_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"ACCESS_INFO_1","package":"druntime","parentType":"","signature":"ACCESS_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PACCESS_INFO_1","package":"druntime","parentType":"","signature":"PACCESS_INFO_1 = ACCESS_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PACCESS_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"ACCESS_INFO_1002","package":"druntime","parentType":"","signature":"ACCESS_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PACCESS_INFO_1002","package":"druntime","parentType":"","signature":"PACCESS_INFO_1002 = ACCESS_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PACCESS_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"ACCESS_LIST","package":"druntime","parentType":"","signature":"ACCESS_LIST","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_LIST"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PACCESS_LIST","package":"druntime","parentType":"","signature":"PACCESS_LIST = ACCESS_LIST *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PACCESS_LIST"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NETLOGON_INFO_1","package":"druntime","parentType":"","signature":"NETLOGON_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNETLOGON_INFO_1","package":"druntime","parentType":"","signature":"PNETLOGON_INFO_1 = NETLOGON_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNETLOGON_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NETLOGON_INFO_2","package":"druntime","parentType":"","signature":"NETLOGON_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNETLOGON_INFO_2","package":"druntime","parentType":"","signature":"PNETLOGON_INFO_2 = NETLOGON_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNETLOGON_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaccess","name":"NETLOGON_INFO_3","package":"druntime","parentType":"","signature":"NETLOGON_INFO_3","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaccess","name":"PNETLOGON_INFO_3","package":"druntime","parentType":"","signature":"PNETLOGON_INFO_3 = NETLOGON_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PNETLOGON_INFO_3"},{"doc":"Changes relative to MinGW: USER_POSIX_ID_PARMNUM and GROUP_POSIX_ID_PARMNUM aren't in MinGW or in the Platform SDK docs, so they have been dropped ...","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_SPECIALGRP_USERS","package":"druntime","parentType":"","signature":"wchar[] GROUP_SPECIALGRP_USERS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_SPECIALGRP_USERS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_LETTERS","package":"druntime","parentType":"","signature":"ACCESS_LETTERS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_LETTERS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_QUERY","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_QUERY","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_REPLICATE","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_REPLICATE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_REPLICATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_SYNCHRONIZE","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_SYNCHRONIZE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_SYNCHRONIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_PDC_REPLICATE","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_PDC_REPLICATE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_PDC_REPLICATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_REDISCOVER","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_REDISCOVER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_REDISCOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_TC_QUERY","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_TC_QUERY","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_TC_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_BACKUP_CHANGE_LOG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_TRUNCATE_LOG","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_TRUNCATE_LOG","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_TRUNCATE_LOG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_SET_DBFLAG","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_SET_DBFLAG","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_SET_DBFLAG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_CONTROL_BREAKPOINT","package":"druntime","parentType":"","signature":"NETLOGON_CONTROL_BREAKPOINT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_CONTROL_BREAKPOINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_SCRIPT","package":"druntime","parentType":"","signature":"UF_SCRIPT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_SCRIPT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_ACCOUNTDISABLE","package":"druntime","parentType":"","signature":"UF_ACCOUNTDISABLE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_ACCOUNTDISABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_HOMEDIR_REQUIRED","package":"druntime","parentType":"","signature":"UF_HOMEDIR_REQUIRED","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_HOMEDIR_REQUIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_LOCKOUT","package":"druntime","parentType":"","signature":"UF_LOCKOUT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_LOCKOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_PASSWD_NOTREQD","package":"druntime","parentType":"","signature":"UF_PASSWD_NOTREQD","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_PASSWD_NOTREQD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_PASSWD_CANT_CHANGE","package":"druntime","parentType":"","signature":"UF_PASSWD_CANT_CHANGE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_PASSWD_CANT_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_TEMP_DUPLICATE_ACCOUNT","package":"druntime","parentType":"","signature":"UF_TEMP_DUPLICATE_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_TEMP_DUPLICATE_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_NORMAL_ACCOUNT","package":"druntime","parentType":"","signature":"UF_NORMAL_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_NORMAL_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_INTERDOMAIN_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"UF_INTERDOMAIN_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_INTERDOMAIN_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_WORKSTATION_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"UF_WORKSTATION_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_WORKSTATION_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_SERVER_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"UF_SERVER_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_SERVER_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_MNS_LOGON_ACCOUNT","package":"druntime","parentType":"","signature":"UF_MNS_LOGON_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_MNS_LOGON_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_MACHINE_ACCOUNT_MASK","package":"druntime","parentType":"","signature":"UF_MACHINE_ACCOUNT_MASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_MACHINE_ACCOUNT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_ACCOUNT_TYPE_MASK","package":"druntime","parentType":"","signature":"UF_ACCOUNT_TYPE_MASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_ACCOUNT_TYPE_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_DONT_EXPIRE_PASSWD","package":"druntime","parentType":"","signature":"UF_DONT_EXPIRE_PASSWD","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_DONT_EXPIRE_PASSWD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UF_SETTABLE_BITS","package":"druntime","parentType":"","signature":"UF_SETTABLE_BITS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UF_SETTABLE_BITS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"FILTER_TEMP_DUPLICATE_ACCOUNT","package":"druntime","parentType":"","signature":"FILTER_TEMP_DUPLICATE_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#FILTER_TEMP_DUPLICATE_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"FILTER_NORMAL_ACCOUNT","package":"druntime","parentType":"","signature":"FILTER_NORMAL_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#FILTER_NORMAL_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#FILTER_INTERDOMAIN_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"FILTER_WORKSTATION_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"FILTER_WORKSTATION_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#FILTER_WORKSTATION_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"FILTER_SERVER_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"FILTER_SERVER_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#FILTER_SERVER_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"LG_INCLUDE_INDIRECT","package":"druntime","parentType":"","signature":"LG_INCLUDE_INDIRECT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LG_INCLUDE_INDIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"AF_OP_PRINT","package":"druntime","parentType":"","signature":"AF_OP_PRINT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#AF_OP_PRINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"AF_OP_COMM","package":"druntime","parentType":"","signature":"AF_OP_COMM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#AF_OP_COMM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"AF_OP_SERVER","package":"druntime","parentType":"","signature":"AF_OP_SERVER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#AF_OP_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"AF_OP_ACCOUNTS","package":"druntime","parentType":"","signature":"AF_OP_ACCOUNTS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#AF_OP_ACCOUNTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"AF_SETTABLE_BITS","package":"druntime","parentType":"","signature":"AF_SETTABLE_BITS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#AF_SETTABLE_BITS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UAS_ROLE_STANDALONE","package":"druntime","parentType":"","signature":"UAS_ROLE_STANDALONE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UAS_ROLE_STANDALONE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UAS_ROLE_MEMBER","package":"druntime","parentType":"","signature":"UAS_ROLE_MEMBER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UAS_ROLE_MEMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UAS_ROLE_BACKUP","package":"druntime","parentType":"","signature":"UAS_ROLE_BACKUP","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UAS_ROLE_BACKUP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UAS_ROLE_PRIMARY","package":"druntime","parentType":"","signature":"UAS_ROLE_PRIMARY","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UAS_ROLE_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_NAME_PARMNUM","package":"druntime","parentType":"","signature":"USER_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PASSWORD_PARMNUM","package":"druntime","parentType":"","signature":"USER_PASSWORD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PASSWORD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PASSWORD_AGE_PARMNUM","package":"druntime","parentType":"","signature":"USER_PASSWORD_AGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PASSWORD_AGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_PARMNUM","package":"druntime","parentType":"","signature":"USER_PRIV_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_HOME_DIR_PARMNUM","package":"druntime","parentType":"","signature":"USER_HOME_DIR_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_HOME_DIR_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_COMMENT_PARMNUM","package":"druntime","parentType":"","signature":"USER_COMMENT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_COMMENT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_FLAGS_PARMNUM","package":"druntime","parentType":"","signature":"USER_FLAGS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_FLAGS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_SCRIPT_PATH_PARMNUM","package":"druntime","parentType":"","signature":"USER_SCRIPT_PATH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_SCRIPT_PATH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_AUTH_FLAGS_PARMNUM","package":"druntime","parentType":"","signature":"USER_AUTH_FLAGS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_AUTH_FLAGS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_FULL_NAME_PARMNUM","package":"druntime","parentType":"","signature":"USER_FULL_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_FULL_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_USR_COMMENT_PARMNUM","package":"druntime","parentType":"","signature":"USER_USR_COMMENT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_USR_COMMENT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PARMS_PARMNUM","package":"druntime","parentType":"","signature":"USER_PARMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PARMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_WORKSTATIONS_PARMNUM","package":"druntime","parentType":"","signature":"USER_WORKSTATIONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_WORKSTATIONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LAST_LOGON_PARMNUM","package":"druntime","parentType":"","signature":"USER_LAST_LOGON_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LAST_LOGON_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LAST_LOGOFF_PARMNUM","package":"druntime","parentType":"","signature":"USER_LAST_LOGOFF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LAST_LOGOFF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_ACCT_EXPIRES_PARMNUM","package":"druntime","parentType":"","signature":"USER_ACCT_EXPIRES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_ACCT_EXPIRES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_MAX_STORAGE_PARMNUM","package":"druntime","parentType":"","signature":"USER_MAX_STORAGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MAX_STORAGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_UNITS_PER_WEEK_PARMNUM","package":"druntime","parentType":"","signature":"USER_UNITS_PER_WEEK_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_UNITS_PER_WEEK_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LOGON_HOURS_PARMNUM","package":"druntime","parentType":"","signature":"USER_LOGON_HOURS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LOGON_HOURS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PAD_PW_COUNT_PARMNUM","package":"druntime","parentType":"","signature":"USER_PAD_PW_COUNT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PAD_PW_COUNT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_NUM_LOGONS_PARMNUM","package":"druntime","parentType":"","signature":"USER_NUM_LOGONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_NUM_LOGONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LOGON_SERVER_PARMNUM","package":"druntime","parentType":"","signature":"USER_LOGON_SERVER_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LOGON_SERVER_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_COUNTRY_CODE_PARMNUM","package":"druntime","parentType":"","signature":"USER_COUNTRY_CODE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_COUNTRY_CODE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_CODE_PAGE_PARMNUM","package":"druntime","parentType":"","signature":"USER_CODE_PAGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_CODE_PAGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIMARY_GROUP_PARMNUM","package":"druntime","parentType":"","signature":"USER_PRIMARY_GROUP_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIMARY_GROUP_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PROFILE","package":"druntime","parentType":"","signature":"USER_PROFILE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PROFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PROFILE_PARMNUM","package":"druntime","parentType":"","signature":"USER_PROFILE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PROFILE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_HOME_DIR_DRIVE_PARMNUM","package":"druntime","parentType":"","signature":"USER_HOME_DIR_DRIVE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_HOME_DIR_DRIVE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_NAME_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_NAME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_NAME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PASSWORD_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PASSWORD_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PASSWORD_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PASSWORD_AGE_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PASSWORD_AGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PASSWORD_AGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PRIV_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_HOME_DIR_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_HOME_DIR_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_HOME_DIR_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_COMMENT_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_COMMENT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_COMMENT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_FLAGS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_FLAGS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_FLAGS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_SCRIPT_PATH_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_SCRIPT_PATH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_SCRIPT_PATH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_AUTH_FLAGS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_AUTH_FLAGS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_AUTH_FLAGS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_FULL_NAME_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_FULL_NAME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_FULL_NAME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_USR_COMMENT_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_USR_COMMENT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_USR_COMMENT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PARMS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PARMS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PARMS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_WORKSTATIONS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_WORKSTATIONS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_WORKSTATIONS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LAST_LOGON_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_LAST_LOGON_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LAST_LOGON_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LAST_LOGOFF_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_LAST_LOGOFF_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LAST_LOGOFF_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_ACCT_EXPIRES_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_ACCT_EXPIRES_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_ACCT_EXPIRES_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_MAX_STORAGE_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_MAX_STORAGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MAX_STORAGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_UNITS_PER_WEEK_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_UNITS_PER_WEEK_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_UNITS_PER_WEEK_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LOGON_HOURS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_LOGON_HOURS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LOGON_HOURS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PAD_PW_COUNT_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PAD_PW_COUNT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PAD_PW_COUNT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_NUM_LOGONS_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_NUM_LOGONS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_NUM_LOGONS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_LOGON_SERVER_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_LOGON_SERVER_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_LOGON_SERVER_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_COUNTRY_CODE_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_COUNTRY_CODE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_COUNTRY_CODE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_CODE_PAGE_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_CODE_PAGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_CODE_PAGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIMARY_GROUP_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_PRIMARY_GROUP_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIMARY_GROUP_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_HOME_DIR_DRIVE_INFOLEVEL","package":"druntime","parentType":"","signature":"USER_HOME_DIR_DRIVE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_HOME_DIR_DRIVE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NULL_USERSETINFO_PASSWD","package":"druntime","parentType":"","signature":"NULL_USERSETINFO_PASSWD","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NULL_USERSETINFO_PASSWD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"TIMEQ_FOREVER","package":"druntime","parentType":"","signature":"ULONG TIMEQ_FOREVER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#TIMEQ_FOREVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_MAXSTORAGE_UNLIMITED","package":"druntime","parentType":"","signature":"ULONG USER_MAXSTORAGE_UNLIMITED","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_MAXSTORAGE_UNLIMITED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_NO_LOGOFF","package":"druntime","parentType":"","signature":"ULONG USER_NO_LOGOFF","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_NO_LOGOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UNITS_PER_DAY","package":"druntime","parentType":"","signature":"UNITS_PER_DAY","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UNITS_PER_DAY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"UNITS_PER_WEEK","package":"druntime","parentType":"","signature":"UNITS_PER_WEEK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#UNITS_PER_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_MASK","package":"druntime","parentType":"","signature":"USER_PRIV_MASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_GUEST","package":"druntime","parentType":"","signature":"USER_PRIV_GUEST","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_GUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_USER","package":"druntime","parentType":"","signature":"USER_PRIV_USER","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"USER_PRIV_ADMIN","package":"druntime","parentType":"","signature":"USER_PRIV_ADMIN","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#USER_PRIV_ADMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MAX_PASSWD_LEN","package":"druntime","parentType":"","signature":"MAX_PASSWD_LEN","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MAX_PASSWD_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_MIN_PWLEN","package":"druntime","parentType":"","signature":"DEF_MIN_PWLEN","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_MIN_PWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_PWUNIQUENESS","package":"druntime","parentType":"","signature":"DEF_PWUNIQUENESS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_PWUNIQUENESS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_MAX_PWHIST","package":"druntime","parentType":"","signature":"DEF_MAX_PWHIST","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_MAX_PWHIST"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_MAX_PWAGE","package":"druntime","parentType":"","signature":"DEF_MAX_PWAGE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_MAX_PWAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_MIN_PWAGE","package":"druntime","parentType":"","signature":"DEF_MIN_PWAGE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_MIN_PWAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_FORCE_LOGOFF","package":"druntime","parentType":"","signature":"ULONG DEF_FORCE_LOGOFF","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_FORCE_LOGOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"DEF_MAX_BADPW","package":"druntime","parentType":"","signature":"DEF_MAX_BADPW","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#DEF_MAX_BADPW"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ONE_DAY","package":"druntime","parentType":"","signature":"ONE_DAY","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ONE_DAY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"VALIDATED_LOGON","package":"druntime","parentType":"","signature":"VALIDATED_LOGON","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#VALIDATED_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"PASSWORD_EXPIRED","package":"druntime","parentType":"","signature":"PASSWORD_EXPIRED","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#PASSWORD_EXPIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NON_VALIDATED_LOGON","package":"druntime","parentType":"","signature":"NON_VALIDATED_LOGON","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NON_VALIDATED_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"VALID_LOGOFF","package":"druntime","parentType":"","signature":"VALID_LOGOFF","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#VALID_LOGOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MIN_PASSWD_LEN_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_MIN_PASSWD_LEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MIN_PASSWD_LEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MAX_PASSWD_AGE_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_MAX_PASSWD_AGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MAX_PASSWD_AGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MIN_PASSWD_AGE_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_MIN_PASSWD_AGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MIN_PASSWD_AGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_FORCE_LOGOFF_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_FORCE_LOGOFF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_FORCE_LOGOFF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_PASSWD_HIST_LEN_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_PASSWD_HIST_LEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_PASSWD_HIST_LEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_ROLE_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_ROLE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_ROLE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_PRIMARY_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_PRIMARY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_PRIMARY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_DOMAIN_NAME_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_DOMAIN_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_DOMAIN_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_DOMAIN_ID_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_DOMAIN_ID_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_DOMAIN_ID_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_LOCKOUT_DURATION_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_LOCKOUT_DURATION_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_LOCKOUT_DURATION_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","package":"druntime","parentType":"","signature":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_LOCKOUT_THRESHOLD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MIN_PASSWD_LEN_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_MIN_PASSWD_LEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MIN_PASSWD_LEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MAX_PASSWD_AGE_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_MAX_PASSWD_AGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MAX_PASSWD_AGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_MIN_PASSWD_AGE_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_MIN_PASSWD_AGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_MIN_PASSWD_AGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_FORCE_LOGOFF_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_FORCE_LOGOFF_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_FORCE_LOGOFF_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_PASSWD_HIST_LEN_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_PASSWD_HIST_LEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_PASSWD_HIST_LEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_ROLE_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_ROLE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_ROLE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_PRIMARY_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_PRIMARY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_PRIMARY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_DOMAIN_NAME_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_DOMAIN_NAME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_DOMAIN_NAME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MODALS_DOMAIN_ID_INFOLEVEL","package":"druntime","parentType":"","signature":"MODALS_DOMAIN_ID_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MODALS_DOMAIN_ID_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUPIDMASK","package":"druntime","parentType":"","signature":"GROUPIDMASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUPIDMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_ALL_PARMNUM","package":"druntime","parentType":"","signature":"GROUP_ALL_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_ALL_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_NAME_PARMNUM","package":"druntime","parentType":"","signature":"GROUP_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_COMMENT_PARMNUM","package":"druntime","parentType":"","signature":"GROUP_COMMENT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_COMMENT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_ATTRIBUTES_PARMNUM","package":"druntime","parentType":"","signature":"GROUP_ATTRIBUTES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_ATTRIBUTES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_ALL_INFOLEVEL","package":"druntime","parentType":"","signature":"GROUP_ALL_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_ALL_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_NAME_INFOLEVEL","package":"druntime","parentType":"","signature":"GROUP_NAME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_NAME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_COMMENT_INFOLEVEL","package":"druntime","parentType":"","signature":"GROUP_COMMENT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_COMMENT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"GROUP_ATTRIBUTES_INFOLEVEL","package":"druntime","parentType":"","signature":"GROUP_ATTRIBUTES_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#GROUP_ATTRIBUTES_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_NAME_PARMNUM","package":"druntime","parentType":"","signature":"LOCALGROUP_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"LOCALGROUP_COMMENT_PARMNUM","package":"druntime","parentType":"","signature":"LOCALGROUP_COMMENT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#LOCALGROUP_COMMENT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"MAXPERMENTRIES","package":"druntime","parentType":"","signature":"MAXPERMENTRIES","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#MAXPERMENTRIES"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_NONE","package":"druntime","parentType":"","signature":"ACCESS_NONE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_READ","package":"druntime","parentType":"","signature":"ACCESS_READ","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_WRITE","package":"druntime","parentType":"","signature":"ACCESS_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_CREATE","package":"druntime","parentType":"","signature":"ACCESS_CREATE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_EXEC","package":"druntime","parentType":"","signature":"ACCESS_EXEC","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_EXEC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_DELETE","package":"druntime","parentType":"","signature":"ACCESS_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ATRIB","package":"druntime","parentType":"","signature":"ACCESS_ATRIB","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ATRIB"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_PERM","package":"druntime","parentType":"","signature":"ACCESS_PERM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_PERM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ALL","package":"druntime","parentType":"","signature":"ACCESS_ALL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_GROUP","package":"druntime","parentType":"","signature":"ACCESS_GROUP","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_AUDIT","package":"druntime","parentType":"","signature":"ACCESS_AUDIT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_AUDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_SUCCESS_OPEN","package":"druntime","parentType":"","signature":"ACCESS_SUCCESS_OPEN","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_SUCCESS_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_SUCCESS_WRITE","package":"druntime","parentType":"","signature":"ACCESS_SUCCESS_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_SUCCESS_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_SUCCESS_DELETE","package":"druntime","parentType":"","signature":"ACCESS_SUCCESS_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_SUCCESS_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_SUCCESS_ACL","package":"druntime","parentType":"","signature":"ACCESS_SUCCESS_ACL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_SUCCESS_ACL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_SUCCESS_MASK","package":"druntime","parentType":"","signature":"ACCESS_SUCCESS_MASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_SUCCESS_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_OPEN","package":"druntime","parentType":"","signature":"ACCESS_FAIL_OPEN","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_WRITE","package":"druntime","parentType":"","signature":"ACCESS_FAIL_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_DELETE","package":"druntime","parentType":"","signature":"ACCESS_FAIL_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_ACL","package":"druntime","parentType":"","signature":"ACCESS_FAIL_ACL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_ACL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_MASK","package":"druntime","parentType":"","signature":"ACCESS_FAIL_MASK","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_FAIL_SHIFT","package":"druntime","parentType":"","signature":"ACCESS_FAIL_SHIFT","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_FAIL_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_RESOURCE_NAME_PARMNUM","package":"druntime","parentType":"","signature":"ACCESS_RESOURCE_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_RESOURCE_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ATTR_PARMNUM","package":"druntime","parentType":"","signature":"ACCESS_ATTR_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ATTR_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_COUNT_PARMNUM","package":"druntime","parentType":"","signature":"ACCESS_COUNT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_COUNT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ACCESS_LIST_PARMNUM","package":"druntime","parentType":"","signature":"ACCESS_ACCESS_LIST_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ACCESS_LIST_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_RESOURCE_NAME_INFOLEVEL","package":"druntime","parentType":"","signature":"ACCESS_RESOURCE_NAME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_RESOURCE_NAME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ATTR_INFOLEVEL","package":"druntime","parentType":"","signature":"ACCESS_ATTR_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ATTR_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_COUNT_INFOLEVEL","package":"druntime","parentType":"","signature":"ACCESS_COUNT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_COUNT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"ACCESS_ACCESS_LIST_INFOLEVEL","package":"druntime","parentType":"","signature":"ACCESS_ACCESS_LIST_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#ACCESS_ACCESS_LIST_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_REPLICATION_NEEDED","package":"druntime","parentType":"","signature":"NETLOGON_REPLICATION_NEEDED","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_REPLICATION_NEEDED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_REPLICATION_IN_PROGRESS","package":"druntime","parentType":"","signature":"NETLOGON_REPLICATION_IN_PROGRESS","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_REPLICATION_IN_PROGRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_FULL_SYNC_REPLICATION","package":"druntime","parentType":"","signature":"NETLOGON_FULL_SYNC_REPLICATION","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_FULL_SYNC_REPLICATION"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaccess","name":"NETLOGON_REDO_NEEDED","package":"druntime","parentType":"","signature":"NETLOGON_REDO_NEEDED","url":"/ddoc/druntime/core/sys/windows/lmaccess.html#NETLOGON_REDO_NEEDED"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmalert","name":"core.sys.windows.lmalert","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmalert.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmalert","name":"NetAlertRaise","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAlertRaise(LPCWSTR, PVOID, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmalert/NetAlertRaise.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmalert","name":"NetAlertRaiseEx","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAlertRaiseEx(LPCWSTR, PVOID, DWORD, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmalert/NetAlertRaiseEx.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmalert","name":"ADMIN_OTHER_INFO","package":"druntime","parentType":"","signature":"ADMIN_OTHER_INFO","url":"/ddoc/druntime/core/sys/windows/lmalert.html#ADMIN_OTHER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmalert","name":"PADMIN_OTHER_INFO","package":"druntime","parentType":"","signature":"PADMIN_OTHER_INFO = ADMIN_OTHER_INFO *","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PADMIN_OTHER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.lmalert","name":"STD_ALERT","package":"druntime","parentType":"","signature":"STD_ALERT","url":"/ddoc/druntime/core/sys/windows/lmalert.html#STD_ALERT"},{"doc":"","kind":"alias","module":"core.sys.windows.lmalert","name":"PSTD_ALERT","package":"druntime","parentType":"","signature":"PSTD_ALERT = STD_ALERT *","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PSTD_ALERT"},{"doc":"","kind":"struct","module":"core.sys.windows.lmalert","name":"ERRLOG_OTHER_INFO","package":"druntime","parentType":"","signature":"ERRLOG_OTHER_INFO","url":"/ddoc/druntime/core/sys/windows/lmalert.html#ERRLOG_OTHER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmalert","name":"PERRLOG_OTHER_INFO","package":"druntime","parentType":"","signature":"PERRLOG_OTHER_INFO = ERRLOG_OTHER_INFO *","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PERRLOG_OTHER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.lmalert","name":"PRINT_OTHER_INFO","package":"druntime","parentType":"","signature":"PRINT_OTHER_INFO","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRINT_OTHER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmalert","name":"PPRINT_OTHER_INFO","package":"druntime","parentType":"","signature":"PPRINT_OTHER_INFO = PRINT_OTHER_INFO *","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PPRINT_OTHER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.lmalert","name":"USER_OTHER_INFO","package":"druntime","parentType":"","signature":"USER_OTHER_INFO","url":"/ddoc/druntime/core/sys/windows/lmalert.html#USER_OTHER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmalert","name":"PUSER_OTHER_INFO","package":"druntime","parentType":"","signature":"PUSER_OTHER_INFO = USER_OTHER_INFO *","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PUSER_OTHER_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"ALERTER_MAILSLOT","package":"druntime","parentType":"","signature":"TCHAR[] ALERTER_MAILSLOT","url":"/ddoc/druntime/core/sys/windows/lmalert.html#ALERTER_MAILSLOT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_QSTATUS","package":"druntime","parentType":"","signature":"PRJOB_QSTATUS","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_QSTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_DEVSTATUS","package":"druntime","parentType":"","signature":"PRJOB_DEVSTATUS","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_DEVSTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_COMPLETE","package":"druntime","parentType":"","signature":"PRJOB_COMPLETE","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_INTERV","package":"druntime","parentType":"","signature":"PRJOB_INTERV","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_INTERV"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_","package":"druntime","parentType":"","signature":"PRJOB_","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_DESTOFFLINE","package":"druntime","parentType":"","signature":"PRJOB_DESTOFFLINE","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_DESTOFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_DESTPAUSED","package":"druntime","parentType":"","signature":"PRJOB_DESTPAUSED","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_DESTPAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_NOTIFY","package":"druntime","parentType":"","signature":"PRJOB_NOTIFY","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_DESTNOPAPER","package":"druntime","parentType":"","signature":"PRJOB_DESTNOPAPER","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_DESTNOPAPER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_DELETED","package":"druntime","parentType":"","signature":"PRJOB_DELETED","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_DELETED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_QS_QUEUED","package":"druntime","parentType":"","signature":"PRJOB_QS_QUEUED","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_QS_QUEUED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_QS_PAUSED","package":"druntime","parentType":"","signature":"PRJOB_QS_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_QS_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_QS_SPOOLING","package":"druntime","parentType":"","signature":"PRJOB_QS_SPOOLING","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_QS_SPOOLING"},{"doc":"","kind":"variable","module":"core.sys.windows.lmalert","name":"PRJOB_QS_PRINTING","package":"druntime","parentType":"","signature":"PRJOB_QS_PRINTING","url":"/ddoc/druntime/core/sys/windows/lmalert.html#PRJOB_QS_PRINTING"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmapibuf","name":"core.sys.windows.lmapibuf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmapibuf.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmapibuf","name":"NetApiBufferAllocate","package":"druntime","parentType":"","signature":"NET_API_STATUS NetApiBufferAllocate(DWORD,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/lmapibuf/NetApiBufferAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmapibuf","name":"NetApiBufferFree","package":"druntime","parentType":"","signature":"NET_API_STATUS NetApiBufferFree(PVOID)","url":"/ddoc/druntime/core/sys/windows/lmapibuf/NetApiBufferFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmapibuf","name":"NetApiBufferReallocate","package":"druntime","parentType":"","signature":"NET_API_STATUS NetApiBufferReallocate(PVOID,  DWORD,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/lmapibuf/NetApiBufferReallocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmapibuf","name":"NetApiBufferSize","package":"druntime","parentType":"","signature":"NET_API_STATUS NetApiBufferSize(PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmapibuf/NetApiBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmapibuf","name":"NetapipBufferAllocate","package":"druntime","parentType":"","signature":"NET_API_STATUS NetapipBufferAllocate(DWORD,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/lmapibuf/NetapipBufferAllocate.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmat","name":"core.sys.windows.lmat","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmat.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmat","name":"NetScheduleJobAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetScheduleJobAdd(LPWSTR,  PBYTE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/lmat/NetScheduleJobAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmat","name":"NetScheduleJobDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetScheduleJobDel(LPWSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/lmat/NetScheduleJobDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmat","name":"NetScheduleJobEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetScheduleJobEnum(LPWSTR,  PBYTE *,  DWORD,  PDWORD,  PDWORD,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmat/NetScheduleJobEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmat","name":"NetScheduleJobGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetScheduleJobGetInfo(LPWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmat/NetScheduleJobGetInfo.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmat","name":"AT_ENUM","package":"druntime","parentType":"","signature":"AT_ENUM","url":"/ddoc/druntime/core/sys/windows/lmat.html#AT_ENUM"},{"doc":"","kind":"alias","module":"core.sys.windows.lmat","name":"PAT_ENUM","package":"druntime","parentType":"","signature":"PAT_ENUM = AT_ENUM *","url":"/ddoc/druntime/core/sys/windows/lmat.html#PAT_ENUM"},{"doc":"","kind":"struct","module":"core.sys.windows.lmat","name":"AT_INFO","package":"druntime","parentType":"","signature":"AT_INFO","url":"/ddoc/druntime/core/sys/windows/lmat.html#AT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmat","name":"PAT_INFO","package":"druntime","parentType":"","signature":"PAT_INFO = AT_INFO *","url":"/ddoc/druntime/core/sys/windows/lmat.html#PAT_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_RUN_PERIODICALLY","package":"druntime","parentType":"","signature":"JOB_RUN_PERIODICALLY","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_RUN_PERIODICALLY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_EXEC_ERROR","package":"druntime","parentType":"","signature":"JOB_EXEC_ERROR","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_EXEC_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_RUNS_TODAY","package":"druntime","parentType":"","signature":"JOB_RUNS_TODAY","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_RUNS_TODAY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_ADD_CURRENT_DATE","package":"druntime","parentType":"","signature":"JOB_ADD_CURRENT_DATE","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_ADD_CURRENT_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_NONINTERACTIVE","package":"druntime","parentType":"","signature":"JOB_NONINTERACTIVE","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_NONINTERACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_INPUT_FLAGS","package":"druntime","parentType":"","signature":"JOB_INPUT_FLAGS","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_INPUT_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmat","name":"JOB_OUTPUT_FLAGS","package":"druntime","parentType":"","signature":"JOB_OUTPUT_FLAGS","url":"/ddoc/druntime/core/sys/windows/lmat.html#JOB_OUTPUT_FLAGS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmaudit","name":"core.sys.windows.lmaudit","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmaudit.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaudit","name":"NetAuditClear","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAuditClear(LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmaudit/NetAuditClear.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaudit","name":"NetAuditRead","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAuditRead(LPTSTR, LPTSTR, LPHLOG, DWORD, PDWORD, DWORD, DWORD, PBYTE *, DWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmaudit/NetAuditRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmaudit","name":"NetAuditWrite","package":"druntime","parentType":"","signature":"NET_API_STATUS NetAuditWrite(DWORD, PBYTE, DWORD, LPTSTR, PBYTE)","url":"/ddoc/druntime/core/sys/windows/lmaudit/NetAuditWrite.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AUDIT_ENTRY","package":"druntime","parentType":"","signature":"AUDIT_ENTRY","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AUDIT_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAUDIT_ENTRY","package":"druntime","parentType":"","signature":"PAUDIT_ENTRY = AUDIT_ENTRY *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAUDIT_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"HLOG","package":"druntime","parentType":"","signature":"HLOG","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#HLOG"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PHLOG","package":"druntime","parentType":"","signature":"PHLOG = HLOG *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PHLOG"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_SRVSTATUS","package":"druntime","parentType":"","signature":"AE_SRVSTATUS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SRVSTATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_SRVSTATUS","package":"druntime","parentType":"","signature":"PAE_SRVSTATUS = AE_SRVSTATUS *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_SRVSTATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_SESSLOGON","package":"druntime","parentType":"","signature":"AE_SESSLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SESSLOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_SESSLOGON","package":"druntime","parentType":"","signature":"PAE_SESSLOGON = AE_SESSLOGON *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_SESSLOGON"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_SESSLOGOFF","package":"druntime","parentType":"","signature":"AE_SESSLOGOFF","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SESSLOGOFF"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_SESSLOGOFF","package":"druntime","parentType":"","signature":"PAE_SESSLOGOFF = AE_SESSLOGOFF *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_SESSLOGOFF"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_SESSPWERR","package":"druntime","parentType":"","signature":"AE_SESSPWERR","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SESSPWERR"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_SESSPWERR","package":"druntime","parentType":"","signature":"PAE_SESSPWERR = AE_SESSPWERR *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_SESSPWERR"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_CONNSTART","package":"druntime","parentType":"","signature":"AE_CONNSTART","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_CONNSTART"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_CONNSTART","package":"druntime","parentType":"","signature":"PAE_CONNSTART = AE_CONNSTART *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_CONNSTART"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_CONNSTOP","package":"druntime","parentType":"","signature":"AE_CONNSTOP","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_CONNSTOP"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_CONNSTOP","package":"druntime","parentType":"","signature":"PAE_CONNSTOP = AE_CONNSTOP *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_CONNSTOP"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_CONNREJ","package":"druntime","parentType":"","signature":"AE_CONNREJ","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_CONNREJ"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_CONNREJ","package":"druntime","parentType":"","signature":"PAE_CONNREJ = AE_CONNREJ *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_CONNREJ"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_RESACCESS","package":"druntime","parentType":"","signature":"AE_RESACCESS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_RESACCESS"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_RESACCESS","package":"druntime","parentType":"","signature":"PAE_RESACCESS = AE_RESACCESS *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_RESACCESS"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_RESACCESSREJ","package":"druntime","parentType":"","signature":"AE_RESACCESSREJ","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_RESACCESSREJ"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_RESACCESSREJ","package":"druntime","parentType":"","signature":"PAE_RESACCESSREJ = AE_RESACCESSREJ *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_RESACCESSREJ"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_CLOSEFILE","package":"druntime","parentType":"","signature":"AE_CLOSEFILE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_CLOSEFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_CLOSEFILE","package":"druntime","parentType":"","signature":"PAE_CLOSEFILE = AE_CLOSEFILE *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_CLOSEFILE"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_SERVICESTAT","package":"druntime","parentType":"","signature":"AE_SERVICESTAT","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SERVICESTAT"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_SERVICESTAT","package":"druntime","parentType":"","signature":"PAE_SERVICESTAT = AE_SERVICESTAT *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_SERVICESTAT"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_ACLMOD","package":"druntime","parentType":"","signature":"AE_ACLMOD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ACLMOD"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_ACLMOD","package":"druntime","parentType":"","signature":"PAE_ACLMOD = AE_ACLMOD *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_ACLMOD"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_UASMOD","package":"druntime","parentType":"","signature":"AE_UASMOD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_UASMOD"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_UASMOD","package":"druntime","parentType":"","signature":"PAE_UASMOD = AE_UASMOD *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_UASMOD"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_NETLOGON","package":"druntime","parentType":"","signature":"AE_NETLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_NETLOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_NETLOGON","package":"druntime","parentType":"","signature":"PAE_NETLOGON = AE_NETLOGON *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_NETLOGON"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_NETLOGOFF","package":"druntime","parentType":"","signature":"AE_NETLOGOFF","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_NETLOGOFF"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_NETLOGOFF","package":"druntime","parentType":"","signature":"PAE_NETLOGOFF = AE_NETLOGOFF *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_NETLOGOFF"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_ACCLIM","package":"druntime","parentType":"","signature":"AE_ACCLIM","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ACCLIM"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_ACCLIM","package":"druntime","parentType":"","signature":"PAE_ACCLIM = AE_ACCLIM *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_ACCLIM"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_LOCKOUT","package":"druntime","parentType":"","signature":"AE_LOCKOUT","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LOCKOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_LOCKOUT","package":"druntime","parentType":"","signature":"PAE_LOCKOUT = AE_LOCKOUT *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_LOCKOUT"},{"doc":"","kind":"struct","module":"core.sys.windows.lmaudit","name":"AE_GENERIC","package":"druntime","parentType":"","signature":"AE_GENERIC","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_GENERIC"},{"doc":"","kind":"alias","module":"core.sys.windows.lmaudit","name":"PAE_GENERIC","package":"druntime","parentType":"","signature":"PAE_GENERIC = AE_GENERIC *","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#PAE_GENERIC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"LOGFLAGS_FORWARD","package":"druntime","parentType":"","signature":"LOGFLAGS_FORWARD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#LOGFLAGS_FORWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"LOGFLAGS_BACKWARD","package":"druntime","parentType":"","signature":"LOGFLAGS_BACKWARD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#LOGFLAGS_BACKWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"LOGFLAGS_SEEK","package":"druntime","parentType":"","signature":"LOGFLAGS_SEEK","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#LOGFLAGS_SEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"ACTION_LOCKOUT","package":"druntime","parentType":"","signature":"ACTION_LOCKOUT","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#ACTION_LOCKOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"ACTION_ADMINUNLOCK","package":"druntime","parentType":"","signature":"ACTION_ADMINUNLOCK","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#ACTION_ADMINUNLOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_GUEST","package":"druntime","parentType":"","signature":"AE_GUEST","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_GUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_USER","package":"druntime","parentType":"","signature":"AE_USER","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ADMIN","package":"druntime","parentType":"","signature":"AE_ADMIN","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ADMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_NORMAL","package":"druntime","parentType":"","signature":"AE_NORMAL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_USERLIMIT","package":"druntime","parentType":"","signature":"AE_USERLIMIT","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_USERLIMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_GENERAL","package":"druntime","parentType":"","signature":"AE_GENERAL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_GENERAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ERROR","package":"druntime","parentType":"","signature":"AE_ERROR","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_SESSDIS","package":"druntime","parentType":"","signature":"AE_SESSDIS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SESSDIS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_BADPW","package":"druntime","parentType":"","signature":"AE_BADPW","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_BADPW"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_AUTODIS","package":"druntime","parentType":"","signature":"AE_AUTODIS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_AUTODIS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_UNSHARE","package":"druntime","parentType":"","signature":"AE_UNSHARE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_UNSHARE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ADMINPRIVREQD","package":"druntime","parentType":"","signature":"AE_ADMINPRIVREQD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ADMINPRIVREQD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ADMINDIS","package":"druntime","parentType":"","signature":"AE_ADMINDIS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ADMINDIS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_NOACCESSPERM","package":"druntime","parentType":"","signature":"AE_NOACCESSPERM","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_NOACCESSPERM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ACCRESTRICT","package":"druntime","parentType":"","signature":"AE_ACCRESTRICT","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ACCRESTRICT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_NORMAL_CLOSE","package":"druntime","parentType":"","signature":"AE_NORMAL_CLOSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_NORMAL_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_SES_CLOSE","package":"druntime","parentType":"","signature":"AE_SES_CLOSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_SES_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ADMIN_CLOSE","package":"druntime","parentType":"","signature":"AE_ADMIN_CLOSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ADMIN_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_UNKNOWN","package":"druntime","parentType":"","signature":"AE_LIM_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_LOGONHOURS","package":"druntime","parentType":"","signature":"AE_LIM_LOGONHOURS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_LOGONHOURS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_EXPIRED","package":"druntime","parentType":"","signature":"AE_LIM_EXPIRED","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_EXPIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_INVAL_WKSTA","package":"druntime","parentType":"","signature":"AE_LIM_INVAL_WKSTA","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_INVAL_WKSTA"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_DISABLED","package":"druntime","parentType":"","signature":"AE_LIM_DISABLED","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_LIM_DELETED","package":"druntime","parentType":"","signature":"AE_LIM_DELETED","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_LIM_DELETED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_MOD","package":"druntime","parentType":"","signature":"AE_MOD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_MOD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_DELETE","package":"druntime","parentType":"","signature":"AE_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_ADD","package":"druntime","parentType":"","signature":"AE_ADD","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_ADD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_UAS_USER","package":"druntime","parentType":"","signature":"AE_UAS_USER","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_UAS_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_UAS_GROUP","package":"druntime","parentType":"","signature":"AE_UAS_GROUP","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_UAS_GROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AE_UAS_MODALS","package":"druntime","parentType":"","signature":"AE_UAS_MODALS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AE_UAS_MODALS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_SERVICE","package":"druntime","parentType":"","signature":"SVAUD_SERVICE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_SERVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_GOODSESSLOGON","package":"druntime","parentType":"","signature":"SVAUD_GOODSESSLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_GOODSESSLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_BADSESSLOGON","package":"druntime","parentType":"","signature":"SVAUD_BADSESSLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_BADSESSLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_SESSLOGON","package":"druntime","parentType":"","signature":"SVAUD_SESSLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_SESSLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_GOODNETLOGON","package":"druntime","parentType":"","signature":"SVAUD_GOODNETLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_GOODNETLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_BADNETLOGON","package":"druntime","parentType":"","signature":"SVAUD_BADNETLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_BADNETLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_NETLOGON","package":"druntime","parentType":"","signature":"SVAUD_NETLOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_NETLOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_LOGON","package":"druntime","parentType":"","signature":"SVAUD_LOGON","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_GOODUSE","package":"druntime","parentType":"","signature":"SVAUD_GOODUSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_GOODUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_BADUSE","package":"druntime","parentType":"","signature":"SVAUD_BADUSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_BADUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_USE","package":"druntime","parentType":"","signature":"SVAUD_USE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_USE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_USERLIST","package":"druntime","parentType":"","signature":"SVAUD_USERLIST","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_USERLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_PERMISSIONS","package":"druntime","parentType":"","signature":"SVAUD_PERMISSIONS","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_PERMISSIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_RESOURCE","package":"druntime","parentType":"","signature":"SVAUD_RESOURCE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"SVAUD_LOGONLIM","package":"druntime","parentType":"","signature":"SVAUD_LOGONLIM","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#SVAUD_LOGONLIM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_AUDIT_ALL","package":"druntime","parentType":"","signature":"AA_AUDIT_ALL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_AUDIT_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_OWNER","package":"druntime","parentType":"","signature":"AA_A_OWNER","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_OWNER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_CLOSE","package":"druntime","parentType":"","signature":"AA_CLOSE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_OPEN","package":"druntime","parentType":"","signature":"AA_S_OPEN","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_WRITE","package":"druntime","parentType":"","signature":"AA_S_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_CREATE","package":"druntime","parentType":"","signature":"AA_S_CREATE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_DELETE","package":"druntime","parentType":"","signature":"AA_S_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_ACL","package":"druntime","parentType":"","signature":"AA_S_ACL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_ACL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_S_ALL","package":"druntime","parentType":"","signature":"AA_S_ALL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_S_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_OPEN","package":"druntime","parentType":"","signature":"AA_F_OPEN","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_WRITE","package":"druntime","parentType":"","signature":"AA_F_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_CREATE","package":"druntime","parentType":"","signature":"AA_F_CREATE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_DELETE","package":"druntime","parentType":"","signature":"AA_F_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_ACL","package":"druntime","parentType":"","signature":"AA_F_ACL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_ACL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_F_ALL","package":"druntime","parentType":"","signature":"AA_F_ALL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_F_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_OPEN","package":"druntime","parentType":"","signature":"AA_A_OPEN","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_WRITE","package":"druntime","parentType":"","signature":"AA_A_WRITE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_CREATE","package":"druntime","parentType":"","signature":"AA_A_CREATE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_DELETE","package":"druntime","parentType":"","signature":"AA_A_DELETE","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_ACL","package":"druntime","parentType":"","signature":"AA_A_ACL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_ACL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmaudit","name":"AA_A_ALL","package":"druntime","parentType":"","signature":"AA_A_ALL","url":"/ddoc/druntime/core/sys/windows/lmaudit.html#AA_A_ALL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmbrowsr","name":"core.sys.windows.lmbrowsr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserServerEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserServerEnum(LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD,\n       PBYTE *,  DWORD,  PDWORD,  PDWORD,  DWORD,  LPCWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserServerEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserServerEnumEx","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserServerEnumEx(LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD,\n       PBYTE *,  DWORD,  PDWORD,  PDWORD,  DWORD,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserServerEnumEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserQueryEmulatedDomains","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserQueryEmulatedDomains(LPWSTR,  PBYTE *,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserQueryEmulatedDomains.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserQueryOtherDomains","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserQueryOtherDomains(LPCWSTR,  PBYTE *,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserQueryOtherDomains.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserResetNetlogonState","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserResetNetlogonState(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserResetNetlogonState.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserSetNetlogonState","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserSetNetlogonState(LPWSTR,  LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserSetNetlogonState.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserQueryStatistics","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserQueryStatistics(LPCWSTR,  LPBROWSER_STATISTICS *)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserQueryStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserResetStatistics","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserResetStatistics(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserResetStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserServerEnumForXactsrv","package":"druntime","parentType":"","signature":"WORD I_BrowserServerEnumForXactsrv(LPCWSTR,  LPCWSTR,  ULONG,  USHORT,  PVOID,\n       WORD,  DWORD,  PDWORD,  PDWORD,  DWORD,  LPCWSTR,  LPCWSTR,  PWORD)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserServerEnumForXactsrv.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmbrowsr","name":"I_BrowserDebugTrace","package":"druntime","parentType":"","signature":"NET_API_STATUS I_BrowserDebugTrace(PWCHAR,  PCHAR)","url":"/ddoc/druntime/core/sys/windows/lmbrowsr/I_BrowserDebugTrace.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmbrowsr","name":"BROWSER_STATISTICS","package":"druntime","parentType":"","signature":"BROWSER_STATISTICS","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#BROWSER_STATISTICS"},{"doc":"","kind":"alias","module":"core.sys.windows.lmbrowsr","name":"PBROWSER_STATISTICS","package":"druntime","parentType":"","signature":"PBROWSER_STATISTICS = BROWSER_STATISTICS *","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#PBROWSER_STATISTICS"},{"doc":"","kind":"struct","module":"core.sys.windows.lmbrowsr","name":"BROWSER_STATISTICS_100","package":"druntime","parentType":"","signature":"BROWSER_STATISTICS_100","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#BROWSER_STATISTICS_100"},{"doc":"","kind":"alias","module":"core.sys.windows.lmbrowsr","name":"PBROWSER_STATISTICS_100","package":"druntime","parentType":"","signature":"PBROWSER_STATISTICS_100 = BROWSER_STATISTICS_100 *","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#PBROWSER_STATISTICS_100"},{"doc":"","kind":"struct","module":"core.sys.windows.lmbrowsr","name":"BROWSER_STATISTICS_101","package":"druntime","parentType":"","signature":"BROWSER_STATISTICS_101","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#BROWSER_STATISTICS_101"},{"doc":"","kind":"alias","module":"core.sys.windows.lmbrowsr","name":"PBROWSER_STATISTICS_101","package":"druntime","parentType":"","signature":"PBROWSER_STATISTICS_101 = BROWSER_STATISTICS_101 *","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#PBROWSER_STATISTICS_101"},{"doc":"","kind":"variable","module":"core.sys.windows.lmbrowsr","name":"BROWSER_ROLE_PDC","package":"druntime","parentType":"","signature":"BROWSER_ROLE_PDC","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#BROWSER_ROLE_PDC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmbrowsr","name":"BROWSER_ROLE_BDC","package":"druntime","parentType":"","signature":"BROWSER_ROLE_BDC","url":"/ddoc/druntime/core/sys/windows/lmbrowsr.html#BROWSER_ROLE_BDC"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmchdev","name":"core.sys.windows.lmchdev","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmchdev.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevEnum(LPCWSTR,  DWORD,  PBYTE *,  DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevGetInfo(LPCWSTR,  LPCWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevControl","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevControl(LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevQEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevQEnum(LPCWSTR,  LPCWSTR,  DWORD,  PBYTE *,  DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevQEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevQGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevQGetInfo(LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevQGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevQSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevQSetInfo(LPCWSTR,  LPCWSTR,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevQSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevQPurge","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevQPurge(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevQPurge.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetCharDevQPurgeSelf","package":"druntime","parentType":"","signature":"NET_API_STATUS NetCharDevQPurgeSelf(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetCharDevQPurgeSelf.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetHandleGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetHandleGetInfo(HANDLE,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetHandleGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmchdev","name":"NetHandleSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetHandleSetInfo(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmchdev/NetHandleSetInfo.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEV_INFO_0","package":"druntime","parentType":"","signature":"CHARDEV_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEV_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEV_INFO_0","package":"druntime","parentType":"","signature":"PCHARDEV_INFO_0 = CHARDEV_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEV_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEV_INFO_1","package":"druntime","parentType":"","signature":"CHARDEV_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEV_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEV_INFO_1","package":"druntime","parentType":"","signature":"PCHARDEV_INFO_1 = CHARDEV_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEV_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_INFO_0","package":"druntime","parentType":"","signature":"CHARDEVQ_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEVQ_INFO_0","package":"druntime","parentType":"","signature":"PCHARDEVQ_INFO_0 = CHARDEVQ_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEVQ_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_INFO_1","package":"druntime","parentType":"","signature":"CHARDEVQ_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEVQ_INFO_1","package":"druntime","parentType":"","signature":"PCHARDEVQ_INFO_1 = CHARDEVQ_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEVQ_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_INFO_1002","package":"druntime","parentType":"","signature":"CHARDEVQ_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEVQ_INFO_1002","package":"druntime","parentType":"","signature":"PCHARDEVQ_INFO_1002 = CHARDEVQ_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEVQ_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_INFO_1003","package":"druntime","parentType":"","signature":"CHARDEVQ_INFO_1003","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_INFO_1003"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PCHARDEVQ_INFO_1003","package":"druntime","parentType":"","signature":"PCHARDEVQ_INFO_1003 = CHARDEVQ_INFO_1003 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PCHARDEVQ_INFO_1003"},{"doc":"","kind":"struct","module":"core.sys.windows.lmchdev","name":"HANDLE_INFO_1","package":"druntime","parentType":"","signature":"HANDLE_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#HANDLE_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmchdev","name":"PHANDLE_INFO_1","package":"druntime","parentType":"","signature":"PHANDLE_INFO_1 = HANDLE_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#PHANDLE_INFO_1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_NO_REQUESTS","package":"druntime","parentType":"","signature":"CHARDEVQ_NO_REQUESTS","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_NO_REQUESTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEV_CLOSE","package":"druntime","parentType":"","signature":"CHARDEV_CLOSE","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEV_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_MAX_PRIORITY","package":"druntime","parentType":"","signature":"CHARDEVQ_MAX_PRIORITY","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_MAX_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_DEV_PARMNUM","package":"druntime","parentType":"","signature":"CHARDEVQ_DEV_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_DEV_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"HANDLE_INFO_LEVEL_1","package":"druntime","parentType":"","signature":"HANDLE_INFO_LEVEL_1","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#HANDLE_INFO_LEVEL_1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"HANDLE_CHARTIME_PARMNUM","package":"druntime","parentType":"","signature":"HANDLE_CHARTIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#HANDLE_CHARTIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"HANDLE_CHARCOUNT_PARMNUM","package":"druntime","parentType":"","signature":"HANDLE_CHARCOUNT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#HANDLE_CHARCOUNT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEV_STAT_OPENED","package":"druntime","parentType":"","signature":"CHARDEV_STAT_OPENED","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEV_STAT_OPENED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_PRIORITY_PARMNUM","package":"druntime","parentType":"","signature":"CHARDEVQ_PRIORITY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_PRIORITY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_DEVS_PARMNUM","package":"druntime","parentType":"","signature":"CHARDEVQ_DEVS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_DEVS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEV_STAT_ERROR","package":"druntime","parentType":"","signature":"CHARDEV_STAT_ERROR","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEV_STAT_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_NUMUSERS_PARMNUM","package":"druntime","parentType":"","signature":"CHARDEVQ_NUMUSERS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_NUMUSERS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_NUMAHEAD_PARMNUM","package":"druntime","parentType":"","signature":"CHARDEVQ_NUMAHEAD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_NUMAHEAD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_DEF_PRIORITY","package":"druntime","parentType":"","signature":"CHARDEVQ_DEF_PRIORITY","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_DEF_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_PRIORITY_INFOLEVEL","package":"druntime","parentType":"","signature":"CHARDEVQ_PRIORITY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_PRIORITY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_DEVS_INFOLEVEL","package":"druntime","parentType":"","signature":"CHARDEVQ_DEVS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_DEVS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmchdev","name":"CHARDEVQ_MIN_PRIORITY","package":"druntime","parentType":"","signature":"CHARDEVQ_MIN_PRIORITY","url":"/ddoc/druntime/core/sys/windows/lmchdev.html#CHARDEVQ_MIN_PRIORITY"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmconfig","name":"core.sys.windows.lmconfig","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmconfig.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmconfig","name":"NetConfigGet","package":"druntime","parentType":"","signature":"NET_API_STATUS NetConfigGet(LPCWSTR,  LPCWSTR,  LPCWSTR,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmconfig/NetConfigGet.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmconfig","name":"NetConfigGetAll","package":"druntime","parentType":"","signature":"NET_API_STATUS NetConfigGetAll(LPCWSTR,  LPCWSTR,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmconfig/NetConfigGetAll.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmconfig","name":"NetConfigSet","package":"druntime","parentType":"","signature":"NET_API_STATUS NetConfigSet(LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD,\n           PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/lmconfig/NetConfigSet.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmconfig","name":"CONFIG_INFO_0","package":"druntime","parentType":"","signature":"CONFIG_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmconfig.html#CONFIG_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmconfig","name":"PCONFIG_INFO_0","package":"druntime","parentType":"","signature":"PCONFIG_INFO_0 = CONFIG_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmconfig.html#PCONFIG_INFO_0"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmcons","name":"core.sys.windows.lmcons","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmcons.html"},{"doc":"","kind":"alias","module":"core.sys.windows.lmcons","name":"NET_API_STATUS","package":"druntime","parentType":"","signature":"NET_API_STATUS = DWORD","url":"/ddoc/druntime/core/sys/windows/lmcons.html#NET_API_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MESSAGE_FILENAME","package":"druntime","parentType":"","signature":"TCHAR[] MESSAGE_FILENAME","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MESSAGE_FILENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MIN_LANMAN_MESSAGE_ID","package":"druntime","parentType":"","signature":"MIN_LANMAN_MESSAGE_ID","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MIN_LANMAN_MESSAGE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MAX_LANMAN_MESSAGE_ID","package":"druntime","parentType":"","signature":"MAX_LANMAN_MESSAGE_ID","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MAX_LANMAN_MESSAGE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"CNLEN","package":"druntime","parentType":"","signature":"CNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#CNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"UNCLEN","package":"druntime","parentType":"","signature":"UNCLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#UNCLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"DNLEN","package":"druntime","parentType":"","signature":"DNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#DNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_CNLEN","package":"druntime","parentType":"","signature":"LM20_CNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_CNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_DNLEN","package":"druntime","parentType":"","signature":"LM20_DNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_DNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_SNLEN","package":"druntime","parentType":"","signature":"LM20_SNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_SNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_STXTLEN","package":"druntime","parentType":"","signature":"LM20_STXTLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_STXTLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_UNCLEN","package":"druntime","parentType":"","signature":"LM20_UNCLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_UNCLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_NNLEN","package":"druntime","parentType":"","signature":"LM20_NNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_NNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_RMLEN","package":"druntime","parentType":"","signature":"LM20_RMLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_RMLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"NNLEN","package":"druntime","parentType":"","signature":"NNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#NNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"RMLEN","package":"druntime","parentType":"","signature":"RMLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#RMLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"SNLEN","package":"druntime","parentType":"","signature":"SNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#SNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"STXTLEN","package":"druntime","parentType":"","signature":"STXTLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#STXTLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PATHLEN","package":"druntime","parentType":"","signature":"PATHLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PATHLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_PATHLEN","package":"druntime","parentType":"","signature":"LM20_PATHLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_PATHLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"DEVLEN","package":"druntime","parentType":"","signature":"DEVLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#DEVLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_DEVLEN","package":"druntime","parentType":"","signature":"LM20_DEVLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_DEVLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"EVLEN","package":"druntime","parentType":"","signature":"EVLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#EVLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"UNLEN","package":"druntime","parentType":"","signature":"UNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#UNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_UNLEN","package":"druntime","parentType":"","signature":"LM20_UNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_UNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"GNLEN","package":"druntime","parentType":"","signature":"GNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#GNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_GNLEN","package":"druntime","parentType":"","signature":"LM20_GNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_GNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PWLEN","package":"druntime","parentType":"","signature":"PWLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_PWLEN","package":"druntime","parentType":"","signature":"LM20_PWLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_PWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"SHPWLEN","package":"druntime","parentType":"","signature":"SHPWLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#SHPWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"CLTYPE_LEN","package":"druntime","parentType":"","signature":"CLTYPE_LEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#CLTYPE_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"QNLEN","package":"druntime","parentType":"","signature":"QNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#QNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_QNLEN","package":"druntime","parentType":"","signature":"LM20_QNLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_QNLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MAXCOMMENTSZ","package":"druntime","parentType":"","signature":"MAXCOMMENTSZ","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MAXCOMMENTSZ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"LM20_MAXCOMMENTSZ","package":"druntime","parentType":"","signature":"LM20_MAXCOMMENTSZ","url":"/ddoc/druntime/core/sys/windows/lmcons.html#LM20_MAXCOMMENTSZ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"ALERTSZ","package":"druntime","parentType":"","signature":"ALERTSZ","url":"/ddoc/druntime/core/sys/windows/lmcons.html#ALERTSZ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MAXDEVENTRIES","package":"druntime","parentType":"","signature":"MAXDEVENTRIES","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MAXDEVENTRIES"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"NETBIOS_NAME_LEN","package":"druntime","parentType":"","signature":"NETBIOS_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#NETBIOS_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"MAX_PREFERRED_LENGTH","package":"druntime","parentType":"","signature":"DWORD MAX_PREFERRED_LENGTH","url":"/ddoc/druntime/core/sys/windows/lmcons.html#MAX_PREFERRED_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"CRYPT_KEY_LEN","package":"druntime","parentType":"","signature":"CRYPT_KEY_LEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#CRYPT_KEY_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"CRYPT_TXT_LEN","package":"druntime","parentType":"","signature":"CRYPT_TXT_LEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#CRYPT_TXT_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"ENCRYPTED_PWLEN","package":"druntime","parentType":"","signature":"ENCRYPTED_PWLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#ENCRYPTED_PWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"SESSION_PWLEN","package":"druntime","parentType":"","signature":"SESSION_PWLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#SESSION_PWLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"SESSION_CRYPT_KLEN","package":"druntime","parentType":"","signature":"SESSION_CRYPT_KLEN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#SESSION_CRYPT_KLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PARMNUM_ALL","package":"druntime","parentType":"","signature":"PARMNUM_ALL","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PARMNUM_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PARM_ERROR_UNKNOWN","package":"druntime","parentType":"","signature":"DWORD PARM_ERROR_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PARM_ERROR_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PARM_ERROR_NONE","package":"druntime","parentType":"","signature":"PARM_ERROR_NONE","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PARM_ERROR_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PARMNUM_BASE_INFOLEVEL","package":"druntime","parentType":"","signature":"PARMNUM_BASE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PARMNUM_BASE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PLATFORM_ID_DOS","package":"druntime","parentType":"","signature":"PLATFORM_ID_DOS","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PLATFORM_ID_DOS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PLATFORM_ID_OS2","package":"druntime","parentType":"","signature":"PLATFORM_ID_OS2","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PLATFORM_ID_OS2"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PLATFORM_ID_NT","package":"druntime","parentType":"","signature":"PLATFORM_ID_NT","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PLATFORM_ID_NT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PLATFORM_ID_OSF","package":"druntime","parentType":"","signature":"PLATFORM_ID_OSF","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PLATFORM_ID_OSF"},{"doc":"","kind":"variable","module":"core.sys.windows.lmcons","name":"PLATFORM_ID_VMS","package":"druntime","parentType":"","signature":"PLATFORM_ID_VMS","url":"/ddoc/druntime/core/sys/windows/lmcons.html#PLATFORM_ID_VMS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmerr","name":"core.sys.windows.lmerr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmerr.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmerrlog","name":"core.sys.windows.lmerrlog","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmerrlog","name":"NetErrorLogClear","package":"druntime","parentType":"","signature":"NET_API_STATUS NetErrorLogClear(LPCWSTR,  LPCWSTR,  LPBYTE)","url":"/ddoc/druntime/core/sys/windows/lmerrlog/NetErrorLogClear.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmerrlog","name":"NetErrorLogRead","package":"druntime","parentType":"","signature":"NET_API_STATUS NetErrorLogRead(LPCWSTR,  LPWSTR,  LPHLOG,  DWORD,\n           LPDWORD,  DWORD,  DWORD,  LPBYTE *,  DWORD,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/lmerrlog/NetErrorLogRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmerrlog","name":"NetErrorLogWrite","package":"druntime","parentType":"","signature":"NET_API_STATUS NetErrorLogWrite(LPBYTE,  DWORD,  LPCWSTR,  LPBYTE,\n           DWORD,  LPBYTE,  DWORD,  LPBYTE)","url":"/ddoc/druntime/core/sys/windows/lmerrlog/NetErrorLogWrite.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmerrlog","name":"ERROR_LOG","package":"druntime","parentType":"","signature":"ERROR_LOG","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#ERROR_LOG"},{"doc":"","kind":"alias","module":"core.sys.windows.lmerrlog","name":"PERROR_LOG","package":"druntime","parentType":"","signature":"PERROR_LOG = ERROR_LOG *","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#PERROR_LOG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"ERRLOG_BASE","package":"druntime","parentType":"","signature":"ERRLOG_BASE","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#ERRLOG_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"ERRLOG2_BASE","package":"druntime","parentType":"","signature":"ERRLOG2_BASE","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#ERRLOG2_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"LOGFLAGS_FORWARD","package":"druntime","parentType":"","signature":"LOGFLAGS_FORWARD","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#LOGFLAGS_FORWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"LOGFLAGS_BACKWARD","package":"druntime","parentType":"","signature":"LOGFLAGS_BACKWARD","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#LOGFLAGS_BACKWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"LOGFLAGS_SEEK","package":"druntime","parentType":"","signature":"LOGFLAGS_SEEK","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#LOGFLAGS_SEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Internal_Error","package":"druntime","parentType":"","signature":"NELOG_Internal_Error","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Internal_Error"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Resource_Shortage","package":"druntime","parentType":"","signature":"NELOG_Resource_Shortage","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Resource_Shortage"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Unable_To_Lock_Segment","package":"druntime","parentType":"","signature":"NELOG_Unable_To_Lock_Segment","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Unable_To_Lock_Segment"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Unable_To_Unlock_Segment","package":"druntime","parentType":"","signature":"NELOG_Unable_To_Unlock_Segment","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Unable_To_Unlock_Segment"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Uninstall_Service","package":"druntime","parentType":"","signature":"NELOG_Uninstall_Service","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Uninstall_Service"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Init_Exec_Fail","package":"druntime","parentType":"","signature":"NELOG_Init_Exec_Fail","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Init_Exec_Fail"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Ncb_Error","package":"druntime","parentType":"","signature":"NELOG_Ncb_Error","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Ncb_Error"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Net_Not_Started","package":"druntime","parentType":"","signature":"NELOG_Net_Not_Started","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Net_Not_Started"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Ioctl_Error","package":"druntime","parentType":"","signature":"NELOG_Ioctl_Error","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Ioctl_Error"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_System_Semaphore","package":"druntime","parentType":"","signature":"NELOG_System_Semaphore","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_System_Semaphore"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Init_OpenCreate_Err","package":"druntime","parentType":"","signature":"NELOG_Init_OpenCreate_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Init_OpenCreate_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetBios","package":"druntime","parentType":"","signature":"NELOG_NetBios","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetBios"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_SMB_Illegal","package":"druntime","parentType":"","signature":"NELOG_SMB_Illegal","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_SMB_Illegal"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Service_Fail","package":"druntime","parentType":"","signature":"NELOG_Service_Fail","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Service_Fail"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Entries_Lost","package":"druntime","parentType":"","signature":"NELOG_Entries_Lost","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Entries_Lost"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Init_Seg_Overflow","package":"druntime","parentType":"","signature":"NELOG_Init_Seg_Overflow","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Init_Seg_Overflow"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Srv_No_Mem_Grow","package":"druntime","parentType":"","signature":"NELOG_Srv_No_Mem_Grow","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Srv_No_Mem_Grow"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Access_File_Bad","package":"druntime","parentType":"","signature":"NELOG_Access_File_Bad","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Access_File_Bad"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Srvnet_Not_Started","package":"druntime","parentType":"","signature":"NELOG_Srvnet_Not_Started","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Srvnet_Not_Started"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Init_Chardev_Err","package":"druntime","parentType":"","signature":"NELOG_Init_Chardev_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Init_Chardev_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Remote_API","package":"druntime","parentType":"","signature":"NELOG_Remote_API","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Remote_API"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Ncb_TooManyErr","package":"druntime","parentType":"","signature":"NELOG_Ncb_TooManyErr","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Ncb_TooManyErr"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Mailslot_err","package":"druntime","parentType":"","signature":"NELOG_Mailslot_err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Mailslot_err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReleaseMem_Alert","package":"druntime","parentType":"","signature":"NELOG_ReleaseMem_Alert","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReleaseMem_Alert"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_AT_cannot_write","package":"druntime","parentType":"","signature":"NELOG_AT_cannot_write","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_AT_cannot_write"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Cant_Make_Msg_File","package":"druntime","parentType":"","signature":"NELOG_Cant_Make_Msg_File","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Cant_Make_Msg_File"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Exec_Netservr_NoMem","package":"druntime","parentType":"","signature":"NELOG_Exec_Netservr_NoMem","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Exec_Netservr_NoMem"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Server_Lock_Failure","package":"druntime","parentType":"","signature":"NELOG_Server_Lock_Failure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Server_Lock_Failure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Msg_Shutdown","package":"druntime","parentType":"","signature":"NELOG_Msg_Shutdown","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Msg_Shutdown"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Msg_Sem_Shutdown","package":"druntime","parentType":"","signature":"NELOG_Msg_Sem_Shutdown","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Msg_Sem_Shutdown"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Msg_Log_Err","package":"druntime","parentType":"","signature":"NELOG_Msg_Log_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Msg_Log_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_VIO_POPUP_ERR","package":"druntime","parentType":"","signature":"NELOG_VIO_POPUP_ERR","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_VIO_POPUP_ERR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Msg_Unexpected_SMB_Type","package":"druntime","parentType":"","signature":"NELOG_Msg_Unexpected_SMB_Type","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Msg_Unexpected_SMB_Type"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_Infoseg","package":"druntime","parentType":"","signature":"NELOG_Wksta_Infoseg","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_Infoseg"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_Compname","package":"druntime","parentType":"","signature":"NELOG_Wksta_Compname","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_Compname"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_BiosThreadFailure","package":"druntime","parentType":"","signature":"NELOG_Wksta_BiosThreadFailure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_BiosThreadFailure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_IniSeg","package":"druntime","parentType":"","signature":"NELOG_Wksta_IniSeg","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_IniSeg"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_HostTab_Full","package":"druntime","parentType":"","signature":"NELOG_Wksta_HostTab_Full","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_HostTab_Full"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_Bad_Mailslot_SMB","package":"druntime","parentType":"","signature":"NELOG_Wksta_Bad_Mailslot_SMB","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_Bad_Mailslot_SMB"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_UASInit","package":"druntime","parentType":"","signature":"NELOG_Wksta_UASInit","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_UASInit"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wksta_SSIRelogon","package":"druntime","parentType":"","signature":"NELOG_Wksta_SSIRelogon","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wksta_SSIRelogon"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Build_Name","package":"druntime","parentType":"","signature":"NELOG_Build_Name","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Build_Name"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Name_Expansion","package":"druntime","parentType":"","signature":"NELOG_Name_Expansion","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Name_Expansion"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Message_Send","package":"druntime","parentType":"","signature":"NELOG_Message_Send","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Message_Send"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Mail_Slt_Err","package":"druntime","parentType":"","signature":"NELOG_Mail_Slt_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Mail_Slt_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_AT_cannot_read","package":"druntime","parentType":"","signature":"NELOG_AT_cannot_read","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_AT_cannot_read"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_AT_sched_err","package":"druntime","parentType":"","signature":"NELOG_AT_sched_err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_AT_sched_err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_AT_schedule_file_created","package":"druntime","parentType":"","signature":"NELOG_AT_schedule_file_created","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_AT_schedule_file_created"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Srvnet_NB_Open","package":"druntime","parentType":"","signature":"NELOG_Srvnet_NB_Open","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Srvnet_NB_Open"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_AT_Exec_Err","package":"druntime","parentType":"","signature":"NELOG_AT_Exec_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_AT_Exec_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Lazy_Write_Err","package":"druntime","parentType":"","signature":"NELOG_Lazy_Write_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Lazy_Write_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_HotFix","package":"druntime","parentType":"","signature":"NELOG_HotFix","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_HotFix"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_HardErr_From_Server","package":"druntime","parentType":"","signature":"NELOG_HardErr_From_Server","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_HardErr_From_Server"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_LocalSecFail1","package":"druntime","parentType":"","signature":"NELOG_LocalSecFail1","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_LocalSecFail1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_LocalSecFail2","package":"druntime","parentType":"","signature":"NELOG_LocalSecFail2","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_LocalSecFail2"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_LocalSecFail3","package":"druntime","parentType":"","signature":"NELOG_LocalSecFail3","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_LocalSecFail3"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_LocalSecGeneralFail","package":"druntime","parentType":"","signature":"NELOG_LocalSecGeneralFail","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_LocalSecGeneralFail"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_Internal_Error","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_Internal_Error","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_Internal_Error"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_No_Resource","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_No_Resource","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_No_Resource"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_SMB_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_SMB_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_SMB_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_VC_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_VC_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_VC_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_Stuck_VC_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_Stuck_VC_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_Stuck_VC_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_NCB_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_NCB_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_NCB_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_Write_Behind_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_Write_Behind_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_Write_Behind_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_Reset_Err","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_Reset_Err","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_Reset_Err"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetWkSta_Too_Many","package":"druntime","parentType":"","signature":"NELOG_NetWkSta_Too_Many","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetWkSta_Too_Many"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Srv_Thread_Failure","package":"druntime","parentType":"","signature":"NELOG_Srv_Thread_Failure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Srv_Thread_Failure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Srv_Close_Failure","package":"druntime","parentType":"","signature":"NELOG_Srv_Close_Failure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Srv_Close_Failure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplUserCurDir","package":"druntime","parentType":"","signature":"NELOG_ReplUserCurDir","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplUserCurDir"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplCannotMasterDir","package":"druntime","parentType":"","signature":"NELOG_ReplCannotMasterDir","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplCannotMasterDir"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplUpdateError","package":"druntime","parentType":"","signature":"NELOG_ReplUpdateError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplUpdateError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplLostMaster","package":"druntime","parentType":"","signature":"NELOG_ReplLostMaster","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplLostMaster"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonAuthDCFail","package":"druntime","parentType":"","signature":"NELOG_NetlogonAuthDCFail","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonAuthDCFail"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplLogonFailed","package":"druntime","parentType":"","signature":"NELOG_ReplLogonFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplLogonFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplNetErr","package":"druntime","parentType":"","signature":"NELOG_ReplNetErr","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplNetErr"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplMaxFiles","package":"druntime","parentType":"","signature":"NELOG_ReplMaxFiles","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplMaxFiles"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplMaxTreeDepth","package":"druntime","parentType":"","signature":"NELOG_ReplMaxTreeDepth","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplMaxTreeDepth"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplBadMsg","package":"druntime","parentType":"","signature":"NELOG_ReplBadMsg","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplBadMsg"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplSysErr","package":"druntime","parentType":"","signature":"NELOG_ReplSysErr","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplSysErr"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplUserLoged","package":"druntime","parentType":"","signature":"NELOG_ReplUserLoged","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplUserLoged"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplBadImport","package":"druntime","parentType":"","signature":"NELOG_ReplBadImport","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplBadImport"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplBadExport","package":"druntime","parentType":"","signature":"NELOG_ReplBadExport","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplBadExport"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplSignalFileErr","package":"druntime","parentType":"","signature":"NELOG_ReplSignalFileErr","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplSignalFileErr"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_DiskFT","package":"druntime","parentType":"","signature":"NELOG_DiskFT","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_DiskFT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_ReplAccessDenied","package":"druntime","parentType":"","signature":"NELOG_ReplAccessDenied","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_ReplAccessDenied"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedPrimary","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedPrimary","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedPrimary"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonPasswdSetFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonPasswdSetFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonPasswdSetFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonTrackingError","package":"druntime","parentType":"","signature":"NELOG_NetlogonTrackingError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonTrackingError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonSyncError","package":"druntime","parentType":"","signature":"NELOG_NetlogonSyncError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonSyncError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_PowerOut","package":"druntime","parentType":"","signature":"NELOG_UPS_PowerOut","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_PowerOut"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_Shutdown","package":"druntime","parentType":"","signature":"NELOG_UPS_Shutdown","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_Shutdown"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_CmdFileError","package":"druntime","parentType":"","signature":"NELOG_UPS_CmdFileError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_CmdFileError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_CannotOpenDriver","package":"druntime","parentType":"","signature":"NELOG_UPS_CannotOpenDriver","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_CannotOpenDriver"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_PowerBack","package":"druntime","parentType":"","signature":"NELOG_UPS_PowerBack","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_PowerBack"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_CmdFileConfig","package":"druntime","parentType":"","signature":"NELOG_UPS_CmdFileConfig","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_CmdFileConfig"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_UPS_CmdFileExec","package":"druntime","parentType":"","signature":"NELOG_UPS_CmdFileExec","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_UPS_CmdFileExec"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Missing_Parameter","package":"druntime","parentType":"","signature":"NELOG_Missing_Parameter","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Missing_Parameter"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Invalid_Config_Line","package":"druntime","parentType":"","signature":"NELOG_Invalid_Config_Line","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Invalid_Config_Line"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Invalid_Config_File","package":"druntime","parentType":"","signature":"NELOG_Invalid_Config_File","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Invalid_Config_File"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_File_Changed","package":"druntime","parentType":"","signature":"NELOG_File_Changed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_File_Changed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Files_Dont_Fit","package":"druntime","parentType":"","signature":"NELOG_Files_Dont_Fit","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Files_Dont_Fit"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Wrong_DLL_Version","package":"druntime","parentType":"","signature":"NELOG_Wrong_DLL_Version","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Wrong_DLL_Version"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_Error_in_DLL","package":"druntime","parentType":"","signature":"NELOG_Error_in_DLL","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_Error_in_DLL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_System_Error","package":"druntime","parentType":"","signature":"NELOG_System_Error","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_System_Error"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_FT_ErrLog_Too_Large","package":"druntime","parentType":"","signature":"NELOG_FT_ErrLog_Too_Large","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_FT_ErrLog_Too_Large"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_FT_Update_In_Progress","package":"druntime","parentType":"","signature":"NELOG_FT_Update_In_Progress","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_FT_Update_In_Progress"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_OEM_Code","package":"druntime","parentType":"","signature":"NELOG_OEM_Code","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_OEM_Code"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonSSIInitError","package":"druntime","parentType":"","signature":"NELOG_NetlogonSSIInitError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonSSIInitError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedToUpdateTrustList","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedToUpdateTrustList","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedToUpdateTrustList"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedToAddRpcInterface","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedToAddRpcInterface","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedToAddRpcInterface"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedToReadMailslot","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedToReadMailslot","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedToReadMailslot"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedToRegisterSC","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedToRegisterSC","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedToRegisterSC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonChangeLogCorrupt","package":"druntime","parentType":"","signature":"NELOG_NetlogonChangeLogCorrupt","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonChangeLogCorrupt"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedToCreateShare","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedToCreateShare","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedToCreateShare"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonDownLevelLogonFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonDownLevelLogonFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonDownLevelLogonFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonDownLevelLogoffFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonDownLevelLogoffFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonDownLevelLogoffFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonNTLogonFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonNTLogonFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonNTLogonFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonNTLogoffFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonNTLogoffFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonNTLogoffFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonPartialSyncCallSuccess","package":"druntime","parentType":"","signature":"NELOG_NetlogonPartialSyncCallSuccess","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonPartialSyncCallSuccess"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonPartialSyncCallFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonPartialSyncCallFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonPartialSyncCallFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFullSyncCallSuccess","package":"druntime","parentType":"","signature":"NELOG_NetlogonFullSyncCallSuccess","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFullSyncCallSuccess"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFullSyncCallFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonFullSyncCallFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFullSyncCallFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonPartialSyncSuccess","package":"druntime","parentType":"","signature":"NELOG_NetlogonPartialSyncSuccess","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonPartialSyncSuccess"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonPartialSyncFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonPartialSyncFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonPartialSyncFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFullSyncSuccess","package":"druntime","parentType":"","signature":"NELOG_NetlogonFullSyncSuccess","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFullSyncSuccess"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFullSyncFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonFullSyncFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFullSyncFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonAuthNoDomainController","package":"druntime","parentType":"","signature":"NELOG_NetlogonAuthNoDomainController","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonAuthNoDomainController"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonAuthNoTrustLsaSecret","package":"druntime","parentType":"","signature":"NELOG_NetlogonAuthNoTrustLsaSecret","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonAuthNoTrustLsaSecret"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonAuthNoTrustSamAccount","package":"druntime","parentType":"","signature":"NELOG_NetlogonAuthNoTrustSamAccount","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonAuthNoTrustSamAccount"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonServerAuthFailed","package":"druntime","parentType":"","signature":"NELOG_NetlogonServerAuthFailed","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonServerAuthFailed"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonServerAuthNoTrustSamAccount","package":"druntime","parentType":"","signature":"NELOG_NetlogonServerAuthNoTrustSamAccount","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonServerAuthNoTrustSamAccount"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_FailedToRegisterSC","package":"druntime","parentType":"","signature":"NELOG_FailedToRegisterSC","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_FailedToRegisterSC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_FailedToSetServiceStatus","package":"druntime","parentType":"","signature":"NELOG_FailedToSetServiceStatus","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_FailedToSetServiceStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_FailedToGetComputerName","package":"druntime","parentType":"","signature":"NELOG_FailedToGetComputerName","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_FailedToGetComputerName"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_DriverNotLoaded","package":"druntime","parentType":"","signature":"NELOG_DriverNotLoaded","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_DriverNotLoaded"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NoTranportLoaded","package":"druntime","parentType":"","signature":"NELOG_NoTranportLoaded","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NoTranportLoaded"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedDomainDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedDomainDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedDomainDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedGlobalGroupDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedGlobalGroupDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedGlobalGroupDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedLocalGroupDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedLocalGroupDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedLocalGroupDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedUserDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedUserDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedUserDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedPolicyDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedPolicyDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedPolicyDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedTrustedDomainDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedTrustedDomainDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedTrustedDomainDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedAccountDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedAccountDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedAccountDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonFailedSecretDelta","package":"druntime","parentType":"","signature":"NELOG_NetlogonFailedSecretDelta","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonFailedSecretDelta"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonSystemError","package":"druntime","parentType":"","signature":"NELOG_NetlogonSystemError","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonSystemError"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonDuplicateMachineAccounts","package":"druntime","parentType":"","signature":"NELOG_NetlogonDuplicateMachineAccounts","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonDuplicateMachineAccounts"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonTooManyGlobalGroups","package":"druntime","parentType":"","signature":"NELOG_NetlogonTooManyGlobalGroups","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonTooManyGlobalGroups"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonBrowserDriver","package":"druntime","parentType":"","signature":"NELOG_NetlogonBrowserDriver","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonBrowserDriver"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonAddNameFailure","package":"druntime","parentType":"","signature":"NELOG_NetlogonAddNameFailure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonAddNameFailure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplMessages","package":"druntime","parentType":"","signature":"NELOG_RplMessages","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplMessages"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplXnsBoot","package":"druntime","parentType":"","signature":"NELOG_RplXnsBoot","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplXnsBoot"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplSystem","package":"druntime","parentType":"","signature":"NELOG_RplSystem","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplSystem"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaTimeout","package":"druntime","parentType":"","signature":"NELOG_RplWkstaTimeout","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaTimeout"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaFileOpen","package":"druntime","parentType":"","signature":"NELOG_RplWkstaFileOpen","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaFileOpen"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaFileRead","package":"druntime","parentType":"","signature":"NELOG_RplWkstaFileRead","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaFileRead"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaMemory","package":"druntime","parentType":"","signature":"NELOG_RplWkstaMemory","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaMemory"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaFileChecksum","package":"druntime","parentType":"","signature":"NELOG_RplWkstaFileChecksum","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaFileChecksum"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaFileLineCount","package":"druntime","parentType":"","signature":"NELOG_RplWkstaFileLineCount","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaFileLineCount"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaBbcFile","package":"druntime","parentType":"","signature":"NELOG_RplWkstaBbcFile","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaBbcFile"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaFileSize","package":"druntime","parentType":"","signature":"NELOG_RplWkstaFileSize","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaFileSize"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaInternal","package":"druntime","parentType":"","signature":"NELOG_RplWkstaInternal","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaInternal"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaWrongVersion","package":"druntime","parentType":"","signature":"NELOG_RplWkstaWrongVersion","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaWrongVersion"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplWkstaNetwork","package":"druntime","parentType":"","signature":"NELOG_RplWkstaNetwork","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplWkstaNetwork"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplAdapterResource","package":"druntime","parentType":"","signature":"NELOG_RplAdapterResource","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplAdapterResource"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplFileCopy","package":"druntime","parentType":"","signature":"NELOG_RplFileCopy","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplFileCopy"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplFileDelete","package":"druntime","parentType":"","signature":"NELOG_RplFileDelete","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplFileDelete"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplFilePerms","package":"druntime","parentType":"","signature":"NELOG_RplFilePerms","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplFilePerms"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplCheckConfigs","package":"druntime","parentType":"","signature":"NELOG_RplCheckConfigs","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplCheckConfigs"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplCreateProfiles","package":"druntime","parentType":"","signature":"NELOG_RplCreateProfiles","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplCreateProfiles"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplRegistry","package":"druntime","parentType":"","signature":"NELOG_RplRegistry","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplRegistry"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplReplaceRPLDISK","package":"druntime","parentType":"","signature":"NELOG_RplReplaceRPLDISK","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplReplaceRPLDISK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplCheckSecurity","package":"druntime","parentType":"","signature":"NELOG_RplCheckSecurity","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplCheckSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplBackupDatabase","package":"druntime","parentType":"","signature":"NELOG_RplBackupDatabase","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplBackupDatabase"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplInitDatabase","package":"druntime","parentType":"","signature":"NELOG_RplInitDatabase","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplInitDatabase"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplRestoreDatabaseFailure","package":"druntime","parentType":"","signature":"NELOG_RplRestoreDatabaseFailure","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplRestoreDatabaseFailure"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplRestoreDatabaseSuccess","package":"druntime","parentType":"","signature":"NELOG_RplRestoreDatabaseSuccess","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplRestoreDatabaseSuccess"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_RplInitRestoredDatabase","package":"druntime","parentType":"","signature":"NELOG_RplInitRestoredDatabase","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_RplInitRestoredDatabase"},{"doc":"","kind":"variable","module":"core.sys.windows.lmerrlog","name":"NELOG_NetlogonSessionTypeWrong","package":"druntime","parentType":"","signature":"NELOG_NetlogonSessionTypeWrong","url":"/ddoc/druntime/core/sys/windows/lmerrlog.html#NELOG_NetlogonSessionTypeWrong"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmmsg","name":"core.sys.windows.lmmsg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmmsg.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmmsg","name":"NetMessageBufferSend","package":"druntime","parentType":"","signature":"NET_API_STATUS NetMessageBufferSend(LPCWSTR,  LPCWSTR,  LPCWSTR,  PBYTE,\n       DWORD)","url":"/ddoc/druntime/core/sys/windows/lmmsg/NetMessageBufferSend.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmmsg","name":"NetMessageNameAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetMessageNameAdd(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmmsg/NetMessageNameAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmmsg","name":"NetMessageNameDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetMessageNameDel(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmmsg/NetMessageNameDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmmsg","name":"NetMessageNameEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetMessageNameEnum(LPCWSTR,  DWORD,  PBYTE *,  DWORD,  PDWORD,\n       PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmmsg/NetMessageNameEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmmsg","name":"NetMessageNameGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetMessageNameGetInfo(LPCWSTR,  LPCWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmmsg/NetMessageNameGetInfo.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmmsg","name":"MSG_INFO_0","package":"druntime","parentType":"","signature":"MSG_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#MSG_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmmsg","name":"PMSG_INFO_0","package":"druntime","parentType":"","signature":"PMSG_INFO_0 = MSG_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#PMSG_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmmsg","name":"MSG_INFO_1","package":"druntime","parentType":"","signature":"MSG_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#MSG_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmmsg","name":"PMSG_INFO_1","package":"druntime","parentType":"","signature":"PMSG_INFO_1 = MSG_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#PMSG_INFO_1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmmsg","name":"MSGNAME_NOT_FORWARDED","package":"druntime","parentType":"","signature":"MSGNAME_NOT_FORWARDED","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#MSGNAME_NOT_FORWARDED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmmsg","name":"MSGNAME_FORWARDED_TO","package":"druntime","parentType":"","signature":"MSGNAME_FORWARDED_TO","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#MSGNAME_FORWARDED_TO"},{"doc":"","kind":"variable","module":"core.sys.windows.lmmsg","name":"MSGNAME_FORWARDED_FROM","package":"druntime","parentType":"","signature":"MSGNAME_FORWARDED_FROM","url":"/ddoc/druntime/core/sys/windows/lmmsg.html#MSGNAME_FORWARDED_FROM"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmremutl","name":"core.sys.windows.lmremutl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmremutl.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmremutl","name":"NetRemoteTOD","package":"druntime","parentType":"","signature":"NET_API_STATUS NetRemoteTOD(LPCWSTR,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmremutl/NetRemoteTOD.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmremutl","name":"NetRemoteComputerSupports","package":"druntime","parentType":"","signature":"NET_API_STATUS NetRemoteComputerSupports(LPCWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmremutl/NetRemoteComputerSupports.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmremutl","name":"RxRemoteApi","package":"druntime","parentType":"","signature":"NET_API_STATUS RxRemoteApi(DWORD,  LPCWSTR,  LPDESC,  LPDESC,  LPDESC,\n       LPDESC,  LPDESC,  LPDESC,  LPDESC,  DWORD, ...)","url":"/ddoc/druntime/core/sys/windows/lmremutl/RxRemoteApi.html"},{"doc":"","kind":"alias","module":"core.sys.windows.lmremutl","name":"DESC_CHAR","package":"druntime","parentType":"","signature":"DESC_CHAR = TCHAR","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#DESC_CHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.lmremutl","name":"LPDESC","package":"druntime","parentType":"","signature":"LPDESC = DESC_CHAR *","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#LPDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.lmremutl","name":"TIME_OF_DAY_INFO","package":"druntime","parentType":"","signature":"TIME_OF_DAY_INFO","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#TIME_OF_DAY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.lmremutl","name":"PTIME_OF_DAY_INFO","package":"druntime","parentType":"","signature":"PTIME_OF_DAY_INFO = TIME_OF_DAY_INFO *","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#PTIME_OF_DAY_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","package":"druntime","parentType":"","signature":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_REMOTE_ADMIN_PROTOCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_RPC","package":"druntime","parentType":"","signature":"SUPPORTS_RPC","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_RPC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_SAM_PROTOCOL","package":"druntime","parentType":"","signature":"SUPPORTS_SAM_PROTOCOL","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_SAM_PROTOCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_UNICODE","package":"druntime","parentType":"","signature":"SUPPORTS_UNICODE","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_LOCAL","package":"druntime","parentType":"","signature":"SUPPORTS_LOCAL","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"SUPPORTS_ANY","package":"druntime","parentType":"","signature":"SUPPORTS_ANY","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#SUPPORTS_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"NO_PERMISSION_REQUIRED","package":"druntime","parentType":"","signature":"NO_PERMISSION_REQUIRED","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#NO_PERMISSION_REQUIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"ALLOCATE_RESPONSE","package":"druntime","parentType":"","signature":"ALLOCATE_RESPONSE","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#ALLOCATE_RESPONSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmremutl","name":"USE_SPECIFIC_TRANSPORT","package":"druntime","parentType":"","signature":"USE_SPECIFIC_TRANSPORT","url":"/ddoc/druntime/core/sys/windows/lmremutl.html#USE_SPECIFIC_TRANSPORT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmrepl","name":"core.sys.windows.lmrepl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmrepl.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplGetInfo(LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplSetInfo(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirEnum(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirSetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirLock","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirLock(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplExportDirUnlock","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplExportDirUnlock(LPCWSTR, LPCWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplExportDirUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirAdd(LPCWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirDel(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirEnum(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirGetInfo(LPCWSTR, LPCWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirLock","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirLock(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmrepl","name":"NetReplImportDirUnlock","package":"druntime","parentType":"","signature":"NET_API_STATUS NetReplImportDirUnlock(LPCWSTR, LPCWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmrepl/NetReplImportDirUnlock.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_INFO_0","package":"druntime","parentType":"","signature":"REPL_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_INFO_0","package":"druntime","parentType":"","signature":"PREPL_INFO_0 = REPL_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_INFO_1000","package":"druntime","parentType":"","signature":"REPL_INFO_1000","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INFO_1000"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_INFO_1000","package":"druntime","parentType":"","signature":"PREPL_INFO_1000 = REPL_INFO_1000 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_INFO_1000"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_INFO_1001","package":"druntime","parentType":"","signature":"REPL_INFO_1001","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INFO_1001"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_INFO_1001","package":"druntime","parentType":"","signature":"PREPL_INFO_1001 = REPL_INFO_1001 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_INFO_1001"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_INFO_1002","package":"druntime","parentType":"","signature":"REPL_INFO_1002","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INFO_1002"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_INFO_1002","package":"druntime","parentType":"","signature":"PREPL_INFO_1002 = REPL_INFO_1002 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_INFO_1002"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_INFO_1003","package":"druntime","parentType":"","signature":"REPL_INFO_1003","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INFO_1003"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_INFO_1003","package":"druntime","parentType":"","signature":"PREPL_INFO_1003 = REPL_INFO_1003 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_INFO_1003"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_EDIR_INFO_0","package":"druntime","parentType":"","signature":"REPL_EDIR_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EDIR_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_EDIR_INFO_0","package":"druntime","parentType":"","signature":"PREPL_EDIR_INFO_0 = REPL_EDIR_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_EDIR_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_EDIR_INFO_1","package":"druntime","parentType":"","signature":"REPL_EDIR_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EDIR_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_EDIR_INFO_1","package":"druntime","parentType":"","signature":"PREPL_EDIR_INFO_1 = REPL_EDIR_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_EDIR_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_EDIR_INFO_2","package":"druntime","parentType":"","signature":"REPL_EDIR_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EDIR_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_EDIR_INFO_2","package":"druntime","parentType":"","signature":"PREPL_EDIR_INFO_2 = REPL_EDIR_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_EDIR_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_EDIR_INFO_1000","package":"druntime","parentType":"","signature":"REPL_EDIR_INFO_1000","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EDIR_INFO_1000"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_EDIR_INFO_1000","package":"druntime","parentType":"","signature":"PREPL_EDIR_INFO_1000 = REPL_EDIR_INFO_1000 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_EDIR_INFO_1000"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_EDIR_INFO_1001","package":"druntime","parentType":"","signature":"REPL_EDIR_INFO_1001","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EDIR_INFO_1001"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_EDIR_INFO_1001","package":"druntime","parentType":"","signature":"PREPL_EDIR_INFO_1001 = REPL_EDIR_INFO_1001 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_EDIR_INFO_1001"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_IDIR_INFO_0","package":"druntime","parentType":"","signature":"REPL_IDIR_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_IDIR_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_IDIR_INFO_0","package":"druntime","parentType":"","signature":"PREPL_IDIR_INFO_0 = REPL_IDIR_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_IDIR_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmrepl","name":"REPL_IDIR_INFO_1","package":"druntime","parentType":"","signature":"REPL_IDIR_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_IDIR_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmrepl","name":"PREPL_IDIR_INFO_1","package":"druntime","parentType":"","signature":"PREPL_IDIR_INFO_1 = REPL_IDIR_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#PREPL_IDIR_INFO_1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_ROLE_EXPORT","package":"druntime","parentType":"","signature":"REPL_ROLE_EXPORT","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_ROLE_EXPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_ROLE_IMPORT","package":"druntime","parentType":"","signature":"REPL_ROLE_IMPORT","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_ROLE_IMPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_ROLE_BOTH","package":"druntime","parentType":"","signature":"REPL_ROLE_BOTH","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_ROLE_BOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_INTERVAL_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_INTERVAL_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INTERVAL_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_PULSE_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_PULSE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_PULSE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_GUARDTIME_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_GUARDTIME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_GUARDTIME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_RANDOM_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_RANDOM_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_RANDOM_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_UNLOCK_NOFORCE","package":"druntime","parentType":"","signature":"REPL_UNLOCK_NOFORCE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_UNLOCK_NOFORCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_UNLOCK_FORCE","package":"druntime","parentType":"","signature":"REPL_UNLOCK_FORCE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_UNLOCK_FORCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_STATE_OK","package":"druntime","parentType":"","signature":"REPL_STATE_OK","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_STATE_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_STATE_NO_MASTER","package":"druntime","parentType":"","signature":"REPL_STATE_NO_MASTER","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_STATE_NO_MASTER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_STATE_NO_SYNC","package":"druntime","parentType":"","signature":"REPL_STATE_NO_SYNC","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_STATE_NO_SYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_STATE_NEVER_REPLICATED","package":"druntime","parentType":"","signature":"REPL_STATE_NEVER_REPLICATED","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_STATE_NEVER_REPLICATED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_INTEGRITY_FILE","package":"druntime","parentType":"","signature":"REPL_INTEGRITY_FILE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INTEGRITY_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_INTEGRITY_TREE","package":"druntime","parentType":"","signature":"REPL_INTEGRITY_TREE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_INTEGRITY_TREE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_EXTENT_FILE","package":"druntime","parentType":"","signature":"REPL_EXTENT_FILE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EXTENT_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_EXTENT_TREE","package":"druntime","parentType":"","signature":"REPL_EXTENT_TREE","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EXTENT_TREE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_EXPORT_INTEGRITY_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_EXPORT_INTEGRITY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EXPORT_INTEGRITY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmrepl","name":"REPL_EXPORT_EXTENT_INFOLEVEL","package":"druntime","parentType":"","signature":"REPL_EXPORT_EXTENT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmrepl.html#REPL_EXPORT_EXTENT_INFOLEVEL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmserver","name":"core.sys.windows.lmserver","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmserver.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerEnum(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, DWORD, LPCWSTR, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerEnumEx","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerEnumEx(LPCWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, DWORD, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerEnumEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerGetInfo(LPWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerSetInfo(LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerSetInfoCommandLine","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerSetInfoCommandLine(WORD, LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerSetInfoCommandLine.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerDiskEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerDiskEnum(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerDiskEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerComputerNameAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerComputerNameAdd(LPWSTR, LPWSTR, LPWSTR)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerComputerNameAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerComputerNameDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerComputerNameDel(LPWSTR, LPWSTR)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerComputerNameDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerTransportAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerTransportAdd(LPWSTR, DWORD, PBYTE)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerTransportAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerTransportAddEx","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerTransportAddEx(LPWSTR, DWORD, PBYTE)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerTransportAddEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerTransportDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerTransportDel(LPWSTR, DWORD, PBYTE)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerTransportDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"NetServerTransportEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServerTransportEnum(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmserver/NetServerTransportEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmserver","name":"SetServiceBits","package":"druntime","parentType":"","signature":"BOOL SetServiceBits(SERVICE_STATUS_HANDLE, DWORD, BOOL, BOOL)","url":"/ddoc/druntime/core/sys/windows/lmserver/SetServiceBits.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_100","package":"druntime","parentType":"","signature":"SERVER_INFO_100","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_100"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_100","package":"druntime","parentType":"","signature":"PSERVER_INFO_100 = SERVER_INFO_100 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_100"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_101","package":"druntime","parentType":"","signature":"SERVER_INFO_101","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_101"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_101","package":"druntime","parentType":"","signature":"PSERVER_INFO_101 = SERVER_INFO_101 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_101"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_102","package":"druntime","parentType":"","signature":"SERVER_INFO_102","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_102"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_102","package":"druntime","parentType":"","signature":"PSERVER_INFO_102 = SERVER_INFO_102 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_102"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_402","package":"druntime","parentType":"","signature":"SERVER_INFO_402","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_402"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_402","package":"druntime","parentType":"","signature":"PSERVER_INFO_402 = SERVER_INFO_402 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_402"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_403","package":"druntime","parentType":"","signature":"SERVER_INFO_403","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_403"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_403","package":"druntime","parentType":"","signature":"PSERVER_INFO_403 = SERVER_INFO_403 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_403"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_502","package":"druntime","parentType":"","signature":"SERVER_INFO_502","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_502"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_502","package":"druntime","parentType":"","signature":"PSERVER_INFO_502 = SERVER_INFO_502 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_502"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_503","package":"druntime","parentType":"","signature":"SERVER_INFO_503","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_503"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_503","package":"druntime","parentType":"","signature":"PSERVER_INFO_503 = SERVER_INFO_503 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_503"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_599","package":"druntime","parentType":"","signature":"SERVER_INFO_599","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_599"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_599","package":"druntime","parentType":"","signature":"PSERVER_INFO_599 = SERVER_INFO_599 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_599"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_598","package":"druntime","parentType":"","signature":"SERVER_INFO_598","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_598"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_598","package":"druntime","parentType":"","signature":"PSERVER_INFO_598 = SERVER_INFO_598 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_598"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1005","package":"druntime","parentType":"","signature":"SERVER_INFO_1005","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1005"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1005","package":"druntime","parentType":"","signature":"PSERVER_INFO_1005 = SERVER_INFO_1005 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1005"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1107","package":"druntime","parentType":"","signature":"SERVER_INFO_1107","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1107"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1107","package":"druntime","parentType":"","signature":"PSERVER_INFO_1107 = SERVER_INFO_1107 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1107"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1010","package":"druntime","parentType":"","signature":"SERVER_INFO_1010","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1010"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1010","package":"druntime","parentType":"","signature":"PSERVER_INFO_1010 = SERVER_INFO_1010 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1010"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1016","package":"druntime","parentType":"","signature":"SERVER_INFO_1016","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1016"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1016","package":"druntime","parentType":"","signature":"PSERVER_INFO_1016 = SERVER_INFO_1016 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1016"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1017","package":"druntime","parentType":"","signature":"SERVER_INFO_1017","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1017"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1017","package":"druntime","parentType":"","signature":"PSERVER_INFO_1017 = SERVER_INFO_1017 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1017"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1018","package":"druntime","parentType":"","signature":"SERVER_INFO_1018","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1018"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1018","package":"druntime","parentType":"","signature":"PSERVER_INFO_1018 = SERVER_INFO_1018 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1018"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1501","package":"druntime","parentType":"","signature":"SERVER_INFO_1501","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1501"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1501","package":"druntime","parentType":"","signature":"PSERVER_INFO_1501 = SERVER_INFO_1501 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1501"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1502","package":"druntime","parentType":"","signature":"SERVER_INFO_1502","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1502"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1502","package":"druntime","parentType":"","signature":"PSERVER_INFO_1502 = SERVER_INFO_1502 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1502"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1503","package":"druntime","parentType":"","signature":"SERVER_INFO_1503","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1503"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1503","package":"druntime","parentType":"","signature":"PSERVER_INFO_1503 = SERVER_INFO_1503 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1503"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1506","package":"druntime","parentType":"","signature":"SERVER_INFO_1506","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1506"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1506","package":"druntime","parentType":"","signature":"PSERVER_INFO_1506 = SERVER_INFO_1506 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1506"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1509","package":"druntime","parentType":"","signature":"SERVER_INFO_1509","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1509"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1509","package":"druntime","parentType":"","signature":"PSERVER_INFO_1509 = SERVER_INFO_1509 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1509"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1510","package":"druntime","parentType":"","signature":"SERVER_INFO_1510","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1510"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1510","package":"druntime","parentType":"","signature":"PSERVER_INFO_1510 = SERVER_INFO_1510 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1510"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1511","package":"druntime","parentType":"","signature":"SERVER_INFO_1511","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1511"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1511","package":"druntime","parentType":"","signature":"PSERVER_INFO_1511 = SERVER_INFO_1511 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1511"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1512","package":"druntime","parentType":"","signature":"SERVER_INFO_1512","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1512"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1512","package":"druntime","parentType":"","signature":"PSERVER_INFO_1512 = SERVER_INFO_1512 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1512"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1513","package":"druntime","parentType":"","signature":"SERVER_INFO_1513","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1513"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1513","package":"druntime","parentType":"","signature":"PSERVER_INFO_1513 = SERVER_INFO_1513 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1513"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1514","package":"druntime","parentType":"","signature":"SERVER_INFO_1514","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1514"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1514","package":"druntime","parentType":"","signature":"PSERVER_INFO_1514 = SERVER_INFO_1514 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1514"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1515","package":"druntime","parentType":"","signature":"SERVER_INFO_1515","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1515"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1515","package":"druntime","parentType":"","signature":"PSERVER_INFO_1515 = SERVER_INFO_1515 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1515"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1516","package":"druntime","parentType":"","signature":"SERVER_INFO_1516","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1516"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1516","package":"druntime","parentType":"","signature":"PSERVER_INFO_1516 = SERVER_INFO_1516 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1516"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1518","package":"druntime","parentType":"","signature":"SERVER_INFO_1518","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1518"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1518","package":"druntime","parentType":"","signature":"PSERVER_INFO_1518 = SERVER_INFO_1518 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1518"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1520","package":"druntime","parentType":"","signature":"SERVER_INFO_1520","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1520"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1520","package":"druntime","parentType":"","signature":"PSERVER_INFO_1520 = SERVER_INFO_1520 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1520"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1521","package":"druntime","parentType":"","signature":"SERVER_INFO_1521","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1521"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1521","package":"druntime","parentType":"","signature":"PSERVER_INFO_1521 = SERVER_INFO_1521 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1521"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1522","package":"druntime","parentType":"","signature":"SERVER_INFO_1522","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1522"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1522","package":"druntime","parentType":"","signature":"PSERVER_INFO_1522 = SERVER_INFO_1522 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1522"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1523","package":"druntime","parentType":"","signature":"SERVER_INFO_1523","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1523"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1523","package":"druntime","parentType":"","signature":"PSERVER_INFO_1523 = SERVER_INFO_1523 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1523"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1524","package":"druntime","parentType":"","signature":"SERVER_INFO_1524","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1524"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1524","package":"druntime","parentType":"","signature":"PSERVER_INFO_1524 = SERVER_INFO_1524 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1524"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1525","package":"druntime","parentType":"","signature":"SERVER_INFO_1525","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1525"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1525","package":"druntime","parentType":"","signature":"PSERVER_INFO_1525 = SERVER_INFO_1525 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1525"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1528","package":"druntime","parentType":"","signature":"SERVER_INFO_1528","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1528"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1528","package":"druntime","parentType":"","signature":"PSERVER_INFO_1528 = SERVER_INFO_1528 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1528"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1529","package":"druntime","parentType":"","signature":"SERVER_INFO_1529","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1529"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1529","package":"druntime","parentType":"","signature":"PSERVER_INFO_1529 = SERVER_INFO_1529 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1529"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1530","package":"druntime","parentType":"","signature":"SERVER_INFO_1530","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1530"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1530","package":"druntime","parentType":"","signature":"PSERVER_INFO_1530 = SERVER_INFO_1530 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1530"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1533","package":"druntime","parentType":"","signature":"SERVER_INFO_1533","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1533"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1533","package":"druntime","parentType":"","signature":"PSERVER_INFO_1533 = SERVER_INFO_1533 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1533"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1534","package":"druntime","parentType":"","signature":"SERVER_INFO_1534","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1534"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1534","package":"druntime","parentType":"","signature":"PSERVER_INFO_1534 = SERVER_INFO_1534 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1534"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1535","package":"druntime","parentType":"","signature":"SERVER_INFO_1535","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1535"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1535","package":"druntime","parentType":"","signature":"PSERVER_INFO_1535 = SERVER_INFO_1535 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1535"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1536","package":"druntime","parentType":"","signature":"SERVER_INFO_1536","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1536"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1536","package":"druntime","parentType":"","signature":"PSERVER_INFO_1536 = SERVER_INFO_1536 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1536"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1537","package":"druntime","parentType":"","signature":"SERVER_INFO_1537","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1537"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1537","package":"druntime","parentType":"","signature":"PSERVER_INFO_1537 = SERVER_INFO_1537 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1537"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1538","package":"druntime","parentType":"","signature":"SERVER_INFO_1538","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1538"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1538","package":"druntime","parentType":"","signature":"PSERVER_INFO_1538 = SERVER_INFO_1538 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1538"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1539","package":"druntime","parentType":"","signature":"SERVER_INFO_1539","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1539"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1539","package":"druntime","parentType":"","signature":"PSERVER_INFO_1539 = SERVER_INFO_1539 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1539"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1540","package":"druntime","parentType":"","signature":"SERVER_INFO_1540","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1540"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1540","package":"druntime","parentType":"","signature":"PSERVER_INFO_1540 = SERVER_INFO_1540 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1540"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1541","package":"druntime","parentType":"","signature":"SERVER_INFO_1541","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1541"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1541","package":"druntime","parentType":"","signature":"PSERVER_INFO_1541 = SERVER_INFO_1541 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1541"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1542","package":"druntime","parentType":"","signature":"SERVER_INFO_1542","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1542"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1542","package":"druntime","parentType":"","signature":"PSERVER_INFO_1542 = SERVER_INFO_1542 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1542"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1543","package":"druntime","parentType":"","signature":"SERVER_INFO_1543","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1543"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1543","package":"druntime","parentType":"","signature":"PSERVER_INFO_1543 = SERVER_INFO_1543 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1543"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1544","package":"druntime","parentType":"","signature":"SERVER_INFO_1544","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1544"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1544","package":"druntime","parentType":"","signature":"PSERVER_INFO_1544 = SERVER_INFO_1544 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1544"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1545","package":"druntime","parentType":"","signature":"SERVER_INFO_1545","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1545"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1545","package":"druntime","parentType":"","signature":"PSERVER_INFO_1545 = SERVER_INFO_1545 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1545"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1546","package":"druntime","parentType":"","signature":"SERVER_INFO_1546","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1546"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1546","package":"druntime","parentType":"","signature":"PSERVER_INFO_1546 = SERVER_INFO_1546 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1546"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1547","package":"druntime","parentType":"","signature":"SERVER_INFO_1547","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1547"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1547","package":"druntime","parentType":"","signature":"PSERVER_INFO_1547 = SERVER_INFO_1547 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1547"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1548","package":"druntime","parentType":"","signature":"SERVER_INFO_1548","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1548"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1548","package":"druntime","parentType":"","signature":"PSERVER_INFO_1548 = SERVER_INFO_1548 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1548"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1549","package":"druntime","parentType":"","signature":"SERVER_INFO_1549","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1549"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1549","package":"druntime","parentType":"","signature":"PSERVER_INFO_1549 = SERVER_INFO_1549 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1549"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1550","package":"druntime","parentType":"","signature":"SERVER_INFO_1550","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1550"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1550","package":"druntime","parentType":"","signature":"PSERVER_INFO_1550 = SERVER_INFO_1550 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1550"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1552","package":"druntime","parentType":"","signature":"SERVER_INFO_1552","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1552"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1552","package":"druntime","parentType":"","signature":"PSERVER_INFO_1552 = SERVER_INFO_1552 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1552"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1553","package":"druntime","parentType":"","signature":"SERVER_INFO_1553","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1553"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1553","package":"druntime","parentType":"","signature":"PSERVER_INFO_1553 = SERVER_INFO_1553 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1553"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1554","package":"druntime","parentType":"","signature":"SERVER_INFO_1554","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1554"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1554","package":"druntime","parentType":"","signature":"PSERVER_INFO_1554 = SERVER_INFO_1554 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1554"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1555","package":"druntime","parentType":"","signature":"SERVER_INFO_1555","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1555"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1555","package":"druntime","parentType":"","signature":"PSERVER_INFO_1555 = SERVER_INFO_1555 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1555"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1556","package":"druntime","parentType":"","signature":"SERVER_INFO_1556","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1556"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1556","package":"druntime","parentType":"","signature":"PSERVER_INFO_1556 = SERVER_INFO_1556 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1556"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1557","package":"druntime","parentType":"","signature":"SERVER_INFO_1557","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1557"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1557","package":"druntime","parentType":"","signature":"PSERVER_INFO_1557 = SERVER_INFO_1557 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1557"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1560","package":"druntime","parentType":"","signature":"SERVER_INFO_1560","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1560"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1560","package":"druntime","parentType":"","signature":"PSERVER_INFO_1560 = SERVER_INFO_1560 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1560"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1561","package":"druntime","parentType":"","signature":"SERVER_INFO_1561","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1561"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1561","package":"druntime","parentType":"","signature":"PSERVER_INFO_1561 = SERVER_INFO_1561 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1561"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1562","package":"druntime","parentType":"","signature":"SERVER_INFO_1562","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1562"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1562","package":"druntime","parentType":"","signature":"PSERVER_INFO_1562 = SERVER_INFO_1562 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1562"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1563","package":"druntime","parentType":"","signature":"SERVER_INFO_1563","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1563"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1563","package":"druntime","parentType":"","signature":"PSERVER_INFO_1563 = SERVER_INFO_1563 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1563"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1564","package":"druntime","parentType":"","signature":"SERVER_INFO_1564","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1564"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1564","package":"druntime","parentType":"","signature":"PSERVER_INFO_1564 = SERVER_INFO_1564 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1564"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1565","package":"druntime","parentType":"","signature":"SERVER_INFO_1565","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1565"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1565","package":"druntime","parentType":"","signature":"PSERVER_INFO_1565 = SERVER_INFO_1565 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1565"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1566","package":"druntime","parentType":"","signature":"SERVER_INFO_1566","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1566"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1566","package":"druntime","parentType":"","signature":"PSERVER_INFO_1566 = SERVER_INFO_1566 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1566"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1567","package":"druntime","parentType":"","signature":"SERVER_INFO_1567","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1567"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1567","package":"druntime","parentType":"","signature":"PSERVER_INFO_1567 = SERVER_INFO_1567 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1567"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1568","package":"druntime","parentType":"","signature":"SERVER_INFO_1568","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1568"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1568","package":"druntime","parentType":"","signature":"PSERVER_INFO_1568 = SERVER_INFO_1568 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1568"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1569","package":"druntime","parentType":"","signature":"SERVER_INFO_1569","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1569"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1569","package":"druntime","parentType":"","signature":"PSERVER_INFO_1569 = SERVER_INFO_1569 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1569"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1570","package":"druntime","parentType":"","signature":"SERVER_INFO_1570","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1570"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1570","package":"druntime","parentType":"","signature":"PSERVER_INFO_1570 = SERVER_INFO_1570 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1570"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1571","package":"druntime","parentType":"","signature":"SERVER_INFO_1571","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1571"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1571","package":"druntime","parentType":"","signature":"PSERVER_INFO_1571 = SERVER_INFO_1571 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1571"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1572","package":"druntime","parentType":"","signature":"SERVER_INFO_1572","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1572"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1572","package":"druntime","parentType":"","signature":"PSERVER_INFO_1572 = SERVER_INFO_1572 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1572"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1573","package":"druntime","parentType":"","signature":"SERVER_INFO_1573","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1573"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1573","package":"druntime","parentType":"","signature":"PSERVER_INFO_1573 = SERVER_INFO_1573 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1573"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1574","package":"druntime","parentType":"","signature":"SERVER_INFO_1574","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1574"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1574","package":"druntime","parentType":"","signature":"PSERVER_INFO_1574 = SERVER_INFO_1574 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1574"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1575","package":"druntime","parentType":"","signature":"SERVER_INFO_1575","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1575"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1575","package":"druntime","parentType":"","signature":"PSERVER_INFO_1575 = SERVER_INFO_1575 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1575"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1576","package":"druntime","parentType":"","signature":"SERVER_INFO_1576","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1576"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1576","package":"druntime","parentType":"","signature":"PSERVER_INFO_1576 = SERVER_INFO_1576 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1576"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1577","package":"druntime","parentType":"","signature":"SERVER_INFO_1577","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1577"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1577","package":"druntime","parentType":"","signature":"PSERVER_INFO_1577 = SERVER_INFO_1577 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1577"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1578","package":"druntime","parentType":"","signature":"SERVER_INFO_1578","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1578"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1578","package":"druntime","parentType":"","signature":"PSERVER_INFO_1578 = SERVER_INFO_1578 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1578"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1579","package":"druntime","parentType":"","signature":"SERVER_INFO_1579","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1579"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1579","package":"druntime","parentType":"","signature":"PSERVER_INFO_1579 = SERVER_INFO_1579 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1579"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1580","package":"druntime","parentType":"","signature":"SERVER_INFO_1580","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1580"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1580","package":"druntime","parentType":"","signature":"PSERVER_INFO_1580 = SERVER_INFO_1580 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1580"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1581","package":"druntime","parentType":"","signature":"SERVER_INFO_1581","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1581"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1581","package":"druntime","parentType":"","signature":"PSERVER_INFO_1581 = SERVER_INFO_1581 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1581"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1582","package":"druntime","parentType":"","signature":"SERVER_INFO_1582","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1582"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1582","package":"druntime","parentType":"","signature":"PSERVER_INFO_1582 = SERVER_INFO_1582 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1582"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1583","package":"druntime","parentType":"","signature":"SERVER_INFO_1583","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1583"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1583","package":"druntime","parentType":"","signature":"PSERVER_INFO_1583 = SERVER_INFO_1583 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1583"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1584","package":"druntime","parentType":"","signature":"SERVER_INFO_1584","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1584"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1584","package":"druntime","parentType":"","signature":"PSERVER_INFO_1584 = SERVER_INFO_1584 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1584"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1585","package":"druntime","parentType":"","signature":"SERVER_INFO_1585","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1585"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1585","package":"druntime","parentType":"","signature":"PSERVER_INFO_1585 = SERVER_INFO_1585 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1585"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_INFO_1586","package":"druntime","parentType":"","signature":"SERVER_INFO_1586","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_INFO_1586"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_INFO_1586","package":"druntime","parentType":"","signature":"PSERVER_INFO_1586 = SERVER_INFO_1586 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_INFO_1586"},{"doc":"","kind":"struct","module":"core.sys.windows.lmserver","name":"SERVER_TRANSPORT_INFO_0","package":"druntime","parentType":"","signature":"SERVER_TRANSPORT_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SERVER_TRANSPORT_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmserver","name":"PSERVER_TRANSPORT_INFO_0","package":"druntime","parentType":"","signature":"PSERVER_TRANSPORT_INFO_0 = SERVER_TRANSPORT_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmserver.html#PSERVER_TRANSPORT_INFO_0"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SVI1_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SVI1_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SVI1_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SVI2_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SVI2_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SVI2_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SVI3_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SVI3_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SVI3_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAX_CMD_LEN","package":"druntime","parentType":"","signature":"SV_MAX_CMD_LEN","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAX_CMD_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SW_AUTOPROF_LOAD_MASK","package":"druntime","parentType":"","signature":"SW_AUTOPROF_LOAD_MASK","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SW_AUTOPROF_LOAD_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SW_AUTOPROF_SAVE_MASK","package":"druntime","parentType":"","signature":"SW_AUTOPROF_SAVE_MASK","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SW_AUTOPROF_SAVE_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAX_SRV_HEUR_LEN","package":"druntime","parentType":"","signature":"SV_MAX_SRV_HEUR_LEN","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAX_SRV_HEUR_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_USERS_PER_LICENSE","package":"druntime","parentType":"","signature":"SV_USERS_PER_LICENSE","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_USERS_PER_LICENSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PLATFORM_ID_OS2","package":"druntime","parentType":"","signature":"SV_PLATFORM_ID_OS2","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PLATFORM_ID_OS2"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PLATFORM_ID_NT","package":"druntime","parentType":"","signature":"SV_PLATFORM_ID_NT","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PLATFORM_ID_NT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"MAJOR_VERSION_MASK","package":"druntime","parentType":"","signature":"MAJOR_VERSION_MASK","url":"/ddoc/druntime/core/sys/windows/lmserver.html#MAJOR_VERSION_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_WORKSTATION","package":"druntime","parentType":"","signature":"SV_TYPE_WORKSTATION","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_WORKSTATION"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SQLSERVER","package":"druntime","parentType":"","signature":"SV_TYPE_SQLSERVER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SQLSERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DOMAIN_CTRL","package":"druntime","parentType":"","signature":"SV_TYPE_DOMAIN_CTRL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DOMAIN_CTRL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DOMAIN_BAKCTRL","package":"druntime","parentType":"","signature":"SV_TYPE_DOMAIN_BAKCTRL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DOMAIN_BAKCTRL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_TIME_SOURCE","package":"druntime","parentType":"","signature":"SV_TYPE_TIME_SOURCE","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_TIME_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_AFP","package":"druntime","parentType":"","signature":"SV_TYPE_AFP","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_AFP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_NOVELL","package":"druntime","parentType":"","signature":"SV_TYPE_NOVELL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_NOVELL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DOMAIN_MEMBER","package":"druntime","parentType":"","signature":"SV_TYPE_DOMAIN_MEMBER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DOMAIN_MEMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_PRINTQ_SERVER","package":"druntime","parentType":"","signature":"SV_TYPE_PRINTQ_SERVER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_PRINTQ_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DIALIN_SERVER","package":"druntime","parentType":"","signature":"SV_TYPE_DIALIN_SERVER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DIALIN_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_XENIX_SERVER","package":"druntime","parentType":"","signature":"SV_TYPE_XENIX_SERVER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_XENIX_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER_UNIX","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER_UNIX","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER_UNIX"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_NT","package":"druntime","parentType":"","signature":"SV_TYPE_NT","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_NT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_WFW","package":"druntime","parentType":"","signature":"SV_TYPE_WFW","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_WFW"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER_MFPN","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER_MFPN","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER_MFPN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER_NT","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER_NT","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER_NT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_POTENTIAL_BROWSER","package":"druntime","parentType":"","signature":"SV_TYPE_POTENTIAL_BROWSER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_POTENTIAL_BROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_BACKUP_BROWSER","package":"druntime","parentType":"","signature":"SV_TYPE_BACKUP_BROWSER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_BACKUP_BROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_MASTER_BROWSER","package":"druntime","parentType":"","signature":"SV_TYPE_MASTER_BROWSER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_MASTER_BROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DOMAIN_MASTER","package":"druntime","parentType":"","signature":"SV_TYPE_DOMAIN_MASTER","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DOMAIN_MASTER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER_OSF","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER_OSF","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER_OSF"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_SERVER_VMS","package":"druntime","parentType":"","signature":"SV_TYPE_SERVER_VMS","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_SERVER_VMS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_WINDOWS","package":"druntime","parentType":"","signature":"SV_TYPE_WINDOWS","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_WINDOWS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_ALTERNATE_XPORT","package":"druntime","parentType":"","signature":"SV_TYPE_ALTERNATE_XPORT","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_ALTERNATE_XPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_LOCAL_LIST_ONLY","package":"druntime","parentType":"","signature":"SV_TYPE_LOCAL_LIST_ONLY","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_LOCAL_LIST_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_DOMAIN_ENUM","package":"druntime","parentType":"","signature":"SV_TYPE_DOMAIN_ENUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_DOMAIN_ENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_ALL","package":"druntime","parentType":"","signature":"SV_TYPE_ALL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NODISC","package":"druntime","parentType":"","signature":"SV_NODISC","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NODISC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_USERSECURITY","package":"druntime","parentType":"","signature":"SV_USERSECURITY","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_USERSECURITY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARESECURITY","package":"druntime","parentType":"","signature":"SV_SHARESECURITY","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARESECURITY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_HIDDEN","package":"druntime","parentType":"","signature":"SV_HIDDEN","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_VISIBLE","package":"druntime","parentType":"","signature":"SV_VISIBLE","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PLATFORM_ID_PARMNUM","package":"druntime","parentType":"","signature":"SV_PLATFORM_ID_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PLATFORM_ID_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NAME_PARMNUM","package":"druntime","parentType":"","signature":"SV_NAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_VERSION_MAJOR_PARMNUM","package":"druntime","parentType":"","signature":"SV_VERSION_MAJOR_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_VERSION_MAJOR_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_VERSION_MINOR_PARMNUM","package":"druntime","parentType":"","signature":"SV_VERSION_MINOR_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_VERSION_MINOR_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TYPE_PARMNUM","package":"druntime","parentType":"","signature":"SV_TYPE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TYPE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_COMMENT_PARMNUM","package":"druntime","parentType":"","signature":"SV_COMMENT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_COMMENT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_USERS_PARMNUM","package":"druntime","parentType":"","signature":"SV_USERS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_USERS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DISC_PARMNUM","package":"druntime","parentType":"","signature":"SV_DISC_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DISC_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_HIDDEN_PARMNUM","package":"druntime","parentType":"","signature":"SV_HIDDEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_HIDDEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ANNOUNCE_PARMNUM","package":"druntime","parentType":"","signature":"SV_ANNOUNCE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ANNOUNCE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ANNDELTA_PARMNUM","package":"druntime","parentType":"","signature":"SV_ANNDELTA_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ANNDELTA_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_USERPATH_PARMNUM","package":"druntime","parentType":"","signature":"SV_USERPATH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_USERPATH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ULIST_MTIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_ULIST_MTIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ULIST_MTIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_GLIST_MTIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_GLIST_MTIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_GLIST_MTIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ALIST_MTIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_ALIST_MTIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ALIST_MTIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ALERTS_PARMNUM","package":"druntime","parentType":"","signature":"SV_ALERTS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ALERTS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SECURITY_PARMNUM","package":"druntime","parentType":"","signature":"SV_SECURITY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SECURITY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NUMADMIN_PARMNUM","package":"druntime","parentType":"","signature":"SV_NUMADMIN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NUMADMIN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LANMASK_PARMNUM","package":"druntime","parentType":"","signature":"SV_LANMASK_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LANMASK_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_GUESTACC_PARMNUM","package":"druntime","parentType":"","signature":"SV_GUESTACC_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_GUESTACC_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CHDEVQ_PARMNUM","package":"druntime","parentType":"","signature":"SV_CHDEVQ_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CHDEVQ_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CHDEVJOBS_PARMNUM","package":"druntime","parentType":"","signature":"SV_CHDEVJOBS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CHDEVJOBS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CONNECTIONS_PARMNUM","package":"druntime","parentType":"","signature":"SV_CONNECTIONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CONNECTIONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARES_PARMNUM","package":"druntime","parentType":"","signature":"SV_SHARES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPENFILES_PARMNUM","package":"druntime","parentType":"","signature":"SV_OPENFILES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPENFILES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSREQS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SESSREQS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSREQS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ACTIVELOCKS_PARMNUM","package":"druntime","parentType":"","signature":"SV_ACTIVELOCKS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ACTIVELOCKS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NUMREQBUF_PARMNUM","package":"druntime","parentType":"","signature":"SV_NUMREQBUF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NUMREQBUF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NUMBIGBUF_PARMNUM","package":"druntime","parentType":"","signature":"SV_NUMBIGBUF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NUMBIGBUF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NUMFILETASKS_PARMNUM","package":"druntime","parentType":"","signature":"SV_NUMFILETASKS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NUMFILETASKS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ALERTSCHED_PARMNUM","package":"druntime","parentType":"","signature":"SV_ALERTSCHED_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ALERTSCHED_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ERRORALERT_PARMNUM","package":"druntime","parentType":"","signature":"SV_ERRORALERT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ERRORALERT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOGONALERT_PARMNUM","package":"druntime","parentType":"","signature":"SV_LOGONALERT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOGONALERT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ACCESSALERT_PARMNUM","package":"druntime","parentType":"","signature":"SV_ACCESSALERT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ACCESSALERT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DISKALERT_PARMNUM","package":"druntime","parentType":"","signature":"SV_DISKALERT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DISKALERT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NETIOALERT_PARMNUM","package":"druntime","parentType":"","signature":"SV_NETIOALERT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NETIOALERT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXAUDITSZ_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXAUDITSZ_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXAUDITSZ_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SRVHEURISTICS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SRVHEURISTICS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SRVHEURISTICS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSOPENS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SESSOPENS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSOPENS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSVCS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SESSVCS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSVCS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPENSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_OPENSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPENSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SIZREQBUF_PARMNUM","package":"druntime","parentType":"","signature":"SV_SIZREQBUF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SIZREQBUF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITWORKITEMS_PARMNUM","package":"druntime","parentType":"","signature":"SV_INITWORKITEMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITWORKITEMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXWORKITEMS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXWORKITEMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXWORKITEMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_RAWWORKITEMS_PARMNUM","package":"druntime","parentType":"","signature":"SV_RAWWORKITEMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_RAWWORKITEMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_IRPSTACKSIZE_PARMNUM","package":"druntime","parentType":"","signature":"SV_IRPSTACKSIZE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_IRPSTACKSIZE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXRAWBUFLEN_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXRAWBUFLEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXRAWBUFLEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSUSERS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SESSUSERS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSUSERS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSCONNS_PARMNUM","package":"druntime","parentType":"","signature":"SV_SESSCONNS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSCONNS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXPAGEDMEMORYUSAGE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLESOFTCOMPAT_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLESOFTCOMPAT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLESOFTCOMPAT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEFORCEDLOGOFF_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLEFORCEDLOGOFF_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEFORCEDLOGOFF_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TIMESOURCE_PARMNUM","package":"druntime","parentType":"","signature":"SV_TIMESOURCE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TIMESOURCE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","package":"druntime","parentType":"","signature":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ACCEPTDOWNLEVELAPIS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LMANNOUNCE_PARMNUM","package":"druntime","parentType":"","signature":"SV_LMANNOUNCE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LMANNOUNCE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DOMAIN_PARMNUM","package":"druntime","parentType":"","signature":"SV_DOMAIN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DOMAIN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXCOPYREADLEN_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXCOPYREADLEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXCOPYREADLEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXCOPYWRITELEN_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXCOPYWRITELEN_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXCOPYWRITELEN_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINKEEPSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINKEEPSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINKEEPSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXKEEPSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXKEEPSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXKEEPSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINKEEPCOMPLSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINKEEPCOMPLSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINKEEPCOMPLSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXKEEPCOMPLSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_THREADCOUNTADD_PARMNUM","package":"druntime","parentType":"","signature":"SV_THREADCOUNTADD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_THREADCOUNTADD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NUMBLOCKTHREADS_PARMNUM","package":"druntime","parentType":"","signature":"SV_NUMBLOCKTHREADS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NUMBLOCKTHREADS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SCAVTIMEOUT_PARMNUM","package":"druntime","parentType":"","signature":"SV_SCAVTIMEOUT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SCAVTIMEOUT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINRCVQUEUE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINRCVQUEUE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINRCVQUEUE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINFREEWORKITEMS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINFREEWORKITEMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINFREEWORKITEMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_XACTMEMSIZE_PARMNUM","package":"druntime","parentType":"","signature":"SV_XACTMEMSIZE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_XACTMEMSIZE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_THREADPRIORITY_PARMNUM","package":"druntime","parentType":"","signature":"SV_THREADPRIORITY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_THREADPRIORITY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXMPXCT_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXMPXCT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXMPXCT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPLOCKBREAKWAIT_PARMNUM","package":"druntime","parentType":"","signature":"SV_OPLOCKBREAKWAIT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPLOCKBREAKWAIT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","package":"druntime","parentType":"","signature":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEOPLOCKS_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLEOPLOCKS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEOPLOCKS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEOPLOCKFORCECLOSE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEFCBOPENS_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLEFCBOPENS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEFCBOPENS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLERAW_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLERAW_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLERAW_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLESHAREDNETDRIVES_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLESHAREDNETDRIVES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLESHAREDNETDRIVES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINFREECONNECTIONS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINFREECONNECTIONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINFREECONNECTIONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREECONNECTIONS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXFREECONNECTIONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREECONNECTIONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITSESSTABLE_PARMNUM","package":"druntime","parentType":"","signature":"SV_INITSESSTABLE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITSESSTABLE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITCONNTABLE_PARMNUM","package":"druntime","parentType":"","signature":"SV_INITCONNTABLE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITCONNTABLE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITFILETABLE_PARMNUM","package":"druntime","parentType":"","signature":"SV_INITFILETABLE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITFILETABLE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITSEARCHTABLE_PARMNUM","package":"druntime","parentType":"","signature":"SV_INITSEARCHTABLE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITSEARCHTABLE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ALERTSCHEDULE_PARMNUM","package":"druntime","parentType":"","signature":"SV_ALERTSCHEDULE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ALERTSCHEDULE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ERRORTHRESHOLD_PARMNUM","package":"druntime","parentType":"","signature":"SV_ERRORTHRESHOLD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ERRORTHRESHOLD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NETWORKERRORTHRESHOLD_PARMNUM","package":"druntime","parentType":"","signature":"SV_NETWORKERRORTHRESHOLD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NETWORKERRORTHRESHOLD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DISKSPACETHRESHOLD_PARMNUM","package":"druntime","parentType":"","signature":"SV_DISKSPACETHRESHOLD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DISKSPACETHRESHOLD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXLINKDELAY_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXLINKDELAY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXLINKDELAY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINLINKTHROUGHPUT_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINLINKTHROUGHPUT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINLINKTHROUGHPUT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LINKINFOVALIDTIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_LINKINFOVALIDTIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LINKINFOVALIDTIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SCAVQOSINFOUPDATETIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXWORKITEMIDLETIME_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXWORKITEMIDLETIME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXWORKITEMIDLETIME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXRAWWORKITEMS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXRAWWORKITEMS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXRAWWORKITEMS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PRODUCTTYPE_PARMNUM","package":"druntime","parentType":"","signature":"SV_PRODUCTTYPE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PRODUCTTYPE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SERVERSIZE_PARMNUM","package":"druntime","parentType":"","signature":"SV_SERVERSIZE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SERVERSIZE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CONNECTIONLESSAUTODISC_PARMNUM","package":"druntime","parentType":"","signature":"SV_CONNECTIONLESSAUTODISC_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CONNECTIONLESSAUTODISC_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","package":"druntime","parentType":"","signature":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARINGVIOLATIONRETRIES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARINGVIOLATIONDELAY_PARMNUM","package":"druntime","parentType":"","signature":"SV_SHARINGVIOLATIONDELAY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARINGVIOLATIONDELAY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXGLOBALOPENSEARCH_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXGLOBALOPENSEARCH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXGLOBALOPENSEARCH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","package":"druntime","parentType":"","signature":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_REMOVEDUPLICATESEARCHES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONRETRIES_PARMNUM","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONRETRIES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONRETRIES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONOFFSET_PARMNUM","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONOFFSET_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONOFFSET_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONDELAY_PARMNUM","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONDELAY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONDELAY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MDLREADSWITCHOVER_PARMNUM","package":"druntime","parentType":"","signature":"SV_MDLREADSWITCHOVER_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MDLREADSWITCHOVER_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CACHEDOPENLIMIT_PARMNUM","package":"druntime","parentType":"","signature":"SV_CACHEDOPENLIMIT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CACHEDOPENLIMIT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CRITICALTHREADS_PARMNUM","package":"druntime","parentType":"","signature":"SV_CRITICALTHREADS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CRITICALTHREADS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_RESTRICTNULLSESSACCESS_PARMNUM","package":"druntime","parentType":"","signature":"SV_RESTRICTNULLSESSACCESS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_RESTRICTNULLSESSACCESS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","package":"druntime","parentType":"","signature":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEWFW311DIRECTIPX_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OTHERQUEUEAFFINITY_PARMNUM","package":"druntime","parentType":"","signature":"SV_OTHERQUEUEAFFINITY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OTHERQUEUEAFFINITY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_QUEUESAMPLESECS_PARMNUM","package":"druntime","parentType":"","signature":"SV_QUEUESAMPLESECS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_QUEUESAMPLESECS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_BALANCECOUNT_PARMNUM","package":"druntime","parentType":"","signature":"SV_BALANCECOUNT_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_BALANCECOUNT_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PREFERREDAFFINITY_PARMNUM","package":"druntime","parentType":"","signature":"SV_PREFERREDAFFINITY_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PREFERREDAFFINITY_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREERFCBS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXFREERFCBS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREERFCBS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREEMFCBS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXFREEMFCBS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREEMFCBS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREELFCBS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXFREELFCBS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREELFCBS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","package":"druntime","parentType":"","signature":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXTHREADSPERQUEUE_PARMNUM","package":"druntime","parentType":"","signature":"SV_MAXTHREADSPERQUEUE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXTHREADSPERQUEUE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_COMMENT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_COMMENT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_COMMENT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_USERS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_USERS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_USERS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DISC_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_DISC_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DISC_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_HIDDEN_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_HIDDEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_HIDDEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ANNOUNCE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ANNOUNCE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ANNOUNCE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ANNDELTA_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ANNDELTA_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ANNDELTA_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSOPENS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SESSOPENS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSOPENS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSVCS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SESSVCS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSVCS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPENSEARCH_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_OPENSEARCH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPENSEARCH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXWORKITEMS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXWORKITEMS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXWORKITEMS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXRAWBUFLEN_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXRAWBUFLEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXRAWBUFLEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSUSERS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SESSUSERS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSUSERS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SESSCONNS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SESSCONNS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SESSCONNS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXNONPAGEDMEMORYUSAGE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXNONPAGEDMEMORYUSAGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXNONPAGEDMEMORYUSAGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXPAGEDMEMORYUSAGE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXPAGEDMEMORYUSAGE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXPAGEDMEMORYUSAGE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLESOFTCOMPAT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLESOFTCOMPAT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLESOFTCOMPAT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEFORCEDLOGOFF_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLEFORCEDLOGOFF_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEFORCEDLOGOFF_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_TIMESOURCE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_TIMESOURCE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_TIMESOURCE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LMANNOUNCE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_LMANNOUNCE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LMANNOUNCE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXCOPYREADLEN_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXCOPYREADLEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXCOPYREADLEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXCOPYWRITELEN_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXCOPYWRITELEN_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXCOPYWRITELEN_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINKEEPSEARCH_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINKEEPSEARCH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINKEEPSEARCH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXKEEPSEARCH_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXKEEPSEARCH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXKEEPSEARCH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINKEEPCOMPLSEARCH_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINKEEPCOMPLSEARCH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINKEEPCOMPLSEARCH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXKEEPCOMPLSEARCH_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXKEEPCOMPLSEARCH_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXKEEPCOMPLSEARCH_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SCAVTIMEOUT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SCAVTIMEOUT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SCAVTIMEOUT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINRCVQUEUE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINRCVQUEUE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINRCVQUEUE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINFREEWORKITEMS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINFREEWORKITEMS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINFREEWORKITEMS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXMPXCT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXMPXCT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXMPXCT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPLOCKBREAKWAIT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_OPLOCKBREAKWAIT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPLOCKBREAKWAIT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OPLOCKBREAKRESPONSEWAIT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_OPLOCKBREAKRESPONSEWAIT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OPLOCKBREAKRESPONSEWAIT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEOPLOCKS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLEOPLOCKS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEOPLOCKS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEOPLOCKFORCECLOSE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLEOPLOCKFORCECLOSE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEOPLOCKFORCECLOSE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEFCBOPENS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLEFCBOPENS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEFCBOPENS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLERAW_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLERAW_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLERAW_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLESHAREDNETDRIVES_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ENABLESHAREDNETDRIVES_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLESHAREDNETDRIVES_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINFREECONNECTIONS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINFREECONNECTIONS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINFREECONNECTIONS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREECONNECTIONS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXFREECONNECTIONS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREECONNECTIONS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITSESSTABLE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_INITSESSTABLE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITSESSTABLE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITCONNTABLE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_INITCONNTABLE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITCONNTABLE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITFILETABLE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_INITFILETABLE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITFILETABLE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_INITSEARCHTABLE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_INITSEARCHTABLE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_INITSEARCHTABLE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ALERTSCHEDULE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ALERTSCHEDULE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ALERTSCHEDULE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ERRORTHRESHOLD_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_ERRORTHRESHOLD_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ERRORTHRESHOLD_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_NETWORKERRORTHRESHOLD_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_NETWORKERRORTHRESHOLD_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_NETWORKERRORTHRESHOLD_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_DISKSPACETHRESHOLD_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_DISKSPACETHRESHOLD_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_DISKSPACETHRESHOLD_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXLINKDELAY_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXLINKDELAY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXLINKDELAY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINLINKTHROUGHPUT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINLINKTHROUGHPUT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINLINKTHROUGHPUT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LINKINFOVALIDTIME_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_LINKINFOVALIDTIME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LINKINFOVALIDTIME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SCAVQOSINFOUPDATETIME_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SCAVQOSINFOUPDATETIME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SCAVQOSINFOUPDATETIME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXWORKITEMIDLETIME_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXWORKITEMIDLETIME_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXWORKITEMIDLETIME_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXRAWWORKITEMS_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_MAXRAWWORKITEMS_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXRAWWORKITEMS_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PRODUCTTYPE_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_PRODUCTTYPE_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PRODUCTTYPE_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SERVERSIZE_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_SERVERSIZE_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SERVERSIZE_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CONNECTIONLESSAUTODISC_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_CONNECTIONLESSAUTODISC_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CONNECTIONLESSAUTODISC_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARINGVIOLATIONRETRIES_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_SHARINGVIOLATIONRETRIES_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARINGVIOLATIONRETRIES_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SHARINGVIOLATIONDELAY_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_SHARINGVIOLATIONDELAY_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SHARINGVIOLATIONDELAY_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXGLOBALOPENSEARCH_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_MAXGLOBALOPENSEARCH_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXGLOBALOPENSEARCH_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_REMOVEDUPLICATESEARCHES_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_REMOVEDUPLICATESEARCHES_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_REMOVEDUPLICATESEARCHES_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONRETRIES_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONRETRIES_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONRETRIES_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONOFFSET_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONOFFSET_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONOFFSET_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_LOCKVIOLATIONDELAY_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_LOCKVIOLATIONDELAY_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_LOCKVIOLATIONDELAY_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MDLREADSWITCHOVER_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_MDLREADSWITCHOVER_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MDLREADSWITCHOVER_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CACHEDOPENLIMIT_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_CACHEDOPENLIMIT_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CACHEDOPENLIMIT_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_CRITICALTHREADS_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_CRITICALTHREADS_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_CRITICALTHREADS_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_RESTRICTNULLSESSACCESS_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_RESTRICTNULLSESSACCESS_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_RESTRICTNULLSESSACCESS_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_ENABLEWFW311DIRECTIPX_INFOLOEVEL","package":"druntime","parentType":"","signature":"SV_ENABLEWFW311DIRECTIPX_INFOLOEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_ENABLEWFW311DIRECTIPX_INFOLOEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_OTHERQUEUEAFFINITY_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_OTHERQUEUEAFFINITY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_OTHERQUEUEAFFINITY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_QUEUESAMPLESECS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_QUEUESAMPLESECS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_QUEUESAMPLESECS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_BALANCECOUNT_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_BALANCECOUNT_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_BALANCECOUNT_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_PREFERREDAFFINITY_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_PREFERREDAFFINITY_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_PREFERREDAFFINITY_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREERFCBS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXFREERFCBS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREERFCBS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREEMFCBS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXFREEMFCBS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREEMFCBS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREELFCBS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXFREELFCBS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREELFCBS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXFREEPAGEDPOOLCHUNKS_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXFREEPAGEDPOOLCHUNKS_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXFREEPAGEDPOOLCHUNKS_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MINPAGEDPOOLCHUNKSIZE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MINPAGEDPOOLCHUNKSIZE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MINPAGEDPOOLCHUNKSIZE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXPAGEDPOOLCHUNKSIZE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXPAGEDPOOLCHUNKSIZE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXPAGEDPOOLCHUNKSIZE_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_SENDSFROMPREFERREDPROCESSOR_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_SENDSFROMPREFERREDPROCESSOR_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_SENDSFROMPREFERREDPROCESSOR_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmserver","name":"SV_MAXTHREADSPERQUEUE_INFOLEVEL","package":"druntime","parentType":"","signature":"SV_MAXTHREADSPERQUEUE_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmserver.html#SV_MAXTHREADSPERQUEUE_INFOLEVEL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmshare","name":"core.sys.windows.lmshare","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmshare.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareAdd(LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareEnum(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareEnumSticky","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareEnumSticky(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD resume_handle)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareEnumSticky.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareGetInfo(LPWSTR, LPWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareSetInfo(LPWSTR, LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareDel(LPWSTR, LPWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareDelSticky","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareDelSticky(LPWSTR, LPWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareDelSticky.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetShareCheck","package":"druntime","parentType":"","signature":"NET_API_STATUS NetShareCheck(LPWSTR, LPWSTR, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetShareCheck.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetSessionEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetSessionEnum(LPWSTR, LPWSTR, LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetSessionEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetSessionDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetSessionDel(LPWSTR, LPWSTR, LPWSTR)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetSessionDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetSessionGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetSessionGetInfo(LPWSTR, LPWSTR, LPWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetSessionGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetConnectionEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetConnectionEnum(LPWSTR, LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetConnectionEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetFileClose","package":"druntime","parentType":"","signature":"NET_API_STATUS NetFileClose(LPWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetFileClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetFileEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetFileEnum(LPWSTR, LPWSTR, LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetFileEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmshare","name":"NetFileGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetFileGetInfo(LPWSTR, DWORD, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmshare/NetFileGetInfo.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"FILE_INFO_2","package":"druntime","parentType":"","signature":"FILE_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmshare.html#FILE_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PFILE_INFO_2","package":"druntime","parentType":"","signature":"PFILE_INFO_2 = FILE_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PFILE_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"FILE_INFO_3","package":"druntime","parentType":"","signature":"FILE_INFO_3","url":"/ddoc/druntime/core/sys/windows/lmshare.html#FILE_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PFILE_INFO_3","package":"druntime","parentType":"","signature":"PFILE_INFO_3 = FILE_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PFILE_INFO_3"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_0","package":"druntime","parentType":"","signature":"SHARE_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_0","package":"druntime","parentType":"","signature":"PSHARE_INFO_0 = SHARE_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_1","package":"druntime","parentType":"","signature":"SHARE_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_1","package":"druntime","parentType":"","signature":"PSHARE_INFO_1 = SHARE_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_2","package":"druntime","parentType":"","signature":"SHARE_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_2","package":"druntime","parentType":"","signature":"PSHARE_INFO_2 = SHARE_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_502","package":"druntime","parentType":"","signature":"SHARE_INFO_502","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_502"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_502","package":"druntime","parentType":"","signature":"PSHARE_INFO_502 = SHARE_INFO_502 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_502"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_1004","package":"druntime","parentType":"","signature":"SHARE_INFO_1004","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_1004"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_1004","package":"druntime","parentType":"","signature":"PSHARE_INFO_1004 = SHARE_INFO_1004 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_1004"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_1006","package":"druntime","parentType":"","signature":"SHARE_INFO_1006","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_1006"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_1006","package":"druntime","parentType":"","signature":"PSHARE_INFO_1006 = SHARE_INFO_1006 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_1006"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SHARE_INFO_1501","package":"druntime","parentType":"","signature":"SHARE_INFO_1501","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_INFO_1501"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSHARE_INFO_1501","package":"druntime","parentType":"","signature":"PSHARE_INFO_1501 = SHARE_INFO_1501 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSHARE_INFO_1501"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SESSION_INFO_0","package":"druntime","parentType":"","signature":"SESSION_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESSION_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSESSION_INFO_0","package":"druntime","parentType":"","signature":"PSESSION_INFO_0 = SESSION_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSESSION_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SESSION_INFO_1","package":"druntime","parentType":"","signature":"SESSION_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESSION_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSESSION_INFO_1","package":"druntime","parentType":"","signature":"PSESSION_INFO_1 = SESSION_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSESSION_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SESSION_INFO_2","package":"druntime","parentType":"","signature":"SESSION_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESSION_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSESSION_INFO_2","package":"druntime","parentType":"","signature":"PSESSION_INFO_2 = SESSION_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSESSION_INFO_2"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SESSION_INFO_10","package":"druntime","parentType":"","signature":"SESSION_INFO_10","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESSION_INFO_10"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSESSION_INFO_10","package":"druntime","parentType":"","signature":"PSESSION_INFO_10 = SESSION_INFO_10 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSESSION_INFO_10"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"SESSION_INFO_502","package":"druntime","parentType":"","signature":"SESSION_INFO_502","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESSION_INFO_502"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PSESSION_INFO_502","package":"druntime","parentType":"","signature":"PSESSION_INFO_502 = SESSION_INFO_502 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PSESSION_INFO_502"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"CONNECTION_INFO_0","package":"druntime","parentType":"","signature":"CONNECTION_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmshare.html#CONNECTION_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PCONNECTION_INFO_0","package":"druntime","parentType":"","signature":"PCONNECTION_INFO_0 = CONNECTION_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PCONNECTION_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmshare","name":"CONNECTION_INFO_1","package":"druntime","parentType":"","signature":"CONNECTION_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmshare.html#CONNECTION_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmshare","name":"PCONNECTION_INFO_1","package":"druntime","parentType":"","signature":"PCONNECTION_INFO_1 = CONNECTION_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PCONNECTION_INFO_1"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_NETNAME_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_NETNAME_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_NETNAME_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_TYPE_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_TYPE_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_TYPE_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_REMARK_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_REMARK_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_REMARK_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_PERMISSIONS_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_PERMISSIONS_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_PERMISSIONS_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_MAX_USES_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_MAX_USES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_MAX_USES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_CURRENT_USES_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_CURRENT_USES_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_CURRENT_USES_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_PATH_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_PATH_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_PATH_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_PASSWD_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_PASSWD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_PASSWD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_FILE_SD_PARMNUM","package":"druntime","parentType":"","signature":"SHARE_FILE_SD_PARMNUM","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_FILE_SD_PARMNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_REMARK_INFOLEVEL","package":"druntime","parentType":"","signature":"SHARE_REMARK_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_REMARK_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_MAX_USES_INFOLEVEL","package":"druntime","parentType":"","signature":"SHARE_MAX_USES_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_MAX_USES_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHARE_FILE_SD_INFOLEVEL","package":"druntime","parentType":"","signature":"SHARE_FILE_SD_INFOLEVEL","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHARE_FILE_SD_INFOLEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHI1_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SHI1_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHI1_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHI2_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SHI2_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHI2_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_DISKTREE","package":"druntime","parentType":"","signature":"STYPE_DISKTREE","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_DISKTREE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_PRINTQ","package":"druntime","parentType":"","signature":"STYPE_PRINTQ","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_PRINTQ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_DEVICE","package":"druntime","parentType":"","signature":"STYPE_DEVICE","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_DEVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_IPC","package":"druntime","parentType":"","signature":"STYPE_IPC","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_IPC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_DFS","package":"druntime","parentType":"","signature":"STYPE_DFS","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_DFS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"STYPE_SPECIAL","package":"druntime","parentType":"","signature":"STYPE_SPECIAL","url":"/ddoc/druntime/core/sys/windows/lmshare.html#STYPE_SPECIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SHI_USES_UNLIMITED","package":"druntime","parentType":"","signature":"DWORD SHI_USES_UNLIMITED","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SHI_USES_UNLIMITED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SESS_GUEST","package":"druntime","parentType":"","signature":"SESS_GUEST","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESS_GUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SESS_NOENCRYPTION","package":"druntime","parentType":"","signature":"SESS_NOENCRYPTION","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESS_NOENCRYPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SESI1_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SESI1_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESI1_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"SESI2_NUM_ELEMENTS","package":"druntime","parentType":"","signature":"SESI2_NUM_ELEMENTS","url":"/ddoc/druntime/core/sys/windows/lmshare.html#SESI2_NUM_ELEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"PERM_FILE_READ","package":"druntime","parentType":"","signature":"PERM_FILE_READ","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PERM_FILE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"PERM_FILE_WRITE","package":"druntime","parentType":"","signature":"PERM_FILE_WRITE","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PERM_FILE_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmshare","name":"PERM_FILE_CREATE","package":"druntime","parentType":"","signature":"PERM_FILE_CREATE","url":"/ddoc/druntime/core/sys/windows/lmshare.html#PERM_FILE_CREATE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmsname","name":"core.sys.windows.lmsname","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmsname.html"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsname","name":"SERVICE_WORKSTATION","package":"druntime","parentType":"","signature":"TCHAR[] SERVICE_WORKSTATION","url":"/ddoc/druntime/core/sys/windows/lmsname.html#SERVICE_WORKSTATION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmstats","name":"core.sys.windows.lmstats","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmstats.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmstats","name":"NetStatisticsGet","package":"druntime","parentType":"","signature":"NET_API_STATUS NetStatisticsGet(LPWSTR, LPWSTR, DWORD, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmstats/NetStatisticsGet.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmstats","name":"STAT_SERVER_0","package":"druntime","parentType":"","signature":"STAT_SERVER_0","url":"/ddoc/druntime/core/sys/windows/lmstats.html#STAT_SERVER_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmstats","name":"PSTAT_SERVER_0","package":"druntime","parentType":"","signature":"PSTAT_SERVER_0 = STAT_SERVER_0 *","url":"/ddoc/druntime/core/sys/windows/lmstats.html#PSTAT_SERVER_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmstats","name":"STAT_WORKSTATION_0","package":"druntime","parentType":"","signature":"STAT_WORKSTATION_0","url":"/ddoc/druntime/core/sys/windows/lmstats.html#STAT_WORKSTATION_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmstats","name":"PSTAT_WORKSTATION_0","package":"druntime","parentType":"","signature":"PSTAT_WORKSTATION_0 = STAT_WORKSTATION_0 *","url":"/ddoc/druntime/core/sys/windows/lmstats.html#PSTAT_WORKSTATION_0"},{"doc":"","kind":"variable","module":"core.sys.windows.lmstats","name":"STATSOPT_CLR","package":"druntime","parentType":"","signature":"ULONG STATSOPT_CLR","url":"/ddoc/druntime/core/sys/windows/lmstats.html#STATSOPT_CLR"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmsvc","name":"core.sys.windows.lmsvc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmsvc.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmsvc","name":"NetServiceControl","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServiceControl(LPCWSTR,  LPCWSTR,  DWORD,  DWORD,\n           PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmsvc/NetServiceControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmsvc","name":"NetServiceEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServiceEnum(LPCWSTR,  DWORD,  PBYTE *,  DWORD,  PDWORD,\n           PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmsvc/NetServiceEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmsvc","name":"NetServiceGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServiceGetInfo(LPCWSTR,  LPCWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmsvc/NetServiceGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmsvc","name":"NetServiceInstall","package":"druntime","parentType":"","signature":"NET_API_STATUS NetServiceInstall(LPCWSTR,  LPCWSTR,  DWORD,  LPCWSTR *,\n           PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmsvc/NetServiceInstall.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmsvc","name":"SERVICE_INFO_0","package":"druntime","parentType":"","signature":"SERVICE_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmsvc","name":"PSERVICE_INFO_0","package":"druntime","parentType":"","signature":"PSERVICE_INFO_0 = SERVICE_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#PSERVICE_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmsvc","name":"SERVICE_INFO_1","package":"druntime","parentType":"","signature":"SERVICE_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmsvc","name":"PSERVICE_INFO_1","package":"druntime","parentType":"","signature":"PSERVICE_INFO_1 = SERVICE_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#PSERVICE_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmsvc","name":"SERVICE_INFO_2","package":"druntime","parentType":"","signature":"SERVICE_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmsvc","name":"PSERVICE_INFO_2","package":"druntime","parentType":"","signature":"PSERVICE_INFO_2 = SERVICE_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#PSERVICE_INFO_2"},{"doc":"Changes relative to MinGW: lmsname is not imported publicly (instead, core.sys.windows.lm imports it directly).","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_DOS_ENCRYPTION","package":"druntime","parentType":"","signature":"TCHAR[] SERVICE_DOS_ENCRYPTION","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_DOS_ENCRYPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UNINSTALLED","package":"druntime","parentType":"","signature":"SERVICE_UNINSTALLED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UNINSTALLED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_INSTALL_PENDING","package":"druntime","parentType":"","signature":"SERVICE_INSTALL_PENDING","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INSTALL_PENDING"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UNINSTALL_PENDING","package":"druntime","parentType":"","signature":"SERVICE_UNINSTALL_PENDING","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UNINSTALL_PENDING"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_INSTALLED","package":"druntime","parentType":"","signature":"SERVICE_INSTALLED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INSTALLED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_INSTALL_STATE","package":"druntime","parentType":"","signature":"SERVICE_INSTALL_STATE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_INSTALL_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_PAUSE_STATE","package":"druntime","parentType":"","signature":"SERVICE_PAUSE_STATE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_PAUSE_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LM20_SERVICE_ACTIVE","package":"druntime","parentType":"","signature":"LM20_SERVICE_ACTIVE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LM20_SERVICE_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LM20_SERVICE_CONTINUE_PENDING","package":"druntime","parentType":"","signature":"LM20_SERVICE_CONTINUE_PENDING","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LM20_SERVICE_CONTINUE_PENDING"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LM20_SERVICE_PAUSE_PENDING","package":"druntime","parentType":"","signature":"LM20_SERVICE_PAUSE_PENDING","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LM20_SERVICE_PAUSE_PENDING"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LM20_SERVICE_PAUSED","package":"druntime","parentType":"","signature":"LM20_SERVICE_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LM20_SERVICE_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_NOT_UNINSTALLABLE","package":"druntime","parentType":"","signature":"SERVICE_NOT_UNINSTALLABLE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_NOT_UNINSTALLABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UNINSTALLABLE","package":"druntime","parentType":"","signature":"SERVICE_UNINSTALLABLE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UNINSTALLABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_NOT_PAUSABLE","package":"druntime","parentType":"","signature":"SERVICE_NOT_PAUSABLE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_NOT_PAUSABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_PAUSABLE","package":"druntime","parentType":"","signature":"SERVICE_PAUSABLE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_PAUSABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_REDIR_PAUSED","package":"druntime","parentType":"","signature":"SERVICE_REDIR_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_REDIR_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_REDIR_DISK_PAUSED","package":"druntime","parentType":"","signature":"SERVICE_REDIR_DISK_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_REDIR_DISK_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_REDIR_PRINT_PAUSED","package":"druntime","parentType":"","signature":"SERVICE_REDIR_PRINT_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_REDIR_PRINT_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_REDIR_COMM_PAUSED","package":"druntime","parentType":"","signature":"SERVICE_REDIR_COMM_PAUSED","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_REDIR_COMM_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_INTERROGATE","package":"druntime","parentType":"","signature":"SERVICE_CTRL_INTERROGATE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_INTERROGATE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_PAUSE","package":"druntime","parentType":"","signature":"SERVICE_CTRL_PAUSE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_PAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_CONTINUE","package":"druntime","parentType":"","signature":"SERVICE_CTRL_CONTINUE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_CONTINUE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_UNINSTALL","package":"druntime","parentType":"","signature":"SERVICE_CTRL_UNINSTALL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_UNINSTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_REDIR_DISK","package":"druntime","parentType":"","signature":"SERVICE_CTRL_REDIR_DISK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_REDIR_DISK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_REDIR_PRINT","package":"druntime","parentType":"","signature":"SERVICE_CTRL_REDIR_PRINT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_REDIR_PRINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CTRL_REDIR_COMM","package":"druntime","parentType":"","signature":"SERVICE_CTRL_REDIR_COMM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CTRL_REDIR_COMM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_IP_NO_HINT","package":"druntime","parentType":"","signature":"SERVICE_IP_NO_HINT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_IP_NO_HINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CCP_NO_HINT","package":"druntime","parentType":"","signature":"SERVICE_CCP_NO_HINT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CCP_NO_HINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_IP_QUERY_HINT","package":"druntime","parentType":"","signature":"SERVICE_IP_QUERY_HINT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_IP_QUERY_HINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CCP_QUERY_HINT","package":"druntime","parentType":"","signature":"SERVICE_CCP_QUERY_HINT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CCP_QUERY_HINT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_IP_CHKPT_NUM","package":"druntime","parentType":"","signature":"SERVICE_IP_CHKPT_NUM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_IP_CHKPT_NUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CCP_CHKPT_NUM","package":"druntime","parentType":"","signature":"SERVICE_CCP_CHKPT_NUM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CCP_CHKPT_NUM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_IP_WAIT_TIME","package":"druntime","parentType":"","signature":"SERVICE_IP_WAIT_TIME","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_IP_WAIT_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_CCP_WAIT_TIME","package":"druntime","parentType":"","signature":"SERVICE_CCP_WAIT_TIME","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_CCP_WAIT_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_IP_WAITTIME_SHIFT","package":"druntime","parentType":"","signature":"SERVICE_IP_WAITTIME_SHIFT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_IP_WAITTIME_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_NTIP_WAITTIME_SHIFT","package":"druntime","parentType":"","signature":"SERVICE_NTIP_WAITTIME_SHIFT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_NTIP_WAITTIME_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"UPPER_HINT_MASK","package":"druntime","parentType":"","signature":"UPPER_HINT_MASK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#UPPER_HINT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LOWER_HINT_MASK","package":"druntime","parentType":"","signature":"LOWER_HINT_MASK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LOWER_HINT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"UPPER_GET_HINT_MASK","package":"druntime","parentType":"","signature":"UPPER_GET_HINT_MASK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#UPPER_GET_HINT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"LOWER_GET_HINT_MASK","package":"druntime","parentType":"","signature":"LOWER_GET_HINT_MASK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#LOWER_GET_HINT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_NT_MAXTIME","package":"druntime","parentType":"","signature":"SERVICE_NT_MAXTIME","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_NT_MAXTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_RESRV_MASK","package":"druntime","parentType":"","signature":"SERVICE_RESRV_MASK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_RESRV_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_MAXTIME","package":"druntime","parentType":"","signature":"SERVICE_MAXTIME","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_MAXTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_BASE","package":"druntime","parentType":"","signature":"SERVICE_BASE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_NORMAL","package":"druntime","parentType":"","signature":"SERVICE_UIC_NORMAL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_BADPARMVAL","package":"druntime","parentType":"","signature":"SERVICE_UIC_BADPARMVAL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_BADPARMVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_MISSPARM","package":"druntime","parentType":"","signature":"SERVICE_UIC_MISSPARM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_MISSPARM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_UNKPARM","package":"druntime","parentType":"","signature":"SERVICE_UIC_UNKPARM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_UNKPARM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_RESOURCE","package":"druntime","parentType":"","signature":"SERVICE_UIC_RESOURCE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_CONFIG","package":"druntime","parentType":"","signature":"SERVICE_UIC_CONFIG","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_SYSTEM","package":"druntime","parentType":"","signature":"SERVICE_UIC_SYSTEM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_SYSTEM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_INTERNAL","package":"druntime","parentType":"","signature":"SERVICE_UIC_INTERNAL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_AMBIGPARM","package":"druntime","parentType":"","signature":"SERVICE_UIC_AMBIGPARM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_AMBIGPARM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_DUPPARM","package":"druntime","parentType":"","signature":"SERVICE_UIC_DUPPARM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_DUPPARM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_KILL","package":"druntime","parentType":"","signature":"SERVICE_UIC_KILL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_KILL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_EXEC","package":"druntime","parentType":"","signature":"SERVICE_UIC_EXEC","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_EXEC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_SUBSERV","package":"druntime","parentType":"","signature":"SERVICE_UIC_SUBSERV","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_SUBSERV"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_CONFLPARM","package":"druntime","parentType":"","signature":"SERVICE_UIC_CONFLPARM","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_CONFLPARM"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_FILE","package":"druntime","parentType":"","signature":"SERVICE_UIC_FILE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_NULL","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_NULL","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_MEMORY","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_MEMORY","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_DISK","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_DISK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_DISK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_THREADS","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_THREADS","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_THREADS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_PROCESSES","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_PROCESSES","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_PROCESSES"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_SECURITY","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_SECURITY","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_SECURITY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_LANROOT","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_LANROOT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_LANROOT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_REDIR","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_REDIR","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_REDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_SERVER","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_SERVER","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_SEC_FILE_ERR","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_SEC_FILE_ERR","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_SEC_FILE_ERR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_FILES","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_FILES","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_FILES"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_LOGS","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_LOGS","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_LOGS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_LANGROUP","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_LANGROUP","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_LANGROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_MSGNAME","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_MSGNAME","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_MSGNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_ANNOUNCE","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_ANNOUNCE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_ANNOUNCE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_SERVER_SEC_ERR","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_SERVER_SEC_ERR","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_SERVER_SEC_ERR"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_WKSTA","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_WKSTA","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_WKSTA"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_ERRLOG","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_ERRLOG","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_ERRLOG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_FILE_UW","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_FILE_UW","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_FILE_UW"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_ADDPAK","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_ADDPAK","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_ADDPAK"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_LAZY","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_LAZY","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_LAZY"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS_MACHINE_ACCT","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS_MACHINE_ACCT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS_MACHINE_ACCT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS_SERVERS_NMEMB"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS_SERVERS_NOGRP"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS_INVALID_ROLE","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS_INVALID_ROLE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS_INVALID_ROLE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_NETLOGON_NO_DC","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_NETLOGON_NO_DC","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_NETLOGON_NO_DC"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_NETLOGON_DC_CFLCT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_NETLOGON_AUTH","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_NETLOGON_AUTH","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_NETLOGON_AUTH"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_UAS_PROLOG","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_UAS_PROLOG","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_UAS_PROLOG"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE2_BASE","package":"druntime","parentType":"","signature":"SERVICE2_BASE","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE2_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_NETLOGON_MPATH","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_NETLOGON_MPATH","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_NETLOGON_MPATH"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_LSA_MACHINE_ACCT","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_LSA_MACHINE_ACCT","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_LSA_MACHINE_ACCT"},{"doc":"","kind":"variable","module":"core.sys.windows.lmsvc","name":"SERVICE_UIC_M_DATABASE_ERROR","package":"druntime","parentType":"","signature":"SERVICE_UIC_M_DATABASE_ERROR","url":"/ddoc/druntime/core/sys/windows/lmsvc.html#SERVICE_UIC_M_DATABASE_ERROR"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmuse","name":"core.sys.windows.lmuse","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmuse.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmuse","name":"NetUseAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUseAdd(LPWSTR,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmuse/NetUseAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmuse","name":"NetUseDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUseDel(LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/lmuse/NetUseDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmuse","name":"NetUseEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUseEnum(LPWSTR,  DWORD,  PBYTE *,  DWORD,  PDWORD,  PDWORD,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmuse/NetUseEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmuse","name":"NetUseGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetUseGetInfo(LPWSTR,  LPWSTR,  DWORD,  PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmuse/NetUseGetInfo.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmuse","name":"USE_INFO_0","package":"druntime","parentType":"","signature":"USE_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmuse.html#USE_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmuse","name":"PUSE_INFO_0","package":"druntime","parentType":"","signature":"PUSE_INFO_0 = USE_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmuse.html#PUSE_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmuse","name":"USE_INFO_1","package":"druntime","parentType":"","signature":"USE_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmuse.html#USE_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmuse","name":"PUSE_INFO_1","package":"druntime","parentType":"","signature":"PUSE_INFO_1 = USE_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmuse.html#PUSE_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmuse","name":"USE_INFO_2","package":"druntime","parentType":"","signature":"USE_INFO_2","url":"/ddoc/druntime/core/sys/windows/lmuse.html#USE_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.lmuse","name":"PUSE_INFO_2","package":"druntime","parentType":"","signature":"PUSE_INFO_2 = USE_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/lmuse.html#PUSE_INFO_2"},{"doc":"","kind":"variable","module":"core.sys.windows.lmuse","name":"USE_WILDCARD","package":"druntime","parentType":"","signature":"DWORD USE_WILDCARD","url":"/ddoc/druntime/core/sys/windows/lmuse.html#USE_WILDCARD"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmuseflg","name":"core.sys.windows.lmuseflg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmuseflg.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lmwksta","name":"core.sys.windows.lmwksta","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lmwksta.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaGetInfo(LPWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaSetInfo(LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaUserGetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaUserGetInfo(LPWSTR, DWORD, PBYTE *)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaUserGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaUserSetInfo","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaUserSetInfo(LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaUserSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaUserEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaUserEnum(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaUserEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaTransportAdd","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaTransportAdd(LPWSTR, DWORD, PBYTE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaTransportAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaTransportDel","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaTransportDel(LPWSTR, LPWSTR, DWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaTransportDel.html"},{"doc":"","kind":"function","module":"core.sys.windows.lmwksta","name":"NetWkstaTransportEnum","package":"druntime","parentType":"","signature":"NET_API_STATUS NetWkstaTransportEnum(LPWSTR, DWORD, PBYTE *, DWORD, PDWORD, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/lmwksta/NetWkstaTransportEnum.html"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_100","package":"druntime","parentType":"","signature":"WKSTA_INFO_100","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_100"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_100","package":"druntime","parentType":"","signature":"PWKSTA_INFO_100 = WKSTA_INFO_100 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_100"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_101","package":"druntime","parentType":"","signature":"WKSTA_INFO_101","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_101"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_101","package":"druntime","parentType":"","signature":"PWKSTA_INFO_101 = WKSTA_INFO_101 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_101"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_102","package":"druntime","parentType":"","signature":"WKSTA_INFO_102","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_102"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_102","package":"druntime","parentType":"","signature":"PWKSTA_INFO_102 = WKSTA_INFO_102 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_102"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_302","package":"druntime","parentType":"","signature":"WKSTA_INFO_302","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_302"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_302","package":"druntime","parentType":"","signature":"PWKSTA_INFO_302 = WKSTA_INFO_302 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_302"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_402","package":"druntime","parentType":"","signature":"WKSTA_INFO_402","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_402"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_402","package":"druntime","parentType":"","signature":"PWKSTA_INFO_402 = WKSTA_INFO_402 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_402"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_502","package":"druntime","parentType":"","signature":"WKSTA_INFO_502","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_502"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_502","package":"druntime","parentType":"","signature":"PWKSTA_INFO_502 = WKSTA_INFO_502 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_502"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1010","package":"druntime","parentType":"","signature":"WKSTA_INFO_1010","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1010"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1010","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1010 = WKSTA_INFO_1010 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1010"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1011","package":"druntime","parentType":"","signature":"WKSTA_INFO_1011","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1011"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1011","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1011 = WKSTA_INFO_1011 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1011"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1012","package":"druntime","parentType":"","signature":"WKSTA_INFO_1012","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1012"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1012","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1012 = WKSTA_INFO_1012 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1012"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1027","package":"druntime","parentType":"","signature":"WKSTA_INFO_1027","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1027"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1027","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1027 = WKSTA_INFO_1027 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1027"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1028","package":"druntime","parentType":"","signature":"WKSTA_INFO_1028","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1028"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1028","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1028 = WKSTA_INFO_1028 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1028"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1032","package":"druntime","parentType":"","signature":"WKSTA_INFO_1032","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1032"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1032","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1032 = WKSTA_INFO_1032 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1032"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1013","package":"druntime","parentType":"","signature":"WKSTA_INFO_1013","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1013"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1013","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1013 = WKSTA_INFO_1013 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1013"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1018","package":"druntime","parentType":"","signature":"WKSTA_INFO_1018","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1018"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1018","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1018 = WKSTA_INFO_1018 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1018"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1023","package":"druntime","parentType":"","signature":"WKSTA_INFO_1023","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1023"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1023","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1023 = WKSTA_INFO_1023 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1023"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1033","package":"druntime","parentType":"","signature":"WKSTA_INFO_1033","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1033"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1033","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1033 = WKSTA_INFO_1033 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1033"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1041","package":"druntime","parentType":"","signature":"WKSTA_INFO_1041","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1041"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1041","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1041 = WKSTA_INFO_1041 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1041"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1042","package":"druntime","parentType":"","signature":"WKSTA_INFO_1042","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1042"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1042","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1042 = WKSTA_INFO_1042 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1042"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1043","package":"druntime","parentType":"","signature":"WKSTA_INFO_1043","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1043"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1043","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1043 = WKSTA_INFO_1043 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1043"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1044","package":"druntime","parentType":"","signature":"WKSTA_INFO_1044","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1044"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1044","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1044 = WKSTA_INFO_1044 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1044"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1045","package":"druntime","parentType":"","signature":"WKSTA_INFO_1045","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1045"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1045","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1045 = WKSTA_INFO_1045 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1045"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1046","package":"druntime","parentType":"","signature":"WKSTA_INFO_1046","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1046"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1046","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1046 = WKSTA_INFO_1046 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1046"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1047","package":"druntime","parentType":"","signature":"WKSTA_INFO_1047","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1047"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1047","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1047 = WKSTA_INFO_1047 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1047"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1048","package":"druntime","parentType":"","signature":"WKSTA_INFO_1048","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1048"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1048","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1048 = WKSTA_INFO_1048 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1048"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1049","package":"druntime","parentType":"","signature":"WKSTA_INFO_1049","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1049"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1049","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1049 = WKSTA_INFO_1049 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1049"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1050","package":"druntime","parentType":"","signature":"WKSTA_INFO_1050","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1050"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1050","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1050 = WKSTA_INFO_1050 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1050"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1051","package":"druntime","parentType":"","signature":"WKSTA_INFO_1051","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1051"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1051","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1051 = WKSTA_INFO_1051 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1051"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1052","package":"druntime","parentType":"","signature":"WKSTA_INFO_1052","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1052"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1052","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1052 = WKSTA_INFO_1052 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1052"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1053","package":"druntime","parentType":"","signature":"WKSTA_INFO_1053","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1053"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1053","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1053 = WKSTA_INFO_1053 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1053"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1054","package":"druntime","parentType":"","signature":"WKSTA_INFO_1054","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1054"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1054","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1054 = WKSTA_INFO_1054 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1054"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1055","package":"druntime","parentType":"","signature":"WKSTA_INFO_1055","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1055"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1055","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1055 = WKSTA_INFO_1055 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1055"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1056","package":"druntime","parentType":"","signature":"WKSTA_INFO_1056","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1056"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1056","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1056 = WKSTA_INFO_1056 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1056"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1057","package":"druntime","parentType":"","signature":"WKSTA_INFO_1057","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1057"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1057","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1057 = WKSTA_INFO_1057 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1057"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1058","package":"druntime","parentType":"","signature":"WKSTA_INFO_1058","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1058"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1058","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1058 = WKSTA_INFO_1058 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1058"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1059","package":"druntime","parentType":"","signature":"WKSTA_INFO_1059","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1059"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1059","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1059 = WKSTA_INFO_1059 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1059"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1060","package":"druntime","parentType":"","signature":"WKSTA_INFO_1060","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1060"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1060","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1060 = WKSTA_INFO_1060 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1060"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1061","package":"druntime","parentType":"","signature":"WKSTA_INFO_1061","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1061"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1061","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1061 = WKSTA_INFO_1061 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1061"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_INFO_1062","package":"druntime","parentType":"","signature":"WKSTA_INFO_1062","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_INFO_1062"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_INFO_1062","package":"druntime","parentType":"","signature":"PWKSTA_INFO_1062 = WKSTA_INFO_1062 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_INFO_1062"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_USER_INFO_0","package":"druntime","parentType":"","signature":"WKSTA_USER_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_USER_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_USER_INFO_0","package":"druntime","parentType":"","signature":"PWKSTA_USER_INFO_0 = WKSTA_USER_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_USER_INFO_0"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_USER_INFO_1","package":"druntime","parentType":"","signature":"WKSTA_USER_INFO_1","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_USER_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_USER_INFO_1","package":"druntime","parentType":"","signature":"PWKSTA_USER_INFO_1 = WKSTA_USER_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_USER_INFO_1"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_USER_INFO_1101","package":"druntime","parentType":"","signature":"WKSTA_USER_INFO_1101","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_USER_INFO_1101"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_USER_INFO_1101","package":"druntime","parentType":"","signature":"PWKSTA_USER_INFO_1101 = WKSTA_USER_INFO_1101 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_USER_INFO_1101"},{"doc":"","kind":"struct","module":"core.sys.windows.lmwksta","name":"WKSTA_TRANSPORT_INFO_0","package":"druntime","parentType":"","signature":"WKSTA_TRANSPORT_INFO_0","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#WKSTA_TRANSPORT_INFO_0"},{"doc":"","kind":"alias","module":"core.sys.windows.lmwksta","name":"PWKSTA_TRANSPORT_INFO_0","package":"druntime","parentType":"","signature":"PWKSTA_TRANSPORT_INFO_0 = WKSTA_TRANSPORT_INFO_0 *","url":"/ddoc/druntime/core/sys/windows/lmwksta.html#PWKSTA_TRANSPORT_INFO_0"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.lzexpand","name":"core.sys.windows.lzexpand","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/lzexpand.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"CopyLZFile","package":"druntime","parentType":"","signature":"LONG CopyLZFile(INT,  INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/CopyLZFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZDone","package":"druntime","parentType":"","signature":"void LZDone()","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZStart","package":"druntime","parentType":"","signature":"INT LZStart()","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"GetExpandedNameA","package":"druntime","parentType":"","signature":"INT GetExpandedNameA(LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/lzexpand/GetExpandedNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"GetExpandedNameW","package":"druntime","parentType":"","signature":"INT GetExpandedNameW(LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/lzexpand/GetExpandedNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZClose","package":"druntime","parentType":"","signature":"void LZClose(INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZCopy","package":"druntime","parentType":"","signature":"LONG LZCopy(INT,  INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZInit","package":"druntime","parentType":"","signature":"INT LZInit(INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZOpenFileA","package":"druntime","parentType":"","signature":"INT LZOpenFileA(LPSTR,  LPOFSTRUCT,  WORD)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZOpenFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZOpenFileW","package":"druntime","parentType":"","signature":"INT LZOpenFileW(LPWSTR,  LPOFSTRUCT,  WORD)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZOpenFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZRead","package":"druntime","parentType":"","signature":"INT LZRead(INT,  LPSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.lzexpand","name":"LZSeek","package":"druntime","parentType":"","signature":"LONG LZSeek(INT,  LONG,  INT)","url":"/ddoc/druntime/core/sys/windows/lzexpand/LZSeek.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mapi","name":"core.sys.windows.mapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPILogon","package":"druntime","parentType":"","signature":"ULONG MAPILogon(ULONG_PTR,  LPSTR,  LPSTR,  FLAGS,  ULONG,  LPLHANDLE)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPILogon.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPISendMail","package":"druntime","parentType":"","signature":"ULONG MAPISendMail(LHANDLE,  ULONG_PTR,  lpMapiMessage,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPISendMail.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPISendDocuments","package":"druntime","parentType":"","signature":"ULONG MAPISendDocuments(ULONG_PTR,  LPSTR,  LPSTR,  LPSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPISendDocuments.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIReadMail","package":"druntime","parentType":"","signature":"ULONG MAPIReadMail(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG,  lpMapiMessage *)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIReadMail.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIFindNext","package":"druntime","parentType":"","signature":"ULONG MAPIFindNext(LHANDLE,  ULONG_PTR,  LPSTR,  LPSTR,  FLAGS,  ULONG,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIFindNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIResolveName","package":"druntime","parentType":"","signature":"ULONG MAPIResolveName(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG,\n       lpMapiRecipDesc *)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIResolveName.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIAddress","package":"druntime","parentType":"","signature":"ULONG MAPIAddress(LHANDLE,  ULONG_PTR,  LPSTR,  ULONG,  LPSTR,  ULONG,\n       lpMapiRecipDesc,  FLAGS,  ULONG,  LPULONG,  lpMapiRecipDesc *)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIFreeBuffer","package":"druntime","parentType":"","signature":"ULONG MAPIFreeBuffer(LPVOID)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIFreeBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIDetails","package":"druntime","parentType":"","signature":"ULONG MAPIDetails(LHANDLE,  ULONG_PTR,  lpMapiRecipDesc,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIDetails.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPISaveMail","package":"druntime","parentType":"","signature":"ULONG MAPISaveMail(LHANDLE,  ULONG_PTR,  lpMapiMessage lpszMessage,  FLAGS,\n       ULONG,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPISaveMail.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIDeleteMail","package":"druntime","parentType":"","signature":"ULONG MAPIDeleteMail(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIDeleteMail.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPILogoff","package":"druntime","parentType":"","signature":"ULONG MAPILogoff(LHANDLE,  ULONG_PTR,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPILogoff.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPIGetNetscapeVersion","package":"druntime","parentType":"","signature":"ULONG MAPIGetNetscapeVersion()","url":"/ddoc/druntime/core/sys/windows/mapi/MAPIGetNetscapeVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.mapi","name":"MAPI_NSCP_SynchronizeClient","package":"druntime","parentType":"","signature":"ULONG MAPI_NSCP_SynchronizeClient(LHANDLE,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi/MAPI_NSCP_SynchronizeClient.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"FLAGS","package":"druntime","parentType":"","signature":"FLAGS = uint","url":"/ddoc/druntime/core/sys/windows/mapi.html#FLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPULONG","package":"druntime","parentType":"","signature":"LPULONG = uint *","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPULONG"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LHANDLE","package":"druntime","parentType":"","signature":"LHANDLE = ULONG_PTR","url":"/ddoc/druntime/core/sys/windows/mapi.html#LHANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPLHANDLE","package":"druntime","parentType":"","signature":"LPLHANDLE = ULONG_PTR *","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPLHANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.mapi","name":"MapiRecipDesc","package":"druntime","parentType":"","signature":"MapiRecipDesc","url":"/ddoc/druntime/core/sys/windows/mapi.html#MapiRecipDesc"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"lpMapiRecipDesc","package":"druntime","parentType":"","signature":"lpMapiRecipDesc = MapiRecipDesc *","url":"/ddoc/druntime/core/sys/windows/mapi.html#lpMapiRecipDesc"},{"doc":"","kind":"struct","module":"core.sys.windows.mapi","name":"MapiFileDesc","package":"druntime","parentType":"","signature":"MapiFileDesc","url":"/ddoc/druntime/core/sys/windows/mapi.html#MapiFileDesc"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"lpMapiFileDesc","package":"druntime","parentType":"","signature":"lpMapiFileDesc = MapiFileDesc *","url":"/ddoc/druntime/core/sys/windows/mapi.html#lpMapiFileDesc"},{"doc":"","kind":"struct","module":"core.sys.windows.mapi","name":"MapiFileTagExt","package":"druntime","parentType":"","signature":"MapiFileTagExt","url":"/ddoc/druntime/core/sys/windows/mapi.html#MapiFileTagExt"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"lpMapiFileTagExt","package":"druntime","parentType":"","signature":"lpMapiFileTagExt = MapiFileTagExt *","url":"/ddoc/druntime/core/sys/windows/mapi.html#lpMapiFileTagExt"},{"doc":"","kind":"struct","module":"core.sys.windows.mapi","name":"MapiMessage","package":"druntime","parentType":"","signature":"MapiMessage","url":"/ddoc/druntime/core/sys/windows/mapi.html#MapiMessage"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"lpMapiMessage","package":"druntime","parentType":"","signature":"lpMapiMessage = MapiMessage *","url":"/ddoc/druntime/core/sys/windows/mapi.html#lpMapiMessage"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPILOGON","package":"druntime","parentType":"","signature":"LPMAPILOGON = ULONG function(ULONG_PTR,  LPSTR,  LPSTR,  FLAGS,  ULONG,  LPLHANDLE)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPILOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPISENDMAIL","package":"druntime","parentType":"","signature":"LPMAPISENDMAIL = ULONG function(LHANDLE,  ULONG_PTR,  lpMapiMessage,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPISENDMAIL"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPISENDDOCUMENTS","package":"druntime","parentType":"","signature":"LPMAPISENDDOCUMENTS = ULONG function(ULONG_PTR,  LPSTR,  LPSTR,  LPSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPISENDDOCUMENTS"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIREADMAIL","package":"druntime","parentType":"","signature":"LPMAPIREADMAIL = ULONG function(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG,  lpMapiMessage *)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIREADMAIL"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIFINDNEXT","package":"druntime","parentType":"","signature":"LPMAPIFINDNEXT = ULONG function(LHANDLE,  ULONG_PTR,  LPSTR,  LPSTR,  FLAGS,  ULONG,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIFINDNEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIRESOLVENAME","package":"druntime","parentType":"","signature":"LPMAPIRESOLVENAME = ULONG function(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG,\n       lpMapiRecipDesc *)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIRESOLVENAME"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIADDRESS","package":"druntime","parentType":"","signature":"LPMAPIADDRESS = ULONG function(LHANDLE,  ULONG_PTR,  LPSTR,  ULONG,  LPSTR,  ULONG,\n       lpMapiRecipDesc,  FLAGS,  ULONG,  LPULONG,  lpMapiRecipDesc *)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIFREEBUFFER","package":"druntime","parentType":"","signature":"LPMAPIFREEBUFFER = ULONG function(LPVOID lpv)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIFREEBUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIDETAILS","package":"druntime","parentType":"","signature":"LPMAPIDETAILS = ULONG function(LHANDLE,  ULONG_PTR,  lpMapiRecipDesc,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIDETAILS"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPISAVEMAIL","package":"druntime","parentType":"","signature":"LPMAPISAVEMAIL = ULONG function(LHANDLE,  ULONG_PTR,  lpMapiMessage,  FLAGS,  ULONG,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPISAVEMAIL"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPIDELETEMAIL","package":"druntime","parentType":"","signature":"LPMAPIDELETEMAIL = ULONG function(LHANDLE,  ULONG_PTR,  LPSTR,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPIDELETEMAIL"},{"doc":"","kind":"alias","module":"core.sys.windows.mapi","name":"LPMAPILOGOFF","package":"druntime","parentType":"","signature":"LPMAPILOGOFF = ULONG function(LHANDLE,  ULONG_PTR,  FLAGS,  ULONG)","url":"/ddoc/druntime/core/sys/windows/mapi.html#LPMAPILOGOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_LOGON_UI","package":"druntime","parentType":"","signature":"MAPI_LOGON_UI","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_LOGON_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_NEW_SESSION","package":"druntime","parentType":"","signature":"MAPI_NEW_SESSION","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_NEW_SESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_FORCE_DOWNLOAD","package":"druntime","parentType":"","signature":"MAPI_FORCE_DOWNLOAD","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_FORCE_DOWNLOAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_LOGOFF_SHARED","package":"druntime","parentType":"","signature":"MAPI_LOGOFF_SHARED","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_LOGOFF_SHARED"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_LOGOFF_UI","package":"druntime","parentType":"","signature":"MAPI_LOGOFF_UI","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_LOGOFF_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_DIALOG","package":"druntime","parentType":"","signature":"MAPI_DIALOG","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_DIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_UNREAD_ONLY","package":"druntime","parentType":"","signature":"MAPI_UNREAD_ONLY","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_UNREAD_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_LONG_MSGID","package":"druntime","parentType":"","signature":"MAPI_LONG_MSGID","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_LONG_MSGID"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_GUARANTEE_FIFO","package":"druntime","parentType":"","signature":"MAPI_GUARANTEE_FIFO","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_GUARANTEE_FIFO"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_ENVELOPE_ONLY","package":"druntime","parentType":"","signature":"MAPI_ENVELOPE_ONLY","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_ENVELOPE_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_PEEK","package":"druntime","parentType":"","signature":"MAPI_PEEK","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_PEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_BODY_AS_FILE","package":"druntime","parentType":"","signature":"MAPI_BODY_AS_FILE","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_BODY_AS_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_SUPPRESS_ATTACH","package":"druntime","parentType":"","signature":"MAPI_SUPPRESS_ATTACH","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_SUPPRESS_ATTACH"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_AB_NOMODIFY","package":"druntime","parentType":"","signature":"MAPI_AB_NOMODIFY","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_AB_NOMODIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_OLE","package":"druntime","parentType":"","signature":"MAPI_OLE","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_OLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_OLE_STATIC","package":"druntime","parentType":"","signature":"MAPI_OLE_STATIC","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_OLE_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_UNREAD","package":"druntime","parentType":"","signature":"MAPI_UNREAD","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_UNREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_RECEIPT_REQUESTED","package":"druntime","parentType":"","signature":"MAPI_RECEIPT_REQUESTED","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_RECEIPT_REQUESTED"},{"doc":"","kind":"variable","module":"core.sys.windows.mapi","name":"MAPI_SENT","package":"druntime","parentType":"","signature":"MAPI_SENT","url":"/ddoc/druntime/core/sys/windows/mapi.html#MAPI_SENT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mciavi","name":"core.sys.windows.mciavi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mciavi.html"},{"doc":"","kind":"variable","module":"core.sys.windows.mciavi","name":"MCI_MCIAVI_PLAY_WINDOW","package":"druntime","parentType":"","signature":"MCI_MCIAVI_PLAY_WINDOW","url":"/ddoc/druntime/core/sys/windows/mciavi.html#MCI_MCIAVI_PLAY_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mciavi","name":"MCI_MCIAVI_PLAY_FULLSCREEN","package":"druntime","parentType":"","signature":"MCI_MCIAVI_PLAY_FULLSCREEN","url":"/ddoc/druntime/core/sys/windows/mciavi.html#MCI_MCIAVI_PLAY_FULLSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mciavi","name":"MCI_MCIAVI_PLAY_FULLBY2","package":"druntime","parentType":"","signature":"MCI_MCIAVI_PLAY_FULLBY2","url":"/ddoc/druntime/core/sys/windows/mciavi.html#MCI_MCIAVI_PLAY_FULLBY2"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mcx","name":"core.sys.windows.mcx","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mcx.html"},{"doc":"","kind":"struct","module":"core.sys.windows.mcx","name":"MODEMDEVCAPS","package":"druntime","parentType":"","signature":"MODEMDEVCAPS","url":"/ddoc/druntime/core/sys/windows/mcx.html#MODEMDEVCAPS"},{"doc":"","kind":"method","module":"core.sys.windows.mcx","name":"abVariablePortion","package":"druntime","parentType":"MODEMDEVCAPS","signature":"BYTE * abVariablePortion()","url":"/ddoc/druntime/core/sys/windows/mcx/MODEMDEVCAPS.abVariablePortion.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mcx","name":"PMODEMDEVCAPS","package":"druntime","parentType":"","signature":"PMODEMDEVCAPS = MODEMDEVCAPS *","url":"/ddoc/druntime/core/sys/windows/mcx.html#PMODEMDEVCAPS"},{"doc":"","kind":"struct","module":"core.sys.windows.mcx","name":"MODEMSETTINGS","package":"druntime","parentType":"","signature":"MODEMSETTINGS","url":"/ddoc/druntime/core/sys/windows/mcx.html#MODEMSETTINGS"},{"doc":"","kind":"method","module":"core.sys.windows.mcx","name":"abVariablePortion","package":"druntime","parentType":"MODEMSETTINGS","signature":"BYTE * abVariablePortion()","url":"/ddoc/druntime/core/sys/windows/mcx/MODEMSETTINGS.abVariablePortion.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mcx","name":"PMODEMSETTINGS","package":"druntime","parentType":"","signature":"PMODEMSETTINGS = MODEMSETTINGS *","url":"/ddoc/druntime/core/sys/windows/mcx.html#PMODEMSETTINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.mcx","name":"DIALOPTION_BILLING","package":"druntime","parentType":"","signature":"DWORD DIALOPTION_BILLING","url":"/ddoc/druntime/core/sys/windows/mcx.html#DIALOPTION_BILLING"},{"doc":"","kind":"variable","module":"core.sys.windows.mcx","name":"MDMVOLFLAG_LOW","package":"druntime","parentType":"","signature":"DWORD MDMVOLFLAG_LOW","url":"/ddoc/druntime/core/sys/windows/mcx.html#MDMVOLFLAG_LOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mcx","name":"MDMSPKRFLAG_OFF","package":"druntime","parentType":"","signature":"DWORD MDMSPKRFLAG_OFF","url":"/ddoc/druntime/core/sys/windows/mcx.html#MDMSPKRFLAG_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mcx","name":"MDM_COMPRESSION","package":"druntime","parentType":"","signature":"DWORD MDM_COMPRESSION","url":"/ddoc/druntime/core/sys/windows/mcx.html#MDM_COMPRESSION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mgmtapi","name":"core.sys.windows.mgmtapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mgmtapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrClose","package":"druntime","parentType":"","signature":"BOOL SnmpMgrClose(LPSNMP_MGR_SESSION)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrCtl","package":"druntime","parentType":"","signature":"BOOL SnmpMgrCtl(LPSNMP_MGR_SESSION,  DWORD,  LPVOID,  DWORD,  LPVOID,  DWORD,\n       LPDWORD)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrCtl.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrGetTrap","package":"druntime","parentType":"","signature":"BOOL SnmpMgrGetTrap(AsnObjectIdentifier *,  AsnNetworkAddress *,\n       AsnInteger *,  AsnInteger *,  AsnTimeticks *,  SnmpVarBindList *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrGetTrap.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrGetTrapEx","package":"druntime","parentType":"","signature":"BOOL SnmpMgrGetTrapEx(AsnObjectIdentifier *,  AsnNetworkAddress *,\n       AsnNetworkAddress *,  AsnInteger *,  AsnInteger *,  AsnOctetString *,\n       AsnTimeticks *,  SnmpVarBindList *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrGetTrapEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrOidToStr","package":"druntime","parentType":"","signature":"BOOL SnmpMgrOidToStr(AsnObjectIdentifier *,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrOidToStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrOpen","package":"druntime","parentType":"","signature":"LPSNMP_MGR_SESSION SnmpMgrOpen(LPSTR,  LPSTR,  INT,  INT)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrRequest","package":"druntime","parentType":"","signature":"INT SnmpMgrRequest(LPSNMP_MGR_SESSION,  BYTE,  SnmpVarBindList *,\n       AsnInteger *,  AsnInteger *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrRequest.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrStrToOid","package":"druntime","parentType":"","signature":"BOOL SnmpMgrStrToOid(LPSTR,  AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrStrToOid.html"},{"doc":"","kind":"function","module":"core.sys.windows.mgmtapi","name":"SnmpMgrTrapListen","package":"druntime","parentType":"","signature":"BOOL SnmpMgrTrapListen(HANDLE *)","url":"/ddoc/druntime/core/sys/windows/mgmtapi/SnmpMgrTrapListen.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mgmtapi","name":"LPSNMP_MGR_SESSION","package":"druntime","parentType":"","signature":"LPSNMP_MGR_SESSION = PVOID","url":"/ddoc/druntime/core/sys/windows/mgmtapi.html#LPSNMP_MGR_SESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.mgmtapi","name":"MGMCTL_SETAGENTPORT","package":"druntime","parentType":"","signature":"MGMCTL_SETAGENTPORT","url":"/ddoc/druntime/core/sys/windows/mgmtapi.html#MGMCTL_SETAGENTPORT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mmsystem","name":"core.sys.windows.mmsystem","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mmsystem.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MEVT_EVENTTYPE","package":"druntime","parentType":"","signature":"BYTE MEVT_EVENTTYPE()(DWORD x)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MEVT_EVENTTYPE.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MEVT_EVENTPARM","package":"druntime","parentType":"","signature":"DWORD MEVT_EVENTPARM()(DWORD x)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MEVT_EVENTPARM.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_HMS_HOUR","package":"druntime","parentType":"","signature":"BYTE MCI_HMS_HOUR()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_HMS_HOUR.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_HMS_MINUTE","package":"druntime","parentType":"","signature":"BYTE MCI_HMS_MINUTE()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_HMS_MINUTE.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_HMS_SECOND","package":"druntime","parentType":"","signature":"BYTE MCI_HMS_SECOND()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_HMS_SECOND.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MAKE_HMS","package":"druntime","parentType":"","signature":"DWORD MCI_MAKE_HMS()(BYTE h,  BYTE m,  BYTE s)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MAKE_HMS.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MAKE_MSF","package":"druntime","parentType":"","signature":"DWORD MCI_MAKE_MSF()(BYTE m,  BYTE s,  BYTE f)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MAKE_MSF.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MAKE_TMSF","package":"druntime","parentType":"","signature":"DWORD MCI_MAKE_TMSF(BYTE t,  BYTE m,  BYTE s,  BYTE f)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MAKE_TMSF.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MSF_MINUTE","package":"druntime","parentType":"","signature":"BYTE MCI_MSF_MINUTE()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MSF_MINUTE.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MSF_SECOND","package":"druntime","parentType":"","signature":"BYTE MCI_MSF_SECOND()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MSF_SECOND.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_MSF_FRAME","package":"druntime","parentType":"","signature":"BYTE MCI_MSF_FRAME(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_MSF_FRAME.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_TMSF_TRACK","package":"druntime","parentType":"","signature":"BYTE MCI_TMSF_TRACK()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_TMSF_TRACK.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_TMSF_MINUTE","package":"druntime","parentType":"","signature":"BYTE MCI_TMSF_MINUTE()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_TMSF_MINUTE.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_TMSF_SECOND","package":"druntime","parentType":"","signature":"BYTE MCI_TMSF_SECOND()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_TMSF_SECOND.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"MCI_TMSF_FRAME","package":"druntime","parentType":"","signature":"BYTE MCI_TMSF_FRAME()(DWORD t)","url":"/ddoc/druntime/core/sys/windows/mmsystem/MCI_TMSF_FRAME.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"DIBINDEX","package":"druntime","parentType":"","signature":"LONG DIBINDEX(WORD n)","url":"/ddoc/druntime/core/sys/windows/mmsystem/DIBINDEX.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"CloseDriver","package":"druntime","parentType":"","signature":"LRESULT CloseDriver(HDRVR,  LONG,  LONG)","url":"/ddoc/druntime/core/sys/windows/mmsystem/CloseDriver.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"OpenDriver","package":"druntime","parentType":"","signature":"HDRVR OpenDriver(LPCWSTR,  LPCWSTR,  LONG)","url":"/ddoc/druntime/core/sys/windows/mmsystem/OpenDriver.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"SendDriverMessage","package":"druntime","parentType":"","signature":"LRESULT SendDriverMessage(HDRVR,  UINT,  LONG,  LONG)","url":"/ddoc/druntime/core/sys/windows/mmsystem/SendDriverMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"DrvGetModuleHandle","package":"druntime","parentType":"","signature":"HMODULE DrvGetModuleHandle(HDRVR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/DrvGetModuleHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"GetDriverModuleHandle","package":"druntime","parentType":"","signature":"HMODULE GetDriverModuleHandle(HDRVR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/GetDriverModuleHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"DefDriverProc","package":"druntime","parentType":"","signature":"LRESULT DefDriverProc(DWORD_PTR,  HDRVR,  UINT,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/DefDriverProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmsystemGetVersion","package":"druntime","parentType":"","signature":"UINT mmsystemGetVersion()","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmsystemGetVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"sndPlaySoundA","package":"druntime","parentType":"","signature":"BOOL sndPlaySoundA(LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/sndPlaySoundA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"sndPlaySoundW","package":"druntime","parentType":"","signature":"BOOL sndPlaySoundW(LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/sndPlaySoundW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"PlaySoundA","package":"druntime","parentType":"","signature":"BOOL PlaySoundA(LPCSTR,  HMODULE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/PlaySoundA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"PlaySoundW","package":"druntime","parentType":"","signature":"BOOL PlaySoundW(LPCWSTR,  HMODULE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/PlaySoundW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetNumDevs","package":"druntime","parentType":"","signature":"UINT waveOutGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetDevCapsA(UINT_PTR,  LPWAVEOUTCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetDevCapsW(UINT_PTR,  LPWAVEOUTCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetVolume","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetVolume(HWAVEOUT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutSetVolume","package":"druntime","parentType":"","signature":"MMRESULT waveOutSetVolume(HWAVEOUT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutSetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetErrorTextA","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetErrorTextA(MMRESULT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetErrorTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetErrorTextW","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetErrorTextW(MMRESULT,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetErrorTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutOpen","package":"druntime","parentType":"","signature":"MMRESULT waveOutOpen(LPHWAVEOUT,  UINT,  LPCWAVEFORMATEX,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutClose","package":"druntime","parentType":"","signature":"MMRESULT waveOutClose(HWAVEOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutPrepareHeader","package":"druntime","parentType":"","signature":"MMRESULT waveOutPrepareHeader(HWAVEOUT,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutPrepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutUnprepareHeader","package":"druntime","parentType":"","signature":"MMRESULT waveOutUnprepareHeader(HWAVEOUT,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutUnprepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutWrite","package":"druntime","parentType":"","signature":"MMRESULT waveOutWrite(HWAVEOUT,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutWrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutPause","package":"druntime","parentType":"","signature":"MMRESULT waveOutPause(HWAVEOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutPause.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutRestart","package":"druntime","parentType":"","signature":"MMRESULT waveOutRestart(HWAVEOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutRestart.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutReset","package":"druntime","parentType":"","signature":"MMRESULT waveOutReset(HWAVEOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutReset.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutBreakLoop","package":"druntime","parentType":"","signature":"MMRESULT waveOutBreakLoop(HWAVEOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutBreakLoop.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetPosition","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetPosition(HWAVEOUT,  LPMMTIME,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetPitch","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetPitch(HWAVEOUT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetPitch.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutSetPitch","package":"druntime","parentType":"","signature":"MMRESULT waveOutSetPitch(HWAVEOUT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutSetPitch.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetPlaybackRate","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetPlaybackRate(HWAVEOUT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetPlaybackRate.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutSetPlaybackRate","package":"druntime","parentType":"","signature":"MMRESULT waveOutSetPlaybackRate(HWAVEOUT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutSetPlaybackRate.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutGetID","package":"druntime","parentType":"","signature":"MMRESULT waveOutGetID(HWAVEOUT,  LPUINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutGetID.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveOutMessage","package":"druntime","parentType":"","signature":"MMRESULT waveOutMessage(HWAVEOUT,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveOutMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetNumDevs","package":"druntime","parentType":"","signature":"UINT waveInGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT waveInGetDevCapsA(UINT_PTR,  LPWAVEINCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT waveInGetDevCapsW(UINT_PTR,  LPWAVEINCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetErrorTextA","package":"druntime","parentType":"","signature":"MMRESULT waveInGetErrorTextA(MMRESULT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetErrorTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetErrorTextW","package":"druntime","parentType":"","signature":"MMRESULT waveInGetErrorTextW(MMRESULT,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetErrorTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInOpen","package":"druntime","parentType":"","signature":"MMRESULT waveInOpen(LPHWAVEIN,  UINT,  LPCWAVEFORMATEX,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInClose","package":"druntime","parentType":"","signature":"MMRESULT waveInClose(HWAVEIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInPrepareHeader","package":"druntime","parentType":"","signature":"MMRESULT waveInPrepareHeader(HWAVEIN,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInPrepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInUnprepareHeader","package":"druntime","parentType":"","signature":"MMRESULT waveInUnprepareHeader(HWAVEIN,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInUnprepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInAddBuffer","package":"druntime","parentType":"","signature":"MMRESULT waveInAddBuffer(HWAVEIN,  LPWAVEHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInAddBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInStart","package":"druntime","parentType":"","signature":"MMRESULT waveInStart(HWAVEIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInStop","package":"druntime","parentType":"","signature":"MMRESULT waveInStop(HWAVEIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInReset","package":"druntime","parentType":"","signature":"MMRESULT waveInReset(HWAVEIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInReset.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetPosition","package":"druntime","parentType":"","signature":"MMRESULT waveInGetPosition(HWAVEIN,  LPMMTIME,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInGetID","package":"druntime","parentType":"","signature":"MMRESULT waveInGetID(HWAVEIN,  LPUINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInGetID.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"waveInMessage","package":"druntime","parentType":"","signature":"MMRESULT waveInMessage(HWAVEIN,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/waveInMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetNumDevs","package":"druntime","parentType":"","signature":"UINT midiOutGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamOpen","package":"druntime","parentType":"","signature":"MMRESULT midiStreamOpen(LPHMIDISTRM,  LPUINT,  DWORD,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamClose","package":"druntime","parentType":"","signature":"MMRESULT midiStreamClose(HMIDISTRM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamProperty","package":"druntime","parentType":"","signature":"MMRESULT midiStreamProperty(HMIDISTRM,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamProperty.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamPosition","package":"druntime","parentType":"","signature":"MMRESULT midiStreamPosition(HMIDISTRM,  LPMMTIME,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamOut","package":"druntime","parentType":"","signature":"MMRESULT midiStreamOut(HMIDISTRM,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamOut.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamPause","package":"druntime","parentType":"","signature":"MMRESULT midiStreamPause(HMIDISTRM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamPause.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamRestart","package":"druntime","parentType":"","signature":"MMRESULT midiStreamRestart(HMIDISTRM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamRestart.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiStreamStop","package":"druntime","parentType":"","signature":"MMRESULT midiStreamStop(HMIDISTRM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiStreamStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiConnect","package":"druntime","parentType":"","signature":"MMRESULT midiConnect(HMIDI,  HMIDIOUT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiDisconnect","package":"druntime","parentType":"","signature":"MMRESULT midiDisconnect(HMIDI,  HMIDIOUT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiDisconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetDevCapsA(UINT_PTR,  LPMIDIOUTCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetDevCapsW(UINT_PTR,  LPMIDIOUTCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetVolume","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetVolume(HMIDIOUT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutSetVolume","package":"druntime","parentType":"","signature":"MMRESULT midiOutSetVolume(HMIDIOUT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutSetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetErrorTextA","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetErrorTextA(MMRESULT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetErrorTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetErrorTextW","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetErrorTextW(MMRESULT,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetErrorTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutOpen","package":"druntime","parentType":"","signature":"MMRESULT midiOutOpen(LPHMIDIOUT,  UINT,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutClose","package":"druntime","parentType":"","signature":"MMRESULT midiOutClose(HMIDIOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutPrepareHeader","package":"druntime","parentType":"","signature":"MMRESULT midiOutPrepareHeader(HMIDIOUT,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutPrepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutUnprepareHeader","package":"druntime","parentType":"","signature":"MMRESULT midiOutUnprepareHeader(HMIDIOUT,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutUnprepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutShortMsg","package":"druntime","parentType":"","signature":"MMRESULT midiOutShortMsg(HMIDIOUT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutShortMsg.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutLongMsg","package":"druntime","parentType":"","signature":"MMRESULT midiOutLongMsg(HMIDIOUT,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutLongMsg.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutReset","package":"druntime","parentType":"","signature":"MMRESULT midiOutReset(HMIDIOUT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutReset.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutCachePatches","package":"druntime","parentType":"","signature":"MMRESULT midiOutCachePatches(HMIDIOUT,  UINT,  LPWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutCachePatches.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutCacheDrumPatches","package":"druntime","parentType":"","signature":"MMRESULT midiOutCacheDrumPatches(HMIDIOUT,  UINT,  LPWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutCacheDrumPatches.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutGetID","package":"druntime","parentType":"","signature":"MMRESULT midiOutGetID(HMIDIOUT,  LPUINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutGetID.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiOutMessage","package":"druntime","parentType":"","signature":"MMRESULT midiOutMessage(HMIDIOUT,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiOutMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetNumDevs","package":"druntime","parentType":"","signature":"UINT midiInGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT midiInGetDevCapsA(UINT_PTR,  LPMIDIINCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT midiInGetDevCapsW(UINT_PTR,  LPMIDIINCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetErrorTextA","package":"druntime","parentType":"","signature":"MMRESULT midiInGetErrorTextA(MMRESULT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetErrorTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetErrorTextW","package":"druntime","parentType":"","signature":"MMRESULT midiInGetErrorTextW(MMRESULT,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetErrorTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInOpen","package":"druntime","parentType":"","signature":"MMRESULT midiInOpen(LPHMIDIIN,  UINT,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInClose","package":"druntime","parentType":"","signature":"MMRESULT midiInClose(HMIDIIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInPrepareHeader","package":"druntime","parentType":"","signature":"MMRESULT midiInPrepareHeader(HMIDIIN,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInPrepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInUnprepareHeader","package":"druntime","parentType":"","signature":"MMRESULT midiInUnprepareHeader(HMIDIIN,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInUnprepareHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInAddBuffer","package":"druntime","parentType":"","signature":"MMRESULT midiInAddBuffer(HMIDIIN,  LPMIDIHDR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInAddBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInStart","package":"druntime","parentType":"","signature":"MMRESULT midiInStart(HMIDIIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInStop","package":"druntime","parentType":"","signature":"MMRESULT midiInStop(HMIDIIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInReset","package":"druntime","parentType":"","signature":"MMRESULT midiInReset(HMIDIIN)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInReset.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInGetID","package":"druntime","parentType":"","signature":"MMRESULT midiInGetID(HMIDIIN,  LPUINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInGetID.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"midiInMessage","package":"druntime","parentType":"","signature":"MMRESULT midiInMessage(HMIDIIN,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/midiInMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxGetNumDevs","package":"druntime","parentType":"","signature":"UINT auxGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT auxGetDevCapsA(UINT_PTR,  LPAUXCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT auxGetDevCapsW(UINT_PTR,  LPAUXCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxSetVolume","package":"druntime","parentType":"","signature":"MMRESULT auxSetVolume(UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxSetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxGetVolume","package":"druntime","parentType":"","signature":"MMRESULT auxGetVolume(UINT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxGetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"auxOutMessage","package":"druntime","parentType":"","signature":"MMRESULT auxOutMessage(UINT,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/auxOutMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetNumDevs","package":"druntime","parentType":"","signature":"UINT mixerGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT mixerGetDevCapsA(UINT_PTR,  LPMIXERCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT mixerGetDevCapsW(UINT_PTR,  LPMIXERCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerOpen","package":"druntime","parentType":"","signature":"MMRESULT mixerOpen(LPHMIXER,  UINT,  DWORD_PTR,  DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerClose","package":"druntime","parentType":"","signature":"MMRESULT mixerClose(HMIXER)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerMessage","package":"druntime","parentType":"","signature":"DWORD mixerMessage(HMIXER,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetLineInfoA","package":"druntime","parentType":"","signature":"MMRESULT mixerGetLineInfoA(HMIXEROBJ,  LPMIXERLINEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetLineInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetLineInfoW","package":"druntime","parentType":"","signature":"MMRESULT mixerGetLineInfoW(HMIXEROBJ,  LPMIXERLINEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetLineInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetID","package":"druntime","parentType":"","signature":"MMRESULT mixerGetID(HMIXEROBJ,  PUINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetID.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetLineControlsA","package":"druntime","parentType":"","signature":"MMRESULT mixerGetLineControlsA(HMIXEROBJ,  LPMIXERLINECONTROLSA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetLineControlsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetLineControlsW","package":"druntime","parentType":"","signature":"MMRESULT mixerGetLineControlsW(HMIXEROBJ,  LPMIXERLINECONTROLSW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetLineControlsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetControlDetailsA","package":"druntime","parentType":"","signature":"MMRESULT mixerGetControlDetailsA(HMIXEROBJ,  LPMIXERCONTROLDETAILS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetControlDetailsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerGetControlDetailsW","package":"druntime","parentType":"","signature":"MMRESULT mixerGetControlDetailsW(HMIXEROBJ,  LPMIXERCONTROLDETAILS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerGetControlDetailsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mixerSetControlDetails","package":"druntime","parentType":"","signature":"MMRESULT mixerSetControlDetails(HMIXEROBJ,  LPMIXERCONTROLDETAILS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mixerSetControlDetails.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeGetSystemTime","package":"druntime","parentType":"","signature":"MMRESULT timeGetSystemTime(LPMMTIME,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeGetSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeGetTime","package":"druntime","parentType":"","signature":"DWORD timeGetTime()","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeGetTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeSetEvent","package":"druntime","parentType":"","signature":"MMRESULT timeSetEvent(UINT,  UINT,  LPTIMECALLBACK,  DWORD_PTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeSetEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeKillEvent","package":"druntime","parentType":"","signature":"MMRESULT timeKillEvent(UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeKillEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeGetDevCaps","package":"druntime","parentType":"","signature":"MMRESULT timeGetDevCaps(LPTIMECAPS,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeGetDevCaps.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeBeginPeriod","package":"druntime","parentType":"","signature":"MMRESULT timeBeginPeriod(UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeBeginPeriod.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"timeEndPeriod","package":"druntime","parentType":"","signature":"MMRESULT timeEndPeriod(UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/timeEndPeriod.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetNumDevs","package":"druntime","parentType":"","signature":"UINT joyGetNumDevs()","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetNumDevs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetDevCapsA","package":"druntime","parentType":"","signature":"MMRESULT joyGetDevCapsA(UINT_PTR,  LPJOYCAPSA,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetDevCapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetDevCapsW","package":"druntime","parentType":"","signature":"MMRESULT joyGetDevCapsW(UINT_PTR,  LPJOYCAPSW,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetDevCapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetPos","package":"druntime","parentType":"","signature":"MMRESULT joyGetPos(UINT,  LPJOYINFO)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetPosEx","package":"druntime","parentType":"","signature":"MMRESULT joyGetPosEx(UINT,  LPJOYINFOEX)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetPosEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyGetThreshold","package":"druntime","parentType":"","signature":"MMRESULT joyGetThreshold(UINT,  LPUINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyGetThreshold.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joyReleaseCapture","package":"druntime","parentType":"","signature":"MMRESULT joyReleaseCapture(UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joyReleaseCapture.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joySetCapture","package":"druntime","parentType":"","signature":"MMRESULT joySetCapture(HWND,  UINT,  UINT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joySetCapture.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"joySetThreshold","package":"druntime","parentType":"","signature":"MMRESULT joySetThreshold(UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/joySetThreshold.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioStringToFOURCCA","package":"druntime","parentType":"","signature":"FOURCC mmioStringToFOURCCA(LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioStringToFOURCCA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioStringToFOURCCW","package":"druntime","parentType":"","signature":"FOURCC mmioStringToFOURCCW(LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioStringToFOURCCW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioInstallIOProcA","package":"druntime","parentType":"","signature":"LPMMIOPROC mmioInstallIOProcA(FOURCC,  LPMMIOPROC,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioInstallIOProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioInstallIOProcW","package":"druntime","parentType":"","signature":"LPMMIOPROC mmioInstallIOProcW(FOURCC,  LPMMIOPROC,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioInstallIOProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioOpenA","package":"druntime","parentType":"","signature":"HMMIO mmioOpenA(LPSTR,  LPMMIOINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioOpenA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioOpenW","package":"druntime","parentType":"","signature":"HMMIO mmioOpenW(LPWSTR,  LPMMIOINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioOpenW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioRenameA","package":"druntime","parentType":"","signature":"MMRESULT mmioRenameA(LPCSTR,  LPCSTR,  LPCMMIOINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioRenameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioRenameW","package":"druntime","parentType":"","signature":"MMRESULT mmioRenameW(LPCWSTR,  LPCWSTR,  LPCMMIOINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioRenameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioClose","package":"druntime","parentType":"","signature":"MMRESULT mmioClose(HMMIO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioRead","package":"druntime","parentType":"","signature":"LONG mmioRead(HMMIO,  HPSTR,  LONG)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioWrite","package":"druntime","parentType":"","signature":"LONG mmioWrite(HMMIO,  LPCSTR,  LONG)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioWrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioSeek","package":"druntime","parentType":"","signature":"LONG mmioSeek(HMMIO,  LONG,  int)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioSeek.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioGetInfo","package":"druntime","parentType":"","signature":"MMRESULT mmioGetInfo(HMMIO,  LPMMIOINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioSetInfo","package":"druntime","parentType":"","signature":"MMRESULT mmioSetInfo(HMMIO,  LPCMMIOINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioSetBuffer","package":"druntime","parentType":"","signature":"MMRESULT mmioSetBuffer(HMMIO,  LPSTR,  LONG,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioSetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioFlush","package":"druntime","parentType":"","signature":"MMRESULT mmioFlush(HMMIO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioFlush.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioAdvance","package":"druntime","parentType":"","signature":"MMRESULT mmioAdvance(HMMIO,  LPMMIOINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioAdvance.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioSendMessage","package":"druntime","parentType":"","signature":"LRESULT mmioSendMessage(HMMIO,  UINT,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioSendMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioDescend","package":"druntime","parentType":"","signature":"MMRESULT mmioDescend(HMMIO,  LPMMCKINFO,  const(MMCKINFO) *,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioDescend.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioAscend","package":"druntime","parentType":"","signature":"MMRESULT mmioAscend(HMMIO,  LPMMCKINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioAscend.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mmioCreateChunk","package":"druntime","parentType":"","signature":"MMRESULT mmioCreateChunk(HMMIO,  LPMMCKINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mmioCreateChunk.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciSendCommandA","package":"druntime","parentType":"","signature":"MCIERROR mciSendCommandA(MCIDEVICEID,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciSendCommandA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciSendCommandW","package":"druntime","parentType":"","signature":"MCIERROR mciSendCommandW(MCIDEVICEID,  UINT,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciSendCommandW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciSendStringA","package":"druntime","parentType":"","signature":"MCIERROR mciSendStringA(LPCSTR,  LPSTR,  UINT,  HWND)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciSendStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciSendStringW","package":"druntime","parentType":"","signature":"MCIERROR mciSendStringW(LPCWSTR,  LPWSTR,  UINT,  HWND)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciSendStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetDeviceIDA","package":"druntime","parentType":"","signature":"MCIDEVICEID mciGetDeviceIDA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetDeviceIDA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetDeviceIDW","package":"druntime","parentType":"","signature":"MCIDEVICEID mciGetDeviceIDW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetDeviceIDW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetDeviceIDFromElementIDA","package":"druntime","parentType":"","signature":"MCIDEVICEID mciGetDeviceIDFromElementIDA(DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetDeviceIDFromElementIDA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetDeviceIDFromElementIDW","package":"druntime","parentType":"","signature":"MCIDEVICEID mciGetDeviceIDFromElementIDW(DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetDeviceIDFromElementIDW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetErrorStringA","package":"druntime","parentType":"","signature":"BOOL mciGetErrorStringA(MCIERROR,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetErrorStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetErrorStringW","package":"druntime","parentType":"","signature":"BOOL mciGetErrorStringW(MCIERROR,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetErrorStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciSetYieldProc","package":"druntime","parentType":"","signature":"BOOL mciSetYieldProc(MCIDEVICEID,  YIELDPROC,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciSetYieldProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetCreatorTask","package":"druntime","parentType":"","signature":"HTASK mciGetCreatorTask(MCIDEVICEID)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetCreatorTask.html"},{"doc":"","kind":"function","module":"core.sys.windows.mmsystem","name":"mciGetYieldProc","package":"druntime","parentType":"","signature":"YIELDPROC mciGetYieldProc(MCIDEVICEID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem/mciGetYieldProc.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"MCIERROR","package":"druntime","parentType":"","signature":"MCIERROR = DWORD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCIERROR"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"MCIDEVICEID","package":"druntime","parentType":"","signature":"MCIDEVICEID = UINT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCIDEVICEID"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"YIELDPROC","package":"druntime","parentType":"","signature":"YIELDPROC = UINT function (MCIDEVICEID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#YIELDPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"MMVERSION","package":"druntime","parentType":"","signature":"MMVERSION = UINT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMVERSION"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"MMRESULT","package":"druntime","parentType":"","signature":"MMRESULT = UINT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMRESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MMTIME","package":"druntime","parentType":"","signature":"MMTIME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMMTIME","package":"druntime","parentType":"","signature":"PMMTIME = MMTIME *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMMTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HDRVR","package":"druntime","parentType":"","signature":"HDRVR = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HDRVR"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"DRVCONFIGINFO","package":"druntime","parentType":"","signature":"DRVCONFIGINFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRVCONFIGINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PDRVCONFIGINFO","package":"druntime","parentType":"","signature":"PDRVCONFIGINFO = DRVCONFIGINFO *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PDRVCONFIGINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"DRVCONFIGINFOEX","package":"druntime","parentType":"","signature":"DRVCONFIGINFOEX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRVCONFIGINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PDRVCONFIGINFOEX","package":"druntime","parentType":"","signature":"PDRVCONFIGINFOEX = DRVCONFIGINFOEX *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PDRVCONFIGINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HWAVE","package":"druntime","parentType":"","signature":"HWAVE = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HWAVE"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HWAVEIN","package":"druntime","parentType":"","signature":"HWAVEIN = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HWAVEIN"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HWAVEOUT","package":"druntime","parentType":"","signature":"HWAVEOUT = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HWAVEOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHWAVEIN","package":"druntime","parentType":"","signature":"LPHWAVEIN = HWAVEIN *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHWAVEIN"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHWAVEOUT","package":"druntime","parentType":"","signature":"LPHWAVEOUT = HWAVEOUT *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHWAVEOUT"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEHDR","package":"druntime","parentType":"","signature":"WAVEHDR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEHDR"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEHDR","package":"druntime","parentType":"","signature":"PWAVEHDR = WAVEHDR *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEHDR"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEOUTCAPSA","package":"druntime","parentType":"","signature":"WAVEOUTCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEOUTCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEOUTCAPSA","package":"druntime","parentType":"","signature":"PWAVEOUTCAPSA = WAVEOUTCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEOUTCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEOUTCAPSW","package":"druntime","parentType":"","signature":"WAVEOUTCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEOUTCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEOUTCAPSW","package":"druntime","parentType":"","signature":"PWAVEOUTCAPSW = WAVEOUTCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEOUTCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEINCAPSA","package":"druntime","parentType":"","signature":"WAVEINCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEINCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEINCAPSA","package":"druntime","parentType":"","signature":"PWAVEINCAPSA = WAVEINCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEINCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEINCAPSW","package":"druntime","parentType":"","signature":"WAVEINCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEINCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEINCAPSW","package":"druntime","parentType":"","signature":"PWAVEINCAPSW = WAVEINCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEINCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEFORMAT","package":"druntime","parentType":"","signature":"WAVEFORMAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEFORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEFORMAT","package":"druntime","parentType":"","signature":"PWAVEFORMAT = WAVEFORMAT *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"PCMWAVEFORMAT","package":"druntime","parentType":"","signature":"PCMWAVEFORMAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PCMWAVEFORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PPCMWAVEFORMAT","package":"druntime","parentType":"","signature":"PPCMWAVEFORMAT = PCMWAVEFORMAT *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PPCMWAVEFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"WAVEFORMATEX","package":"druntime","parentType":"","signature":"WAVEFORMATEX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVEFORMATEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEFORMATEX","package":"druntime","parentType":"","signature":"PWAVEFORMATEX = WAVEFORMATEX *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEFORMATEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPCWAVEFORMATEX","package":"druntime","parentType":"","signature":"LPCWAVEFORMATEX = const(WAVEFORMATEX) *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPCWAVEFORMATEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIDI","package":"druntime","parentType":"","signature":"HMIDI = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIDI"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIDIIN","package":"druntime","parentType":"","signature":"HMIDIIN = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIDIIN"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIDIOUT","package":"druntime","parentType":"","signature":"HMIDIOUT = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIDIOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIDISTRM","package":"druntime","parentType":"","signature":"HMIDISTRM = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIDISTRM"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIDI","package":"druntime","parentType":"","signature":"LPHMIDI = HMIDI *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIDI"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIDIIN","package":"druntime","parentType":"","signature":"LPHMIDIIN = HMIDIIN *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIDIIN"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIDIOUT","package":"druntime","parentType":"","signature":"LPHMIDIOUT = HMIDIOUT *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIDIOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIDISTRM","package":"druntime","parentType":"","signature":"LPHMIDISTRM = HMIDISTRM *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIDISTRM"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PATCHARRAY","package":"druntime","parentType":"","signature":"PATCHARRAY = WORD[MIDIPATCHSIZE]","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PATCHARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPPATCHARRAY","package":"druntime","parentType":"","signature":"LPPATCHARRAY = WORD *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPPATCHARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"KEYARRAY","package":"druntime","parentType":"","signature":"KEYARRAY = WORD[MIDIPATCHSIZE]","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#KEYARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPKEYARRAY","package":"druntime","parentType":"","signature":"LPKEYARRAY = WORD *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPKEYARRAY"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIOUTCAPSA","package":"druntime","parentType":"","signature":"MIDIOUTCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIOUTCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIOUTCAPSA","package":"druntime","parentType":"","signature":"PMIDIOUTCAPSA = MIDIOUTCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIOUTCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIOUTCAPSW","package":"druntime","parentType":"","signature":"MIDIOUTCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIOUTCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIOUTCAPSW","package":"druntime","parentType":"","signature":"PMIDIOUTCAPSW = MIDIOUTCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIOUTCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIINCAPSA","package":"druntime","parentType":"","signature":"MIDIINCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIINCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIINCAPSA","package":"druntime","parentType":"","signature":"PMIDIINCAPSA = MIDIINCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIINCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIINCAPSW","package":"druntime","parentType":"","signature":"MIDIINCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIINCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIINCAPSW","package":"druntime","parentType":"","signature":"PMIDIINCAPSW = MIDIINCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIINCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIHDR","package":"druntime","parentType":"","signature":"MIDIHDR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIHDR"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIHDR","package":"druntime","parentType":"","signature":"PMIDIHDR = MIDIHDR *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIHDR"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIEVENT","package":"druntime","parentType":"","signature":"MIDIEVENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIEVENT"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDISTRMBUFFVER","package":"druntime","parentType":"","signature":"MIDISTRMBUFFVER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDISTRMBUFFVER"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIPROPTIMEDIV","package":"druntime","parentType":"","signature":"MIDIPROPTIMEDIV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROPTIMEDIV"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMIDIPROPTIMEDIV","package":"druntime","parentType":"","signature":"LPMIDIPROPTIMEDIV = MIDIPROPTIMEDIV *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMIDIPROPTIMEDIV"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIDIPROPTEMPO","package":"druntime","parentType":"","signature":"MIDIPROPTEMPO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROPTEMPO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMIDIPROPTEMPO","package":"druntime","parentType":"","signature":"LPMIDIPROPTEMPO = MIDIPROPTEMPO *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMIDIPROPTEMPO"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"AUXCAPSA","package":"druntime","parentType":"","signature":"AUXCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PAUXCAPSA","package":"druntime","parentType":"","signature":"PAUXCAPSA = AUXCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PAUXCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"AUXCAPSW","package":"druntime","parentType":"","signature":"AUXCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PAUXCAPSW","package":"druntime","parentType":"","signature":"PAUXCAPSW = AUXCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PAUXCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIXEROBJ","package":"druntime","parentType":"","signature":"HMIXEROBJ = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIXEROBJ"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIXEROBJ","package":"druntime","parentType":"","signature":"LPHMIXEROBJ = HMIXEROBJ *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIXEROBJ"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMIXER","package":"druntime","parentType":"","signature":"HMIXER = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMIXER"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPHMIXER","package":"druntime","parentType":"","signature":"LPHMIXER = HMIXER *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPHMIXER"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCAPSA","package":"druntime","parentType":"","signature":"MIXERCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCAPSA","package":"druntime","parentType":"","signature":"PMIXERCAPSA = MIXERCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCAPSW","package":"druntime","parentType":"","signature":"MIXERCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCAPSW","package":"druntime","parentType":"","signature":"PMIXERCAPSW = MIXERCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERLINEA","package":"druntime","parentType":"","signature":"MIXERLINEA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINEA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINEA","package":"druntime","parentType":"","signature":"PMIXERLINEA = MIXERLINEA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINEA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERLINEW","package":"druntime","parentType":"","signature":"MIXERLINEW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINEW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINEW","package":"druntime","parentType":"","signature":"PMIXERLINEW = MIXERLINEW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINEW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLA","package":"druntime","parentType":"","signature":"MIXERCONTROLA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLA","package":"druntime","parentType":"","signature":"PMIXERCONTROLA = MIXERCONTROLA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLW","package":"druntime","parentType":"","signature":"MIXERCONTROLW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLW","package":"druntime","parentType":"","signature":"PMIXERCONTROLW = MIXERCONTROLW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERLINECONTROLSA","package":"druntime","parentType":"","signature":"MIXERLINECONTROLSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINECONTROLSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINECONTROLSA","package":"druntime","parentType":"","signature":"PMIXERLINECONTROLSA = MIXERLINECONTROLSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINECONTROLSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERLINECONTROLSW","package":"druntime","parentType":"","signature":"MIXERLINECONTROLSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINECONTROLSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINECONTROLSW","package":"druntime","parentType":"","signature":"PMIXERLINECONTROLSW = MIXERLINECONTROLSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINECONTROLSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS = MIXERCONTROLDETAILS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS_LISTTEXTA","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS_LISTTEXTA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS_LISTTEXTA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_LISTTEXTA","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_LISTTEXTA = MIXERCONTROLDETAILS_LISTTEXTA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_LISTTEXTA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS_LISTTEXTW","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS_LISTTEXTW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS_LISTTEXTW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_LISTTEXTW","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_LISTTEXTW = MIXERCONTROLDETAILS_LISTTEXTW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_LISTTEXTW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS_BOOLEAN","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS_BOOLEAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS_BOOLEAN"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_BOOLEAN","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_BOOLEAN = MIXERCONTROLDETAILS_BOOLEAN *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_BOOLEAN"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS_SIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS_SIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS_SIGNED"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_SIGNED","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_SIGNED = MIXERCONTROLDETAILS_SIGNED *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_SIGNED"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MIXERCONTROLDETAILS_UNSIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROLDETAILS_UNSIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROLDETAILS_UNSIGNED"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_UNSIGNED","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_UNSIGNED = MIXERCONTROLDETAILS_UNSIGNED *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_UNSIGNED"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPTIMECALLBACK","package":"druntime","parentType":"","signature":"LPTIMECALLBACK = void  function (UINT,  UINT,  DWORD_PTR,  DWORD_PTR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPTIMECALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"TIMECAPS","package":"druntime","parentType":"","signature":"TIMECAPS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIMECAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PTIMECAPS","package":"druntime","parentType":"","signature":"PTIMECAPS = TIMECAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PTIMECAPS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"JOYCAPSA","package":"druntime","parentType":"","signature":"JOYCAPSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PJOYCAPSA","package":"druntime","parentType":"","signature":"PJOYCAPSA = JOYCAPSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PJOYCAPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"JOYCAPSW","package":"druntime","parentType":"","signature":"JOYCAPSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PJOYCAPSW","package":"druntime","parentType":"","signature":"PJOYCAPSW = JOYCAPSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PJOYCAPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"JOYINFO","package":"druntime","parentType":"","signature":"JOYINFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PJOYINFO","package":"druntime","parentType":"","signature":"PJOYINFO = JOYINFO *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PJOYINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"JOYINFOEX","package":"druntime","parentType":"","signature":"JOYINFOEX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PJOYINFOEX","package":"druntime","parentType":"","signature":"PJOYINFOEX = JOYINFOEX *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PJOYINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"FOURCC","package":"druntime","parentType":"","signature":"FOURCC = DWORD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#FOURCC"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HPSTR","package":"druntime","parentType":"","signature":"HPSTR = char *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HPSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"HMMIO","package":"druntime","parentType":"","signature":"HMMIO = HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#HMMIO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMMIOPROC","package":"druntime","parentType":"","signature":"LPMMIOPROC = LRESULT function (LPSTR,  UINT,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMMIOPROC"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MMIOINFO","package":"druntime","parentType":"","signature":"MMIOINFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMMIOINFO","package":"druntime","parentType":"","signature":"PMMIOINFO = MMIOINFO *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMMIOINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPCMMIOINFO","package":"druntime","parentType":"","signature":"LPCMMIOINFO = const(MMIOINFO) *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPCMMIOINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MMCKINFO","package":"druntime","parentType":"","signature":"MMCKINFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMCKINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMMCKINFO","package":"druntime","parentType":"","signature":"PMMCKINFO = MMCKINFO *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMMCKINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPCMMCKINFO","package":"druntime","parentType":"","signature":"LPCMMCKINFO = const(MMCKINFO) *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPCMMCKINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_GENERIC_PARMS","package":"druntime","parentType":"","signature":"MCI_GENERIC_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GENERIC_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_GENERIC_PARMS","package":"druntime","parentType":"","signature":"PMCI_GENERIC_PARMS = MCI_GENERIC_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_GENERIC_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_PARMSA","package":"druntime","parentType":"","signature":"MCI_OPEN_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OPEN_PARMSA","package":"druntime","parentType":"","signature":"PMCI_OPEN_PARMSA = MCI_OPEN_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OPEN_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_PARMSW","package":"druntime","parentType":"","signature":"MCI_OPEN_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OPEN_PARMSW","package":"druntime","parentType":"","signature":"PMCI_OPEN_PARMSW = MCI_OPEN_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OPEN_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_PLAY_PARMS","package":"druntime","parentType":"","signature":"MCI_PLAY_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_PLAY_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_PLAY_PARMS","package":"druntime","parentType":"","signature":"PMCI_PLAY_PARMS = MCI_PLAY_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_PLAY_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SEEK_PARMS","package":"druntime","parentType":"","signature":"MCI_SEEK_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEEK_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SEEK_PARMS","package":"druntime","parentType":"","signature":"PMCI_SEEK_PARMS = MCI_SEEK_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SEEK_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_PARMS","package":"druntime","parentType":"","signature":"MCI_STATUS_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_STATUS_PARMS","package":"druntime","parentType":"","signature":"PMCI_STATUS_PARMS = MCI_STATUS_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_STATUS_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_INFO_PARMSA","package":"druntime","parentType":"","signature":"MCI_INFO_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMCI_INFO_PARMSA","package":"druntime","parentType":"","signature":"LPMCI_INFO_PARMSA = MCI_INFO_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMCI_INFO_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_INFO_PARMSW","package":"druntime","parentType":"","signature":"MCI_INFO_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMCI_INFO_PARMSW","package":"druntime","parentType":"","signature":"LPMCI_INFO_PARMSW = MCI_INFO_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMCI_INFO_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_PARMS","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_GETDEVCAPS_PARMS","package":"druntime","parentType":"","signature":"PMCI_GETDEVCAPS_PARMS = MCI_GETDEVCAPS_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_GETDEVCAPS_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_PARMSA","package":"druntime","parentType":"","signature":"MCI_SYSINFO_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SYSINFO_PARMSA","package":"druntime","parentType":"","signature":"PMCI_SYSINFO_PARMSA = MCI_SYSINFO_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SYSINFO_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_PARMSW","package":"druntime","parentType":"","signature":"MCI_SYSINFO_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SYSINFO_PARMSW","package":"druntime","parentType":"","signature":"PMCI_SYSINFO_PARMSW = MCI_SYSINFO_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SYSINFO_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SET_PARMS","package":"druntime","parentType":"","signature":"MCI_SET_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SET_PARMS","package":"druntime","parentType":"","signature":"PMCI_SET_PARMS = MCI_SET_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SET_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_BREAK_PARMS","package":"druntime","parentType":"","signature":"MCI_BREAK_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_BREAK_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_BREAK_PARMS","package":"druntime","parentType":"","signature":"PMCI_BREAK_PARMS = MCI_BREAK_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_BREAK_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SAVE_PARMSA","package":"druntime","parentType":"","signature":"MCI_SAVE_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SAVE_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SAVE_PARMSA","package":"druntime","parentType":"","signature":"PMCI_SAVE_PARMSA = MCI_SAVE_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SAVE_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SAVE_PARMSW","package":"druntime","parentType":"","signature":"MCI_SAVE_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SAVE_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SAVE_PARMSW","package":"druntime","parentType":"","signature":"PMCI_SAVE_PARMSW = MCI_SAVE_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SAVE_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_LOAD_PARMSA","package":"druntime","parentType":"","signature":"MCI_LOAD_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_LOAD_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_LOAD_PARMSA","package":"druntime","parentType":"","signature":"PMCI_LOAD_PARMSA = MCI_LOAD_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_LOAD_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_LOAD_PARMSW","package":"druntime","parentType":"","signature":"MCI_LOAD_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_LOAD_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_LOAD_PARMSW","package":"druntime","parentType":"","signature":"PMCI_LOAD_PARMSW = MCI_LOAD_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_LOAD_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_RECORD_PARMS","package":"druntime","parentType":"","signature":"MCI_RECORD_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_RECORD_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMCI_RECORD_PARMS","package":"druntime","parentType":"","signature":"LPMCI_RECORD_PARMS = MCI_RECORD_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMCI_RECORD_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_PARMS","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_VD_PLAY_PARMS","package":"druntime","parentType":"","signature":"PMCI_VD_PLAY_PARMS = MCI_VD_PLAY_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_VD_PLAY_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_VD_STEP_PARMS","package":"druntime","parentType":"","signature":"MCI_VD_STEP_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STEP_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_VD_STEP_PARMS","package":"druntime","parentType":"","signature":"PMCI_VD_STEP_PARMS = MCI_VD_STEP_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_VD_STEP_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_VD_ESCAPE_PARMSA","package":"druntime","parentType":"","signature":"MCI_VD_ESCAPE_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_ESCAPE_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_VD_ESCAPE_PARMSA","package":"druntime","parentType":"","signature":"PMCI_VD_ESCAPE_PARMSA = MCI_VD_ESCAPE_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_VD_ESCAPE_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_VD_ESCAPE_PARMSW","package":"druntime","parentType":"","signature":"MCI_VD_ESCAPE_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_ESCAPE_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_VD_ESCAPE_PARMSW","package":"druntime","parentType":"","signature":"PMCI_VD_ESCAPE_PARMSW = MCI_VD_ESCAPE_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_VD_ESCAPE_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_OPEN_PARMSA","package":"druntime","parentType":"","signature":"MCI_WAVE_OPEN_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_OPEN_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_WAVE_OPEN_PARMSA","package":"druntime","parentType":"","signature":"PMCI_WAVE_OPEN_PARMSA = MCI_WAVE_OPEN_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_WAVE_OPEN_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_OPEN_PARMSW","package":"druntime","parentType":"","signature":"MCI_WAVE_OPEN_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_OPEN_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_WAVE_OPEN_PARMSW","package":"druntime","parentType":"","signature":"PMCI_WAVE_OPEN_PARMSW = MCI_WAVE_OPEN_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_WAVE_OPEN_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_DELETE_PARMS","package":"druntime","parentType":"","signature":"MCI_WAVE_DELETE_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_DELETE_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_WAVE_DELETE_PARMS","package":"druntime","parentType":"","signature":"PMCI_WAVE_DELETE_PARMS = MCI_WAVE_DELETE_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_WAVE_DELETE_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_PARMS","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_WAVE_SET_PARMS","package":"druntime","parentType":"","signature":"PMCI_WAVE_SET_PARMS = MCI_WAVE_SET_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_WAVE_SET_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_PARMS","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SEQ_SET_PARMS","package":"druntime","parentType":"","signature":"PMCI_SEQ_SET_PARMS = MCI_SEQ_SET_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SEQ_SET_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_OPEN_PARMSA","package":"druntime","parentType":"","signature":"MCI_ANIM_OPEN_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_OPEN_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_OPEN_PARMSA","package":"druntime","parentType":"","signature":"PMCI_ANIM_OPEN_PARMSA = MCI_ANIM_OPEN_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_OPEN_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_OPEN_PARMSW","package":"druntime","parentType":"","signature":"MCI_ANIM_OPEN_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_OPEN_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_OPEN_PARMSW","package":"druntime","parentType":"","signature":"PMCI_ANIM_OPEN_PARMSW = MCI_ANIM_OPEN_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_OPEN_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_PARMS","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_PLAY_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_PLAY_PARMS = MCI_ANIM_PLAY_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_PLAY_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STEP_PARMS","package":"druntime","parentType":"","signature":"MCI_ANIM_STEP_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STEP_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_STEP_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_STEP_PARMS = MCI_ANIM_STEP_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_STEP_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_PARMSA","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_WINDOW_PARMSA","package":"druntime","parentType":"","signature":"PMCI_ANIM_WINDOW_PARMSA = MCI_ANIM_WINDOW_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_WINDOW_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_PARMSW","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_WINDOW_PARMSW","package":"druntime","parentType":"","signature":"PMCI_ANIM_WINDOW_PARMSW = MCI_ANIM_WINDOW_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_WINDOW_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_RECT_PARMS","package":"druntime","parentType":"","signature":"MCI_ANIM_RECT_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_RECT_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_RECT_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_RECT_PARMS = MCI_ANIM_RECT_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_RECT_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_UPDATE_PARMS","package":"druntime","parentType":"","signature":"MCI_ANIM_UPDATE_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_UPDATE_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_UPDATE_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_UPDATE_PARMS = MCI_ANIM_UPDATE_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_UPDATE_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_OPEN_PARMSA","package":"druntime","parentType":"","signature":"MCI_OVLY_OPEN_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_OPEN_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_OPEN_PARMSA","package":"druntime","parentType":"","signature":"PMCI_OVLY_OPEN_PARMSA = MCI_OVLY_OPEN_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_OPEN_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_OPEN_PARMSW","package":"druntime","parentType":"","signature":"MCI_OVLY_OPEN_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_OPEN_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_OPEN_PARMSW","package":"druntime","parentType":"","signature":"PMCI_OVLY_OPEN_PARMSW = MCI_OVLY_OPEN_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_OPEN_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_PARMSA","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_WINDOW_PARMSA","package":"druntime","parentType":"","signature":"PMCI_OVLY_WINDOW_PARMSA = MCI_OVLY_WINDOW_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_WINDOW_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_PARMSW","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_WINDOW_PARMSW","package":"druntime","parentType":"","signature":"PMCI_OVLY_WINDOW_PARMSW = MCI_OVLY_WINDOW_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_WINDOW_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_RECT_PARMS","package":"druntime","parentType":"","signature":"MCI_OVLY_RECT_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_RECT_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_RECT_PARMS","package":"druntime","parentType":"","signature":"PMCI_OVLY_RECT_PARMS = MCI_OVLY_RECT_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_RECT_PARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_SAVE_PARMSA","package":"druntime","parentType":"","signature":"MCI_OVLY_SAVE_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_SAVE_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_SAVE_PARMSA","package":"druntime","parentType":"","signature":"PMCI_OVLY_SAVE_PARMSA = MCI_OVLY_SAVE_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_SAVE_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_SAVE_PARMSW","package":"druntime","parentType":"","signature":"MCI_OVLY_SAVE_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_SAVE_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_SAVE_PARMSW","package":"druntime","parentType":"","signature":"PMCI_OVLY_SAVE_PARMSW = MCI_OVLY_SAVE_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_SAVE_PARMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_LOAD_PARMSA","package":"druntime","parentType":"","signature":"MCI_OVLY_LOAD_PARMSA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_LOAD_PARMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_LOAD_PARMSA","package":"druntime","parentType":"","signature":"PMCI_OVLY_LOAD_PARMSA = MCI_OVLY_LOAD_PARMSA *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_LOAD_PARMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_LOAD_PARMSW","package":"druntime","parentType":"","signature":"MCI_OVLY_LOAD_PARMSW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_LOAD_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_LOAD_PARMSW","package":"druntime","parentType":"","signature":"PMCI_OVLY_LOAD_PARMSW = MCI_OVLY_LOAD_PARMSW *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_LOAD_PARMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEOUTCAPS","package":"druntime","parentType":"","signature":"PWAVEOUTCAPS = WAVEOUTCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEOUTCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PWAVEINCAPS","package":"druntime","parentType":"","signature":"PWAVEINCAPS = WAVEINCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PWAVEINCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIOUTCAPS","package":"druntime","parentType":"","signature":"PMIDIOUTCAPS = MIDIOUTCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIOUTCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIDIINCAPS","package":"druntime","parentType":"","signature":"PMIDIINCAPS = MIDIINCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIDIINCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PAUXCAPS","package":"druntime","parentType":"","signature":"PAUXCAPS = AUXCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PAUXCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCAPS","package":"druntime","parentType":"","signature":"PMIXERCAPS = MIXERCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINE","package":"druntime","parentType":"","signature":"PMIXERLINE = MIXERLINE *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINE"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROL","package":"druntime","parentType":"","signature":"PMIXERCONTROL = MIXERCONTROL *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROL"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERLINECONTROLS","package":"druntime","parentType":"","signature":"PMIXERLINECONTROLS = MIXERLINECONTROLS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERLINECONTROLS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMIXERCONTROLDETAILS_LISTTEXT","package":"druntime","parentType":"","signature":"PMIXERCONTROLDETAILS_LISTTEXT = MIXERCONTROLDETAILS_LISTTEXT *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMIXERCONTROLDETAILS_LISTTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PJOYCAPS","package":"druntime","parentType":"","signature":"PJOYCAPS = JOYCAPS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PJOYCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OPEN_PARMS","package":"druntime","parentType":"","signature":"PMCI_OPEN_PARMS = MCI_OPEN_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OPEN_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"LPMCI_INFO_PARMS","package":"druntime","parentType":"","signature":"LPMCI_INFO_PARMS = MCI_INFO_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#LPMCI_INFO_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SYSINFO_PARMS","package":"druntime","parentType":"","signature":"PMCI_SYSINFO_PARMS = MCI_SYSINFO_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SYSINFO_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_SAVE_PARMS","package":"druntime","parentType":"","signature":"PMCI_SAVE_PARMS = MCI_SAVE_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_SAVE_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_LOAD_PARMS","package":"druntime","parentType":"","signature":"PMCI_LOAD_PARMS = MCI_LOAD_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_LOAD_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_VD_ESCAPE_PARMS","package":"druntime","parentType":"","signature":"PMCI_VD_ESCAPE_PARMS = MCI_VD_ESCAPE_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_VD_ESCAPE_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_WAVE_OPEN_PARMS","package":"druntime","parentType":"","signature":"PMCI_WAVE_OPEN_PARMS = MCI_WAVE_OPEN_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_WAVE_OPEN_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_OPEN_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_OPEN_PARMS = MCI_ANIM_OPEN_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_OPEN_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_ANIM_WINDOW_PARMS","package":"druntime","parentType":"","signature":"PMCI_ANIM_WINDOW_PARMS = MCI_ANIM_WINDOW_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_ANIM_WINDOW_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_OPEN_PARMS","package":"druntime","parentType":"","signature":"PMCI_OVLY_OPEN_PARMS = MCI_OVLY_OPEN_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_OPEN_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_WINDOW_PARMS","package":"druntime","parentType":"","signature":"PMCI_OVLY_WINDOW_PARMS = MCI_OVLY_WINDOW_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_WINDOW_PARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.mmsystem","name":"PMCI_OVLY_SAVE_PARMS","package":"druntime","parentType":"","signature":"PMCI_OVLY_SAVE_PARMS = MCI_OVLY_SAVE_PARMS *","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#PMCI_OVLY_SAVE_PARMS"},{"doc":"","kind":"template","module":"core.sys.windows.mmsystem","name":"MAKEFOURCC","package":"druntime","parentType":"","signature":"MAKEFOURCC(char  c0,  char  c1,  char  c2,  char  c3)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MAKEFOURCC"},{"doc":"","kind":"template","module":"core.sys.windows.mmsystem","name":"mmioFOURCC","package":"druntime","parentType":"","signature":"mmioFOURCC(char  c0,  char  c1,  char  c2,  char  c3)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#mmioFOURCC"},{"doc":"","kind":"template","module":"core.sys.windows.mmsystem","name":"sndAlias","package":"druntime","parentType":"","signature":"sndAlias(char  c0,  char  c1)","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#sndAlias"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MAXPNAMELEN","package":"druntime","parentType":"","signature":"MAXPNAMELEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MAXPNAMELEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MAXERRORLENGTH","package":"druntime","parentType":"","signature":"MAXERRORLENGTH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MAXERRORLENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MAX_JOYSTICKOEMVXDNAME","package":"druntime","parentType":"","signature":"MAX_JOYSTICKOEMVXDNAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MAX_JOYSTICKOEMVXDNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_MS","package":"druntime","parentType":"","signature":"TIME_MS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_MS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_SAMPLES","package":"druntime","parentType":"","signature":"TIME_SAMPLES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_SAMPLES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_BYTES","package":"druntime","parentType":"","signature":"TIME_BYTES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_BYTES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_SMPTE","package":"druntime","parentType":"","signature":"TIME_SMPTE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_SMPTE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_MIDI","package":"druntime","parentType":"","signature":"TIME_MIDI","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_MIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_TICKS","package":"druntime","parentType":"","signature":"TIME_TICKS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_TICKS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMSYSERR_BASE","package":"druntime","parentType":"","signature":"MMSYSERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMSYSERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVERR_BASE","package":"druntime","parentType":"","signature":"WAVERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIERR_BASE","package":"druntime","parentType":"","signature":"MIDIERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIMERR_BASE","package":"druntime","parentType":"","signature":"TIMERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIMERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYERR_BASE","package":"druntime","parentType":"","signature":"JOYERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCIERR_BASE","package":"druntime","parentType":"","signature":"MCIERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCIERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERR_BASE","package":"druntime","parentType":"","signature":"MIXERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STRING_OFFSET","package":"druntime","parentType":"","signature":"MCI_STRING_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STRING_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_OFFSET","package":"druntime","parentType":"","signature":"MCI_VD_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CD_OFFSET","package":"druntime","parentType":"","signature":"MCI_CD_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CD_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_OFFSET","package":"druntime","parentType":"","signature":"MCI_WAVE_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_OFFSET","package":"druntime","parentType":"","signature":"MCI_SEQ_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_RESERVED","package":"druntime","parentType":"","signature":"DRV_RESERVED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_USER","package":"druntime","parentType":"","signature":"DRV_USER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRVCNF_CANCEL","package":"druntime","parentType":"","signature":"DRVCNF_CANCEL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRVCNF_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRVCNF_OK","package":"druntime","parentType":"","signature":"DRVCNF_OK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRVCNF_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRVCNF_RESTART","package":"druntime","parentType":"","signature":"DRVCNF_RESTART","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRVCNF_RESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_CANCEL","package":"druntime","parentType":"","signature":"DRV_CANCEL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_OK","package":"druntime","parentType":"","signature":"DRV_OK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_RESTART","package":"druntime","parentType":"","signature":"DRV_RESTART","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_RESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_MCI_FIRST","package":"druntime","parentType":"","signature":"DRV_MCI_FIRST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_MCI_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"DRV_MCI_LAST","package":"druntime","parentType":"","signature":"DRV_MCI_LAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#DRV_MCI_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_TYPEMASK","package":"druntime","parentType":"","signature":"CALLBACK_TYPEMASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_TYPEMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_NULL","package":"druntime","parentType":"","signature":"CALLBACK_NULL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_WINDOW","package":"druntime","parentType":"","signature":"CALLBACK_WINDOW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_TASK","package":"druntime","parentType":"","signature":"CALLBACK_TASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_TASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_FUNCTION","package":"druntime","parentType":"","signature":"CALLBACK_FUNCTION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_THREAD","package":"druntime","parentType":"","signature":"CALLBACK_THREAD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_THREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CALLBACK_EVENT","package":"druntime","parentType":"","signature":"CALLBACK_EVENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CALLBACK_EVENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_SYNC","package":"druntime","parentType":"","signature":"SND_SYNC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_SYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ASYNC","package":"druntime","parentType":"","signature":"SND_ASYNC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ASYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_NODEFAULT","package":"druntime","parentType":"","signature":"SND_NODEFAULT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_NODEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_MEMORY","package":"druntime","parentType":"","signature":"SND_MEMORY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_LOOP","package":"druntime","parentType":"","signature":"SND_LOOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_LOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_NOSTOP","package":"druntime","parentType":"","signature":"SND_NOSTOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_NOSTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_NOWAIT","package":"druntime","parentType":"","signature":"SND_NOWAIT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_NOWAIT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS","package":"druntime","parentType":"","signature":"SND_ALIAS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_ID","package":"druntime","parentType":"","signature":"SND_ALIAS_ID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_FILENAME","package":"druntime","parentType":"","signature":"SND_FILENAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_FILENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_RESOURCE","package":"druntime","parentType":"","signature":"SND_RESOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_PURGE","package":"druntime","parentType":"","signature":"SND_PURGE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_PURGE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_APPLICATION","package":"druntime","parentType":"","signature":"SND_APPLICATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_APPLICATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_START","package":"druntime","parentType":"","signature":"SND_ALIAS_START","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_START"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMASTERISK","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMASTERISK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMASTERISK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMQUESTION","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMQUESTION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMQUESTION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMHAND","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMHAND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMHAND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMEXIT","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMEXIT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMEXIT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMSTART","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMSTART","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMSTART"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMWELCOME","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMWELCOME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMWELCOME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMEXCLAMATION","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMEXCLAMATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMEXCLAMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SND_ALIAS_SYSTEMDEFAULT","package":"druntime","parentType":"","signature":"SND_ALIAS_SYSTEMDEFAULT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SND_ALIAS_SYSTEMDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WOM_OPEN","package":"druntime","parentType":"","signature":"WOM_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WOM_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WOM_CLOSE","package":"druntime","parentType":"","signature":"WOM_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WOM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WOM_DONE","package":"druntime","parentType":"","signature":"WOM_DONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WOM_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WIM_OPEN","package":"druntime","parentType":"","signature":"WIM_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WIM_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WIM_CLOSE","package":"druntime","parentType":"","signature":"WIM_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WIM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WIM_DATA","package":"druntime","parentType":"","signature":"WIM_DATA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WIM_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_MAPPER","package":"druntime","parentType":"","signature":"UINT WAVE_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_QUERY","package":"druntime","parentType":"","signature":"WAVE_FORMAT_QUERY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_ALLOWSYNC","package":"druntime","parentType":"","signature":"WAVE_ALLOWSYNC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_ALLOWSYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_MAPPED","package":"druntime","parentType":"","signature":"WAVE_MAPPED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_MAPPED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_DIRECT","package":"druntime","parentType":"","signature":"WAVE_FORMAT_DIRECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_DIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_DIRECT_QUERY","package":"druntime","parentType":"","signature":"WAVE_FORMAT_DIRECT_QUERY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_DIRECT_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WHDR_DONE","package":"druntime","parentType":"","signature":"WHDR_DONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WHDR_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WHDR_PREPARED","package":"druntime","parentType":"","signature":"WHDR_PREPARED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WHDR_PREPARED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WHDR_BEGINLOOP","package":"druntime","parentType":"","signature":"WHDR_BEGINLOOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WHDR_BEGINLOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WHDR_ENDLOOP","package":"druntime","parentType":"","signature":"WHDR_ENDLOOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WHDR_ENDLOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WHDR_INQUEUE","package":"druntime","parentType":"","signature":"WHDR_INQUEUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WHDR_INQUEUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_PITCH","package":"druntime","parentType":"","signature":"WAVECAPS_PITCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_PITCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_PLAYBACKRATE","package":"druntime","parentType":"","signature":"WAVECAPS_PLAYBACKRATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_PLAYBACKRATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_VOLUME","package":"druntime","parentType":"","signature":"WAVECAPS_VOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_LRVOLUME","package":"druntime","parentType":"","signature":"WAVECAPS_LRVOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_LRVOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_SYNC","package":"druntime","parentType":"","signature":"WAVECAPS_SYNC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_SYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_SAMPLEACCURATE","package":"druntime","parentType":"","signature":"WAVECAPS_SAMPLEACCURATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_SAMPLEACCURATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVECAPS_DIRECTSOUND","package":"druntime","parentType":"","signature":"WAVECAPS_DIRECTSOUND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVECAPS_DIRECTSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_INVALIDFORMAT","package":"druntime","parentType":"","signature":"WAVE_INVALIDFORMAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_INVALIDFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_1M08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_1M08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_1M08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_1S08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_1S08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_1S08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_1M16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_1M16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_1M16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_1S16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_1S16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_1S16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_2M08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_2M08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_2M08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_2S08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_2S08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_2S08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_2M16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_2M16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_2M16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_2S16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_2S16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_2S16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_4M08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_4M08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_4M08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_4S08","package":"druntime","parentType":"","signature":"WAVE_FORMAT_4S08","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_4S08"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_4M16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_4M16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_4M16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_4S16","package":"druntime","parentType":"","signature":"WAVE_FORMAT_4S16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_4S16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"WAVE_FORMAT_PCM","package":"druntime","parentType":"","signature":"WAVE_FORMAT_PCM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#WAVE_FORMAT_PCM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIPATCHSIZE","package":"druntime","parentType":"","signature":"MIDIPATCHSIZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPATCHSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_OPEN","package":"druntime","parentType":"","signature":"MIM_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_CLOSE","package":"druntime","parentType":"","signature":"MIM_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_DATA","package":"druntime","parentType":"","signature":"MIM_DATA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_LONGDATA","package":"druntime","parentType":"","signature":"MIM_LONGDATA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_LONGDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_ERROR","package":"druntime","parentType":"","signature":"MIM_ERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_LONGERROR","package":"druntime","parentType":"","signature":"MIM_LONGERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_LONGERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOM_OPEN","package":"druntime","parentType":"","signature":"MOM_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOM_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOM_CLOSE","package":"druntime","parentType":"","signature":"MOM_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOM_DONE","package":"druntime","parentType":"","signature":"MOM_DONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOM_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIM_MOREDATA","package":"druntime","parentType":"","signature":"MIM_MOREDATA","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIM_MOREDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOM_POSITIONCB","package":"druntime","parentType":"","signature":"MOM_POSITIONCB","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOM_POSITIONCB"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIMAPPER","package":"druntime","parentType":"","signature":"UINT MIDIMAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIMAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_MAPPER","package":"druntime","parentType":"","signature":"UINT MIDI_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_IO_STATUS","package":"druntime","parentType":"","signature":"MIDI_IO_STATUS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_IO_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_CACHE_ALL","package":"druntime","parentType":"","signature":"MIDI_CACHE_ALL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_CACHE_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_CACHE_BESTFIT","package":"druntime","parentType":"","signature":"MIDI_CACHE_BESTFIT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_CACHE_BESTFIT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_CACHE_QUERY","package":"druntime","parentType":"","signature":"MIDI_CACHE_QUERY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_CACHE_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDI_UNCACHE","package":"druntime","parentType":"","signature":"MIDI_UNCACHE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDI_UNCACHE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOD_MIDIPORT","package":"druntime","parentType":"","signature":"MOD_MIDIPORT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOD_MIDIPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOD_SYNTH","package":"druntime","parentType":"","signature":"MOD_SYNTH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOD_SYNTH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOD_SQSYNTH","package":"druntime","parentType":"","signature":"MOD_SQSYNTH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOD_SQSYNTH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOD_FMSYNTH","package":"druntime","parentType":"","signature":"MOD_FMSYNTH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOD_FMSYNTH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MOD_MAPPER","package":"druntime","parentType":"","signature":"MOD_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MOD_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDICAPS_VOLUME","package":"druntime","parentType":"","signature":"MIDICAPS_VOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDICAPS_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDICAPS_LRVOLUME","package":"druntime","parentType":"","signature":"MIDICAPS_LRVOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDICAPS_LRVOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDICAPS_CACHE","package":"druntime","parentType":"","signature":"MIDICAPS_CACHE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDICAPS_CACHE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDICAPS_STREAM","package":"druntime","parentType":"","signature":"MIDICAPS_STREAM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDICAPS_STREAM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MHDR_DONE","package":"druntime","parentType":"","signature":"MHDR_DONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MHDR_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MHDR_PREPARED","package":"druntime","parentType":"","signature":"MHDR_PREPARED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MHDR_PREPARED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MHDR_INQUEUE","package":"druntime","parentType":"","signature":"MHDR_INQUEUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MHDR_INQUEUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MHDR_ISSTRM","package":"druntime","parentType":"","signature":"MHDR_ISSTRM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MHDR_ISSTRM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_F_SHORT","package":"druntime","parentType":"","signature":"MEVT_F_SHORT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_F_SHORT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_F_LONG","package":"druntime","parentType":"","signature":"MEVT_F_LONG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_F_LONG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_F_CALLBACK","package":"druntime","parentType":"","signature":"MEVT_F_CALLBACK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_F_CALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_SHORTMSG","package":"druntime","parentType":"","signature":"MEVT_SHORTMSG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_SHORTMSG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_TEMPO","package":"druntime","parentType":"","signature":"MEVT_TEMPO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_TEMPO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_NOP","package":"druntime","parentType":"","signature":"MEVT_NOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_NOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_LONGMSG","package":"druntime","parentType":"","signature":"BYTE MEVT_LONGMSG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_LONGMSG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_COMMENT","package":"druntime","parentType":"","signature":"BYTE MEVT_COMMENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_COMMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MEVT_VERSION","package":"druntime","parentType":"","signature":"BYTE MEVT_VERSION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MEVT_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDISTRM_ERROR","package":"druntime","parentType":"","signature":"MIDISTRM_ERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDISTRM_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIPROP_SET","package":"druntime","parentType":"","signature":"MIDIPROP_SET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROP_SET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIPROP_GET","package":"druntime","parentType":"","signature":"MIDIPROP_GET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROP_GET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIPROP_TIMEDIV","package":"druntime","parentType":"","signature":"MIDIPROP_TIMEDIV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROP_TIMEDIV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIDIPROP_TEMPO","package":"druntime","parentType":"","signature":"MIDIPROP_TEMPO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIDIPROP_TEMPO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"AUX_MAPPER","package":"druntime","parentType":"","signature":"UINT AUX_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUX_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"AUXCAPS_CDAUDIO","package":"druntime","parentType":"","signature":"AUXCAPS_CDAUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPS_CDAUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"AUXCAPS_AUXIN","package":"druntime","parentType":"","signature":"AUXCAPS_AUXIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPS_AUXIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"AUXCAPS_VOLUME","package":"druntime","parentType":"","signature":"AUXCAPS_VOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPS_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"AUXCAPS_LRVOLUME","package":"druntime","parentType":"","signature":"AUXCAPS_LRVOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#AUXCAPS_LRVOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_SHORT_NAME_CHARS","package":"druntime","parentType":"","signature":"MIXER_SHORT_NAME_CHARS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_SHORT_NAME_CHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_LONG_NAME_CHARS","package":"druntime","parentType":"","signature":"MIXER_LONG_NAME_CHARS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_LONG_NAME_CHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERR_INVALLINE","package":"druntime","parentType":"","signature":"MIXERR_INVALLINE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERR_INVALLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERR_INVALCONTROL","package":"druntime","parentType":"","signature":"MIXERR_INVALCONTROL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERR_INVALCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERR_INVALVALUE","package":"druntime","parentType":"","signature":"MIXERR_INVALVALUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERR_INVALVALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERR_LASTERROR","package":"druntime","parentType":"","signature":"MIXERR_LASTERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERR_LASTERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HANDLE","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HANDLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_MIXER","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_MIXER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_MIXER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HMIXER","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HMIXER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HMIXER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_WAVEOUT","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_WAVEOUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_WAVEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HWAVEOUT","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HWAVEOUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HWAVEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_WAVEIN","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_WAVEIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_WAVEIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HWAVEIN","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HWAVEIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HWAVEIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_MIDIOUT","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_MIDIOUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_MIDIOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HMIDIOUT","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HMIDIOUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HMIDIOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_MIDIIN","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_MIDIIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_MIDIIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_HMIDIIN","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_HMIDIIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_HMIDIIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_OBJECTF_AUX","package":"druntime","parentType":"","signature":"MIXER_OBJECTF_AUX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_OBJECTF_AUX"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_LINEF_ACTIVE","package":"druntime","parentType":"","signature":"MIXERLINE_LINEF_ACTIVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_LINEF_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_LINEF_DISCONNECTED","package":"druntime","parentType":"","signature":"MIXERLINE_LINEF_DISCONNECTED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_LINEF_DISCONNECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_LINEF_SOURCE","package":"druntime","parentType":"","signature":"MIXERLINE_LINEF_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_LINEF_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_FIRST","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_FIRST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_UNDEFINED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_DIGITAL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_LINE","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_LINE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_LINE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_MONITOR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_SPEAKERS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_HEADPHONES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_TELEPHONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_WAVEIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_VOICEIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_DST_LAST","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_DST_LAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_DST_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_DIGITAL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_LINE","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_LINE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_LINE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_ANALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERLINE_COMPONENTTYPE_SRC_LAST","package":"druntime","parentType":"","signature":"MIXERLINE_COMPONENTTYPE_SRC_LAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERLINE_COMPONENTTYPE_SRC_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_DESTINATION","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_DESTINATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_DESTINATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_SOURCE","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_LINEID","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_LINEID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_LINEID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_COMPONENTTYPE","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_COMPONENTTYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_COMPONENTTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_TARGETTYPE","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_TARGETTYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_TARGETTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINEINFOF_QUERYMASK","package":"druntime","parentType":"","signature":"MIXER_GETLINEINFOF_QUERYMASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINEINFOF_QUERYMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLF_UNIFORM","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLF_UNIFORM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLF_UNIFORM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLF_MULTIPLE","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLF_MULTIPLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLF_MULTIPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLF_DISABLED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLF_DISABLED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLF_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_MASK","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_MASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_CUSTOM","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_CUSTOM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_METER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_METER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_METER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_SWITCH","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_SWITCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_SWITCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_NUMBER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_NUMBER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_NUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_SLIDER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_SLIDER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_SLIDER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_FADER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_FADER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_FADER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_TIME","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_TIME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_CLASS_LIST","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_CLASS_LIST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_CLASS_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SUBCLASS_MASK","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SUBCLASS_MASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SUBCLASS_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_SWITCH_BOOLEAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_SWITCH_BUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_METER_POLLED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_METER_POLLED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_METER_POLLED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_TIME_MICROSECS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_TIME_MICROSECS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_TIME_MICROSECS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_TIME_MILLISECS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_TIME_MILLISECS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_TIME_MILLISECS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_LIST_SINGLE","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_LIST_SINGLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_LIST_SINGLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_SC_LIST_MULTIPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_MASK","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_MASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_CUSTOM","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_CUSTOM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_BOOLEAN","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_BOOLEAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_BOOLEAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_SIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_SIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_SIGNED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_UNSIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_UNSIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_UNSIGNED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_DECIBELS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_DECIBELS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_DECIBELS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CT_UNITS_PERCENT","package":"druntime","parentType":"","signature":"MIXERCONTROL_CT_UNITS_PERCENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CT_UNITS_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_CUSTOM","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_CUSTOM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_BOOLEANMETER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_SIGNEDMETER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_PEAKMETER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_BOOLEAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_ONOFF","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_ONOFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_ONOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MUTE","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MUTE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MONO","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MONO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MONO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_LOUDNESS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_STEREOENH","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_STEREOENH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_STEREOENH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_BUTTON","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_BUTTON","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_BUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_DECIBELS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_DECIBELS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_DECIBELS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_SIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_SIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_SIGNED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_UNSIGNED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_PERCENT","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_PERCENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_SLIDER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_SLIDER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_SLIDER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_PAN","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_PAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_PAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_QSOUNDPAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_FADER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_FADER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_FADER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_VOLUME","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_VOLUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_BASS","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_BASS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_BASS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_TREBLE","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_TREBLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_TREBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_EQUALIZER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_SINGLESELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MUX","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MUX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MUX"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MIXER","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MIXER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MIXER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MICROTIME","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MICROTIME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MICROTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXERCONTROL_CONTROLTYPE_MILLITIME","package":"druntime","parentType":"","signature":"MIXERCONTROL_CONTROLTYPE_MILLITIME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXERCONTROL_CONTROLTYPE_MILLITIME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINECONTROLSF_ALL","package":"druntime","parentType":"","signature":"MIXER_GETLINECONTROLSF_ALL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINECONTROLSF_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINECONTROLSF_ONEBYID","package":"druntime","parentType":"","signature":"MIXER_GETLINECONTROLSF_ONEBYID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINECONTROLSF_ONEBYID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINECONTROLSF_ONEBYTYPE","package":"druntime","parentType":"","signature":"MIXER_GETLINECONTROLSF_ONEBYTYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINECONTROLSF_ONEBYTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETLINECONTROLSF_QUERYMASK","package":"druntime","parentType":"","signature":"MIXER_GETLINECONTROLSF_QUERYMASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETLINECONTROLSF_QUERYMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETCONTROLDETAILSF_VALUE","package":"druntime","parentType":"","signature":"MIXER_GETCONTROLDETAILSF_VALUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETCONTROLDETAILSF_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETCONTROLDETAILSF_LISTTEXT","package":"druntime","parentType":"","signature":"MIXER_GETCONTROLDETAILSF_LISTTEXT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETCONTROLDETAILSF_LISTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_GETCONTROLDETAILSF_QUERYMASK","package":"druntime","parentType":"","signature":"MIXER_GETCONTROLDETAILSF_QUERYMASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_GETCONTROLDETAILSF_QUERYMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_SETCONTROLDETAILSF_VALUE","package":"druntime","parentType":"","signature":"MIXER_SETCONTROLDETAILSF_VALUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_SETCONTROLDETAILSF_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_SETCONTROLDETAILSF_CUSTOM","package":"druntime","parentType":"","signature":"MIXER_SETCONTROLDETAILSF_CUSTOM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_SETCONTROLDETAILSF_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MIXER_SETCONTROLDETAILSF_QUERYMASK","package":"druntime","parentType":"","signature":"MIXER_SETCONTROLDETAILSF_QUERYMASK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MIXER_SETCONTROLDETAILSF_QUERYMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIMERR_NOERROR","package":"druntime","parentType":"","signature":"TIMERR_NOERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIMERR_NOERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIMERR_NOCANDO","package":"druntime","parentType":"","signature":"TIMERR_NOCANDO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIMERR_NOCANDO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIMERR_STRUCT","package":"druntime","parentType":"","signature":"TIMERR_STRUCT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIMERR_STRUCT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_ONESHOT","package":"druntime","parentType":"","signature":"TIME_ONESHOT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_ONESHOT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_PERIODIC","package":"druntime","parentType":"","signature":"TIME_PERIODIC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_PERIODIC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_CALLBACK_FUNCTION","package":"druntime","parentType":"","signature":"TIME_CALLBACK_FUNCTION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_CALLBACK_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_CALLBACK_EVENT_SET","package":"druntime","parentType":"","signature":"TIME_CALLBACK_EVENT_SET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_CALLBACK_EVENT_SET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"TIME_CALLBACK_EVENT_PULSE","package":"druntime","parentType":"","signature":"TIME_CALLBACK_EVENT_PULSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#TIME_CALLBACK_EVENT_PULSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYERR_NOERROR","package":"druntime","parentType":"","signature":"JOYERR_NOERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYERR_NOERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYERR_PARMS","package":"druntime","parentType":"","signature":"JOYERR_PARMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYERR_PARMS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYERR_NOCANDO","package":"druntime","parentType":"","signature":"JOYERR_NOCANDO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYERR_NOCANDO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYERR_UNPLUGGED","package":"druntime","parentType":"","signature":"JOYERR_UNPLUGGED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYERR_UNPLUGGED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON1","package":"druntime","parentType":"","signature":"JOY_BUTTON1","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON1"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON2","package":"druntime","parentType":"","signature":"JOY_BUTTON2","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON2"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON3","package":"druntime","parentType":"","signature":"JOY_BUTTON3","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON3"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON4","package":"druntime","parentType":"","signature":"JOY_BUTTON4","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON4"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON1CHG","package":"druntime","parentType":"","signature":"JOY_BUTTON1CHG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON1CHG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON2CHG","package":"druntime","parentType":"","signature":"JOY_BUTTON2CHG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON2CHG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON3CHG","package":"druntime","parentType":"","signature":"JOY_BUTTON3CHG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON3CHG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON4CHG","package":"druntime","parentType":"","signature":"JOY_BUTTON4CHG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON4CHG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON5","package":"druntime","parentType":"","signature":"JOY_BUTTON5","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON5"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON6","package":"druntime","parentType":"","signature":"JOY_BUTTON6","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON6"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON7","package":"druntime","parentType":"","signature":"JOY_BUTTON7","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON7"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON8","package":"druntime","parentType":"","signature":"JOY_BUTTON8","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON8"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON9","package":"druntime","parentType":"","signature":"JOY_BUTTON9","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON9"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON10","package":"druntime","parentType":"","signature":"JOY_BUTTON10","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON10"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON11","package":"druntime","parentType":"","signature":"JOY_BUTTON11","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON11"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON12","package":"druntime","parentType":"","signature":"JOY_BUTTON12","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON12"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON13","package":"druntime","parentType":"","signature":"JOY_BUTTON13","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON13"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON14","package":"druntime","parentType":"","signature":"JOY_BUTTON14","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON14"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON15","package":"druntime","parentType":"","signature":"JOY_BUTTON15","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON15"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON16","package":"druntime","parentType":"","signature":"JOY_BUTTON16","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON16"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON17","package":"druntime","parentType":"","signature":"JOY_BUTTON17","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON17"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON18","package":"druntime","parentType":"","signature":"JOY_BUTTON18","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON18"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON19","package":"druntime","parentType":"","signature":"JOY_BUTTON19","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON19"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON20","package":"druntime","parentType":"","signature":"JOY_BUTTON20","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON20"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON21","package":"druntime","parentType":"","signature":"JOY_BUTTON21","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON21"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON22","package":"druntime","parentType":"","signature":"JOY_BUTTON22","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON22"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON23","package":"druntime","parentType":"","signature":"JOY_BUTTON23","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON23"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON24","package":"druntime","parentType":"","signature":"JOY_BUTTON24","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON24"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON25","package":"druntime","parentType":"","signature":"JOY_BUTTON25","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON25"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON26","package":"druntime","parentType":"","signature":"JOY_BUTTON26","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON26"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON27","package":"druntime","parentType":"","signature":"JOY_BUTTON27","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON27"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON28","package":"druntime","parentType":"","signature":"JOY_BUTTON28","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON28"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON29","package":"druntime","parentType":"","signature":"JOY_BUTTON29","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON29"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON30","package":"druntime","parentType":"","signature":"JOY_BUTTON30","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON30"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON31","package":"druntime","parentType":"","signature":"JOY_BUTTON31","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON31"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_BUTTON32","package":"druntime","parentType":"","signature":"JOY_BUTTON32","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_BUTTON32"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOY_RETURNX","package":"druntime","parentType":"","signature":"DWORD JOY_RETURNX","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOY_RETURNX"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYSTICKID1","package":"druntime","parentType":"","signature":"JOYSTICKID1","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYSTICKID1"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYSTICKID2","package":"druntime","parentType":"","signature":"JOYSTICKID2","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYSTICKID2"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_HASZ","package":"druntime","parentType":"","signature":"JOYCAPS_HASZ","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_HASZ"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_HASR","package":"druntime","parentType":"","signature":"JOYCAPS_HASR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_HASR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_HASU","package":"druntime","parentType":"","signature":"JOYCAPS_HASU","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_HASU"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_HASV","package":"druntime","parentType":"","signature":"JOYCAPS_HASV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_HASV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_HASPOV","package":"druntime","parentType":"","signature":"JOYCAPS_HASPOV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_HASPOV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_POV4DIR","package":"druntime","parentType":"","signature":"JOYCAPS_POV4DIR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_POV4DIR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"JOYCAPS_POVCTS","package":"druntime","parentType":"","signature":"JOYCAPS_POVCTS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#JOYCAPS_POVCTS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_BASE","package":"druntime","parentType":"","signature":"MMIOERR_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_FILENOTFOUND","package":"druntime","parentType":"","signature":"MMIOERR_FILENOTFOUND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_FILENOTFOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_OUTOFMEMORY","package":"druntime","parentType":"","signature":"MMIOERR_OUTOFMEMORY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_OUTOFMEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTOPEN","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTOPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTOPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTCLOSE","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTCLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTCLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTREAD","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTREAD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTWRITE","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTWRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTSEEK","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTSEEK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTSEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CANNOTEXPAND","package":"druntime","parentType":"","signature":"MMIOERR_CANNOTEXPAND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CANNOTEXPAND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_CHUNKNOTFOUND","package":"druntime","parentType":"","signature":"MMIOERR_CHUNKNOTFOUND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_CHUNKNOTFOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_UNBUFFERED","package":"druntime","parentType":"","signature":"MMIOERR_UNBUFFERED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_UNBUFFERED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_PATHNOTFOUND","package":"druntime","parentType":"","signature":"MMIOERR_PATHNOTFOUND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_PATHNOTFOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_ACCESSDENIED","package":"druntime","parentType":"","signature":"MMIOERR_ACCESSDENIED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_ACCESSDENIED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_SHARINGVIOLATION","package":"druntime","parentType":"","signature":"MMIOERR_SHARINGVIOLATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_SHARINGVIOLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_NETWORKERROR","package":"druntime","parentType":"","signature":"MMIOERR_NETWORKERROR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_NETWORKERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_TOOMANYOPENFILES","package":"druntime","parentType":"","signature":"MMIOERR_TOOMANYOPENFILES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_TOOMANYOPENFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOERR_INVALIDFILE","package":"druntime","parentType":"","signature":"MMIOERR_INVALIDFILE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOERR_INVALIDFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CFSEPCHAR","package":"druntime","parentType":"","signature":"CFSEPCHAR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CFSEPCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_RWMODE","package":"druntime","parentType":"","signature":"MMIO_RWMODE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_RWMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_SHAREMODE","package":"druntime","parentType":"","signature":"MMIO_SHAREMODE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_SHAREMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_CREATE","package":"druntime","parentType":"","signature":"MMIO_CREATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_PARSE","package":"druntime","parentType":"","signature":"MMIO_PARSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_PARSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DELETE","package":"druntime","parentType":"","signature":"MMIO_DELETE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_EXIST","package":"druntime","parentType":"","signature":"MMIO_EXIST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_EXIST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_ALLOCBUF","package":"druntime","parentType":"","signature":"MMIO_ALLOCBUF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_ALLOCBUF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_GETTEMP","package":"druntime","parentType":"","signature":"MMIO_GETTEMP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_GETTEMP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DIRTY","package":"druntime","parentType":"","signature":"MMIO_DIRTY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DIRTY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_READ","package":"druntime","parentType":"","signature":"MMIO_READ","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_WRITE","package":"druntime","parentType":"","signature":"MMIO_WRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_READWRITE","package":"druntime","parentType":"","signature":"MMIO_READWRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_READWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_COMPAT","package":"druntime","parentType":"","signature":"MMIO_COMPAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_COMPAT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_EXCLUSIVE","package":"druntime","parentType":"","signature":"MMIO_EXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_EXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DENYWRITE","package":"druntime","parentType":"","signature":"MMIO_DENYWRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DENYWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DENYREAD","package":"druntime","parentType":"","signature":"MMIO_DENYREAD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DENYREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DENYNONE","package":"druntime","parentType":"","signature":"MMIO_DENYNONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DENYNONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_FHOPEN","package":"druntime","parentType":"","signature":"MMIO_FHOPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_FHOPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_EMPTYBUF","package":"druntime","parentType":"","signature":"MMIO_EMPTYBUF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_EMPTYBUF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_TOUPPER","package":"druntime","parentType":"","signature":"MMIO_TOUPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_TOUPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_INSTALLPROC","package":"druntime","parentType":"","signature":"MMIO_INSTALLPROC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_INSTALLPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_GLOBALPROC","package":"druntime","parentType":"","signature":"MMIO_GLOBALPROC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_GLOBALPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_REMOVEPROC","package":"druntime","parentType":"","signature":"MMIO_REMOVEPROC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_REMOVEPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_UNICODEPROC","package":"druntime","parentType":"","signature":"MMIO_UNICODEPROC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_UNICODEPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_FINDPROC","package":"druntime","parentType":"","signature":"MMIO_FINDPROC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_FINDPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_FINDCHUNK","package":"druntime","parentType":"","signature":"MMIO_FINDCHUNK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_FINDCHUNK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_FINDRIFF","package":"druntime","parentType":"","signature":"MMIO_FINDRIFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_FINDRIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_FINDLIST","package":"druntime","parentType":"","signature":"MMIO_FINDLIST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_FINDLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_CREATERIFF","package":"druntime","parentType":"","signature":"MMIO_CREATERIFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_CREATERIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_CREATELIST","package":"druntime","parentType":"","signature":"MMIO_CREATELIST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_CREATELIST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_READ","package":"druntime","parentType":"","signature":"MMIOM_READ","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_WRITE","package":"druntime","parentType":"","signature":"MMIOM_WRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_SEEK","package":"druntime","parentType":"","signature":"MMIOM_SEEK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_SEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_OPEN","package":"druntime","parentType":"","signature":"MMIOM_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_CLOSE","package":"druntime","parentType":"","signature":"MMIOM_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_WRITEFLUSH","package":"druntime","parentType":"","signature":"MMIOM_WRITEFLUSH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_WRITEFLUSH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_RENAME","package":"druntime","parentType":"","signature":"MMIOM_RENAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_RENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIOM_USER","package":"druntime","parentType":"","signature":"MMIOM_USER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIOM_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"FOURCC_RIFF","package":"druntime","parentType":"","signature":"FOURCC_RIFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#FOURCC_RIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"FOURCC_LIST","package":"druntime","parentType":"","signature":"FOURCC_LIST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#FOURCC_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"FOURCC_DOS","package":"druntime","parentType":"","signature":"FOURCC_DOS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#FOURCC_DOS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"FOURCC_MEM","package":"druntime","parentType":"","signature":"FOURCC_MEM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#FOURCC_MEM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MMIO_DEFAULTBUFFER","package":"druntime","parentType":"","signature":"MMIO_DEFAULTBUFFER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MMIO_DEFAULTBUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCIERR_CUSTOM_DRIVER_BASE","package":"druntime","parentType":"","signature":"MCIERR_CUSTOM_DRIVER_BASE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCIERR_CUSTOM_DRIVER_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FIRST","package":"druntime","parentType":"","signature":"MCI_FIRST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN","package":"druntime","parentType":"","signature":"MCI_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CLOSE","package":"druntime","parentType":"","signature":"MCI_CLOSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ESCAPE","package":"druntime","parentType":"","signature":"MCI_ESCAPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ESCAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_PLAY","package":"druntime","parentType":"","signature":"MCI_PLAY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_PLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEEK","package":"druntime","parentType":"","signature":"MCI_SEEK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STOP","package":"druntime","parentType":"","signature":"MCI_STOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_PAUSE","package":"druntime","parentType":"","signature":"MCI_PAUSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_PAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO","package":"druntime","parentType":"","signature":"MCI_INFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SPIN","package":"druntime","parentType":"","signature":"MCI_SPIN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SPIN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET","package":"druntime","parentType":"","signature":"MCI_SET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STEP","package":"druntime","parentType":"","signature":"MCI_STEP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STEP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_RECORD","package":"druntime","parentType":"","signature":"MCI_RECORD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_RECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO","package":"druntime","parentType":"","signature":"MCI_SYSINFO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_BREAK","package":"druntime","parentType":"","signature":"MCI_BREAK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_BREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SAVE","package":"druntime","parentType":"","signature":"MCI_SAVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS","package":"druntime","parentType":"","signature":"MCI_STATUS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CUE","package":"druntime","parentType":"","signature":"MCI_CUE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CUE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_REALIZE","package":"druntime","parentType":"","signature":"MCI_REALIZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_REALIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WINDOW","package":"druntime","parentType":"","signature":"MCI_WINDOW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_PUT","package":"druntime","parentType":"","signature":"MCI_PUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_PUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WHERE","package":"druntime","parentType":"","signature":"MCI_WHERE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WHERE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FREEZE","package":"druntime","parentType":"","signature":"MCI_FREEZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FREEZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_UNFREEZE","package":"druntime","parentType":"","signature":"MCI_UNFREEZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_UNFREEZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_LOAD","package":"druntime","parentType":"","signature":"MCI_LOAD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_LOAD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CUT","package":"druntime","parentType":"","signature":"MCI_CUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_COPY","package":"druntime","parentType":"","signature":"MCI_COPY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_COPY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_PASTE","package":"druntime","parentType":"","signature":"MCI_PASTE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_PASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_UPDATE","package":"druntime","parentType":"","signature":"MCI_UPDATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_RESUME","package":"druntime","parentType":"","signature":"MCI_RESUME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DELETE","package":"druntime","parentType":"","signature":"MCI_DELETE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_USER_MESSAGES","package":"druntime","parentType":"","signature":"MCI_USER_MESSAGES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_USER_MESSAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_LAST","package":"druntime","parentType":"","signature":"MCI_LAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ALL_DEVICE_ID","package":"druntime","parentType":"","signature":"MCIDEVICEID MCI_ALL_DEVICE_ID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ALL_DEVICE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_VCR","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_VCR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_VCR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_VIDEODISC","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_VIDEODISC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_VIDEODISC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_OVERLAY","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_OVERLAY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_OVERLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_CD_AUDIO","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_CD_AUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_CD_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_DAT","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_DAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_DAT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_SCANNER","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_SCANNER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_SCANNER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_ANIMATION","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_ANIMATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_ANIMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_DIGITAL_VIDEO","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_DIGITAL_VIDEO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_DIGITAL_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_OTHER","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_OTHER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_OTHER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_WAVEFORM_AUDIO","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_WAVEFORM_AUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_WAVEFORM_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_SEQUENCER","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_SEQUENCER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_SEQUENCER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_FIRST","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_FIRST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_LAST","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_LAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_DEVTYPE_FIRST_USER","package":"druntime","parentType":"","signature":"MCI_DEVTYPE_FIRST_USER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_DEVTYPE_FIRST_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_NOT_READY","package":"druntime","parentType":"","signature":"MCI_MODE_NOT_READY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_NOT_READY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_STOP","package":"druntime","parentType":"","signature":"MCI_MODE_STOP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_STOP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_PLAY","package":"druntime","parentType":"","signature":"MCI_MODE_PLAY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_PLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_RECORD","package":"druntime","parentType":"","signature":"MCI_MODE_RECORD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_RECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_SEEK","package":"druntime","parentType":"","signature":"MCI_MODE_SEEK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_SEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_PAUSE","package":"druntime","parentType":"","signature":"MCI_MODE_PAUSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_PAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_MODE_OPEN","package":"druntime","parentType":"","signature":"MCI_MODE_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_MODE_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_MILLISECONDS","package":"druntime","parentType":"","signature":"MCI_FORMAT_MILLISECONDS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_MILLISECONDS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_HMS","package":"druntime","parentType":"","signature":"MCI_FORMAT_HMS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_HMS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_MSF","package":"druntime","parentType":"","signature":"MCI_FORMAT_MSF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_MSF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_FRAMES","package":"druntime","parentType":"","signature":"MCI_FORMAT_FRAMES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_FRAMES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_SMPTE_24","package":"druntime","parentType":"","signature":"MCI_FORMAT_SMPTE_24","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_SMPTE_24"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_SMPTE_25","package":"druntime","parentType":"","signature":"MCI_FORMAT_SMPTE_25","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_SMPTE_25"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_SMPTE_30","package":"druntime","parentType":"","signature":"MCI_FORMAT_SMPTE_30","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_SMPTE_30"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_SMPTE_30DROP","package":"druntime","parentType":"","signature":"MCI_FORMAT_SMPTE_30DROP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_SMPTE_30DROP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_BYTES","package":"druntime","parentType":"","signature":"MCI_FORMAT_BYTES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_BYTES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_SAMPLES","package":"druntime","parentType":"","signature":"MCI_FORMAT_SAMPLES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_SAMPLES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FORMAT_TMSF","package":"druntime","parentType":"","signature":"MCI_FORMAT_TMSF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FORMAT_TMSF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_NOTIFY_SUCCESSFUL","package":"druntime","parentType":"","signature":"MCI_NOTIFY_SUCCESSFUL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_NOTIFY_SUCCESSFUL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_NOTIFY_SUPERSEDED","package":"druntime","parentType":"","signature":"MCI_NOTIFY_SUPERSEDED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_NOTIFY_SUPERSEDED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_NOTIFY_ABORTED","package":"druntime","parentType":"","signature":"MCI_NOTIFY_ABORTED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_NOTIFY_ABORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_NOTIFY_FAILURE","package":"druntime","parentType":"","signature":"MCI_NOTIFY_FAILURE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_NOTIFY_FAILURE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_NOTIFY","package":"druntime","parentType":"","signature":"MCI_NOTIFY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAIT","package":"druntime","parentType":"","signature":"MCI_WAIT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAIT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_FROM","package":"druntime","parentType":"","signature":"MCI_FROM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_FROM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_TO","package":"druntime","parentType":"","signature":"MCI_TO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_TO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_TRACK","package":"druntime","parentType":"","signature":"MCI_TRACK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_TRACK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_SHAREABLE","package":"druntime","parentType":"","signature":"MCI_OPEN_SHAREABLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_SHAREABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_ELEMENT","package":"druntime","parentType":"","signature":"MCI_OPEN_ELEMENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_ELEMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_ALIAS","package":"druntime","parentType":"","signature":"MCI_OPEN_ALIAS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_ALIAS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_ELEMENT_ID","package":"druntime","parentType":"","signature":"MCI_OPEN_ELEMENT_ID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_ELEMENT_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_TYPE_ID","package":"druntime","parentType":"","signature":"MCI_OPEN_TYPE_ID","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_TYPE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OPEN_TYPE","package":"druntime","parentType":"","signature":"MCI_OPEN_TYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OPEN_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEEK_TO_START","package":"druntime","parentType":"","signature":"MCI_SEEK_TO_START","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEEK_TO_START"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEEK_TO_END","package":"druntime","parentType":"","signature":"MCI_SEEK_TO_END","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEEK_TO_END"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_ITEM","package":"druntime","parentType":"","signature":"MCI_STATUS_ITEM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_ITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_START","package":"druntime","parentType":"","signature":"MCI_STATUS_START","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_START"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_LENGTH","package":"druntime","parentType":"","signature":"MCI_STATUS_LENGTH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_POSITION","package":"druntime","parentType":"","signature":"MCI_STATUS_POSITION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_POSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_NUMBER_OF_TRACKS","package":"druntime","parentType":"","signature":"MCI_STATUS_NUMBER_OF_TRACKS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_NUMBER_OF_TRACKS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_MODE","package":"druntime","parentType":"","signature":"MCI_STATUS_MODE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_MEDIA_PRESENT","package":"druntime","parentType":"","signature":"MCI_STATUS_MEDIA_PRESENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_MEDIA_PRESENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_TIME_FORMAT","package":"druntime","parentType":"","signature":"MCI_STATUS_TIME_FORMAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_TIME_FORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_READY","package":"druntime","parentType":"","signature":"MCI_STATUS_READY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_READY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_STATUS_CURRENT_TRACK","package":"druntime","parentType":"","signature":"MCI_STATUS_CURRENT_TRACK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_STATUS_CURRENT_TRACK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_PRODUCT","package":"druntime","parentType":"","signature":"MCI_INFO_PRODUCT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_PRODUCT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_FILE","package":"druntime","parentType":"","signature":"MCI_INFO_FILE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_MEDIA_UPC","package":"druntime","parentType":"","signature":"MCI_INFO_MEDIA_UPC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_MEDIA_UPC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_MEDIA_IDENTITY","package":"druntime","parentType":"","signature":"MCI_INFO_MEDIA_IDENTITY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_MEDIA_IDENTITY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_NAME","package":"druntime","parentType":"","signature":"MCI_INFO_NAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_INFO_COPYRIGHT","package":"druntime","parentType":"","signature":"MCI_INFO_COPYRIGHT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_INFO_COPYRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_ITEM","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_ITEM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_ITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_CAN_RECORD","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_CAN_RECORD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_CAN_RECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_HAS_AUDIO","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_HAS_AUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_HAS_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_HAS_VIDEO","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_HAS_VIDEO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_HAS_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_DEVICE_TYPE","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_DEVICE_TYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_DEVICE_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_USES_FILES","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_USES_FILES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_USES_FILES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_COMPOUND_DEVICE","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_COMPOUND_DEVICE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_COMPOUND_DEVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_CAN_EJECT","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_CAN_EJECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_CAN_EJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_CAN_PLAY","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_CAN_PLAY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_CAN_PLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_GETDEVCAPS_CAN_SAVE","package":"druntime","parentType":"","signature":"MCI_GETDEVCAPS_CAN_SAVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_GETDEVCAPS_CAN_SAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_QUANTITY","package":"druntime","parentType":"","signature":"MCI_SYSINFO_QUANTITY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_QUANTITY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_OPEN","package":"druntime","parentType":"","signature":"MCI_SYSINFO_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_NAME","package":"druntime","parentType":"","signature":"MCI_SYSINFO_NAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SYSINFO_INSTALLNAME","package":"druntime","parentType":"","signature":"MCI_SYSINFO_INSTALLNAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SYSINFO_INSTALLNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_DOOR_OPEN","package":"druntime","parentType":"","signature":"MCI_SET_DOOR_OPEN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_DOOR_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_DOOR_CLOSED","package":"druntime","parentType":"","signature":"MCI_SET_DOOR_CLOSED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_DOOR_CLOSED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_TIME_FORMAT","package":"druntime","parentType":"","signature":"MCI_SET_TIME_FORMAT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_TIME_FORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_AUDIO","package":"druntime","parentType":"","signature":"MCI_SET_AUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_VIDEO","package":"druntime","parentType":"","signature":"MCI_SET_VIDEO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_ON","package":"druntime","parentType":"","signature":"MCI_SET_ON","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_OFF","package":"druntime","parentType":"","signature":"MCI_SET_OFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_AUDIO_ALL","package":"druntime","parentType":"","signature":"MCI_SET_AUDIO_ALL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_AUDIO_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_AUDIO_LEFT","package":"druntime","parentType":"","signature":"MCI_SET_AUDIO_LEFT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_AUDIO_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SET_AUDIO_RIGHT","package":"druntime","parentType":"","signature":"MCI_SET_AUDIO_RIGHT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SET_AUDIO_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_BREAK_KEY","package":"druntime","parentType":"","signature":"MCI_BREAK_KEY","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_BREAK_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_BREAK_HWND","package":"druntime","parentType":"","signature":"MCI_BREAK_HWND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_BREAK_HWND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_BREAK_OFF","package":"druntime","parentType":"","signature":"MCI_BREAK_OFF","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_BREAK_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_RECORD_INSERT","package":"druntime","parentType":"","signature":"MCI_RECORD_INSERT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_RECORD_INSERT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_RECORD_OVERWRITE","package":"druntime","parentType":"","signature":"MCI_RECORD_OVERWRITE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_RECORD_OVERWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SAVE_FILE","package":"druntime","parentType":"","signature":"MCI_SAVE_FILE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SAVE_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_LOAD_FILE","package":"druntime","parentType":"","signature":"MCI_LOAD_FILE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_LOAD_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_MODE_PARK","package":"druntime","parentType":"","signature":"MCI_VD_MODE_PARK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_MODE_PARK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_MEDIA_CLV","package":"druntime","parentType":"","signature":"MCI_VD_MEDIA_CLV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_MEDIA_CLV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_MEDIA_CAV","package":"druntime","parentType":"","signature":"MCI_VD_MEDIA_CAV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_MEDIA_CAV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_MEDIA_OTHER","package":"druntime","parentType":"","signature":"MCI_VD_MEDIA_OTHER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_MEDIA_OTHER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_FORMAT_TRACK","package":"druntime","parentType":"","signature":"MCI_VD_FORMAT_TRACK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_FORMAT_TRACK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_REVERSE","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_FAST","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_FAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_FAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_SPEED","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_SPEED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_SCAN","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_SCAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_SCAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_PLAY_SLOW","package":"druntime","parentType":"","signature":"MCI_VD_PLAY_SLOW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_PLAY_SLOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_SEEK_REVERSE","package":"druntime","parentType":"","signature":"MCI_VD_SEEK_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_SEEK_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STATUS_SPEED","package":"druntime","parentType":"","signature":"MCI_VD_STATUS_SPEED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STATUS_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STATUS_FORWARD","package":"druntime","parentType":"","signature":"MCI_VD_STATUS_FORWARD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STATUS_FORWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STATUS_MEDIA_TYPE","package":"druntime","parentType":"","signature":"MCI_VD_STATUS_MEDIA_TYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STATUS_MEDIA_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STATUS_SIDE","package":"druntime","parentType":"","signature":"MCI_VD_STATUS_SIDE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STATUS_SIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STATUS_DISC_SIZE","package":"druntime","parentType":"","signature":"MCI_VD_STATUS_DISC_SIZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STATUS_DISC_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_CLV","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_CLV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_CLV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_CAV","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_CAV","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_CAV"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_SPIN_UP","package":"druntime","parentType":"","signature":"MCI_VD_SPIN_UP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_SPIN_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_SPIN_DOWN","package":"druntime","parentType":"","signature":"MCI_VD_SPIN_DOWN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_SPIN_DOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_CAN_REVERSE","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_CAN_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_CAN_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_FAST_RATE","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_FAST_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_FAST_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_SLOW_RATE","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_SLOW_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_SLOW_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_GETDEVCAPS_NORMAL_RATE","package":"druntime","parentType":"","signature":"MCI_VD_GETDEVCAPS_NORMAL_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_GETDEVCAPS_NORMAL_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STEP_FRAMES","package":"druntime","parentType":"","signature":"MCI_VD_STEP_FRAMES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STEP_FRAMES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_STEP_REVERSE","package":"druntime","parentType":"","signature":"MCI_VD_STEP_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_STEP_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_VD_ESCAPE_STRING","package":"druntime","parentType":"","signature":"MCI_VD_ESCAPE_STRING","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_VD_ESCAPE_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CDA_STATUS_TYPE_TRACK","package":"druntime","parentType":"","signature":"MCI_CDA_STATUS_TYPE_TRACK","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CDA_STATUS_TYPE_TRACK"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CDA_TRACK_AUDIO","package":"druntime","parentType":"","signature":"MCI_CDA_TRACK_AUDIO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CDA_TRACK_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_CDA_TRACK_OTHER","package":"druntime","parentType":"","signature":"MCI_CDA_TRACK_OTHER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_CDA_TRACK_OTHER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_PCM","package":"druntime","parentType":"","signature":"MCI_WAVE_PCM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_PCM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_MAPPER","package":"druntime","parentType":"","signature":"MCI_WAVE_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_OPEN_BUFFER","package":"druntime","parentType":"","signature":"MCI_WAVE_OPEN_BUFFER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_OPEN_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_FORMATTAG","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_FORMATTAG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_FORMATTAG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_CHANNELS","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_CHANNELS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_CHANNELS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_SAMPLESPERSEC","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_SAMPLESPERSEC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_SAMPLESPERSEC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_AVGBYTESPERSEC","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_AVGBYTESPERSEC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_AVGBYTESPERSEC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_BLOCKALIGN","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_BLOCKALIGN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_BLOCKALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_BITSPERSAMPLE","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_BITSPERSAMPLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_BITSPERSAMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_INPUT","package":"druntime","parentType":"","signature":"MCI_WAVE_INPUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_INPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_OUTPUT","package":"druntime","parentType":"","signature":"MCI_WAVE_OUTPUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_OUTPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_FORMATTAG","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_FORMATTAG","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_FORMATTAG"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_CHANNELS","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_CHANNELS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_CHANNELS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_SAMPLESPERSEC","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_SAMPLESPERSEC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_SAMPLESPERSEC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_AVGBYTESPERSEC","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_AVGBYTESPERSEC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_AVGBYTESPERSEC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_BLOCKALIGN","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_BLOCKALIGN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_BLOCKALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_BITSPERSAMPLE","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_BITSPERSAMPLE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_BITSPERSAMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_STATUS_LEVEL","package":"druntime","parentType":"","signature":"MCI_WAVE_STATUS_LEVEL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_STATUS_LEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_ANYINPUT","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_ANYINPUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_ANYINPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_SET_ANYOUTPUT","package":"druntime","parentType":"","signature":"MCI_WAVE_SET_ANYOUTPUT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_SET_ANYOUTPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_GETDEVCAPS_INPUTS","package":"druntime","parentType":"","signature":"MCI_WAVE_GETDEVCAPS_INPUTS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_GETDEVCAPS_INPUTS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_WAVE_GETDEVCAPS_OUTPUTS","package":"druntime","parentType":"","signature":"MCI_WAVE_GETDEVCAPS_OUTPUTS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_WAVE_GETDEVCAPS_OUTPUTS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_DIV_PPQN","package":"druntime","parentType":"","signature":"MCI_SEQ_DIV_PPQN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_DIV_PPQN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_DIV_SMPTE_24","package":"druntime","parentType":"","signature":"MCI_SEQ_DIV_SMPTE_24","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_DIV_SMPTE_24"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_DIV_SMPTE_25","package":"druntime","parentType":"","signature":"MCI_SEQ_DIV_SMPTE_25","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_DIV_SMPTE_25"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_DIV_SMPTE_30DROP","package":"druntime","parentType":"","signature":"MCI_SEQ_DIV_SMPTE_30DROP","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_DIV_SMPTE_30DROP"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_DIV_SMPTE_30","package":"druntime","parentType":"","signature":"MCI_SEQ_DIV_SMPTE_30","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_DIV_SMPTE_30"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_FORMAT_SONGPTR","package":"druntime","parentType":"","signature":"MCI_SEQ_FORMAT_SONGPTR","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_FORMAT_SONGPTR"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_FILE","package":"druntime","parentType":"","signature":"MCI_SEQ_FILE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_MIDI","package":"druntime","parentType":"","signature":"MCI_SEQ_MIDI","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_MIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SMPTE","package":"druntime","parentType":"","signature":"MCI_SEQ_SMPTE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SMPTE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_NONE","package":"druntime","parentType":"","signature":"MCI_SEQ_NONE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_MAPPER","package":"druntime","parentType":"","signature":"MCI_SEQ_MAPPER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_MAPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_TEMPO","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_TEMPO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_TEMPO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_PORT","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_PORT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_SLAVE","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_SLAVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_SLAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_MASTER","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_MASTER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_MASTER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_OFFSET","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_DIVTYPE","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_DIVTYPE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_DIVTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_NAME","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_NAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_STATUS_COPYRIGHT","package":"druntime","parentType":"","signature":"MCI_SEQ_STATUS_COPYRIGHT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_STATUS_COPYRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_TEMPO","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_TEMPO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_TEMPO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_PORT","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_PORT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_SLAVE","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_SLAVE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_SLAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_MASTER","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_MASTER","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_MASTER"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_SEQ_SET_OFFSET","package":"druntime","parentType":"","signature":"MCI_SEQ_SET_OFFSET","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_SEQ_SET_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_OPEN_WS","package":"druntime","parentType":"","signature":"MCI_ANIM_OPEN_WS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_OPEN_WS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_OPEN_PARENT","package":"druntime","parentType":"","signature":"MCI_ANIM_OPEN_PARENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_OPEN_PARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_OPEN_NOSTATIC","package":"druntime","parentType":"","signature":"MCI_ANIM_OPEN_NOSTATIC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_OPEN_NOSTATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_SPEED","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_SPEED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_REVERSE","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_FAST","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_FAST","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_FAST"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_SLOW","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_SLOW","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_SLOW"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PLAY_SCAN","package":"druntime","parentType":"","signature":"MCI_ANIM_PLAY_SCAN","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PLAY_SCAN"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STEP_REVERSE","package":"druntime","parentType":"","signature":"MCI_ANIM_STEP_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STEP_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STEP_FRAMES","package":"druntime","parentType":"","signature":"MCI_ANIM_STEP_FRAMES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STEP_FRAMES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STATUS_SPEED","package":"druntime","parentType":"","signature":"MCI_ANIM_STATUS_SPEED","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STATUS_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STATUS_FORWARD","package":"druntime","parentType":"","signature":"MCI_ANIM_STATUS_FORWARD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STATUS_FORWARD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STATUS_HWND","package":"druntime","parentType":"","signature":"MCI_ANIM_STATUS_HWND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STATUS_HWND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STATUS_HPAL","package":"druntime","parentType":"","signature":"MCI_ANIM_STATUS_HPAL","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STATUS_HPAL"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_STATUS_STRETCH","package":"druntime","parentType":"","signature":"MCI_ANIM_STATUS_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_STATUS_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_INFO_TEXT","package":"druntime","parentType":"","signature":"MCI_ANIM_INFO_TEXT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_INFO_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_CAN_REVERSE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_FAST_RATE","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_FAST_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_FAST_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_SLOW_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_NORMAL_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_PALETTES","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_PALETTES","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_PALETTES"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_CAN_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","package":"druntime","parentType":"","signature":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_GETDEVCAPS_MAX_WINDOWS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_REALIZE_NORM","package":"druntime","parentType":"","signature":"MCI_ANIM_REALIZE_NORM","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_REALIZE_NORM"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_REALIZE_BKGD","package":"druntime","parentType":"","signature":"MCI_ANIM_REALIZE_BKGD","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_REALIZE_BKGD"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_HWND","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_HWND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_HWND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_STATE","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_STATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_TEXT","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_TEXT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_ENABLE_STRETCH","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_ENABLE_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_ENABLE_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_DISABLE_STRETCH","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_DISABLE_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_DISABLE_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WINDOW_DEFAULT","package":"druntime","parentType":"","signature":"MCI_ANIM_WINDOW_DEFAULT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WINDOW_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_RECT","package":"druntime","parentType":"","signature":"MCI_ANIM_RECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_RECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PUT_SOURCE","package":"druntime","parentType":"","signature":"MCI_ANIM_PUT_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PUT_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_PUT_DESTINATION","package":"druntime","parentType":"","signature":"MCI_ANIM_PUT_DESTINATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_PUT_DESTINATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WHERE_SOURCE","package":"druntime","parentType":"","signature":"MCI_ANIM_WHERE_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WHERE_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_WHERE_DESTINATION","package":"druntime","parentType":"","signature":"MCI_ANIM_WHERE_DESTINATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_WHERE_DESTINATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_ANIM_UPDATE_HDC","package":"druntime","parentType":"","signature":"MCI_ANIM_UPDATE_HDC","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_ANIM_UPDATE_HDC"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_OPEN_WS","package":"druntime","parentType":"","signature":"MCI_OVLY_OPEN_WS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_OPEN_WS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_OPEN_PARENT","package":"druntime","parentType":"","signature":"MCI_OVLY_OPEN_PARENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_OPEN_PARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_STATUS_HWND","package":"druntime","parentType":"","signature":"MCI_OVLY_STATUS_HWND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_STATUS_HWND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_STATUS_STRETCH","package":"druntime","parentType":"","signature":"MCI_OVLY_STATUS_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_STATUS_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_INFO_TEXT","package":"druntime","parentType":"","signature":"MCI_OVLY_INFO_TEXT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_INFO_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","package":"druntime","parentType":"","signature":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_GETDEVCAPS_CAN_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","package":"druntime","parentType":"","signature":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_GETDEVCAPS_CAN_FREEZE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","package":"druntime","parentType":"","signature":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_GETDEVCAPS_MAX_WINDOWS"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_HWND","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_HWND","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_HWND"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_STATE","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_STATE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_TEXT","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_TEXT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_ENABLE_STRETCH","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_ENABLE_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_ENABLE_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_DISABLE_STRETCH","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_DISABLE_STRETCH","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_DISABLE_STRETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WINDOW_DEFAULT","package":"druntime","parentType":"","signature":"MCI_OVLY_WINDOW_DEFAULT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WINDOW_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_RECT","package":"druntime","parentType":"","signature":"MCI_OVLY_RECT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_RECT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_PUT_SOURCE","package":"druntime","parentType":"","signature":"MCI_OVLY_PUT_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_PUT_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_PUT_DESTINATION","package":"druntime","parentType":"","signature":"MCI_OVLY_PUT_DESTINATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_PUT_DESTINATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_PUT_FRAME","package":"druntime","parentType":"","signature":"MCI_OVLY_PUT_FRAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_PUT_FRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_PUT_VIDEO","package":"druntime","parentType":"","signature":"MCI_OVLY_PUT_VIDEO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_PUT_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WHERE_SOURCE","package":"druntime","parentType":"","signature":"MCI_OVLY_WHERE_SOURCE","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WHERE_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WHERE_DESTINATION","package":"druntime","parentType":"","signature":"MCI_OVLY_WHERE_DESTINATION","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WHERE_DESTINATION"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WHERE_FRAME","package":"druntime","parentType":"","signature":"MCI_OVLY_WHERE_FRAME","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WHERE_FRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"MCI_OVLY_WHERE_VIDEO","package":"druntime","parentType":"","signature":"MCI_OVLY_WHERE_VIDEO","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#MCI_OVLY_WHERE_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"NEWTRANSPARENT","package":"druntime","parentType":"","signature":"NEWTRANSPARENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#NEWTRANSPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"QUERYROPSUPPORT","package":"druntime","parentType":"","signature":"QUERYROPSUPPORT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#QUERYROPSUPPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"SELECTDIB","package":"druntime","parentType":"","signature":"SELECTDIB","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#SELECTDIB"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"CAPS1","package":"druntime","parentType":"","signature":"CAPS1","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#CAPS1"},{"doc":"","kind":"variable","module":"core.sys.windows.mmsystem","name":"C1_TRANSPARENT","package":"druntime","parentType":"","signature":"C1_TRANSPARENT","url":"/ddoc/druntime/core/sys/windows/mmsystem.html#C1_TRANSPARENT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.msacm","name":"core.sys.windows.msacm","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/msacm.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmDriverOpen","package":"druntime","parentType":"","signature":"MMRESULT acmDriverOpen(LPHACMDRIVER phad,  HACMDRIVERID hadid,\n       DWORD fdwOpen)","url":"/ddoc/druntime/core/sys/windows/msacm/acmDriverOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmDriverEnum","package":"druntime","parentType":"","signature":"MMRESULT acmDriverEnum(ACMDRIVERENUMCB fnCallback,  DWORD_PTR dwInstance,\n       DWORD fdwEnum)","url":"/ddoc/druntime/core/sys/windows/msacm/acmDriverEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmFormatEnumA","package":"druntime","parentType":"","signature":"MMRESULT acmFormatEnumA(HACMDRIVER had,  LPACMFORMATDETAILSA pafd,\n       ACMFORMATENUMCBA fnCallback,  DWORD_PTR dwInstance,  DWORD fdwEnum)","url":"/ddoc/druntime/core/sys/windows/msacm/acmFormatEnumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmFormatEnumW","package":"druntime","parentType":"","signature":"MMRESULT acmFormatEnumW(HACMDRIVER had,  LPACMFORMATDETAILSW pafd,\n       ACMFORMATENUMCBW fnCallback,  DWORD_PTR dwInstance,  DWORD fdwEnum)","url":"/ddoc/druntime/core/sys/windows/msacm/acmFormatEnumW.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmDriverClose","package":"druntime","parentType":"","signature":"MMRESULT acmDriverClose(HACMDRIVER had,  DWORD fdwClose)","url":"/ddoc/druntime/core/sys/windows/msacm/acmDriverClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmDriverDetailsA","package":"druntime","parentType":"","signature":"MMRESULT acmDriverDetailsA(HACMDRIVERID hadid,  LPACMDRIVERDETAILSA padd,\n       DWORD fdwDetails)","url":"/ddoc/druntime/core/sys/windows/msacm/acmDriverDetailsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmDriverDetailsW","package":"druntime","parentType":"","signature":"MMRESULT acmDriverDetailsW(HACMDRIVERID hadid,  LPACMDRIVERDETAILSW padd,\n       DWORD fdwDetails)","url":"/ddoc/druntime/core/sys/windows/msacm/acmDriverDetailsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmFormatTagEnumA","package":"druntime","parentType":"","signature":"MMRESULT acmFormatTagEnumA(HACMDRIVER had,  LPACMFORMATTAGDETAILSA paftd,\n       ACMFORMATTAGENUMCBA fnCallback,  DWORD_PTR dwInstance,  DWORD fdwEnum)","url":"/ddoc/druntime/core/sys/windows/msacm/acmFormatTagEnumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.msacm","name":"acmFormatTagEnumW","package":"druntime","parentType":"","signature":"MMRESULT acmFormatTagEnumW(HACMDRIVER had,  LPACMFORMATTAGDETAILSW paftd,\n       ACMFORMATTAGENUMCBW fnCallback,  DWORD_PTR dwInstance,  DWORD fdwEnum)","url":"/ddoc/druntime/core/sys/windows/msacm/acmFormatTagEnumW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"HACMDRIVERID","package":"druntime","parentType":"","signature":"HACMDRIVERID = HANDLE","url":"/ddoc/druntime/core/sys/windows/msacm.html#HACMDRIVERID"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"HACMDRIVER","package":"druntime","parentType":"","signature":"HACMDRIVER = HANDLE","url":"/ddoc/druntime/core/sys/windows/msacm.html#HACMDRIVER"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPHACMDRIVER","package":"druntime","parentType":"","signature":"LPHACMDRIVER = HACMDRIVER *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPHACMDRIVER"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMFORMATDETAILSA","package":"druntime","parentType":"","signature":"ACMFORMATDETAILSA","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATDETAILSA"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATDETAILSA","package":"druntime","parentType":"","signature":"LPACMFORMATDETAILSA = ACMFORMATDETAILSA *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATDETAILSA"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMFORMATDETAILSW","package":"druntime","parentType":"","signature":"ACMFORMATDETAILSW","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATDETAILSW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATDETAILSW","package":"druntime","parentType":"","signature":"LPACMFORMATDETAILSW = ACMFORMATDETAILSW *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATDETAILSW"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMFORMATTAGDETAILSA","package":"druntime","parentType":"","signature":"ACMFORMATTAGDETAILSA","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATTAGDETAILSA"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATTAGDETAILSA","package":"druntime","parentType":"","signature":"LPACMFORMATTAGDETAILSA = ACMFORMATTAGDETAILSA *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATTAGDETAILSA"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMFORMATTAGDETAILSW","package":"druntime","parentType":"","signature":"ACMFORMATTAGDETAILSW","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATTAGDETAILSW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATTAGDETAILSW","package":"druntime","parentType":"","signature":"LPACMFORMATTAGDETAILSW = ACMFORMATTAGDETAILSW *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATTAGDETAILSW"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMDRIVERDETAILSA","package":"druntime","parentType":"","signature":"ACMDRIVERDETAILSA","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMDRIVERDETAILSA"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMDRIVERDETAILSA","package":"druntime","parentType":"","signature":"LPACMDRIVERDETAILSA = ACMDRIVERDETAILSA *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMDRIVERDETAILSA"},{"doc":"","kind":"struct","module":"core.sys.windows.msacm","name":"ACMDRIVERDETAILSW","package":"druntime","parentType":"","signature":"ACMDRIVERDETAILSW","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMDRIVERDETAILSW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMDRIVERDETAILSW","package":"druntime","parentType":"","signature":"LPACMDRIVERDETAILSW = ACMDRIVERDETAILSW *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMDRIVERDETAILSW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"ACMFORMATENUMCBA","package":"druntime","parentType":"","signature":"ACMFORMATENUMCBA = BOOL function(HACMDRIVERID hadid,  LPACMFORMATDETAILSA pafd,\n       DWORD_PTR dwInstance,  DWORD fdwSupport)","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATENUMCBA"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"ACMFORMATENUMCBW","package":"druntime","parentType":"","signature":"ACMFORMATENUMCBW = BOOL function(HACMDRIVERID hadid,  LPACMFORMATDETAILSW pafd,\n       DWORD_PTR dwInstance,  DWORD fdwSupport)","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATENUMCBW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"ACMFORMATTAGENUMCBA","package":"druntime","parentType":"","signature":"ACMFORMATTAGENUMCBA = BOOL function(HACMDRIVERID hadid,  LPACMFORMATTAGDETAILSA paftd,\n       DWORD_PTR dwInstance,  DWORD fdwSupport)","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATTAGENUMCBA"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"ACMFORMATTAGENUMCBW","package":"druntime","parentType":"","signature":"ACMFORMATTAGENUMCBW = BOOL function(HACMDRIVERID hadid,  LPACMFORMATTAGDETAILSW paftd,\n       DWORD_PTR dwInstance,  DWORD fdwSupport)","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATTAGENUMCBW"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"ACMDRIVERENUMCB","package":"druntime","parentType":"","signature":"ACMDRIVERENUMCB = BOOL function(HACMDRIVERID hadid,  DWORD_PTR dwInstance,\n       DWORD fdwSupport)","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMDRIVERENUMCB"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATDETAILS","package":"druntime","parentType":"","signature":"LPACMFORMATDETAILS = ACMFORMATDETAILS *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATDETAILS"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMFORMATTAGDETAILS","package":"druntime","parentType":"","signature":"LPACMFORMATTAGDETAILS = ACMFORMATTAGDETAILS *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMFORMATTAGDETAILS"},{"doc":"","kind":"alias","module":"core.sys.windows.msacm","name":"LPACMDRIVERDETAILS","package":"druntime","parentType":"","signature":"LPACMDRIVERDETAILS = ACMDRIVERDETAILS *","url":"/ddoc/druntime/core/sys/windows/msacm.html#LPACMDRIVERDETAILS"},{"doc":"","kind":"variable","module":"core.sys.windows.msacm","name":"ACMDRIVERDETAILS_SHORTNAME_CHARS","package":"druntime","parentType":"","signature":"size_t ACMDRIVERDETAILS_SHORTNAME_CHARS","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMDRIVERDETAILS_SHORTNAME_CHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.msacm","name":"ACMFORMATDETAILS_FORMAT_CHARS","package":"druntime","parentType":"","signature":"size_t ACMFORMATDETAILS_FORMAT_CHARS","url":"/ddoc/druntime/core/sys/windows/msacm.html#ACMFORMATDETAILS_FORMAT_CHARS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mshtml","name":"core.sys.windows.mshtml","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mshtml.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLStyleSheet","package":"druntime","parentType":"","signature":"IHTMLStyleSheet","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLStyleSheet"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLSTYLE","package":"druntime","parentType":"","signature":"LPHTMLSTYLE = IHTMLStyle","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLSTYLE"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLSTYLESHEET","package":"druntime","parentType":"","signature":"LPHTMLSTYLESHEET = IHTMLStyleSheet","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLSTYLESHEET"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLLocation","package":"druntime","parentType":"","signature":"IHTMLLocation","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLLocation"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLLOCATION","package":"druntime","parentType":"","signature":"LPHTMLLOCATION = IHTMLLocation","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLLOCATION"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFramesCollection","package":"druntime","parentType":"","signature":"IHTMLFramesCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFramesCollection"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLFRAMESCOLLECTION","package":"druntime","parentType":"","signature":"LPHTMLFRAMESCOLLECTION = IHTMLFramesCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLFRAMESCOLLECTION"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLStyleSheetsCollection","package":"druntime","parentType":"","signature":"IHTMLStyleSheetsCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLStyleSheetsCollection"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLSTYLESHEETSCOLLECTION","package":"druntime","parentType":"","signature":"LPHTMLSTYLESHEETSCOLLECTION = IHTMLStyleSheetsCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLSTYLESHEETSCOLLECTION"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLStyle","package":"druntime","parentType":"","signature":"IHTMLStyle","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLStyle"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFiltersCollection","package":"druntime","parentType":"","signature":"IHTMLFiltersCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFiltersCollection"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLFILTERSCOLLECTION","package":"druntime","parentType":"","signature":"LPHTMLFILTERSCOLLECTION = IHTMLFiltersCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLFILTERSCOLLECTION"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IOmHistory","package":"druntime","parentType":"","signature":"IOmHistory : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IOmHistory"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_length","package":"druntime","parentType":"IOmHistory","signature":"HRESULT get_length(short *  p)","url":"/ddoc/druntime/core/sys/windows/mshtml/IOmHistory.get_length.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"back","package":"druntime","parentType":"IOmHistory","signature":"HRESULT back(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IOmHistory.back.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"forward","package":"druntime","parentType":"IOmHistory","signature":"HRESULT forward(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IOmHistory.forward.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"go","package":"druntime","parentType":"IOmHistory","signature":"HRESULT go(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IOmHistory.go.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPOMHISTORY","package":"druntime","parentType":"","signature":"LPOMHISTORY = IOmHistory","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPOMHISTORY"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IOmNavigator","package":"druntime","parentType":"","signature":"IOmNavigator","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IOmNavigator"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPOMNAVIGATOR","package":"druntime","parentType":"","signature":"LPOMNAVIGATOR = IOmNavigator","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPOMNAVIGATOR"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLImageElementFactory","package":"druntime","parentType":"","signature":"IHTMLImageElementFactory","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLImageElementFactory"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLIMAGEELEMENTFACTORY","package":"druntime","parentType":"","signature":"LPHTMLIMAGEELEMENTFACTORY = IHTMLImageElementFactory","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLIMAGEELEMENTFACTORY"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLEventObj","package":"druntime","parentType":"","signature":"IHTMLEventObj","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLEventObj"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLEVENTOBJ","package":"druntime","parentType":"","signature":"LPHTMLEVENTOBJ = IHTMLEventObj","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLEVENTOBJ"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLScreen","package":"druntime","parentType":"","signature":"IHTMLScreen","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLScreen"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLSCREEN","package":"druntime","parentType":"","signature":"LPHTMLSCREEN = IHTMLScreen","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLSCREEN"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLOptionElementFactory","package":"druntime","parentType":"","signature":"IHTMLOptionElementFactory","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLOptionElementFactory"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLOPTIONELEMENTFACTORY","package":"druntime","parentType":"","signature":"LPHTMLOPTIONELEMENTFACTORY = IHTMLOptionElementFactory","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLOPTIONELEMENTFACTORY"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLLinkElement","package":"druntime","parentType":"","signature":"IHTMLLinkElement : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLLinkElement"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_href","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_href(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_href.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_href","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_href(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_href.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_rel","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_rel(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_rel.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_rel","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_rel(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_rel.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_rev","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_rev(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_rev.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_rev","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_rev(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_rev.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_type","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_type(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_type.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_type","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_type(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_type.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_readyState","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_readyState(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_readyState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onreadystatechange","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_onreadystatechange(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onreadystatechange","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_onreadystatechange(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onload","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_onload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onload","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_onload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onerror","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_onerror(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onerror","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_onerror(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_styleSheet","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_styleSheet(LPHTMLSTYLESHEET *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_styleSheet.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_disabled","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_disabled(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_disabled.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_disabled","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_disabled(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_disabled.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_media","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT put_media(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.put_media.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_media","package":"druntime","parentType":"IHTMLLinkElement","signature":"HRESULT get_media(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLLinkElement.get_media.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLLINKELEMENT","package":"druntime","parentType":"","signature":"LPHTMLLINKELEMENT = IHTMLLinkElement","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLLINKELEMENT"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLImgElement","package":"druntime","parentType":"","signature":"IHTMLImgElement : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLImgElement"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_isMap","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_isMap(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_isMap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_isMap","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_isMap(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_isMap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_useMap","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_useMap(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_useMap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_useMap","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_useMap(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_useMap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_mimeType","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_mimeType(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_mimeType.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileSize","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_fileSize(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_fileSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileCreatedDate","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_fileCreatedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_fileCreatedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileModifiedDate","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_fileModifiedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_fileModifiedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileUpdatedDate","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_fileUpdatedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_fileUpdatedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_protocol","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_protocol(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_protocol.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_href","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_href(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_href.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_nameProp","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_nameProp(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_nameProp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_border","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_border(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_border.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_border","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_border(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_border.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_vspace","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_vspace(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_vspace.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_vspace","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_vspace(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_vspace.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_hspace","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_hspace(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_hspace.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_hspace","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_hspace(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_hspace.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_alt","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_alt(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_alt.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_alt","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_alt(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_alt.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_src","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_src(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_src.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_src","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_src(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_src.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_lowsrc","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_lowsrc(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_lowsrc.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_lowsrc","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_lowsrc(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_lowsrc.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_vrml","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_vrml(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_vrml.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_vrml","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_vrml(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_vrml.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_dynsrc","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_dynsrc(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_dynsrc.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_dynsrc","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_dynsrc(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_dynsrc.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_readyState","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_readyState(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_readyState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_complete","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_complete(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_complete.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_loop","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_loop(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_loop.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_loop","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_loop(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_loop.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_align","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_align(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_align.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_align","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_align(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_align.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onload","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_onload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onload","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_onload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onerror","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_onerror(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onerror","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_onerror(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onabort","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_onabort(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_onabort.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onabort","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_onabort(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_onabort.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_name","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_name(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_name","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_name(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_width","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_width(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_width.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_width","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_width(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_width.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_height","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_height(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_height.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_height","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_height(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_height.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_start","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT put_start(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.put_start.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_start","package":"druntime","parentType":"IHTMLImgElement","signature":"HRESULT get_start(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLImgElement.get_start.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLIMGELEMENT","package":"druntime","parentType":"","signature":"LPHTMLIMGELEMENT = IHTMLImgElement","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLIMGELEMENT"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLElementCollection","package":"druntime","parentType":"","signature":"IHTMLElementCollection : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLElementCollection"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"toString","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT toString(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.toString.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_length","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT put_length(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.put_length.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_length","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT get_length(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.get_length.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get__newEnum","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT get__newEnum(IUnknown *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.get__newEnum.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"item","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT item(VARIANT, VARIANT, IDispatch *  pDisp)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.item.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"tags","package":"druntime","parentType":"IHTMLElementCollection","signature":"HRESULT tags(VARIANT, IDispatch *  pdisp)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElementCollection.tags.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLELEMENTCOLLECTION","package":"druntime","parentType":"","signature":"LPHTMLELEMENTCOLLECTION = IHTMLElementCollection","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLELEMENTCOLLECTION"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLDocument","package":"druntime","parentType":"","signature":"IHTMLDocument : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLDocument"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_Script","package":"druntime","parentType":"IHTMLDocument","signature":"HRESULT get_Script(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument.get_Script.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLDocument2","package":"druntime","parentType":"","signature":"IHTMLDocument2 : IHTMLDocument","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLDocument2"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_all","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_all(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_all.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_body","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_body(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_body.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_activeElement","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_activeElement(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_activeElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_images","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_images(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_images.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_applets","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_applets(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_applets.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_links","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_links(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_links.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_forms","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_forms(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_forms.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_anchors","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_anchors(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_anchors.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_title","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_title(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_title.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_title","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_title(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_title.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_scripts","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_scripts(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_scripts.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_designMode","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_designMode(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_designMode.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_designMode","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_designMode(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_designMode.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_selection","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_selection(LPHTMLSELECTIONOBJECT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_selection.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_readyState","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_readyState(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_readyState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_frames","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_frames(IHTMLFramesCollection2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_frames.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_embeds","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_embeds(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_embeds.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_plugins","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_plugins(LPHTMLELEMENTCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_plugins.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_alinkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_alinkColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_alinkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_alinkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_alinkColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_alinkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_bgColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_bgColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_bgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_bgColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_bgColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_bgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_fgColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_fgColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_fgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fgColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_fgColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_fgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_linkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_linkColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_linkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_linkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_linkColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_linkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_vlinkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_vlinkColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_vlinkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_vlinkColor","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_vlinkColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_vlinkColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_referrer","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_referrer(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_referrer.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_location","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_location(LPHTMLLOCATION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_location.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_lastModified","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_lastModified(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_lastModified.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_url","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_url(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_url.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_url","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_url(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_url.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_domain","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_domain(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_domain.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_domain","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_domain(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_domain.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_cookie","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_cookie(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_cookie.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_cookie","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_cookie(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_cookie.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_expands","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_expands(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_expands.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_expands","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_expands(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_expands.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_charset","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_charset(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_charset.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_charset","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_charset(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_charset.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_defaultCharset","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_defaultCharset(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_defaultCharset.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_defaultCharset","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_defaultCharset(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_defaultCharset.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_mimeType","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_mimeType(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_mimeType.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileSize","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_fileSize(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_fileSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileCreatedDate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_fileCreatedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_fileCreatedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileModifiedDate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_fileModifiedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_fileModifiedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_fileUpdatedDate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_fileUpdatedDate(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_fileUpdatedDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_security","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_security(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_security.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_protocol","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_protocol(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_protocol.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_nameProp","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_nameProp(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_nameProp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"write","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT write(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.write.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"writeln","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT writeln(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.writeln.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"open","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT open(BSTR, VARIANT, VARIANT, VARIANT, IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.open.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"close","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT close()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.close.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"clear","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT clear()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.clear.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandSupported","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandSupported(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandSupported.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandEnabled","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandEnabled(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandEnabled.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandState","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandState(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandIndeterm","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandIndeterm(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandIndeterm.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandText","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandText(BSTR, BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandValue","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT queryCommandValue(BSTR, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.queryCommandValue.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"execCommand","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT execCommand(BSTR, VARIANT_BOOL, VARIANT, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.execCommand.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"execCommandShowHelp","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT execCommandShowHelp(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.execCommandShowHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"createElement","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT createElement(BSTR, LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.createElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onhelp","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onhelp(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onhelp","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onhelp(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onclick","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onclick(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onclick","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onclick(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondblclick","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_ondblclick(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_ondblclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondblclick","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_ondblclick(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_ondblclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeyup","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onkeyup(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onkeyup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeyup","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onkeyup(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onkeyup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeydown","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onkeydown(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onkeydown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeydown","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onkeydown(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onkeydown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeypress","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onkeypress(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onkeypress.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeypress","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onkeypress(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onkeypress.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseup","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onmouseup(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onmouseup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseup","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onmouseup(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onmouseup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmousedown","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onmousedown(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onmousedown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmousedown","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onmousedown(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onmousedown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmousemove","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onmousemove(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onmousemove.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmousemove","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onmousemove(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onmousemove.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseout","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onmouseout(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onmouseout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseout","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onmouseout(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onmouseout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseover","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onmouseover(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onmouseover.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseover","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onmouseover(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onmouseover.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onreadystatechange","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onreadystatechange(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onreadystatechange","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onreadystatechange(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onafterupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onafterupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onafterupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onafterupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onafterupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onafterupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onrowexit","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onrowexit(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onrowexit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onrowexit","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onrowexit(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onrowexit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onrowenter","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onrowenter(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onrowenter.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onrowenter","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onrowenter(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onrowenter.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondragstart","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_ondragstart(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_ondragstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondragstart","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_ondragstart(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_ondragstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onselectstart","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onselectstart(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onselectstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onselectstart","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onselectstart(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onselectstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"elementFromPoint","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT elementFromPoint(LONG, LONG, LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.elementFromPoint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_parentWindow","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_parentWindow(LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_parentWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_styleSheets","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_styleSheets(LPHTMLSTYLESHEETSCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_styleSheets.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onbeforeupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onbeforeupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onbeforeupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onbeforeupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onbeforeupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onbeforeupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onerrorupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT put_onerrorupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.put_onerrorupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onerrorupdate","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT get_onerrorupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.get_onerrorupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"toString","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT toString(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.toString.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"createStyleSheet","package":"druntime","parentType":"IHTMLDocument2","signature":"HRESULT createStyleSheet(BSTR, LONG, LPHTMLSTYLESHEET *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLDocument2.createStyleSheet.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLSelectionObject","package":"druntime","parentType":"","signature":"IHTMLSelectionObject : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLSelectionObject"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"createRange","package":"druntime","parentType":"IHTMLSelectionObject","signature":"HRESULT createRange(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLSelectionObject.createRange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"empty","package":"druntime","parentType":"IHTMLSelectionObject","signature":"HRESULT empty()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLSelectionObject.empty.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"clear","package":"druntime","parentType":"IHTMLSelectionObject","signature":"HRESULT clear()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLSelectionObject.clear.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_type","package":"druntime","parentType":"IHTMLSelectionObject","signature":"HRESULT get_type(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLSelectionObject.get_type.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLSELECTIONOBJECT","package":"druntime","parentType":"","signature":"LPHTMLSELECTIONOBJECT = IHTMLSelectionObject","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLSELECTIONOBJECT"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLTxtRange","package":"druntime","parentType":"","signature":"IHTMLTxtRange : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLTxtRange"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_htmlText","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT get_htmlText(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.get_htmlText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_text","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT put_text(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.put_text.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_text","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT get_text(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.get_text.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"parentElement","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT parentElement(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.parentElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"duplicate","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT duplicate(IHTMLTxtRange *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.duplicate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"inRange","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT inRange(IHTMLTxtRange, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.inRange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"isEqual","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT isEqual(IHTMLTxtRange, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.isEqual.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"scrollIntoView","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT scrollIntoView(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.scrollIntoView.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"collapse","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT collapse(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.collapse.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"expand","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT expand(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.expand.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"move","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT move(BSTR, LONG, LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.move.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveStart","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT moveStart(BSTR, LONG, LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.moveStart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveEnd","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT moveEnd(BSTR, LONG, LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.moveEnd.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"select","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT select()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.select.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"pasteHTML","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT pasteHTML(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.pasteHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveToElementText","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT moveToElementText(LPHTMLELEMENT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.moveToElementText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"setEndPoint","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT setEndPoint(BSTR, IHTMLTxtRange)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.setEndPoint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"compareEndPoints","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT compareEndPoints(BSTR, IHTMLTxtRange, LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.compareEndPoints.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"findText","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT findText(BSTR, LONG, LONG, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.findText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveToPoint","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT moveToPoint(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.moveToPoint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"getBookmark","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT getBookmark(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.getBookmark.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveToBookbark","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT moveToBookbark(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.moveToBookbark.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandSupported","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandSupported(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandSupported.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandEnabled","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandEnabled(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandEnabled.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandState","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandState(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandIndeterm","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandIndeterm(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandIndeterm.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandText","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandText(BSTR, BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"queryCommandValue","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT queryCommandValue(BSTR, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.queryCommandValue.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"execCommand","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT execCommand(BSTR, VARIANT_BOOL, VARIANT, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.execCommand.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"execCommandShowHelp","package":"druntime","parentType":"IHTMLTxtRange","signature":"HRESULT execCommandShowHelp(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLTxtRange.execCommandShowHelp.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLElement","package":"druntime","parentType":"","signature":"IHTMLElement : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLElement"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"setAttribute","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT setAttribute(BSTR, VARIANT, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.setAttribute.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"getAttribute","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT getAttribute(BSTR, LONG, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.getAttribute.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"removeAttribute","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT removeAttribute(BSTR, LONG, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.removeAttribute.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_className","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_className(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_className.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_className","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_className(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_className.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_id","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_id(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_id.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_id","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_id(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_id.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_tagName","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_tagName(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_tagName.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_parentElement","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_parentElement(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_parentElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_style","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_style(LPHTMLSTYLE *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_style.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onhelp","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onhelp(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onhelp","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onhelp(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onclick","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onclick(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onclick","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onclick(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondblclick","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_ondblclick(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_ondblclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondblclick","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_ondblclick(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_ondblclick.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeydown","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onkeydown(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onkeydown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeydown","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onkeydown(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onkeydown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeyup","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onkeyup(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onkeyup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeyup","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onkeyup(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onkeyup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onkeypress","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onkeypress(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onkeypress.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onkeypress","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onkeypress(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onkeypress.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseout","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onmouseout(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onmouseout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseout","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onmouseout(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onmouseout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseover","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onmouseover(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onmouseover.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseover","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onmouseover(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onmouseover.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmousemove","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onmousemove(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onmousemove.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmousemove","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onmousemove(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onmousemove.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmousedown","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onmousedown(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onmousedown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmousedown","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onmousedown(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onmousedown.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onmouseup","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onmouseup(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onmouseup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onmouseup","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onmouseup(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onmouseup.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_document","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_document(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_document.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_title","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_title(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_title.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_title","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_title(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_title.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_language","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_language(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_language.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_language","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_language(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_language.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onselectstart","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onselectstart(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onselectstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onselectstart","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onselectstart(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onselectstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"scrollIntoView","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT scrollIntoView(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.scrollIntoView.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"contains","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT contains(LPHTMLELEMENT, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.contains.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_source3Index","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_source3Index(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_source3Index.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_recordNumber","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_recordNumber(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_recordNumber.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_lang","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_lang(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_lang.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_lang","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_lang(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_lang.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offsetLeft","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_offsetLeft(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_offsetLeft.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offsetTop","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_offsetTop(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_offsetTop.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offsetWidth","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_offsetWidth(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_offsetWidth.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offsetHeight","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_offsetHeight(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_offsetHeight.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offsetParent","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_offsetParent(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_offsetParent.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_innerHTML","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_innerHTML(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_innerHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_innerHTML","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_innerHTML(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_innerHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_innerText","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_innerText(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_innerText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_innerText","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_innerText(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_innerText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_outerHTML","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_outerHTML(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_outerHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_outerHTML","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_outerHTML(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_outerHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_outerText","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_outerText(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_outerText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_outerText","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_outerText(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_outerText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"insertAdjacentHTML","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT insertAdjacentHTML(BSTR, BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.insertAdjacentHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"insertAdjacentText","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT insertAdjacentText(BSTR, BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.insertAdjacentText.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_parentTextEdit","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_parentTextEdit(LPHTMLELEMENT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_parentTextEdit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"isTextEdit","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT isTextEdit(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.isTextEdit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"click","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT click()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.click.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_filters","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_filters(LPHTMLFILTERSCOLLECTION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_filters.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondragstart","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_ondragstart(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_ondragstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondragstart","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_ondragstart(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_ondragstart.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"toString","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT toString(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.toString.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onbeforeupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onbeforeupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onbeforeupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onbeforeupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onbeforeupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onbeforeupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onafterupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onafterupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onafterupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onafterupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onafterupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onafterupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onerrorupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onerrorupdate(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onerrorupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onerrorupdate","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onerrorupdate(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onerrorupdate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onrowexit","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onrowexit(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onrowexit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onrowexit","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onrowexit(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onrowexit.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onrowenter","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onrowenter(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onrowenter.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onrowenter","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onrowenter(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onrowenter.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondatasetchanged","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_ondatasetchanged(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_ondatasetchanged.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondatasetchanged","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_ondatasetchanged(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_ondatasetchanged.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondataavailable","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_ondataavailable(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_ondataavailable.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondataavailable","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_ondataavailable(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_ondataavailable.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_ondatasetcomplete","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_ondatasetcomplete(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_ondatasetcomplete.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_ondatasetcomplete","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_ondatasetcomplete(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_ondatasetcomplete.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onfilterchange","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT put_onfilterchange(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.put_onfilterchange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onfilterchange","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_onfilterchange(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_onfilterchange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_children","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_children(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_children.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_all","package":"druntime","parentType":"IHTMLElement","signature":"HRESULT get_all(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLElement.get_all.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLELEMENT","package":"druntime","parentType":"","signature":"LPHTMLELEMENT = IHTMLElement","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLELEMENT"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFramesCollection2","package":"druntime","parentType":"","signature":"IHTMLFramesCollection2 : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFramesCollection2"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"item","package":"druntime","parentType":"IHTMLFramesCollection2","signature":"HRESULT item(VARIANT *, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFramesCollection2.item.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_length","package":"druntime","parentType":"IHTMLFramesCollection2","signature":"HRESULT get_length(LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFramesCollection2.get_length.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLWindow2","package":"druntime","parentType":"","signature":"IHTMLWindow2 : IHTMLFramesCollection2","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLWindow2"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_frames","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_frames(IHTMLFramesCollection2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_frames.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_defaultStatus","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_defaultStatus(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_defaultStatus.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_defaultStatus","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_defaultStatus(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_defaultStatus.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_status","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_status(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_status.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_status","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_status(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_status.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"setTimeout","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT setTimeout(BSTR, LONG, VARIANT *, LONG *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.setTimeout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"clearTimeout","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT clearTimeout(LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.clearTimeout.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"alert","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT alert(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.alert.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"confirm","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT confirm(BSTR, VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.confirm.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"prompt","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT prompt(BSTR, BSTR, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.prompt.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_Image","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_Image(LPHTMLIMAGEELEMENTFACTORY *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_Image.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_location","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_location(LPHTMLLOCATION *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_location.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_history","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_history(LPOMHISTORY *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_history.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"close","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT close()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.close.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_opener","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_opener(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_opener.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_opener","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_opener(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_opener.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_navigator","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_navigator(LPOMNAVIGATOR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_navigator.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_name","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_name(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_name","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_name(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_parent","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_parent(LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_parent.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"open","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT open(BSTR, BSTR, BSTR, VARIANT_BOOL, LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.open.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_self","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_self(LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_self.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_top","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_top(LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_top.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_window","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_window(LPHTMLWINDOW2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_window.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"navigate","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT navigate(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.navigate.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onfocus","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onfocus(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onfocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onfocus","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onfocus(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onfocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onblur","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onblur(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onblur.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onblur","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onblur(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onblur.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onbeforeunload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onbeforeunload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onbeforeunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onbeforeunload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onbeforeunload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onbeforeunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onunload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onunload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onunload","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onunload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onhelp","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onhelp(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onhelp","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onhelp(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onhelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onerror","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onerror(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onerror","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onerror(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onerror.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onresize","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onresize(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onresize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onresize","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onresize(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onresize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onscroll","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_onscroll(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_onscroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onscroll","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_onscroll(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_onscroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_document","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_document(IHTMLDocument2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_document.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_event","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_event(LPHTMLEVENTOBJ *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_event.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get__newEnum","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get__newEnum(IUnknown *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get__newEnum.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"showModalDialog","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT showModalDialog(BSTR, VARIANT *, VARIANT *, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.showModalDialog.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"showHelp","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT showHelp(BSTR, VARIANT, BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.showHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_screen","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_screen(LPHTMLSCREEN *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_screen.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_Option","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_Option(LPHTMLOPTIONELEMENTFACTORY *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_Option.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"focus","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT focus()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.focus.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_closed","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_closed(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_closed.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"blur","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT blur()","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.blur.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"scroll","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT scroll(long, long)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.scroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_clientInformation","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_clientInformation(LPOMNAVIGATOR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_clientInformation.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"setInterval","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT setInterval(BSTR, long, VARIANT *, long *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.setInterval.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"clearInterval","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT clearInterval(long)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.clearInterval.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_offscreenBuffering","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT put_offscreenBuffering(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.put_offscreenBuffering.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_offscreenBuffering","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_offscreenBuffering(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_offscreenBuffering.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"execScript","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT execScript(BSTR, BSTR, VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.execScript.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"toString","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT toString(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.toString.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"scrollBy","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT scrollBy(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.scrollBy.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"scrollTo","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT scrollTo(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.scrollTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveTo","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT moveTo(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.moveTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"moveBy","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT moveBy(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.moveBy.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"resizeTo","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT resizeTo(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.resizeTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"resizeBy","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT resizeBy(LONG, LONG)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.resizeBy.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_external","package":"druntime","parentType":"IHTMLWindow2","signature":"HRESULT get_external(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLWindow2.get_external.html"},{"doc":"","kind":"alias","module":"core.sys.windows.mshtml","name":"LPHTMLWINDOW2","package":"druntime","parentType":"","signature":"LPHTMLWINDOW2 = IHTMLWindow2","url":"/ddoc/druntime/core/sys/windows/mshtml.html#LPHTMLWINDOW2"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFrameBase","package":"druntime","parentType":"","signature":"IHTMLFrameBase : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFrameBase"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_src","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_src(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_src.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_src","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_src(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_src.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_name","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_name(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_name","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_name(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_name.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_border","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_border(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_border.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_border","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_border(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_border.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_frameBorder","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_frameBorder(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_frameBorder.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_frameBorder","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_frameBorder(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_frameBorder.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_frameSpacing","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_frameSpacing(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_frameSpacing.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_frameSpacing","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_frameSpacing(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_frameSpacing.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_marginWidth","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_marginWidth(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_marginWidth.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_marginWidth","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_marginWidth(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_marginWidth.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_marginHeight","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_marginHeight(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_marginHeight.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_marginHeight","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_marginHeight(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_marginHeight.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_noResize","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_noResize(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_noResize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_noResize","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_noResize(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_noResize.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_scrolling","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT put_scrolling(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.put_scrolling.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_scrolling","package":"druntime","parentType":"IHTMLFrameBase","signature":"HRESULT get_scrolling(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase.get_scrolling.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFrameBase2","package":"druntime","parentType":"","signature":"IHTMLFrameBase2 : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFrameBase2"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_contentWindow","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT get_contentWindow(IHTMLWindow2 *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.get_contentWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onload","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT put_onload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.put_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onload","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT get_onload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.get_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onreadystatechange","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT put_onreadystatechange(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.put_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onreadystatechange","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT get_onreadystatechange(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.get_onreadystatechange.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_readyState","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT get_readyState(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.get_readyState.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_allowTransparency","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT put_allowTransparency(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.put_allowTransparency.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_allowTransparency","package":"druntime","parentType":"IHTMLFrameBase2","signature":"HRESULT get_allowTransparency(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase2.get_allowTransparency.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLFrameBase3","package":"druntime","parentType":"","signature":"IHTMLFrameBase3 : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLFrameBase3"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_longDesc","package":"druntime","parentType":"IHTMLFrameBase3","signature":"HRESULT put_longDesc(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase3.put_longDesc.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_longDesc","package":"druntime","parentType":"IHTMLFrameBase3","signature":"HRESULT get_longDesc(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLFrameBase3.get_longDesc.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLBodyElement","package":"druntime","parentType":"","signature":"IHTMLBodyElement : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLBodyElement"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_background","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_background(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_background.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_background","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_background(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_background.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_bgProperties","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_bgProperties(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_bgProperties.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_bgProperties","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_bgProperties(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_bgProperties.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_leftMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_leftMargin(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_leftMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_leftMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_leftMargin(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_leftMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_topMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_topMargin(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_topMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_topMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_topMargin(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_topMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_rightMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_rightMargin(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_rightMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_rightMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_rightMargin(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_rightMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_bottomMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_bottomMargin(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_bottomMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_bottomMargin","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_bottomMargin(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_bottomMargin.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_noWrap","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_noWrap(VARIANT_BOOL)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_noWrap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_noWrap","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_noWrap(VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_noWrap.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_bgColor","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_bgColor(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_bgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_bgColor","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_bgColor(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_bgColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_text","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_text(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_text.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_text","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_text(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_text.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_link","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_link(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_link.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_link","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_link(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_link.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_vLink","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_vLink(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_vLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_vLink","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_vLink(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_vLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_aLink","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_aLink(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_aLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_aLink","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_aLink(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_aLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_onload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_onload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_onload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onunload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_onunload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_onunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onunload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_onunload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_onunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_scroll","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_scroll(BSTR)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_scroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_scroll","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_scroll(BSTR *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_scroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onselect","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_onselect(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_onselect.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onselect","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_onselect(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_onselect.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onbeforeunload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT put_onbeforeunload(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.put_onbeforeunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onbeforeunload","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT get_onbeforeunload(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.get_onbeforeunload.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"createTextRange","package":"druntime","parentType":"IHTMLBodyElement","signature":"HRESULT createTextRange(IHTMLTxtRange *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement.createTextRange.html"},{"doc":"","kind":"interface","module":"core.sys.windows.mshtml","name":"IHTMLBodyElement2","package":"druntime","parentType":"","signature":"IHTMLBodyElement2 : IDispatch","url":"/ddoc/druntime/core/sys/windows/mshtml.html#IHTMLBodyElement2"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onbeforeprint","package":"druntime","parentType":"IHTMLBodyElement2","signature":"HRESULT put_onbeforeprint(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement2.put_onbeforeprint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onbeforeprint","package":"druntime","parentType":"IHTMLBodyElement2","signature":"HRESULT get_onbeforeprint(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement2.get_onbeforeprint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"put_onafterprint","package":"druntime","parentType":"IHTMLBodyElement2","signature":"HRESULT put_onafterprint(VARIANT)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement2.put_onafterprint.html"},{"doc":"","kind":"method","module":"core.sys.windows.mshtml","name":"get_onafterprint","package":"druntime","parentType":"IHTMLBodyElement2","signature":"HRESULT get_onafterprint(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/mshtml/IHTMLBodyElement2.get_onafterprint.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.mswsock","name":"core.sys.windows.mswsock","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/mswsock.html"},{"doc":"","kind":"function","module":"core.sys.windows.mswsock","name":"WSARecvEx","package":"druntime","parentType":"","signature":"int WSARecvEx(SOCKET,  char *,  int,  int *)","url":"/ddoc/druntime/core/sys/windows/mswsock/WSARecvEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.mswsock","name":"GetAcceptExSockaddrs","package":"druntime","parentType":"","signature":"VOID GetAcceptExSockaddrs(PVOID,  DWORD,  DWORD,  DWORD,  SOCKADDR * *,  LPINT,  SOCKADDR * *,  LPINT)","url":"/ddoc/druntime/core/sys/windows/mswsock/GetAcceptExSockaddrs.html"},{"doc":"","kind":"function","module":"core.sys.windows.mswsock","name":"TransmitFile","package":"druntime","parentType":"","signature":"BOOL TransmitFile(SOCKET,  HANDLE,  DWORD,  DWORD,  LPOVERLAPPED,  LPTRANSMIT_FILE_BUFFERS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/mswsock/TransmitFile.html"},{"doc":"","kind":"struct","module":"core.sys.windows.mswsock","name":"TRANSMIT_FILE_BUFFERS","package":"druntime","parentType":"","signature":"TRANSMIT_FILE_BUFFERS","url":"/ddoc/druntime/core/sys/windows/mswsock.html#TRANSMIT_FILE_BUFFERS"},{"doc":"","kind":"alias","module":"core.sys.windows.mswsock","name":"PTRANSMIT_FILE_BUFFERS","package":"druntime","parentType":"","signature":"PTRANSMIT_FILE_BUFFERS = TRANSMIT_FILE_BUFFERS *","url":"/ddoc/druntime/core/sys/windows/mswsock.html#PTRANSMIT_FILE_BUFFERS"},{"doc":"","kind":"alias","module":"core.sys.windows.mswsock","name":"LPFN_ACCEPTEX","package":"druntime","parentType":"","signature":"LPFN_ACCEPTEX = BOOL function(SOCKET,  SOCKET,  PVOID,  DWORD,  DWORD,  DWORD,  LPDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/mswsock.html#LPFN_ACCEPTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.mswsock","name":"LPFN_CONNECTEX","package":"druntime","parentType":"","signature":"LPFN_CONNECTEX = BOOL function(SOCKET,  SOCKADDR *,  int,  PVOID,  DWORD,  LPDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/mswsock.html#LPFN_CONNECTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.mswsock","name":"WSAID_ACCEPTEX","package":"druntime","parentType":"","signature":"GUID WSAID_ACCEPTEX","url":"/ddoc/druntime/core/sys/windows/mswsock.html#WSAID_ACCEPTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.mswsock","name":"WSAID_CONNECTEX","package":"druntime","parentType":"","signature":"GUID WSAID_CONNECTEX","url":"/ddoc/druntime/core/sys/windows/mswsock.html#WSAID_CONNECTEX"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.nb30","name":"core.sys.windows.nb30","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/nb30.html"},{"doc":"","kind":"function","module":"core.sys.windows.nb30","name":"Netbios","package":"druntime","parentType":"","signature":"UCHAR Netbios(PNCB)","url":"/ddoc/druntime/core/sys/windows/nb30/Netbios.html"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"ACTION_HEADER","package":"druntime","parentType":"","signature":"ACTION_HEADER","url":"/ddoc/druntime/core/sys/windows/nb30.html#ACTION_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PACTION_HEADER","package":"druntime","parentType":"","signature":"PACTION_HEADER = ACTION_HEADER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PACTION_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"ADAPTER_STATUS","package":"druntime","parentType":"","signature":"ADAPTER_STATUS","url":"/ddoc/druntime/core/sys/windows/nb30.html#ADAPTER_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PADAPTER_STATUS","package":"druntime","parentType":"","signature":"PADAPTER_STATUS = ADAPTER_STATUS *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PADAPTER_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"FIND_NAME_BUFFER","package":"druntime","parentType":"","signature":"FIND_NAME_BUFFER","url":"/ddoc/druntime/core/sys/windows/nb30.html#FIND_NAME_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PFIND_NAME_BUFFER","package":"druntime","parentType":"","signature":"PFIND_NAME_BUFFER = FIND_NAME_BUFFER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PFIND_NAME_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"FIND_NAME_HEADER","package":"druntime","parentType":"","signature":"FIND_NAME_HEADER","url":"/ddoc/druntime/core/sys/windows/nb30.html#FIND_NAME_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PFIND_NAME_HEADER","package":"druntime","parentType":"","signature":"PFIND_NAME_HEADER = FIND_NAME_HEADER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PFIND_NAME_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"LANA_ENUM","package":"druntime","parentType":"","signature":"LANA_ENUM","url":"/ddoc/druntime/core/sys/windows/nb30.html#LANA_ENUM"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PLANA_ENUM","package":"druntime","parentType":"","signature":"PLANA_ENUM = LANA_ENUM *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PLANA_ENUM"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"NAME_BUFFER","package":"druntime","parentType":"","signature":"NAME_BUFFER","url":"/ddoc/druntime/core/sys/windows/nb30.html#NAME_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PNAME_BUFFER","package":"druntime","parentType":"","signature":"PNAME_BUFFER = NAME_BUFFER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PNAME_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"NCB","package":"druntime","parentType":"","signature":"NCB","url":"/ddoc/druntime/core/sys/windows/nb30.html#NCB"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PNCB","package":"druntime","parentType":"","signature":"PNCB = NCB *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PNCB"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"SESSION_BUFFER","package":"druntime","parentType":"","signature":"SESSION_BUFFER","url":"/ddoc/druntime/core/sys/windows/nb30.html#SESSION_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PSESSION_BUFFER","package":"druntime","parentType":"","signature":"PSESSION_BUFFER = SESSION_BUFFER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PSESSION_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.nb30","name":"SESSION_HEADER","package":"druntime","parentType":"","signature":"SESSION_HEADER","url":"/ddoc/druntime/core/sys/windows/nb30.html#SESSION_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.nb30","name":"PSESSION_HEADER","package":"druntime","parentType":"","signature":"PSESSION_HEADER = SESSION_HEADER *","url":"/ddoc/druntime/core/sys/windows/nb30.html#PSESSION_HEADER"},{"doc":"","kind":"variable","module":"core.sys.windows.nb30","name":"NCBNAMSZ","package":"druntime","parentType":"","signature":"size_t NCBNAMSZ","url":"/ddoc/druntime/core/sys/windows/nb30.html#NCBNAMSZ"},{"doc":"","kind":"variable","module":"core.sys.windows.nb30","name":"ALL_TRANSPORTS","package":"druntime","parentType":"","signature":"char[4] ALL_TRANSPORTS","url":"/ddoc/druntime/core/sys/windows/nb30.html#ALL_TRANSPORTS"},{"doc":"","kind":"variable","module":"core.sys.windows.nb30","name":"ASYNCH","package":"druntime","parentType":"","signature":"UCHAR ASYNCH","url":"/ddoc/druntime/core/sys/windows/nb30.html#ASYNCH"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.nddeapi","name":"core.sys.windows.nddeapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/nddeapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetErrorStringA","package":"druntime","parentType":"","signature":"UINT NDdeGetErrorStringA(UINT,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetErrorStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetErrorStringW","package":"druntime","parentType":"","signature":"UINT NDdeGetErrorStringW(UINT,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetErrorStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetShareSecurityA","package":"druntime","parentType":"","signature":"UINT NDdeGetShareSecurityA(LPSTR,  LPSTR,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetShareSecurityA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetShareSecurityW","package":"druntime","parentType":"","signature":"UINT NDdeGetShareSecurityW(LPWSTR,  LPWSTR,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetShareSecurityW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetTrustedShareA","package":"druntime","parentType":"","signature":"UINT NDdeGetTrustedShareA(LPSTR,  LPSTR,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetTrustedShareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeGetTrustedShareW","package":"druntime","parentType":"","signature":"UINT NDdeGetTrustedShareW(LPWSTR,  LPWSTR,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeGetTrustedShareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeIsValidShareNameA","package":"druntime","parentType":"","signature":"BOOL NDdeIsValidShareNameA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeIsValidShareNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeIsValidShareNameW","package":"druntime","parentType":"","signature":"BOOL NDdeIsValidShareNameW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeIsValidShareNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeIsValidAppTopicListA","package":"druntime","parentType":"","signature":"BOOL NDdeIsValidAppTopicListA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeIsValidAppTopicListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeIsValidAppTopicListW","package":"druntime","parentType":"","signature":"BOOL NDdeIsValidAppTopicListW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeIsValidAppTopicListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeSetShareSecurityA","package":"druntime","parentType":"","signature":"UINT NDdeSetShareSecurityA(LPSTR,  LPSTR,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeSetShareSecurityA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeSetShareSecurityW","package":"druntime","parentType":"","signature":"UINT NDdeSetShareSecurityW(LPWSTR,  LPWSTR,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeSetShareSecurityW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeSetTrustedShareA","package":"druntime","parentType":"","signature":"UINT NDdeSetTrustedShareA(LPSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeSetTrustedShareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeSetTrustedShareW","package":"druntime","parentType":"","signature":"UINT NDdeSetTrustedShareW(LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeSetTrustedShareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareAddA","package":"druntime","parentType":"","signature":"UINT NDdeShareAddA(LPSTR,  UINT,  PSECURITY_DESCRIPTOR,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareAddA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareAddW","package":"druntime","parentType":"","signature":"UINT NDdeShareAddW(LPWSTR,  UINT,  PSECURITY_DESCRIPTOR,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareAddW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareDelA","package":"druntime","parentType":"","signature":"UINT NDdeShareDelA(LPSTR,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareDelA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareDelW","package":"druntime","parentType":"","signature":"UINT NDdeShareDelW(LPWSTR,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareDelW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareEnumA","package":"druntime","parentType":"","signature":"UINT NDdeShareEnumA(LPSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareEnumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareEnumW","package":"druntime","parentType":"","signature":"UINT NDdeShareEnumW(LPWSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareEnumW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareGetInfoA","package":"druntime","parentType":"","signature":"UINT NDdeShareGetInfoA(LPSTR,  LPSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareGetInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareGetInfoW","package":"druntime","parentType":"","signature":"UINT NDdeShareGetInfoW(LPWSTR,  LPWSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareGetInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareSetInfoA","package":"druntime","parentType":"","signature":"UINT NDdeShareSetInfoA(LPSTR,  LPSTR,  UINT,  PBYTE,  DWORD,  WORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareSetInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeShareSetInfoW","package":"druntime","parentType":"","signature":"UINT NDdeShareSetInfoW(LPWSTR,  LPWSTR,  UINT,  PBYTE,  DWORD,  WORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeShareSetInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeTrustedShareEnumA","package":"druntime","parentType":"","signature":"UINT NDdeTrustedShareEnumA(LPSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeTrustedShareEnumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nddeapi","name":"NDdeTrustedShareEnumW","package":"druntime","parentType":"","signature":"UINT NDdeTrustedShareEnumW(LPWSTR,  UINT,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/nddeapi/NDdeTrustedShareEnumW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.nddeapi","name":"NDdeShareInfo_tag","package":"druntime","parentType":"","signature":"NDdeShareInfo_tag","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDdeShareInfo_tag"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"SEP_CHAR","package":"druntime","parentType":"","signature":"char SEP_CHAR","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#SEP_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"BAR_CHAR","package":"druntime","parentType":"","signature":"char[] BAR_CHAR","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#BAR_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"SEP_WCHAR","package":"druntime","parentType":"","signature":"wchar SEP_WCHAR","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#SEP_WCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"BAR_WCHAR","package":"druntime","parentType":"","signature":"wchar[] BAR_WCHAR","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#BAR_WCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"MAX_NDDESHARENAME","package":"druntime","parentType":"","signature":"size_t MAX_NDDESHARENAME","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#MAX_NDDESHARENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"NDDEF_NOPASSWORDPROMPT","package":"druntime","parentType":"","signature":"NDDEF_NOPASSWORDPROMPT","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDDEF_NOPASSWORDPROMPT"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"NDDEF_NOCACHELOOKUP","package":"druntime","parentType":"","signature":"NDDEF_NOCACHELOOKUP","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDDEF_NOCACHELOOKUP"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"NDDEF_STRIP_NDDE","package":"druntime","parentType":"","signature":"NDDEF_STRIP_NDDE","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDDEF_STRIP_NDDE"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"SHARE_TYPE_OLD","package":"druntime","parentType":"","signature":"SHARE_TYPE_OLD","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#SHARE_TYPE_OLD"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"SHARE_TYPE_NEW","package":"druntime","parentType":"","signature":"SHARE_TYPE_NEW","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#SHARE_TYPE_NEW"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"SHARE_TYPE_STATIC","package":"druntime","parentType":"","signature":"SHARE_TYPE_STATIC","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#SHARE_TYPE_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"NDDE_CMD_SHOW_MASK","package":"druntime","parentType":"","signature":"uint NDDE_CMD_SHOW_MASK","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDDE_CMD_SHOW_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"NDDESHAREINFO","package":"druntime","parentType":"","signature":"NDdeShareInfo_tag NDDESHAREINFO","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#NDDESHAREINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.nddeapi","name":"PNDDESHAREINFO","package":"druntime","parentType":"","signature":"NDdeShareInfo_tag * PNDDESHAREINFO","url":"/ddoc/druntime/core/sys/windows/nddeapi.html#PNDDESHAREINFO"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.nspapi","name":"core.sys.windows.nspapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/nspapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.nspapi","name":"SetServiceA","package":"druntime","parentType":"","signature":"INT SetServiceA(DWORD,  DWORD,  DWORD,  LPSERVICE_INFOA,\n       LPSERVICE_ASYNC_INFO,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/nspapi/SetServiceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nspapi","name":"SetServiceW","package":"druntime","parentType":"","signature":"INT SetServiceW(DWORD,  DWORD,  DWORD,  LPSERVICE_INFOW,\n       LPSERVICE_ASYNC_INFO,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/nspapi/SetServiceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.nspapi","name":"GetAddressByNameA","package":"druntime","parentType":"","signature":"INT GetAddressByNameA(DWORD,  LPGUID,  LPSTR,  LPINT,  DWORD,\n       LPSERVICE_ASYNC_INFO,  LPVOID,  LPDWORD,  LPSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/nspapi/GetAddressByNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.nspapi","name":"GetAddressByNameW","package":"druntime","parentType":"","signature":"INT GetAddressByNameW(DWORD,  LPGUID,  LPWSTR,  LPINT,  DWORD,\n       LPSERVICE_ASYNC_INFO,  LPVOID,  LPDWORD,  LPWSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/nspapi/GetAddressByNameW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"SOCKET_ADDRESS","package":"druntime","parentType":"","signature":"SOCKET_ADDRESS","url":"/ddoc/druntime/core/sys/windows/nspapi.html#SOCKET_ADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"PSOCKET_ADDRESS","package":"druntime","parentType":"","signature":"PSOCKET_ADDRESS = SOCKET_ADDRESS *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#PSOCKET_ADDRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"CSADDR_INFO","package":"druntime","parentType":"","signature":"CSADDR_INFO","url":"/ddoc/druntime/core/sys/windows/nspapi.html#CSADDR_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"PCSADDR_INFO","package":"druntime","parentType":"","signature":"PCSADDR_INFO = CSADDR_INFO *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#PCSADDR_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"BLOB","package":"druntime","parentType":"","signature":"BLOB","url":"/ddoc/druntime/core/sys/windows/nspapi.html#BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"PBLOB","package":"druntime","parentType":"","signature":"PBLOB = BLOB *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#PBLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"SERVICE_ADDRESS","package":"druntime","parentType":"","signature":"SERVICE_ADDRESS","url":"/ddoc/druntime/core/sys/windows/nspapi.html#SERVICE_ADDRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"SERVICE_ADDRESSES","package":"druntime","parentType":"","signature":"SERVICE_ADDRESSES","url":"/ddoc/druntime/core/sys/windows/nspapi.html#SERVICE_ADDRESSES"},{"doc":"","kind":"method","module":"core.sys.windows.nspapi","name":"Addresses","package":"druntime","parentType":"SERVICE_ADDRESSES","signature":"SERVICE_ADDRESS * Addresses()","url":"/ddoc/druntime/core/sys/windows/nspapi/SERVICE_ADDRESSES.Addresses.html"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"PSERVICE_ADDRESSES","package":"druntime","parentType":"","signature":"PSERVICE_ADDRESSES = SERVICE_ADDRESSES *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#PSERVICE_ADDRESSES"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"SERVICE_INFOA","package":"druntime","parentType":"","signature":"SERVICE_INFOA","url":"/ddoc/druntime/core/sys/windows/nspapi.html#SERVICE_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"LPSERVICE_INFOA","package":"druntime","parentType":"","signature":"LPSERVICE_INFOA = SERVICE_INFOA *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#LPSERVICE_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.nspapi","name":"SERVICE_INFOW","package":"druntime","parentType":"","signature":"SERVICE_INFOW","url":"/ddoc/druntime/core/sys/windows/nspapi.html#SERVICE_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"LPSERVICE_INFOW","package":"druntime","parentType":"","signature":"LPSERVICE_INFOW = SERVICE_INFOW *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#LPSERVICE_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"LPSERVICE_ASYNC_INFO","package":"druntime","parentType":"","signature":"LPSERVICE_ASYNC_INFO = void *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#LPSERVICE_ASYNC_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"_SERVICE_INFO","package":"druntime","parentType":"","signature":"_SERVICE_INFO = SERVICE_INFO","url":"/ddoc/druntime/core/sys/windows/nspapi.html#_SERVICE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.nspapi","name":"LPSERVICE_INFO","package":"druntime","parentType":"","signature":"LPSERVICE_INFO = SERVICE_INFO *","url":"/ddoc/druntime/core/sys/windows/nspapi.html#LPSERVICE_INFO"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ntdef","name":"core.sys.windows.ntdef","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ntdef.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdef","name":"InitializeObjectAttributes","package":"druntime","parentType":"","signature":"void InitializeObjectAttributes(OBJECT_ATTRIBUTES *  p,  UNICODE_STRING *  n,\n       uint  a,  HANDLE r,  void *  s)","url":"/ddoc/druntime/core/sys/windows/ntdef/InitializeObjectAttributes.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdef","name":"NT_SUCCESS","package":"druntime","parentType":"","signature":"bool NT_SUCCESS()(NTSTATUS Status)","url":"/ddoc/druntime/core/sys/windows/ntdef/NT_SUCCESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdef","name":"NT_INFORMATION","package":"druntime","parentType":"","signature":"bool NT_INFORMATION()(NTSTATUS Status)","url":"/ddoc/druntime/core/sys/windows/ntdef/NT_INFORMATION.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdef","name":"NT_WARNING","package":"druntime","parentType":"","signature":"bool NT_WARNING()(NTSTATUS Status)","url":"/ddoc/druntime/core/sys/windows/ntdef/NT_WARNING.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdef","name":"NT_ERROR","package":"druntime","parentType":"","signature":"bool NT_ERROR()(NTSTATUS Status)","url":"/ddoc/druntime/core/sys/windows/ntdef/NT_ERROR.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"NTSTATUS","package":"druntime","parentType":"","signature":"NTSTATUS = int","url":"/ddoc/druntime/core/sys/windows/ntdef.html#NTSTATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PNTSTATUS","package":"druntime","parentType":"","signature":"PNTSTATUS = int *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PNTSTATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.ntdef","name":"UNICODE_STRING","package":"druntime","parentType":"","signature":"UNICODE_STRING","url":"/ddoc/druntime/core/sys/windows/ntdef.html#UNICODE_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PUNICODE_STRING","package":"druntime","parentType":"","signature":"PUNICODE_STRING = UNICODE_STRING *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PUNICODE_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PCUNICODE_STRING","package":"druntime","parentType":"","signature":"PCUNICODE_STRING = const(UNICODE_STRING) *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PCUNICODE_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.ntdef","name":"STRING","package":"druntime","parentType":"","signature":"STRING","url":"/ddoc/druntime/core/sys/windows/ntdef.html#STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"ANSI_STRING","package":"druntime","parentType":"","signature":"ANSI_STRING = STRING","url":"/ddoc/druntime/core/sys/windows/ntdef.html#ANSI_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PSTRING","package":"druntime","parentType":"","signature":"PSTRING = STRING *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PSTRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PHYSICAL_ADDRESS","package":"druntime","parentType":"","signature":"PHYSICAL_ADDRESS = LARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PHYSICAL_ADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"PPHYSICAL_ADDRESS","package":"druntime","parentType":"","signature":"PPHYSICAL_ADDRESS = LARGE_INTEGER *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#PPHYSICAL_ADDRESS"},{"doc":"","kind":"enum","module":"core.sys.windows.ntdef","name":"SECTION_INHERIT","package":"druntime","parentType":"","signature":"SECTION_INHERIT","url":"/ddoc/druntime/core/sys/windows/ntdef.html#SECTION_INHERIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntdef","name":"ViewShare","package":"druntime","parentType":"","signature":"ViewShare = 1","url":"/ddoc/druntime/core/sys/windows/ntdef.html#SECTION_INHERIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntdef","name":"ViewUnmap","package":"druntime","parentType":"","signature":"ViewUnmap = ","url":"/ddoc/druntime/core/sys/windows/ntdef.html#SECTION_INHERIT"},{"doc":"","kind":"struct","module":"core.sys.windows.ntdef","name":"OBJECT_ATTRIBUTES","package":"druntime","parentType":"","signature":"OBJECT_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/ntdef.html#OBJECT_ATTRIBUTES"},{"doc":"","kind":"alias","module":"core.sys.windows.ntdef","name":"POBJECT_ATTRIBUTES","package":"druntime","parentType":"","signature":"POBJECT_ATTRIBUTES = OBJECT_ATTRIBUTES *","url":"/ddoc/druntime/core/sys/windows/ntdef.html#POBJECT_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.ntdef","name":"OBJ_INHERIT","package":"druntime","parentType":"","signature":"uint OBJ_INHERIT","url":"/ddoc/druntime/core/sys/windows/ntdef.html#OBJ_INHERIT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ntdll","name":"core.sys.windows.ntdll","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ntdll.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntdll","name":"NtShutdownSystem","package":"druntime","parentType":"","signature":"uint NtShutdownSystem(SHUTDOWN_ACTION Action)","url":"/ddoc/druntime/core/sys/windows/ntdll/NtShutdownSystem.html"},{"doc":"","kind":"enum","module":"core.sys.windows.ntdll","name":"SHUTDOWN_ACTION","package":"druntime","parentType":"","signature":"SHUTDOWN_ACTION","url":"/ddoc/druntime/core/sys/windows/ntdll.html#SHUTDOWN_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntdll","name":"ShutdownNoReboot","package":"druntime","parentType":"","signature":"ShutdownNoReboot = ","url":"/ddoc/druntime/core/sys/windows/ntdll.html#SHUTDOWN_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntdll","name":"ShutdownReboot","package":"druntime","parentType":"","signature":"ShutdownReboot = ","url":"/ddoc/druntime/core/sys/windows/ntdll.html#SHUTDOWN_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntdll","name":"ShutdownPowerOff","package":"druntime","parentType":"","signature":"ShutdownPowerOff = ","url":"/ddoc/druntime/core/sys/windows/ntdll.html#SHUTDOWN_ACTION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ntldap","name":"core.sys.windows.ntldap","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ntldap.html"},{"doc":"","kind":"variable","module":"core.sys.windows.ntldap","name":"LDAP_SERVER_ASQ_OID","package":"druntime","parentType":"","signature":"char[] LDAP_SERVER_ASQ_OID","url":"/ddoc/druntime/core/sys/windows/ntldap.html#LDAP_SERVER_ASQ_OID"},{"doc":"","kind":"variable","module":"core.sys.windows.ntldap","name":"LDAP_SERVER_ASQ_OID_W","package":"druntime","parentType":"","signature":"wchar[] LDAP_SERVER_ASQ_OID_W","url":"/ddoc/druntime/core/sys/windows/ntldap.html#LDAP_SERVER_ASQ_OID_W"},{"doc":"","kind":"variable","module":"core.sys.windows.ntldap","name":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","package":"druntime","parentType":"","signature":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","url":"/ddoc/druntime/core/sys/windows/ntldap.html#SERVER_SEARCH_FLAG_DOMAIN_SCOPE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntldap","name":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","package":"druntime","parentType":"","signature":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","url":"/ddoc/druntime/core/sys/windows/ntldap.html#SERVER_SEARCH_FLAG_PHANTOM_ROOT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ntsecapi","name":"core.sys.windows.ntsecapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LSA_SUCCESS","package":"druntime","parentType":"","signature":"bool LSA_SUCCESS()(int  x)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LSA_SUCCESS.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaAddAccountRights","package":"druntime","parentType":"","signature":"NTSTATUS LsaAddAccountRights(LSA_HANDLE,  PSID,  PLSA_UNICODE_STRING,\n       ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaAddAccountRights.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaCallAuthenticationPackage","package":"druntime","parentType":"","signature":"NTSTATUS LsaCallAuthenticationPackage(HANDLE,  ULONG,  PVOID,  ULONG,\n       PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaCallAuthenticationPackage.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaClose","package":"druntime","parentType":"","signature":"NTSTATUS LsaClose(LSA_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaConnectUntrusted","package":"druntime","parentType":"","signature":"NTSTATUS LsaConnectUntrusted(PHANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaConnectUntrusted.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaCreateTrustedDomainEx","package":"druntime","parentType":"","signature":"NTSTATUS LsaCreateTrustedDomainEx(LSA_HANDLE,\n       PTRUSTED_DOMAIN_INFORMATION_EX,  PTRUSTED_DOMAIN_AUTH_INFORMATION,\n       ACCESS_MASK,  PLSA_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaCreateTrustedDomainEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaDeleteTrustedDomain","package":"druntime","parentType":"","signature":"NTSTATUS LsaDeleteTrustedDomain(LSA_HANDLE,  PSID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaDeleteTrustedDomain.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaDeregisterLogonProcess","package":"druntime","parentType":"","signature":"NTSTATUS LsaDeregisterLogonProcess(HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaDeregisterLogonProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaEnumerateAccountRights","package":"druntime","parentType":"","signature":"NTSTATUS LsaEnumerateAccountRights(LSA_HANDLE,  PSID,  PLSA_UNICODE_STRING *,\n       PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaEnumerateAccountRights.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaEnumerateAccountsWithUserRight","package":"druntime","parentType":"","signature":"NTSTATUS LsaEnumerateAccountsWithUserRight(LSA_HANDLE,\n       PLSA_UNICODE_STRING,  PVOID *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaEnumerateAccountsWithUserRight.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaEnumerateTrustedDomains","package":"druntime","parentType":"","signature":"NTSTATUS LsaEnumerateTrustedDomains(LSA_HANDLE,  PLSA_ENUMERATION_HANDLE,\n       PVOID *,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaEnumerateTrustedDomains.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaEnumerateTrustedDomainsEx","package":"druntime","parentType":"","signature":"NTSTATUS LsaEnumerateTrustedDomainsEx(LSA_HANDLE,  PLSA_ENUMERATION_HANDLE,\n       TRUSTED_INFORMATION_CLASS,  PVOID *,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaEnumerateTrustedDomainsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaFreeMemory","package":"druntime","parentType":"","signature":"NTSTATUS LsaFreeMemory(PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaFreeMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaFreeReturnBuffer","package":"druntime","parentType":"","signature":"NTSTATUS LsaFreeReturnBuffer(PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaFreeReturnBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaLogonUser","package":"druntime","parentType":"","signature":"NTSTATUS LsaLogonUser(HANDLE,  PLSA_STRING,  SECURITY_LOGON_TYPE,  ULONG,\n       PVOID,  ULONG,  PTOKEN_GROUPS,  PTOKEN_SOURCE,  PVOID *,  PULONG,  PLUID,\n       PHANDLE,  PQUOTA_LIMITS,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaLogonUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaLookupAuthenticationPackage","package":"druntime","parentType":"","signature":"NTSTATUS LsaLookupAuthenticationPackage(HANDLE,  PLSA_STRING,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaLookupAuthenticationPackage.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaLookupNames","package":"druntime","parentType":"","signature":"NTSTATUS LsaLookupNames(LSA_HANDLE,  ULONG,  PLSA_UNICODE_STRING,\n       PLSA_REFERENCED_DOMAIN_LIST *,  PLSA_TRANSLATED_SID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaLookupNames.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaLookupSids","package":"druntime","parentType":"","signature":"NTSTATUS LsaLookupSids(LSA_HANDLE,  ULONG,  PSID *,\n       PLSA_REFERENCED_DOMAIN_LIST *,  PLSA_TRANSLATED_NAME *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaLookupSids.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaNtStatusToWinError","package":"druntime","parentType":"","signature":"ULONG LsaNtStatusToWinError(NTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaNtStatusToWinError.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaOpenPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaOpenPolicy(PLSA_UNICODE_STRING,  PLSA_OBJECT_ATTRIBUTES,\n       ACCESS_MASK,  PLSA_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaOpenPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaQueryDomainInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaQueryDomainInformationPolicy(LSA_HANDLE,\n       POLICY_DOMAIN_INFORMATION_CLASS,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaQueryDomainInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaQueryInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaQueryInformationPolicy(LSA_HANDLE,  POLICY_INFORMATION_CLASS,\n       PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaQueryInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaQueryLocalInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaQueryLocalInformationPolicy(LSA_HANDLE,\n       POLICY_LOCAL_INFORMATION_CLASS,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaQueryLocalInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaQueryTrustedDomainInfo","package":"druntime","parentType":"","signature":"NTSTATUS LsaQueryTrustedDomainInfo(LSA_HANDLE,  PSID,\n       TRUSTED_INFORMATION_CLASS,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaQueryTrustedDomainInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaQueryTrustedDomainInfoByName","package":"druntime","parentType":"","signature":"NTSTATUS LsaQueryTrustedDomainInfoByName(LSA_HANDLE,  PLSA_UNICODE_STRING,\n       TRUSTED_INFORMATION_CLASS,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaQueryTrustedDomainInfoByName.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaRegisterLogonProcess","package":"druntime","parentType":"","signature":"NTSTATUS LsaRegisterLogonProcess(PLSA_STRING,  PHANDLE,\n       PLSA_OPERATIONAL_MODE)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaRegisterLogonProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaRemoveAccountRights","package":"druntime","parentType":"","signature":"NTSTATUS LsaRemoveAccountRights(LSA_HANDLE,  PSID,  BOOLEAN,\n       PLSA_UNICODE_STRING,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaRemoveAccountRights.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaRetrievePrivateData","package":"druntime","parentType":"","signature":"NTSTATUS LsaRetrievePrivateData(LSA_HANDLE,  PLSA_UNICODE_STRING,\n       PLSA_UNICODE_STRING *)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaRetrievePrivateData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaSetDomainInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaSetDomainInformationPolicy(LSA_HANDLE,\n       POLICY_DOMAIN_INFORMATION_CLASS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaSetDomainInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaSetInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaSetInformationPolicy(LSA_HANDLE,  POLICY_INFORMATION_CLASS,\n       PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaSetInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaSetLocalInformationPolicy","package":"druntime","parentType":"","signature":"NTSTATUS LsaSetLocalInformationPolicy(LSA_HANDLE,\n       POLICY_LOCAL_INFORMATION_CLASS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaSetLocalInformationPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaSetTrustedDomainInformation","package":"druntime","parentType":"","signature":"NTSTATUS LsaSetTrustedDomainInformation(LSA_HANDLE,  PSID,\n       TRUSTED_INFORMATION_CLASS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaSetTrustedDomainInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaSetTrustedDomainInfoByName","package":"druntime","parentType":"","signature":"NTSTATUS LsaSetTrustedDomainInfoByName(LSA_HANDLE,  PLSA_UNICODE_STRING,\n       TRUSTED_INFORMATION_CLASS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaSetTrustedDomainInfoByName.html"},{"doc":"","kind":"function","module":"core.sys.windows.ntsecapi","name":"LsaStorePrivateData","package":"druntime","parentType":"","signature":"NTSTATUS LsaStorePrivateData(LSA_HANDLE,  PLSA_UNICODE_STRING,\n       PLSA_UNICODE_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecapi/LsaStorePrivateData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"LSA_UNICODE_STRING","package":"druntime","parentType":"","signature":"LSA_UNICODE_STRING = UNICODE_STRING","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_UNICODE_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_UNICODE_STRING","package":"druntime","parentType":"","signature":"PLSA_UNICODE_STRING = UNICODE_STRING *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_UNICODE_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"LSA_STRING","package":"druntime","parentType":"","signature":"LSA_STRING = STRING","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_STRING","package":"druntime","parentType":"","signature":"PLSA_STRING = STRING *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_STRING"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"MSV1_0_LOGON_SUBMIT_TYPE","package":"druntime","parentType":"","signature":"MSV1_0_LOGON_SUBMIT_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0InteractiveLogon","package":"druntime","parentType":"","signature":"MsV1_0InteractiveLogon = 2","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0Lm20Logon","package":"druntime","parentType":"","signature":"MsV1_0Lm20Logon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0NetworkLogon","package":"druntime","parentType":"","signature":"MsV1_0NetworkLogon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0SubAuthLogon","package":"druntime","parentType":"","signature":"MsV1_0SubAuthLogon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0WorkstationUnlockLogon","package":"druntime","parentType":"","signature":"MsV1_0WorkstationUnlockLogon = 7","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_LOGON_SUBMIT_TYPE","package":"druntime","parentType":"","signature":"PMSV1_0_LOGON_SUBMIT_TYPE = MSV1_0_LOGON_SUBMIT_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_LOGON_SUBMIT_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"MSV1_0_PROFILE_BUFFER_TYPE","package":"druntime","parentType":"","signature":"MSV1_0_PROFILE_BUFFER_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROFILE_BUFFER_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0InteractiveProfile","package":"druntime","parentType":"","signature":"MsV1_0InteractiveProfile = 2","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROFILE_BUFFER_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0Lm20LogonProfile","package":"druntime","parentType":"","signature":"MsV1_0Lm20LogonProfile = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROFILE_BUFFER_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0SmartCardProfile","package":"druntime","parentType":"","signature":"MsV1_0SmartCardProfile = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROFILE_BUFFER_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_PROFILE_BUFFER_TYPE","package":"druntime","parentType":"","signature":"PMSV1_0_PROFILE_BUFFER_TYPE = MSV1_0_PROFILE_BUFFER_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_PROFILE_BUFFER_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"MSV1_0_AVID","package":"druntime","parentType":"","signature":"MSV1_0_AVID","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsvAvEOL","package":"druntime","parentType":"","signature":"MsvAvEOL = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsvAvNbComputerName","package":"druntime","parentType":"","signature":"MsvAvNbComputerName = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsvAvNbDomainName","package":"druntime","parentType":"","signature":"MsvAvNbDomainName = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsvAvDnsComputerName","package":"druntime","parentType":"","signature":"MsvAvDnsComputerName = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsvAvDnsDomainName","package":"druntime","parentType":"","signature":"MsvAvDnsDomainName = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AVID"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"MSV1_0_PROTOCOL_MESSAGE_TYPE","package":"druntime","parentType":"","signature":"MSV1_0_PROTOCOL_MESSAGE_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0Lm20ChallengeRequest","package":"druntime","parentType":"","signature":"MsV1_0Lm20ChallengeRequest = 0","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0Lm20GetChallengeResponse","package":"druntime","parentType":"","signature":"MsV1_0Lm20GetChallengeResponse = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0EnumerateUsers","package":"druntime","parentType":"","signature":"MsV1_0EnumerateUsers = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0GetUserInfo","package":"druntime","parentType":"","signature":"MsV1_0GetUserInfo = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0ReLogonUsers","package":"druntime","parentType":"","signature":"MsV1_0ReLogonUsers = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0ChangePassword","package":"druntime","parentType":"","signature":"MsV1_0ChangePassword = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0ChangeCachedPassword","package":"druntime","parentType":"","signature":"MsV1_0ChangeCachedPassword = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0GenericPassthrough","package":"druntime","parentType":"","signature":"MsV1_0GenericPassthrough = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0CacheLogon","package":"druntime","parentType":"","signature":"MsV1_0CacheLogon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0SubAuth","package":"druntime","parentType":"","signature":"MsV1_0SubAuth = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0DeriveCredential","package":"druntime","parentType":"","signature":"MsV1_0DeriveCredential = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"MsV1_0CacheLookup","package":"druntime","parentType":"","signature":"MsV1_0CacheLookup = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_PROTOCOL_MESSAGE_TYPE","package":"druntime","parentType":"","signature":"PMSV1_0_PROTOCOL_MESSAGE_TYPE = MSV1_0_PROTOCOL_MESSAGE_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_PROTOCOL_MESSAGE_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_LSA_SERVER_ROLE","package":"druntime","parentType":"","signature":"POLICY_LSA_SERVER_ROLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LSA_SERVER_ROLE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyServerRoleBackup","package":"druntime","parentType":"","signature":"PolicyServerRoleBackup = 2","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LSA_SERVER_ROLE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyServerRolePrimary","package":"druntime","parentType":"","signature":"PolicyServerRolePrimary = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LSA_SERVER_ROLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LSA_SERVER_ROLE","package":"druntime","parentType":"","signature":"PPOLICY_LSA_SERVER_ROLE = POLICY_LSA_SERVER_ROLE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LSA_SERVER_ROLE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_SERVER_ENABLE_STATE","package":"druntime","parentType":"","signature":"POLICY_SERVER_ENABLE_STATE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_SERVER_ENABLE_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyServerEnabled","package":"druntime","parentType":"","signature":"PolicyServerEnabled = 2","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_SERVER_ENABLE_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyServerDisabled","package":"druntime","parentType":"","signature":"PolicyServerDisabled = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_SERVER_ENABLE_STATE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_SERVER_ENABLE_STATE","package":"druntime","parentType":"","signature":"PPOLICY_SERVER_ENABLE_STATE = POLICY_SERVER_ENABLE_STATE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_SERVER_ENABLE_STATE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"POLICY_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyAuditLogInformation","package":"druntime","parentType":"","signature":"PolicyAuditLogInformation = 1","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyAuditEventsInformation","package":"druntime","parentType":"","signature":"PolicyAuditEventsInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyPrimaryDomainInformation","package":"druntime","parentType":"","signature":"PolicyPrimaryDomainInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyPdAccountInformation","package":"druntime","parentType":"","signature":"PolicyPdAccountInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyAccountDomainInformation","package":"druntime","parentType":"","signature":"PolicyAccountDomainInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLsaServerRoleInformation","package":"druntime","parentType":"","signature":"PolicyLsaServerRoleInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyReplicaSourceInformation","package":"druntime","parentType":"","signature":"PolicyReplicaSourceInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDefaultQuotaInformation","package":"druntime","parentType":"","signature":"PolicyDefaultQuotaInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyModificationInformation","package":"druntime","parentType":"","signature":"PolicyModificationInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyAuditFullSetInformation","package":"druntime","parentType":"","signature":"PolicyAuditFullSetInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyAuditFullQueryInformation","package":"druntime","parentType":"","signature":"PolicyAuditFullQueryInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDnsDomainInformation","package":"druntime","parentType":"","signature":"PolicyDnsDomainInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyEfsInformation","package":"druntime","parentType":"","signature":"PolicyEfsInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_INFORMATION_CLASS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"PPOLICY_INFORMATION_CLASS = POLICY_INFORMATION_CLASS *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_INFORMATION_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_TYPE","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategorySystem","package":"druntime","parentType":"","signature":"AuditCategorySystem = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryLogon","package":"druntime","parentType":"","signature":"AuditCategoryLogon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryObjectAccess","package":"druntime","parentType":"","signature":"AuditCategoryObjectAccess = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryPrivilegeUse","package":"druntime","parentType":"","signature":"AuditCategoryPrivilegeUse = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryDetailedTracking","package":"druntime","parentType":"","signature":"AuditCategoryDetailedTracking = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryPolicyChange","package":"druntime","parentType":"","signature":"AuditCategoryPolicyChange = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryAccountManagement","package":"druntime","parentType":"","signature":"AuditCategoryAccountManagement = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryDirectoryServiceAccess","package":"druntime","parentType":"","signature":"AuditCategoryDirectoryServiceAccess = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"AuditCategoryAccountLogon","package":"druntime","parentType":"","signature":"AuditCategoryAccountLogon = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_AUDIT_EVENT_TYPE","package":"druntime","parentType":"","signature":"PPOLICY_AUDIT_EVENT_TYPE = POLICY_AUDIT_EVENT_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_AUDIT_EVENT_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_LOCAL_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"POLICY_LOCAL_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalAuditEventsInformation","package":"druntime","parentType":"","signature":"PolicyLocalAuditEventsInformation = 1","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalPdAccountInformation","package":"druntime","parentType":"","signature":"PolicyLocalPdAccountInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalAccountDomainInformation","package":"druntime","parentType":"","signature":"PolicyLocalAccountDomainInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalLsaServerRoleInformation","package":"druntime","parentType":"","signature":"PolicyLocalLsaServerRoleInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalReplicaSourceInformation","package":"druntime","parentType":"","signature":"PolicyLocalReplicaSourceInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalModificationInformation","package":"druntime","parentType":"","signature":"PolicyLocalModificationInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalAuditFullSetInformation","package":"druntime","parentType":"","signature":"PolicyLocalAuditFullSetInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalAuditFullQueryInformation","package":"druntime","parentType":"","signature":"PolicyLocalAuditFullQueryInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalDnsDomainInformation","package":"druntime","parentType":"","signature":"PolicyLocalDnsDomainInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalIPSecReferenceInformation","package":"druntime","parentType":"","signature":"PolicyLocalIPSecReferenceInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalMachinePasswordInformation","package":"druntime","parentType":"","signature":"PolicyLocalMachinePasswordInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalQualityOfServiceInformation","package":"druntime","parentType":"","signature":"PolicyLocalQualityOfServiceInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyLocalPolicyLocationInformation","package":"druntime","parentType":"","signature":"PolicyLocalPolicyLocationInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LOCAL_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"PPOLICY_LOCAL_INFORMATION_CLASS = POLICY_LOCAL_INFORMATION_CLASS *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LOCAL_INFORMATION_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainIPSecReferenceInformation","package":"druntime","parentType":"","signature":"PolicyDomainIPSecReferenceInformation = 1","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainQualityOfServiceInformation","package":"druntime","parentType":"","signature":"PolicyDomainQualityOfServiceInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainEfsInformation","package":"druntime","parentType":"","signature":"PolicyDomainEfsInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainPublicKeyInformation","package":"druntime","parentType":"","signature":"PolicyDomainPublicKeyInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainPasswordPolicyInformation","package":"druntime","parentType":"","signature":"PolicyDomainPasswordPolicyInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainLockoutInformation","package":"druntime","parentType":"","signature":"PolicyDomainLockoutInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"PolicyDomainKerberosTicketInformation","package":"druntime","parentType":"","signature":"PolicyDomainKerberosTicketInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DOMAIN_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"PPOLICY_DOMAIN_INFORMATION_CLASS = POLICY_DOMAIN_INFORMATION_CLASS *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DOMAIN_INFORMATION_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"SECURITY_LOGON_TYPE","package":"druntime","parentType":"","signature":"SECURITY_LOGON_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Interactive","package":"druntime","parentType":"","signature":"Interactive = 2","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Network","package":"druntime","parentType":"","signature":"Network = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Batch","package":"druntime","parentType":"","signature":"Batch = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Service","package":"druntime","parentType":"","signature":"Service = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Proxy","package":"druntime","parentType":"","signature":"Proxy = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"Unlock","package":"druntime","parentType":"","signature":"Unlock = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SECURITY_LOGON_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PSECURITY_LOGON_TYPE","package":"druntime","parentType":"","signature":"PSECURITY_LOGON_TYPE = SECURITY_LOGON_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PSECURITY_LOGON_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecapi","name":"TRUSTED_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"TRUSTED_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedDomainNameInformation","package":"druntime","parentType":"","signature":"TrustedDomainNameInformation = 1","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedControllersInformation","package":"druntime","parentType":"","signature":"TrustedControllersInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedPosixOffsetInformation","package":"druntime","parentType":"","signature":"TrustedPosixOffsetInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedPasswordInformation","package":"druntime","parentType":"","signature":"TrustedPasswordInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedDomainInformationBasic","package":"druntime","parentType":"","signature":"TrustedDomainInformationBasic = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedDomainInformationEx","package":"druntime","parentType":"","signature":"TrustedDomainInformationEx = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedDomainAuthInformation","package":"druntime","parentType":"","signature":"TrustedDomainAuthInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecapi","name":"TrustedDomainFullInformation","package":"druntime","parentType":"","signature":"TrustedDomainFullInformation = ","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"PTRUSTED_INFORMATION_CLASS = TRUSTED_INFORMATION_CLASS *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_INFORMATION_CLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"DOMAIN_PASSWORD_INFORMATION","package":"druntime","parentType":"","signature":"DOMAIN_PASSWORD_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#DOMAIN_PASSWORD_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PDOMAIN_PASSWORD_INFORMATION","package":"druntime","parentType":"","signature":"PDOMAIN_PASSWORD_INFORMATION = DOMAIN_PASSWORD_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PDOMAIN_PASSWORD_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_ENUMERATION_INFORMATION","package":"druntime","parentType":"","signature":"LSA_ENUMERATION_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_ENUMERATION_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_ENUMERATION_INFORMATION","package":"druntime","parentType":"","signature":"PLSA_ENUMERATION_INFORMATION = LSA_ENUMERATION_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_ENUMERATION_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"LSA_OBJECT_ATTRIBUTES","package":"druntime","parentType":"","signature":"LSA_OBJECT_ATTRIBUTES = OBJECT_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_OBJECT_ATTRIBUTES"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_OBJECT_ATTRIBUTES","package":"druntime","parentType":"","signature":"PLSA_OBJECT_ATTRIBUTES = OBJECT_ATTRIBUTES *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_OBJECT_ATTRIBUTES"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_TRUST_INFORMATION","package":"druntime","parentType":"","signature":"LSA_TRUST_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_TRUST_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"TRUSTED_DOMAIN_INFORMATION_BASIC","package":"druntime","parentType":"","signature":"TRUSTED_DOMAIN_INFORMATION_BASIC = LSA_TRUST_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_DOMAIN_INFORMATION_BASIC"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_TRUST_INFORMATION","package":"druntime","parentType":"","signature":"PLSA_TRUST_INFORMATION = LSA_TRUST_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_TRUST_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_DOMAIN_INFORMATION_BASIC","package":"druntime","parentType":"","signature":"PTRUSTED_DOMAIN_INFORMATION_BASIC = LSA_TRUST_INFORMATION * *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_DOMAIN_INFORMATION_BASIC"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_REFERENCED_DOMAIN_LIST","package":"druntime","parentType":"","signature":"LSA_REFERENCED_DOMAIN_LIST","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_REFERENCED_DOMAIN_LIST"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_REFERENCED_DOMAIN_LIST","package":"druntime","parentType":"","signature":"PLSA_REFERENCED_DOMAIN_LIST = LSA_REFERENCED_DOMAIN_LIST *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_REFERENCED_DOMAIN_LIST"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_TRANSLATED_SID","package":"druntime","parentType":"","signature":"LSA_TRANSLATED_SID","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_TRANSLATED_SID"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_TRANSLATED_SID","package":"druntime","parentType":"","signature":"PLSA_TRANSLATED_SID = LSA_TRANSLATED_SID *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_TRANSLATED_SID"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_TRANSLATED_NAME","package":"druntime","parentType":"","signature":"LSA_TRANSLATED_NAME","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_TRANSLATED_NAME"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_TRANSLATED_NAME","package":"druntime","parentType":"","signature":"PLSA_TRANSLATED_NAME = LSA_TRANSLATED_NAME *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_TRANSLATED_NAME"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_INTERACTIVE_LOGON","package":"druntime","parentType":"","signature":"MSV1_0_INTERACTIVE_LOGON","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_INTERACTIVE_LOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_INTERACTIVE_LOGON","package":"druntime","parentType":"","signature":"PMSV1_0_INTERACTIVE_LOGON = MSV1_0_INTERACTIVE_LOGON *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_INTERACTIVE_LOGON"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_INTERACTIVE_PROFILE","package":"druntime","parentType":"","signature":"MSV1_0_INTERACTIVE_PROFILE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_INTERACTIVE_PROFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_INTERACTIVE_PROFILE","package":"druntime","parentType":"","signature":"PMSV1_0_INTERACTIVE_PROFILE = MSV1_0_INTERACTIVE_PROFILE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_INTERACTIVE_PROFILE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_LM20_LOGON","package":"druntime","parentType":"","signature":"MSV1_0_LM20_LOGON","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LM20_LOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_LM20_LOGON","package":"druntime","parentType":"","signature":"PMSV1_0_LM20_LOGON = MSV1_0_LM20_LOGON *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_LM20_LOGON"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTH_LOGON","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_LOGON","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTH_LOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_SUBAUTH_LOGON","package":"druntime","parentType":"","signature":"PMSV1_0_SUBAUTH_LOGON = MSV1_0_SUBAUTH_LOGON *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_SUBAUTH_LOGON"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_LM20_LOGON_PROFILE","package":"druntime","parentType":"","signature":"MSV1_0_LM20_LOGON_PROFILE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_LM20_LOGON_PROFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_LM20_LOGON_PROFILE","package":"druntime","parentType":"","signature":"PMSV1_0_LM20_LOGON_PROFILE = MSV1_0_LM20_LOGON_PROFILE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_LM20_LOGON_PROFILE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","package":"druntime","parentType":"","signature":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUPPLEMENTAL_CREDENTIAL"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_SUPPLEMENTAL_CREDENTIAL","package":"druntime","parentType":"","signature":"PMSV1_0_SUPPLEMENTAL_CREDENTIAL = MSV1_0_SUPPLEMENTAL_CREDENTIAL *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_SUPPLEMENTAL_CREDENTIAL"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_NTLM3_RESPONSE","package":"druntime","parentType":"","signature":"MSV1_0_NTLM3_RESPONSE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_NTLM3_RESPONSE"},{"doc":"","kind":"method","module":"core.sys.windows.ntsecapi","name":"Buffer","package":"druntime","parentType":"MSV1_0_NTLM3_RESPONSE","signature":"UCHAR * Buffer()","url":"/ddoc/druntime/core/sys/windows/ntsecapi/MSV1_0_NTLM3_RESPONSE.Buffer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_NTLM3_RESPONSE","package":"druntime","parentType":"","signature":"PMSV1_0_NTLM3_RESPONSE = MSV1_0_NTLM3_RESPONSE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_NTLM3_RESPONSE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_AV_PAIR","package":"druntime","parentType":"","signature":"MSV1_0_AV_PAIR","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_AV_PAIR"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_AV_PAIR","package":"druntime","parentType":"","signature":"PMSV1_0_AV_PAIR = MSV1_0_AV_PAIR *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_AV_PAIR"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CHANGEPASSWORD_REQUEST","package":"druntime","parentType":"","signature":"MSV1_0_CHANGEPASSWORD_REQUEST","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CHANGEPASSWORD_REQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_CHANGEPASSWORD_REQUEST","package":"druntime","parentType":"","signature":"PMSV1_0_CHANGEPASSWORD_REQUEST = MSV1_0_CHANGEPASSWORD_REQUEST *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_CHANGEPASSWORD_REQUEST"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CHANGEPASSWORD_RESPONSE","package":"druntime","parentType":"","signature":"MSV1_0_CHANGEPASSWORD_RESPONSE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CHANGEPASSWORD_RESPONSE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_CHANGEPASSWORD_RESPONSE","package":"druntime","parentType":"","signature":"PMSV1_0_CHANGEPASSWORD_RESPONSE = MSV1_0_CHANGEPASSWORD_RESPONSE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_CHANGEPASSWORD_RESPONSE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTH_REQUEST","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_REQUEST","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTH_REQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_SUBAUTH_REQUEST","package":"druntime","parentType":"","signature":"PMSV1_0_SUBAUTH_REQUEST = MSV1_0_SUBAUTH_REQUEST *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_SUBAUTH_REQUEST"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTH_RESPONSE","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_RESPONSE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTH_RESPONSE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_SUBAUTH_RESPONSE","package":"druntime","parentType":"","signature":"PMSV1_0_SUBAUTH_RESPONSE = MSV1_0_SUBAUTH_RESPONSE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_SUBAUTH_RESPONSE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_DERIVECRED_REQUEST","package":"druntime","parentType":"","signature":"MSV1_0_DERIVECRED_REQUEST","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_DERIVECRED_REQUEST"},{"doc":"","kind":"method","module":"core.sys.windows.ntsecapi","name":"DeriveCredSubmitBuffer","package":"druntime","parentType":"MSV1_0_DERIVECRED_REQUEST","signature":"UCHAR * DeriveCredSubmitBuffer()","url":"/ddoc/druntime/core/sys/windows/ntsecapi/MSV1_0_DERIVECRED_REQUEST.DeriveCredSubmitBuffer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_DERIVECRED_REQUEST","package":"druntime","parentType":"","signature":"PMSV1_0_DERIVECRED_REQUEST = MSV1_0_DERIVECRED_REQUEST *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_DERIVECRED_REQUEST"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"MSV1_0_DERIVECRED_RESPONSE","package":"druntime","parentType":"","signature":"MSV1_0_DERIVECRED_RESPONSE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_DERIVECRED_RESPONSE"},{"doc":"","kind":"method","module":"core.sys.windows.ntsecapi","name":"DeriveCredReturnBuffer","package":"druntime","parentType":"MSV1_0_DERIVECRED_RESPONSE","signature":"UCHAR * DeriveCredReturnBuffer()","url":"/ddoc/druntime/core/sys/windows/ntsecapi/MSV1_0_DERIVECRED_RESPONSE.DeriveCredReturnBuffer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PMSV1_0_DERIVECRED_RESPONSE","package":"druntime","parentType":"","signature":"PMSV1_0_DERIVECRED_RESPONSE = MSV1_0_DERIVECRED_RESPONSE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PMSV1_0_DERIVECRED_RESPONSE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"LSA_ENUMERATION_HANDLE","package":"druntime","parentType":"","signature":"LSA_ENUMERATION_HANDLE = uint","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_ENUMERATION_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_ENUMERATION_HANDLE","package":"druntime","parentType":"","signature":"PLSA_ENUMERATION_HANDLE = uint *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_ENUMERATION_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_PRIVILEGE_DEFINITION","package":"druntime","parentType":"","signature":"POLICY_PRIVILEGE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_PRIVILEGE_DEFINITION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_PRIVILEGE_DEFINITION","package":"druntime","parentType":"","signature":"PPOLICY_PRIVILEGE_DEFINITION = POLICY_PRIVILEGE_DEFINITION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_PRIVILEGE_DEFINITION"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_LOG_INFO","package":"druntime","parentType":"","signature":"POLICY_AUDIT_LOG_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_LOG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_AUDIT_LOG_INFO","package":"druntime","parentType":"","signature":"PPOLICY_AUDIT_LOG_INFO = POLICY_AUDIT_LOG_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_AUDIT_LOG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENTS_INFO","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENTS_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENTS_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_AUDIT_EVENTS_INFO","package":"druntime","parentType":"","signature":"PPOLICY_AUDIT_EVENTS_INFO = POLICY_AUDIT_EVENTS_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_AUDIT_EVENTS_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_ACCOUNT_DOMAIN_INFO","package":"druntime","parentType":"","signature":"POLICY_ACCOUNT_DOMAIN_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_ACCOUNT_DOMAIN_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_ACCOUNT_DOMAIN_INFO","package":"druntime","parentType":"","signature":"PPOLICY_ACCOUNT_DOMAIN_INFO = POLICY_ACCOUNT_DOMAIN_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_ACCOUNT_DOMAIN_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_PRIMARY_DOMAIN_INFO","package":"druntime","parentType":"","signature":"POLICY_PRIMARY_DOMAIN_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_PRIMARY_DOMAIN_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_PRIMARY_DOMAIN_INFO","package":"druntime","parentType":"","signature":"PPOLICY_PRIMARY_DOMAIN_INFO = POLICY_PRIMARY_DOMAIN_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_PRIMARY_DOMAIN_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DNS_DOMAIN_INFO","package":"druntime","parentType":"","signature":"POLICY_DNS_DOMAIN_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DNS_DOMAIN_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DNS_DOMAIN_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DNS_DOMAIN_INFO = POLICY_DNS_DOMAIN_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DNS_DOMAIN_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_PD_ACCOUNT_INFO","package":"druntime","parentType":"","signature":"POLICY_PD_ACCOUNT_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_PD_ACCOUNT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_PD_ACCOUNT_INFO","package":"druntime","parentType":"","signature":"PPOLICY_PD_ACCOUNT_INFO = POLICY_PD_ACCOUNT_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_PD_ACCOUNT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_LSA_SERVER_ROLE_INFO","package":"druntime","parentType":"","signature":"POLICY_LSA_SERVER_ROLE_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LSA_SERVER_ROLE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LSA_SERVER_ROLE_INFO","package":"druntime","parentType":"","signature":"PPOLICY_LSA_SERVER_ROLE_INFO = POLICY_LSA_SERVER_ROLE_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LSA_SERVER_ROLE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_REPLICA_SOURCE_INFO","package":"druntime","parentType":"","signature":"POLICY_REPLICA_SOURCE_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_REPLICA_SOURCE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_REPLICA_SOURCE_INFO","package":"druntime","parentType":"","signature":"PPOLICY_REPLICA_SOURCE_INFO = POLICY_REPLICA_SOURCE_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_REPLICA_SOURCE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DEFAULT_QUOTA_INFO","package":"druntime","parentType":"","signature":"POLICY_DEFAULT_QUOTA_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DEFAULT_QUOTA_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DEFAULT_QUOTA_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DEFAULT_QUOTA_INFO = POLICY_DEFAULT_QUOTA_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DEFAULT_QUOTA_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_MODIFICATION_INFO","package":"druntime","parentType":"","signature":"POLICY_MODIFICATION_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_MODIFICATION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_MODIFICATION_INFO","package":"druntime","parentType":"","signature":"PPOLICY_MODIFICATION_INFO = POLICY_MODIFICATION_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_MODIFICATION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_FULL_SET_INFO","package":"druntime","parentType":"","signature":"POLICY_AUDIT_FULL_SET_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_FULL_SET_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_AUDIT_FULL_SET_INFO","package":"druntime","parentType":"","signature":"PPOLICY_AUDIT_FULL_SET_INFO = POLICY_AUDIT_FULL_SET_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_AUDIT_FULL_SET_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_FULL_QUERY_INFO","package":"druntime","parentType":"","signature":"POLICY_AUDIT_FULL_QUERY_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_FULL_QUERY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_AUDIT_FULL_QUERY_INFO","package":"druntime","parentType":"","signature":"PPOLICY_AUDIT_FULL_QUERY_INFO = POLICY_AUDIT_FULL_QUERY_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_AUDIT_FULL_QUERY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_EFS_INFO","package":"druntime","parentType":"","signature":"POLICY_EFS_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_EFS_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_EFS_INFO","package":"druntime","parentType":"","signature":"PPOLICY_EFS_INFO = POLICY_EFS_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_EFS_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_LOCAL_IPSEC_REFERENCE_INFO","package":"druntime","parentType":"","signature":"POLICY_LOCAL_IPSEC_REFERENCE_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_IPSEC_REFERENCE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LOCAL_IPSEC_REFERENCE_INFO","package":"druntime","parentType":"","signature":"PPOLICY_LOCAL_IPSEC_REFERENCE_INFO = POLICY_LOCAL_IPSEC_REFERENCE_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LOCAL_IPSEC_REFERENCE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_LOCAL_MACHINE_PASSWORD_INFO","package":"druntime","parentType":"","signature":"POLICY_LOCAL_MACHINE_PASSWORD_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_MACHINE_PASSWORD_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LOCAL_MACHINE_PASSWORD_INFO","package":"druntime","parentType":"","signature":"PPOLICY_LOCAL_MACHINE_PASSWORD_INFO = POLICY_LOCAL_MACHINE_PASSWORD_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LOCAL_MACHINE_PASSWORD_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_LOCAL_POLICY_LOCATION_INFO","package":"druntime","parentType":"","signature":"POLICY_LOCAL_POLICY_LOCATION_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_POLICY_LOCATION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LOCAL_POLICY_LOCATION_INFO","package":"druntime","parentType":"","signature":"PPOLICY_LOCAL_POLICY_LOCATION_INFO = POLICY_LOCAL_POLICY_LOCATION_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LOCAL_POLICY_LOCATION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_LOCAL_QUALITY_OF_SERVICE_INFO","package":"druntime","parentType":"","signature":"POLICY_LOCAL_QUALITY_OF_SERVICE_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_LOCAL_QUALITY_OF_SERVICE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_QUALITY_OF_SERVICE_INFO","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_QUALITY_OF_SERVICE_INFO = POLICY_LOCAL_QUALITY_OF_SERVICE_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_QUALITY_OF_SERVICE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_LOCAL_QUALITY_OF_SERVICE_INFO","package":"druntime","parentType":"","signature":"PPOLICY_LOCAL_QUALITY_OF_SERVICE_INFO = POLICY_LOCAL_QUALITY_OF_SERVICE_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_LOCAL_QUALITY_OF_SERVICE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_PUBLIC_KEY_INFO","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_PUBLIC_KEY_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_PUBLIC_KEY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DOMAIN_PUBLIC_KEY_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DOMAIN_PUBLIC_KEY_INFO = POLICY_DOMAIN_PUBLIC_KEY_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DOMAIN_PUBLIC_KEY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_LOCKOUT_INFO","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_LOCKOUT_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_LOCKOUT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DOMAIN_LOCKOUT_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DOMAIN_LOCKOUT_INFO = POLICY_DOMAIN_LOCKOUT_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DOMAIN_LOCKOUT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_PASSWORD_INFO","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_PASSWORD_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_PASSWORD_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DOMAIN_PASSWORD_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DOMAIN_PASSWORD_INFO = POLICY_DOMAIN_PASSWORD_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DOMAIN_PASSWORD_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","package":"druntime","parentType":"","signature":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_DOMAIN_KERBEROS_TICKET_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PPOLICY_DOMAIN_KERBEROS_TICKET_INFO","package":"druntime","parentType":"","signature":"PPOLICY_DOMAIN_KERBEROS_TICKET_INFO = POLICY_DOMAIN_KERBEROS_TICKET_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PPOLICY_DOMAIN_KERBEROS_TICKET_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"LSA_HANDLE","package":"druntime","parentType":"","signature":"LSA_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_HANDLE","package":"druntime","parentType":"","signature":"PLSA_HANDLE = LSA_HANDLE *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_DOMAIN_NAME_INFO","package":"druntime","parentType":"","signature":"TRUSTED_DOMAIN_NAME_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_DOMAIN_NAME_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_DOMAIN_NAME_INFO","package":"druntime","parentType":"","signature":"PTRUSTED_DOMAIN_NAME_INFO = TRUSTED_DOMAIN_NAME_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_DOMAIN_NAME_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_CONTROLLERS_INFO","package":"druntime","parentType":"","signature":"TRUSTED_CONTROLLERS_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_CONTROLLERS_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_CONTROLLERS_INFO","package":"druntime","parentType":"","signature":"PTRUSTED_CONTROLLERS_INFO = TRUSTED_CONTROLLERS_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_CONTROLLERS_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_POSIX_OFFSET_INFO","package":"druntime","parentType":"","signature":"TRUSTED_POSIX_OFFSET_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_POSIX_OFFSET_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_POSIX_OFFSET_INFO","package":"druntime","parentType":"","signature":"PTRUSTED_POSIX_OFFSET_INFO = TRUSTED_POSIX_OFFSET_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_POSIX_OFFSET_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_PASSWORD_INFO","package":"druntime","parentType":"","signature":"TRUSTED_PASSWORD_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_PASSWORD_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_PASSWORD_INFO","package":"druntime","parentType":"","signature":"PTRUSTED_PASSWORD_INFO = TRUSTED_PASSWORD_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_PASSWORD_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_DOMAIN_INFORMATION_EX","package":"druntime","parentType":"","signature":"TRUSTED_DOMAIN_INFORMATION_EX","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_DOMAIN_INFORMATION_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_DOMAIN_INFORMATION_EX","package":"druntime","parentType":"","signature":"PTRUSTED_DOMAIN_INFORMATION_EX = TRUSTED_DOMAIN_INFORMATION_EX *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_DOMAIN_INFORMATION_EX"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"LSA_AUTH_INFORMATION","package":"druntime","parentType":"","signature":"LSA_AUTH_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LSA_AUTH_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PLSA_AUTH_INFORMATION","package":"druntime","parentType":"","signature":"PLSA_AUTH_INFORMATION = LSA_AUTH_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PLSA_AUTH_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_DOMAIN_AUTH_INFORMATION","package":"druntime","parentType":"","signature":"TRUSTED_DOMAIN_AUTH_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_DOMAIN_AUTH_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_DOMAIN_AUTH_INFORMATION","package":"druntime","parentType":"","signature":"PTRUSTED_DOMAIN_AUTH_INFORMATION = TRUSTED_DOMAIN_AUTH_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_DOMAIN_AUTH_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecapi","name":"TRUSTED_DOMAIN_FULL_INFORMATION","package":"druntime","parentType":"","signature":"TRUSTED_DOMAIN_FULL_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#TRUSTED_DOMAIN_FULL_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PTRUSTED_DOMAIN_FULL_INFORMATION","package":"druntime","parentType":"","signature":"PTRUSTED_DOMAIN_FULL_INFORMATION = TRUSTED_DOMAIN_FULL_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PTRUSTED_DOMAIN_FULL_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PSAM_PASSWORD_NOTIFICATION_ROUTINE","package":"druntime","parentType":"","signature":"PSAM_PASSWORD_NOTIFICATION_ROUTINE = NTSTATUS function(PUNICODE_STRING,  ULONG,  PUNICODE_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PSAM_PASSWORD_NOTIFICATION_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PSAM_INIT_NOTIFICATION_ROUTINE","package":"druntime","parentType":"","signature":"PSAM_INIT_NOTIFICATION_ROUTINE = BOOLEAN function()","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PSAM_INIT_NOTIFICATION_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecapi","name":"PSAM_PASSWORD_FILTER_ROUTINE","package":"druntime","parentType":"","signature":"PSAM_PASSWORD_FILTER_ROUTINE = BOOLEAN function(PUNICODE_STRING,  PUNICODE_STRING,\n   PUNICODE_STRING,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#PSAM_PASSWORD_FILTER_ROUTINE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"KERB_WRAP_NO_ENCRYPT","package":"druntime","parentType":"","signature":"KERB_WRAP_NO_ENCRYPT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#KERB_WRAP_NO_ENCRYPT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_GUEST","package":"druntime","parentType":"","signature":"LOGON_GUEST","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_GUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_NOENCRYPTION","package":"druntime","parentType":"","signature":"LOGON_NOENCRYPTION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_NOENCRYPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_CACHED_ACCOUNT","package":"druntime","parentType":"","signature":"LOGON_CACHED_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_CACHED_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_USED_LM_PASSWORD","package":"druntime","parentType":"","signature":"LOGON_USED_LM_PASSWORD","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_USED_LM_PASSWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_EXTRA_SIDS","package":"druntime","parentType":"","signature":"LOGON_EXTRA_SIDS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_EXTRA_SIDS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_SUBAUTH_SESSION_KEY","package":"druntime","parentType":"","signature":"LOGON_SUBAUTH_SESSION_KEY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_SUBAUTH_SESSION_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_SERVER_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"LOGON_SERVER_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_SERVER_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_NTLMV2_ENABLED","package":"druntime","parentType":"","signature":"LOGON_NTLMV2_ENABLED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_NTLMV2_ENABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_RESOURCE_GROUPS","package":"druntime","parentType":"","signature":"LOGON_RESOURCE_GROUPS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_RESOURCE_GROUPS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_PROFILE_PATH_RETURNED","package":"druntime","parentType":"","signature":"LOGON_PROFILE_PATH_RETURNED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_PROFILE_PATH_RETURNED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"LOGON_GRACE_LOGON","package":"druntime","parentType":"","signature":"LOGON_GRACE_LOGON","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#LOGON_GRACE_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MICROSOFT_KERBEROS_NAME_A","package":"druntime","parentType":"","signature":"char[] MICROSOFT_KERBEROS_NAME_A","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MICROSOFT_KERBEROS_NAME_A"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MICROSOFT_KERBEROS_NAME_W","package":"druntime","parentType":"","signature":"wchar[] MICROSOFT_KERBEROS_NAME_W","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MICROSOFT_KERBEROS_NAME_W"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_PACKAGE_NAME","package":"druntime","parentType":"","signature":"char[] MSV1_0_PACKAGE_NAME","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PACKAGE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_PACKAGE_NAMEW","package":"druntime","parentType":"","signature":"wchar[] MSV1_0_PACKAGE_NAMEW","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_PACKAGE_NAMEW"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","package":"druntime","parentType":"","signature":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","package":"druntime","parentType":"","signature":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CLEARTEXT_PASSWORD_ALLOWED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CRED_LM_PRESENT","package":"druntime","parentType":"","signature":"MSV1_0_CRED_LM_PRESENT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CRED_LM_PRESENT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CRED_NT_PRESENT","package":"druntime","parentType":"","signature":"MSV1_0_CRED_NT_PRESENT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CRED_NT_PRESENT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CRED_VERSION","package":"druntime","parentType":"","signature":"MSV1_0_CRED_VERSION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CRED_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","package":"druntime","parentType":"","signature":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_DONT_TRY_GUEST_ACCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_MAX_NTLM3_LIFE","package":"druntime","parentType":"","signature":"MSV1_0_MAX_NTLM3_LIFE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_MAX_NTLM3_LIFE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_MAX_AVL_SIZE","package":"druntime","parentType":"","signature":"MSV1_0_MAX_AVL_SIZE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_MAX_AVL_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_MNS_LOGON","package":"druntime","parentType":"","signature":"MSV1_0_MNS_LOGON","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_MNS_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_CHALLENGE_LENGTH","package":"druntime","parentType":"","signature":"size_t MSV1_0_CHALLENGE_LENGTH","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_CHALLENGE_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_RETURN_USER_PARAMETERS","package":"druntime","parentType":"","signature":"MSV1_0_RETURN_USER_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_RETURN_USER_PARAMETERS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_RETURN_PASSWORD_EXPIRY","package":"druntime","parentType":"","signature":"MSV1_0_RETURN_PASSWORD_EXPIRY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_RETURN_PASSWORD_EXPIRY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_RETURN_PROFILE_PATH","package":"druntime","parentType":"","signature":"MSV1_0_RETURN_PROFILE_PATH","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_RETURN_PROFILE_PATH"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_DLL_EX","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_DLL_EX","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_DLL_EX"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_DLL","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_DLL","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_DLL"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_DLL_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_DLL_RAS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_DLL_IIS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_FLAGS","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTHENTICATION_FLAGS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","package":"druntime","parentType":"","signature":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_TRY_GUEST_ACCOUNT_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","package":"druntime","parentType":"","signature":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_UPDATE_LOGON_STATISTICS","package":"druntime","parentType":"","signature":"MSV1_0_UPDATE_LOGON_STATISTICS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_UPDATE_LOGON_STATISTICS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_USE_CLIENT_CHALLENGE","package":"druntime","parentType":"","signature":"MSV1_0_USE_CLIENT_CHALLENGE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_USE_CLIENT_CHALLENGE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_USER_SESSION_KEY_LENGTH","package":"druntime","parentType":"","signature":"MSV1_0_USER_SESSION_KEY_LENGTH","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_USER_SESSION_KEY_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_SUBAUTHENTICATION_KEY","package":"druntime","parentType":"","signature":"char[] MSV1_0_SUBAUTHENTICATION_KEY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_SUBAUTHENTICATION_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_VIEW_LOCAL_INFORMATION","package":"druntime","parentType":"","signature":"ACCESS_MASK POLICY_VIEW_LOCAL_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_VIEW_LOCAL_INFORMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_UNCHANGED","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_UNCHANGED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_UNCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_SUCCESS","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_SUCCESS","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_SUCCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_FAILURE","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_FAILURE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_FAILURE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_NONE","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_NONE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_AUDIT_EVENT_MASK","package":"druntime","parentType":"","signature":"POLICY_AUDIT_EVENT_MASK","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_AUDIT_EVENT_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_SCHANEL_REQUIRED","package":"druntime","parentType":"","signature":"POLICY_QOS_SCHANEL_REQUIRED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_SCHANEL_REQUIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_OUTBOUND_INTEGRITY","package":"druntime","parentType":"","signature":"POLICY_QOS_OUTBOUND_INTEGRITY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_OUTBOUND_INTEGRITY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","package":"druntime","parentType":"","signature":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_OUTBOUND_CONFIDENTIALITY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_INBOUND_INTEGREITY","package":"druntime","parentType":"","signature":"POLICY_QOS_INBOUND_INTEGREITY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_INBOUND_INTEGREITY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_INBOUND_CONFIDENTIALITY","package":"druntime","parentType":"","signature":"POLICY_QOS_INBOUND_CONFIDENTIALITY","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_INBOUND_CONFIDENTIALITY"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","package":"druntime","parentType":"","signature":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_RAS_SERVER_ALLOWED","package":"druntime","parentType":"","signature":"POLICY_QOS_RAS_SERVER_ALLOWED","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_RAS_SERVER_ALLOWED"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_QOS_DHCP_SERVER_ALLOWD","package":"druntime","parentType":"","signature":"POLICY_QOS_DHCP_SERVER_ALLOWD","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_QOS_DHCP_SERVER_ALLOWD"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_KERBEROS_FORWARDABLE","package":"druntime","parentType":"","signature":"POLICY_KERBEROS_FORWARDABLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_KERBEROS_FORWARDABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_KERBEROS_PROXYABLE","package":"druntime","parentType":"","signature":"POLICY_KERBEROS_PROXYABLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_KERBEROS_PROXYABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_KERBEROS_RENEWABLE","package":"druntime","parentType":"","signature":"POLICY_KERBEROS_RENEWABLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_KERBEROS_RENEWABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"POLICY_KERBEROS_POSTDATEABLE","package":"druntime","parentType":"","signature":"POLICY_KERBEROS_POSTDATEABLE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#POLICY_KERBEROS_POSTDATEABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","package":"druntime","parentType":"","signature":"char[] SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"SE_INTERACTIVE_LOGON_NAME","package":"druntime","parentType":"","signature":"TCHAR[] SE_INTERACTIVE_LOGON_NAME","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#SE_INTERACTIVE_LOGON_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecapi","name":"MSV1_0_DERIVECRED_TYPE_SHA1","package":"druntime","parentType":"","signature":"MSV1_0_DERIVECRED_TYPE_SHA1","url":"/ddoc/druntime/core/sys/windows/ntsecapi.html#MSV1_0_DERIVECRED_TYPE_SHA1"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ntsecpkg","name":"core.sys.windows.ntsecpkg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecpkg","name":"LSA_TOKEN_INFORMATION_TYPE","package":"druntime","parentType":"","signature":"LSA_TOKEN_INFORMATION_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_TOKEN_INFORMATION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"LsaTokenInformationNull","package":"druntime","parentType":"","signature":"LsaTokenInformationNull = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_TOKEN_INFORMATION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"LsaTokenInformationV1","package":"druntime","parentType":"","signature":"LsaTokenInformationV1 = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_TOKEN_INFORMATION_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_TOKEN_INFORMATION_TYPE","package":"druntime","parentType":"","signature":"PLSA_TOKEN_INFORMATION_TYPE = LSA_TOKEN_INFORMATION_TYPE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_TOKEN_INFORMATION_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecpkg","name":"SECPKG_EXTENDED_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"SECPKG_EXTENDED_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecpkgGssInfo","package":"druntime","parentType":"","signature":"SecpkgGssInfo = 1","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecpkgContextThunks","package":"druntime","parentType":"","signature":"SecpkgContextThunks = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecpkgMutualAuthLevel","package":"druntime","parentType":"","signature":"SecpkgMutualAuthLevel = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecpkgMaxInfo","package":"druntime","parentType":"","signature":"SecpkgMaxInfo = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.ntsecpkg","name":"SECPKG_NAME_TYPE","package":"druntime","parentType":"","signature":"SECPKG_NAME_TYPE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_NAME_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecNameSamCompatible","package":"druntime","parentType":"","signature":"SecNameSamCompatible = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_NAME_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecNameAlternateId","package":"druntime","parentType":"","signature":"SecNameAlternateId = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_NAME_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecNameFlat","package":"druntime","parentType":"","signature":"SecNameFlat = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_NAME_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ntsecpkg","name":"SecNameDN","package":"druntime","parentType":"","signature":"SecNameDN = ","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_NAME_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_PRIMARY_CRED","package":"druntime","parentType":"","signature":"SECPKG_PRIMARY_CRED","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_PRIMARY_CRED"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_PRIMARY_CRED","package":"druntime","parentType":"","signature":"PSECPKG_PRIMARY_CRED = SECPKG_PRIMARY_CRED *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_PRIMARY_CRED"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_SUPPLEMENTAL_CRED","package":"druntime","parentType":"","signature":"SECPKG_SUPPLEMENTAL_CRED","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_SUPPLEMENTAL_CRED"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_SUPPLEMENTAL_CRED","package":"druntime","parentType":"","signature":"PSECPKG_SUPPLEMENTAL_CRED = SECPKG_SUPPLEMENTAL_CRED *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_SUPPLEMENTAL_CRED"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","package":"druntime","parentType":"","signature":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_SUPPLEMENTAL_CRED_ARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_SUPPLEMENTAL_CRED_ARRAY","package":"druntime","parentType":"","signature":"PSECPKG_SUPPLEMENTAL_CRED_ARRAY = SECPKG_SUPPLEMENTAL_CRED_ARRAY *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_SUPPLEMENTAL_CRED_ARRAY"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_PARAMETERS","package":"druntime","parentType":"","signature":"SECPKG_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_PARAMETERS","package":"druntime","parentType":"","signature":"PSECPKG_PARAMETERS = SECPKG_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SECPKG_EVENT_DOMAIN_CHANGE","package":"druntime","parentType":"","signature":"SECPKG_EVENT_DOMAIN_CHANGE = SECPKG_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EVENT_DOMAIN_CHANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_CLIENT_INFO","package":"druntime","parentType":"","signature":"SECPKG_CLIENT_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_CLIENT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_CLIENT_INFO","package":"druntime","parentType":"","signature":"PSECPKG_CLIENT_INFO = SECPKG_CLIENT_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_CLIENT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECURITY_USER_DATA","package":"druntime","parentType":"","signature":"SECURITY_USER_DATA","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECURITY_USER_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECURITY_USER_DATA","package":"druntime","parentType":"","signature":"PSECURITY_USER_DATA = SECURITY_USER_DATA *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECURITY_USER_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SecurityUserData","package":"druntime","parentType":"","signature":"SecurityUserData = SECURITY_USER_DATA","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SecurityUserData"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_GSS_INFO","package":"druntime","parentType":"","signature":"SECPKG_GSS_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_GSS_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_GSS_INFO","package":"druntime","parentType":"","signature":"PSECPKG_GSS_INFO = SECPKG_GSS_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_GSS_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_CONTEXT_THUNKS","package":"druntime","parentType":"","signature":"SECPKG_CONTEXT_THUNKS","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_CONTEXT_THUNKS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_CONTEXT_THUNKS","package":"druntime","parentType":"","signature":"PSECPKG_CONTEXT_THUNKS = SECPKG_CONTEXT_THUNKS *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_CONTEXT_THUNKS"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_MUTUAL_AUTH_LEVEL","package":"druntime","parentType":"","signature":"SECPKG_MUTUAL_AUTH_LEVEL","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_MUTUAL_AUTH_LEVEL"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_MUTUAL_AUTH_LEVEL","package":"druntime","parentType":"","signature":"PSECPKG_MUTUAL_AUTH_LEVEL = SECPKG_MUTUAL_AUTH_LEVEL *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_MUTUAL_AUTH_LEVEL"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_CALL_INFO","package":"druntime","parentType":"","signature":"SECPKG_CALL_INFO","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_CALL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_CALL_INFO","package":"druntime","parentType":"","signature":"PSECPKG_CALL_INFO = SECPKG_CALL_INFO *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_CALL_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_EXTENDED_INFORMATION","package":"druntime","parentType":"","signature":"SECPKG_EXTENDED_INFORMATION","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_EXTENDED_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_EXTENDED_INFORMATION","package":"druntime","parentType":"","signature":"PSECPKG_EXTENDED_INFORMATION = SECPKG_EXTENDED_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_EXTENDED_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CALLBACK_FUNCTION","package":"druntime","parentType":"","signature":"PLSA_CALLBACK_FUNCTION = void  function(ULONG_PTR,  ULONG_PTR,  PSecBuffer,\n  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CALLBACK_FUNCTION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CLIENT_REQUEST","package":"druntime","parentType":"","signature":"PLSA_CLIENT_REQUEST = PVOID *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CLIENT_REQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"LSA_SEC_HANDLE","package":"druntime","parentType":"","signature":"LSA_SEC_HANDLE = ULONG_PTR","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_SEC_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_SEC_HANDLE","package":"druntime","parentType":"","signature":"PLSA_SEC_HANDLE = LSA_SEC_HANDLE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_SEC_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SEC_THREAD_START","package":"druntime","parentType":"","signature":"SEC_THREAD_START = LPTHREAD_START_ROUTINE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SEC_THREAD_START"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SEC_ATTRS","package":"druntime","parentType":"","signature":"SEC_ATTRS = PSECURITY_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SEC_ATTRS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_REGISTER_CALLBACK","package":"druntime","parentType":"","signature":"PLSA_REGISTER_CALLBACK = NTSTATUS function(ULONG,  PLSA_CALLBACK_FUNCTION)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_REGISTER_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CREATE_LOGON_SESSION","package":"druntime","parentType":"","signature":"PLSA_CREATE_LOGON_SESSION = NTSTATUS function(PLUID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CREATE_LOGON_SESSION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_DELETE_LOGON_SESSION","package":"druntime","parentType":"","signature":"PLSA_DELETE_LOGON_SESSION = NTSTATUS function(PLUID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_DELETE_LOGON_SESSION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_ADD_CREDENTIAL","package":"druntime","parentType":"","signature":"PLSA_ADD_CREDENTIAL = NTSTATUS function(PLUID,  ULONG,  PLSA_STRING,\n  PLSA_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_ADD_CREDENTIAL"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_CREDENTIALS","package":"druntime","parentType":"","signature":"PLSA_GET_CREDENTIALS = NTSTATUS function(PLUID,  ULONG,  PULONG,  BOOLEAN,\n  PLSA_STRING,  PULONG,  PLSA_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_CREDENTIALS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_DELETE_CREDENTIAL","package":"druntime","parentType":"","signature":"PLSA_DELETE_CREDENTIAL = NTSTATUS function(PLUID,  ULONG,  PLSA_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_DELETE_CREDENTIAL"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_ALLOCATE_LSA_HEAP","package":"druntime","parentType":"","signature":"PLSA_ALLOCATE_LSA_HEAP = PVOID function(ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_ALLOCATE_LSA_HEAP"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_FREE_LSA_HEAP","package":"druntime","parentType":"","signature":"PLSA_FREE_LSA_HEAP = void  function(PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_FREE_LSA_HEAP"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_ALLOCATE_CLIENT_BUFFER","package":"druntime","parentType":"","signature":"PLSA_ALLOCATE_CLIENT_BUFFER = NTSTATUS function(PLSA_CLIENT_REQUEST,\n  ULONG,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_ALLOCATE_CLIENT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_FREE_CLIENT_BUFFER","package":"druntime","parentType":"","signature":"PLSA_FREE_CLIENT_BUFFER = NTSTATUS function(PLSA_CLIENT_REQUEST,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_FREE_CLIENT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_COPY_TO_CLIENT_BUFFER","package":"druntime","parentType":"","signature":"PLSA_COPY_TO_CLIENT_BUFFER = NTSTATUS function(PLSA_CLIENT_REQUEST,  ULONG,\n  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_COPY_TO_CLIENT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_COPY_FROM_CLIENT_BUFFER","package":"druntime","parentType":"","signature":"PLSA_COPY_FROM_CLIENT_BUFFER = NTSTATUS function(PLSA_CLIENT_REQUEST,\n  ULONG,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_COPY_FROM_CLIENT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_IMPERSONATE_CLIENT","package":"druntime","parentType":"","signature":"PLSA_IMPERSONATE_CLIENT = NTSTATUS function()","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_IMPERSONATE_CLIENT"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_UNLOAD_PACKAGE","package":"druntime","parentType":"","signature":"PLSA_UNLOAD_PACKAGE = NTSTATUS function()","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_UNLOAD_PACKAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_DUPLICATE_HANDLE","package":"druntime","parentType":"","signature":"PLSA_DUPLICATE_HANDLE = NTSTATUS function(HANDLE,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_DUPLICATE_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS","package":"druntime","parentType":"","signature":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS = NTSTATUS function(PLUID,  ULONG,\n  PVOID,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CREATE_THREAD","package":"druntime","parentType":"","signature":"PLSA_CREATE_THREAD = HANDLE function(SEC_ATTRS,  ULONG,  SEC_THREAD_START,\n  PVOID,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CREATE_THREAD"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_CLIENT_INFO","package":"druntime","parentType":"","signature":"PLSA_GET_CLIENT_INFO = NTSTATUS function(PSECPKG_CLIENT_INFO)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_CLIENT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_REGISTER_NOTIFICATION","package":"druntime","parentType":"","signature":"PLSA_REGISTER_NOTIFICATION = HANDLE function(SEC_THREAD_START,  PVOID,\n  ULONG,  ULONG,  ULONG,  ULONG,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_REGISTER_NOTIFICATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CANCEL_NOTIFICATION","package":"druntime","parentType":"","signature":"PLSA_CANCEL_NOTIFICATION = NTSTATUS function(HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CANCEL_NOTIFICATION"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_MAP_BUFFER","package":"druntime","parentType":"","signature":"PLSA_MAP_BUFFER = NTSTATUS function(PSecBuffer,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_MAP_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CREATE_TOKEN","package":"druntime","parentType":"","signature":"PLSA_CREATE_TOKEN = NTSTATUS function(PLUID,  PTOKEN_SOURCE,\n  SECURITY_LOGON_TYPE,  SECURITY_IMPERSONATION_LEVEL,  LSA_TOKEN_INFORMATION_TYPE,\n  PVOID,  PTOKEN_GROUPS,  PUNICODE_STRING,  PUNICODE_STRING,  PUNICODE_STRING,\n  PUNICODE_STRING,  PHANDLE,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CREATE_TOKEN"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AUDIT_LOGON","package":"druntime","parentType":"","signature":"PLSA_AUDIT_LOGON = void  function(NTSTATUS,  NTSTATUS,  PUNICODE_STRING,\n  PUNICODE_STRING,  PUNICODE_STRING,  PSID,  SECURITY_LOGON_TYPE,\n  PTOKEN_SOURCE,  PLUID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AUDIT_LOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CALL_PACKAGE","package":"druntime","parentType":"","signature":"PLSA_CALL_PACKAGE = NTSTATUS function(PUNICODE_STRING,  PVOID,  ULONG,\n  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CALL_PACKAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_CALL_INFO","package":"druntime","parentType":"","signature":"PLSA_GET_CALL_INFO = BOOLEAN function(PSECPKG_CALL_INFO)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_CALL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CALL_PACKAGEEX","package":"druntime","parentType":"","signature":"PLSA_CALL_PACKAGEEX = NTSTATUS function(PUNICODE_STRING,  PVOID,  PVOID,\n  ULONG,  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CALL_PACKAGEEX"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CREATE_SHARED_MEMORY","package":"druntime","parentType":"","signature":"PLSA_CREATE_SHARED_MEMORY = PVOID function(ULONG,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CREATE_SHARED_MEMORY"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_ALLOCATE_SHARED_MEMORY","package":"druntime","parentType":"","signature":"PLSA_ALLOCATE_SHARED_MEMORY = PVOID function(PVOID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_ALLOCATE_SHARED_MEMORY"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_FREE_SHARED_MEMORY","package":"druntime","parentType":"","signature":"PLSA_FREE_SHARED_MEMORY = void  function(PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_FREE_SHARED_MEMORY"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_DELETE_SHARED_MEMORY","package":"druntime","parentType":"","signature":"PLSA_DELETE_SHARED_MEMORY = BOOLEAN function(PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_DELETE_SHARED_MEMORY"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_OPEN_SAM_USER","package":"druntime","parentType":"","signature":"PLSA_OPEN_SAM_USER = NTSTATUS function(PSECURITY_STRING,  SECPKG_NAME_TYPE,\n  PSECURITY_STRING,  BOOLEAN,  ULONG,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_OPEN_SAM_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_USER_CREDENTIALS","package":"druntime","parentType":"","signature":"PLSA_GET_USER_CREDENTIALS = NTSTATUS function(PVOID,  PVOID *,  PULONG,\n  PVOID *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_USER_CREDENTIALS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_USER_AUTH_DATA","package":"druntime","parentType":"","signature":"PLSA_GET_USER_AUTH_DATA = NTSTATUS function(PVOID,  PUCHAR *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_USER_AUTH_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CLOSE_SAM_USER","package":"druntime","parentType":"","signature":"PLSA_CLOSE_SAM_USER = NTSTATUS function(PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CLOSE_SAM_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN","package":"druntime","parentType":"","signature":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN = NTSTATUS function(PVOID,  ULONG,\n  SECURITY_IMPERSONATION_LEVEL,  PTOKEN_SOURCE,  SECURITY_LOGON_TYPE,\n  PUNICODE_STRING,  PHANDLE,  PLUID,  PUNICODE_STRING,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CONVERT_AUTH_DATA_TO_TOKEN"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CLIENT_CALLBACK","package":"druntime","parentType":"","signature":"PLSA_CLIENT_CALLBACK = NTSTATUS function(PCHAR,  ULONG_PTR,  ULONG_PTR,\n  PSecBuffer,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CLIENT_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_UPDATE_PRIMARY_CREDENTIALS","package":"druntime","parentType":"","signature":"PLSA_UPDATE_PRIMARY_CREDENTIALS = NTSTATUS function(PSECPKG_PRIMARY_CRED,  PSECPKG_SUPPLEMENTAL_CRED_ARRAY)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_UPDATE_PRIMARY_CREDENTIALS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_GET_AUTH_DATA_FOR_USER","package":"druntime","parentType":"","signature":"PLSA_GET_AUTH_DATA_FOR_USER = NTSTATUS function(PSECURITY_STRING,\n  SECPKG_NAME_TYPE,  PSECURITY_STRING,  PUCHAR *,  PULONG,  PUNICODE_STRING)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_GET_AUTH_DATA_FOR_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CRACK_SINGLE_NAME","package":"druntime","parentType":"","signature":"PLSA_CRACK_SINGLE_NAME = NTSTATUS function(ULONG,  BOOLEAN,\n  PUNICODE_STRING,  PUNICODE_STRING,  ULONG,  PUNICODE_STRING,  PUNICODE_STRING,\n  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CRACK_SINGLE_NAME"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AUDIT_ACCOUNT_LOGON","package":"druntime","parentType":"","signature":"PLSA_AUDIT_ACCOUNT_LOGON = NTSTATUS function(ULONG,  BOOLEAN,\n  PUNICODE_STRING,  PUNICODE_STRING,  PUNICODE_STRING,  NTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AUDIT_ACCOUNT_LOGON"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_CALL_PACKAGE_PASSTHROUGH","package":"druntime","parentType":"","signature":"PLSA_CALL_PACKAGE_PASSTHROUGH = NTSTATUS function(PUNICODE_STRING,  PVOID,\n  PVOID,  ULONG,  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_CALL_PACKAGE_PASSTHROUGH"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_DLL_FUNCTIONS","package":"druntime","parentType":"","signature":"SECPKG_DLL_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_DLL_FUNCTIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_DLL_FUNCTIONS","package":"druntime","parentType":"","signature":"PSECPKG_DLL_FUNCTIONS = SECPKG_DLL_FUNCTIONS *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_DLL_FUNCTIONS"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"LSA_DISPATCH_TABLE","package":"druntime","parentType":"","signature":"LSA_DISPATCH_TABLE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_DISPATCH_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_DISPATCH_TABLE","package":"druntime","parentType":"","signature":"PLSA_DISPATCH_TABLE = LSA_DISPATCH_TABLE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_DISPATCH_TABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"LSA_SECPKG_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"LSA_SECPKG_FUNCTION_TABLE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#LSA_SECPKG_FUNCTION_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_SECPKG_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"PLSA_SECPKG_FUNCTION_TABLE = LSA_SECPKG_FUNCTION_TABLE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_SECPKG_FUNCTION_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_INITIALIZE_PACKAGE","package":"druntime","parentType":"","signature":"PLSA_AP_INITIALIZE_PACKAGE = NTSTATUS function(ULONG,  PLSA_DISPATCH_TABLE,\n  PLSA_STRING,  PLSA_STRING,  PLSA_STRING *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_INITIALIZE_PACKAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_LOGON_USER","package":"druntime","parentType":"","signature":"PLSA_AP_LOGON_USER = NTSTATUS function(LPWSTR,  LPWSTR,  LPWSTR,  LPWSTR,\n  DWORD,  DWORD,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_LOGON_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_CALL_PACKAGE","package":"druntime","parentType":"","signature":"PLSA_AP_CALL_PACKAGE = NTSTATUS function(PUNICODE_STRING,  PVOID,  ULONG,\n  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_CALL_PACKAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_LOGON_TERMINATED","package":"druntime","parentType":"","signature":"PLSA_AP_LOGON_TERMINATED = void  function(PLUID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_LOGON_TERMINATED"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_CALL_PACKAGE_UNTRUSTED","package":"druntime","parentType":"","signature":"PLSA_AP_CALL_PACKAGE_UNTRUSTED = NTSTATUS function(PLSA_CLIENT_REQUEST,\n  PVOID,  PVOID,  ULONG,  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_CALL_PACKAGE_UNTRUSTED"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH","package":"druntime","parentType":"","signature":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH = NTSTATUS function(PUNICODE_STRING,\n  PVOID,  PVOID,  ULONG,  PVOID *,  PULONG,  PNTSTATUS)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_CALL_PACKAGE_PASSTHROUGH"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_LOGON_USER_EX","package":"druntime","parentType":"","signature":"PLSA_AP_LOGON_USER_EX = NTSTATUS function(PLSA_CLIENT_REQUEST,\n  SECURITY_LOGON_TYPE,  PVOID,  PVOID,  ULONG,  PVOID *,  PULONG,  PLUID,  PNTSTATUS,\n  PLSA_TOKEN_INFORMATION_TYPE,  PVOID *,  PUNICODE_STRING *,  PUNICODE_STRING *,\n  PUNICODE_STRING *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_LOGON_USER_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PLSA_AP_LOGON_USER_EX2","package":"druntime","parentType":"","signature":"PLSA_AP_LOGON_USER_EX2 = NTSTATUS function(PLSA_CLIENT_REQUEST,\n  SECURITY_LOGON_TYPE,  PVOID,  PVOID,  ULONG,  PVOID *,  PULONG,  PLUID,  PNTSTATUS,\n  PLSA_TOKEN_INFORMATION_TYPE,  PVOID *,  PUNICODE_STRING *,  PUNICODE_STRING *,\n  PUNICODE_STRING *,  PSECPKG_PRIMARY_CRED,  PSECPKG_SUPPLEMENTAL_CRED_ARRAY *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PLSA_AP_LOGON_USER_EX2"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpInitializeFn","package":"druntime","parentType":"","signature":"SpInitializeFn = NTSTATUS function(ULONG_PTR,  PSECPKG_PARAMETERS,\n  PLSA_SECPKG_FUNCTION_TABLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpInitializeFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpShutDownFn","package":"druntime","parentType":"","signature":"SpShutDownFn = NTSTATUS function()","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpShutDownFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpGetInfoFn","package":"druntime","parentType":"","signature":"SpGetInfoFn = NTSTATUS function(PSecPkgInfoW)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpGetInfoFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpAcceptCredentialsFn","package":"druntime","parentType":"","signature":"SpAcceptCredentialsFn = NTSTATUS function(SECURITY_LOGON_TYPE,\n  PUNICODE_STRING,  PSECPKG_PRIMARY_CRED,  PSECPKG_SUPPLEMENTAL_CRED)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpAcceptCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpAcquireCredentialsHandleFn","package":"druntime","parentType":"","signature":"SpAcquireCredentialsHandleFn = NTSTATUS function(PUNICODE_STRING,  ULONG,\n  PLUID,  PVOID,  PVOID,  PVOID,  PLSA_SEC_HANDLE,  PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpAcquireCredentialsHandleFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpQueryCredentialsAttributesFn","package":"druntime","parentType":"","signature":"SpQueryCredentialsAttributesFn = NTSTATUS function(LSA_SEC_HANDLE,  ULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpQueryCredentialsAttributesFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpFreeCredentialsHandleFn","package":"druntime","parentType":"","signature":"SpFreeCredentialsHandleFn = NTSTATUS function(LSA_SEC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpFreeCredentialsHandleFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpSaveCredentialsFn","package":"druntime","parentType":"","signature":"SpSaveCredentialsFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpSaveCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpGetCredentialsFn","package":"druntime","parentType":"","signature":"SpGetCredentialsFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpGetCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpDeleteCredentialsFn","package":"druntime","parentType":"","signature":"SpDeleteCredentialsFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpDeleteCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpInitLsaModeContextFn","package":"druntime","parentType":"","signature":"SpInitLsaModeContextFn = NTSTATUS function(LSA_SEC_HANDLE,  LSA_SEC_HANDLE,\n  PUNICODE_STRING,  ULONG,  ULONG,  PSecBufferDesc,  PLSA_SEC_HANDLE,  PSecBufferDesc,\n  PULONG,  PTimeStamp,  PBOOLEAN,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpInitLsaModeContextFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpAcceptLsaModeContextFn","package":"druntime","parentType":"","signature":"SpAcceptLsaModeContextFn = NTSTATUS function(LSA_SEC_HANDLE,\n  LSA_SEC_HANDLE,  PSecBufferDesc,  ULONG,  ULONG,  PLSA_SEC_HANDLE,  PSecBufferDesc,\n  PULONG,  PTimeStamp,  PBOOLEAN,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpAcceptLsaModeContextFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpDeleteContextFn","package":"druntime","parentType":"","signature":"SpDeleteContextFn = NTSTATUS function(LSA_SEC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpDeleteContextFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpApplyControlTokenFn","package":"druntime","parentType":"","signature":"SpApplyControlTokenFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpApplyControlTokenFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpGetUserInfoFn","package":"druntime","parentType":"","signature":"SpGetUserInfoFn = NTSTATUS function(PLUID,  ULONG,  PSecurityUserData *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpGetUserInfoFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpGetExtendedInformationFn","package":"druntime","parentType":"","signature":"SpGetExtendedInformationFn = NTSTATUS function(SECPKG_EXTENDED_INFORMATION_CLASS,  PSECPKG_EXTENDED_INFORMATION *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpGetExtendedInformationFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpQueryContextAttributesFn","package":"druntime","parentType":"","signature":"SpQueryContextAttributesFn = NTSTATUS function(LSA_SEC_HANDLE,  ULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpQueryContextAttributesFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpAddCredentialsFn","package":"druntime","parentType":"","signature":"SpAddCredentialsFn = NTSTATUS function(LSA_SEC_HANDLE,  PUNICODE_STRING,\n  PUNICODE_STRING,  ULONG,  PVOID,  PVOID,  PVOID,  PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpAddCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpSetExtendedInformationFn","package":"druntime","parentType":"","signature":"SpSetExtendedInformationFn = NTSTATUS function(\n  SECPKG_EXTENDED_INFORMATION_CLASS,  PSECPKG_EXTENDED_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpSetExtendedInformationFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpInstanceInitFn","package":"druntime","parentType":"","signature":"SpInstanceInitFn = NTSTATUS function(ULONG,  PSECPKG_DLL_FUNCTIONS,\n  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpInstanceInitFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpInitUserModeContextFn","package":"druntime","parentType":"","signature":"SpInitUserModeContextFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpInitUserModeContextFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpMakeSignatureFn","package":"druntime","parentType":"","signature":"SpMakeSignatureFn = NTSTATUS function(LSA_SEC_HANDLE,  ULONG,\n  PSecBufferDesc,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpMakeSignatureFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpVerifySignatureFn","package":"druntime","parentType":"","signature":"SpVerifySignatureFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBufferDesc,\n  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpVerifySignatureFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpSealMessageFn","package":"druntime","parentType":"","signature":"SpSealMessageFn = NTSTATUS function(LSA_SEC_HANDLE,  ULONG,  PSecBufferDesc,\n  ULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpSealMessageFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpUnsealMessageFn","package":"druntime","parentType":"","signature":"SpUnsealMessageFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBufferDesc,\n  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpUnsealMessageFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpGetContextTokenFn","package":"druntime","parentType":"","signature":"SpGetContextTokenFn = NTSTATUS function(LSA_SEC_HANDLE,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpGetContextTokenFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpCompleteAuthTokenFn","package":"druntime","parentType":"","signature":"SpCompleteAuthTokenFn = NTSTATUS function(LSA_SEC_HANDLE,  PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpCompleteAuthTokenFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpFormatCredentialsFn","package":"druntime","parentType":"","signature":"SpFormatCredentialsFn = NTSTATUS function(PSecBuffer,  PSecBuffer)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpFormatCredentialsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpMarshallSupplementalCredsFn","package":"druntime","parentType":"","signature":"SpMarshallSupplementalCredsFn = NTSTATUS function(ULONG,  PUCHAR,  PULONG,\n  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpMarshallSupplementalCredsFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpExportSecurityContextFn","package":"druntime","parentType":"","signature":"SpExportSecurityContextFn = NTSTATUS function(LSA_SEC_HANDLE,  ULONG,\n  PSecBuffer,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpExportSecurityContextFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpImportSecurityContextFn","package":"druntime","parentType":"","signature":"SpImportSecurityContextFn = NTSTATUS function(PSecBuffer,  HANDLE,\n  PLSA_SEC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpImportSecurityContextFn"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"SECPKG_FUNCTION_TABLE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_FUNCTION_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"PSECPKG_FUNCTION_TABLE = SECPKG_FUNCTION_TABLE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_FUNCTION_TABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.ntsecpkg","name":"SECPKG_USER_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"SECPKG_USER_FUNCTION_TABLE","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECPKG_USER_FUNCTION_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"PSECPKG_USER_FUNCTION_TABLE","package":"druntime","parentType":"","signature":"PSECPKG_USER_FUNCTION_TABLE = SECPKG_USER_FUNCTION_TABLE *","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#PSECPKG_USER_FUNCTION_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpLsaModeInitializeFn","package":"druntime","parentType":"","signature":"SpLsaModeInitializeFn = NTSTATUS function(ULONG,  PULONG,\n  PSECPKG_FUNCTION_TABLE *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpLsaModeInitializeFn"},{"doc":"","kind":"alias","module":"core.sys.windows.ntsecpkg","name":"SpUserModeInitializeFn","package":"druntime","parentType":"","signature":"SpUserModeInitializeFn = NTSTATUS function(ULONG,  PULONG,\n  PSECPKG_USER_FUNCTION_TABLE *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SpUserModeInitializeFn"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecpkg","name":"ISC_RET_EXTENDED_ERROR","package":"druntime","parentType":"","signature":"ISC_RET_EXTENDED_ERROR","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#ISC_RET_EXTENDED_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecpkg","name":"SECURITY_NATIVE_DREP","package":"druntime","parentType":"","signature":"SECURITY_NATIVE_DREP","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECURITY_NATIVE_DREP"},{"doc":"","kind":"variable","module":"core.sys.windows.ntsecpkg","name":"SECURITY_NETWORK_DREP","package":"druntime","parentType":"","signature":"SECURITY_NETWORK_DREP","url":"/ddoc/druntime/core/sys/windows/ntsecpkg.html#SECURITY_NETWORK_DREP"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.oaidl","name":"core.sys.windows.oaidl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/oaidl.html"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"SYSKIND","package":"druntime","parentType":"","signature":"SYSKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SYSKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SYS_WIN16","package":"druntime","parentType":"","signature":"SYS_WIN16 = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SYSKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SYS_WIN32","package":"druntime","parentType":"","signature":"SYS_WIN32 = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SYSKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SYS_MAC","package":"druntime","parentType":"","signature":"SYS_MAC = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SYSKIND"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"LIBFLAGS","package":"druntime","parentType":"","signature":"LIBFLAGS","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LIBFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"LIBFLAG_FRESTRICTED","package":"druntime","parentType":"","signature":"LIBFLAG_FRESTRICTED = 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LIBFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"LIBFLAG_FCONTROL","package":"druntime","parentType":"","signature":"LIBFLAG_FCONTROL = 2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LIBFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"LIBFLAG_FHIDDEN","package":"druntime","parentType":"","signature":"LIBFLAG_FHIDDEN = 4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LIBFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"LIBFLAG_FHASDISKIMAGE","package":"druntime","parentType":"","signature":"LIBFLAG_FHASDISKIMAGE = 8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LIBFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"TLIBATTR","package":"druntime","parentType":"","signature":"TLIBATTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TLIBATTR"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTLIBATTR","package":"druntime","parentType":"","signature":"LPTLIBATTR = TLIBATTR *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTLIBATTR"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"CURRENCY","package":"druntime","parentType":"","signature":"CURRENCY = CY","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CURRENCY"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARRAYBOUND","package":"druntime","parentType":"","signature":"SAFEARRAYBOUND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARRAYBOUND"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPSAFEARRAYBOUND","package":"druntime","parentType":"","signature":"LPSAFEARRAYBOUND = SAFEARRAYBOUND *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPSAFEARRAYBOUND"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_BSTR","package":"druntime","parentType":"","signature":"SAFEARR_BSTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_BSTR"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_UNKNOWN","package":"druntime","parentType":"","signature":"SAFEARR_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_UNKNOWN"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_DISPATCH","package":"druntime","parentType":"","signature":"SAFEARR_DISPATCH","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_DISPATCH"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_VARIANT","package":"druntime","parentType":"","signature":"SAFEARR_VARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_VARIANT"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"SF_TYPE","package":"druntime","parentType":"","signature":"SF_TYPE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_ERROR","package":"druntime","parentType":"","signature":"SF_ERROR = VARENUM.VT_ERROR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_I1","package":"druntime","parentType":"","signature":"SF_I1 = VARENUM.VT_I1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_I2","package":"druntime","parentType":"","signature":"SF_I2 = VARENUM.VT_I2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_I4","package":"druntime","parentType":"","signature":"SF_I4 = VARENUM.VT_I4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_I8","package":"druntime","parentType":"","signature":"SF_I8 = VARENUM.VT_I8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_BSTR","package":"druntime","parentType":"","signature":"SF_BSTR = VARENUM.VT_BSTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_UNKNOWN","package":"druntime","parentType":"","signature":"SF_UNKNOWN = VARENUM.VT_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_DISPATCH","package":"druntime","parentType":"","signature":"SF_DISPATCH = VARENUM.VT_DISPATCH","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"SF_VARIANT","package":"druntime","parentType":"","signature":"SF_VARIANT = VARENUM.VT_VARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SF_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"_wireBRECORD","package":"druntime","parentType":"","signature":"_wireBRECORD","url":"/ddoc/druntime/core/sys/windows/oaidl.html#_wireBRECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"wireBRECORD","package":"druntime","parentType":"","signature":"wireBRECORD = _wireBRECORD *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#wireBRECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_BRECORD","package":"druntime","parentType":"","signature":"SAFEARR_BRECORD","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_BRECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARR_HAVEIID","package":"druntime","parentType":"","signature":"SAFEARR_HAVEIID","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARR_HAVEIID"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARRAYUNION","package":"druntime","parentType":"","signature":"SAFEARRAYUNION","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARRAYUNION"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"_wireSAFEARRAY","package":"druntime","parentType":"","signature":"_wireSAFEARRAY","url":"/ddoc/druntime/core/sys/windows/oaidl.html#_wireSAFEARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"wireSAFEARRAY","package":"druntime","parentType":"","signature":"wireSAFEARRAY = _wireSAFEARRAY *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#wireSAFEARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"wirePSAFEARRAY","package":"druntime","parentType":"","signature":"wirePSAFEARRAY = wireSAFEARRAY *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#wirePSAFEARRAY"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"SAFEARRAY","package":"druntime","parentType":"","signature":"SAFEARRAY","url":"/ddoc/druntime/core/sys/windows/oaidl.html#SAFEARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPSAFEARRAY","package":"druntime","parentType":"","signature":"LPSAFEARRAY = SAFEARRAY *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPSAFEARRAY"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"VARIANT","package":"druntime","parentType":"","signature":"VARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARIANT"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPVARIANT","package":"druntime","parentType":"","signature":"LPVARIANT = VARIANT *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPVARIANT"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"VARIANTARG","package":"druntime","parentType":"","signature":"VARIANTARG = VARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARIANTARG"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPVARIANTARG","package":"druntime","parentType":"","signature":"LPVARIANTARG = VARIANT *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPVARIANTARG"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"_wireVARIANT","package":"druntime","parentType":"","signature":"_wireVARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#_wireVARIANT"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"wireVARIANT","package":"druntime","parentType":"","signature":"wireVARIANT = _wireVARIANT *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#wireVARIANT"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"DISPID","package":"druntime","parentType":"","signature":"DISPID = LONG","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"MEMBERID","package":"druntime","parentType":"","signature":"MEMBERID = DISPID","url":"/ddoc/druntime/core/sys/windows/oaidl.html#MEMBERID"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"HREFTYPE","package":"druntime","parentType":"","signature":"HREFTYPE = DWORD","url":"/ddoc/druntime/core/sys/windows/oaidl.html#HREFTYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"TYPEKIND","package":"druntime","parentType":"","signature":"TYPEKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_ENUM","package":"druntime","parentType":"","signature":"TKIND_ENUM = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_RECORD","package":"druntime","parentType":"","signature":"TKIND_RECORD = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_MODULE","package":"druntime","parentType":"","signature":"TKIND_MODULE = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_INTERFACE","package":"druntime","parentType":"","signature":"TKIND_INTERFACE = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_DISPATCH","package":"druntime","parentType":"","signature":"TKIND_DISPATCH = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_COCLASS","package":"druntime","parentType":"","signature":"TKIND_COCLASS = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_ALIAS","package":"druntime","parentType":"","signature":"TKIND_ALIAS = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_UNION","package":"druntime","parentType":"","signature":"TKIND_UNION = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TKIND_MAX","package":"druntime","parentType":"","signature":"TKIND_MAX = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEKIND"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"TYPEDESC","package":"druntime","parentType":"","signature":"TYPEDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"ARRAYDESC","package":"druntime","parentType":"","signature":"ARRAYDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ARRAYDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"PARAMDESCEX","package":"druntime","parentType":"","signature":"PARAMDESCEX","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMDESCEX"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPPARAMDESCEX","package":"druntime","parentType":"","signature":"LPPARAMDESCEX = PARAMDESCEX *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPPARAMDESCEX"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"PARAMDESC","package":"druntime","parentType":"","signature":"PARAMDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPPARAMDESC","package":"druntime","parentType":"","signature":"LPPARAMDESC = PARAMDESC *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPPARAMDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"IDLDESC","package":"druntime","parentType":"","signature":"IDLDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPIDLDESC","package":"druntime","parentType":"","signature":"LPIDLDESC = IDLDESC *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPIDLDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"ELEMDESC","package":"druntime","parentType":"","signature":"ELEMDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ELEMDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPELEMDESC","package":"druntime","parentType":"","signature":"LPELEMDESC = ELEMDESC *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPELEMDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"TYPEATTR","package":"druntime","parentType":"","signature":"TYPEATTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEATTR"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPEATTR","package":"druntime","parentType":"","signature":"LPTYPEATTR = TYPEATTR *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPEATTR"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"DISPPARAMS","package":"druntime","parentType":"","signature":"DISPPARAMS","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPPARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"EXCEPINFO","package":"druntime","parentType":"","signature":"EXCEPINFO","url":"/ddoc/druntime/core/sys/windows/oaidl.html#EXCEPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPEXCEPINFO","package":"druntime","parentType":"","signature":"LPEXCEPINFO = EXCEPINFO *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPEXCEPINFO"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"CALLCONV","package":"druntime","parentType":"","signature":"CALLCONV","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_FASTCALL","package":"druntime","parentType":"","signature":"CC_FASTCALL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_CDECL","package":"druntime","parentType":"","signature":"CC_CDECL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_MSCPASCAL","package":"druntime","parentType":"","signature":"CC_MSCPASCAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_PASCAL","package":"druntime","parentType":"","signature":"CC_PASCAL = CC_MSCPASCAL","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_MACPASCAL","package":"druntime","parentType":"","signature":"CC_MACPASCAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_STDCALL","package":"druntime","parentType":"","signature":"CC_STDCALL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_FPFASTCALL","package":"druntime","parentType":"","signature":"CC_FPFASTCALL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_SYSCALL","package":"druntime","parentType":"","signature":"CC_SYSCALL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_MPWCDECL","package":"druntime","parentType":"","signature":"CC_MPWCDECL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_MPWPASCAL","package":"druntime","parentType":"","signature":"CC_MPWPASCAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"CC_MAX","package":"druntime","parentType":"","signature":"CC_MAX = CC_MPWPASCAL","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CALLCONV"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"FUNCKIND","package":"druntime","parentType":"","signature":"FUNCKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNC_VIRTUAL","package":"druntime","parentType":"","signature":"FUNC_VIRTUAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNC_PUREVIRTUAL","package":"druntime","parentType":"","signature":"FUNC_PUREVIRTUAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNC_NONVIRTUAL","package":"druntime","parentType":"","signature":"FUNC_NONVIRTUAL = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNC_STATIC","package":"druntime","parentType":"","signature":"FUNC_STATIC = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNC_DISPATCH","package":"druntime","parentType":"","signature":"FUNC_DISPATCH = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCKIND"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"INVOKEKIND","package":"druntime","parentType":"","signature":"INVOKEKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#INVOKEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"INVOKE_FUNC","package":"druntime","parentType":"","signature":"INVOKE_FUNC = 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#INVOKEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"INVOKE_PROPERTYGET","package":"druntime","parentType":"","signature":"INVOKE_PROPERTYGET = 2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#INVOKEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"INVOKE_PROPERTYPUT","package":"druntime","parentType":"","signature":"INVOKE_PROPERTYPUT = 4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#INVOKEKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"INVOKE_PROPERTYPUTREF","package":"druntime","parentType":"","signature":"INVOKE_PROPERTYPUTREF = 8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#INVOKEKIND"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"FUNCDESC","package":"druntime","parentType":"","signature":"FUNCDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPFUNCDESC","package":"druntime","parentType":"","signature":"LPFUNCDESC = FUNCDESC *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPFUNCDESC"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"VARKIND","package":"druntime","parentType":"","signature":"VARKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VAR_PERINSTANCE","package":"druntime","parentType":"","signature":"VAR_PERINSTANCE = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VAR_STATIC","package":"druntime","parentType":"","signature":"VAR_STATIC = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VAR_CONST","package":"druntime","parentType":"","signature":"VAR_CONST = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VAR_DISPATCH","package":"druntime","parentType":"","signature":"VAR_DISPATCH = ","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARKIND"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"VARDESC","package":"druntime","parentType":"","signature":"VARDESC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPVARDESC","package":"druntime","parentType":"","signature":"LPVARDESC = VARDESC *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPVARDESC"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"TYPEFLAGS","package":"druntime","parentType":"","signature":"TYPEFLAGS","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FAPPOBJECT","package":"druntime","parentType":"","signature":"TYPEFLAG_FAPPOBJECT = 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FCANCREATE","package":"druntime","parentType":"","signature":"TYPEFLAG_FCANCREATE = 2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FLICENSED","package":"druntime","parentType":"","signature":"TYPEFLAG_FLICENSED = 4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FPREDECLID","package":"druntime","parentType":"","signature":"TYPEFLAG_FPREDECLID = 8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FHIDDEN","package":"druntime","parentType":"","signature":"TYPEFLAG_FHIDDEN = 16","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FCONTROL","package":"druntime","parentType":"","signature":"TYPEFLAG_FCONTROL = 32","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FDUAL","package":"druntime","parentType":"","signature":"TYPEFLAG_FDUAL = 64","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FNONEXTENSIBLE","package":"druntime","parentType":"","signature":"TYPEFLAG_FNONEXTENSIBLE = 128","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FOLEAUTOMATION","package":"druntime","parentType":"","signature":"TYPEFLAG_FOLEAUTOMATION = 256","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FRESTRICTED","package":"druntime","parentType":"","signature":"TYPEFLAG_FRESTRICTED = 512","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FAGGREGATABLE","package":"druntime","parentType":"","signature":"TYPEFLAG_FAGGREGATABLE = 1024","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FREPLACEABLE","package":"druntime","parentType":"","signature":"TYPEFLAG_FREPLACEABLE = 2048","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FDISPATCHABLE","package":"druntime","parentType":"","signature":"TYPEFLAG_FDISPATCHABLE = 4096","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"TYPEFLAG_FREVERSEBIND","package":"druntime","parentType":"","signature":"TYPEFLAG_FREVERSEBIND = 8192","url":"/ddoc/druntime/core/sys/windows/oaidl.html#TYPEFLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"FUNCFLAGS","package":"druntime","parentType":"","signature":"FUNCFLAGS","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FRESTRICTED","package":"druntime","parentType":"","signature":"FUNCFLAG_FRESTRICTED = 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FSOURCE","package":"druntime","parentType":"","signature":"FUNCFLAG_FSOURCE = 2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FBINDABLE","package":"druntime","parentType":"","signature":"FUNCFLAG_FBINDABLE = 4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FREQUESTEDIT","package":"druntime","parentType":"","signature":"FUNCFLAG_FREQUESTEDIT = 8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FDISPLAYBIND","package":"druntime","parentType":"","signature":"FUNCFLAG_FDISPLAYBIND = 16","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FDEFAULTBIND","package":"druntime","parentType":"","signature":"FUNCFLAG_FDEFAULTBIND = 32","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FHIDDEN","package":"druntime","parentType":"","signature":"FUNCFLAG_FHIDDEN = 64","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FUSESGETLASTERROR","package":"druntime","parentType":"","signature":"FUNCFLAG_FUSESGETLASTERROR = 128","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FDEFAULTCOLLELEM","package":"druntime","parentType":"","signature":"FUNCFLAG_FDEFAULTCOLLELEM = 256","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FUIDEFAULT","package":"druntime","parentType":"","signature":"FUNCFLAG_FUIDEFAULT = 512","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FNONBROWSABLE","package":"druntime","parentType":"","signature":"FUNCFLAG_FNONBROWSABLE = 1024","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FREPLACEABLE","package":"druntime","parentType":"","signature":"FUNCFLAG_FREPLACEABLE = 2048","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"FUNCFLAG_FIMMEDIATEBIND","package":"druntime","parentType":"","signature":"FUNCFLAG_FIMMEDIATEBIND = 4096","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FUNCFLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"VARFLAGS","package":"druntime","parentType":"","signature":"VARFLAGS","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FREADONLY","package":"druntime","parentType":"","signature":"VARFLAG_FREADONLY = 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FSOURCE","package":"druntime","parentType":"","signature":"VARFLAG_FSOURCE = 2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FBINDABLE","package":"druntime","parentType":"","signature":"VARFLAG_FBINDABLE = 4","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FREQUESTEDIT","package":"druntime","parentType":"","signature":"VARFLAG_FREQUESTEDIT = 8","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FDISPLAYBIND","package":"druntime","parentType":"","signature":"VARFLAG_FDISPLAYBIND = 16","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FDEFAULTBIND","package":"druntime","parentType":"","signature":"VARFLAG_FDEFAULTBIND = 32","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FHIDDEN","package":"druntime","parentType":"","signature":"VARFLAG_FHIDDEN = 64","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FRESTRICTED","package":"druntime","parentType":"","signature":"VARFLAG_FRESTRICTED = 128","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FDEFAULTCOLLELEM","package":"druntime","parentType":"","signature":"VARFLAG_FDEFAULTCOLLELEM = 256","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FUIDEFAULT","package":"druntime","parentType":"","signature":"VARFLAG_FUIDEFAULT = 512","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FNONBROWSABLE","package":"druntime","parentType":"","signature":"VARFLAG_FNONBROWSABLE = 1024","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FREPLACEABLE","package":"druntime","parentType":"","signature":"VARFLAG_FREPLACEABLE = 2048","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"VARFLAG_FIMMEDIATEBIND","package":"druntime","parentType":"","signature":"VARFLAG_FIMMEDIATEBIND = 4096","url":"/ddoc/druntime/core/sys/windows/oaidl.html#VARFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"CLEANLOCALSTORAGE","package":"druntime","parentType":"","signature":"CLEANLOCALSTORAGE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CLEANLOCALSTORAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"CUSTDATAITEM","package":"druntime","parentType":"","signature":"CUSTDATAITEM","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CUSTDATAITEM"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPCUSTDATAITEM","package":"druntime","parentType":"","signature":"LPCUSTDATAITEM = CUSTDATAITEM *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPCUSTDATAITEM"},{"doc":"","kind":"struct","module":"core.sys.windows.oaidl","name":"CUSTDATA","package":"druntime","parentType":"","signature":"CUSTDATA","url":"/ddoc/druntime/core/sys/windows/oaidl.html#CUSTDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPCUSTDATA","package":"druntime","parentType":"","signature":"LPCUSTDATA = CUSTDATA *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPCUSTDATA"},{"doc":"","kind":"enum","module":"core.sys.windows.oaidl","name":"DESCKIND","package":"druntime","parentType":"","signature":"DESCKIND","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_NONE","package":"druntime","parentType":"","signature":"DESCKIND_NONE = 0","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_FUNCDESC","package":"druntime","parentType":"","signature":"DESCKIND_FUNCDESC = DESCKIND_NONE + 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_VARDESC","package":"druntime","parentType":"","signature":"DESCKIND_VARDESC = DESCKIND_FUNCDESC + 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_TYPECOMP","package":"druntime","parentType":"","signature":"DESCKIND_TYPECOMP = DESCKIND_VARDESC + 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_IMPLICITAPPOBJ","package":"druntime","parentType":"","signature":"DESCKIND_IMPLICITAPPOBJ = DESCKIND_TYPECOMP + 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oaidl","name":"DESCKIND_MAX","package":"druntime","parentType":"","signature":"DESCKIND_MAX = DESCKIND_IMPLICITAPPOBJ + 1","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DESCKIND"},{"doc":"","kind":"union","module":"core.sys.windows.oaidl","name":"BINDPTR","package":"druntime","parentType":"","signature":"BINDPTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#BINDPTR"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPBINDPTR","package":"druntime","parentType":"","signature":"LPBINDPTR = BINDPTR *","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPBINDPTR"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"IDispatch","package":"druntime","parentType":"","signature":"IDispatch : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDispatch"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfoCount","package":"druntime","parentType":"IDispatch","signature":"HRESULT GetTypeInfoCount(UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IDispatch.GetTypeInfoCount.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfo","package":"druntime","parentType":"IDispatch","signature":"HRESULT GetTypeInfo(UINT,  LCID,  LPTYPEINFO *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IDispatch.GetTypeInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetIDsOfNames","package":"druntime","parentType":"IDispatch","signature":"HRESULT GetIDsOfNames(REFIID,  LPOLESTR *,  UINT,  LCID,  DISPID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IDispatch.GetIDsOfNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Invoke","package":"druntime","parentType":"IDispatch","signature":"HRESULT Invoke(DISPID,  REFIID,  LCID,  WORD,  DISPPARAMS *,  VARIANT *,  EXCEPINFO *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IDispatch.Invoke.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPDISPATCH","package":"druntime","parentType":"","signature":"LPDISPATCH = IDispatch","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPDISPATCH"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"IEnumVARIANT","package":"druntime","parentType":"","signature":"IEnumVARIANT : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IEnumVARIANT"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Next","package":"druntime","parentType":"IEnumVARIANT","signature":"HRESULT Next(ULONG,  VARIANT *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IEnumVARIANT.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Skip","package":"druntime","parentType":"IEnumVARIANT","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/oaidl/IEnumVARIANT.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Reset","package":"druntime","parentType":"IEnumVARIANT","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/oaidl/IEnumVARIANT.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Clone","package":"druntime","parentType":"IEnumVARIANT","signature":"HRESULT Clone(IEnumVARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IEnumVARIANT.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPENUMVARIANT","package":"druntime","parentType":"","signature":"LPENUMVARIANT = IEnumVARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPENUMVARIANT"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeComp","package":"druntime","parentType":"","signature":"ITypeComp : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeComp"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Bind","package":"druntime","parentType":"ITypeComp","signature":"HRESULT Bind(LPOLESTR,  ULONG,  WORD,  LPTYPEINFO *,  DESCKIND *,  LPBINDPTR)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeComp.Bind.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"BindType","package":"druntime","parentType":"ITypeComp","signature":"HRESULT BindType(LPOLESTR,  ULONG,  LPTYPEINFO *,  LPTYPECOMP *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeComp.BindType.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPECOMP","package":"druntime","parentType":"","signature":"LPTYPECOMP = ITypeComp","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPECOMP"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeInfo","package":"druntime","parentType":"","signature":"ITypeInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeInfo"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeAttr","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetTypeAttr(LPTYPEATTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetTypeAttr.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeComp","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetTypeComp(LPTYPECOMP *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetTypeComp.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetFuncDesc","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetFuncDesc(UINT,  LPFUNCDESC *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetFuncDesc.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetVarDesc","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetVarDesc(UINT,  LPVARDESC *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetVarDesc.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetNames","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetNames(MEMBERID,  BSTR *,  UINT,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetRefTypeOfImplType","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetRefTypeOfImplType(UINT,  HREFTYPE *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetRefTypeOfImplType.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetImplTypeFlags","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetImplTypeFlags(UINT,  INT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetImplTypeFlags.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetIDsOfNames","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetIDsOfNames(LPOLESTR *,  UINT,  MEMBERID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetIDsOfNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Invoke","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT Invoke(PVOID,  MEMBERID,  WORD,  DISPPARAMS *,  VARIANT *,  EXCEPINFO *,\n       UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.Invoke.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDocumentation","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetDocumentation(MEMBERID,  BSTR *,  BSTR *,  DWORD *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetDocumentation.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDllEntry","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetDllEntry(MEMBERID,  INVOKEKIND,  BSTR *,  BSTR *,  WORD *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetDllEntry.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetRefTypeInfo","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetRefTypeInfo(HREFTYPE,  LPTYPEINFO *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetRefTypeInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"AddressOfMember","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT AddressOfMember(MEMBERID,  INVOKEKIND,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.AddressOfMember.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"CreateInstance","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT CreateInstance(LPUNKNOWN,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.CreateInstance.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetMops","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetMops(MEMBERID,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetMops.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetContainingTypeLib","package":"druntime","parentType":"ITypeInfo","signature":"HRESULT GetContainingTypeLib(LPTYPELIB *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.GetContainingTypeLib.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"ReleaseTypeAttr","package":"druntime","parentType":"ITypeInfo","signature":"void ReleaseTypeAttr(LPTYPEATTR)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.ReleaseTypeAttr.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"ReleaseFuncDesc","package":"druntime","parentType":"ITypeInfo","signature":"void ReleaseFuncDesc(LPFUNCDESC)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.ReleaseFuncDesc.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"ReleaseVarDesc","package":"druntime","parentType":"ITypeInfo","signature":"void ReleaseVarDesc(LPVARDESC)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo.ReleaseVarDesc.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPEINFO","package":"druntime","parentType":"","signature":"LPTYPEINFO = ITypeInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPEINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeInfo2","package":"druntime","parentType":"","signature":"ITypeInfo2 : ITypeInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeInfo2"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeKind","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetTypeKind(TYPEKIND *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetTypeKind.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeFlags","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetTypeFlags(ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetTypeFlags.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetFuncIndexOfMemId","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetFuncIndexOfMemId(MEMBERID,  INVOKEKIND,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetFuncIndexOfMemId.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetVarIndexOfMemId","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetVarIndexOfMemId(MEMBERID,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetVarIndexOfMemId.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetCustData(REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetFuncCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetFuncCustData(UINT,  REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetFuncCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetParamCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetParamCustData(UINT,  UINT,  REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetParamCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetVarCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetVarCustData(UINT,  REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetVarCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetImplTypeCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetImplTypeCustData(UINT,  REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetImplTypeCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDocumentation2","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetDocumentation2(MEMBERID,  LCID,  BSTR *,  DWORD *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetDocumentation2.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetAllCustData(CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetAllCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllFuncCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetAllFuncCustData(UINT,  CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetAllFuncCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllParamCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetAllParamCustData(UINT,  UINT,  CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetAllParamCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllVarCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetAllVarCustData(UINT,  CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetAllVarCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllImplTypeCustData","package":"druntime","parentType":"ITypeInfo2","signature":"HRESULT GetAllImplTypeCustData(UINT,  CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeInfo2.GetAllImplTypeCustData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPEINFO2","package":"druntime","parentType":"","signature":"LPTYPEINFO2 = ITypeInfo2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPEINFO2"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeLib","package":"druntime","parentType":"","signature":"ITypeLib : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeLib"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfoCount","package":"druntime","parentType":"ITypeLib","signature":"UINT GetTypeInfoCount()","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetTypeInfoCount.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfo","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetTypeInfo(UINT,  ITypeInfo *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetTypeInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfoType","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetTypeInfoType(UINT,  TYPEKIND *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetTypeInfoType.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfoOfGuid","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetTypeInfoOfGuid(REFGUID,  ITypeInfo *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetTypeInfoOfGuid.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetLibAttr","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetLibAttr(TLIBATTR * *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetLibAttr.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeComp","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetTypeComp(ITypeComp)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetTypeComp.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDocumentation","package":"druntime","parentType":"ITypeLib","signature":"HRESULT GetDocumentation(INT,  BSTR *,  BSTR *,  DWORD *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.GetDocumentation.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"IsName","package":"druntime","parentType":"ITypeLib","signature":"HRESULT IsName(LPOLESTR,  ULONG,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.IsName.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"FindName","package":"druntime","parentType":"ITypeLib","signature":"HRESULT FindName(LPOLESTR,  ULONG,  ITypeInfo *,  MEMBERID *,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.FindName.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"ReleaseTLibAttr","package":"druntime","parentType":"ITypeLib","signature":"void ReleaseTLibAttr(TLIBATTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib.ReleaseTLibAttr.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPELIB","package":"druntime","parentType":"","signature":"LPTYPELIB = ITypeLib","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPELIB"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeLib2","package":"druntime","parentType":"","signature":"ITypeLib2 : ITypeLib","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeLib2"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetCustData","package":"druntime","parentType":"ITypeLib2","signature":"HRESULT GetCustData(REFGUID,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib2.GetCustData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetLibStatistics","package":"druntime","parentType":"ITypeLib2","signature":"HRESULT GetLibStatistics(ULONG *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib2.GetLibStatistics.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDocumentation2","package":"druntime","parentType":"ITypeLib2","signature":"HRESULT GetDocumentation2(INT,  LCID,  BSTR *,  DWORD *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib2.GetDocumentation2.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetAllCustData","package":"druntime","parentType":"ITypeLib2","signature":"HRESULT GetAllCustData(CUSTDATA *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeLib2.GetAllCustData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPTYPELIB2","package":"druntime","parentType":"","signature":"LPTYPELIB2 = ITypeLib2","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPTYPELIB2"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"IErrorInfo","package":"druntime","parentType":"","signature":"IErrorInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IErrorInfo"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetGUID","package":"druntime","parentType":"IErrorInfo","signature":"HRESULT GetGUID(GUID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IErrorInfo.GetGUID.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetSource","package":"druntime","parentType":"IErrorInfo","signature":"HRESULT GetSource(BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IErrorInfo.GetSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetDescription","package":"druntime","parentType":"IErrorInfo","signature":"HRESULT GetDescription(BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IErrorInfo.GetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetHelpFile","package":"druntime","parentType":"IErrorInfo","signature":"HRESULT GetHelpFile(BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IErrorInfo.GetHelpFile.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetHelpContext","package":"druntime","parentType":"IErrorInfo","signature":"HRESULT GetHelpContext(DWORD *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IErrorInfo.GetHelpContext.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPERRORINFO","package":"druntime","parentType":"","signature":"LPERRORINFO = IErrorInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPERRORINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ICreateErrorInfo","package":"druntime","parentType":"","signature":"ICreateErrorInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ICreateErrorInfo"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"SetGUID","package":"druntime","parentType":"ICreateErrorInfo","signature":"HRESULT SetGUID(REFGUID)","url":"/ddoc/druntime/core/sys/windows/oaidl/ICreateErrorInfo.SetGUID.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"SetSource","package":"druntime","parentType":"ICreateErrorInfo","signature":"HRESULT SetSource(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/oaidl/ICreateErrorInfo.SetSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"SetDescription","package":"druntime","parentType":"ICreateErrorInfo","signature":"HRESULT SetDescription(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/oaidl/ICreateErrorInfo.SetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"SetHelpFile","package":"druntime","parentType":"ICreateErrorInfo","signature":"HRESULT SetHelpFile(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/oaidl/ICreateErrorInfo.SetHelpFile.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"SetHelpContext","package":"druntime","parentType":"ICreateErrorInfo","signature":"HRESULT SetHelpContext(DWORD)","url":"/ddoc/druntime/core/sys/windows/oaidl/ICreateErrorInfo.SetHelpContext.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPCREATEERRORINFO","package":"druntime","parentType":"","signature":"LPCREATEERRORINFO = ICreateErrorInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPCREATEERRORINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ISupportErrorInfo","package":"druntime","parentType":"","signature":"ISupportErrorInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ISupportErrorInfo"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"InterfaceSupportsErrorInfo","package":"druntime","parentType":"ISupportErrorInfo","signature":"HRESULT InterfaceSupportsErrorInfo(REFIID)","url":"/ddoc/druntime/core/sys/windows/oaidl/ISupportErrorInfo.InterfaceSupportsErrorInfo.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPSUPPORTERRORINFO","package":"druntime","parentType":"","signature":"LPSUPPORTERRORINFO = ISupportErrorInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPSUPPORTERRORINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"IRecordInfo","package":"druntime","parentType":"","signature":"IRecordInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IRecordInfo"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordInit","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT RecordInit(PVOID)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordInit.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordClear","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT RecordClear(PVOID)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordClear.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordCopy","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT RecordCopy(PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordCopy.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetGuid","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetGuid(GUID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetGuid.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetName","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetName(BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetName.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetSize","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetSize(ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetTypeInfo","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetTypeInfo(ITypeInfo *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetTypeInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetField","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetField(PVOID,  LPCOLESTR,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetField.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetFieldNoCopy","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetFieldNoCopy(PVOID,  LPCOLESTR,  VARIANT *,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetFieldNoCopy.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"PutField","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT PutField(ULONG,  PVOID,  LPCOLESTR,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.PutField.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"PutFieldNoCopy","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT PutFieldNoCopy(ULONG,  PVOID,  LPCOLESTR,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.PutFieldNoCopy.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"GetFieldNames","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT GetFieldNames(ULONG *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.GetFieldNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"IsMatchingType","package":"druntime","parentType":"IRecordInfo","signature":"BOOL IsMatchingType()","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.IsMatchingType.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordCreate","package":"druntime","parentType":"IRecordInfo","signature":"PVOID RecordCreate()","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordCreate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordCreateCopy","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT RecordCreateCopy(PVOID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordCreateCopy.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"RecordDestroy","package":"druntime","parentType":"IRecordInfo","signature":"HRESULT RecordDestroy(PVOID)","url":"/ddoc/druntime/core/sys/windows/oaidl/IRecordInfo.RecordDestroy.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oaidl","name":"LPRECORDINFO","package":"druntime","parentType":"","signature":"LPRECORDINFO = IRecordInfo","url":"/ddoc/druntime/core/sys/windows/oaidl.html#LPRECORDINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oaidl","name":"ITypeMarshal","package":"druntime","parentType":"","signature":"ITypeMarshal : IUnknown","url":"/ddoc/druntime/core/sys/windows/oaidl.html#ITypeMarshal"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Size","package":"druntime","parentType":"ITypeMarshal","signature":"HRESULT Size(PVOID,  DWORD,  PVOID,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeMarshal.Size.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Marshal","package":"druntime","parentType":"ITypeMarshal","signature":"HRESULT Marshal(PVOID,  DWORD,  PVOID,  ULONG,  BYTE *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeMarshal.Marshal.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Unmarshal","package":"druntime","parentType":"ITypeMarshal","signature":"HRESULT Unmarshal(PVOID,  DWORD,  ULONG,  BYTE *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeMarshal.Unmarshal.html"},{"doc":"","kind":"method","module":"core.sys.windows.oaidl","name":"Free","package":"druntime","parentType":"ITypeMarshal","signature":"HRESULT Free(PVOID)","url":"/ddoc/druntime/core/sys/windows/oaidl/ITypeMarshal.Free.html"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_UNKNOWN","package":"druntime","parentType":"","signature":"DISPID_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_VALUE","package":"druntime","parentType":"","signature":"DISPID_VALUE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_PROPERTYPUT","package":"druntime","parentType":"","signature":"DISPID_PROPERTYPUT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_PROPERTYPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_NEWENUM","package":"druntime","parentType":"","signature":"DISPID_NEWENUM","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_NEWENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_EVALUATE","package":"druntime","parentType":"","signature":"DISPID_EVALUATE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_EVALUATE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_CONSTRUCTOR","package":"druntime","parentType":"","signature":"DISPID_CONSTRUCTOR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_CONSTRUCTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_DESTRUCTOR","package":"druntime","parentType":"","signature":"DISPID_DESTRUCTOR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_DESTRUCTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"DISPID_COLLECT","package":"druntime","parentType":"","signature":"DISPID_COLLECT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#DISPID_COLLECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_AUTO","package":"druntime","parentType":"","signature":"FADF_AUTO","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_AUTO"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_STATIC","package":"druntime","parentType":"","signature":"FADF_STATIC","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_EMBEDDED","package":"druntime","parentType":"","signature":"FADF_EMBEDDED","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_EMBEDDED"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_FIXEDSIZE","package":"druntime","parentType":"","signature":"FADF_FIXEDSIZE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_FIXEDSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_RECORD","package":"druntime","parentType":"","signature":"FADF_RECORD","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_RECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_HAVEIID","package":"druntime","parentType":"","signature":"FADF_HAVEIID","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_HAVEIID"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_HAVEVARTYPE","package":"druntime","parentType":"","signature":"FADF_HAVEVARTYPE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_HAVEVARTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_BSTR","package":"druntime","parentType":"","signature":"FADF_BSTR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_BSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_UNKNOWN","package":"druntime","parentType":"","signature":"FADF_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_DISPATCH","package":"druntime","parentType":"","signature":"FADF_DISPATCH","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_DISPATCH"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_VARIANT","package":"druntime","parentType":"","signature":"FADF_VARIANT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_VARIANT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_RESERVED","package":"druntime","parentType":"","signature":"FADF_RESERVED","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_DATADELETED","package":"druntime","parentType":"","signature":"FADF_DATADELETED","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_DATADELETED"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"FADF_CREATEVECTOR","package":"druntime","parentType":"","signature":"FADF_CREATEVECTOR","url":"/ddoc/druntime/core/sys/windows/oaidl.html#FADF_CREATEVECTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_NONE","package":"druntime","parentType":"","signature":"PARAMFLAG_NONE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FIN","package":"druntime","parentType":"","signature":"PARAMFLAG_FIN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FIN"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FOUT","package":"druntime","parentType":"","signature":"PARAMFLAG_FOUT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FLCID","package":"druntime","parentType":"","signature":"PARAMFLAG_FLCID","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FLCID"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FRETVAL","package":"druntime","parentType":"","signature":"PARAMFLAG_FRETVAL","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FRETVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FOPT","package":"druntime","parentType":"","signature":"PARAMFLAG_FOPT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FOPT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FHASDEFAULT","package":"druntime","parentType":"","signature":"PARAMFLAG_FHASDEFAULT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FHASDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"PARAMFLAG_FHASCUSTDATA","package":"druntime","parentType":"","signature":"PARAMFLAG_FHASCUSTDATA","url":"/ddoc/druntime/core/sys/windows/oaidl.html#PARAMFLAG_FHASCUSTDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IDLFLAG_NONE","package":"druntime","parentType":"","signature":"IDLFLAG_NONE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLFLAG_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IDLFLAG_FIN","package":"druntime","parentType":"","signature":"IDLFLAG_FIN","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLFLAG_FIN"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IDLFLAG_FOUT","package":"druntime","parentType":"","signature":"IDLFLAG_FOUT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLFLAG_FOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IDLFLAG_FLCID","package":"druntime","parentType":"","signature":"IDLFLAG_FLCID","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLFLAG_FLCID"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IDLFLAG_FRETVAL","package":"druntime","parentType":"","signature":"IDLFLAG_FRETVAL","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IDLFLAG_FRETVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IMPLTYPEFLAG_FDEFAULT","package":"druntime","parentType":"","signature":"IMPLTYPEFLAG_FDEFAULT","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IMPLTYPEFLAG_FDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IMPLTYPEFLAG_FSOURCE","package":"druntime","parentType":"","signature":"IMPLTYPEFLAG_FSOURCE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IMPLTYPEFLAG_FSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IMPLTYPEFLAG_FRESTRICTED","package":"druntime","parentType":"","signature":"IMPLTYPEFLAG_FRESTRICTED","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IMPLTYPEFLAG_FRESTRICTED"},{"doc":"","kind":"variable","module":"core.sys.windows.oaidl","name":"IMPLTYPEFLAG_FDEFAULTVTABLE","package":"druntime","parentType":"","signature":"IMPLTYPEFLAG_FDEFAULTVTABLE","url":"/ddoc/druntime/core/sys/windows/oaidl.html#IMPLTYPEFLAG_FDEFAULTVTABLE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.objbase","name":"core.sys.windows.objbase","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/objbase.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"IsEqualGUID","package":"druntime","parentType":"","signature":"BOOL IsEqualGUID(\n   REFGUID rguid1,\n   REFGUID rguid2\n)","url":"/ddoc/druntime/core/sys/windows/objbase/IsEqualGUID.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoBuildVersion","package":"druntime","parentType":"","signature":"DWORD CoBuildVersion()","url":"/ddoc/druntime/core/sys/windows/objbase/CoBuildVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoInitialize","package":"druntime","parentType":"","signature":"HRESULT CoInitialize(PVOID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoInitializeEx","package":"druntime","parentType":"","signature":"HRESULT CoInitializeEx(LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoInitializeEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoUninitialize","package":"druntime","parentType":"","signature":"void CoUninitialize()","url":"/ddoc/druntime/core/sys/windows/objbase/CoUninitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetMalloc","package":"druntime","parentType":"","signature":"HRESULT CoGetMalloc(DWORD,  LPMALLOC *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetMalloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetCurrentProcess","package":"druntime","parentType":"","signature":"DWORD CoGetCurrentProcess()","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetCurrentProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRegisterMallocSpy","package":"druntime","parentType":"","signature":"HRESULT CoRegisterMallocSpy(LPMALLOCSPY)","url":"/ddoc/druntime/core/sys/windows/objbase/CoRegisterMallocSpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRevokeMallocSpy","package":"druntime","parentType":"","signature":"HRESULT CoRevokeMallocSpy()","url":"/ddoc/druntime/core/sys/windows/objbase/CoRevokeMallocSpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCreateStandardMalloc","package":"druntime","parentType":"","signature":"HRESULT CoCreateStandardMalloc(DWORD,  IMalloc *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCreateStandardMalloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"DebugCoGetRpcFault","package":"druntime","parentType":"","signature":"ULONG DebugCoGetRpcFault()","url":"/ddoc/druntime/core/sys/windows/objbase/DebugCoGetRpcFault.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"DebugCoSetRpcFault","package":"druntime","parentType":"","signature":"void DebugCoSetRpcFault(ULONG)","url":"/ddoc/druntime/core/sys/windows/objbase/DebugCoSetRpcFault.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetClassObject","package":"druntime","parentType":"","signature":"HRESULT CoGetClassObject(REFCLSID,  DWORD,  COSERVERINFO *,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetClassObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRegisterClassObject","package":"druntime","parentType":"","signature":"HRESULT CoRegisterClassObject(REFCLSID,  LPUNKNOWN,  DWORD,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoRegisterClassObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRevokeClassObject","package":"druntime","parentType":"","signature":"HRESULT CoRevokeClassObject(DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoRevokeClassObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetMarshalSizeMax","package":"druntime","parentType":"","signature":"HRESULT CoGetMarshalSizeMax(ULONG *,  REFIID,  LPUNKNOWN,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetMarshalSizeMax.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoMarshalInterface","package":"druntime","parentType":"","signature":"HRESULT CoMarshalInterface(LPSTREAM,  REFIID,  LPUNKNOWN,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoMarshalInterface.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoUnmarshalInterface","package":"druntime","parentType":"","signature":"HRESULT CoUnmarshalInterface(LPSTREAM,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoUnmarshalInterface.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoMarshalHresult","package":"druntime","parentType":"","signature":"HRESULT CoMarshalHresult(LPSTREAM,  HRESULT)","url":"/ddoc/druntime/core/sys/windows/objbase/CoMarshalHresult.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoUnmarshalHresult","package":"druntime","parentType":"","signature":"HRESULT CoUnmarshalHresult(LPSTREAM,  HRESULT *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoUnmarshalHresult.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoReleaseMarshalData","package":"druntime","parentType":"","signature":"HRESULT CoReleaseMarshalData(LPSTREAM)","url":"/ddoc/druntime/core/sys/windows/objbase/CoReleaseMarshalData.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoDisconnectObject","package":"druntime","parentType":"","signature":"HRESULT CoDisconnectObject(LPUNKNOWN,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoDisconnectObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoLockObjectExternal","package":"druntime","parentType":"","signature":"HRESULT CoLockObjectExternal(LPUNKNOWN,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objbase/CoLockObjectExternal.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetStandardMarshal","package":"druntime","parentType":"","signature":"HRESULT CoGetStandardMarshal(REFIID,  LPUNKNOWN,  DWORD,  PVOID,  DWORD,  LPMARSHAL *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetStandardMarshal.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetStdMarshalEx","package":"druntime","parentType":"","signature":"HRESULT CoGetStdMarshalEx(LPUNKNOWN,  DWORD,  LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetStdMarshalEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoIsHandlerConnected","package":"druntime","parentType":"","signature":"BOOL CoIsHandlerConnected(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/objbase/CoIsHandlerConnected.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoHasStrongExternalConnections","package":"druntime","parentType":"","signature":"BOOL CoHasStrongExternalConnections(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/objbase/CoHasStrongExternalConnections.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoMarshalInterThreadInterfaceInStream","package":"druntime","parentType":"","signature":"HRESULT CoMarshalInterThreadInterfaceInStream(REFIID,  LPUNKNOWN,  LPSTREAM *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoMarshalInterThreadInterfaceInStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetInterfaceAndReleaseStream","package":"druntime","parentType":"","signature":"HRESULT CoGetInterfaceAndReleaseStream(LPSTREAM,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetInterfaceAndReleaseStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCreateFreeThreadedMarshaler","package":"druntime","parentType":"","signature":"HRESULT CoCreateFreeThreadedMarshaler(LPUNKNOWN,  LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCreateFreeThreadedMarshaler.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoLoadLibrary","package":"druntime","parentType":"","signature":"HINSTANCE CoLoadLibrary(LPOLESTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objbase/CoLoadLibrary.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoFreeLibrary","package":"druntime","parentType":"","signature":"void CoFreeLibrary(HINSTANCE)","url":"/ddoc/druntime/core/sys/windows/objbase/CoFreeLibrary.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoFreeAllLibraries","package":"druntime","parentType":"","signature":"void CoFreeAllLibraries()","url":"/ddoc/druntime/core/sys/windows/objbase/CoFreeAllLibraries.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoFreeUnusedLibraries","package":"druntime","parentType":"","signature":"void CoFreeUnusedLibraries()","url":"/ddoc/druntime/core/sys/windows/objbase/CoFreeUnusedLibraries.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCreateInstance","package":"druntime","parentType":"","signature":"HRESULT CoCreateInstance(REFCLSID,  LPUNKNOWN,  DWORD,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCreateInstance.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCreateInstanceEx","package":"druntime","parentType":"","signature":"HRESULT CoCreateInstanceEx(REFCLSID,  IUnknown,  DWORD,  COSERVERINFO *,  DWORD,  MULTI_QI *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCreateInstanceEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StringFromCLSID","package":"druntime","parentType":"","signature":"HRESULT StringFromCLSID(REFCLSID,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/objbase/StringFromCLSID.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CLSIDFromString","package":"druntime","parentType":"","signature":"HRESULT CLSIDFromString(LPOLESTR,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CLSIDFromString.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StringFromIID","package":"druntime","parentType":"","signature":"HRESULT StringFromIID(REFIID,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/objbase/StringFromIID.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"IIDFromString","package":"druntime","parentType":"","signature":"HRESULT IIDFromString(LPOLESTR,  LPIID)","url":"/ddoc/druntime/core/sys/windows/objbase/IIDFromString.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoIsOle1Class","package":"druntime","parentType":"","signature":"BOOL CoIsOle1Class(REFCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoIsOle1Class.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"ProgIDFromCLSID","package":"druntime","parentType":"","signature":"HRESULT ProgIDFromCLSID(REFCLSID,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/objbase/ProgIDFromCLSID.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CLSIDFromProgID","package":"druntime","parentType":"","signature":"HRESULT CLSIDFromProgID(LPCOLESTR,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CLSIDFromProgID.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StringFromGUID2","package":"druntime","parentType":"","signature":"int StringFromGUID2(REFGUID,  LPOLESTR,  int)","url":"/ddoc/druntime/core/sys/windows/objbase/StringFromGUID2.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCreateGuid","package":"druntime","parentType":"","signature":"HRESULT CoCreateGuid(GUID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCreateGuid.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoFileTimeToDosDateTime","package":"druntime","parentType":"","signature":"BOOL CoFileTimeToDosDateTime(FILETIME *,  LPWORD,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoFileTimeToDosDateTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoDosDateTimeToFileTime","package":"druntime","parentType":"","signature":"BOOL CoDosDateTimeToFileTime(WORD,  WORD,  FILETIME *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoDosDateTimeToFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoFileTimeNow","package":"druntime","parentType":"","signature":"HRESULT CoFileTimeNow(FILETIME *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoFileTimeNow.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRegisterMessageFilter","package":"druntime","parentType":"","signature":"HRESULT CoRegisterMessageFilter(LPMESSAGEFILTER,  LPMESSAGEFILTER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoRegisterMessageFilter.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetTreatAsClass","package":"druntime","parentType":"","signature":"HRESULT CoGetTreatAsClass(REFCLSID,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetTreatAsClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoTreatAsClass","package":"druntime","parentType":"","signature":"HRESULT CoTreatAsClass(REFCLSID,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoTreatAsClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"DllGetClassObject","package":"druntime","parentType":"","signature":"HRESULT DllGetClassObject(REFCLSID,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/DllGetClassObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"DllCanUnloadNow","package":"druntime","parentType":"","signature":"HRESULT DllCanUnloadNow()","url":"/ddoc/druntime/core/sys/windows/objbase/DllCanUnloadNow.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoTaskMemAlloc","package":"druntime","parentType":"","signature":"PVOID CoTaskMemAlloc(SIZE_T)","url":"/ddoc/druntime/core/sys/windows/objbase/CoTaskMemAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoTaskMemRealloc","package":"druntime","parentType":"","signature":"PVOID CoTaskMemRealloc(PVOID,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/objbase/CoTaskMemRealloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoTaskMemFree","package":"druntime","parentType":"","signature":"void CoTaskMemFree(PVOID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoTaskMemFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateDataAdviseHolder","package":"druntime","parentType":"","signature":"HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateDataAdviseHolder.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateDataCache","package":"druntime","parentType":"","signature":"HRESULT CreateDataCache(LPUNKNOWN,  REFCLSID,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateDataCache.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgCreateDocfile","package":"druntime","parentType":"","signature":"HRESULT StgCreateDocfile(const(OLECHAR) *,  DWORD,  DWORD,  IStorage *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgCreateDocfile.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgCreateDocfileOnILockBytes","package":"druntime","parentType":"","signature":"HRESULT StgCreateDocfileOnILockBytes(ILockBytes,  DWORD,  DWORD,  IStorage *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgCreateDocfileOnILockBytes.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgOpenStorage","package":"druntime","parentType":"","signature":"HRESULT StgOpenStorage(const(OLECHAR) *,  IStorage,  DWORD,  SNB,  DWORD,  IStorage *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgOpenStorage.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgOpenStorageOnILockBytes","package":"druntime","parentType":"","signature":"HRESULT StgOpenStorageOnILockBytes(ILockBytes,  IStorage,  DWORD,  SNB,  DWORD,  IStorage *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgOpenStorageOnILockBytes.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgIsStorageFile","package":"druntime","parentType":"","signature":"HRESULT StgIsStorageFile(const(OLECHAR) *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgIsStorageFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgIsStorageILockBytes","package":"druntime","parentType":"","signature":"HRESULT StgIsStorageILockBytes(ILockBytes)","url":"/ddoc/druntime/core/sys/windows/objbase/StgIsStorageILockBytes.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgSetTimes","package":"druntime","parentType":"","signature":"HRESULT StgSetTimes(OLECHAR *,  FILETIME *,  FILETIME *,  FILETIME *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgSetTimes.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgCreateStorageEx","package":"druntime","parentType":"","signature":"HRESULT StgCreateStorageEx(const(WCHAR) *,  DWORD,  DWORD,  DWORD,  STGOPTIONS *,  void *,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgCreateStorageEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"StgOpenStorageEx","package":"druntime","parentType":"","signature":"HRESULT StgOpenStorageEx(const(WCHAR) *,  DWORD,  DWORD,  DWORD,  STGOPTIONS *,  void *,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objbase/StgOpenStorageEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"BindMoniker","package":"druntime","parentType":"","signature":"HRESULT BindMoniker(LPMONIKER,  DWORD,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase/BindMoniker.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetObject","package":"druntime","parentType":"","signature":"HRESULT CoGetObject(LPCWSTR,  BIND_OPTS *,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"MkParseDisplayName","package":"druntime","parentType":"","signature":"HRESULT MkParseDisplayName(LPBC,  LPCOLESTR,  ULONG *,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/MkParseDisplayName.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"MonikerRelativePathTo","package":"druntime","parentType":"","signature":"HRESULT MonikerRelativePathTo(LPMONIKER,  LPMONIKER,  LPMONIKER *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objbase/MonikerRelativePathTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"MonikerCommonPrefixWith","package":"druntime","parentType":"","signature":"HRESULT MonikerCommonPrefixWith(LPMONIKER,  LPMONIKER,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/MonikerCommonPrefixWith.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateBindCtx","package":"druntime","parentType":"","signature":"HRESULT CreateBindCtx(DWORD,  LPBC *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateBindCtx.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateGenericComposite","package":"druntime","parentType":"","signature":"HRESULT CreateGenericComposite(LPMONIKER,  LPMONIKER,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateGenericComposite.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"GetClassFile","package":"druntime","parentType":"","signature":"HRESULT GetClassFile(LPCOLESTR,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/objbase/GetClassFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateFileMoniker","package":"druntime","parentType":"","signature":"HRESULT CreateFileMoniker(LPCOLESTR,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateFileMoniker.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateItemMoniker","package":"druntime","parentType":"","signature":"HRESULT CreateItemMoniker(LPCOLESTR,  LPCOLESTR,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateItemMoniker.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreateAntiMoniker","package":"druntime","parentType":"","signature":"HRESULT CreateAntiMoniker(LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreateAntiMoniker.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CreatePointerMoniker","package":"druntime","parentType":"","signature":"HRESULT CreatePointerMoniker(LPUNKNOWN,  LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/objbase/CreatePointerMoniker.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"GetRunningObjectTable","package":"druntime","parentType":"","signature":"HRESULT GetRunningObjectTable(DWORD,  LPRUNNINGOBJECTTABLE *)","url":"/ddoc/druntime/core/sys/windows/objbase/GetRunningObjectTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoInitializeSecurity","package":"druntime","parentType":"","signature":"HRESULT CoInitializeSecurity(PSECURITY_DESCRIPTOR,  LONG,  SOLE_AUTHENTICATION_SERVICE *,  void *,  DWORD,  DWORD,  void *,  DWORD,  void *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoInitializeSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetCallContext","package":"druntime","parentType":"","signature":"HRESULT CoGetCallContext(REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetCallContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoQueryProxyBlanket","package":"druntime","parentType":"","signature":"HRESULT CoQueryProxyBlanket(IUnknown *,  DWORD *,  DWORD *,  OLECHAR * *,  DWORD *,  DWORD *,  RPC_AUTH_IDENTITY_HANDLE *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoQueryProxyBlanket.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoSetProxyBlanket","package":"druntime","parentType":"","signature":"HRESULT CoSetProxyBlanket(IUnknown *,  DWORD,  DWORD,  OLECHAR *,  DWORD,  DWORD,  RPC_AUTH_IDENTITY_HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objbase/CoSetProxyBlanket.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoCopyProxy","package":"druntime","parentType":"","signature":"HRESULT CoCopyProxy(IUnknown *,  IUnknown * *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoCopyProxy.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoQueryClientBlanket","package":"druntime","parentType":"","signature":"HRESULT CoQueryClientBlanket(DWORD *,  DWORD *,  OLECHAR * *,  DWORD *,  DWORD *,  RPC_AUTHZ_HANDLE *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoQueryClientBlanket.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoImpersonateClient","package":"druntime","parentType":"","signature":"HRESULT CoImpersonateClient()","url":"/ddoc/druntime/core/sys/windows/objbase/CoImpersonateClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRevertToSelf","package":"druntime","parentType":"","signature":"HRESULT CoRevertToSelf()","url":"/ddoc/druntime/core/sys/windows/objbase/CoRevertToSelf.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoQueryAuthenticationServices","package":"druntime","parentType":"","signature":"HRESULT CoQueryAuthenticationServices(DWORD *,  SOLE_AUTHENTICATION_SERVICE * *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoQueryAuthenticationServices.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoSwitchCallContext","package":"druntime","parentType":"","signature":"HRESULT CoSwitchCallContext(IUnknown *,  IUnknown * *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoSwitchCallContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetInstanceFromFile","package":"druntime","parentType":"","signature":"HRESULT CoGetInstanceFromFile(COSERVERINFO *,  CLSID *,  IUnknown *,  DWORD,  DWORD,  OLECHAR *,  DWORD,  MULTI_QI *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetInstanceFromFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetInstanceFromIStorage","package":"druntime","parentType":"","signature":"HRESULT CoGetInstanceFromIStorage(COSERVERINFO *,  CLSID *,  IUnknown *,  DWORD,  IStorage *,  DWORD,  MULTI_QI *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetInstanceFromIStorage.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoAddRefServerProcess","package":"druntime","parentType":"","signature":"ULONG CoAddRefServerProcess()","url":"/ddoc/druntime/core/sys/windows/objbase/CoAddRefServerProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoReleaseServerProcess","package":"druntime","parentType":"","signature":"ULONG CoReleaseServerProcess()","url":"/ddoc/druntime/core/sys/windows/objbase/CoReleaseServerProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoResumeClassObjects","package":"druntime","parentType":"","signature":"HRESULT CoResumeClassObjects()","url":"/ddoc/druntime/core/sys/windows/objbase/CoResumeClassObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoSuspendClassObjects","package":"druntime","parentType":"","signature":"HRESULT CoSuspendClassObjects()","url":"/ddoc/druntime/core/sys/windows/objbase/CoSuspendClassObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoGetPSClsid","package":"druntime","parentType":"","signature":"HRESULT CoGetPSClsid(REFIID,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/objbase/CoGetPSClsid.html"},{"doc":"","kind":"function","module":"core.sys.windows.objbase","name":"CoRegisterPSClsid","package":"druntime","parentType":"","signature":"HRESULT CoRegisterPSClsid(REFIID,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/objbase/CoRegisterPSClsid.html"},{"doc":"","kind":"enum","module":"core.sys.windows.objbase","name":"STGFMT","package":"druntime","parentType":"","signature":"STGFMT","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGFMT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"STGFMT_STORAGE","package":"druntime","parentType":"","signature":"STGFMT_STORAGE = 0","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGFMT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"STGFMT_FILE","package":"druntime","parentType":"","signature":"STGFMT_FILE = 3","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGFMT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"STGFMT_ANY","package":"druntime","parentType":"","signature":"STGFMT_ANY = 4","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGFMT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"STGFMT_DOCFILE","package":"druntime","parentType":"","signature":"STGFMT_DOCFILE = 5","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGFMT"},{"doc":"","kind":"struct","module":"core.sys.windows.objbase","name":"STGOPTIONS","package":"druntime","parentType":"","signature":"STGOPTIONS","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGOPTIONS"},{"doc":"","kind":"enum","module":"core.sys.windows.objbase","name":"REGCLS","package":"druntime","parentType":"","signature":"REGCLS","url":"/ddoc/druntime/core/sys/windows/objbase.html#REGCLS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"REGCLS_SINGLEUSE","package":"druntime","parentType":"","signature":"REGCLS_SINGLEUSE = 0","url":"/ddoc/druntime/core/sys/windows/objbase.html#REGCLS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"REGCLS_MULTIPLEUSE","package":"druntime","parentType":"","signature":"REGCLS_MULTIPLEUSE = 1","url":"/ddoc/druntime/core/sys/windows/objbase.html#REGCLS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"REGCLS_MULTI_SEPARATE","package":"druntime","parentType":"","signature":"REGCLS_MULTI_SEPARATE = 2","url":"/ddoc/druntime/core/sys/windows/objbase.html#REGCLS"},{"doc":"","kind":"alias","module":"core.sys.windows.objbase","name":"IsEqualIID","package":"druntime","parentType":"","signature":"IsEqualIID = IsEqualGUID","url":"/ddoc/druntime/core/sys/windows/objbase.html#IsEqualIID"},{"doc":"","kind":"alias","module":"core.sys.windows.objbase","name":"IsEqualCLSID","package":"druntime","parentType":"","signature":"IsEqualCLSID = IsEqualGUID","url":"/ddoc/druntime/core/sys/windows/objbase.html#IsEqualCLSID"},{"doc":"","kind":"enum","module":"core.sys.windows.objbase","name":"COINIT","package":"druntime","parentType":"","signature":"COINIT","url":"/ddoc/druntime/core/sys/windows/objbase.html#COINIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"COINIT_APARTMENTTHREADED","package":"druntime","parentType":"","signature":"COINIT_APARTMENTTHREADED = 2","url":"/ddoc/druntime/core/sys/windows/objbase.html#COINIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"COINIT_MULTITHREADED","package":"druntime","parentType":"","signature":"COINIT_MULTITHREADED = 0","url":"/ddoc/druntime/core/sys/windows/objbase.html#COINIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"COINIT_DISABLE_OLE1DDE","package":"druntime","parentType":"","signature":"COINIT_DISABLE_OLE1DDE = 4","url":"/ddoc/druntime/core/sys/windows/objbase.html#COINIT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"COINIT_SPEED_OVER_MEMORY","package":"druntime","parentType":"","signature":"COINIT_SPEED_OVER_MEMORY = 8","url":"/ddoc/druntime/core/sys/windows/objbase.html#COINIT"},{"doc":"","kind":"enum","module":"core.sys.windows.objbase","name":"STDMSHLFLAGS","package":"druntime","parentType":"","signature":"STDMSHLFLAGS","url":"/ddoc/druntime/core/sys/windows/objbase.html#STDMSHLFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"SMEXF_SERVER","package":"druntime","parentType":"","signature":"SMEXF_SERVER = 1","url":"/ddoc/druntime/core/sys/windows/objbase.html#STDMSHLFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objbase","name":"SMEXF_HANDLER","package":"druntime","parentType":"","signature":"SMEXF_HANDLER = ","url":"/ddoc/druntime/core/sys/windows/objbase.html#STDMSHLFLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.objbase","name":"LPFNGETCLASSOBJECT","package":"druntime","parentType":"","signature":"LPFNGETCLASSOBJECT = HRESULT function(REFCLSID,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objbase.html#LPFNGETCLASSOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.objbase","name":"LPFNCANUNLOADNOW","package":"druntime","parentType":"","signature":"LPFNCANUNLOADNOW = HRESULT function()","url":"/ddoc/druntime/core/sys/windows/objbase.html#LPFNCANUNLOADNOW"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"CLSCTX_ALL","package":"druntime","parentType":"","signature":"CLSCTX_ALL","url":"/ddoc/druntime/core/sys/windows/objbase.html#CLSCTX_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"CLSCTX_INPROC","package":"druntime","parentType":"","signature":"CLSCTX_INPROC","url":"/ddoc/druntime/core/sys/windows/objbase.html#CLSCTX_INPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"CLSCTX_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_SERVER","url":"/ddoc/druntime/core/sys/windows/objbase.html#CLSCTX_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"MARSHALINTERFACE_MIN","package":"druntime","parentType":"","signature":"MARSHALINTERFACE_MIN","url":"/ddoc/druntime/core/sys/windows/objbase.html#MARSHALINTERFACE_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"CWCSTORAGENAME","package":"druntime","parentType":"","signature":"CWCSTORAGENAME","url":"/ddoc/druntime/core/sys/windows/objbase.html#CWCSTORAGENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_DIRECT","package":"druntime","parentType":"","signature":"STGM_DIRECT","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_DIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_TRANSACTED","package":"druntime","parentType":"","signature":"STGM_TRANSACTED","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_TRANSACTED"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_SIMPLE","package":"druntime","parentType":"","signature":"STGM_SIMPLE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_SIMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_READ","package":"druntime","parentType":"","signature":"STGM_READ","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_WRITE","package":"druntime","parentType":"","signature":"STGM_WRITE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_READWRITE","package":"druntime","parentType":"","signature":"STGM_READWRITE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_READWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_SHARE_DENY_NONE","package":"druntime","parentType":"","signature":"STGM_SHARE_DENY_NONE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_SHARE_DENY_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_SHARE_DENY_READ","package":"druntime","parentType":"","signature":"STGM_SHARE_DENY_READ","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_SHARE_DENY_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_SHARE_DENY_WRITE","package":"druntime","parentType":"","signature":"STGM_SHARE_DENY_WRITE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_SHARE_DENY_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_SHARE_EXCLUSIVE","package":"druntime","parentType":"","signature":"STGM_SHARE_EXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_SHARE_EXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_PRIORITY","package":"druntime","parentType":"","signature":"STGM_PRIORITY","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_DELETEONRELEASE","package":"druntime","parentType":"","signature":"STGM_DELETEONRELEASE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_DELETEONRELEASE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_NOSCRATCH","package":"druntime","parentType":"","signature":"STGM_NOSCRATCH","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_NOSCRATCH"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_CREATE","package":"druntime","parentType":"","signature":"STGM_CREATE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_CONVERT","package":"druntime","parentType":"","signature":"STGM_CONVERT","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_NOSNAPSHOT","package":"druntime","parentType":"","signature":"STGM_NOSNAPSHOT","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_NOSNAPSHOT"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGM_FAILIFTHERE","package":"druntime","parentType":"","signature":"STGM_FAILIFTHERE","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGM_FAILIFTHERE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"ASYNC_MODE_COMPATIBILITY","package":"druntime","parentType":"","signature":"ASYNC_MODE_COMPATIBILITY","url":"/ddoc/druntime/core/sys/windows/objbase.html#ASYNC_MODE_COMPATIBILITY"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"ASYNC_MODE_DEFAULT","package":"druntime","parentType":"","signature":"ASYNC_MODE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/objbase.html#ASYNC_MODE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGTY_REPEAT","package":"druntime","parentType":"","signature":"STGTY_REPEAT","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGTY_REPEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STG_TOEND","package":"druntime","parentType":"","signature":"STG_TOEND","url":"/ddoc/druntime/core/sys/windows/objbase.html#STG_TOEND"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STG_LAYOUT_SEQUENTIAL","package":"druntime","parentType":"","signature":"STG_LAYOUT_SEQUENTIAL","url":"/ddoc/druntime/core/sys/windows/objbase.html#STG_LAYOUT_SEQUENTIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STG_LAYOUT_INTERLEAVED","package":"druntime","parentType":"","signature":"STG_LAYOUT_INTERLEAVED","url":"/ddoc/druntime/core/sys/windows/objbase.html#STG_LAYOUT_INTERLEAVED"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"COM_RIGHTS_EXECUTE","package":"druntime","parentType":"","signature":"COM_RIGHTS_EXECUTE","url":"/ddoc/druntime/core/sys/windows/objbase.html#COM_RIGHTS_EXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"COM_RIGHTS_SAFE_FOR_SCRIPTING","package":"druntime","parentType":"","signature":"COM_RIGHTS_SAFE_FOR_SCRIPTING","url":"/ddoc/druntime/core/sys/windows/objbase.html#COM_RIGHTS_SAFE_FOR_SCRIPTING"},{"doc":"","kind":"variable","module":"core.sys.windows.objbase","name":"STGOPTIONS_VERSION","package":"druntime","parentType":"","signature":"STGOPTIONS_VERSION","url":"/ddoc/druntime/core/sys/windows/objbase.html#STGOPTIONS_VERSION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.objfwd","name":"core.sys.windows.objfwd","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/objfwd.html"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPMONIKER","package":"druntime","parentType":"","signature":"LPMONIKER = IMoniker","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPMONIKER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPSTREAM","package":"druntime","parentType":"","signature":"LPSTREAM = IStream","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPSTREAM"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPMARSHAL","package":"druntime","parentType":"","signature":"LPMARSHAL = IMarshal","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPMARSHAL"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPMALLOC","package":"druntime","parentType":"","signature":"LPMALLOC = IMalloc","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPMALLOC"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPMALLOCSPY","package":"druntime","parentType":"","signature":"LPMALLOCSPY = IMallocSpy","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPMALLOCSPY"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPMESSAGEFILTER","package":"druntime","parentType":"","signature":"LPMESSAGEFILTER = IMessageFilter","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPMESSAGEFILTER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPERSIST","package":"druntime","parentType":"","signature":"LPPERSIST = IPersist","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPERSIST"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPERSISTSTREAM","package":"druntime","parentType":"","signature":"LPPERSISTSTREAM = IPersistStream","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPERSISTSTREAM"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPRUNNINGOBJECTTABLE","package":"druntime","parentType":"","signature":"LPRUNNINGOBJECTTABLE = IRunningObjectTable","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPRUNNINGOBJECTTABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPBINDCTX","package":"druntime","parentType":"","signature":"LPBINDCTX = IBindCtx","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPBINDCTX"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPADVISESINK","package":"druntime","parentType":"","signature":"LPADVISESINK = IAdviseSink","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPADVISESINK"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPADVISESINK2","package":"druntime","parentType":"","signature":"LPADVISESINK2 = IAdviseSink2","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPADVISESINK2"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPDATAOBJECT","package":"druntime","parentType":"","signature":"LPDATAOBJECT = IDataObject","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPDATAOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPDATAADVISEHOLDER","package":"druntime","parentType":"","signature":"LPDATAADVISEHOLDER = IDataAdviseHolder","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPDATAADVISEHOLDER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMMONIKER","package":"druntime","parentType":"","signature":"LPENUMMONIKER = IEnumMoniker","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMMONIKER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMFORMATETC","package":"druntime","parentType":"","signature":"LPENUMFORMATETC = IEnumFORMATETC","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMFORMATETC"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMSTATDATA","package":"druntime","parentType":"","signature":"LPENUMSTATDATA = IEnumSTATDATA","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMSTATDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMSTATSTG","package":"druntime","parentType":"","signature":"LPENUMSTATSTG = IEnumSTATSTG","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMSTATSTG"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMSTATPROPSTG","package":"druntime","parentType":"","signature":"LPENUMSTATPROPSTG = IEnumSTATPROPSTG","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMSTATPROPSTG"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMSTRING","package":"druntime","parentType":"","signature":"LPENUMSTRING = IEnumString","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMSTRING"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMUNKNOWN","package":"druntime","parentType":"","signature":"LPENUMUNKNOWN = IEnumUnknown","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMUNKNOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPSTORAGE","package":"druntime","parentType":"","signature":"LPSTORAGE = IStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPSTORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPERSISTSTORAGE","package":"druntime","parentType":"","signature":"LPPERSISTSTORAGE = IPersistStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPERSISTSTORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPLOCKBYTES","package":"druntime","parentType":"","signature":"LPLOCKBYTES = ILockBytes","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPLOCKBYTES"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPSTDMARSHALINFO","package":"druntime","parentType":"","signature":"LPSTDMARSHALINFO = IStdMarshalInfo","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPSTDMARSHALINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPEXTERNALCONNECTION","package":"druntime","parentType":"","signature":"LPEXTERNALCONNECTION = IExternalConnection","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPEXTERNALCONNECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPRUNNABLEOBJECT","package":"druntime","parentType":"","signature":"LPRUNNABLEOBJECT = IRunnableObject","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPRUNNABLEOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPROTDATA","package":"druntime","parentType":"","signature":"LPROTDATA = IROTData","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPROTDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPERSISTFILE","package":"druntime","parentType":"","signature":"LPPERSISTFILE = IPersistFile","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPERSISTFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPROOTSTORAGE","package":"druntime","parentType":"","signature":"LPROOTSTORAGE = IRootStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPROOTSTORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPRPCCHANNELBUFFER","package":"druntime","parentType":"","signature":"LPRPCCHANNELBUFFER = IRpcChannelBuffer","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPRPCCHANNELBUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPRPCPROXYBUFFER","package":"druntime","parentType":"","signature":"LPRPCPROXYBUFFER = IRpcProxyBuffer","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPRPCPROXYBUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPRPCSTUBBUFFER","package":"druntime","parentType":"","signature":"LPRPCSTUBBUFFER = IRpcStubBuffer","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPRPCSTUBBUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPROPERTYSTORAGE","package":"druntime","parentType":"","signature":"LPPROPERTYSTORAGE = IPropertyStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPROPERTYSTORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPENUMSTATPROPSETSTG","package":"druntime","parentType":"","signature":"LPENUMSTATPROPSETSTG = IEnumSTATPROPSETSTG","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPENUMSTATPROPSETSTG"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPROPERTYSETSTORAGE","package":"druntime","parentType":"","signature":"LPPROPERTYSETSTORAGE = IPropertySetStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPROPERTYSETSTORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPCLIENTSECURITY","package":"druntime","parentType":"","signature":"LPCLIENTSECURITY = IClientSecurity","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPCLIENTSECURITY"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPSERVERSECURITY","package":"druntime","parentType":"","signature":"LPSERVERSECURITY = IServerSecurity","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPSERVERSECURITY"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPCLASSACTIVATOR","package":"druntime","parentType":"","signature":"LPCLASSACTIVATOR = IClassActivator","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPCLASSACTIVATOR"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPFILLLOCKBYTES","package":"druntime","parentType":"","signature":"LPFILLLOCKBYTES = IFillLockBytes","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPFILLLOCKBYTES"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPPROGRESSNOTIFY","package":"druntime","parentType":"","signature":"LPPROGRESSNOTIFY = IProgressNotify","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPPROGRESSNOTIFY"},{"doc":"","kind":"alias","module":"core.sys.windows.objfwd","name":"LPLAYOUTSTORAGE","package":"druntime","parentType":"","signature":"LPLAYOUTSTORAGE = ILayoutStorage","url":"/ddoc/druntime/core/sys/windows/objfwd.html#LPLAYOUTSTORAGE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.objidl","name":"core.sys.windows.objidl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/objidl.html"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STATSTG","package":"druntime","parentType":"","signature":"STATSTG","url":"/ddoc/druntime/core/sys/windows/objidl.html#STATSTG"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"STGTY","package":"druntime","parentType":"","signature":"STGTY","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGTY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STGTY_STORAGE","package":"druntime","parentType":"","signature":"STGTY_STORAGE = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGTY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STGTY_STREAM","package":"druntime","parentType":"","signature":"STGTY_STREAM = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGTY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STGTY_LOCKBYTES","package":"druntime","parentType":"","signature":"STGTY_LOCKBYTES = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGTY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STGTY_PROPERTY","package":"druntime","parentType":"","signature":"STGTY_PROPERTY = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGTY"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"STREAM_SEEK","package":"druntime","parentType":"","signature":"STREAM_SEEK","url":"/ddoc/druntime/core/sys/windows/objidl.html#STREAM_SEEK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STREAM_SEEK_SET","package":"druntime","parentType":"","signature":"STREAM_SEEK_SET = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STREAM_SEEK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STREAM_SEEK_CUR","package":"druntime","parentType":"","signature":"STREAM_SEEK_CUR = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STREAM_SEEK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"STREAM_SEEK_END","package":"druntime","parentType":"","signature":"STREAM_SEEK_END = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#STREAM_SEEK"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"INTERFACEINFO","package":"druntime","parentType":"","signature":"INTERFACEINFO","url":"/ddoc/druntime/core/sys/windows/objidl.html#INTERFACEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPINTERFACEINFO","package":"druntime","parentType":"","signature":"LPINTERFACEINFO = INTERFACEINFO *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPINTERFACEINFO"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"CALLTYPE","package":"druntime","parentType":"","signature":"CALLTYPE","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"CALLTYPE_TOPLEVEL","package":"druntime","parentType":"","signature":"CALLTYPE_TOPLEVEL = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"CALLTYPE_NESTED","package":"druntime","parentType":"","signature":"CALLTYPE_NESTED = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"CALLTYPE_ASYNC","package":"druntime","parentType":"","signature":"CALLTYPE_ASYNC = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"CALLTYPE_TOPLEVEL_CALLPENDING","package":"druntime","parentType":"","signature":"CALLTYPE_TOPLEVEL_CALLPENDING = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"CALLTYPE_ASYNC_CALLPENDING","package":"druntime","parentType":"","signature":"CALLTYPE_ASYNC_CALLPENDING = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALLTYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"PENDINGTYPE","package":"druntime","parentType":"","signature":"PENDINGTYPE","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PENDINGTYPE_TOPLEVEL","package":"druntime","parentType":"","signature":"PENDINGTYPE_TOPLEVEL = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PENDINGTYPE_NESTED","package":"druntime","parentType":"","signature":"PENDINGTYPE_NESTED = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGTYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"PENDINGMSG","package":"druntime","parentType":"","signature":"PENDINGMSG","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGMSG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PENDINGMSG_CANCELCALL","package":"druntime","parentType":"","signature":"PENDINGMSG_CANCELCALL = 0","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGMSG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PENDINGMSG_WAITNOPROCESS","package":"druntime","parentType":"","signature":"PENDINGMSG_WAITNOPROCESS = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGMSG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PENDINGMSG_WAITDEFPROCESS","package":"druntime","parentType":"","signature":"PENDINGMSG_WAITDEFPROCESS = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PENDINGMSG"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"SNB","package":"druntime","parentType":"","signature":"SNB = OLECHAR * *","url":"/ddoc/druntime/core/sys/windows/objidl.html#SNB"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"DATADIR","package":"druntime","parentType":"","signature":"DATADIR","url":"/ddoc/druntime/core/sys/windows/objidl.html#DATADIR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"DATADIR_GET","package":"druntime","parentType":"","signature":"DATADIR_GET = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#DATADIR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"DATADIR_SET","package":"druntime","parentType":"","signature":"DATADIR_SET = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#DATADIR"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"CLIPFORMAT","package":"druntime","parentType":"","signature":"CLIPFORMAT = WORD","url":"/ddoc/druntime/core/sys/windows/objidl.html#CLIPFORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPCLIPFORMAT","package":"druntime","parentType":"","signature":"LPCLIPFORMAT = CLIPFORMAT *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPCLIPFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"DVTARGETDEVICE","package":"druntime","parentType":"","signature":"DVTARGETDEVICE","url":"/ddoc/druntime/core/sys/windows/objidl.html#DVTARGETDEVICE"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"FORMATETC","package":"druntime","parentType":"","signature":"FORMATETC","url":"/ddoc/druntime/core/sys/windows/objidl.html#FORMATETC"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPFORMATETC","package":"druntime","parentType":"","signature":"LPFORMATETC = FORMATETC *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPFORMATETC"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"RemSTGMEDIUM","package":"druntime","parentType":"","signature":"RemSTGMEDIUM","url":"/ddoc/druntime/core/sys/windows/objidl.html#RemSTGMEDIUM"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"HLITEM","package":"druntime","parentType":"","signature":"HLITEM","url":"/ddoc/druntime/core/sys/windows/objidl.html#HLITEM"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STATDATA","package":"druntime","parentType":"","signature":"STATDATA","url":"/ddoc/druntime/core/sys/windows/objidl.html#STATDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STATPROPSETSTG","package":"druntime","parentType":"","signature":"STATPROPSETSTG","url":"/ddoc/druntime/core/sys/windows/objidl.html#STATPROPSETSTG"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"EXTCONN","package":"druntime","parentType":"","signature":"EXTCONN","url":"/ddoc/druntime/core/sys/windows/objidl.html#EXTCONN"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EXTCONN_STRONG","package":"druntime","parentType":"","signature":"EXTCONN_STRONG = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#EXTCONN"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EXTCONN_WEAK","package":"druntime","parentType":"","signature":"EXTCONN_WEAK = 2","url":"/ddoc/druntime/core/sys/windows/objidl.html#EXTCONN"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EXTCONN_CALLABLE","package":"druntime","parentType":"","signature":"EXTCONN_CALLABLE = 4","url":"/ddoc/druntime/core/sys/windows/objidl.html#EXTCONN"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"MULTI_QI","package":"druntime","parentType":"","signature":"MULTI_QI","url":"/ddoc/druntime/core/sys/windows/objidl.html#MULTI_QI"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"AUTH_IDENTITY","package":"druntime","parentType":"","signature":"AUTH_IDENTITY","url":"/ddoc/druntime/core/sys/windows/objidl.html#AUTH_IDENTITY"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"COAUTHINFO","package":"druntime","parentType":"","signature":"COAUTHINFO","url":"/ddoc/druntime/core/sys/windows/objidl.html#COAUTHINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"COSERVERINFO","package":"druntime","parentType":"","signature":"COSERVERINFO","url":"/ddoc/druntime/core/sys/windows/objidl.html#COSERVERINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"BIND_OPTS","package":"druntime","parentType":"","signature":"BIND_OPTS","url":"/ddoc/druntime/core/sys/windows/objidl.html#BIND_OPTS"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPBIND_OPTS","package":"druntime","parentType":"","signature":"LPBIND_OPTS = BIND_OPTS *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPBIND_OPTS"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"BIND_OPTS2","package":"druntime","parentType":"","signature":"BIND_OPTS2","url":"/ddoc/druntime/core/sys/windows/objidl.html#BIND_OPTS2"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPBIND_OPTS2","package":"druntime","parentType":"","signature":"LPBIND_OPTS2 = BIND_OPTS2 *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPBIND_OPTS2"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"BIND_FLAGS","package":"druntime","parentType":"","signature":"BIND_FLAGS","url":"/ddoc/druntime/core/sys/windows/objidl.html#BIND_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"BIND_MAYBOTHERUSER","package":"druntime","parentType":"","signature":"BIND_MAYBOTHERUSER = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#BIND_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"BIND_JUSTTESTEXISTENCE","package":"druntime","parentType":"","signature":"BIND_JUSTTESTEXISTENCE = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#BIND_FLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STGMEDIUM","package":"druntime","parentType":"","signature":"STGMEDIUM","url":"/ddoc/druntime/core/sys/windows/objidl.html#STGMEDIUM"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPSTGMEDIUM","package":"druntime","parentType":"","signature":"LPSTGMEDIUM = STGMEDIUM *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPSTGMEDIUM"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"LOCKTYPE","package":"druntime","parentType":"","signature":"LOCKTYPE","url":"/ddoc/druntime/core/sys/windows/objidl.html#LOCKTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"LOCK_WRITE","package":"druntime","parentType":"","signature":"LOCK_WRITE = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#LOCKTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"LOCK_EXCLUSIVE","package":"druntime","parentType":"","signature":"LOCK_EXCLUSIVE = 2","url":"/ddoc/druntime/core/sys/windows/objidl.html#LOCKTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"LOCK_ONLYONCE","package":"druntime","parentType":"","signature":"LOCK_ONLYONCE = 4","url":"/ddoc/druntime/core/sys/windows/objidl.html#LOCKTYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"RPCOLEDATAREP","package":"druntime","parentType":"","signature":"RPCOLEDATAREP = uint","url":"/ddoc/druntime/core/sys/windows/objidl.html#RPCOLEDATAREP"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"RPCOLEMESSAGE","package":"druntime","parentType":"","signature":"RPCOLEMESSAGE","url":"/ddoc/druntime/core/sys/windows/objidl.html#RPCOLEMESSAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"PRPCOLEMESSAGE","package":"druntime","parentType":"","signature":"PRPCOLEMESSAGE = RPCOLEMESSAGE *","url":"/ddoc/druntime/core/sys/windows/objidl.html#PRPCOLEMESSAGE"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"MKSYS","package":"druntime","parentType":"","signature":"MKSYS","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_NONE","package":"druntime","parentType":"","signature":"MKSYS_NONE = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_GENERICCOMPOSITE","package":"druntime","parentType":"","signature":"MKSYS_GENERICCOMPOSITE = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_FILEMONIKER","package":"druntime","parentType":"","signature":"MKSYS_FILEMONIKER = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_ANTIMONIKER","package":"druntime","parentType":"","signature":"MKSYS_ANTIMONIKER = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_ITEMMONIKER","package":"druntime","parentType":"","signature":"MKSYS_ITEMMONIKER = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKSYS_POINTERMONIKER","package":"druntime","parentType":"","signature":"MKSYS_POINTERMONIKER = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKSYS"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"MKREDUCE","package":"druntime","parentType":"","signature":"MKREDUCE","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKREDUCE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKRREDUCE_ALL","package":"druntime","parentType":"","signature":"MKRREDUCE_ALL = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKREDUCE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKRREDUCE_ONE","package":"druntime","parentType":"","signature":"MKRREDUCE_ONE = 196608","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKREDUCE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKRREDUCE_TOUSER","package":"druntime","parentType":"","signature":"MKRREDUCE_TOUSER = 131072","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKREDUCE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"MKRREDUCE_THROUGHUSER","package":"druntime","parentType":"","signature":"MKRREDUCE_THROUGHUSER = 65536","url":"/ddoc/druntime/core/sys/windows/objidl.html#MKREDUCE"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"RemSNB","package":"druntime","parentType":"","signature":"RemSNB","url":"/ddoc/druntime/core/sys/windows/objidl.html#RemSNB"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"ADVF","package":"druntime","parentType":"","signature":"ADVF","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVF_NODATA","package":"druntime","parentType":"","signature":"ADVF_NODATA = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVF_PRIMEFIRST","package":"druntime","parentType":"","signature":"ADVF_PRIMEFIRST = 2","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVF_ONLYONCE","package":"druntime","parentType":"","signature":"ADVF_ONLYONCE = 4","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVFCACHE_NOHANDLER","package":"druntime","parentType":"","signature":"ADVFCACHE_NOHANDLER = 8","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVFCACHE_FORCEBUILTIN","package":"druntime","parentType":"","signature":"ADVFCACHE_FORCEBUILTIN = 16","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVFCACHE_ONSAVE","package":"druntime","parentType":"","signature":"ADVFCACHE_ONSAVE = 32","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"ADVF_DATAONSTOP","package":"druntime","parentType":"","signature":"ADVF_DATAONSTOP = 64","url":"/ddoc/druntime/core/sys/windows/objidl.html#ADVF"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"TYMED","package":"druntime","parentType":"","signature":"TYMED","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_HGLOBAL","package":"druntime","parentType":"","signature":"TYMED_HGLOBAL = 1","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_FILE","package":"druntime","parentType":"","signature":"TYMED_FILE = 2","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_ISTREAM","package":"druntime","parentType":"","signature":"TYMED_ISTREAM = 4","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_ISTORAGE","package":"druntime","parentType":"","signature":"TYMED_ISTORAGE = 8","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_GDI","package":"druntime","parentType":"","signature":"TYMED_GDI = 16","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_MFPICT","package":"druntime","parentType":"","signature":"TYMED_MFPICT = 32","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_ENHMF","package":"druntime","parentType":"","signature":"TYMED_ENHMF = 64","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"TYMED_NULL","package":"druntime","parentType":"","signature":"TYMED_NULL = 0","url":"/ddoc/druntime/core/sys/windows/objidl.html#TYMED"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"SERVERCALL","package":"druntime","parentType":"","signature":"SERVERCALL","url":"/ddoc/druntime/core/sys/windows/objidl.html#SERVERCALL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"SERVERCALL_ISHANDLED","package":"druntime","parentType":"","signature":"SERVERCALL_ISHANDLED = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#SERVERCALL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"SERVERCALL_REJECTED","package":"druntime","parentType":"","signature":"SERVERCALL_REJECTED = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#SERVERCALL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"SERVERCALL_RETRYLATER","package":"druntime","parentType":"","signature":"SERVERCALL_RETRYLATER = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#SERVERCALL"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAUB","package":"druntime","parentType":"","signature":"CAUB","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAUB"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAI","package":"druntime","parentType":"","signature":"CAI","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAI"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAUI","package":"druntime","parentType":"","signature":"CAUI","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAUI"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAL","package":"druntime","parentType":"","signature":"CAL","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAL"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAUL","package":"druntime","parentType":"","signature":"CAUL","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAUL"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAFLT","package":"druntime","parentType":"","signature":"CAFLT","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAFLT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CADBL","package":"druntime","parentType":"","signature":"CADBL","url":"/ddoc/druntime/core/sys/windows/objidl.html#CADBL"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CACY","package":"druntime","parentType":"","signature":"CACY","url":"/ddoc/druntime/core/sys/windows/objidl.html#CACY"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CADATE","package":"druntime","parentType":"","signature":"CADATE","url":"/ddoc/druntime/core/sys/windows/objidl.html#CADATE"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CABSTR","package":"druntime","parentType":"","signature":"CABSTR","url":"/ddoc/druntime/core/sys/windows/objidl.html#CABSTR"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CABSTRBLOB","package":"druntime","parentType":"","signature":"CABSTRBLOB","url":"/ddoc/druntime/core/sys/windows/objidl.html#CABSTRBLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CABOOL","package":"druntime","parentType":"","signature":"CABOOL","url":"/ddoc/druntime/core/sys/windows/objidl.html#CABOOL"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CASCODE","package":"druntime","parentType":"","signature":"CASCODE","url":"/ddoc/druntime/core/sys/windows/objidl.html#CASCODE"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAH","package":"druntime","parentType":"","signature":"CAH","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAH"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAUH","package":"druntime","parentType":"","signature":"CAUH","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAUH"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CALPSTR","package":"druntime","parentType":"","signature":"CALPSTR","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALPSTR"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CALPWSTR","package":"druntime","parentType":"","signature":"CALPWSTR","url":"/ddoc/druntime/core/sys/windows/objidl.html#CALPWSTR"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAFILETIME","package":"druntime","parentType":"","signature":"CAFILETIME","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAFILETIME"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CACLIPDATA","package":"druntime","parentType":"","signature":"CACLIPDATA","url":"/ddoc/druntime/core/sys/windows/objidl.html#CACLIPDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CACLSID","package":"druntime","parentType":"","signature":"CACLSID","url":"/ddoc/druntime/core/sys/windows/objidl.html#CACLSID"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPPROPVARIANT","package":"druntime","parentType":"","signature":"LPPROPVARIANT = PROPVARIANT *","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPPROPVARIANT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"CAPROPVARIANT","package":"druntime","parentType":"","signature":"CAPROPVARIANT","url":"/ddoc/druntime/core/sys/windows/objidl.html#CAPROPVARIANT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"PROPVARIANT","package":"druntime","parentType":"","signature":"PROPVARIANT","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPVARIANT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"PROPSPEC","package":"druntime","parentType":"","signature":"PROPSPEC","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSPEC"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STATPROPSTG","package":"druntime","parentType":"","signature":"STATPROPSTG","url":"/ddoc/druntime/core/sys/windows/objidl.html#STATPROPSTG"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"PROPSETFLAG","package":"druntime","parentType":"","signature":"PROPSETFLAG","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSETFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PROPSETFLAG_DEFAULT","package":"druntime","parentType":"","signature":"PROPSETFLAG_DEFAULT = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSETFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PROPSETFLAG_NONSIMPLE","package":"druntime","parentType":"","signature":"PROPSETFLAG_NONSIMPLE = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSETFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PROPSETFLAG_ANSI","package":"druntime","parentType":"","signature":"PROPSETFLAG_ANSI = ","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSETFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"PROPSETFLAG_UNBUFFERED","package":"druntime","parentType":"","signature":"PROPSETFLAG_UNBUFFERED = 4","url":"/ddoc/druntime/core/sys/windows/objidl.html#PROPSETFLAG"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"STORAGELAYOUT","package":"druntime","parentType":"","signature":"STORAGELAYOUT","url":"/ddoc/druntime/core/sys/windows/objidl.html#STORAGELAYOUT"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"SOLE_AUTHENTICATION_SERVICE","package":"druntime","parentType":"","signature":"SOLE_AUTHENTICATION_SERVICE","url":"/ddoc/druntime/core/sys/windows/objidl.html#SOLE_AUTHENTICATION_SERVICE"},{"doc":"","kind":"enum","module":"core.sys.windows.objidl","name":"EOLE_AUTHENTICATION_CAPABILITIES","package":"druntime","parentType":"","signature":"EOLE_AUTHENTICATION_CAPABILITIES","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_NONE","package":"druntime","parentType":"","signature":"EOAC_NONE = 0","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_MUTUAL_AUTH","package":"druntime","parentType":"","signature":"EOAC_MUTUAL_AUTH = 0x1","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_SECURE_REFS","package":"druntime","parentType":"","signature":"EOAC_SECURE_REFS = 0x2","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_ACCESS_CONTROL","package":"druntime","parentType":"","signature":"EOAC_ACCESS_CONTROL = 0x4","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_APPID","package":"druntime","parentType":"","signature":"EOAC_APPID = 0x8","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_DYNAMIC","package":"druntime","parentType":"","signature":"EOAC_DYNAMIC = 0x10","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_STATIC_CLOAKING","package":"druntime","parentType":"","signature":"EOAC_STATIC_CLOAKING = 0x20","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_DYNAMIC_CLOAKING","package":"druntime","parentType":"","signature":"EOAC_DYNAMIC_CLOAKING = 0x40","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_ANY_AUTHORITY","package":"druntime","parentType":"","signature":"EOAC_ANY_AUTHORITY = 0x80","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_MAKE_FULLSIC","package":"druntime","parentType":"","signature":"EOAC_MAKE_FULLSIC = 0x100","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_REQUIRE_FULLSIC","package":"druntime","parentType":"","signature":"EOAC_REQUIRE_FULLSIC = 0x200","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_AUTO_IMPERSONATE","package":"druntime","parentType":"","signature":"EOAC_AUTO_IMPERSONATE = 0x400","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_DEFAULT","package":"druntime","parentType":"","signature":"EOAC_DEFAULT = 0x800","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_DISABLE_AAA","package":"druntime","parentType":"","signature":"EOAC_DISABLE_AAA = 0x1000","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.objidl","name":"EOAC_NO_CUSTOM_MARSHAL","package":"druntime","parentType":"","signature":"EOAC_NO_CUSTOM_MARSHAL = 0x2000","url":"/ddoc/druntime/core/sys/windows/objidl.html#EOLE_AUTHENTICATION_CAPABILITIES"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"SOLE_AUTHENTICATION_INFO","package":"druntime","parentType":"","signature":"SOLE_AUTHENTICATION_INFO","url":"/ddoc/druntime/core/sys/windows/objidl.html#SOLE_AUTHENTICATION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.objidl","name":"SOLE_AUTHENTICATION_LIST","package":"druntime","parentType":"","signature":"SOLE_AUTHENTICATION_LIST","url":"/ddoc/druntime/core/sys/windows/objidl.html#SOLE_AUTHENTICATION_LIST"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumFORMATETC","package":"druntime","parentType":"","signature":"IEnumFORMATETC : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumFORMATETC"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumFORMATETC","signature":"HRESULT Next(ULONG,  FORMATETC *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumFORMATETC.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumFORMATETC","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumFORMATETC.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumFORMATETC","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumFORMATETC.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumFORMATETC","signature":"HRESULT Clone(IEnumFORMATETC *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumFORMATETC.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumHLITEM","package":"druntime","parentType":"","signature":"IEnumHLITEM : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumHLITEM"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumHLITEM","signature":"HRESULT Next(ULONG,  HLITEM *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumHLITEM.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumHLITEM","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumHLITEM.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumHLITEM","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumHLITEM.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumHLITEM","signature":"HRESULT Clone(IEnumHLITEM *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumHLITEM.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumSTATDATA","package":"druntime","parentType":"","signature":"IEnumSTATDATA : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumSTATDATA"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumSTATDATA","signature":"HRESULT Next(ULONG,  STATDATA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATDATA.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumSTATDATA","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATDATA.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumSTATDATA","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATDATA.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumSTATDATA","signature":"HRESULT Clone(IEnumSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATDATA.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumSTATPROPSETSTG","package":"druntime","parentType":"","signature":"IEnumSTATPROPSETSTG : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumSTATPROPSETSTG"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumSTATPROPSETSTG","signature":"HRESULT Next(ULONG,  STATPROPSETSTG *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSETSTG.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumSTATPROPSETSTG","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSETSTG.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumSTATPROPSETSTG","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSETSTG.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumSTATPROPSETSTG","signature":"HRESULT Clone(IEnumSTATPROPSETSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSETSTG.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumSTATPROPSTG","package":"druntime","parentType":"","signature":"IEnumSTATPROPSTG : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumSTATPROPSTG"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumSTATPROPSTG","signature":"HRESULT Next(ULONG,  STATPROPSTG *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSTG.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumSTATPROPSTG","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSTG.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumSTATPROPSTG","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSTG.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumSTATPROPSTG","signature":"HRESULT Clone(IEnumSTATPROPSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATPROPSTG.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumSTATSTG","package":"druntime","parentType":"","signature":"IEnumSTATSTG : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumSTATSTG"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumSTATSTG","signature":"HRESULT Next(ULONG,  STATSTG *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATSTG.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumSTATSTG","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATSTG.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumSTATSTG","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATSTG.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumSTATSTG","signature":"HRESULT Clone(IEnumSTATSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumSTATSTG.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumString","package":"druntime","parentType":"","signature":"IEnumString : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumString"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumString","signature":"HRESULT Next(ULONG,  LPOLESTR *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumString.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumString","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumString.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumString","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumString.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumString","signature":"HRESULT Clone(IEnumString *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumString.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumMoniker","package":"druntime","parentType":"","signature":"IEnumMoniker : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumMoniker"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumMoniker","signature":"HRESULT Next(ULONG,  IMoniker *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumMoniker.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumMoniker","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumMoniker.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumMoniker","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumMoniker.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumMoniker","signature":"HRESULT Clone(IEnumMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumMoniker.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IEnumUnknown","package":"druntime","parentType":"","signature":"IEnumUnknown : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IEnumUnknown"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Next","package":"druntime","parentType":"IEnumUnknown","signature":"HRESULT Next(ULONG,  IUnknown *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumUnknown.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Skip","package":"druntime","parentType":"IEnumUnknown","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumUnknown.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reset","package":"druntime","parentType":"IEnumUnknown","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumUnknown.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IEnumUnknown","signature":"HRESULT Clone(IEnumUnknown *)","url":"/ddoc/druntime/core/sys/windows/objidl/IEnumUnknown.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"ISequentialStream","package":"druntime","parentType":"","signature":"ISequentialStream : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#ISequentialStream"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Read","package":"druntime","parentType":"ISequentialStream","signature":"HRESULT Read(void *,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/ISequentialStream.Read.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Write","package":"druntime","parentType":"ISequentialStream","signature":"HRESULT Write(void * ,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/ISequentialStream.Write.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IStream","package":"druntime","parentType":"","signature":"IStream : ISequentialStream","url":"/ddoc/druntime/core/sys/windows/objidl.html#IStream"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Seek","package":"druntime","parentType":"IStream","signature":"HRESULT Seek(LARGE_INTEGER,  DWORD,  ULARGE_INTEGER *)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.Seek.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetSize","package":"druntime","parentType":"IStream","signature":"HRESULT SetSize(ULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.SetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CopyTo","package":"druntime","parentType":"IStream","signature":"HRESULT CopyTo(IStream,  ULARGE_INTEGER,  ULARGE_INTEGER *,  ULARGE_INTEGER *)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.CopyTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Commit","package":"druntime","parentType":"IStream","signature":"HRESULT Commit(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.Commit.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Revert","package":"druntime","parentType":"IStream","signature":"HRESULT Revert()","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.Revert.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"LockRegion","package":"druntime","parentType":"IStream","signature":"HRESULT LockRegion(ULARGE_INTEGER,  ULARGE_INTEGER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.LockRegion.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"UnlockRegion","package":"druntime","parentType":"IStream","signature":"HRESULT UnlockRegion(ULARGE_INTEGER,  ULARGE_INTEGER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.UnlockRegion.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Stat","package":"druntime","parentType":"IStream","signature":"HRESULT Stat(STATSTG *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.Stat.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Clone","package":"druntime","parentType":"IStream","signature":"HRESULT Clone(LPSTREAM *)","url":"/ddoc/druntime/core/sys/windows/objidl/IStream.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IMarshal","package":"druntime","parentType":"","signature":"IMarshal : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IMarshal"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetUnmarshalClass","package":"druntime","parentType":"IMarshal","signature":"HRESULT GetUnmarshalClass(REFIID,  PVOID,  DWORD,  PVOID,  DWORD,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.GetUnmarshalClass.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetMarshalSizeMax","package":"druntime","parentType":"IMarshal","signature":"HRESULT GetMarshalSizeMax(REFIID,  PVOID,  DWORD,  PVOID,  DWORD,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.GetMarshalSizeMax.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"MarshalInterface","package":"druntime","parentType":"IMarshal","signature":"HRESULT MarshalInterface(IStream,  REFIID,  PVOID,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.MarshalInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"UnmarshalInterface","package":"druntime","parentType":"IMarshal","signature":"HRESULT UnmarshalInterface(IStream,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.UnmarshalInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReleaseMarshalData","package":"druntime","parentType":"IMarshal","signature":"HRESULT ReleaseMarshalData(IStream)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.ReleaseMarshalData.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DisconnectObject","package":"druntime","parentType":"IMarshal","signature":"HRESULT DisconnectObject(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMarshal.DisconnectObject.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IStdMarshalInfo","package":"druntime","parentType":"","signature":"IStdMarshalInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IStdMarshalInfo"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetClassForHandler","package":"druntime","parentType":"IStdMarshalInfo","signature":"HRESULT GetClassForHandler(DWORD,  PVOID,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IStdMarshalInfo.GetClassForHandler.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IMalloc","package":"druntime","parentType":"","signature":"IMalloc : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IMalloc"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Alloc","package":"druntime","parentType":"IMalloc","signature":"void * Alloc(SIZE_T)","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.Alloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Realloc","package":"druntime","parentType":"IMalloc","signature":"void * Realloc(void *,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.Realloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Free","package":"druntime","parentType":"IMalloc","signature":"void Free(void *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.Free.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetSize","package":"druntime","parentType":"IMalloc","signature":"SIZE_T GetSize(void *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.GetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DidAlloc","package":"druntime","parentType":"IMalloc","signature":"int DidAlloc(void *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.DidAlloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"HeapMinimize","package":"druntime","parentType":"IMalloc","signature":"void HeapMinimize()","url":"/ddoc/druntime/core/sys/windows/objidl/IMalloc.HeapMinimize.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IMallocSpy","package":"druntime","parentType":"","signature":"IMallocSpy : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IMallocSpy"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreAlloc","package":"druntime","parentType":"IMallocSpy","signature":"SIZE_T PreAlloc(SIZE_T)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreAlloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostAlloc","package":"druntime","parentType":"IMallocSpy","signature":"void * PostAlloc(void *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostAlloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreFree","package":"druntime","parentType":"IMallocSpy","signature":"void * PreFree(void *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreFree.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostFree","package":"druntime","parentType":"IMallocSpy","signature":"void PostFree(BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostFree.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreRealloc","package":"druntime","parentType":"IMallocSpy","signature":"SIZE_T PreRealloc(void *,  SIZE_T,  void * *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreRealloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostRealloc","package":"druntime","parentType":"IMallocSpy","signature":"void * PostRealloc(void *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostRealloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreGetSize","package":"druntime","parentType":"IMallocSpy","signature":"void * PreGetSize(void *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreGetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostGetSize","package":"druntime","parentType":"IMallocSpy","signature":"SIZE_T PostGetSize(SIZE_T,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostGetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreDidAlloc","package":"druntime","parentType":"IMallocSpy","signature":"void * PreDidAlloc(void *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreDidAlloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostDidAlloc","package":"druntime","parentType":"IMallocSpy","signature":"int PostDidAlloc(void *,  BOOL,  int)","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostDidAlloc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PreHeapMinimize","package":"druntime","parentType":"IMallocSpy","signature":"void PreHeapMinimize()","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PreHeapMinimize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"PostHeapMinimize","package":"druntime","parentType":"IMallocSpy","signature":"void PostHeapMinimize()","url":"/ddoc/druntime/core/sys/windows/objidl/IMallocSpy.PostHeapMinimize.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IMessageFilter","package":"druntime","parentType":"","signature":"IMessageFilter : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IMessageFilter"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"HandleInComingCall","package":"druntime","parentType":"IMessageFilter","signature":"DWORD HandleInComingCall(DWORD,  HTASK,  DWORD,  LPINTERFACEINFO)","url":"/ddoc/druntime/core/sys/windows/objidl/IMessageFilter.HandleInComingCall.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RetryRejectedCall","package":"druntime","parentType":"IMessageFilter","signature":"DWORD RetryRejectedCall(HTASK,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMessageFilter.RetryRejectedCall.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"MessagePending","package":"druntime","parentType":"IMessageFilter","signature":"DWORD MessagePending(HTASK,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMessageFilter.MessagePending.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPersist","package":"druntime","parentType":"","signature":"IPersist : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPersist"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetClassID","package":"druntime","parentType":"IPersist","signature":"HRESULT GetClassID(CLSID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersist.GetClassID.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPersistStream","package":"druntime","parentType":"","signature":"IPersistStream : IPersist","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPersistStream"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsDirty","package":"druntime","parentType":"IPersistStream","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStream.IsDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Load","package":"druntime","parentType":"IPersistStream","signature":"HRESULT Load(IStream)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStream.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Save","package":"druntime","parentType":"IPersistStream","signature":"HRESULT Save(IStream,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStream.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetSizeMax","package":"druntime","parentType":"IPersistStream","signature":"HRESULT GetSizeMax(PULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStream.GetSizeMax.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRunningObjectTable","package":"druntime","parentType":"","signature":"IRunningObjectTable : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRunningObjectTable"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Register","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT Register(DWORD,  LPUNKNOWN,  LPMONIKER,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.Register.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Revoke","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT Revoke(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.Revoke.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsRunning","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT IsRunning(LPMONIKER)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.IsRunning.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetObject","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT GetObject(LPMONIKER,  LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.GetObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"NoteChangeTime","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT NoteChangeTime(DWORD,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.NoteChangeTime.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetTimeOfLastChange","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT GetTimeOfLastChange(LPMONIKER,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.GetTimeOfLastChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumRunning","package":"druntime","parentType":"IRunningObjectTable","signature":"HRESULT EnumRunning(IEnumMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunningObjectTable.EnumRunning.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IBindCtx","package":"druntime","parentType":"","signature":"IBindCtx : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IBindCtx"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RegisterObjectBound","package":"druntime","parentType":"IBindCtx","signature":"HRESULT RegisterObjectBound(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.RegisterObjectBound.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RevokeObjectBound","package":"druntime","parentType":"IBindCtx","signature":"HRESULT RevokeObjectBound(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.RevokeObjectBound.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReleaseBoundObjects","package":"druntime","parentType":"IBindCtx","signature":"HRESULT ReleaseBoundObjects()","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.ReleaseBoundObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetBindOptions","package":"druntime","parentType":"IBindCtx","signature":"HRESULT SetBindOptions(LPBIND_OPTS)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.SetBindOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetBindOptions","package":"druntime","parentType":"IBindCtx","signature":"HRESULT GetBindOptions(LPBIND_OPTS)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.GetBindOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetRunningObjectTable","package":"druntime","parentType":"IBindCtx","signature":"HRESULT GetRunningObjectTable(IRunningObjectTable *)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.GetRunningObjectTable.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RegisterObjectParam","package":"druntime","parentType":"IBindCtx","signature":"HRESULT RegisterObjectParam(LPOLESTR,  IUnknown)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.RegisterObjectParam.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetObjectParam","package":"druntime","parentType":"IBindCtx","signature":"HRESULT GetObjectParam(LPOLESTR,  IUnknown *)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.GetObjectParam.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumObjectParam","package":"druntime","parentType":"IBindCtx","signature":"HRESULT EnumObjectParam(IEnumString *)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.EnumObjectParam.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RevokeObjectParam","package":"druntime","parentType":"IBindCtx","signature":"HRESULT RevokeObjectParam(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/objidl/IBindCtx.RevokeObjectParam.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IMoniker","package":"druntime","parentType":"","signature":"IMoniker : IPersistStream","url":"/ddoc/druntime/core/sys/windows/objidl.html#IMoniker"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"BindToObject","package":"druntime","parentType":"IMoniker","signature":"HRESULT BindToObject(IBindCtx,  IMoniker,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.BindToObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"BindToStorage","package":"druntime","parentType":"IMoniker","signature":"HRESULT BindToStorage(IBindCtx,  IMoniker,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.BindToStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Reduce","package":"druntime","parentType":"IMoniker","signature":"HRESULT Reduce(IBindCtx,  DWORD,  IMoniker *,  IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.Reduce.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ComposeWith","package":"druntime","parentType":"IMoniker","signature":"HRESULT ComposeWith(IMoniker,  BOOL,  IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.ComposeWith.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Enum","package":"druntime","parentType":"IMoniker","signature":"HRESULT Enum(BOOL,  IEnumMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.Enum.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsEqual","package":"druntime","parentType":"IMoniker","signature":"HRESULT IsEqual(IMoniker)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.IsEqual.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Hash","package":"druntime","parentType":"IMoniker","signature":"HRESULT Hash(PDWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.Hash.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsRunning","package":"druntime","parentType":"IMoniker","signature":"HRESULT IsRunning(IBindCtx,  IMoniker,  IMoniker)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.IsRunning.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetTimeOfLastChange","package":"druntime","parentType":"IMoniker","signature":"HRESULT GetTimeOfLastChange(IBindCtx,  IMoniker,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.GetTimeOfLastChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Inverse","package":"druntime","parentType":"IMoniker","signature":"HRESULT Inverse(IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.Inverse.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CommonPrefixWith","package":"druntime","parentType":"IMoniker","signature":"HRESULT CommonPrefixWith(IMoniker,  IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.CommonPrefixWith.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RelativePathTo","package":"druntime","parentType":"IMoniker","signature":"HRESULT RelativePathTo(IMoniker,  IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.RelativePathTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetDisplayName","package":"druntime","parentType":"IMoniker","signature":"HRESULT GetDisplayName(IBindCtx,  IMoniker,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.GetDisplayName.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ParseDisplayName","package":"druntime","parentType":"IMoniker","signature":"HRESULT ParseDisplayName(IBindCtx,  IMoniker,  LPOLESTR,  ULONG *,  IMoniker *)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.ParseDisplayName.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsSystemMoniker","package":"druntime","parentType":"IMoniker","signature":"HRESULT IsSystemMoniker(PDWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IMoniker.IsSystemMoniker.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPersistStorage","package":"druntime","parentType":"","signature":"IPersistStorage : IPersist","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPersistStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsDirty","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.IsDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"InitNew","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT InitNew(LPSTORAGE)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.InitNew.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Load","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT Load(LPSTORAGE)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Save","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT Save(LPSTORAGE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SaveCompleted","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT SaveCompleted(LPSTORAGE)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.SaveCompleted.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"HandsOffStorage","package":"druntime","parentType":"IPersistStorage","signature":"HRESULT HandsOffStorage()","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistStorage.HandsOffStorage.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPersistFile","package":"druntime","parentType":"","signature":"IPersistFile : IPersist","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPersistFile"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsDirty","package":"druntime","parentType":"IPersistFile","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistFile.IsDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Load","package":"druntime","parentType":"IPersistFile","signature":"HRESULT Load(LPCOLESTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistFile.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Save","package":"druntime","parentType":"IPersistFile","signature":"HRESULT Save(LPCOLESTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistFile.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SaveCompleted","package":"druntime","parentType":"IPersistFile","signature":"HRESULT SaveCompleted(LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistFile.SaveCompleted.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetCurFile","package":"druntime","parentType":"IPersistFile","signature":"HRESULT GetCurFile(LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPersistFile.GetCurFile.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IAdviseSink","package":"druntime","parentType":"","signature":"IAdviseSink : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IAdviseSink"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"QueryInterface","package":"druntime","parentType":"IAdviseSink","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"AddRef","package":"druntime","parentType":"IAdviseSink","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Release","package":"druntime","parentType":"IAdviseSink","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnDataChange","package":"druntime","parentType":"IAdviseSink","signature":"void OnDataChange(FORMATETC *,  STGMEDIUM *)","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.OnDataChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnViewChange","package":"druntime","parentType":"IAdviseSink","signature":"void OnViewChange(DWORD,  LONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.OnViewChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnRename","package":"druntime","parentType":"IAdviseSink","signature":"void OnRename(IMoniker)","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.OnRename.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnSave","package":"druntime","parentType":"IAdviseSink","signature":"void OnSave()","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.OnSave.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnClose","package":"druntime","parentType":"IAdviseSink","signature":"void OnClose()","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink.OnClose.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IAdviseSink2","package":"druntime","parentType":"","signature":"IAdviseSink2 : IAdviseSink","url":"/ddoc/druntime/core/sys/windows/objidl.html#IAdviseSink2"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnLinkSrcChange","package":"druntime","parentType":"IAdviseSink2","signature":"void OnLinkSrcChange(IMoniker)","url":"/ddoc/druntime/core/sys/windows/objidl/IAdviseSink2.OnLinkSrcChange.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IDataObject","package":"druntime","parentType":"","signature":"IDataObject : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IDataObject"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetData","package":"druntime","parentType":"IDataObject","signature":"HRESULT GetData(FORMATETC *,  STGMEDIUM *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.GetData.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetDataHere","package":"druntime","parentType":"IDataObject","signature":"HRESULT GetDataHere(FORMATETC *,  STGMEDIUM *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.GetDataHere.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"QueryGetData","package":"druntime","parentType":"IDataObject","signature":"HRESULT QueryGetData(FORMATETC *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.QueryGetData.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetCanonicalFormatEtc","package":"druntime","parentType":"IDataObject","signature":"HRESULT GetCanonicalFormatEtc(FORMATETC *,  FORMATETC *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.GetCanonicalFormatEtc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetData","package":"druntime","parentType":"IDataObject","signature":"HRESULT SetData(FORMATETC *,  STGMEDIUM *,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.SetData.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumFormatEtc","package":"druntime","parentType":"IDataObject","signature":"HRESULT EnumFormatEtc(DWORD,  IEnumFORMATETC *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.EnumFormatEtc.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DAdvise","package":"druntime","parentType":"IDataObject","signature":"HRESULT DAdvise(FORMATETC *,  DWORD,  IAdviseSink,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.DAdvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DUnadvise","package":"druntime","parentType":"IDataObject","signature":"HRESULT DUnadvise(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.DUnadvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumDAdvise","package":"druntime","parentType":"IDataObject","signature":"HRESULT EnumDAdvise(IEnumSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataObject.EnumDAdvise.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IDataAdviseHolder","package":"druntime","parentType":"","signature":"IDataAdviseHolder : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IDataAdviseHolder"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Advise","package":"druntime","parentType":"IDataAdviseHolder","signature":"HRESULT Advise(IDataObject,  FORMATETC *,  DWORD,  IAdviseSink,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataAdviseHolder.Advise.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Unadvise","package":"druntime","parentType":"IDataAdviseHolder","signature":"HRESULT Unadvise(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataAdviseHolder.Unadvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumAdvise","package":"druntime","parentType":"IDataAdviseHolder","signature":"HRESULT EnumAdvise(IEnumSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataAdviseHolder.EnumAdvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SendOnDataChange","package":"druntime","parentType":"IDataAdviseHolder","signature":"HRESULT SendOnDataChange(IDataObject,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IDataAdviseHolder.SendOnDataChange.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IStorage","package":"druntime","parentType":"","signature":"IStorage : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CreateStream","package":"druntime","parentType":"IStorage","signature":"HRESULT CreateStream(LPCWSTR,  DWORD,  DWORD,  DWORD,  IStream)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.CreateStream.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OpenStream","package":"druntime","parentType":"IStorage","signature":"HRESULT OpenStream(LPCWSTR,  PVOID,  DWORD,  DWORD,  IStream)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.OpenStream.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CreateStorage","package":"druntime","parentType":"IStorage","signature":"HRESULT CreateStorage(LPCWSTR,  DWORD,  DWORD,  DWORD,  IStorage)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.CreateStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OpenStorage","package":"druntime","parentType":"IStorage","signature":"HRESULT OpenStorage(LPCWSTR,  IStorage,  DWORD,  SNB,  DWORD,  IStorage)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.OpenStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CopyTo","package":"druntime","parentType":"IStorage","signature":"HRESULT CopyTo(DWORD,  IID * ,  SNB,  IStorage)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.CopyTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"MoveElementTo","package":"druntime","parentType":"IStorage","signature":"HRESULT MoveElementTo(LPCWSTR,  IStorage,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.MoveElementTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Commit","package":"druntime","parentType":"IStorage","signature":"HRESULT Commit(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.Commit.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Revert","package":"druntime","parentType":"IStorage","signature":"HRESULT Revert()","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.Revert.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EnumElements","package":"druntime","parentType":"IStorage","signature":"HRESULT EnumElements(DWORD,  PVOID,  DWORD,  IEnumSTATSTG)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.EnumElements.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DestroyElement","package":"druntime","parentType":"IStorage","signature":"HRESULT DestroyElement(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.DestroyElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RenameElement","package":"druntime","parentType":"IStorage","signature":"HRESULT RenameElement(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.RenameElement.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetElementTimes","package":"druntime","parentType":"IStorage","signature":"HRESULT SetElementTimes(LPCWSTR,  FILETIME * ,  FILETIME * ,  FILETIME * )","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.SetElementTimes.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetClass","package":"druntime","parentType":"IStorage","signature":"HRESULT SetClass(REFCLSID)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.SetClass.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetStateBits","package":"druntime","parentType":"IStorage","signature":"HRESULT SetStateBits(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.SetStateBits.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Stat","package":"druntime","parentType":"IStorage","signature":"HRESULT Stat(STATSTG *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IStorage.Stat.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRootStorage","package":"druntime","parentType":"","signature":"IRootStorage : IPersist","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRootStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"QueryInterface","package":"druntime","parentType":"IRootStorage","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRootStorage.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"AddRef","package":"druntime","parentType":"IRootStorage","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/objidl/IRootStorage.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Release","package":"druntime","parentType":"IRootStorage","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/objidl/IRootStorage.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SwitchToFile","package":"druntime","parentType":"IRootStorage","signature":"HRESULT SwitchToFile(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/objidl/IRootStorage.SwitchToFile.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRpcChannelBuffer","package":"druntime","parentType":"","signature":"IRpcChannelBuffer : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRpcChannelBuffer"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetBuffer","package":"druntime","parentType":"IRpcChannelBuffer","signature":"HRESULT GetBuffer(RPCOLEMESSAGE *,  REFIID)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcChannelBuffer.GetBuffer.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SendReceive","package":"druntime","parentType":"IRpcChannelBuffer","signature":"HRESULT SendReceive(RPCOLEMESSAGE *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcChannelBuffer.SendReceive.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"FreeBuffer","package":"druntime","parentType":"IRpcChannelBuffer","signature":"HRESULT FreeBuffer(RPCOLEMESSAGE *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcChannelBuffer.FreeBuffer.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetDestCtx","package":"druntime","parentType":"IRpcChannelBuffer","signature":"HRESULT GetDestCtx(PDWORD,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcChannelBuffer.GetDestCtx.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsConnected","package":"druntime","parentType":"IRpcChannelBuffer","signature":"HRESULT IsConnected()","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcChannelBuffer.IsConnected.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRpcProxyBuffer","package":"druntime","parentType":"","signature":"IRpcProxyBuffer : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRpcProxyBuffer"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Connect","package":"druntime","parentType":"IRpcProxyBuffer","signature":"HRESULT Connect(IRpcChannelBuffer)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcProxyBuffer.Connect.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Disconnect","package":"druntime","parentType":"IRpcProxyBuffer","signature":"void Disconnect()","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcProxyBuffer.Disconnect.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRpcStubBuffer","package":"druntime","parentType":"","signature":"IRpcStubBuffer : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRpcStubBuffer"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Connect","package":"druntime","parentType":"IRpcStubBuffer","signature":"HRESULT Connect(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.Connect.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Disconnect","package":"druntime","parentType":"IRpcStubBuffer","signature":"void Disconnect()","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.Disconnect.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Invoke","package":"druntime","parentType":"IRpcStubBuffer","signature":"HRESULT Invoke(RPCOLEMESSAGE *,  LPRPCSTUBBUFFER)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.Invoke.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsIIDSupported","package":"druntime","parentType":"IRpcStubBuffer","signature":"LPRPCSTUBBUFFER IsIIDSupported(REFIID)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.IsIIDSupported.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CountRefs","package":"druntime","parentType":"IRpcStubBuffer","signature":"ULONG CountRefs()","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.CountRefs.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DebugServerQueryInterface","package":"druntime","parentType":"IRpcStubBuffer","signature":"HRESULT DebugServerQueryInterface(PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.DebugServerQueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DebugServerRelease","package":"druntime","parentType":"IRpcStubBuffer","signature":"HRESULT DebugServerRelease(PVOID)","url":"/ddoc/druntime/core/sys/windows/objidl/IRpcStubBuffer.DebugServerRelease.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPSFactoryBuffer","package":"druntime","parentType":"","signature":"IPSFactoryBuffer : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPSFactoryBuffer"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CreateProxy","package":"druntime","parentType":"IPSFactoryBuffer","signature":"HRESULT CreateProxy(LPUNKNOWN,  REFIID,  LPRPCPROXYBUFFER *,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPSFactoryBuffer.CreateProxy.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CreateStub","package":"druntime","parentType":"IPSFactoryBuffer","signature":"HRESULT CreateStub(REFIID,  LPUNKNOWN,  LPRPCSTUBBUFFER *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPSFactoryBuffer.CreateStub.html"},{"doc":"","kind":"alias","module":"core.sys.windows.objidl","name":"LPPSFACTORYBUFFER","package":"druntime","parentType":"","signature":"LPPSFACTORYBUFFER = IPSFactoryBuffer","url":"/ddoc/druntime/core/sys/windows/objidl.html#LPPSFACTORYBUFFER"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"ILockBytes","package":"druntime","parentType":"","signature":"ILockBytes : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#ILockBytes"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReadAt","package":"druntime","parentType":"ILockBytes","signature":"HRESULT ReadAt(ULARGE_INTEGER,  PVOID,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.ReadAt.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"WriteAt","package":"druntime","parentType":"ILockBytes","signature":"HRESULT WriteAt(ULARGE_INTEGER,  PCVOID,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.WriteAt.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Flush","package":"druntime","parentType":"ILockBytes","signature":"HRESULT Flush()","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.Flush.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetSize","package":"druntime","parentType":"ILockBytes","signature":"HRESULT SetSize(ULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.SetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"LockRegion","package":"druntime","parentType":"ILockBytes","signature":"HRESULT LockRegion(ULARGE_INTEGER,  ULARGE_INTEGER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.LockRegion.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"UnlockRegion","package":"druntime","parentType":"ILockBytes","signature":"HRESULT UnlockRegion(ULARGE_INTEGER,  ULARGE_INTEGER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.UnlockRegion.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Stat","package":"druntime","parentType":"ILockBytes","signature":"HRESULT Stat(STATSTG *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/ILockBytes.Stat.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IExternalConnection","package":"druntime","parentType":"","signature":"IExternalConnection : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IExternalConnection"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"AddConnection","package":"druntime","parentType":"IExternalConnection","signature":"HRESULT AddConnection(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IExternalConnection.AddConnection.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReleaseConnection","package":"druntime","parentType":"IExternalConnection","signature":"HRESULT ReleaseConnection(DWORD,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IExternalConnection.ReleaseConnection.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IRunnableObject","package":"druntime","parentType":"","signature":"IRunnableObject : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IRunnableObject"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetRunningClass","package":"druntime","parentType":"IRunnableObject","signature":"HRESULT GetRunningClass(LPCLSID)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunnableObject.GetRunningClass.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Run","package":"druntime","parentType":"IRunnableObject","signature":"HRESULT Run(LPBC)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunnableObject.Run.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsRunning","package":"druntime","parentType":"IRunnableObject","signature":"BOOL IsRunning()","url":"/ddoc/druntime/core/sys/windows/objidl/IRunnableObject.IsRunning.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"LockRunning","package":"druntime","parentType":"IRunnableObject","signature":"HRESULT LockRunning(BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunnableObject.LockRunning.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetContainedObject","package":"druntime","parentType":"IRunnableObject","signature":"HRESULT SetContainedObject(BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IRunnableObject.SetContainedObject.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IROTData","package":"druntime","parentType":"","signature":"IROTData : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IROTData"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetComparisonData","package":"druntime","parentType":"IROTData","signature":"HRESULT GetComparisonData(PVOID,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IROTData.GetComparisonData.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IChannelHook","package":"druntime","parentType":"","signature":"IChannelHook : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IChannelHook"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ClientGetSize","package":"druntime","parentType":"IChannelHook","signature":"void ClientGetSize(REFGUID,  REFIID,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ClientGetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ClientFillBuffer","package":"druntime","parentType":"IChannelHook","signature":"void ClientFillBuffer(REFGUID,  REFIID,  PULONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ClientFillBuffer.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ClientNotify","package":"druntime","parentType":"IChannelHook","signature":"void ClientNotify(REFGUID,  REFIID,  ULONG,  PVOID,  DWORD,  HRESULT)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ClientNotify.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ServerNotify","package":"druntime","parentType":"IChannelHook","signature":"void ServerNotify(REFGUID,  REFIID,  ULONG,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ServerNotify.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ServerGetSize","package":"druntime","parentType":"IChannelHook","signature":"void ServerGetSize(REFGUID,  REFIID,  HRESULT,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ServerGetSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ServerFillBuffer","package":"druntime","parentType":"IChannelHook","signature":"void ServerFillBuffer(REFGUID,  REFIID,  PULONG,  PVOID,  HRESULT)","url":"/ddoc/druntime/core/sys/windows/objidl/IChannelHook.ServerFillBuffer.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPropertyStorage","package":"druntime","parentType":"","signature":"IPropertyStorage : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPropertyStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReadMultiple","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT ReadMultiple(ULONG,  PROPSPEC * ,  PROPVARIANT *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.ReadMultiple.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"WriteMultiple","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT WriteMultiple(ULONG,  PROPSPEC * ,  PROPVARIANT *,  PROPID)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.WriteMultiple.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DeleteMultiple","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT DeleteMultiple(ULONG,  PROPSPEC * )","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.DeleteMultiple.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReadPropertyNames","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT ReadPropertyNames(ULONG,  PROPID * ,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.ReadPropertyNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"WritePropertyNames","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT WritePropertyNames(ULONG,  PROPID * ,  LPWSTR * )","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.WritePropertyNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"DeletePropertyNames","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT DeletePropertyNames(ULONG,  PROPID * )","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.DeletePropertyNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetClass","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT SetClass(REFCLSID)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.SetClass.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Commit","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT Commit(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.Commit.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Revert","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT Revert()","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.Revert.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Enum","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT Enum(IEnumSTATPROPSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.Enum.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Stat","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT Stat(STATPROPSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.Stat.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetTimes","package":"druntime","parentType":"IPropertyStorage","signature":"HRESULT SetTimes(FILETIME * ,  FILETIME * ,  FILETIME * )","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertyStorage.SetTimes.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IPropertySetStorage","package":"druntime","parentType":"","signature":"IPropertySetStorage : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IPropertySetStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Create","package":"druntime","parentType":"IPropertySetStorage","signature":"HRESULT Create(REFFMTID,  CLSID *,  DWORD,  DWORD,  LPPROPERTYSTORAGE *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertySetStorage.Create.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Open","package":"druntime","parentType":"IPropertySetStorage","signature":"HRESULT Open(REFFMTID,  DWORD,  LPPROPERTYSTORAGE *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertySetStorage.Open.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Delete","package":"druntime","parentType":"IPropertySetStorage","signature":"HRESULT Delete(REFFMTID)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertySetStorage.Delete.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Enum","package":"druntime","parentType":"IPropertySetStorage","signature":"HRESULT Enum(IEnumSTATPROPSETSTG *)","url":"/ddoc/druntime/core/sys/windows/objidl/IPropertySetStorage.Enum.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IClientSecurity","package":"druntime","parentType":"","signature":"IClientSecurity : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IClientSecurity"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"QueryBlanket","package":"druntime","parentType":"IClientSecurity","signature":"HRESULT QueryBlanket(PVOID,  PDWORD,  PDWORD,  OLECHAR * *,  PDWORD,  PDWORD,  RPC_AUTH_IDENTITY_HANDLE * *,  PDWORD *)","url":"/ddoc/druntime/core/sys/windows/objidl/IClientSecurity.QueryBlanket.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetBlanket","package":"druntime","parentType":"IClientSecurity","signature":"HRESULT SetBlanket(PVOID,  DWORD,  DWORD,  LPWSTR,  DWORD,  DWORD,  RPC_AUTH_IDENTITY_HANDLE *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IClientSecurity.SetBlanket.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"CopyProxy","package":"druntime","parentType":"IClientSecurity","signature":"HRESULT CopyProxy(LPUNKNOWN,  LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/objidl/IClientSecurity.CopyProxy.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IServerSecurity","package":"druntime","parentType":"","signature":"IServerSecurity : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IServerSecurity"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"QueryBlanket","package":"druntime","parentType":"IServerSecurity","signature":"HRESULT QueryBlanket(PDWORD,  PDWORD,  OLECHAR * *,  PDWORD,  PDWORD,  RPC_AUTHZ_HANDLE *,  PDWORD *)","url":"/ddoc/druntime/core/sys/windows/objidl/IServerSecurity.QueryBlanket.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ImpersonateClient","package":"druntime","parentType":"IServerSecurity","signature":"HRESULT ImpersonateClient()","url":"/ddoc/druntime/core/sys/windows/objidl/IServerSecurity.ImpersonateClient.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RevertToSelf","package":"druntime","parentType":"IServerSecurity","signature":"HRESULT RevertToSelf()","url":"/ddoc/druntime/core/sys/windows/objidl/IServerSecurity.RevertToSelf.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"IsImpersonating","package":"druntime","parentType":"IServerSecurity","signature":"HRESULT IsImpersonating()","url":"/ddoc/druntime/core/sys/windows/objidl/IServerSecurity.IsImpersonating.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IClassActivator","package":"druntime","parentType":"","signature":"IClassActivator : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IClassActivator"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetClassObject","package":"druntime","parentType":"IClassActivator","signature":"HRESULT GetClassObject(REFCLSID,  DWORD,  LCID,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/objidl/IClassActivator.GetClassObject.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IFillLockBytes","package":"druntime","parentType":"","signature":"IFillLockBytes : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IFillLockBytes"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"FillAppend","package":"druntime","parentType":"IFillLockBytes","signature":"HRESULT FillAppend(void * ,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IFillLockBytes.FillAppend.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"FillAt","package":"druntime","parentType":"IFillLockBytes","signature":"HRESULT FillAt(ULARGE_INTEGER,  void * ,  ULONG,  PULONG)","url":"/ddoc/druntime/core/sys/windows/objidl/IFillLockBytes.FillAt.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"SetFillSize","package":"druntime","parentType":"IFillLockBytes","signature":"HRESULT SetFillSize(ULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/objidl/IFillLockBytes.SetFillSize.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"Terminate","package":"druntime","parentType":"IFillLockBytes","signature":"HRESULT Terminate(BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IFillLockBytes.Terminate.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IProgressNotify","package":"druntime","parentType":"","signature":"IProgressNotify : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IProgressNotify"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"OnProgress","package":"druntime","parentType":"IProgressNotify","signature":"HRESULT OnProgress(DWORD,  DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/objidl/IProgressNotify.OnProgress.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"ILayoutStorage","package":"druntime","parentType":"","signature":"ILayoutStorage : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#ILayoutStorage"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"LayoutScript","package":"druntime","parentType":"ILayoutStorage","signature":"HRESULT LayoutScript(STORAGELAYOUT *,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/ILayoutStorage.LayoutScript.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"BeginMonitor","package":"druntime","parentType":"ILayoutStorage","signature":"HRESULT BeginMonitor()","url":"/ddoc/druntime/core/sys/windows/objidl/ILayoutStorage.BeginMonitor.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"EndMonitor","package":"druntime","parentType":"ILayoutStorage","signature":"HRESULT EndMonitor()","url":"/ddoc/druntime/core/sys/windows/objidl/ILayoutStorage.EndMonitor.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"ReLayoutDocfile","package":"druntime","parentType":"ILayoutStorage","signature":"HRESULT ReLayoutDocfile(OLECHAR *)","url":"/ddoc/druntime/core/sys/windows/objidl/ILayoutStorage.ReLayoutDocfile.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objidl","name":"IGlobalInterfaceTable","package":"druntime","parentType":"","signature":"IGlobalInterfaceTable : IUnknown","url":"/ddoc/druntime/core/sys/windows/objidl.html#IGlobalInterfaceTable"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RegisterInterfaceInGlobal","package":"druntime","parentType":"IGlobalInterfaceTable","signature":"HRESULT RegisterInterfaceInGlobal(IUnknown,  REFIID,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/objidl/IGlobalInterfaceTable.RegisterInterfaceInGlobal.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"RevokeInterfaceFromGlobal","package":"druntime","parentType":"IGlobalInterfaceTable","signature":"HRESULT RevokeInterfaceFromGlobal(DWORD)","url":"/ddoc/druntime/core/sys/windows/objidl/IGlobalInterfaceTable.RevokeInterfaceFromGlobal.html"},{"doc":"","kind":"method","module":"core.sys.windows.objidl","name":"GetInterfaceFromGlobal","package":"druntime","parentType":"IGlobalInterfaceTable","signature":"HRESULT GetInterfaceFromGlobal(DWORD,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/objidl/IGlobalInterfaceTable.GetInterfaceFromGlobal.html"},{"doc":"","kind":"variable","module":"core.sys.windows.objidl","name":"COLE_DEFAULT_PRINCIPAL","package":"druntime","parentType":"","signature":"OLECHAR * COLE_DEFAULT_PRINCIPAL","url":"/ddoc/druntime/core/sys/windows/objidl.html#COLE_DEFAULT_PRINCIPAL"},{"doc":"","kind":"variable","module":"core.sys.windows.objidl","name":"COLE_DEFAULT_AUTHINFO","package":"druntime","parentType":"","signature":"void * COLE_DEFAULT_AUTHINFO","url":"/ddoc/druntime/core/sys/windows/objidl.html#COLE_DEFAULT_AUTHINFO"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.objsafe","name":"core.sys.windows.objsafe","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/objsafe.html"},{"doc":"","kind":"interface","module":"core.sys.windows.objsafe","name":"IObjectSafety","package":"druntime","parentType":"","signature":"IObjectSafety : IUnknown","url":"/ddoc/druntime/core/sys/windows/objsafe.html#IObjectSafety"},{"doc":"","kind":"method","module":"core.sys.windows.objsafe","name":"GetInterfaceSafetyOptions","package":"druntime","parentType":"IObjectSafety","signature":"HRESULT GetInterfaceSafetyOptions(REFIID,  DWORD *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/objsafe/IObjectSafety.GetInterfaceSafetyOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.objsafe","name":"SetInterfaceSafetyOptions","package":"druntime","parentType":"IObjectSafety","signature":"HRESULT SetInterfaceSafetyOptions(REFIID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/objsafe/IObjectSafety.SetInterfaceSafetyOptions.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ocidl","name":"core.sys.windows.ocidl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ocidl.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IBindHost","package":"druntime","parentType":"","signature":"IBindHost : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IBindHost"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IServiceProvider","package":"druntime","parentType":"","signature":"IServiceProvider : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IServiceProvider"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"QueryService","package":"druntime","parentType":"IServiceProvider","signature":"HRESULT QueryService(REFGUID, REFIID, void * *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IServiceProvider.QueryService.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"TEXTMETRICOLE","package":"druntime","parentType":"","signature":"TEXTMETRICOLE = TEXTMETRICW","url":"/ddoc/druntime/core/sys/windows/ocidl.html#TEXTMETRICOLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPTEXTMETRICOLE","package":"druntime","parentType":"","signature":"LPTEXTMETRICOLE = TEXTMETRICOLE *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPTEXTMETRICOLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_COLOR","package":"druntime","parentType":"","signature":"OLE_COLOR = DWORD","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_COLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_HANDLE","package":"druntime","parentType":"","signature":"OLE_HANDLE = UINT","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_XPOS_HIMETRIC","package":"druntime","parentType":"","signature":"OLE_XPOS_HIMETRIC = int","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_XPOS_HIMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_YPOS_HIMETRIC","package":"druntime","parentType":"","signature":"OLE_YPOS_HIMETRIC = int","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_YPOS_HIMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_XSIZE_HIMETRIC","package":"druntime","parentType":"","signature":"OLE_XSIZE_HIMETRIC = int","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_XSIZE_HIMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"OLE_YSIZE_HIMETRIC","package":"druntime","parentType":"","signature":"OLE_YSIZE_HIMETRIC = int","url":"/ddoc/druntime/core/sys/windows/ocidl.html#OLE_YSIZE_HIMETRIC"},{"doc":"","kind":"enum","module":"core.sys.windows.ocidl","name":"READYSTATE","package":"druntime","parentType":"","signature":"READYSTATE","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"READYSTATE_UNINITIALIZED","package":"druntime","parentType":"","signature":"READYSTATE_UNINITIALIZED = 0","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"READYSTATE_LOADING","package":"druntime","parentType":"","signature":"READYSTATE_LOADING = 1","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"READYSTATE_LOADED","package":"druntime","parentType":"","signature":"READYSTATE_LOADED = 2","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"READYSTATE_INTERACTIVE","package":"druntime","parentType":"","signature":"READYSTATE_INTERACTIVE = 3","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"READYSTATE_COMPLETE","package":"druntime","parentType":"","signature":"READYSTATE_COMPLETE = 4","url":"/ddoc/druntime/core/sys/windows/ocidl.html#READYSTATE"},{"doc":"","kind":"enum","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_UNDEFINED","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_UNDEFINED = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_DATA","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_DATA = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_URL","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_URL = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_OBJECT","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_STREAM","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_STREAM = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_STORAGE","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_STORAGE = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"PROPBAG2_TYPE_MONIKER","package":"druntime","parentType":"","signature":"PROPBAG2_TYPE_MONIKER = ","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"PROPBAG2","package":"druntime","parentType":"","signature":"PROPBAG2","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPBAG2"},{"doc":"","kind":"enum","module":"core.sys.windows.ocidl","name":"QACONTAINERFLAGS","package":"druntime","parentType":"","signature":"QACONTAINERFLAGS","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_SHOWHATCHING","package":"druntime","parentType":"","signature":"QACONTAINER_SHOWHATCHING = 1","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_SHOWGRABHANDLES","package":"druntime","parentType":"","signature":"QACONTAINER_SHOWGRABHANDLES = 2","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_USERMODE","package":"druntime","parentType":"","signature":"QACONTAINER_USERMODE = 4","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_DISPLAYASDEFAULT","package":"druntime","parentType":"","signature":"QACONTAINER_DISPLAYASDEFAULT = 8","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_UIDEAD","package":"druntime","parentType":"","signature":"QACONTAINER_UIDEAD = 16","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_AUTOCLIP","package":"druntime","parentType":"","signature":"QACONTAINER_AUTOCLIP = 32","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_MESSAGEREFLECT","package":"druntime","parentType":"","signature":"QACONTAINER_MESSAGEREFLECT = 64","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ocidl","name":"QACONTAINER_SUPPORTSMNEMONICS","package":"druntime","parentType":"","signature":"QACONTAINER_SUPPORTSMNEMONICS = 128","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINERFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"QACONTAINER","package":"druntime","parentType":"","signature":"QACONTAINER","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTAINER"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"QACONTROL","package":"druntime","parentType":"","signature":"QACONTROL","url":"/ddoc/druntime/core/sys/windows/ocidl.html#QACONTROL"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"POINTF","package":"druntime","parentType":"","signature":"POINTF","url":"/ddoc/druntime/core/sys/windows/ocidl.html#POINTF"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPPOINTF","package":"druntime","parentType":"","signature":"LPPOINTF = POINTF *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPPOINTF"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"CONTROLINFO","package":"druntime","parentType":"","signature":"CONTROLINFO","url":"/ddoc/druntime/core/sys/windows/ocidl.html#CONTROLINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCONTROLINFO","package":"druntime","parentType":"","signature":"LPCONTROLINFO = CONTROLINFO *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCONTROLINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"CONNECTDATA","package":"druntime","parentType":"","signature":"CONNECTDATA","url":"/ddoc/druntime/core/sys/windows/ocidl.html#CONNECTDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCONNECTDATA","package":"druntime","parentType":"","signature":"LPCONNECTDATA = CONNECTDATA *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCONNECTDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"LICINFO","package":"druntime","parentType":"","signature":"LICINFO","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LICINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPLICINFO","package":"druntime","parentType":"","signature":"LPLICINFO = LICINFO *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPLICINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"CAUUID","package":"druntime","parentType":"","signature":"CAUUID","url":"/ddoc/druntime/core/sys/windows/ocidl.html#CAUUID"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCAUUID","package":"druntime","parentType":"","signature":"LPCAUUID = CAUUID *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCAUUID"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"CALPOLESTR","package":"druntime","parentType":"","signature":"CALPOLESTR","url":"/ddoc/druntime/core/sys/windows/ocidl.html#CALPOLESTR"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCALPOLESTR","package":"druntime","parentType":"","signature":"LPCALPOLESTR = CALPOLESTR *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCALPOLESTR"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"CADWORD","package":"druntime","parentType":"","signature":"CADWORD","url":"/ddoc/druntime/core/sys/windows/ocidl.html#CADWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCADWORD","package":"druntime","parentType":"","signature":"LPCADWORD = CADWORD *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCADWORD"},{"doc":"","kind":"struct","module":"core.sys.windows.ocidl","name":"PROPPAGEINFO","package":"druntime","parentType":"","signature":"PROPPAGEINFO","url":"/ddoc/druntime/core/sys/windows/ocidl.html#PROPPAGEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPPROPPAGEINFO","package":"druntime","parentType":"","signature":"LPPROPPAGEINFO = PROPPAGEINFO *","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPPROPPAGEINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleControl","package":"druntime","parentType":"","signature":"IOleControl : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleControl"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetControlInfo","package":"druntime","parentType":"IOleControl","signature":"HRESULT GetControlInfo(LPCONTROLINFO)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControl.GetControlInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnMnemonic","package":"druntime","parentType":"IOleControl","signature":"HRESULT OnMnemonic(LPMSG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControl.OnMnemonic.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnAmbientPropertyChange","package":"druntime","parentType":"IOleControl","signature":"HRESULT OnAmbientPropertyChange(DISPID)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControl.OnAmbientPropertyChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"FreezeEvents","package":"druntime","parentType":"IOleControl","signature":"HRESULT FreezeEvents(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControl.FreezeEvents.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleControlSite","package":"druntime","parentType":"","signature":"IOleControlSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleControlSite"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnControlInfoChanged","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT OnControlInfoChanged()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.OnControlInfoChanged.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"LockInPlaceActive","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT LockInPlaceActive(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.LockInPlaceActive.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetExtendedControl","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT GetExtendedControl(LPDISPATCH *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.GetExtendedControl.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"TransformCoords","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT TransformCoords(POINTL *,  POINTF *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.TransformCoords.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"TranslateAccelerator","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT TranslateAccelerator(LPMSG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.TranslateAccelerator.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnFocus","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT OnFocus(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.OnFocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"ShowPropertyFrame","package":"druntime","parentType":"IOleControlSite","signature":"HRESULT ShowPropertyFrame()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleControlSite.ShowPropertyFrame.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"ISimpleFrameSite","package":"druntime","parentType":"","signature":"ISimpleFrameSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#ISimpleFrameSite"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"PreMessageFilter","package":"druntime","parentType":"ISimpleFrameSite","signature":"HRESULT PreMessageFilter(HWND,  UINT,  WPARAM,  LPARAM,  LRESULT *,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/ISimpleFrameSite.PreMessageFilter.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"PostMessageFilter","package":"druntime","parentType":"ISimpleFrameSite","signature":"HRESULT PostMessageFilter(HWND,  UINT,  WPARAM,  LPARAM,  LRESULT *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/ISimpleFrameSite.PostMessageFilter.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IErrorLog","package":"druntime","parentType":"","signature":"IErrorLog : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IErrorLog"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"AddError","package":"druntime","parentType":"IErrorLog","signature":"HRESULT AddError(LPCOLESTR,  LPEXCEPINFO)","url":"/ddoc/druntime/core/sys/windows/ocidl/IErrorLog.AddError.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPERRORLOG","package":"druntime","parentType":"","signature":"LPERRORLOG = IErrorLog","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPERRORLOG"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyBag","package":"druntime","parentType":"","signature":"IPropertyBag : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyBag"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Read","package":"druntime","parentType":"IPropertyBag","signature":"HRESULT Read(LPCOLESTR,  LPVARIANT,  LPERRORLOG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag.Read.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Write","package":"druntime","parentType":"IPropertyBag","signature":"HRESULT Write(LPCOLESTR,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag.Write.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPPROPERTYBAG","package":"druntime","parentType":"","signature":"LPPROPERTYBAG = IPropertyBag","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPPROPERTYBAG"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyBag2","package":"druntime","parentType":"","signature":"IPropertyBag2 : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyBag2"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Read","package":"druntime","parentType":"IPropertyBag2","signature":"HRESULT Read(ULONG,  PROPBAG2 *,  LPERRORLOG,  VARIANT *,  HRESULT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag2.Read.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Write","package":"druntime","parentType":"IPropertyBag2","signature":"HRESULT Write(ULONG,  PROPBAG2 *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag2.Write.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"CountProperties","package":"druntime","parentType":"IPropertyBag2","signature":"HRESULT CountProperties(ULONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag2.CountProperties.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPropertyInfo","package":"druntime","parentType":"IPropertyBag2","signature":"HRESULT GetPropertyInfo(ULONG,  ULONG,  PROPBAG2 *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag2.GetPropertyInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"LoadObject","package":"druntime","parentType":"IPropertyBag2","signature":"HRESULT LoadObject(LPCOLESTR,  DWORD,  IUnknown,  LPERRORLOG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyBag2.LoadObject.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPPROPERTYBAG2","package":"druntime","parentType":"","signature":"LPPROPERTYBAG2 = IPropertyBag2","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPPROPERTYBAG2"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPersistPropertyBag","package":"druntime","parentType":"","signature":"IPersistPropertyBag : IPersist","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPersistPropertyBag"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InitNew","package":"druntime","parentType":"IPersistPropertyBag","signature":"HRESULT InitNew()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag.InitNew.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Load","package":"druntime","parentType":"IPersistPropertyBag","signature":"HRESULT Load(LPPROPERTYBAG,  LPERRORLOG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Save","package":"druntime","parentType":"IPersistPropertyBag","signature":"HRESULT Save(LPPROPERTYBAG,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag.Save.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPersistPropertyBag2","package":"druntime","parentType":"","signature":"IPersistPropertyBag2 : IPersist","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPersistPropertyBag2"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InitNew","package":"druntime","parentType":"IPersistPropertyBag2","signature":"HRESULT InitNew()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag2.InitNew.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Load","package":"druntime","parentType":"IPersistPropertyBag2","signature":"HRESULT Load(LPPROPERTYBAG2,  LPERRORLOG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag2.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Save","package":"druntime","parentType":"IPersistPropertyBag2","signature":"HRESULT Save(LPPROPERTYBAG2,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag2.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"IsDirty","package":"druntime","parentType":"IPersistPropertyBag2","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistPropertyBag2.IsDirty.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPersistStreamInit","package":"druntime","parentType":"","signature":"IPersistStreamInit : IPersist","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPersistStreamInit"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"IsDirty","package":"druntime","parentType":"IPersistStreamInit","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistStreamInit.IsDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Load","package":"druntime","parentType":"IPersistStreamInit","signature":"HRESULT Load(LPSTREAM)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistStreamInit.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Save","package":"druntime","parentType":"IPersistStreamInit","signature":"HRESULT Save(LPSTREAM,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistStreamInit.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetSizeMax","package":"druntime","parentType":"IPersistStreamInit","signature":"HRESULT GetSizeMax(PULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistStreamInit.GetSizeMax.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InitNew","package":"druntime","parentType":"IPersistStreamInit","signature":"HRESULT InitNew()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistStreamInit.InitNew.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPersistMemory","package":"druntime","parentType":"","signature":"IPersistMemory : IPersist","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPersistMemory"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"IsDirty","package":"druntime","parentType":"IPersistMemory","signature":"HRESULT IsDirty()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistMemory.IsDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Load","package":"druntime","parentType":"IPersistMemory","signature":"HRESULT Load(PVOID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistMemory.Load.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Save","package":"druntime","parentType":"IPersistMemory","signature":"HRESULT Save(PVOID,  BOOL,  ULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistMemory.Save.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetSizeMax","package":"druntime","parentType":"IPersistMemory","signature":"HRESULT GetSizeMax(PULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistMemory.GetSizeMax.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InitNew","package":"druntime","parentType":"IPersistMemory","signature":"HRESULT InitNew()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPersistMemory.InitNew.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyNotifySink","package":"druntime","parentType":"","signature":"IPropertyNotifySink : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyNotifySink"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnChanged","package":"druntime","parentType":"IPropertyNotifySink","signature":"HRESULT OnChanged(DISPID)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyNotifySink.OnChanged.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnRequestEdit","package":"druntime","parentType":"IPropertyNotifySink","signature":"HRESULT OnRequestEdit(DISPID)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyNotifySink.OnRequestEdit.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IProvideClassInfo","package":"druntime","parentType":"","signature":"IProvideClassInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IProvideClassInfo"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetClassInfo","package":"druntime","parentType":"IProvideClassInfo","signature":"HRESULT GetClassInfo(LPTYPEINFO *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IProvideClassInfo.GetClassInfo.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IProvideClassInfo2","package":"druntime","parentType":"","signature":"IProvideClassInfo2 : IProvideClassInfo","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IProvideClassInfo2"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetGUID","package":"druntime","parentType":"IProvideClassInfo2","signature":"HRESULT GetGUID(DWORD,  GUID *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IProvideClassInfo2.GetGUID.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IConnectionPointContainer","package":"druntime","parentType":"","signature":"IConnectionPointContainer : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IConnectionPointContainer"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"EnumConnectionPoints","package":"druntime","parentType":"IConnectionPointContainer","signature":"HRESULT EnumConnectionPoints(LPENUMCONNECTIONPOINTS *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPointContainer.EnumConnectionPoints.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"FindConnectionPoint","package":"druntime","parentType":"IConnectionPointContainer","signature":"HRESULT FindConnectionPoint(REFIID,  LPCONNECTIONPOINT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPointContainer.FindConnectionPoint.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IEnumConnectionPoints","package":"druntime","parentType":"","signature":"IEnumConnectionPoints : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IEnumConnectionPoints"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Next","package":"druntime","parentType":"IEnumConnectionPoints","signature":"HRESULT Next(ULONG,  LPCONNECTIONPOINT *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnectionPoints.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Skip","package":"druntime","parentType":"IEnumConnectionPoints","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnectionPoints.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Reset","package":"druntime","parentType":"IEnumConnectionPoints","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnectionPoints.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Clone","package":"druntime","parentType":"IEnumConnectionPoints","signature":"HRESULT Clone(LPENUMCONNECTIONPOINTS *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnectionPoints.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPENUMCONNECTIONPOINTS","package":"druntime","parentType":"","signature":"LPENUMCONNECTIONPOINTS = IEnumConnectionPoints","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPENUMCONNECTIONPOINTS"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IConnectionPoint","package":"druntime","parentType":"","signature":"IConnectionPoint : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IConnectionPoint"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetConnectionInterface","package":"druntime","parentType":"IConnectionPoint","signature":"HRESULT GetConnectionInterface(IID *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPoint.GetConnectionInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetConnectionPointContainer","package":"druntime","parentType":"IConnectionPoint","signature":"HRESULT GetConnectionPointContainer(IConnectionPointContainer *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPoint.GetConnectionPointContainer.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Advise","package":"druntime","parentType":"IConnectionPoint","signature":"HRESULT Advise(LPUNKNOWN,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPoint.Advise.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Unadvise","package":"druntime","parentType":"IConnectionPoint","signature":"HRESULT Unadvise(DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPoint.Unadvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"EnumConnections","package":"druntime","parentType":"IConnectionPoint","signature":"HRESULT EnumConnections(LPENUMCONNECTIONS *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IConnectionPoint.EnumConnections.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPCONNECTIONPOINT","package":"druntime","parentType":"","signature":"LPCONNECTIONPOINT = IConnectionPoint","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPCONNECTIONPOINT"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IEnumConnections","package":"druntime","parentType":"","signature":"IEnumConnections : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IEnumConnections"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Next","package":"druntime","parentType":"IEnumConnections","signature":"HRESULT Next(ULONG,  LPCONNECTDATA,  PULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnections.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Skip","package":"druntime","parentType":"IEnumConnections","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnections.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Reset","package":"druntime","parentType":"IEnumConnections","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnections.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Clone","package":"druntime","parentType":"IEnumConnections","signature":"HRESULT Clone(LPENUMCONNECTIONS *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumConnections.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPENUMCONNECTIONS","package":"druntime","parentType":"","signature":"LPENUMCONNECTIONS = IEnumConnections","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPENUMCONNECTIONS"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IClassFactory2","package":"druntime","parentType":"","signature":"IClassFactory2 : IClassFactory","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IClassFactory2"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetLicInfo","package":"druntime","parentType":"IClassFactory2","signature":"HRESULT GetLicInfo(LPLICINFO)","url":"/ddoc/druntime/core/sys/windows/ocidl/IClassFactory2.GetLicInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"RequestLicKey","package":"druntime","parentType":"IClassFactory2","signature":"HRESULT RequestLicKey(DWORD,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IClassFactory2.RequestLicKey.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"CreateInstanceLic","package":"druntime","parentType":"IClassFactory2","signature":"HRESULT CreateInstanceLic(LPUNKNOWN,  LPUNKNOWN,  REFIID,  BSTR,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IClassFactory2.CreateInstanceLic.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"ISpecifyPropertyPages","package":"druntime","parentType":"","signature":"ISpecifyPropertyPages : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#ISpecifyPropertyPages"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPages","package":"druntime","parentType":"ISpecifyPropertyPages","signature":"HRESULT GetPages(CAUUID *)","url":"/ddoc/druntime/core/sys/windows/ocidl/ISpecifyPropertyPages.GetPages.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPerPropertyBrowsing","package":"druntime","parentType":"","signature":"IPerPropertyBrowsing : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPerPropertyBrowsing"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetDisplayString","package":"druntime","parentType":"IPerPropertyBrowsing","signature":"HRESULT GetDisplayString(DISPID,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPerPropertyBrowsing.GetDisplayString.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"MapPropertyToPage","package":"druntime","parentType":"IPerPropertyBrowsing","signature":"HRESULT MapPropertyToPage(DISPID,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPerPropertyBrowsing.MapPropertyToPage.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPredefinedStrings","package":"druntime","parentType":"IPerPropertyBrowsing","signature":"HRESULT GetPredefinedStrings(DISPID,  CALPOLESTR *,  CADWORD *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPerPropertyBrowsing.GetPredefinedStrings.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPredefinedValue","package":"druntime","parentType":"IPerPropertyBrowsing","signature":"HRESULT GetPredefinedValue(DISPID,  DWORD,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPerPropertyBrowsing.GetPredefinedValue.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyPageSite","package":"druntime","parentType":"","signature":"IPropertyPageSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyPageSite"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnStatusChange","package":"druntime","parentType":"IPropertyPageSite","signature":"HRESULT OnStatusChange(DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPageSite.OnStatusChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetLocaleID","package":"druntime","parentType":"IPropertyPageSite","signature":"HRESULT GetLocaleID(LCID *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPageSite.GetLocaleID.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPageContainer","package":"druntime","parentType":"IPropertyPageSite","signature":"HRESULT GetPageContainer(LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPageSite.GetPageContainer.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"TranslateAccelerator","package":"druntime","parentType":"IPropertyPageSite","signature":"HRESULT TranslateAccelerator(LPMSG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPageSite.TranslateAccelerator.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPPROPERTYPAGESITE","package":"druntime","parentType":"","signature":"LPPROPERTYPAGESITE = IPropertyPageSite","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPPROPERTYPAGESITE"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyPage","package":"druntime","parentType":"","signature":"IPropertyPage : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyPage"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetPageSite","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT SetPageSite(LPPROPERTYPAGESITE)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.SetPageSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Activate","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Activate(HWND,  LPCRECT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Activate.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Deactivate","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Deactivate()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Deactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetPageInfo","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT GetPageInfo(LPPROPPAGEINFO)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.GetPageInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetObjects","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT SetObjects(ULONG,  LPUNKNOWN *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.SetObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Show","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Show(UINT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Show.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Move","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Move(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Move.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"IsPageDirty","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT IsPageDirty()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.IsPageDirty.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Apply","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Apply()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Apply.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Help","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT Help(LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.Help.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"TranslateAccelerator","package":"druntime","parentType":"IPropertyPage","signature":"HRESULT TranslateAccelerator(LPMSG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage.TranslateAccelerator.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPropertyPage2","package":"druntime","parentType":"","signature":"IPropertyPage2 : IPropertyPage","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPropertyPage2"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"EditProperty","package":"druntime","parentType":"IPropertyPage2","signature":"HRESULT EditProperty(DISPID)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPropertyPage2.EditProperty.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IFont","package":"druntime","parentType":"","signature":"IFont : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IFont"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Name","package":"druntime","parentType":"IFont","signature":"HRESULT get_Name(BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Name.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Name","package":"druntime","parentType":"IFont","signature":"HRESULT put_Name(BSTR)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Name.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Size","package":"druntime","parentType":"IFont","signature":"HRESULT get_Size(CY *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Size.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Size","package":"druntime","parentType":"IFont","signature":"HRESULT put_Size(CY)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Size.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Bold","package":"druntime","parentType":"IFont","signature":"HRESULT get_Bold(BOOL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Bold.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Bold","package":"druntime","parentType":"IFont","signature":"HRESULT put_Bold(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Bold.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Italic","package":"druntime","parentType":"IFont","signature":"HRESULT get_Italic(BOOL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Italic.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Italic","package":"druntime","parentType":"IFont","signature":"HRESULT put_Italic(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Italic.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Underline","package":"druntime","parentType":"IFont","signature":"HRESULT get_Underline(BOOL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Underline.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Underline","package":"druntime","parentType":"IFont","signature":"HRESULT put_Underline(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Underline.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Strikethrough","package":"druntime","parentType":"IFont","signature":"HRESULT get_Strikethrough(BOOL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Strikethrough.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Strikethrough","package":"druntime","parentType":"IFont","signature":"HRESULT put_Strikethrough(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Strikethrough.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Weight","package":"druntime","parentType":"IFont","signature":"HRESULT get_Weight(short *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Weight.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Weight","package":"druntime","parentType":"IFont","signature":"HRESULT put_Weight(short)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Weight.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Charset","package":"druntime","parentType":"IFont","signature":"HRESULT get_Charset(short *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_Charset.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_Charset","package":"druntime","parentType":"IFont","signature":"HRESULT put_Charset(short)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.put_Charset.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_hFont","package":"druntime","parentType":"IFont","signature":"HRESULT get_hFont(HFONT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.get_hFont.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Clone","package":"druntime","parentType":"IFont","signature":"HRESULT Clone(IFont *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.Clone.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"IsEqual","package":"druntime","parentType":"IFont","signature":"HRESULT IsEqual(IFont)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.IsEqual.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetRatio","package":"druntime","parentType":"IFont","signature":"HRESULT SetRatio(int,  int)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.SetRatio.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"QueryTextMetrics","package":"druntime","parentType":"IFont","signature":"HRESULT QueryTextMetrics(LPTEXTMETRICOLE)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.QueryTextMetrics.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"AddRefHfont","package":"druntime","parentType":"IFont","signature":"HRESULT AddRefHfont(HFONT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.AddRefHfont.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"ReleaseHfont","package":"druntime","parentType":"IFont","signature":"HRESULT ReleaseHfont(HFONT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.ReleaseHfont.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetHdc","package":"druntime","parentType":"IFont","signature":"HRESULT SetHdc(HDC)","url":"/ddoc/druntime/core/sys/windows/ocidl/IFont.SetHdc.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPFONT","package":"druntime","parentType":"","signature":"LPFONT = IFont","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPFONT"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IFontDisp","package":"druntime","parentType":"","signature":"IFontDisp : IDispatch","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IFontDisp"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPFONTDISP","package":"druntime","parentType":"","signature":"LPFONTDISP = IFontDisp","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPFONTDISP"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPicture","package":"druntime","parentType":"","signature":"IPicture : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPicture"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Handle","package":"druntime","parentType":"IPicture","signature":"HRESULT get_Handle(OLE_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_Handle.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_hPal","package":"druntime","parentType":"IPicture","signature":"HRESULT get_hPal(OLE_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_hPal.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Type","package":"druntime","parentType":"IPicture","signature":"HRESULT get_Type(short *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_Type.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Width","package":"druntime","parentType":"IPicture","signature":"HRESULT get_Width(OLE_XSIZE_HIMETRIC *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_Width.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Height","package":"druntime","parentType":"IPicture","signature":"HRESULT get_Height(OLE_YSIZE_HIMETRIC *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_Height.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Render","package":"druntime","parentType":"IPicture","signature":"HRESULT Render(HDC,  int,  int,  int,  int,  OLE_XPOS_HIMETRIC,\n       OLE_YPOS_HIMETRIC,  OLE_XSIZE_HIMETRIC,  OLE_YSIZE_HIMETRIC,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.Render.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"set_hPal","package":"druntime","parentType":"IPicture","signature":"HRESULT set_hPal(OLE_HANDLE)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.set_hPal.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_CurDC","package":"druntime","parentType":"IPicture","signature":"HRESULT get_CurDC(HDC *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_CurDC.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SelectPicture","package":"druntime","parentType":"IPicture","signature":"HRESULT SelectPicture(HDC,  HDC *,  OLE_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.SelectPicture.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_KeepOriginalFormat","package":"druntime","parentType":"IPicture","signature":"HRESULT get_KeepOriginalFormat(BOOL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_KeepOriginalFormat.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"put_KeepOriginalFormat","package":"druntime","parentType":"IPicture","signature":"HRESULT put_KeepOriginalFormat(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.put_KeepOriginalFormat.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"PictureChanged","package":"druntime","parentType":"IPicture","signature":"HRESULT PictureChanged()","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.PictureChanged.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SaveAsFile","package":"druntime","parentType":"IPicture","signature":"HRESULT SaveAsFile(LPSTREAM,  BOOL,  LONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.SaveAsFile.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"get_Attributes","package":"druntime","parentType":"IPicture","signature":"HRESULT get_Attributes(PDWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPicture.get_Attributes.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPictureDisp","package":"druntime","parentType":"","signature":"IPictureDisp : IDispatch","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPictureDisp"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleInPlaceSiteEx","package":"druntime","parentType":"","signature":"IOleInPlaceSiteEx : IOleInPlaceSite","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleInPlaceSiteEx"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnInPlaceActivateEx","package":"druntime","parentType":"IOleInPlaceSiteEx","signature":"HRESULT OnInPlaceActivateEx(BOOL *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteEx.OnInPlaceActivateEx.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnInPlaceDeactivateEx","package":"druntime","parentType":"IOleInPlaceSiteEx","signature":"HRESULT OnInPlaceDeactivateEx(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteEx.OnInPlaceDeactivateEx.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"RequestUIActivate","package":"druntime","parentType":"IOleInPlaceSiteEx","signature":"HRESULT RequestUIActivate()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteEx.RequestUIActivate.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IObjectWithSite","package":"druntime","parentType":"","signature":"IObjectWithSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IObjectWithSite"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetSite","package":"druntime","parentType":"IObjectWithSite","signature":"HRESULT SetSite(IUnknown)","url":"/ddoc/druntime/core/sys/windows/ocidl/IObjectWithSite.SetSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetSite","package":"druntime","parentType":"IObjectWithSite","signature":"HRESULT GetSite(REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IObjectWithSite.GetSite.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleInPlaceSiteWindowless","package":"druntime","parentType":"","signature":"IOleInPlaceSiteWindowless : IOleInPlaceSiteEx","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleInPlaceSiteWindowless"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"CanWindowlessActivate","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT CanWindowlessActivate()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.CanWindowlessActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetCapture","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT GetCapture()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.GetCapture.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetCapture","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT SetCapture(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.SetCapture.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetFocus","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT GetFocus()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.GetFocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetFocus","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT SetFocus(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.SetFocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetDC","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT GetDC(LPCRECT,  DWORD,  HDC *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.GetDC.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"ReleaseDC","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT ReleaseDC(HDC)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.ReleaseDC.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InvalidateRect","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT InvalidateRect(LPCRECT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.InvalidateRect.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"InvalidateRgn","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT InvalidateRgn(HRGN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.InvalidateRgn.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"ScrollRect","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT ScrollRect(INT,  INT,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.ScrollRect.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"AdjustRect","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT AdjustRect(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.AdjustRect.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnDefWindowMessage","package":"druntime","parentType":"IOleInPlaceSiteWindowless","signature":"HRESULT OnDefWindowMessage(UINT,  WPARAM,  LPARAM,  LRESULT *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleInPlaceSiteWindowless.OnDefWindowMessage.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IAdviseSinkEx","package":"druntime","parentType":"","signature":"IAdviseSinkEx : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IAdviseSinkEx"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnDataChange","package":"druntime","parentType":"IAdviseSinkEx","signature":"void OnDataChange(FORMATETC *,  STGMEDIUM *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnDataChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnViewChange","package":"druntime","parentType":"IAdviseSinkEx","signature":"void OnViewChange(DWORD,  LONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnViewChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnRename","package":"druntime","parentType":"IAdviseSinkEx","signature":"void OnRename(IMoniker)","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnRename.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnSave","package":"druntime","parentType":"IAdviseSinkEx","signature":"void OnSave()","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnSave.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnClose","package":"druntime","parentType":"IAdviseSinkEx","signature":"void OnClose()","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnClose.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnViewStatusChange","package":"druntime","parentType":"IAdviseSinkEx","signature":"HRESULT OnViewStatusChange(DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IAdviseSinkEx.OnViewStatusChange.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IPointerInactive","package":"druntime","parentType":"","signature":"IPointerInactive : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IPointerInactive"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetActivationPolicy","package":"druntime","parentType":"IPointerInactive","signature":"HRESULT GetActivationPolicy(DWORD *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPointerInactive.GetActivationPolicy.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnInactiveMouseMove","package":"druntime","parentType":"IPointerInactive","signature":"HRESULT OnInactiveMouseMove(LPCRECT,  LONG,  LONG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPointerInactive.OnInactiveMouseMove.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnInactiveSetCursor","package":"druntime","parentType":"IPointerInactive","signature":"HRESULT OnInactiveSetCursor(LPCRECT,  LONG,  LONG,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IPointerInactive.OnInactiveSetCursor.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleUndoUnit","package":"druntime","parentType":"","signature":"IOleUndoUnit : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleUndoUnit"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Do","package":"druntime","parentType":"IOleUndoUnit","signature":"HRESULT Do(LPOLEUNDOMANAGER)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoUnit.Do.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetDescription","package":"druntime","parentType":"IOleUndoUnit","signature":"HRESULT GetDescription(BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoUnit.GetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetUnitType","package":"druntime","parentType":"IOleUndoUnit","signature":"HRESULT GetUnitType(CLSID *,  LONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoUnit.GetUnitType.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"OnNextAdd","package":"druntime","parentType":"IOleUndoUnit","signature":"HRESULT OnNextAdd()","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoUnit.OnNextAdd.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleParentUndoUnit","package":"druntime","parentType":"","signature":"IOleParentUndoUnit : IOleUndoUnit","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleParentUndoUnit"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Open","package":"druntime","parentType":"IOleParentUndoUnit","signature":"HRESULT Open(IOleParentUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleParentUndoUnit.Open.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Close","package":"druntime","parentType":"IOleParentUndoUnit","signature":"HRESULT Close(IOleParentUndoUnit,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleParentUndoUnit.Close.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Add","package":"druntime","parentType":"IOleParentUndoUnit","signature":"HRESULT Add(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleParentUndoUnit.Add.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"FindUnit","package":"druntime","parentType":"IOleParentUndoUnit","signature":"HRESULT FindUnit(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleParentUndoUnit.FindUnit.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetParentState","package":"druntime","parentType":"IOleParentUndoUnit","signature":"HRESULT GetParentState(DWORD *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleParentUndoUnit.GetParentState.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IEnumOleUndoUnits","package":"druntime","parentType":"","signature":"IEnumOleUndoUnits : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IEnumOleUndoUnits"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Next","package":"druntime","parentType":"IEnumOleUndoUnits","signature":"HRESULT Next(ULONG,  IOleUndoUnit *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumOleUndoUnits.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Skip","package":"druntime","parentType":"IEnumOleUndoUnits","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumOleUndoUnits.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Reset","package":"druntime","parentType":"IEnumOleUndoUnits","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumOleUndoUnits.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Clone","package":"druntime","parentType":"IEnumOleUndoUnits","signature":"HRESULT Clone(IEnumOleUndoUnits *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IEnumOleUndoUnits.Clone.html"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IOleUndoManager","package":"druntime","parentType":"","signature":"IOleUndoManager : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IOleUndoManager"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Open","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT Open(IOleParentUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.Open.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Close","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT Close(IOleParentUndoUnit,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.Close.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Add","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT Add(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.Add.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetOpenParentState","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT GetOpenParentState(DWORD *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.GetOpenParentState.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"DiscardFrom","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT DiscardFrom(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.DiscardFrom.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"UndoTo","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT UndoTo(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.UndoTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"RedoTo","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT RedoTo(IOleUndoUnit)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.RedoTo.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"EnumUndoable","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT EnumUndoable(IEnumOleUndoUnits *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.EnumUndoable.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"EnumRedoable","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT EnumRedoable(IEnumOleUndoUnits *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.EnumRedoable.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetLastUndoDescription","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT GetLastUndoDescription(BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.GetLastUndoDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetLastRedoDescription","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT GetLastRedoDescription(BSTR *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.GetLastRedoDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"Enable","package":"druntime","parentType":"IOleUndoManager","signature":"HRESULT Enable(BOOL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IOleUndoManager.Enable.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ocidl","name":"LPOLEUNDOMANAGER","package":"druntime","parentType":"","signature":"LPOLEUNDOMANAGER = IOleUndoManager","url":"/ddoc/druntime/core/sys/windows/ocidl.html#LPOLEUNDOMANAGER"},{"doc":"","kind":"interface","module":"core.sys.windows.ocidl","name":"IQuickActivate","package":"druntime","parentType":"","signature":"IQuickActivate : IUnknown","url":"/ddoc/druntime/core/sys/windows/ocidl.html#IQuickActivate"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"QuickActivate","package":"druntime","parentType":"IQuickActivate","signature":"HRESULT QuickActivate(QACONTAINER *,  QACONTROL *)","url":"/ddoc/druntime/core/sys/windows/ocidl/IQuickActivate.QuickActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"SetContentExtent","package":"druntime","parentType":"IQuickActivate","signature":"HRESULT SetContentExtent(LPSIZEL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IQuickActivate.SetContentExtent.html"},{"doc":"","kind":"method","module":"core.sys.windows.ocidl","name":"GetContentExtent","package":"druntime","parentType":"IQuickActivate","signature":"HRESULT GetContentExtent(LPSIZEL)","url":"/ddoc/druntime/core/sys/windows/ocidl/IQuickActivate.GetContentExtent.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.odbcinst","name":"core.sys.windows.odbcinst","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/odbcinst.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"ConfigDSN","package":"druntime","parentType":"","signature":"BOOL ConfigDSN(HWND, WORD, LPCSTR, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/ConfigDSN.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"ConfigDSNW","package":"druntime","parentType":"","signature":"BOOL ConfigDSNW(HWND, WORD, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/ConfigDSNW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"ConfigTranslator","package":"druntime","parentType":"","signature":"BOOL ConfigTranslator(HWND, DWORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/ConfigTranslator.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLConfigDataSource","package":"druntime","parentType":"","signature":"BOOL SQLConfigDataSource(HWND, WORD, LPCSTR, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLConfigDataSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLConfigDataSourceW","package":"druntime","parentType":"","signature":"BOOL SQLConfigDataSourceW(HWND, WORD, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLConfigDataSourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLCreateDataSource","package":"druntime","parentType":"","signature":"BOOL SQLCreateDataSource(HWND, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLCreateDataSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLCreateDataSourceW","package":"druntime","parentType":"","signature":"BOOL SQLCreateDataSourceW(HWND, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLCreateDataSourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetAvailableDrivers","package":"druntime","parentType":"","signature":"BOOL SQLGetAvailableDrivers(LPCSTR, LPSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetAvailableDrivers.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetAvailableDriversW","package":"druntime","parentType":"","signature":"BOOL SQLGetAvailableDriversW(LPCWSTR, LPWSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetAvailableDriversW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetInstalledDrivers","package":"druntime","parentType":"","signature":"BOOL SQLGetInstalledDrivers(LPSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetInstalledDrivers.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetInstalledDriversW","package":"druntime","parentType":"","signature":"BOOL SQLGetInstalledDriversW(LPWSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetInstalledDriversW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetPrivateProfileString","package":"druntime","parentType":"","signature":"int SQLGetPrivateProfileString(LPCSTR, LPCSTR, LPCSTR, LPSTR, int, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetPrivateProfileString.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetPrivateProfileStringW","package":"druntime","parentType":"","signature":"int SQLGetPrivateProfileStringW(LPCWSTR, LPCWSTR, LPCWSTR, LPWSTR, int, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetPrivateProfileStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetTranslator","package":"druntime","parentType":"","signature":"BOOL SQLGetTranslator(HWND, LPSTR, WORD, WORD *, LPSTR, WORD, WORD *, DWORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetTranslator.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLGetTranslatorW","package":"druntime","parentType":"","signature":"BOOL SQLGetTranslatorW(HWND, LPWSTR, WORD, WORD *, LPWSTR, WORD, WORD *, DWORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLGetTranslatorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallDriver","package":"druntime","parentType":"","signature":"BOOL SQLInstallDriver(LPCSTR, LPCSTR, LPSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallDriver.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallDriverManager","package":"druntime","parentType":"","signature":"BOOL SQLInstallDriverManager(LPSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallDriverManager.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallDriverManagerW","package":"druntime","parentType":"","signature":"BOOL SQLInstallDriverManagerW(LPWSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallDriverManagerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallDriverW","package":"druntime","parentType":"","signature":"BOOL SQLInstallDriverW(LPCWSTR, LPCWSTR, LPWSTR, WORD, WORD *)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallODBC","package":"druntime","parentType":"","signature":"BOOL SQLInstallODBC(HWND, LPCSTR, LPCSTR, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallODBC.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLInstallODBCW","package":"druntime","parentType":"","signature":"BOOL SQLInstallODBCW(HWND, LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLInstallODBCW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLManageDataSources","package":"druntime","parentType":"","signature":"BOOL SQLManageDataSources(HWND)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLManageDataSources.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLRemoveDefaultDataSource","package":"druntime","parentType":"","signature":"BOOL SQLRemoveDefaultDataSource()","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLRemoveDefaultDataSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLRemoveDSNFromIni","package":"druntime","parentType":"","signature":"BOOL SQLRemoveDSNFromIni(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLRemoveDSNFromIni.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLRemoveDSNFromIniW","package":"druntime","parentType":"","signature":"BOOL SQLRemoveDSNFromIniW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLRemoveDSNFromIniW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLValidDSN","package":"druntime","parentType":"","signature":"BOOL SQLValidDSN(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLValidDSN.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLValidDSNW","package":"druntime","parentType":"","signature":"BOOL SQLValidDSNW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLValidDSNW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLWriteDSNToIni","package":"druntime","parentType":"","signature":"BOOL SQLWriteDSNToIni(LPCSTR, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLWriteDSNToIni.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLWriteDSNToIniW","package":"druntime","parentType":"","signature":"BOOL SQLWriteDSNToIniW(LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLWriteDSNToIniW.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLWritePrivateProfileString","package":"druntime","parentType":"","signature":"BOOL SQLWritePrivateProfileString(LPCSTR, LPCSTR, LPCSTR, LPCSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLWritePrivateProfileString.html"},{"doc":"","kind":"function","module":"core.sys.windows.odbcinst","name":"SQLWritePrivateProfileStringW","package":"druntime","parentType":"","signature":"BOOL SQLWritePrivateProfileStringW(LPCWSTR, LPCWSTR, LPCWSTR, LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/odbcinst/SQLWritePrivateProfileStringW.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ole","name":"core.sys.windows.ole","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ole.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleDelete","package":"druntime","parentType":"","signature":"OLESTATUS OleDelete(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleDelete.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRelease","package":"druntime","parentType":"","signature":"OLESTATUS OleRelease(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleRelease.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSaveToStream","package":"druntime","parentType":"","signature":"OLESTATUS OleSaveToStream(LPOLEOBJECT,  LPOLESTREAM)","url":"/ddoc/druntime/core/sys/windows/ole/OleSaveToStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleEqual","package":"druntime","parentType":"","signature":"OLESTATUS OleEqual(LPOLEOBJECT,  LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleEqual.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCopyToClipboard","package":"druntime","parentType":"","signature":"OLESTATUS OleCopyToClipboard(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCopyToClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetHostNames","package":"druntime","parentType":"","signature":"OLESTATUS OleSetHostNames(LPOLEOBJECT,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetHostNames.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetTargetDevice","package":"druntime","parentType":"","signature":"OLESTATUS OleSetTargetDevice(LPOLEOBJECT,  HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetTargetDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetBounds","package":"druntime","parentType":"","signature":"OLESTATUS OleSetBounds(LPOLEOBJECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetBounds.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetColorScheme","package":"druntime","parentType":"","signature":"OLESTATUS OleSetColorScheme(LPOLEOBJECT,  const(LOGPALETTE) *)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetColorScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryBounds","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryBounds(LPOLEOBJECT,  RECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryBounds.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQuerySize","package":"druntime","parentType":"","signature":"OLESTATUS OleQuerySize(LPOLEOBJECT,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/ole/OleQuerySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleDraw","package":"druntime","parentType":"","signature":"OLESTATUS OleDraw(LPOLEOBJECT,  HDC,  LPCRECT,  LPCRECT,  HDC)","url":"/ddoc/druntime/core/sys/windows/ole/OleDraw.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryOpen","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryOpen(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleActivate","package":"druntime","parentType":"","signature":"OLESTATUS OleActivate(LPOLEOBJECT,  UINT,  BOOL,  BOOL,  HWND,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleActivate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleExecute","package":"druntime","parentType":"","signature":"OLESTATUS OleExecute(LPOLEOBJECT,  HGLOBAL,  UINT)","url":"/ddoc/druntime/core/sys/windows/ole/OleExecute.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleClose","package":"druntime","parentType":"","signature":"OLESTATUS OleClose(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleUpdate","package":"druntime","parentType":"","signature":"OLESTATUS OleUpdate(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleUpdate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleReconnect","package":"druntime","parentType":"","signature":"OLESTATUS OleReconnect(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleReconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleGetLinkUpdateOptions","package":"druntime","parentType":"","signature":"OLESTATUS OleGetLinkUpdateOptions(LPOLEOBJECT,  OLEOPT_UPDATE *)","url":"/ddoc/druntime/core/sys/windows/ole/OleGetLinkUpdateOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetLinkUpdateOptions","package":"druntime","parentType":"","signature":"OLESTATUS OleSetLinkUpdateOptions(LPOLEOBJECT,  OLEOPT_UPDATE)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetLinkUpdateOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryProtocol","package":"druntime","parentType":"","signature":"void * OleQueryProtocol(LPOLEOBJECT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryProtocol.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryReleaseStatus","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryReleaseStatus(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryReleaseStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryReleaseError","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryReleaseError(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryReleaseError.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryReleaseMethod","package":"druntime","parentType":"","signature":"OLE_RELEASE_METHOD OleQueryReleaseMethod(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryReleaseMethod.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryType","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryType(LPOLEOBJECT,  LONG *)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryType.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryClientVersion","package":"druntime","parentType":"","signature":"DWORD OleQueryClientVersion()","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryClientVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryServerVersion","package":"druntime","parentType":"","signature":"DWORD OleQueryServerVersion()","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryServerVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleEnumFormats","package":"druntime","parentType":"","signature":"OLECLIPFORMAT OleEnumFormats(LPOLEOBJECT,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleEnumFormats.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleGetData","package":"druntime","parentType":"","signature":"OLESTATUS OleGetData(LPOLEOBJECT,  OLECLIPFORMAT,  HANDLE *)","url":"/ddoc/druntime/core/sys/windows/ole/OleGetData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSetData","package":"druntime","parentType":"","signature":"OLESTATUS OleSetData(LPOLEOBJECT,  OLECLIPFORMAT,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/ole/OleSetData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryOutOfDate","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryOutOfDate(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryOutOfDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRequestData","package":"druntime","parentType":"","signature":"OLESTATUS OleRequestData(LPOLEOBJECT,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleRequestData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryLinkFromClip","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryLinkFromClip(LPCSTR,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryLinkFromClip.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryCreateFromClip","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryCreateFromClip(LPCSTR,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryCreateFromClip.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateFromClip","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateFromClip(LPCSTR,  LPOLECLIENT,  LHCLIENTDOC,  LPCSTR,\n       LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateFromClip.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateLinkFromClip","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateLinkFromClip(LPCSTR,  LPOLECLIENT,  LHCLIENTDOC,  LPCSTR,\n       LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateLinkFromClip.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateFromFile","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateFromFile(LPCSTR,  LPOLECLIENT,  LPCSTR,  LPCSTR,\n       LHCLIENTDOC,  LPCSTR,  LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateFromFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateLinkFromFile","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateLinkFromFile(LPCSTR,  LPOLECLIENT,  LPCSTR,  LPCSTR,\n       LPCSTR,  LHCLIENTDOC,  LPCSTR,  LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateLinkFromFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleLoadFromStream","package":"druntime","parentType":"","signature":"OLESTATUS OleLoadFromStream(LPOLESTREAM,  LPCSTR,  LPOLECLIENT,  LHCLIENTDOC,\n       LPCSTR,  LPOLEOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleLoadFromStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreate","package":"druntime","parentType":"","signature":"OLESTATUS OleCreate(LPCSTR,  LPOLECLIENT,  LPCSTR,  LHCLIENTDOC,  LPCSTR,\n       LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateInvisible","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateInvisible(LPCSTR,  LPOLECLIENT,  LPCSTR,  LHCLIENTDOC,\n       LPCSTR,  LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateInvisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCreateFromTemplate","package":"druntime","parentType":"","signature":"OLESTATUS OleCreateFromTemplate(LPCSTR,  LPOLECLIENT,  LPCSTR,  LHCLIENTDOC,\n       LPCSTR,  LPOLEOBJECT *,  OLEOPT_RENDER,  OLECLIPFORMAT)","url":"/ddoc/druntime/core/sys/windows/ole/OleCreateFromTemplate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleClone","package":"druntime","parentType":"","signature":"OLESTATUS OleClone(LPOLEOBJECT,  LPOLECLIENT,  LHCLIENTDOC,  LPCSTR,\n       LPOLEOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleClone.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleCopyFromLink","package":"druntime","parentType":"","signature":"OLESTATUS OleCopyFromLink(LPOLEOBJECT,  LPCSTR,  LPOLECLIENT,  LHCLIENTDOC,\n       LPCSTR,  LPOLEOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleCopyFromLink.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleObjectConvert","package":"druntime","parentType":"","signature":"OLESTATUS OleObjectConvert(LPOLEOBJECT,  LPCSTR,  LPOLECLIENT,  LHCLIENTDOC,\n       LPCSTR,  LPOLEOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleObjectConvert.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRename","package":"druntime","parentType":"","signature":"OLESTATUS OleRename(LPOLEOBJECT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ole/OleRename.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleQueryName","package":"druntime","parentType":"","signature":"OLESTATUS OleQueryName(LPOLEOBJECT,  LPSTR,  UINT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleQueryName.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevokeObject","package":"druntime","parentType":"","signature":"OLESTATUS OleRevokeObject(LPOLECLIENT)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevokeObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleIsDcMeta","package":"druntime","parentType":"","signature":"BOOL OleIsDcMeta(HDC)","url":"/ddoc/druntime/core/sys/windows/ole/OleIsDcMeta.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRegisterClientDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRegisterClientDoc(LPCSTR,  LPCSTR,  LONG,  LHCLIENTDOC *)","url":"/ddoc/druntime/core/sys/windows/ole/OleRegisterClientDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevokeClientDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRevokeClientDoc(LHCLIENTDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevokeClientDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRenameClientDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRenameClientDoc(LHCLIENTDOC,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ole/OleRenameClientDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevertClientDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRevertClientDoc(LHCLIENTDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevertClientDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSavedClientDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleSavedClientDoc(LHCLIENTDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleSavedClientDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleEnumObjects","package":"druntime","parentType":"","signature":"OLESTATUS OleEnumObjects(LHCLIENTDOC,  LPOLEOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole/OleEnumObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRegisterServer","package":"druntime","parentType":"","signature":"OLESTATUS OleRegisterServer(LPCSTR,  LPOLESERVER,  LHSERVER *,  HINSTANCE,\n       OLE_SERVER_USE)","url":"/ddoc/druntime/core/sys/windows/ole/OleRegisterServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevokeServer","package":"druntime","parentType":"","signature":"OLESTATUS OleRevokeServer(LHSERVER)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevokeServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleBlockServer","package":"druntime","parentType":"","signature":"OLESTATUS OleBlockServer(LHSERVER)","url":"/ddoc/druntime/core/sys/windows/ole/OleBlockServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleUnblockServer","package":"druntime","parentType":"","signature":"OLESTATUS OleUnblockServer(LHSERVER,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/ole/OleUnblockServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleLockServer","package":"druntime","parentType":"","signature":"OLESTATUS OleLockServer(LPOLEOBJECT,  LHSERVER *)","url":"/ddoc/druntime/core/sys/windows/ole/OleLockServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleUnlockServer","package":"druntime","parentType":"","signature":"OLESTATUS OleUnlockServer(LHSERVER)","url":"/ddoc/druntime/core/sys/windows/ole/OleUnlockServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRegisterServerDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRegisterServerDoc(LHSERVER,  LPCSTR,  LPOLESERVERDOC,\n       LHSERVERDOC *)","url":"/ddoc/druntime/core/sys/windows/ole/OleRegisterServerDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevokeServerDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRevokeServerDoc(LHSERVERDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevokeServerDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRenameServerDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRenameServerDoc(LHSERVERDOC,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ole/OleRenameServerDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleRevertServerDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleRevertServerDoc(LHSERVERDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleRevertServerDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole","name":"OleSavedServerDoc","package":"druntime","parentType":"","signature":"OLESTATUS OleSavedServerDoc(LHSERVERDOC)","url":"/ddoc/druntime/core/sys/windows/ole/OleSavedServerDoc.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"OLE_LPCSTR","package":"druntime","parentType":"","signature":"OLE_LPCSTR = LPCSTR","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_LPCSTR"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLETARGETDEVICE","package":"druntime","parentType":"","signature":"OLETARGETDEVICE","url":"/ddoc/druntime/core/sys/windows/ole.html#OLETARGETDEVICE"},{"doc":"","kind":"method","module":"core.sys.windows.ole","name":"otdData","package":"druntime","parentType":"OLETARGETDEVICE","signature":"BYTE * otdData()","url":"/ddoc/druntime/core/sys/windows/ole/OLETARGETDEVICE.otdData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLETARGETDEVICE","package":"druntime","parentType":"","signature":"LPOLETARGETDEVICE = OLETARGETDEVICE *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLETARGETDEVICE"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLESTATUS","package":"druntime","parentType":"","signature":"OLESTATUS","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_OK","package":"druntime","parentType":"","signature":"OLE_OK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_WAIT_FOR_RELEASE","package":"druntime","parentType":"","signature":"OLE_WAIT_FOR_RELEASE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_BUSY","package":"druntime","parentType":"","signature":"OLE_BUSY = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_PROTECT_ONLY","package":"druntime","parentType":"","signature":"OLE_ERROR_PROTECT_ONLY = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_MEMORY","package":"druntime","parentType":"","signature":"OLE_ERROR_MEMORY = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_STREAM","package":"druntime","parentType":"","signature":"OLE_ERROR_STREAM = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_STATIC","package":"druntime","parentType":"","signature":"OLE_ERROR_STATIC = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_BLANK","package":"druntime","parentType":"","signature":"OLE_ERROR_BLANK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_DRAW","package":"druntime","parentType":"","signature":"OLE_ERROR_DRAW = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_METAFILE","package":"druntime","parentType":"","signature":"OLE_ERROR_METAFILE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ABORT","package":"druntime","parentType":"","signature":"OLE_ERROR_ABORT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_CLIPBOARD","package":"druntime","parentType":"","signature":"OLE_ERROR_CLIPBOARD = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_FORMAT","package":"druntime","parentType":"","signature":"OLE_ERROR_FORMAT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_OBJECT","package":"druntime","parentType":"","signature":"OLE_ERROR_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_OPTION","package":"druntime","parentType":"","signature":"OLE_ERROR_OPTION = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_PROTOCOL","package":"druntime","parentType":"","signature":"OLE_ERROR_PROTOCOL = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ADDRESS","package":"druntime","parentType":"","signature":"OLE_ERROR_ADDRESS = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NOT_EQUAL","package":"druntime","parentType":"","signature":"OLE_ERROR_NOT_EQUAL = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_HANDLE","package":"druntime","parentType":"","signature":"OLE_ERROR_HANDLE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_GENERIC","package":"druntime","parentType":"","signature":"OLE_ERROR_GENERIC = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_CLASS","package":"druntime","parentType":"","signature":"OLE_ERROR_CLASS = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_SYNTAX","package":"druntime","parentType":"","signature":"OLE_ERROR_SYNTAX = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_DATATYPE","package":"druntime","parentType":"","signature":"OLE_ERROR_DATATYPE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_PALETTE","package":"druntime","parentType":"","signature":"OLE_ERROR_PALETTE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NOT_LINK","package":"druntime","parentType":"","signature":"OLE_ERROR_NOT_LINK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NOT_EMPTY","package":"druntime","parentType":"","signature":"OLE_ERROR_NOT_EMPTY = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_SIZE","package":"druntime","parentType":"","signature":"OLE_ERROR_SIZE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_DRIVE","package":"druntime","parentType":"","signature":"OLE_ERROR_DRIVE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NETWORK","package":"druntime","parentType":"","signature":"OLE_ERROR_NETWORK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NAME","package":"druntime","parentType":"","signature":"OLE_ERROR_NAME = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_TEMPLATE","package":"druntime","parentType":"","signature":"OLE_ERROR_TEMPLATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NEW","package":"druntime","parentType":"","signature":"OLE_ERROR_NEW = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_EDIT","package":"druntime","parentType":"","signature":"OLE_ERROR_EDIT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_OPEN","package":"druntime","parentType":"","signature":"OLE_ERROR_OPEN = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_NOT_OPEN","package":"druntime","parentType":"","signature":"OLE_ERROR_NOT_OPEN = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_LAUNCH","package":"druntime","parentType":"","signature":"OLE_ERROR_LAUNCH = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_COMM","package":"druntime","parentType":"","signature":"OLE_ERROR_COMM = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_TERMINATE","package":"druntime","parentType":"","signature":"OLE_ERROR_TERMINATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_COMMAND","package":"druntime","parentType":"","signature":"OLE_ERROR_COMMAND = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_SHOW","package":"druntime","parentType":"","signature":"OLE_ERROR_SHOW = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_DOVERB","package":"druntime","parentType":"","signature":"OLE_ERROR_DOVERB = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ADVISE_NATIVE","package":"druntime","parentType":"","signature":"OLE_ERROR_ADVISE_NATIVE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ADVISE_PICT","package":"druntime","parentType":"","signature":"OLE_ERROR_ADVISE_PICT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ADVISE_RENAME","package":"druntime","parentType":"","signature":"OLE_ERROR_ADVISE_RENAME = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_POKE_NATIVE","package":"druntime","parentType":"","signature":"OLE_ERROR_POKE_NATIVE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_REQUEST_NATIVE","package":"druntime","parentType":"","signature":"OLE_ERROR_REQUEST_NATIVE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_REQUEST_PICT","package":"druntime","parentType":"","signature":"OLE_ERROR_REQUEST_PICT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_SERVER_BLOCKED","package":"druntime","parentType":"","signature":"OLE_ERROR_SERVER_BLOCKED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_REGISTRATION","package":"druntime","parentType":"","signature":"OLE_ERROR_REGISTRATION = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_ALREADY_REGISTERED","package":"druntime","parentType":"","signature":"OLE_ERROR_ALREADY_REGISTERED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_TASK","package":"druntime","parentType":"","signature":"OLE_ERROR_TASK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_OUTOFDATE","package":"druntime","parentType":"","signature":"OLE_ERROR_OUTOFDATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_CANT_UPDATE_CLIENT","package":"druntime","parentType":"","signature":"OLE_ERROR_CANT_UPDATE_CLIENT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_UPDATE","package":"druntime","parentType":"","signature":"OLE_ERROR_UPDATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_SETDATA_FORMAT","package":"druntime","parentType":"","signature":"OLE_ERROR_SETDATA_FORMAT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_STATIC_FROM_OTHER_OS","package":"druntime","parentType":"","signature":"OLE_ERROR_STATIC_FROM_OTHER_OS = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ERROR_FILE_VER","package":"druntime","parentType":"","signature":"OLE_ERROR_FILE_VER = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_WARN_DELETE_DATA","package":"druntime","parentType":"","signature":"OLE_WARN_DELETE_DATA = 1000","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTATUS"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLE_NOTIFICATION","package":"druntime","parentType":"","signature":"OLE_NOTIFICATION","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CHANGED","package":"druntime","parentType":"","signature":"OLE_CHANGED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SAVED","package":"druntime","parentType":"","signature":"OLE_SAVED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CLOSED","package":"druntime","parentType":"","signature":"OLE_CLOSED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_RENAMED","package":"druntime","parentType":"","signature":"OLE_RENAMED = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_QUERY_PAINT","package":"druntime","parentType":"","signature":"OLE_QUERY_PAINT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_RELEASE","package":"druntime","parentType":"","signature":"OLE_RELEASE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_QUERY_RETRY","package":"druntime","parentType":"","signature":"OLE_QUERY_RETRY = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_NOTIFICATION"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLE_RELEASE_METHOD","package":"druntime","parentType":"","signature":"OLE_RELEASE_METHOD","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_NONE","package":"druntime","parentType":"","signature":"OLE_NONE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_DELETE","package":"druntime","parentType":"","signature":"OLE_DELETE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_LNKPASTE","package":"druntime","parentType":"","signature":"OLE_LNKPASTE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_EMBPASTE","package":"druntime","parentType":"","signature":"OLE_EMBPASTE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SHOW","package":"druntime","parentType":"","signature":"OLE_SHOW = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_RUN","package":"druntime","parentType":"","signature":"OLE_RUN = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_ACTIVATE","package":"druntime","parentType":"","signature":"OLE_ACTIVATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_UPDATE","package":"druntime","parentType":"","signature":"OLE_UPDATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CLOSE","package":"druntime","parentType":"","signature":"OLE_CLOSE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_RECONNECT","package":"druntime","parentType":"","signature":"OLE_RECONNECT = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SETUPDATEOPTIONS","package":"druntime","parentType":"","signature":"OLE_SETUPDATEOPTIONS = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SERVERUNLAUNCH","package":"druntime","parentType":"","signature":"OLE_SERVERUNLAUNCH = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_LOADFROMSTREAM","package":"druntime","parentType":"","signature":"OLE_LOADFROMSTREAM = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SETDATA","package":"druntime","parentType":"","signature":"OLE_SETDATA = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_REQUESTDATA","package":"druntime","parentType":"","signature":"OLE_REQUESTDATA = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_OTHER","package":"druntime","parentType":"","signature":"OLE_OTHER = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CREATE","package":"druntime","parentType":"","signature":"OLE_CREATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CREATEFROMTEMPLATE","package":"druntime","parentType":"","signature":"OLE_CREATEFROMTEMPLATE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CREATELINKFROMFILE","package":"druntime","parentType":"","signature":"OLE_CREATELINKFROMFILE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_COPYFROMLNK","package":"druntime","parentType":"","signature":"OLE_COPYFROMLNK = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CREATEFROMFILE","package":"druntime","parentType":"","signature":"OLE_CREATEFROMFILE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_CREATEINVISIBLE","package":"druntime","parentType":"","signature":"OLE_CREATEINVISIBLE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_RELEASE_METHOD"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLEOPT_RENDER","package":"druntime","parentType":"","signature":"OLEOPT_RENDER","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_RENDER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"olerender_none","package":"druntime","parentType":"","signature":"olerender_none = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_RENDER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"olerender_draw","package":"druntime","parentType":"","signature":"olerender_draw = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_RENDER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"olerender_format","package":"druntime","parentType":"","signature":"olerender_format = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_RENDER"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"OLECLIPFORMAT","package":"druntime","parentType":"","signature":"OLECLIPFORMAT = WORD","url":"/ddoc/druntime/core/sys/windows/ole.html#OLECLIPFORMAT"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLEOPT_UPDATE","package":"druntime","parentType":"","signature":"OLEOPT_UPDATE","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_UPDATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"oleupdate_always","package":"druntime","parentType":"","signature":"oleupdate_always = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_UPDATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"oleupdate_onsave","package":"druntime","parentType":"","signature":"oleupdate_onsave = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_UPDATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"oleupdate_oncall","package":"druntime","parentType":"","signature":"oleupdate_oncall = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_UPDATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"oleupdate_onclose","package":"druntime","parentType":"","signature":"oleupdate_onclose = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOPT_UPDATE"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"HOBJECT","package":"druntime","parentType":"","signature":"HOBJECT = HANDLE","url":"/ddoc/druntime/core/sys/windows/ole.html#HOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LHSERVER","package":"druntime","parentType":"","signature":"LHSERVER = LONG_PTR","url":"/ddoc/druntime/core/sys/windows/ole.html#LHSERVER"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLEOBJECTVTBL","package":"druntime","parentType":"","signature":"OLEOBJECTVTBL","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOBJECTVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLEOBJECTVTBL","package":"druntime","parentType":"","signature":"LPOLEOBJECTVTBL = OLEOBJECTVTBL *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLEOBJECTVTBL"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLEOBJECT","package":"druntime","parentType":"","signature":"OLEOBJECT","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLEOBJECT","package":"druntime","parentType":"","signature":"LPOLEOBJECT = OLEOBJECT *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLEOBJECT"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLECLIENTVTBL","package":"druntime","parentType":"","signature":"OLECLIENTVTBL","url":"/ddoc/druntime/core/sys/windows/ole.html#OLECLIENTVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLECLIENTVTBL","package":"druntime","parentType":"","signature":"LPOLECLIENTVTBL = OLECLIENTVTBL *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLECLIENTVTBL"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLECLIENT","package":"druntime","parentType":"","signature":"OLECLIENT","url":"/ddoc/druntime/core/sys/windows/ole.html#OLECLIENT"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLECLIENT","package":"druntime","parentType":"","signature":"LPOLECLIENT = OLECLIENT *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLECLIENT"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESTREAMVTBL","package":"druntime","parentType":"","signature":"OLESTREAMVTBL","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTREAMVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESTREAMVTBL","package":"druntime","parentType":"","signature":"LPOLESTREAMVTBL = OLESTREAMVTBL *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESTREAMVTBL"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESTREAM","package":"druntime","parentType":"","signature":"OLESTREAM","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESTREAM"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESTREAM","package":"druntime","parentType":"","signature":"LPOLESTREAM = OLESTREAM *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESTREAM"},{"doc":"","kind":"enum","module":"core.sys.windows.ole","name":"OLE_SERVER_USE","package":"druntime","parentType":"","signature":"OLE_SERVER_USE","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_SERVER_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SERVER_MULTI","package":"druntime","parentType":"","signature":"OLE_SERVER_MULTI = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_SERVER_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ole","name":"OLE_SERVER_SINGLE","package":"druntime","parentType":"","signature":"OLE_SERVER_SINGLE = ","url":"/ddoc/druntime/core/sys/windows/ole.html#OLE_SERVER_USE"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESERVERVTBL","package":"druntime","parentType":"","signature":"OLESERVERVTBL","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESERVERVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESERVERVTBL","package":"druntime","parentType":"","signature":"LPOLESERVERVTBL = OLESERVERVTBL *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESERVERVTBL"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESERVER","package":"druntime","parentType":"","signature":"OLESERVER","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESERVER"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESERVER","package":"druntime","parentType":"","signature":"LPOLESERVER = OLESERVER *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESERVER"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESERVERDOCVTBL","package":"druntime","parentType":"","signature":"OLESERVERDOCVTBL","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESERVERDOCVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESERVERDOCVTBL","package":"druntime","parentType":"","signature":"LPOLESERVERDOCVTBL = OLESERVERDOCVTBL *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESERVERDOCVTBL"},{"doc":"","kind":"struct","module":"core.sys.windows.ole","name":"OLESERVERDOC","package":"druntime","parentType":"","signature":"OLESERVERDOC","url":"/ddoc/druntime/core/sys/windows/ole.html#OLESERVERDOC"},{"doc":"","kind":"alias","module":"core.sys.windows.ole","name":"LPOLESERVERDOC","package":"druntime","parentType":"","signature":"LPOLESERVERDOC = OLESERVERDOC *","url":"/ddoc/druntime/core/sys/windows/ole.html#LPOLESERVERDOC"},{"doc":"","kind":"variable","module":"core.sys.windows.ole","name":"OLEVERB_PRIMARY","package":"druntime","parentType":"","signature":"OLEVERB_PRIMARY","url":"/ddoc/druntime/core/sys/windows/ole.html#OLEVERB_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.ole","name":"OF_SET","package":"druntime","parentType":"","signature":"OF_SET","url":"/ddoc/druntime/core/sys/windows/ole.html#OF_SET"},{"doc":"","kind":"variable","module":"core.sys.windows.ole","name":"OF_GET","package":"druntime","parentType":"","signature":"OF_GET","url":"/ddoc/druntime/core/sys/windows/ole.html#OF_GET"},{"doc":"","kind":"variable","module":"core.sys.windows.ole","name":"OF_HANDLER","package":"druntime","parentType":"","signature":"OF_HANDLER","url":"/ddoc/druntime/core/sys/windows/ole.html#OF_HANDLER"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ole2","name":"core.sys.windows.ole2","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ole2.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"CreateDataAdviseHolder","package":"druntime","parentType":"","signature":"HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *)","url":"/ddoc/druntime/core/sys/windows/ole2/CreateDataAdviseHolder.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleBuildVersion","package":"druntime","parentType":"","signature":"DWORD OleBuildVersion()","url":"/ddoc/druntime/core/sys/windows/ole2/OleBuildVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"ReadClassStg","package":"druntime","parentType":"","signature":"HRESULT ReadClassStg(LPSTORAGE,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/ole2/ReadClassStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"WriteClassStg","package":"druntime","parentType":"","signature":"HRESULT WriteClassStg(LPSTORAGE,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/ole2/WriteClassStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"ReadClassStm","package":"druntime","parentType":"","signature":"HRESULT ReadClassStm(LPSTREAM,  CLSID *)","url":"/ddoc/druntime/core/sys/windows/ole2/ReadClassStm.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"WriteClassStm","package":"druntime","parentType":"","signature":"HRESULT WriteClassStm(LPSTREAM,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/ole2/WriteClassStm.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"WriteFmtUserTypeStg","package":"druntime","parentType":"","signature":"HRESULT WriteFmtUserTypeStg(LPSTORAGE,  CLIPFORMAT,  LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/ole2/WriteFmtUserTypeStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"ReadFmtUserTypeStg","package":"druntime","parentType":"","signature":"HRESULT ReadFmtUserTypeStg(LPSTORAGE,  CLIPFORMAT *,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/ole2/ReadFmtUserTypeStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleInitialize","package":"druntime","parentType":"","signature":"HRESULT OleInitialize(PVOID)","url":"/ddoc/druntime/core/sys/windows/ole2/OleInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleUninitialize","package":"druntime","parentType":"","signature":"void OleUninitialize()","url":"/ddoc/druntime/core/sys/windows/ole2/OleUninitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleQueryLinkFromData","package":"druntime","parentType":"","signature":"HRESULT OleQueryLinkFromData(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleQueryLinkFromData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleQueryCreateFromData","package":"druntime","parentType":"","signature":"HRESULT OleQueryCreateFromData(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleQueryCreateFromData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreate","package":"druntime","parentType":"","signature":"HRESULT OleCreate(REFCLSID,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateFromData","package":"druntime","parentType":"","signature":"HRESULT OleCreateFromData(LPDATAOBJECT,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateFromData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateLinkFromData","package":"druntime","parentType":"","signature":"HRESULT OleCreateLinkFromData(LPDATAOBJECT,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateLinkFromData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateStaticFromData","package":"druntime","parentType":"","signature":"HRESULT OleCreateStaticFromData(LPDATAOBJECT,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateStaticFromData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateLink","package":"druntime","parentType":"","signature":"HRESULT OleCreateLink(LPMONIKER,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateLink.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateLinkToFile","package":"druntime","parentType":"","signature":"HRESULT OleCreateLinkToFile(LPCOLESTR,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateLinkToFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateFromFile","package":"druntime","parentType":"","signature":"HRESULT OleCreateFromFile(REFCLSID,  LPCOLESTR,  REFIID,  DWORD,  LPFORMATETC,  LPOLECLIENTSITE,  LPSTORAGE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateFromFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleLoad","package":"druntime","parentType":"","signature":"HRESULT OleLoad(LPSTORAGE,  REFIID,  LPOLECLIENTSITE,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleLoad.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSave","package":"druntime","parentType":"","signature":"HRESULT OleSave(LPPERSISTSTORAGE,  LPSTORAGE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSave.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleLoadFromStream","package":"druntime","parentType":"","signature":"HRESULT OleLoadFromStream(LPSTREAM,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleLoadFromStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSaveToStream","package":"druntime","parentType":"","signature":"HRESULT OleSaveToStream(LPPERSISTSTREAM,  LPSTREAM)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSaveToStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSetContainedObject","package":"druntime","parentType":"","signature":"HRESULT OleSetContainedObject(LPUNKNOWN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSetContainedObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleNoteObjectVisible","package":"druntime","parentType":"","signature":"HRESULT OleNoteObjectVisible(LPUNKNOWN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleNoteObjectVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"RegisterDragDrop","package":"druntime","parentType":"","signature":"HRESULT RegisterDragDrop(HWND,  LPDROPTARGET)","url":"/ddoc/druntime/core/sys/windows/ole2/RegisterDragDrop.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"RevokeDragDrop","package":"druntime","parentType":"","signature":"HRESULT RevokeDragDrop(HWND)","url":"/ddoc/druntime/core/sys/windows/ole2/RevokeDragDrop.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"DoDragDrop","package":"druntime","parentType":"","signature":"HRESULT DoDragDrop(LPDATAOBJECT,  LPDROPSOURCE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/ole2/DoDragDrop.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSetClipboard","package":"druntime","parentType":"","signature":"HRESULT OleSetClipboard(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSetClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleGetClipboard","package":"druntime","parentType":"","signature":"HRESULT OleGetClipboard(LPDATAOBJECT *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleGetClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleFlushClipboard","package":"druntime","parentType":"","signature":"HRESULT OleFlushClipboard()","url":"/ddoc/druntime/core/sys/windows/ole2/OleFlushClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleIsCurrentClipboard","package":"druntime","parentType":"","signature":"HRESULT OleIsCurrentClipboard(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleIsCurrentClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateMenuDescriptor","package":"druntime","parentType":"","signature":"HOLEMENU OleCreateMenuDescriptor(HMENU,  LPOLEMENUGROUPWIDTHS)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateMenuDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSetMenuDescriptor","package":"druntime","parentType":"","signature":"HRESULT OleSetMenuDescriptor(HOLEMENU,  HWND,  HWND,  LPOLEINPLACEFRAME,  LPOLEINPLACEACTIVEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSetMenuDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleDestroyMenuDescriptor","package":"druntime","parentType":"","signature":"HRESULT OleDestroyMenuDescriptor(HOLEMENU)","url":"/ddoc/druntime/core/sys/windows/ole2/OleDestroyMenuDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleTranslateAccelerator","package":"druntime","parentType":"","signature":"HRESULT OleTranslateAccelerator(LPOLEINPLACEFRAME,  LPOLEINPLACEFRAMEINFO,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/ole2/OleTranslateAccelerator.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleDuplicateData","package":"druntime","parentType":"","signature":"HANDLE OleDuplicateData(HANDLE,  CLIPFORMAT,  UINT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleDuplicateData.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleDraw","package":"druntime","parentType":"","signature":"HRESULT OleDraw(LPUNKNOWN,  DWORD,  HDC,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleDraw.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleRun","package":"druntime","parentType":"","signature":"HRESULT OleRun(LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/ole2/OleRun.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleIsRunning","package":"druntime","parentType":"","signature":"BOOL OleIsRunning(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleIsRunning.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleLockRunning","package":"druntime","parentType":"","signature":"HRESULT OleLockRunning(LPUNKNOWN,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleLockRunning.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"ReleaseStgMedium","package":"druntime","parentType":"","signature":"void ReleaseStgMedium(LPSTGMEDIUM)","url":"/ddoc/druntime/core/sys/windows/ole2/ReleaseStgMedium.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"CreateOleAdviseHolder","package":"druntime","parentType":"","signature":"HRESULT CreateOleAdviseHolder(LPOLEADVISEHOLDER *)","url":"/ddoc/druntime/core/sys/windows/ole2/CreateOleAdviseHolder.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateDefaultHandler","package":"druntime","parentType":"","signature":"HRESULT OleCreateDefaultHandler(REFCLSID,  LPUNKNOWN,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateDefaultHandler.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleCreateEmbeddingHelper","package":"druntime","parentType":"","signature":"HRESULT OleCreateEmbeddingHelper(REFCLSID,  LPUNKNOWN,  DWORD,  LPCLASSFACTORY,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleCreateEmbeddingHelper.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"IsAccelerator","package":"druntime","parentType":"","signature":"BOOL IsAccelerator(HACCEL,  int,  LPMSG,  WORD *)","url":"/ddoc/druntime/core/sys/windows/ole2/IsAccelerator.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleGetIconOfFile","package":"druntime","parentType":"","signature":"HGLOBAL OleGetIconOfFile(LPOLESTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleGetIconOfFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleGetIconOfClass","package":"druntime","parentType":"","signature":"HGLOBAL OleGetIconOfClass(REFCLSID,  LPOLESTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/OleGetIconOfClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleMetafilePictFromIconAndLabel","package":"druntime","parentType":"","signature":"HGLOBAL OleMetafilePictFromIconAndLabel(HICON,  LPOLESTR,  LPOLESTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/ole2/OleMetafilePictFromIconAndLabel.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleRegGetUserType","package":"druntime","parentType":"","signature":"HRESULT OleRegGetUserType(REFCLSID,  DWORD,  LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleRegGetUserType.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleRegGetMiscStatus","package":"druntime","parentType":"","signature":"HRESULT OleRegGetMiscStatus(REFCLSID,  DWORD,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleRegGetMiscStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleRegEnumFormatEtc","package":"druntime","parentType":"","signature":"HRESULT OleRegEnumFormatEtc(REFCLSID,  DWORD,  LPENUMFORMATETC *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleRegEnumFormatEtc.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleRegEnumVerbs","package":"druntime","parentType":"","signature":"HRESULT OleRegEnumVerbs(REFCLSID,  LPENUMOLEVERB *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleRegEnumVerbs.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleConvertOLESTREAMToIStorage","package":"druntime","parentType":"","signature":"HRESULT OleConvertOLESTREAMToIStorage(LPOLESTREAM,  LPSTORAGE,  const(DVTARGETDEVICE) *)","url":"/ddoc/druntime/core/sys/windows/ole2/OleConvertOLESTREAMToIStorage.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleConvertIStorageToOLESTREAM","package":"druntime","parentType":"","signature":"HRESULT OleConvertIStorageToOLESTREAM(LPSTORAGE,  LPOLESTREAM)","url":"/ddoc/druntime/core/sys/windows/ole2/OleConvertIStorageToOLESTREAM.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"GetHGlobalFromILockBytes","package":"druntime","parentType":"","signature":"HRESULT GetHGlobalFromILockBytes(LPLOCKBYTES,  HGLOBAL *)","url":"/ddoc/druntime/core/sys/windows/ole2/GetHGlobalFromILockBytes.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"CreateILockBytesOnHGlobal","package":"druntime","parentType":"","signature":"HRESULT CreateILockBytesOnHGlobal(HGLOBAL,  BOOL,  LPLOCKBYTES *)","url":"/ddoc/druntime/core/sys/windows/ole2/CreateILockBytesOnHGlobal.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"GetHGlobalFromStream","package":"druntime","parentType":"","signature":"HRESULT GetHGlobalFromStream(LPSTREAM,  HGLOBAL *)","url":"/ddoc/druntime/core/sys/windows/ole2/GetHGlobalFromStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"CreateStreamOnHGlobal","package":"druntime","parentType":"","signature":"HRESULT CreateStreamOnHGlobal(HGLOBAL,  BOOL,  LPSTREAM *)","url":"/ddoc/druntime/core/sys/windows/ole2/CreateStreamOnHGlobal.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleDoAutoConvert","package":"druntime","parentType":"","signature":"HRESULT OleDoAutoConvert(LPSTORAGE,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/ole2/OleDoAutoConvert.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleGetAutoConvert","package":"druntime","parentType":"","signature":"HRESULT OleGetAutoConvert(REFCLSID,  LPCLSID)","url":"/ddoc/druntime/core/sys/windows/ole2/OleGetAutoConvert.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleSetAutoConvert","package":"druntime","parentType":"","signature":"HRESULT OleSetAutoConvert(REFCLSID,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/ole2/OleSetAutoConvert.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"GetConvertStg","package":"druntime","parentType":"","signature":"HRESULT GetConvertStg(LPSTORAGE)","url":"/ddoc/druntime/core/sys/windows/ole2/GetConvertStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"SetConvertStg","package":"druntime","parentType":"","signature":"HRESULT SetConvertStg(LPSTORAGE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ole2/SetConvertStg.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleConvertIStorageToOLESTREAMEx","package":"druntime","parentType":"","signature":"HRESULT OleConvertIStorageToOLESTREAMEx(LPSTORAGE,  CLIPFORMAT,  LONG,  LONG,  DWORD,  LPSTGMEDIUM,  LPOLESTREAM)","url":"/ddoc/druntime/core/sys/windows/ole2/OleConvertIStorageToOLESTREAMEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.ole2","name":"OleConvertOLESTREAMToIStorageEx","package":"druntime","parentType":"","signature":"HRESULT OleConvertOLESTREAMToIStorageEx(LPOLESTREAM,  LPSTORAGE,  CLIPFORMAT *,  LONG *,  LONG *,  DWORD *,  LPSTGMEDIUM)","url":"/ddoc/druntime/core/sys/windows/ole2/OleConvertOLESTREAMToIStorageEx.html"},{"doc":"","kind":"struct","module":"core.sys.windows.ole2","name":"OLESTREAM","package":"druntime","parentType":"","signature":"OLESTREAM","url":"/ddoc/druntime/core/sys/windows/ole2.html#OLESTREAM"},{"doc":"","kind":"alias","module":"core.sys.windows.ole2","name":"LPOLESTREAM","package":"druntime","parentType":"","signature":"LPOLESTREAM = OLESTREAM *","url":"/ddoc/druntime/core/sys/windows/ole2.html#LPOLESTREAM"},{"doc":"","kind":"struct","module":"core.sys.windows.ole2","name":"OLESTREAMVTBL","package":"druntime","parentType":"","signature":"OLESTREAMVTBL","url":"/ddoc/druntime/core/sys/windows/ole2.html#OLESTREAMVTBL"},{"doc":"","kind":"alias","module":"core.sys.windows.ole2","name":"LPOLESTREAMVTBL","package":"druntime","parentType":"","signature":"LPOLESTREAMVTBL = OLESTREAMVTBL *","url":"/ddoc/druntime/core/sys/windows/ole2.html#LPOLESTREAMVTBL"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"E_DRAW","package":"druntime","parentType":"","signature":"E_DRAW","url":"/ddoc/druntime/core/sys/windows/ole2.html#E_DRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"DATA_E_FORMATETC","package":"druntime","parentType":"","signature":"DATA_E_FORMATETC","url":"/ddoc/druntime/core/sys/windows/ole2.html#DATA_E_FORMATETC"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"EMBDHLP_INPROC_HANDLER","package":"druntime","parentType":"","signature":"EMBDHLP_INPROC_HANDLER","url":"/ddoc/druntime/core/sys/windows/ole2.html#EMBDHLP_INPROC_HANDLER"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"EMBDHLP_INPROC_SERVER","package":"druntime","parentType":"","signature":"EMBDHLP_INPROC_SERVER","url":"/ddoc/druntime/core/sys/windows/ole2.html#EMBDHLP_INPROC_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"EMBDHLP_CREATENOW","package":"druntime","parentType":"","signature":"EMBDHLP_CREATENOW","url":"/ddoc/druntime/core/sys/windows/ole2.html#EMBDHLP_CREATENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2","name":"EMBDHLP_DELAYCREATE","package":"druntime","parentType":"","signature":"EMBDHLP_DELAYCREATE","url":"/ddoc/druntime/core/sys/windows/ole2.html#EMBDHLP_DELAYCREATE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ole2ver","name":"core.sys.windows.ole2ver","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ole2ver.html"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2ver","name":"rmm","package":"druntime","parentType":"","signature":"rmm","url":"/ddoc/druntime/core/sys/windows/ole2ver.html#rmm"},{"doc":"","kind":"variable","module":"core.sys.windows.ole2ver","name":"rup","package":"druntime","parentType":"","signature":"rup","url":"/ddoc/druntime/core/sys/windows/ole2ver.html#rup"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.oleacc","name":"core.sys.windows.oleacc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/oleacc.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"AccessibleChildren","package":"druntime","parentType":"","signature":"HRESULT AccessibleChildren(IAccessible,  LONG,  LONG,  VARIANT *,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleacc/AccessibleChildren.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"AccessibleObjectFromEvent","package":"druntime","parentType":"","signature":"HRESULT AccessibleObjectFromEvent(HWND,  DWORD,  DWORD,  IAccessible,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/AccessibleObjectFromEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"AccessibleObjectFromPoint","package":"druntime","parentType":"","signature":"HRESULT AccessibleObjectFromPoint(POINT,  IAccessible *,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/AccessibleObjectFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"AccessibleObjectFromWindow","package":"druntime","parentType":"","signature":"HRESULT AccessibleObjectFromWindow(HWND,  DWORD,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleacc/AccessibleObjectFromWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"CreateStdAccessibleObject","package":"druntime","parentType":"","signature":"HRESULT CreateStdAccessibleObject(HWND,  LONG,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleacc/CreateStdAccessibleObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"CreateStdAccessibleProxyA","package":"druntime","parentType":"","signature":"HRESULT CreateStdAccessibleProxyA(HWND,  LPCSTR,  LONG,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleacc/CreateStdAccessibleProxyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"CreateStdAccessibleProxyW","package":"druntime","parentType":"","signature":"HRESULT CreateStdAccessibleProxyW(HWND,  LPCWSTR,  LONG,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleacc/CreateStdAccessibleProxyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"GetOleaccVersionInfo","package":"druntime","parentType":"","signature":"void GetOleaccVersionInfo(DWORD *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/oleacc/GetOleaccVersionInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"GetRoleTextA","package":"druntime","parentType":"","signature":"UINT GetRoleTextA(DWORD,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/oleacc/GetRoleTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"GetRoleTextW","package":"druntime","parentType":"","signature":"UINT GetRoleTextW(DWORD,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/oleacc/GetRoleTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"GetStateTextA","package":"druntime","parentType":"","signature":"UINT GetStateTextA(DWORD,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/oleacc/GetStateTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"GetStateTextW","package":"druntime","parentType":"","signature":"UINT GetStateTextW(DWORD,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/oleacc/GetStateTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"LresultFromObject","package":"druntime","parentType":"","signature":"LRESULT LresultFromObject(REFIID,  WPARAM,  LPUNKNOWN)","url":"/ddoc/druntime/core/sys/windows/oleacc/LresultFromObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"ObjectFromLresult","package":"druntime","parentType":"","signature":"HRESULT ObjectFromLresult(LRESULT,  REFIID,  WPARAM,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleacc/ObjectFromLresult.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleacc","name":"WindowFromAccessibleObject","package":"druntime","parentType":"","signature":"HRESULT WindowFromAccessibleObject(IAccessible,  HWND *)","url":"/ddoc/druntime/core/sys/windows/oleacc/WindowFromAccessibleObject.html"},{"doc":"","kind":"enum","module":"core.sys.windows.oleacc","name":"SELFLAG","package":"druntime","parentType":"","signature":"SELFLAG","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_NONE","package":"druntime","parentType":"","signature":"SELFLAG_NONE = 0","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_TAKEFOCUS","package":"druntime","parentType":"","signature":"SELFLAG_TAKEFOCUS = 1","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_TAKESELECTION","package":"druntime","parentType":"","signature":"SELFLAG_TAKESELECTION = 2","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_EXTENDSELECTION","package":"druntime","parentType":"","signature":"SELFLAG_EXTENDSELECTION = 4","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_ADDSELECTION","package":"druntime","parentType":"","signature":"SELFLAG_ADDSELECTION = 8","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleacc","name":"SELFLAG_REMOVESELECTION","package":"druntime","parentType":"","signature":"SELFLAG_REMOVESELECTION = 16","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG"},{"doc":"","kind":"interface","module":"core.sys.windows.oleacc","name":"IAccessible","package":"druntime","parentType":"","signature":"IAccessible : IDispatch","url":"/ddoc/druntime/core/sys/windows/oleacc.html#IAccessible"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accParent","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accParent(IDispatch *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accParent.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accChildCount","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accChildCount(int *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accChildCount.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accChild","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accChild(VARIANT,  IDispatch *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accChild.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accName","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accName(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accName.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accValue","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accValue(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accValue.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accDescription","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accDescription(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accRole","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accRole(VARIANT,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accRole.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accState","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accState(VARIANT,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accState.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accHelp","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accHelp(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accHelpTopic","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accHelpTopic(BSTR *,  VARIANT,  int *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accHelpTopic.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accKeyboardShortcut","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accKeyboardShortcut(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accKeyboardShortcut.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accFocus","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accFocus(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accFocus.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accSelection","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accSelection(VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accSelection.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"get_accDefaultAction","package":"druntime","parentType":"IAccessible","signature":"HRESULT get_accDefaultAction(VARIANT,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.get_accDefaultAction.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"accSelect","package":"druntime","parentType":"IAccessible","signature":"HRESULT accSelect(int,  VARIANT)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.accSelect.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"accLocation","package":"druntime","parentType":"IAccessible","signature":"HRESULT accLocation(int *,  int *,  int *,  int *,  VARIANT)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.accLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"accNavigate","package":"druntime","parentType":"IAccessible","signature":"HRESULT accNavigate(int,  VARIANT,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.accNavigate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"accHitTest","package":"druntime","parentType":"IAccessible","signature":"HRESULT accHitTest(int,  int,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.accHitTest.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"accDoDefaultAction","package":"druntime","parentType":"IAccessible","signature":"HRESULT accDoDefaultAction(VARIANT)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.accDoDefaultAction.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"put_accName","package":"druntime","parentType":"IAccessible","signature":"HRESULT put_accName(VARIANT,  BSTR)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.put_accName.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleacc","name":"put_accValue","package":"druntime","parentType":"IAccessible","signature":"HRESULT put_accValue(VARIANT,  BSTR)","url":"/ddoc/druntime/core/sys/windows/oleacc/IAccessible.put_accValue.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleacc","name":"LPACCESSIBLE","package":"druntime","parentType":"","signature":"LPACCESSIBLE = IAccessible","url":"/ddoc/druntime/core/sys/windows/oleacc.html#LPACCESSIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleacc","name":"SELFLAG_VALID","package":"druntime","parentType":"","signature":"SELFLAG_VALID","url":"/ddoc/druntime/core/sys/windows/oleacc.html#SELFLAG_VALID"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.oleauto","name":"core.sys.windows.oleauto","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/oleauto.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysAllocString","package":"druntime","parentType":"","signature":"BSTR SysAllocString(const(OLECHAR) *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysAllocString.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysReAllocString","package":"druntime","parentType":"","signature":"int SysReAllocString(BSTR *,  const(OLECHAR) *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysReAllocString.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysAllocStringLen","package":"druntime","parentType":"","signature":"BSTR SysAllocStringLen(const(OLECHAR) *,  uint)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysAllocStringLen.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysReAllocStringLen","package":"druntime","parentType":"","signature":"int SysReAllocStringLen(BSTR *,  const(OLECHAR) *,  uint)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysReAllocStringLen.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysFreeString","package":"druntime","parentType":"","signature":"void SysFreeString(BSTR)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysFreeString.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysStringLen","package":"druntime","parentType":"","signature":"uint SysStringLen(BSTR)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysStringLen.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysStringByteLen","package":"druntime","parentType":"","signature":"uint SysStringByteLen(BSTR)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysStringByteLen.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SysAllocStringByteLen","package":"druntime","parentType":"","signature":"BSTR SysAllocStringByteLen(const(char) *,  uint)","url":"/ddoc/druntime/core/sys/windows/oleauto/SysAllocStringByteLen.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"DosDateTimeToVariantTime","package":"druntime","parentType":"","signature":"int DosDateTimeToVariantTime(ushort,  ushort,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/DosDateTimeToVariantTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantTimeToDosDateTime","package":"druntime","parentType":"","signature":"int VariantTimeToDosDateTime(double,  ushort *,  ushort *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantTimeToDosDateTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantTimeToSystemTime","package":"druntime","parentType":"","signature":"int VariantTimeToSystemTime(double,  LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantTimeToSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SystemTimeToVariantTime","package":"druntime","parentType":"","signature":"int SystemTimeToVariantTime(LPSYSTEMTIME,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SystemTimeToVariantTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUdate","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUdate(UDATE *,  ULONG,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUdate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUdateEx","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUdateEx(UDATE *,  LCID,  ULONG,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUdateEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUdateFromDate","package":"druntime","parentType":"","signature":"HRESULT VarUdateFromDate(DATE,  ULONG,  UDATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUdateFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayAllocDescriptor","package":"druntime","parentType":"","signature":"HRESULT SafeArrayAllocDescriptor(uint,  SAFEARRAY * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayAllocDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayAllocData","package":"druntime","parentType":"","signature":"HRESULT SafeArrayAllocData(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayAllocData.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayCreate","package":"druntime","parentType":"","signature":"SAFEARRAY * SafeArrayCreate(VARTYPE,  uint,  SAFEARRAYBOUND *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayDestroyDescriptor","package":"druntime","parentType":"","signature":"HRESULT SafeArrayDestroyDescriptor(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayDestroyDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayDestroyData","package":"druntime","parentType":"","signature":"HRESULT SafeArrayDestroyData(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayDestroyData.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayDestroy","package":"druntime","parentType":"","signature":"HRESULT SafeArrayDestroy(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayDestroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayRedim","package":"druntime","parentType":"","signature":"HRESULT SafeArrayRedim(SAFEARRAY *,  SAFEARRAYBOUND *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayRedim.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetDim","package":"druntime","parentType":"","signature":"uint SafeArrayGetDim(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetDim.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetElemsize","package":"druntime","parentType":"","signature":"uint SafeArrayGetElemsize(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetElemsize.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetUBound","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetUBound(SAFEARRAY *,  uint,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetUBound.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetLBound","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetLBound(SAFEARRAY *,  uint,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetLBound.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayLock","package":"druntime","parentType":"","signature":"HRESULT SafeArrayLock(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayUnlock","package":"druntime","parentType":"","signature":"HRESULT SafeArrayUnlock(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayAccessData","package":"druntime","parentType":"","signature":"HRESULT SafeArrayAccessData(SAFEARRAY *,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayAccessData.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayUnaccessData","package":"druntime","parentType":"","signature":"HRESULT SafeArrayUnaccessData(SAFEARRAY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayUnaccessData.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetElement","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetElement(SAFEARRAY *,  int *,  void *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetElement.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayPutElement","package":"druntime","parentType":"","signature":"HRESULT SafeArrayPutElement(SAFEARRAY *,  int *,  void *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayPutElement.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayCopy","package":"druntime","parentType":"","signature":"HRESULT SafeArrayCopy(SAFEARRAY *,  SAFEARRAY * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayPtrOfIndex","package":"druntime","parentType":"","signature":"HRESULT SafeArrayPtrOfIndex(SAFEARRAY *,  int *,  void * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayPtrOfIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayCreateVector","package":"druntime","parentType":"","signature":"SAFEARRAY * SafeArrayCreateVector(VARTYPE,  LONG,  ULONG)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayCreateVector.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayCreateVectorEx","package":"druntime","parentType":"","signature":"SAFEARRAY * SafeArrayCreateVectorEx(VARTYPE,  LONG,  ULONG,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayCreateVectorEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayAllocDescriptorEx","package":"druntime","parentType":"","signature":"HRESULT SafeArrayAllocDescriptorEx(VARTYPE,  UINT,  SAFEARRAY * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayAllocDescriptorEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetVartype","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetVartype(SAFEARRAY *,  VARTYPE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetVartype.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArraySetRecordInfo","package":"druntime","parentType":"","signature":"HRESULT SafeArraySetRecordInfo(SAFEARRAY *,  IRecordInfo)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArraySetRecordInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetRecordInfo","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetRecordInfo(SAFEARRAY *,  IRecordInfo *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetRecordInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArraySetIID","package":"druntime","parentType":"","signature":"HRESULT SafeArraySetIID(SAFEARRAY *,  REFGUID)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArraySetIID.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SafeArrayGetIID","package":"druntime","parentType":"","signature":"HRESULT SafeArrayGetIID(SAFEARRAY *,  GUID *)","url":"/ddoc/druntime/core/sys/windows/oleauto/SafeArrayGetIID.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantInit","package":"druntime","parentType":"","signature":"void VariantInit(VARIANTARG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantClear","package":"druntime","parentType":"","signature":"HRESULT VariantClear(VARIANTARG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantClear.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantCopy","package":"druntime","parentType":"","signature":"HRESULT VariantCopy(VARIANTARG *,  VARIANTARG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantCopyInd","package":"druntime","parentType":"","signature":"HRESULT VariantCopyInd(VARIANT *,  VARIANTARG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantCopyInd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantChangeType","package":"druntime","parentType":"","signature":"HRESULT VariantChangeType(VARIANTARG *,  VARIANTARG *,  ushort,  VARTYPE)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantChangeType.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VariantChangeTypeEx","package":"druntime","parentType":"","signature":"HRESULT VariantChangeTypeEx(VARIANTARG *,  VARIANTARG *,  LCID,  ushort,  VARTYPE)","url":"/ddoc/druntime/core/sys/windows/oleauto/VariantChangeTypeEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI2","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI2(short,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI4","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI4(int,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromR4","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromR4(float,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromR8","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromR8(double,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromCy","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromCy(CY,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromDate","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromDate(DATE,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromStr","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromStr(OLECHAR *,  LCID,  uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromDisp(LPDISPATCH,  LCID,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromBool","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromBool(VARIANT_BOOL,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI2FromUI1(ubyte,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromI4","package":"druntime","parentType":"","signature":"HRESULT VarI2FromI4(int,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI2FromR4(float,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI2FromR8(double,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI2FromCy(CY cyIn,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI2FromDate(DATE,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI2FromStr(OLECHAR *,  LCID,  uint,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI2FromDisp(LPDISPATCH,  LCID,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI2FromBool(VARIANT_BOOL,  short *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI4FromUI1(ubyte,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromI2","package":"druntime","parentType":"","signature":"HRESULT VarI4FromI2(short,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI4FromR4(float,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI4FromR8(double,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI4FromCy(CY,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI4FromDate(DATE,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI4FromStr(OLECHAR *,  LCID,  uint,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI4FromDisp(LPDISPATCH,  LCID,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI4FromBool(VARIANT_BOOL,  int *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarR4FromUI1(ubyte,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI2","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI2(short,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI4","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI4(int,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromR8","package":"druntime","parentType":"","signature":"HRESULT VarR4FromR8(double,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromCy","package":"druntime","parentType":"","signature":"HRESULT VarR4FromCy(CY,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromDate","package":"druntime","parentType":"","signature":"HRESULT VarR4FromDate(DATE,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromStr","package":"druntime","parentType":"","signature":"HRESULT VarR4FromStr(OLECHAR *,  LCID,  uint,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarR4FromDisp(LPDISPATCH,  LCID,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromBool","package":"druntime","parentType":"","signature":"HRESULT VarR4FromBool(VARIANT_BOOL,  float *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarR8FromUI1(ubyte,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI2","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI2(short,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI4","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI4(int,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromR4","package":"druntime","parentType":"","signature":"HRESULT VarR8FromR4(float,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromCy","package":"druntime","parentType":"","signature":"HRESULT VarR8FromCy(CY,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDate","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDate(DATE,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromStr","package":"druntime","parentType":"","signature":"HRESULT VarR8FromStr(OLECHAR *,  LCID,  uint,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDisp(LPDISPATCH,  LCID,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromBool","package":"druntime","parentType":"","signature":"HRESULT VarR8FromBool(VARIANT_BOOL,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDec","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDec(DECIMAL *,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUI1(ubyte,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI2","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI2(short,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI4","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI4(int,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromR4","package":"druntime","parentType":"","signature":"HRESULT VarDateFromR4(float,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromR8","package":"druntime","parentType":"","signature":"HRESULT VarDateFromR8(double,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromCy","package":"druntime","parentType":"","signature":"HRESULT VarDateFromCy(CY,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromStr","package":"druntime","parentType":"","signature":"HRESULT VarDateFromStr(OLECHAR *,  LCID,  uint,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarDateFromDisp(LPDISPATCH,  LCID,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromBool","package":"druntime","parentType":"","signature":"HRESULT VarDateFromBool(VARIANT_BOOL,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarCyFromUI1(ubyte,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI2","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI2(short,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI4","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI4(int,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromR4","package":"druntime","parentType":"","signature":"HRESULT VarCyFromR4(float,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromR8","package":"druntime","parentType":"","signature":"HRESULT VarCyFromR8(double,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromDate","package":"druntime","parentType":"","signature":"HRESULT VarCyFromDate(DATE,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromStr","package":"druntime","parentType":"","signature":"HRESULT VarCyFromStr(OLECHAR *,  LCID,  uint,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarCyFromDisp(LPDISPATCH,  LCID,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromBool","package":"druntime","parentType":"","signature":"HRESULT VarCyFromBool(VARIANT_BOOL,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromUI1(ubyte,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI2","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI2(short,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI4","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI4(int,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromR4","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromR4(float,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromR8","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromR8(double,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromCy","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromCy(CY,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromDate","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromDate(DATE,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromDisp(LPDISPATCH,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromBool","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromBool(VARIANT_BOOL,  LCID,  uint,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromUI1(ubyte,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI2","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI2(short,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI4","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI4(int,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromR4","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromR4(float,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromR8","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromR8(double,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromDate","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromDate(DATE,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromCy","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromCy(CY,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromStr","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromStr(OLECHAR *,  LCID,  uint,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromDisp(LPDISPATCH,  LCID,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromR8","package":"druntime","parentType":"","signature":"HRESULT VarDecFromR8(double,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"LHashValOfNameSysA","package":"druntime","parentType":"","signature":"ULONG LHashValOfNameSysA(SYSKIND,  LCID,  const(char) *)","url":"/ddoc/druntime/core/sys/windows/oleauto/LHashValOfNameSysA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"LHashValOfNameSys","package":"druntime","parentType":"","signature":"ULONG LHashValOfNameSys(SYSKIND,  LCID,  const(OLECHAR) *)","url":"/ddoc/druntime/core/sys/windows/oleauto/LHashValOfNameSys.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"LoadTypeLib","package":"druntime","parentType":"","signature":"HRESULT LoadTypeLib(const(OLECHAR) *,  LPTYPELIB *)","url":"/ddoc/druntime/core/sys/windows/oleauto/LoadTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"LoadTypeLibEx","package":"druntime","parentType":"","signature":"HRESULT LoadTypeLibEx(LPCOLESTR,  REGKIND,  LPTYPELIB *)","url":"/ddoc/druntime/core/sys/windows/oleauto/LoadTypeLibEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"LoadRegTypeLib","package":"druntime","parentType":"","signature":"HRESULT LoadRegTypeLib(REFGUID,  WORD,  WORD,  LCID,  LPTYPELIB *)","url":"/ddoc/druntime/core/sys/windows/oleauto/LoadRegTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"QueryPathOfRegTypeLib","package":"druntime","parentType":"","signature":"HRESULT QueryPathOfRegTypeLib(REFGUID,  ushort,  ushort,  LCID,  LPBSTR)","url":"/ddoc/druntime/core/sys/windows/oleauto/QueryPathOfRegTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"RegisterTypeLib","package":"druntime","parentType":"","signature":"HRESULT RegisterTypeLib(LPTYPELIB,  OLECHAR *,  OLECHAR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/RegisterTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"UnRegisterTypeLib","package":"druntime","parentType":"","signature":"HRESULT UnRegisterTypeLib(REFGUID,  WORD,  WORD,  LCID,  SYSKIND)","url":"/ddoc/druntime/core/sys/windows/oleauto/UnRegisterTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"CreateTypeLib","package":"druntime","parentType":"","signature":"HRESULT CreateTypeLib(SYSKIND,  const(OLECHAR) *,  LPCREATETYPELIB *)","url":"/ddoc/druntime/core/sys/windows/oleauto/CreateTypeLib.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"DispGetParam","package":"druntime","parentType":"","signature":"HRESULT DispGetParam(DISPPARAMS *,  UINT,  VARTYPE,  VARIANT *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/DispGetParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"DispGetIDsOfNames","package":"druntime","parentType":"","signature":"HRESULT DispGetIDsOfNames(LPTYPEINFO,  OLECHAR * *,  UINT,  DISPID *)","url":"/ddoc/druntime/core/sys/windows/oleauto/DispGetIDsOfNames.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"DispInvoke","package":"druntime","parentType":"","signature":"HRESULT DispInvoke(void *,  LPTYPEINFO,  DISPID,  WORD,  DISPPARAMS *,  VARIANT *,  EXCEPINFO *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/DispInvoke.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"CreateDispTypeInfo","package":"druntime","parentType":"","signature":"HRESULT CreateDispTypeInfo(INTERFACEDATA *,  LCID,  LPTYPEINFO *)","url":"/ddoc/druntime/core/sys/windows/oleauto/CreateDispTypeInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"CreateStdDispatch","package":"druntime","parentType":"","signature":"HRESULT CreateStdDispatch(IUnknown,  void *,  LPTYPEINFO,  IUnknown *)","url":"/ddoc/druntime/core/sys/windows/oleauto/CreateStdDispatch.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"RegisterActiveObject","package":"druntime","parentType":"","signature":"HRESULT RegisterActiveObject(IUnknown,  REFCLSID,  DWORD,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/oleauto/RegisterActiveObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"RevokeActiveObject","package":"druntime","parentType":"","signature":"HRESULT RevokeActiveObject(DWORD,  void *)","url":"/ddoc/druntime/core/sys/windows/oleauto/RevokeActiveObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"GetActiveObject","package":"druntime","parentType":"","signature":"HRESULT GetActiveObject(REFCLSID,  void *,  IUnknown *)","url":"/ddoc/druntime/core/sys/windows/oleauto/GetActiveObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"SetErrorInfo","package":"druntime","parentType":"","signature":"HRESULT SetErrorInfo(uint,  LPERRORINFO)","url":"/ddoc/druntime/core/sys/windows/oleauto/SetErrorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"GetErrorInfo","package":"druntime","parentType":"","signature":"HRESULT GetErrorInfo(uint,  LPERRORINFO *)","url":"/ddoc/druntime/core/sys/windows/oleauto/GetErrorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"CreateErrorInfo","package":"druntime","parentType":"","signature":"HRESULT CreateErrorInfo(LPCREATEERRORINFO *)","url":"/ddoc/druntime/core/sys/windows/oleauto/CreateErrorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"OaBuildVersion","package":"druntime","parentType":"","signature":"uint OaBuildVersion()","url":"/ddoc/druntime/core/sys/windows/oleauto/OaBuildVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VectorFromBstr","package":"druntime","parentType":"","signature":"HRESULT VectorFromBstr(BSTR,  SAFEARRAY * *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VectorFromBstr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"BstrFromVector","package":"druntime","parentType":"","signature":"HRESULT BstrFromVector(SAFEARRAY *,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/BstrFromVector.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarParseNumFromStr","package":"druntime","parentType":"","signature":"HRESULT VarParseNumFromStr(OLECHAR *,  LCID,  ULONG,  NUMPARSE *,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarParseNumFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarNumFromParseNum","package":"druntime","parentType":"","signature":"HRESULT VarNumFromParseNum(NUMPARSE *,  BYTE *,  ULONG,  VARIANT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarNumFromParseNum.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarAdd","package":"druntime","parentType":"","signature":"HRESULT VarAdd(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarSub","package":"druntime","parentType":"","signature":"HRESULT VarSub(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarSub.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarMul","package":"druntime","parentType":"","signature":"HRESULT VarMul(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarMul.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDiv","package":"druntime","parentType":"","signature":"HRESULT VarDiv(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDiv.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI2","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI2(SHORT,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI4","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI4(LONG,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI8","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI8(LONG64,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromR4","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromR4(FLOAT,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromR8","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromR8(DOUBLE,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromDate","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromDate(DATE,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromBool","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromBool(VARIANT_BOOL,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromI1","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromI1(byte,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromUI2(USHORT,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromUI4(ULONG,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromUI8(ULONG64,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromStr","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromStr(OLECHAR *,  LCID,  ULONG,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromCy","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromCy(CY,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromDec","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromDec(DECIMAL *,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI1FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarUI1FromDisp(IDispatch,  LCID,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI1FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI2FromUI1(BYTE,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromI4","package":"druntime","parentType":"","signature":"HRESULT VarI2FromI4(LONG,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromI8","package":"druntime","parentType":"","signature":"HRESULT VarI2FromI8(LONG64,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI2FromR4(FLOAT,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI2FromR8(DOUBLE,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI2FromDate(DATE,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI2FromBool(VARIANT_BOOL,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromI1","package":"druntime","parentType":"","signature":"HRESULT VarI2FromI1(byte,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarI2FromUI2(USHORT,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarI2FromUI4(ULONG,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarI2FromUI8(ULONG64,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI2FromStr(OLECHAR *,  LCID,  ULONG,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI2FromCy(CY,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromDec","package":"druntime","parentType":"","signature":"HRESULT VarI2FromDec(DECIMAL *,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI2FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI2FromDisp(IDispatch,  LCID,  SHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI2FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI4FromUI1(BYTE,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromI2","package":"druntime","parentType":"","signature":"HRESULT VarI4FromI2(SHORT,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromI8","package":"druntime","parentType":"","signature":"HRESULT VarI4FromI8(LONG64,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI4FromR4(FLOAT,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI4FromR8(DOUBLE,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI4FromDate(DATE,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI4FromBool(VARIANT_BOOL,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromI1","package":"druntime","parentType":"","signature":"HRESULT VarI4FromI1(byte,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarI4FromUI2(USHORT,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarI4FromUI4(ULONG,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarI4FromUI8(ULONG64,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI4FromStr(OLECHAR *,  LCID,  ULONG,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI4FromCy(CY,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromDec","package":"druntime","parentType":"","signature":"HRESULT VarI4FromDec(DECIMAL *,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI4FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI4FromDisp(IDispatch,  LCID,  LONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI4FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI8FromUI1(BYTE,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromI2","package":"druntime","parentType":"","signature":"HRESULT VarI8FromI2(SHORT,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromI4","package":"druntime","parentType":"","signature":"HRESULT VarI8FromI4(LONG,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI8FromR4(FLOAT,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI8FromR8(DOUBLE,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI8FromDate(DATE,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI8FromStr(OLECHAR *,  LCID,  ULONG,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI8FromBool(VARIANT_BOOL,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromI1","package":"druntime","parentType":"","signature":"HRESULT VarI8FromI1(byte,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarI8FromUI2(USHORT,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarI8FromUI4(ULONG,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarI8FromUI8(ULONG64,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromDec","package":"druntime","parentType":"","signature":"HRESULT VarI8FromDec(DECIMAL *  pdecIn,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromInt","package":"druntime","parentType":"","signature":"HRESULT VarI8FromInt(INT intIn,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI8FromCy(CY,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI8FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI8FromDisp(IDispatch,  LCID,  LONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI8FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarR4FromUI1(BYTE,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI2","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI2(SHORT,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI4","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI4(LONG,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI8","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI8(LONG64,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromR8","package":"druntime","parentType":"","signature":"HRESULT VarR4FromR8(DOUBLE,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromDate","package":"druntime","parentType":"","signature":"HRESULT VarR4FromDate(DATE,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromBool","package":"druntime","parentType":"","signature":"HRESULT VarR4FromBool(VARIANT_BOOL,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromI1","package":"druntime","parentType":"","signature":"HRESULT VarR4FromI1(byte,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarR4FromUI2(USHORT,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarR4FromUI4(ULONG,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarR4FromUI8(ULONG64,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromStr","package":"druntime","parentType":"","signature":"HRESULT VarR4FromStr(OLECHAR *,  LCID,  ULONG,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromCy","package":"druntime","parentType":"","signature":"HRESULT VarR4FromCy(CY,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromDec","package":"druntime","parentType":"","signature":"HRESULT VarR4FromDec(DECIMAL *,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarR4FromDisp(IDispatch,  LCID,  FLOAT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarR8FromUI1(BYTE,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI2","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI2(SHORT,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI4","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI4(LONG,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI8","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI8(LONG64,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromR4","package":"druntime","parentType":"","signature":"HRESULT VarR8FromR4(FLOAT,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDate","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDate(DATE,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromBool","package":"druntime","parentType":"","signature":"HRESULT VarR8FromBool(VARIANT_BOOL,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromI1","package":"druntime","parentType":"","signature":"HRESULT VarR8FromI1(byte,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarR8FromUI2(USHORT,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarR8FromUI4(ULONG,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarR8FromUI8(ULONG64,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromStr","package":"druntime","parentType":"","signature":"HRESULT VarR8FromStr(OLECHAR *,  LCID,  ULONG,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromCy","package":"druntime","parentType":"","signature":"HRESULT VarR8FromCy(CY,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDec","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDec(DECIMAL *,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarR8FromDisp(IDispatch,  LCID,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUI1(BYTE,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI2","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI2(SHORT,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI4","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI4(LONG,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI8","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI8(LONG64,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromR4","package":"druntime","parentType":"","signature":"HRESULT VarDateFromR4(FLOAT,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromR8","package":"druntime","parentType":"","signature":"HRESULT VarDateFromR8(DOUBLE,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromStr","package":"druntime","parentType":"","signature":"HRESULT VarDateFromStr(OLECHAR *,  LCID,  ULONG,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromI1","package":"druntime","parentType":"","signature":"HRESULT VarDateFromI1(byte,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUI2","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUI2(USHORT,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUI4","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUI4(ULONG,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromUI8","package":"druntime","parentType":"","signature":"HRESULT VarDateFromUI8(ULONG64,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromBool","package":"druntime","parentType":"","signature":"HRESULT VarDateFromBool(VARIANT_BOOL,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromCy","package":"druntime","parentType":"","signature":"HRESULT VarDateFromCy(CY,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromDec","package":"druntime","parentType":"","signature":"HRESULT VarDateFromDec(DECIMAL *,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDateFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarDateFromDisp(IDispatch,  LCID,  DATE *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDateFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarCyFromUI1(BYTE,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI2","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI2(SHORT sIn,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI4","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI4(LONG,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI8","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI8(LONG64,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromR4","package":"druntime","parentType":"","signature":"HRESULT VarCyFromR4(FLOAT,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromR8","package":"druntime","parentType":"","signature":"HRESULT VarCyFromR8(DOUBLE,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromDate","package":"druntime","parentType":"","signature":"HRESULT VarCyFromDate(DATE,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromStr","package":"druntime","parentType":"","signature":"HRESULT VarCyFromStr(OLECHAR *,  LCID,  ULONG,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromBool","package":"druntime","parentType":"","signature":"HRESULT VarCyFromBool(VARIANT_BOOL,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromI1","package":"druntime","parentType":"","signature":"HRESULT VarCyFromI1(byte,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromUI2","package":"druntime","parentType":"","signature":"HRESULT VarCyFromUI2(USHORT,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromUI4","package":"druntime","parentType":"","signature":"HRESULT VarCyFromUI4(ULONG,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromUI8","package":"druntime","parentType":"","signature":"HRESULT VarCyFromUI8(ULONG64,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromDec","package":"druntime","parentType":"","signature":"HRESULT VarCyFromDec(DECIMAL *,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromStr","package":"druntime","parentType":"","signature":"HRESULT VarCyFromStr(OLECHAR *,  LCID,  ULONG,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarCyFromDisp(IDispatch,  LCID,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromUI1(BYTE,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI2","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI2(SHORT,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI4","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI4(LONG,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI8","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI8(LONG64,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromR4","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromR4(FLOAT,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromR8","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromR8(DOUBLE,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromDate","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromDate(DATE,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromBool","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromBool(VARIANT_BOOL,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromI1","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromI1(byte,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromUI2","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromUI2(USHORT,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromUI8","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromUI8(ULONG64,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromUI4","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromUI4(ULONG,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromCy","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromCy(CY,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromDec","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromDec(DECIMAL *,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarBstrFromDisp(IDispatch,  LCID,  ULONG,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromUI1(BYTE,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI2","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI2(SHORT,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI4","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI4(LONG,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI8","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI8(LONG64,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromR4","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromR4(FLOAT,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromR8","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromR8(DOUBLE,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromDate","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromDate(DATE,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromStr","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromStr(OLECHAR *,  LCID,  ULONG,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromI1","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromI1(byte,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromUI2","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromUI2(USHORT,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromUI4","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromUI4(ULONG,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromUI8","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromUI8(ULONG64,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromCy","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromCy(CY,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromDec","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromDec(DECIMAL *,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBoolFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarBoolFromDisp(IDispatch,  LCID,  VARIANT_BOOL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBoolFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarI1FromUI1(BYTE,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromI2","package":"druntime","parentType":"","signature":"HRESULT VarI1FromI2(SHORT,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromI4","package":"druntime","parentType":"","signature":"HRESULT VarI1FromI4(LONG,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromI8","package":"druntime","parentType":"","signature":"HRESULT VarI1FromI8(LONG64,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromR4","package":"druntime","parentType":"","signature":"HRESULT VarI1FromR4(FLOAT,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromR8","package":"druntime","parentType":"","signature":"HRESULT VarI1FromR8(DOUBLE,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromDate","package":"druntime","parentType":"","signature":"HRESULT VarI1FromDate(DATE,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromStr","package":"druntime","parentType":"","signature":"HRESULT VarI1FromStr(OLECHAR *,  LCID,  ULONG,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromBool","package":"druntime","parentType":"","signature":"HRESULT VarI1FromBool(VARIANT_BOOL,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarI1FromUI2(USHORT,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarI1FromUI4(ULONG,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarI1FromUI8(ULONG64,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromCy","package":"druntime","parentType":"","signature":"HRESULT VarI1FromCy(CY,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromDec","package":"druntime","parentType":"","signature":"HRESULT VarI1FromDec(DECIMAL *,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarI1FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarI1FromDisp(IDispatch,  LCID,  byte *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarI1FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromUI1(BYTE,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromI2","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromI2(SHORT,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromI4","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromI4(LONG,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromI8","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromI8(LONG64,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromR4","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromR4(FLOAT,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromR8","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromR8(DOUBLE,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromDate","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromDate(DATE,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromStr","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromStr(OLECHAR *,  LCID,  ULONG,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromBool","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromBool(VARIANT_BOOL,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromI1","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromI1(byte,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromUI4(ULONG,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromUI8(ULONG64,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromCy","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromCy(CY,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromDec","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromDec(DECIMAL *,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI2FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarUI2FromDisp(IDispatch,  LCID,  USHORT *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI2FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromStr","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromStr(OLECHAR *,  LCID,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromUI1(BYTE,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromI2","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromI2(SHORT,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromI4","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromI4(LONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromI8","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromI8(LONG64,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromR4","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromR4(FLOAT,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromR8","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromR8(DOUBLE,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromDate","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromDate(DATE,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromBool","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromBool(VARIANT_BOOL,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromI1","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromI1(byte,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromUI2(USHORT,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromUI8","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromUI8(ULONG64,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromCy","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromCy(CY,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromDec","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromDec(DECIMAL *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI4FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarUI4FromDisp(IDispatch,  LCID,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI4FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromUI1","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromUI1(BYTE,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromI2","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromI2(SHORT,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromI4","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromI4(LONG,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromI8","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromI8(LONG64,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromR4","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromR4(FLOAT,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromR8","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromR8(DOUBLE,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromDate","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromDate(DATE,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromStr","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromStr(OLECHAR *,  LCID,  ULONG,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromBool","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromBool(VARIANT_BOOL,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromI1","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromI1(byte,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromUI2","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromUI2(USHORT,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromUI4","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromUI4(ULONG,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromDec","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromDec(DECIMAL *,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromDec.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromInt","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromInt(INT,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromCy","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromCy(CY,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarUI8FromDisp","package":"druntime","parentType":"","signature":"HRESULT VarUI8FromDisp(IDispatch,  LCID,  ULONG64 *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarUI8FromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromUI1","package":"druntime","parentType":"","signature":"HRESULT VarDecFromUI1(BYTE,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromUI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromI2","package":"druntime","parentType":"","signature":"HRESULT VarDecFromI2(SHORT,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromI4","package":"druntime","parentType":"","signature":"HRESULT VarDecFromI4(LONG,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromI8","package":"druntime","parentType":"","signature":"HRESULT VarDecFromI8(LONG64,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromR4","package":"druntime","parentType":"","signature":"HRESULT VarDecFromR4(FLOAT,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromR4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromR8","package":"druntime","parentType":"","signature":"HRESULT VarDecFromR8(DOUBLE,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromDate","package":"druntime","parentType":"","signature":"HRESULT VarDecFromDate(DATE,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromDate.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromStr","package":"druntime","parentType":"","signature":"HRESULT VarDecFromStr(OLECHAR *,  LCID,  ULONG,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromStr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromBool","package":"druntime","parentType":"","signature":"HRESULT VarDecFromBool(VARIANT_BOOL,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromBool.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromI1","package":"druntime","parentType":"","signature":"HRESULT VarDecFromI1(byte,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromI1.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromUI2","package":"druntime","parentType":"","signature":"HRESULT VarDecFromUI2(USHORT,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromUI2.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromUI4","package":"druntime","parentType":"","signature":"HRESULT VarDecFromUI4(ULONG,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromUI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromUI8","package":"druntime","parentType":"","signature":"HRESULT VarDecFromUI8(ULONG64,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromUI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromCy","package":"druntime","parentType":"","signature":"HRESULT VarDecFromCy(CY,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromCy.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFromDisp","package":"druntime","parentType":"","signature":"HRESULT VarDecFromDisp(IDispatch,  LCID,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFromDisp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecNeg","package":"druntime","parentType":"","signature":"HRESULT VarDecNeg(const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecNeg.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR4CmpR8","package":"druntime","parentType":"","signature":"HRESULT VarR4CmpR8(float,  double)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR4CmpR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8Pow","package":"druntime","parentType":"","signature":"HRESULT VarR8Pow(double,  double,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8Pow.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarR8Round","package":"druntime","parentType":"","signature":"HRESULT VarR8Round(double,  int,  double *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarR8Round.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecAbs","package":"druntime","parentType":"","signature":"HRESULT VarDecAbs(const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecAbs.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecAdd","package":"druntime","parentType":"","signature":"HRESULT VarDecAdd(const(DECIMAL) *,  const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecCmp","package":"druntime","parentType":"","signature":"HRESULT VarDecCmp(const(DECIMAL) *,  const(DECIMAL) *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecCmpR8","package":"druntime","parentType":"","signature":"HRESULT VarDecCmpR8(const(DECIMAL) *,  DOUBLE)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecCmpR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecDiv","package":"druntime","parentType":"","signature":"HRESULT VarDecDiv(const(DECIMAL) *,  const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecDiv.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecFix","package":"druntime","parentType":"","signature":"HRESULT VarDecFix(const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecFix.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecInt","package":"druntime","parentType":"","signature":"HRESULT VarDecInt(const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecMul","package":"druntime","parentType":"","signature":"HRESULT VarDecMul(const(DECIMAL) *,  const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecMul.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecRound","package":"druntime","parentType":"","signature":"HRESULT VarDecRound(const(DECIMAL) *,  int,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecRound.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDecSub","package":"druntime","parentType":"","signature":"HRESULT VarDecSub(const(DECIMAL) *,  const(DECIMAL) *,  DECIMAL *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDecSub.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyAbs","package":"druntime","parentType":"","signature":"HRESULT VarCyAbs(CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyAbs.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyAdd","package":"druntime","parentType":"","signature":"HRESULT VarCyAdd(CY,  CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyCmp","package":"druntime","parentType":"","signature":"HRESULT VarCyCmp(CY,  CY)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyCmpR8","package":"druntime","parentType":"","signature":"HRESULT VarCyCmpR8(CY,  DOUBLE)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyCmpR8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyFix","package":"druntime","parentType":"","signature":"HRESULT VarCyFix(CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyFix.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyInt","package":"druntime","parentType":"","signature":"HRESULT VarCyInt(CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyMul","package":"druntime","parentType":"","signature":"HRESULT VarCyMul(CY,  CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyMul.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyMulI4","package":"druntime","parentType":"","signature":"HRESULT VarCyMulI4(CY,  LONG,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyMulI4.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyMulI8","package":"druntime","parentType":"","signature":"HRESULT VarCyMulI8(CY,  LONG64,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyMulI8.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyNeg","package":"druntime","parentType":"","signature":"HRESULT VarCyNeg(CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyNeg.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCyRound","package":"druntime","parentType":"","signature":"HRESULT VarCyRound(CY,  INT,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCyRound.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCySub","package":"druntime","parentType":"","signature":"HRESULT VarCySub(CY,  CY,  CY *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCySub.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarAdd","package":"druntime","parentType":"","signature":"HRESULT VarAdd(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarAnd","package":"druntime","parentType":"","signature":"HRESULT VarAnd(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarAnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCat","package":"druntime","parentType":"","signature":"HRESULT VarCat(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCat.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarDiv","package":"druntime","parentType":"","signature":"HRESULT VarDiv(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarDiv.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarEqv","package":"druntime","parentType":"","signature":"HRESULT VarEqv(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarEqv.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarIdiv","package":"druntime","parentType":"","signature":"HRESULT VarIdiv(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarIdiv.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarImp","package":"druntime","parentType":"","signature":"HRESULT VarImp(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarImp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarMod","package":"druntime","parentType":"","signature":"HRESULT VarMod(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarMod.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarMul","package":"druntime","parentType":"","signature":"HRESULT VarMul(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarMul.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarOr","package":"druntime","parentType":"","signature":"HRESULT VarOr(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarOr.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarPow","package":"druntime","parentType":"","signature":"HRESULT VarPow(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarPow.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarSub","package":"druntime","parentType":"","signature":"HRESULT VarSub(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarSub.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarXor","package":"druntime","parentType":"","signature":"HRESULT VarXor(LPVARIANT,  LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarXor.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarAbs","package":"druntime","parentType":"","signature":"HRESULT VarAbs(LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarAbs.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarFix","package":"druntime","parentType":"","signature":"HRESULT VarFix(LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarFix.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarInt","package":"druntime","parentType":"","signature":"HRESULT VarInt(LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarNeg","package":"druntime","parentType":"","signature":"HRESULT VarNeg(LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarNeg.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarNot","package":"druntime","parentType":"","signature":"HRESULT VarNot(LPVARIANT,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarNot.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarRound","package":"druntime","parentType":"","signature":"HRESULT VarRound(LPVARIANT,  int,  LPVARIANT)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarRound.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarCmp","package":"druntime","parentType":"","signature":"HRESULT VarCmp(LPVARIANT,  LPVARIANT,  LCID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrCmp","package":"druntime","parentType":"","signature":"HRESULT VarBstrCmp(BSTR,  BSTR,  LCID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.oleauto","name":"VarBstrCat","package":"druntime","parentType":"","signature":"HRESULT VarBstrCat(BSTR,  BSTR,  BSTR *)","url":"/ddoc/druntime/core/sys/windows/oleauto/VarBstrCat.html"},{"doc":"","kind":"enum","module":"core.sys.windows.oleauto","name":"REGKIND","package":"druntime","parentType":"","signature":"REGKIND","url":"/ddoc/druntime/core/sys/windows/oleauto.html#REGKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleauto","name":"REGKIND_DEFAULT","package":"druntime","parentType":"","signature":"REGKIND_DEFAULT = ","url":"/ddoc/druntime/core/sys/windows/oleauto.html#REGKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleauto","name":"REGKIND_REGISTER","package":"druntime","parentType":"","signature":"REGKIND_REGISTER = ","url":"/ddoc/druntime/core/sys/windows/oleauto.html#REGKIND"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleauto","name":"REGKIND_NONE","package":"druntime","parentType":"","signature":"REGKIND_NONE = ","url":"/ddoc/druntime/core/sys/windows/oleauto.html#REGKIND"},{"doc":"","kind":"struct","module":"core.sys.windows.oleauto","name":"PARAMDATA","package":"druntime","parentType":"","signature":"PARAMDATA","url":"/ddoc/druntime/core/sys/windows/oleauto.html#PARAMDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPPARAMDATA","package":"druntime","parentType":"","signature":"LPPARAMDATA = PARAMDATA *","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPPARAMDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.oleauto","name":"METHODDATA","package":"druntime","parentType":"","signature":"METHODDATA","url":"/ddoc/druntime/core/sys/windows/oleauto.html#METHODDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPMETHODDATA","package":"druntime","parentType":"","signature":"LPMETHODDATA = METHODDATA *","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPMETHODDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.oleauto","name":"INTERFACEDATA","package":"druntime","parentType":"","signature":"INTERFACEDATA","url":"/ddoc/druntime/core/sys/windows/oleauto.html#INTERFACEDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPINTERFACEDATA","package":"druntime","parentType":"","signature":"LPINTERFACEDATA = INTERFACEDATA *","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPINTERFACEDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.oleauto","name":"UDATE","package":"druntime","parentType":"","signature":"UDATE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#UDATE"},{"doc":"","kind":"struct","module":"core.sys.windows.oleauto","name":"NUMPARSE","package":"druntime","parentType":"","signature":"NUMPARSE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPARSE"},{"doc":"","kind":"interface","module":"core.sys.windows.oleauto","name":"ICreateTypeInfo","package":"druntime","parentType":"","signature":"ICreateTypeInfo","url":"/ddoc/druntime/core/sys/windows/oleauto.html#ICreateTypeInfo"},{"doc":"","kind":"interface","module":"core.sys.windows.oleauto","name":"ICreateTypeInfo2","package":"druntime","parentType":"","signature":"ICreateTypeInfo2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#ICreateTypeInfo2"},{"doc":"","kind":"interface","module":"core.sys.windows.oleauto","name":"ICreateTypeLib","package":"druntime","parentType":"","signature":"ICreateTypeLib","url":"/ddoc/druntime/core/sys/windows/oleauto.html#ICreateTypeLib"},{"doc":"","kind":"interface","module":"core.sys.windows.oleauto","name":"ICreateTypeLib2","package":"druntime","parentType":"","signature":"ICreateTypeLib2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#ICreateTypeLib2"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPCREATETYPEINFO","package":"druntime","parentType":"","signature":"LPCREATETYPEINFO = ICreateTypeInfo","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPCREATETYPEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPCREATETYPEINFO2","package":"druntime","parentType":"","signature":"LPCREATETYPEINFO2 = ICreateTypeInfo2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPCREATETYPEINFO2"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPCREATETYPELIB","package":"druntime","parentType":"","signature":"LPCREATETYPELIB = ICreateTypeLib","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPCREATETYPELIB"},{"doc":"","kind":"alias","module":"core.sys.windows.oleauto","name":"LPCREATETYPELIB2","package":"druntime","parentType":"","signature":"LPCREATETYPELIB2 = ICreateTypeLib2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LPCREATETYPELIB2"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"STDOLE_MAJORVERNUM","package":"druntime","parentType":"","signature":"STDOLE_MAJORVERNUM","url":"/ddoc/druntime/core/sys/windows/oleauto.html#STDOLE_MAJORVERNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"STDOLE_MINORVERNUM","package":"druntime","parentType":"","signature":"STDOLE_MINORVERNUM","url":"/ddoc/druntime/core/sys/windows/oleauto.html#STDOLE_MINORVERNUM"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"STDOLE_LCID","package":"druntime","parentType":"","signature":"STDOLE_LCID","url":"/ddoc/druntime/core/sys/windows/oleauto.html#STDOLE_LCID"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_NOVALUEPROP","package":"druntime","parentType":"","signature":"VARIANT_NOVALUEPROP","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_NOVALUEPROP"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_ALPHABOOL","package":"druntime","parentType":"","signature":"VARIANT_ALPHABOOL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_ALPHABOOL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_NOUSEOVERRIDE","package":"druntime","parentType":"","signature":"VARIANT_NOUSEOVERRIDE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_NOUSEOVERRIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_LOCALBOOL","package":"druntime","parentType":"","signature":"VARIANT_LOCALBOOL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_LOCALBOOL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_TIMEVALUEONLY","package":"druntime","parentType":"","signature":"VAR_TIMEVALUEONLY","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_TIMEVALUEONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_DATEVALUEONLY","package":"druntime","parentType":"","signature":"VAR_DATEVALUEONLY","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_DATEVALUEONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_VALIDDATE","package":"druntime","parentType":"","signature":"VAR_VALIDDATE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_VALIDDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_CALENDAR_HIJRI","package":"druntime","parentType":"","signature":"VAR_CALENDAR_HIJRI","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_CALENDAR_HIJRI"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_LOCALBOOL","package":"druntime","parentType":"","signature":"VAR_LOCALBOOL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_LOCALBOOL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_FORMAT_NOSUBSTITUTE","package":"druntime","parentType":"","signature":"VAR_FORMAT_NOSUBSTITUTE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_FORMAT_NOSUBSTITUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_FOURDIGITYEARS","package":"druntime","parentType":"","signature":"VAR_FOURDIGITYEARS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_FOURDIGITYEARS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_CALENDAR_THAI","package":"druntime","parentType":"","signature":"VAR_CALENDAR_THAI","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_CALENDAR_THAI"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VAR_CALENDAR_GREGORIAN","package":"druntime","parentType":"","signature":"VAR_CALENDAR_GREGORIAN","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VAR_CALENDAR_GREGORIAN"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"MEMBERID_NIL","package":"druntime","parentType":"","signature":"MEMBERID_NIL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#MEMBERID_NIL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"ID_DEFAULTINST","package":"druntime","parentType":"","signature":"ID_DEFAULTINST","url":"/ddoc/druntime/core/sys/windows/oleauto.html#ID_DEFAULTINST"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"DISPATCH_METHOD","package":"druntime","parentType":"","signature":"DISPATCH_METHOD","url":"/ddoc/druntime/core/sys/windows/oleauto.html#DISPATCH_METHOD"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"DISPATCH_PROPERTYGET","package":"druntime","parentType":"","signature":"DISPATCH_PROPERTYGET","url":"/ddoc/druntime/core/sys/windows/oleauto.html#DISPATCH_PROPERTYGET"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"DISPATCH_PROPERTYPUT","package":"druntime","parentType":"","signature":"DISPATCH_PROPERTYPUT","url":"/ddoc/druntime/core/sys/windows/oleauto.html#DISPATCH_PROPERTYPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"DISPATCH_PROPERTYPUTREF","package":"druntime","parentType":"","signature":"DISPATCH_PROPERTYPUTREF","url":"/ddoc/druntime/core/sys/windows/oleauto.html#DISPATCH_PROPERTYPUTREF"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"LOCALE_USE_NLS","package":"druntime","parentType":"","signature":"LOCALE_USE_NLS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#LOCALE_USE_NLS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_NOUSEROVERRIDE","package":"druntime","parentType":"","signature":"VARIANT_NOUSEROVERRIDE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_NOUSEROVERRIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_CALENDAR_HIJRI","package":"druntime","parentType":"","signature":"VARIANT_CALENDAR_HIJRI","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_CALENDAR_HIJRI"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_CALENDAR_THAI","package":"druntime","parentType":"","signature":"VARIANT_CALENDAR_THAI","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_CALENDAR_THAI"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_CALENDAR_GREGORIAN","package":"druntime","parentType":"","signature":"VARIANT_CALENDAR_GREGORIAN","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_CALENDAR_GREGORIAN"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VARIANT_USE_NLS","package":"druntime","parentType":"","signature":"VARIANT_USE_NLS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VARIANT_USE_NLS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_LEADING_WHITE","package":"druntime","parentType":"","signature":"NUMPRS_LEADING_WHITE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_LEADING_WHITE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_TRAILING_WHITE","package":"druntime","parentType":"","signature":"NUMPRS_TRAILING_WHITE","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_TRAILING_WHITE"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_LEADING_PLUS","package":"druntime","parentType":"","signature":"NUMPRS_LEADING_PLUS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_LEADING_PLUS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_TRAILING_PLUS","package":"druntime","parentType":"","signature":"NUMPRS_TRAILING_PLUS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_TRAILING_PLUS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_LEADING_MINUS","package":"druntime","parentType":"","signature":"NUMPRS_LEADING_MINUS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_LEADING_MINUS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_TRAILING_MINUS","package":"druntime","parentType":"","signature":"NUMPRS_TRAILING_MINUS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_TRAILING_MINUS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_HEX_OCT","package":"druntime","parentType":"","signature":"NUMPRS_HEX_OCT","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_HEX_OCT"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_PARENS","package":"druntime","parentType":"","signature":"NUMPRS_PARENS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_PARENS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_DECIMAL","package":"druntime","parentType":"","signature":"NUMPRS_DECIMAL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_DECIMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_THOUSANDS","package":"druntime","parentType":"","signature":"NUMPRS_THOUSANDS","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_THOUSANDS"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_CURRENCY","package":"druntime","parentType":"","signature":"NUMPRS_CURRENCY","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_CURRENCY"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_EXPONENT","package":"druntime","parentType":"","signature":"NUMPRS_EXPONENT","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_EXPONENT"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_USE_ALL","package":"druntime","parentType":"","signature":"NUMPRS_USE_ALL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_USE_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_STD","package":"druntime","parentType":"","signature":"NUMPRS_STD","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_STD"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_NEG","package":"druntime","parentType":"","signature":"NUMPRS_NEG","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_NEG"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"NUMPRS_INEXACT","package":"druntime","parentType":"","signature":"NUMPRS_INEXACT","url":"/ddoc/druntime/core/sys/windows/oleauto.html#NUMPRS_INEXACT"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_I1","package":"druntime","parentType":"","signature":"VTBIT_I1","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_I1"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_UI1","package":"druntime","parentType":"","signature":"VTBIT_UI1","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_UI1"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_I2","package":"druntime","parentType":"","signature":"VTBIT_I2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_I2"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_UI2","package":"druntime","parentType":"","signature":"VTBIT_UI2","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_UI2"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_I4","package":"druntime","parentType":"","signature":"VTBIT_I4","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_I4"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_UI4","package":"druntime","parentType":"","signature":"VTBIT_UI4","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_UI4"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_I8","package":"druntime","parentType":"","signature":"VTBIT_I8","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_I8"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_UI8","package":"druntime","parentType":"","signature":"VTBIT_UI8","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_UI8"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_R4","package":"druntime","parentType":"","signature":"VTBIT_R4","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_R4"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_R8","package":"druntime","parentType":"","signature":"VTBIT_R8","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_R8"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_CY","package":"druntime","parentType":"","signature":"VTBIT_CY","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_CY"},{"doc":"","kind":"variable","module":"core.sys.windows.oleauto","name":"VTBIT_DECIMAL","package":"druntime","parentType":"","signature":"VTBIT_DECIMAL","url":"/ddoc/druntime/core/sys/windows/oleauto.html#VTBIT_DECIMAL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.olectl","name":"core.sys.windows.olectl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/olectl.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"DllRegisterServer","package":"druntime","parentType":"","signature":"HRESULT DllRegisterServer()","url":"/ddoc/druntime/core/sys/windows/olectl/DllRegisterServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"DllUnregisterServer","package":"druntime","parentType":"","signature":"HRESULT DllUnregisterServer()","url":"/ddoc/druntime/core/sys/windows/olectl/DllUnregisterServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleCreateFontIndirect","package":"druntime","parentType":"","signature":"HRESULT OleCreateFontIndirect(LPFONTDESC,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleCreateFontIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleCreatePictureIndirect","package":"druntime","parentType":"","signature":"HRESULT OleCreatePictureIndirect(LPPICTDESC,  REFIID,  BOOL,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleCreatePictureIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleCreatePropertyFrame","package":"druntime","parentType":"","signature":"HRESULT OleCreatePropertyFrame(HWND,  UINT,  UINT,  LPCOLESTR,  ULONG,  LPUNKNOWN *,  ULONG,  LPCLSID,  LCID,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/olectl/OleCreatePropertyFrame.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleCreatePropertyFrameIndirect","package":"druntime","parentType":"","signature":"HRESULT OleCreatePropertyFrameIndirect(LPOCPFIPARAMS)","url":"/ddoc/druntime/core/sys/windows/olectl/OleCreatePropertyFrameIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleIconToCursor","package":"druntime","parentType":"","signature":"HCURSOR OleIconToCursor(HINSTANCE,  HICON)","url":"/ddoc/druntime/core/sys/windows/olectl/OleIconToCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleLoadPicture","package":"druntime","parentType":"","signature":"HRESULT OleLoadPicture(LPSTREAM,  LONG,  BOOL,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleLoadPicture.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleLoadPictureEx","package":"druntime","parentType":"","signature":"HRESULT OleLoadPictureEx(LPSTREAM,  LONG,  BOOL,  REFIID,  DWORD,  DWORD,  DWORD,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleLoadPictureEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleLoadPicturePath","package":"druntime","parentType":"","signature":"HRESULT OleLoadPicturePath(LPOLESTR,  LPUNKNOWN,  DWORD,  OLE_COLOR,  REFIID,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleLoadPicturePath.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleLoadPictureFile","package":"druntime","parentType":"","signature":"HRESULT OleLoadPictureFile(VARIANT,  LPDISPATCH *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleLoadPictureFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleLoadPictureFileEx","package":"druntime","parentType":"","signature":"HRESULT OleLoadPictureFileEx(VARIANT,  DWORD,  DWORD,  DWORD,  LPDISPATCH *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleLoadPictureFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleSavePictureFile","package":"druntime","parentType":"","signature":"HRESULT OleSavePictureFile(LPDISPATCH,  BSTR)","url":"/ddoc/druntime/core/sys/windows/olectl/OleSavePictureFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.olectl","name":"OleTranslateColor","package":"druntime","parentType":"","signature":"HRESULT OleTranslateColor(OLE_COLOR,  HPALETTE,  COLORREF *)","url":"/ddoc/druntime/core/sys/windows/olectl/OleTranslateColor.html"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPOLECONTROL","package":"druntime","parentType":"","signature":"LPOLECONTROL = IOleControl","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPOLECONTROL"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPOLECONTROLSITE","package":"druntime","parentType":"","signature":"LPOLECONTROLSITE = IOleControlSite","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPOLECONTROLSITE"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPSIMPLEFRAMESITE","package":"druntime","parentType":"","signature":"LPSIMPLEFRAMESITE = ISimpleFrameSite","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPSIMPLEFRAMESITE"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPERSISTPROPERTYBAG","package":"druntime","parentType":"","signature":"LPPERSISTPROPERTYBAG = IPersistPropertyBag","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPERSISTPROPERTYBAG"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPERSISTSTREAMINIT","package":"druntime","parentType":"","signature":"LPPERSISTSTREAMINIT = IPersistStreamInit","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPERSISTSTREAMINIT"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPERSISTMEMORY","package":"druntime","parentType":"","signature":"LPPERSISTMEMORY = IPersistMemory","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPERSISTMEMORY"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPROPERTYNOTIFYSINK","package":"druntime","parentType":"","signature":"LPPROPERTYNOTIFYSINK = IPropertyNotifySink","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPROPERTYNOTIFYSINK"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPROVIDECLASSINFO","package":"druntime","parentType":"","signature":"LPPROVIDECLASSINFO = IProvideClassInfo","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPROVIDECLASSINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPROVIDECLASSINFO2","package":"druntime","parentType":"","signature":"LPPROVIDECLASSINFO2 = IProvideClassInfo2","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPROVIDECLASSINFO2"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPCONNECTIONPOINTCONTAINER","package":"druntime","parentType":"","signature":"LPCONNECTIONPOINTCONTAINER = IConnectionPointContainer","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPCONNECTIONPOINTCONTAINER"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPCLASSFACTORY2","package":"druntime","parentType":"","signature":"LPCLASSFACTORY2 = IClassFactory2","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPCLASSFACTORY2"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPSPECIFYPROPERTYPAGES","package":"druntime","parentType":"","signature":"LPSPECIFYPROPERTYPAGES = ISpecifyPropertyPages","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPSPECIFYPROPERTYPAGES"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPERPROPERTYBROWSING","package":"druntime","parentType":"","signature":"LPPERPROPERTYBROWSING = IPerPropertyBrowsing","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPERPROPERTYBROWSING"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPROPERTYPAGE","package":"druntime","parentType":"","signature":"LPPROPERTYPAGE = IPropertyPage","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPROPERTYPAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPROPERTYPAGE2","package":"druntime","parentType":"","signature":"LPPROPERTYPAGE2 = IPropertyPage2","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPROPERTYPAGE2"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPICTURE","package":"druntime","parentType":"","signature":"LPPICTURE = IPicture","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPICTURE"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPICTUREDISP","package":"druntime","parentType":"","signature":"LPPICTUREDISP = IPictureDisp","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPICTUREDISP"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_XPOS_PIXELS","package":"druntime","parentType":"","signature":"OLE_XPOS_PIXELS = int","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_XPOS_PIXELS"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_YPOS_PIXELS","package":"druntime","parentType":"","signature":"OLE_YPOS_PIXELS = int","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_YPOS_PIXELS"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_XSIZE_PIXELS","package":"druntime","parentType":"","signature":"OLE_XSIZE_PIXELS = int","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_XSIZE_PIXELS"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_YSIZE_PIXELS","package":"druntime","parentType":"","signature":"OLE_YSIZE_PIXELS = int","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_YSIZE_PIXELS"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_XPOS_CONTAINER","package":"druntime","parentType":"","signature":"OLE_XPOS_CONTAINER = float","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_XPOS_CONTAINER"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_YPOS_CONTAINER","package":"druntime","parentType":"","signature":"OLE_YPOS_CONTAINER = float","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_YPOS_CONTAINER"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_XSIZE_CONTAINER","package":"druntime","parentType":"","signature":"OLE_XSIZE_CONTAINER = float","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_XSIZE_CONTAINER"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_OPTEXCLUSIVE","package":"druntime","parentType":"","signature":"OLE_OPTEXCLUSIVE = VARIANT_BOOL","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_OPTEXCLUSIVE"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_CANCELBOOL","package":"druntime","parentType":"","signature":"OLE_CANCELBOOL = VARIANT_BOOL","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_CANCELBOOL"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"OLE_ENABLEDEFAULTBOOL","package":"druntime","parentType":"","signature":"OLE_ENABLEDEFAULTBOOL = VARIANT_BOOL","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_ENABLEDEFAULTBOOL"},{"doc":"","kind":"enum","module":"core.sys.windows.olectl","name":"OLE_TRISTATE","package":"druntime","parentType":"","signature":"OLE_TRISTATE","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_TRISTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.olectl","name":"triUnchecked","package":"druntime","parentType":"","signature":"triUnchecked = ","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_TRISTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.olectl","name":"triChecked1","package":"druntime","parentType":"","signature":"triChecked1 = ","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_TRISTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.olectl","name":"triGray","package":"druntime","parentType":"","signature":"triGray = ","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLE_TRISTATE"},{"doc":"","kind":"struct","module":"core.sys.windows.olectl","name":"OCPFIPARAMS","package":"druntime","parentType":"","signature":"OCPFIPARAMS","url":"/ddoc/druntime/core/sys/windows/olectl.html#OCPFIPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPOCPFIPARAMS","package":"druntime","parentType":"","signature":"LPOCPFIPARAMS = OCPFIPARAMS *","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPOCPFIPARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.olectl","name":"FONTDESC","package":"druntime","parentType":"","signature":"FONTDESC","url":"/ddoc/druntime/core/sys/windows/olectl.html#FONTDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPFONTDESC","package":"druntime","parentType":"","signature":"LPFONTDESC = FONTDESC *","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPFONTDESC"},{"doc":"","kind":"struct","module":"core.sys.windows.olectl","name":"PICTDESC","package":"druntime","parentType":"","signature":"PICTDESC","url":"/ddoc/druntime/core/sys/windows/olectl.html#PICTDESC"},{"doc":"","kind":"alias","module":"core.sys.windows.olectl","name":"LPPICTDESC","package":"druntime","parentType":"","signature":"LPPICTDESC = PICTDESC *","url":"/ddoc/druntime/core/sys/windows/olectl.html#LPPICTDESC"},{"doc":"","kind":"template","module":"core.sys.windows.olectl","name":"ITF_ERROR_SCODE_FOR_D","package":"druntime","parentType":"","signature":"ITF_ERROR_SCODE_FOR_D(int  c)","url":"/ddoc/druntime/core/sys/windows/olectl.html#ITF_ERROR_SCODE_FOR_D"},{"doc":"","kind":"template","module":"core.sys.windows.olectl","name":"ITF_SUCCESS_SCODE_FOR_D","package":"druntime","parentType":"","signature":"ITF_SUCCESS_SCODE_FOR_D(int  c)","url":"/ddoc/druntime/core/sys/windows/olectl.html#ITF_SUCCESS_SCODE_FOR_D"},{"doc":"","kind":"template","module":"core.sys.windows.olectl","name":"STD_CTL_SCODE","package":"druntime","parentType":"","signature":"STD_CTL_SCODE(int  c)","url":"/ddoc/druntime/core/sys/windows/olectl.html#STD_CTL_SCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"CLASS_E_NOTLICENSED","package":"druntime","parentType":"","signature":"SCODE CLASS_E_NOTLICENSED","url":"/ddoc/druntime/core/sys/windows/olectl.html#CLASS_E_NOTLICENSED"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"OLEIVERB_PROPERTIES","package":"druntime","parentType":"","signature":"OLEIVERB_PROPERTIES","url":"/ddoc/druntime/core/sys/windows/olectl.html#OLEIVERB_PROPERTIES"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_STREAMED_PROPSET","package":"druntime","parentType":"","signature":"VT_STREAMED_PROPSET","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_STREAMED_PROPSET"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_STORED_PROPSET","package":"druntime","parentType":"","signature":"VT_STORED_PROPSET","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_STORED_PROPSET"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_BLOB_PROPSET","package":"druntime","parentType":"","signature":"VT_BLOB_PROPSET","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_BLOB_PROPSET"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_VERBOSE_ENUM","package":"druntime","parentType":"","signature":"VT_VERBOSE_ENUM","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_VERBOSE_ENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_COLOR","package":"druntime","parentType":"","signature":"VT_COLOR","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_COLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_XPOS_PIXELS","package":"druntime","parentType":"","signature":"VT_XPOS_PIXELS","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_XPOS_PIXELS"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_YPOS_PIXELS","package":"druntime","parentType":"","signature":"VT_YPOS_PIXELS","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_YPOS_PIXELS"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_XSIZE_PIXELS","package":"druntime","parentType":"","signature":"VT_XSIZE_PIXELS","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_XSIZE_PIXELS"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_YSIZE_PIXELS","package":"druntime","parentType":"","signature":"VT_YSIZE_PIXELS","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_YSIZE_PIXELS"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_XPOS_HIMETRIC","package":"druntime","parentType":"","signature":"VT_XPOS_HIMETRIC","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_XPOS_HIMETRIC"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_YPOS_HIMETRIC","package":"druntime","parentType":"","signature":"VT_YPOS_HIMETRIC","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_YPOS_HIMETRIC"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_XSIZE_HIMETRIC","package":"druntime","parentType":"","signature":"VT_XSIZE_HIMETRIC","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_XSIZE_HIMETRIC"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_YSIZE_HIMETRIC","package":"druntime","parentType":"","signature":"VT_YSIZE_HIMETRIC","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_YSIZE_HIMETRIC"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_TRISTATE","package":"druntime","parentType":"","signature":"VT_TRISTATE","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_TRISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_OPTEXCLUSIVE","package":"druntime","parentType":"","signature":"VT_OPTEXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_OPTEXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_FONT","package":"druntime","parentType":"","signature":"VT_FONT","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_FONT"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_PICTURE","package":"druntime","parentType":"","signature":"VT_PICTURE","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_PICTURE"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"VT_HANDLE","package":"druntime","parentType":"","signature":"VT_HANDLE","url":"/ddoc/druntime/core/sys/windows/olectl.html#VT_HANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.olectl","name":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","package":"druntime","parentType":"","signature":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","url":"/ddoc/druntime/core/sys/windows/olectl.html#GUIDKIND_DEFAULT_SOURCE_DISP_IID"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.olectlid","name":"core.sys.windows.olectlid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/olectlid.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.oledlg","name":"core.sys.windows.oledlg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/oledlg.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIInsertObjectW","package":"druntime","parentType":"","signature":"UINT OleUIInsertObjectW(LPOLEUIINSERTOBJECTW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIInsertObjectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIInsertObjectA","package":"druntime","parentType":"","signature":"UINT OleUIInsertObjectA(LPOLEUIINSERTOBJECTA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIInsertObjectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIAddVerbMenuW","package":"druntime","parentType":"","signature":"BOOL OleUIAddVerbMenuW(LPOLEOBJECT,  LPCWSTR,  HMENU,  UINT,  UINT,  UINT,  BOOL,  UINT,  HMENU *)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIAddVerbMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIAddVerbMenuA","package":"druntime","parentType":"","signature":"BOOL OleUIAddVerbMenuA(LPOLEOBJECT,  LPCSTR,  HMENU,  UINT,  UINT,  UINT,  BOOL,  UINT,  HMENU *)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIAddVerbMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIBusyW","package":"druntime","parentType":"","signature":"UINT OleUIBusyW(LPOLEUIBUSYW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIBusyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIBusyA","package":"druntime","parentType":"","signature":"UINT OleUIBusyA(LPOLEUIBUSYA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIBusyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUICanConvertOrActivateAs","package":"druntime","parentType":"","signature":"BOOL OleUICanConvertOrActivateAs(REFCLSID,  BOOL,  WORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUICanConvertOrActivateAs.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIChangeIconW","package":"druntime","parentType":"","signature":"UINT OleUIChangeIconW(LPOLEUICHANGEICONW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIChangeIconW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIChangeIconA","package":"druntime","parentType":"","signature":"UINT OleUIChangeIconA(LPOLEUICHANGEICONA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIChangeIconA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIChangeSourceW","package":"druntime","parentType":"","signature":"UINT OleUIChangeSourceW(LPOLEUICHANGESOURCEW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIChangeSourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIChangeSourceA","package":"druntime","parentType":"","signature":"UINT OleUIChangeSourceA(LPOLEUICHANGESOURCEA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIChangeSourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIConvertW","package":"druntime","parentType":"","signature":"UINT OleUIConvertW(LPOLEUICONVERTW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIConvertW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIConvertA","package":"druntime","parentType":"","signature":"UINT OleUIConvertA(LPOLEUICONVERTA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIConvertA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIEditLinksW","package":"druntime","parentType":"","signature":"UINT OleUIEditLinksW(LPOLEUIEDITLINKSW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIEditLinksW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIEditLinksA","package":"druntime","parentType":"","signature":"UINT OleUIEditLinksA(LPOLEUIEDITLINKSA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIEditLinksA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIObjectPropertiesW","package":"druntime","parentType":"","signature":"UINT OleUIObjectPropertiesW(LPOLEUIOBJECTPROPSW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIObjectPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIObjectPropertiesA","package":"druntime","parentType":"","signature":"UINT OleUIObjectPropertiesA(LPOLEUIOBJECTPROPSA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIObjectPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIPasteSpecialW","package":"druntime","parentType":"","signature":"UINT OleUIPasteSpecialW(LPOLEUIPASTESPECIALW)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIPasteSpecialW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIPasteSpecialA","package":"druntime","parentType":"","signature":"UINT OleUIPasteSpecialA(LPOLEUIPASTESPECIALA)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIPasteSpecialA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIUpdateLinksW","package":"druntime","parentType":"","signature":"BOOL OleUIUpdateLinksW(LPOLEUILINKCONTAINERW,  HWND,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIUpdateLinksW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIUpdateLinksA","package":"druntime","parentType":"","signature":"BOOL OleUIUpdateLinksA(LPOLEUILINKCONTAINERA,  HWND,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIUpdateLinksA.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIPromptUserW","package":"druntime","parentType":"","signature":"int OleUIPromptUserW(int,  HWND, ...)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIPromptUserW.html"},{"doc":"","kind":"function","module":"core.sys.windows.oledlg","name":"OleUIPromptUserA","package":"druntime","parentType":"","signature":"int OleUIPromptUserA(int,  HWND, ...)","url":"/ddoc/druntime/core/sys/windows/oledlg/OleUIPromptUserA.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPFNOLEUIHOOK","package":"druntime","parentType":"","signature":"LPFNOLEUIHOOK = UINT function(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPFNOLEUIHOOK"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIINSERTOBJECTW","package":"druntime","parentType":"","signature":"OLEUIINSERTOBJECTW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIINSERTOBJECTW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIINSERTOBJECTW","package":"druntime","parentType":"","signature":"POLEUIINSERTOBJECTW = OLEUIINSERTOBJECTW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIINSERTOBJECTW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIINSERTOBJECTA","package":"druntime","parentType":"","signature":"OLEUIINSERTOBJECTA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIINSERTOBJECTA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIINSERTOBJECTA","package":"druntime","parentType":"","signature":"POLEUIINSERTOBJECTA = OLEUIINSERTOBJECTA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIINSERTOBJECTA"},{"doc":"","kind":"enum","module":"core.sys.windows.oledlg","name":"OLEUIPASTEFLAG","package":"druntime","parentType":"","signature":"OLEUIPASTEFLAG","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_PASTEONLY","package":"druntime","parentType":"","signature":"OLEUIPASTE_PASTEONLY = ","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE1","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE1 = ","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE2","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE2 = ","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE3","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE3 = 4","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE4","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE4 = 8","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE5","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE5 = 16","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE6","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE6 = 32","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE7","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE7 = 64","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKTYPE8","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKTYPE8 = 128","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_PASTE","package":"druntime","parentType":"","signature":"OLEUIPASTE_PASTE = 512","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_LINKANYTYPE","package":"druntime","parentType":"","signature":"OLEUIPASTE_LINKANYTYPE = 1024","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oledlg","name":"OLEUIPASTE_ENABLEICON","package":"druntime","parentType":"","signature":"OLEUIPASTE_ENABLEICON = 2048","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEFLAG"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIPASTEENTRYW","package":"druntime","parentType":"","signature":"OLEUIPASTEENTRYW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIPASTEENTRYW","package":"druntime","parentType":"","signature":"POLEUIPASTEENTRYW = OLEUIPASTEENTRYW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIPASTEENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIPASTEENTRYA","package":"druntime","parentType":"","signature":"OLEUIPASTEENTRYA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTEENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIPASTEENTRYA","package":"druntime","parentType":"","signature":"POLEUIPASTEENTRYA = OLEUIPASTEENTRYA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIPASTEENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIPASTESPECIALW","package":"druntime","parentType":"","signature":"OLEUIPASTESPECIALW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTESPECIALW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIPASTESPECIALW","package":"druntime","parentType":"","signature":"POLEUIPASTESPECIALW = OLEUIPASTESPECIALW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIPASTESPECIALW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIPASTESPECIALA","package":"druntime","parentType":"","signature":"OLEUIPASTESPECIALA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIPASTESPECIALA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIPASTESPECIALA","package":"druntime","parentType":"","signature":"POLEUIPASTESPECIALA = OLEUIPASTESPECIALA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIPASTESPECIALA"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUILinkContainerW","package":"druntime","parentType":"","signature":"IOleUILinkContainerW : IUnknown","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUILinkContainerW"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUILinkContainerW","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUILinkContainerW","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetNextLink","package":"druntime","parentType":"IOleUILinkContainerW","signature":"DWORD GetNextLink(DWORD dwLink)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.GetNextLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT SetLinkUpdateOptions(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.SetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT GetLinkUpdateOptions(DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.GetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkSource","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT SetLinkSource(DWORD,  LPWSTR,  ULONG,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.SetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkSource","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT GetLinkSource(DWORD,  LPWSTR *,  PULONG,  LPWSTR *,  LPWSTR *,  BOOL *,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.GetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"OpenLinkSource","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT OpenLinkSource(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.OpenLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"UpdateLink","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT UpdateLink(DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.UpdateLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"CancelLink","package":"druntime","parentType":"IOleUILinkContainerW","signature":"HRESULT CancelLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerW.CancelLink.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUILINKCONTAINERW","package":"druntime","parentType":"","signature":"LPOLEUILINKCONTAINERW = IOleUILinkContainerW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUILINKCONTAINERW"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUILinkContainerA","package":"druntime","parentType":"","signature":"IOleUILinkContainerA : IUnknown","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUILinkContainerA"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUILinkContainerA","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUILinkContainerA","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetNextLink","package":"druntime","parentType":"IOleUILinkContainerA","signature":"DWORD GetNextLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.GetNextLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT SetLinkUpdateOptions(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.SetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT GetLinkUpdateOptions(DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.GetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkSource","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT SetLinkSource(DWORD,  LPSTR,  ULONG,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.SetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkSource","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT GetLinkSource(DWORD,  LPSTR *,  PULONG,  LPSTR *,  LPSTR *,  BOOL *,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.GetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"OpenLinkSource","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT OpenLinkSource(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.OpenLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"UpdateLink","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT UpdateLink(DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.UpdateLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"CancelLink","package":"druntime","parentType":"IOleUILinkContainerA","signature":"HRESULT CancelLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkContainerA.CancelLink.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUILINKCONTAINERA","package":"druntime","parentType":"","signature":"LPOLEUILINKCONTAINERA = IOleUILinkContainerA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUILINKCONTAINERA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIEDITLINKSW","package":"druntime","parentType":"","signature":"OLEUIEDITLINKSW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIEDITLINKSW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIEDITLINKSW","package":"druntime","parentType":"","signature":"POLEUIEDITLINKSW = OLEUIEDITLINKSW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIEDITLINKSW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIEDITLINKSA","package":"druntime","parentType":"","signature":"OLEUIEDITLINKSA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIEDITLINKSA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIEDITLINKSA","package":"druntime","parentType":"","signature":"POLEUIEDITLINKSA = OLEUIEDITLINKSA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIEDITLINKSA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICHANGEICONW","package":"druntime","parentType":"","signature":"OLEUICHANGEICONW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICHANGEICONW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICHANGEICONW","package":"druntime","parentType":"","signature":"POLEUICHANGEICONW = OLEUICHANGEICONW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICHANGEICONW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICHANGEICONA","package":"druntime","parentType":"","signature":"OLEUICHANGEICONA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICHANGEICONA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICHANGEICONA","package":"druntime","parentType":"","signature":"POLEUICHANGEICONA = OLEUICHANGEICONA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICHANGEICONA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICONVERTW","package":"druntime","parentType":"","signature":"OLEUICONVERTW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICONVERTW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICONVERTW","package":"druntime","parentType":"","signature":"POLEUICONVERTW = OLEUICONVERTW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICONVERTW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICONVERTA","package":"druntime","parentType":"","signature":"OLEUICONVERTA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICONVERTA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICONVERTA","package":"druntime","parentType":"","signature":"POLEUICONVERTA = OLEUICONVERTA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICONVERTA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIBUSYW","package":"druntime","parentType":"","signature":"OLEUIBUSYW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIBUSYW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIBUSYW","package":"druntime","parentType":"","signature":"POLEUIBUSYW = OLEUIBUSYW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIBUSYW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIBUSYA","package":"druntime","parentType":"","signature":"OLEUIBUSYA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIBUSYA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIBUSYA","package":"druntime","parentType":"","signature":"POLEUIBUSYA = OLEUIBUSYA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIBUSYA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICHANGESOURCEW","package":"druntime","parentType":"","signature":"OLEUICHANGESOURCEW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICHANGESOURCEW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICHANGESOURCEW","package":"druntime","parentType":"","signature":"POLEUICHANGESOURCEW = OLEUICHANGESOURCEW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICHANGESOURCEW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUICHANGESOURCEA","package":"druntime","parentType":"","signature":"OLEUICHANGESOURCEA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUICHANGESOURCEA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUICHANGESOURCEA","package":"druntime","parentType":"","signature":"POLEUICHANGESOURCEA = OLEUICHANGESOURCEA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUICHANGESOURCEA"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUIObjInfoW","package":"druntime","parentType":"","signature":"IOleUIObjInfoW : IUnknown","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUIObjInfoW"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUIObjInfoW","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUIObjInfoW","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetObjectInfo","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT GetObjectInfo(DWORD,  PDWORD,  LPWSTR *,  LPWSTR *,  LPWSTR *,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.GetObjectInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetConvertInfo","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT GetConvertInfo(DWORD,  CLSID *,  PWORD,  CLSID *,  LPCLSID *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.GetConvertInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"ConvertObject","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT ConvertObject(DWORD,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.ConvertObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetViewInfo","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT GetViewInfo(DWORD,  HGLOBAL *,  PDWORD,  int *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.GetViewInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetViewInfo","package":"druntime","parentType":"IOleUIObjInfoW","signature":"HRESULT SetViewInfo(DWORD,  HGLOBAL,  DWORD,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoW.SetViewInfo.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUIOBJINFOW","package":"druntime","parentType":"","signature":"LPOLEUIOBJINFOW = IOleUIObjInfoW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUIOBJINFOW"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUIObjInfoA","package":"druntime","parentType":"","signature":"IOleUIObjInfoA : IUnknown","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUIObjInfoA"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUIObjInfoA","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUIObjInfoA","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetObjectInfo","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT GetObjectInfo(DWORD,  PDWORD,  LPSTR *,  LPSTR *,  LPSTR *,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.GetObjectInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetConvertInfo","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT GetConvertInfo(DWORD,  CLSID *,  PWORD,  CLSID *,  LPCLSID *,  UINT *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.GetConvertInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"ConvertObject","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT ConvertObject(DWORD,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.ConvertObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetViewInfo","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT GetViewInfo(DWORD,  HGLOBAL *,  PDWORD,  int *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.GetViewInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetViewInfo","package":"druntime","parentType":"IOleUIObjInfoA","signature":"HRESULT SetViewInfo(DWORD,  HGLOBAL,  DWORD,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUIObjInfoA.SetViewInfo.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUIOBJINFOA","package":"druntime","parentType":"","signature":"LPOLEUIOBJINFOA = IOleUIObjInfoA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUIOBJINFOA"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUILinkInfoW","package":"druntime","parentType":"","signature":"IOleUILinkInfoW : IOleUILinkContainerW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUILinkInfoW"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUILinkInfoW","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUILinkInfoW","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetNextLink","package":"druntime","parentType":"IOleUILinkInfoW","signature":"DWORD GetNextLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.GetNextLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT SetLinkUpdateOptions(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.SetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT GetLinkUpdateOptions(DWORD,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.GetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkSource","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT SetLinkSource(DWORD,  LPWSTR,  ULONG,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.SetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkSource","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT GetLinkSource(DWORD,  LPWSTR *,  PULONG,  LPWSTR *,  LPWSTR *,  BOOL *,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.GetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"OpenLinkSource","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT OpenLinkSource(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.OpenLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"UpdateLink","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT UpdateLink(DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.UpdateLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"CancelLink","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT CancelLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.CancelLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLastUpdate","package":"druntime","parentType":"IOleUILinkInfoW","signature":"HRESULT GetLastUpdate(DWORD,  FILETIME *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoW.GetLastUpdate.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUILINKINFOW","package":"druntime","parentType":"","signature":"LPOLEUILINKINFOW = IOleUILinkInfoW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUILINKINFOW"},{"doc":"","kind":"interface","module":"core.sys.windows.oledlg","name":"IOleUILinkInfoA","package":"druntime","parentType":"","signature":"IOleUILinkInfoA : IOleUILinkContainerA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOleUILinkInfoA"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"QueryInterface","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT QueryInterface(REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"AddRef","package":"druntime","parentType":"IOleUILinkInfoA","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"Release","package":"druntime","parentType":"IOleUILinkInfoA","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.Release.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetNextLink","package":"druntime","parentType":"IOleUILinkInfoA","signature":"DWORD GetNextLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.GetNextLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT SetLinkUpdateOptions(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.SetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkUpdateOptions","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT GetLinkUpdateOptions(DWORD,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.GetLinkUpdateOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"SetLinkSource","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT SetLinkSource(DWORD,  LPSTR,  ULONG,  PULONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.SetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLinkSource","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT GetLinkSource(DWORD,  LPSTR *,  PULONG,  LPSTR *,  LPSTR *,  BOOL *,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.GetLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"OpenLinkSource","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT OpenLinkSource(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.OpenLinkSource.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"UpdateLink","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT UpdateLink(DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.UpdateLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"CancelLink","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT CancelLink(DWORD)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.CancelLink.html"},{"doc":"","kind":"method","module":"core.sys.windows.oledlg","name":"GetLastUpdate","package":"druntime","parentType":"IOleUILinkInfoA","signature":"HRESULT GetLastUpdate(DWORD,  FILETIME *)","url":"/ddoc/druntime/core/sys/windows/oledlg/IOleUILinkInfoA.GetLastUpdate.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"LPOLEUILINKINFOA","package":"druntime","parentType":"","signature":"LPOLEUILINKINFOA = IOleUILinkInfoA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#LPOLEUILINKINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIGNRLPROPSW","package":"druntime","parentType":"","signature":"OLEUIGNRLPROPSW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIGNRLPROPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIGNRLPROPSW","package":"druntime","parentType":"","signature":"POLEUIGNRLPROPSW = OLEUIGNRLPROPSW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIGNRLPROPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIGNRLPROPSA","package":"druntime","parentType":"","signature":"OLEUIGNRLPROPSA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIGNRLPROPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIGNRLPROPSA","package":"druntime","parentType":"","signature":"POLEUIGNRLPROPSA = OLEUIGNRLPROPSA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIGNRLPROPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIVIEWPROPSW","package":"druntime","parentType":"","signature":"OLEUIVIEWPROPSW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIVIEWPROPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIVIEWPROPSW","package":"druntime","parentType":"","signature":"POLEUIVIEWPROPSW = OLEUIVIEWPROPSW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIVIEWPROPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIVIEWPROPSA","package":"druntime","parentType":"","signature":"OLEUIVIEWPROPSA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIVIEWPROPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIVIEWPROPSA","package":"druntime","parentType":"","signature":"POLEUIVIEWPROPSA = OLEUIVIEWPROPSA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIVIEWPROPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUILINKPROPSW","package":"druntime","parentType":"","signature":"OLEUILINKPROPSW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUILINKPROPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUILINKPROPSW","package":"druntime","parentType":"","signature":"POLEUILINKPROPSW = OLEUILINKPROPSW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUILINKPROPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUILINKPROPSA","package":"druntime","parentType":"","signature":"OLEUILINKPROPSA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUILINKPROPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUILINKPROPSA","package":"druntime","parentType":"","signature":"POLEUILINKPROPSA = OLEUILINKPROPSA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUILINKPROPSA"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIOBJECTPROPSW","package":"druntime","parentType":"","signature":"OLEUIOBJECTPROPSW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIOBJECTPROPSW"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIOBJECTPROPSW","package":"druntime","parentType":"","signature":"POLEUIOBJECTPROPSW = OLEUIOBJECTPROPSW *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIOBJECTPROPSW"},{"doc":"","kind":"struct","module":"core.sys.windows.oledlg","name":"OLEUIOBJECTPROPSA","package":"druntime","parentType":"","signature":"OLEUIOBJECTPROPSA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUIOBJECTPROPSA"},{"doc":"","kind":"alias","module":"core.sys.windows.oledlg","name":"POLEUIOBJECTPROPSA","package":"druntime","parentType":"","signature":"POLEUIOBJECTPROPSA = OLEUIOBJECTPROPSA *","url":"/ddoc/druntime/core/sys/windows/oledlg.html#POLEUIOBJECTPROPSA"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PS_MAXLINKTYPES","package":"druntime","parentType":"","signature":"PS_MAXLINKTYPES","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PS_MAXLINKTYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLESTDDELIM","package":"druntime","parentType":"","signature":"TCHAR[] OLESTDDELIM","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLESTDDELIM"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_HELP","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_HELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_ENDDIALOG","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_ENDDIALOG","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_ENDDIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_BROWSE","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_BROWSE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_BROWSE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_CHANGEICON","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_CLOSEBUSYDIALOG","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_CLOSEBUSYDIALOG","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_CLOSEBUSYDIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_CONVERT","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_CONVERT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_CHANGESOURCE","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_CHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_CHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_ADDCONTROL","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_ADDCONTROL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_ADDCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"SZOLEUI_MSG_BROWSE_OFN","package":"druntime","parentType":"","signature":"TCHAR[] SZOLEUI_MSG_BROWSE_OFN","url":"/ddoc/druntime/core/sys/windows/oledlg.html#SZOLEUI_MSG_BROWSE_OFN"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PROP_HWND_CHGICONDLG","package":"druntime","parentType":"","signature":"TCHAR[] PROP_HWND_CHGICONDLG","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PROP_HWND_CHGICONDLG"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_OLEUIHELP","package":"druntime","parentType":"","signature":"IDC_OLEUIHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_OLEUIHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_PASTE","package":"druntime","parentType":"","signature":"IDC_PS_PASTE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_PASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_PASTELINK","package":"druntime","parentType":"","signature":"IDC_PS_PASTELINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_PASTELINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_SOURCETEXT","package":"druntime","parentType":"","signature":"IDC_PS_SOURCETEXT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_SOURCETEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_PASTELIST","package":"druntime","parentType":"","signature":"IDC_PS_PASTELIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_PASTELIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_PASTELINKLIST","package":"druntime","parentType":"","signature":"IDC_PS_PASTELINKLIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_PASTELINKLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_DISPLAYLIST","package":"druntime","parentType":"","signature":"IDC_PS_DISPLAYLIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_DISPLAYLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_DISPLAYASICON","package":"druntime","parentType":"","signature":"IDC_PS_DISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_DISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_ICONDISPLAY","package":"druntime","parentType":"","signature":"IDC_PS_ICONDISPLAY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_ICONDISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_CHANGEICON","package":"druntime","parentType":"","signature":"IDC_PS_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_RESULTIMAGE","package":"druntime","parentType":"","signature":"IDC_PS_RESULTIMAGE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_RESULTIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PS_RESULTTEXT","package":"druntime","parentType":"","signature":"IDC_PS_RESULTTEXT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PS_RESULTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_GROUP","package":"druntime","parentType":"","signature":"IDC_CI_GROUP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_GROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_CURRENT","package":"druntime","parentType":"","signature":"IDC_CI_CURRENT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_CURRENT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_CURRENTICON","package":"druntime","parentType":"","signature":"IDC_CI_CURRENTICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_CURRENTICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_DEFAULT","package":"druntime","parentType":"","signature":"IDC_CI_DEFAULT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_DEFAULTICON","package":"druntime","parentType":"","signature":"IDC_CI_DEFAULTICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_DEFAULTICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_FROMFILE","package":"druntime","parentType":"","signature":"IDC_CI_FROMFILE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_FROMFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_FROMFILEEDIT","package":"druntime","parentType":"","signature":"IDC_CI_FROMFILEEDIT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_FROMFILEEDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_ICONLIST","package":"druntime","parentType":"","signature":"IDC_CI_ICONLIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_ICONLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_LABEL","package":"druntime","parentType":"","signature":"IDC_CI_LABEL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_LABEL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_LABELEDIT","package":"druntime","parentType":"","signature":"IDC_CI_LABELEDIT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_LABELEDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_BROWSE","package":"druntime","parentType":"","signature":"IDC_CI_BROWSE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_BROWSE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CI_ICONDISPLAY","package":"druntime","parentType":"","signature":"IDC_CI_ICONDISPLAY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CI_ICONDISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_OBJECTTYPE","package":"druntime","parentType":"","signature":"IDC_CV_OBJECTTYPE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_OBJECTTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_DISPLAYASICON","package":"druntime","parentType":"","signature":"IDC_CV_DISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_DISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_CHANGEICON","package":"druntime","parentType":"","signature":"IDC_CV_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_ACTIVATELIST","package":"druntime","parentType":"","signature":"IDC_CV_ACTIVATELIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_ACTIVATELIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_CONVERTTO","package":"druntime","parentType":"","signature":"IDC_CV_CONVERTTO","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_CONVERTTO"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_ACTIVATEAS","package":"druntime","parentType":"","signature":"IDC_CV_ACTIVATEAS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_ACTIVATEAS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_RESULTTEXT","package":"druntime","parentType":"","signature":"IDC_CV_RESULTTEXT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_RESULTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_CONVERTLIST","package":"druntime","parentType":"","signature":"IDC_CV_CONVERTLIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_CONVERTLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_CV_ICONDISPLAY","package":"druntime","parentType":"","signature":"IDC_CV_ICONDISPLAY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_CV_ICONDISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_CHANGESOURCE","package":"druntime","parentType":"","signature":"IDC_EL_CHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_CHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_AUTOMATIC","package":"druntime","parentType":"","signature":"IDC_EL_AUTOMATIC","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_AUTOMATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_CANCELLINK","package":"druntime","parentType":"","signature":"IDC_EL_CANCELLINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_CANCELLINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_UPDATENOW","package":"druntime","parentType":"","signature":"IDC_EL_UPDATENOW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_UPDATENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_OPENSOURCE","package":"druntime","parentType":"","signature":"IDC_EL_OPENSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_OPENSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_MANUAL","package":"druntime","parentType":"","signature":"IDC_EL_MANUAL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_MANUAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_LINKSOURCE","package":"druntime","parentType":"","signature":"IDC_EL_LINKSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_LINKSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_LINKTYPE","package":"druntime","parentType":"","signature":"IDC_EL_LINKTYPE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_LINKTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_LINKSLISTBOX","package":"druntime","parentType":"","signature":"IDC_EL_LINKSLISTBOX","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_LINKSLISTBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_COL1","package":"druntime","parentType":"","signature":"IDC_EL_COL1","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_COL1"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_COL2","package":"druntime","parentType":"","signature":"IDC_EL_COL2","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_COL2"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_EL_COL3","package":"druntime","parentType":"","signature":"IDC_EL_COL3","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_EL_COL3"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_BZ_RETRY","package":"druntime","parentType":"","signature":"IDC_BZ_RETRY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_BZ_RETRY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_BZ_ICON","package":"druntime","parentType":"","signature":"IDC_BZ_ICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_BZ_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_BZ_MESSAGE1","package":"druntime","parentType":"","signature":"IDC_BZ_MESSAGE1","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_BZ_MESSAGE1"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_BZ_SWITCHTO","package":"druntime","parentType":"","signature":"IDC_BZ_SWITCHTO","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_BZ_SWITCHTO"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_UL_METER","package":"druntime","parentType":"","signature":"IDC_UL_METER","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_UL_METER"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_UL_STOP","package":"druntime","parentType":"","signature":"IDC_UL_STOP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_UL_STOP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_UL_PERCENT","package":"druntime","parentType":"","signature":"IDC_UL_PERCENT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_UL_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_UL_PROGRESS","package":"druntime","parentType":"","signature":"IDC_UL_PROGRESS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_UL_PROGRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PU_LINKS","package":"druntime","parentType":"","signature":"IDC_PU_LINKS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PU_LINKS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PU_TEXT","package":"druntime","parentType":"","signature":"IDC_PU_TEXT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PU_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PU_CONVERT","package":"druntime","parentType":"","signature":"IDC_PU_CONVERT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PU_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_PU_ICON","package":"druntime","parentType":"","signature":"IDC_PU_ICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_PU_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_OBJECTNAME","package":"druntime","parentType":"","signature":"IDC_GP_OBJECTNAME","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_OBJECTNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_OBJECTTYPE","package":"druntime","parentType":"","signature":"IDC_GP_OBJECTTYPE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_OBJECTTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_OBJECTSIZE","package":"druntime","parentType":"","signature":"IDC_GP_OBJECTSIZE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_OBJECTSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_CONVERT","package":"druntime","parentType":"","signature":"IDC_GP_CONVERT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_OBJECTICON","package":"druntime","parentType":"","signature":"IDC_GP_OBJECTICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_OBJECTICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_GP_OBJECTLOCATION","package":"druntime","parentType":"","signature":"IDC_GP_OBJECTLOCATION","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_GP_OBJECTLOCATION"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_PERCENT","package":"druntime","parentType":"","signature":"IDC_VP_PERCENT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_CHANGEICON","package":"druntime","parentType":"","signature":"IDC_VP_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_EDITABLE","package":"druntime","parentType":"","signature":"IDC_VP_EDITABLE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_EDITABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_ASICON","package":"druntime","parentType":"","signature":"IDC_VP_ASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_ASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_RELATIVE","package":"druntime","parentType":"","signature":"IDC_VP_RELATIVE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_SPIN","package":"druntime","parentType":"","signature":"IDC_VP_SPIN","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_SPIN"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_SCALETXT","package":"druntime","parentType":"","signature":"IDC_VP_SCALETXT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_SCALETXT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_ICONDISPLAY","package":"druntime","parentType":"","signature":"IDC_VP_ICONDISPLAY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_ICONDISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_VP_RESULTIMAGE","package":"druntime","parentType":"","signature":"IDC_VP_RESULTIMAGE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_VP_RESULTIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_OPENSOURCE","package":"druntime","parentType":"","signature":"IDC_LP_OPENSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_OPENSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_UPDATENOW","package":"druntime","parentType":"","signature":"IDC_LP_UPDATENOW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_UPDATENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_BREAKLINK","package":"druntime","parentType":"","signature":"IDC_LP_BREAKLINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_BREAKLINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_LINKSOURCE","package":"druntime","parentType":"","signature":"IDC_LP_LINKSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_LINKSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_CHANGESOURCE","package":"druntime","parentType":"","signature":"IDC_LP_CHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_CHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_AUTOMATIC","package":"druntime","parentType":"","signature":"IDC_LP_AUTOMATIC","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_AUTOMATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_MANUAL","package":"druntime","parentType":"","signature":"IDC_LP_MANUAL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_MANUAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_DATE","package":"druntime","parentType":"","signature":"IDC_LP_DATE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDC_LP_TIME","package":"druntime","parentType":"","signature":"IDC_LP_TIME","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDC_LP_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_INSERTOBJECT","package":"druntime","parentType":"","signature":"IDD_INSERTOBJECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_INSERTOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CHANGEICON","package":"druntime","parentType":"","signature":"IDD_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CONVERT","package":"druntime","parentType":"","signature":"IDD_CONVERT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_PASTESPECIAL","package":"druntime","parentType":"","signature":"IDD_PASTESPECIAL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_PASTESPECIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_EDITLINKS","package":"druntime","parentType":"","signature":"IDD_EDITLINKS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_EDITLINKS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_BUSY","package":"druntime","parentType":"","signature":"IDD_BUSY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_BUSY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_UPDATELINKS","package":"druntime","parentType":"","signature":"IDD_UPDATELINKS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_UPDATELINKS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CHANGESOURCE","package":"druntime","parentType":"","signature":"IDD_CHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_INSERTFILEBROWSE","package":"druntime","parentType":"","signature":"IDD_INSERTFILEBROWSE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_INSERTFILEBROWSE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CHANGEICONBROWSE","package":"druntime","parentType":"","signature":"IDD_CHANGEICONBROWSE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CHANGEICONBROWSE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CONVERTONLY","package":"druntime","parentType":"","signature":"IDD_CONVERTONLY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CONVERTONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CHANGESOURCE4","package":"druntime","parentType":"","signature":"IDD_CHANGESOURCE4","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CHANGESOURCE4"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_GNRLPROPS","package":"druntime","parentType":"","signature":"IDD_GNRLPROPS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_GNRLPROPS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_VIEWPROPS","package":"druntime","parentType":"","signature":"IDD_VIEWPROPS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_VIEWPROPS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_LINKPROPS","package":"druntime","parentType":"","signature":"IDD_LINKPROPS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_LINKPROPS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_CANNOTUPDATELINK","package":"druntime","parentType":"","signature":"IDD_CANNOTUPDATELINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_CANNOTUPDATELINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_LINKSOURCEUNAVAILABLE","package":"druntime","parentType":"","signature":"IDD_LINKSOURCEUNAVAILABLE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_LINKSOURCEUNAVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_SERVERNOTFOUND","package":"druntime","parentType":"","signature":"IDD_SERVERNOTFOUND","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_SERVERNOTFOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_OUTOFMEMORY","package":"druntime","parentType":"","signature":"IDD_OUTOFMEMORY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_OUTOFMEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_SERVERNOTREGW","package":"druntime","parentType":"","signature":"IDD_SERVERNOTREGW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_SERVERNOTREGW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_LINKTYPECHANGEDW","package":"druntime","parentType":"","signature":"IDD_LINKTYPECHANGEDW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_LINKTYPECHANGEDW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_SERVERNOTREGA","package":"druntime","parentType":"","signature":"IDD_SERVERNOTREGA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_SERVERNOTREGA"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IDD_LINKTYPECHANGEDA","package":"druntime","parentType":"","signature":"IDD_LINKTYPECHANGEDA","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IDD_LINKTYPECHANGEDA"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ID_BROWSE_CHANGEICON","package":"druntime","parentType":"","signature":"ID_BROWSE_CHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ID_BROWSE_CHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ID_BROWSE_INSERTFILE","package":"druntime","parentType":"","signature":"ID_BROWSE_INSERTFILE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ID_BROWSE_INSERTFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ID_BROWSE_ADDCONTROL","package":"druntime","parentType":"","signature":"ID_BROWSE_ADDCONTROL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ID_BROWSE_ADDCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ID_BROWSE_CHANGESOURCE","package":"druntime","parentType":"","signature":"ID_BROWSE_CHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ID_BROWSE_CHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_FALSE","package":"druntime","parentType":"","signature":"OLEUI_FALSE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_FALSE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_SUCCESS","package":"druntime","parentType":"","signature":"OLEUI_SUCCESS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_SUCCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OK","package":"druntime","parentType":"","signature":"OLEUI_OK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CANCEL","package":"druntime","parentType":"","signature":"OLEUI_CANCEL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_STANDARDMIN","package":"druntime","parentType":"","signature":"OLEUI_ERR_STANDARDMIN","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_STANDARDMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_STRUCTURENULL","package":"druntime","parentType":"","signature":"OLEUI_ERR_STRUCTURENULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_STRUCTURENULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_STRUCTUREINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_STRUCTUREINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_STRUCTUREINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_CBSTRUCTINCORRECT","package":"druntime","parentType":"","signature":"OLEUI_ERR_CBSTRUCTINCORRECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_CBSTRUCTINCORRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_HWNDOWNERINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_HWNDOWNERINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_HWNDOWNERINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LPSZCAPTIONINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_LPSZCAPTIONINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LPSZCAPTIONINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LPFNHOOKINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_LPFNHOOKINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LPFNHOOKINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_HINSTANCEINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_HINSTANCEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_HINSTANCEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LPSZTEMPLATEINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_LPSZTEMPLATEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LPSZTEMPLATEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_HRESOURCEINVALID","package":"druntime","parentType":"","signature":"OLEUI_ERR_HRESOURCEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_HRESOURCEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_FINDTEMPLATEFAILURE","package":"druntime","parentType":"","signature":"OLEUI_ERR_FINDTEMPLATEFAILURE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_FINDTEMPLATEFAILURE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LOADTEMPLATEFAILURE","package":"druntime","parentType":"","signature":"OLEUI_ERR_LOADTEMPLATEFAILURE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LOADTEMPLATEFAILURE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_DIALOGFAILURE","package":"druntime","parentType":"","signature":"OLEUI_ERR_DIALOGFAILURE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_DIALOGFAILURE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LOCALMEMALLOC","package":"druntime","parentType":"","signature":"OLEUI_ERR_LOCALMEMALLOC","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LOCALMEMALLOC"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_GLOBALMEMALLOC","package":"druntime","parentType":"","signature":"OLEUI_ERR_GLOBALMEMALLOC","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_GLOBALMEMALLOC"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_LOADSTRING","package":"druntime","parentType":"","signature":"OLEUI_ERR_LOADSTRING","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_LOADSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_OLEMEMALLOC","package":"druntime","parentType":"","signature":"OLEUI_ERR_OLEMEMALLOC","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_OLEMEMALLOC"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ERR_STANDARDMAX","package":"druntime","parentType":"","signature":"OLEUI_ERR_STANDARDMAX","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ERR_STANDARDMAX"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OPF_OBJECTISLINK","package":"druntime","parentType":"","signature":"OPF_OBJECTISLINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OPF_OBJECTISLINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OPF_NOFILLDEFAULT","package":"druntime","parentType":"","signature":"OPF_NOFILLDEFAULT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OPF_NOFILLDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OPF_SHOWHELP","package":"druntime","parentType":"","signature":"OPF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OPF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OPF_DISABLECONVERT","package":"druntime","parentType":"","signature":"OPF_DISABLECONVERT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OPF_DISABLECONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_SUBPROPNULL","package":"druntime","parentType":"","signature":"OLEUI_OPERR_SUBPROPNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_SUBPROPNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_SUBPROPINVALID","package":"druntime","parentType":"","signature":"OLEUI_OPERR_SUBPROPINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_SUBPROPINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_PROPSHEETNULL","package":"druntime","parentType":"","signature":"OLEUI_OPERR_PROPSHEETNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_PROPSHEETNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_PROPSHEETINVALID","package":"druntime","parentType":"","signature":"OLEUI_OPERR_PROPSHEETINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_PROPSHEETINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_SUPPROP","package":"druntime","parentType":"","signature":"OLEUI_OPERR_SUPPROP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_SUPPROP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_PROPSINVALID","package":"druntime","parentType":"","signature":"OLEUI_OPERR_PROPSINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_PROPSINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_PAGESINCORRECT","package":"druntime","parentType":"","signature":"OLEUI_OPERR_PAGESINCORRECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_PAGESINCORRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_INVALIDPAGES","package":"druntime","parentType":"","signature":"OLEUI_OPERR_INVALIDPAGES","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_INVALIDPAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_NOTSUPPORTED","package":"druntime","parentType":"","signature":"OLEUI_OPERR_NOTSUPPORTED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_NOTSUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_DLGPROCNOTNULL","package":"druntime","parentType":"","signature":"OLEUI_OPERR_DLGPROCNOTNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_DLGPROCNOTNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_LPARAMNOTZERO","package":"druntime","parentType":"","signature":"OLEUI_OPERR_LPARAMNOTZERO","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_LPARAMNOTZERO"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_GPERR_STRINGINVALID","package":"druntime","parentType":"","signature":"OLEUI_GPERR_STRINGINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_GPERR_STRINGINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_GPERR_CLASSIDINVALID","package":"druntime","parentType":"","signature":"OLEUI_GPERR_CLASSIDINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_GPERR_CLASSIDINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","package":"druntime","parentType":"","signature":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_GPERR_LPCLSIDEXCLUDEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_GPERR_CBFORMATINVALID","package":"druntime","parentType":"","signature":"OLEUI_GPERR_CBFORMATINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_GPERR_CBFORMATINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_VPERR_METAPICTINVALID","package":"druntime","parentType":"","signature":"OLEUI_VPERR_METAPICTINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_VPERR_METAPICTINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_VPERR_DVASPECTINVALID","package":"druntime","parentType":"","signature":"OLEUI_VPERR_DVASPECTINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_VPERR_DVASPECTINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_LPERR_LINKCNTRNULL","package":"druntime","parentType":"","signature":"OLEUI_LPERR_LINKCNTRNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_LPERR_LINKCNTRNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_LPERR_LINKCNTRINVALID","package":"druntime","parentType":"","signature":"OLEUI_LPERR_LINKCNTRINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_LPERR_LINKCNTRINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_PROPERTYSHEET","package":"druntime","parentType":"","signature":"OLEUI_OPERR_PROPERTYSHEET","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_PROPERTYSHEET"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_OBJINFOINVALID","package":"druntime","parentType":"","signature":"OLEUI_OPERR_OBJINFOINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_OBJINFOINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_OPERR_LINKINFOINVALID","package":"druntime","parentType":"","signature":"OLEUI_OPERR_LINKINFOINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_OPERR_LINKINFOINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_QUERY_GETCLASSID","package":"druntime","parentType":"","signature":"OLEUI_QUERY_GETCLASSID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_QUERY_GETCLASSID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_QUERY_LINKBROKEN","package":"druntime","parentType":"","signature":"OLEUI_QUERY_LINKBROKEN","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_QUERY_LINKBROKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_SHOWHELP","package":"druntime","parentType":"","signature":"IOF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_SELECTCREATENEW","package":"druntime","parentType":"","signature":"IOF_SELECTCREATENEW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_SELECTCREATENEW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_SELECTCREATEFROMFILE","package":"druntime","parentType":"","signature":"IOF_SELECTCREATEFROMFILE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_SELECTCREATEFROMFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_CHECKLINK","package":"druntime","parentType":"","signature":"IOF_CHECKLINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_CHECKLINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_CHECKDISPLAYASICON","package":"druntime","parentType":"","signature":"IOF_CHECKDISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_CHECKDISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_CREATENEWOBJECT","package":"druntime","parentType":"","signature":"IOF_CREATENEWOBJECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_CREATENEWOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_CREATEFILEOBJECT","package":"druntime","parentType":"","signature":"IOF_CREATEFILEOBJECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_CREATEFILEOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_CREATELINKOBJECT","package":"druntime","parentType":"","signature":"IOF_CREATELINKOBJECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_CREATELINKOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_DISABLELINK","package":"druntime","parentType":"","signature":"IOF_DISABLELINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_DISABLELINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_VERIFYSERVERSEXIST","package":"druntime","parentType":"","signature":"IOF_VERIFYSERVERSEXIST","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_VERIFYSERVERSEXIST"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_DISABLEDISPLAYASICON","package":"druntime","parentType":"","signature":"IOF_DISABLEDISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_DISABLEDISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_HIDECHANGEICON","package":"druntime","parentType":"","signature":"IOF_HIDECHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_HIDECHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_SHOWINSERTCONTROL","package":"druntime","parentType":"","signature":"IOF_SHOWINSERTCONTROL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_SHOWINSERTCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"IOF_SELECTCREATECONTROL","package":"druntime","parentType":"","signature":"IOF_SELECTCREATECONTROL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#IOF_SELECTCREATECONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPSZFILEINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPSZFILEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPSZFILEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPSZLABELINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPSZLABELINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPSZLABELINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_HICONINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_HICONINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_HICONINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPFORMATETCINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPFORMATETCINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPFORMATETCINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_PPVOBJINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_PPVOBJINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_PPVOBJINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPIOLECLIENTSITEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPISTORAGEINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPISTORAGEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPISTORAGEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_SCODEHASERROR","package":"druntime","parentType":"","signature":"OLEUI_IOERR_SCODEHASERROR","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_SCODEHASERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_LPCLSIDEXCLUDEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_CCHFILEINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_CCHFILEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_CCHFILEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_SHOWHELP","package":"druntime","parentType":"","signature":"PSF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_SELECTPASTE","package":"druntime","parentType":"","signature":"PSF_SELECTPASTE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_SELECTPASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_SELECTPASTELINK","package":"druntime","parentType":"","signature":"PSF_SELECTPASTELINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_SELECTPASTELINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_CHECKDISPLAYASICON","package":"druntime","parentType":"","signature":"PSF_CHECKDISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_CHECKDISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_DISABLEDISPLAYASICON","package":"druntime","parentType":"","signature":"PSF_DISABLEDISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_DISABLEDISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_HIDECHANGEICON","package":"druntime","parentType":"","signature":"PSF_HIDECHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_HIDECHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_STAYONCLIPBOARDCHANGE","package":"druntime","parentType":"","signature":"PSF_STAYONCLIPBOARDCHANGE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_STAYONCLIPBOARDCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"PSF_NOREFRESHDATAOBJECT","package":"druntime","parentType":"","signature":"PSF_NOREFRESHDATAOBJECT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#PSF_NOREFRESHDATAOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_SRCDATAOBJECTINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_SRCDATAOBJECTINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_SRCDATAOBJECTINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_ARRPASTEENTRIESINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_IOERR_ARRLINKTYPESINVALID","package":"druntime","parentType":"","signature":"OLEUI_IOERR_ARRLINKTYPESINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_IOERR_ARRLINKTYPESINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_PSERR_CLIPBOARDCHANGED","package":"druntime","parentType":"","signature":"OLEUI_PSERR_CLIPBOARDCHANGED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_PSERR_CLIPBOARDCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_PSERR_GETCLIPBOARDFAILED","package":"druntime","parentType":"","signature":"OLEUI_PSERR_GETCLIPBOARDFAILED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_PSERR_GETCLIPBOARDFAILED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ELERR_LINKCNTRNULL","package":"druntime","parentType":"","signature":"OLEUI_ELERR_LINKCNTRNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ELERR_LINKCNTRNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_ELERR_LINKCNTRINVALID","package":"druntime","parentType":"","signature":"OLEUI_ELERR_LINKCNTRINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_ELERR_LINKCNTRINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ELF_SHOWHELP","package":"druntime","parentType":"","signature":"ELF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ELF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ELF_DISABLEUPDATENOW","package":"druntime","parentType":"","signature":"ELF_DISABLEUPDATENOW","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ELF_DISABLEUPDATENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ELF_DISABLEOPENSOURCE","package":"druntime","parentType":"","signature":"ELF_DISABLEOPENSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ELF_DISABLEOPENSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ELF_DISABLECHANGESOURCE","package":"druntime","parentType":"","signature":"ELF_DISABLECHANGESOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ELF_DISABLECHANGESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"ELF_DISABLECANCELLINK","package":"druntime","parentType":"","signature":"ELF_DISABLECANCELLINK","url":"/ddoc/druntime/core/sys/windows/oledlg.html#ELF_DISABLECANCELLINK"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CIF_SHOWHELP","package":"druntime","parentType":"","signature":"CIF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CIF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CIF_SELECTCURRENT","package":"druntime","parentType":"","signature":"CIF_SELECTCURRENT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CIF_SELECTCURRENT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CIF_SELECTDEFAULT","package":"druntime","parentType":"","signature":"CIF_SELECTDEFAULT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CIF_SELECTDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CIF_SELECTFROMFILE","package":"druntime","parentType":"","signature":"CIF_SELECTFROMFILE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CIF_SELECTFROMFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CIF_USEICONEXE","package":"druntime","parentType":"","signature":"CIF_USEICONEXE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CIF_USEICONEXE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CIERR_MUSTHAVECLSID","package":"druntime","parentType":"","signature":"OLEUI_CIERR_MUSTHAVECLSID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CIERR_MUSTHAVECLSID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","package":"druntime","parentType":"","signature":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CIERR_MUSTHAVECURRENTMETAFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CIERR_SZICONEXEINVALID","package":"druntime","parentType":"","signature":"OLEUI_CIERR_SZICONEXEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CIERR_SZICONEXEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_SHOWHELPBUTTON","package":"druntime","parentType":"","signature":"CF_SHOWHELPBUTTON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_SHOWHELPBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_SETCONVERTDEFAULT","package":"druntime","parentType":"","signature":"CF_SETCONVERTDEFAULT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_SETCONVERTDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_SETACTIVATEDEFAULT","package":"druntime","parentType":"","signature":"CF_SETACTIVATEDEFAULT","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_SETACTIVATEDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_SELECTCONVERTTO","package":"druntime","parentType":"","signature":"CF_SELECTCONVERTTO","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_SELECTCONVERTTO"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_SELECTACTIVATEAS","package":"druntime","parentType":"","signature":"CF_SELECTACTIVATEAS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_SELECTACTIVATEAS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_DISABLEDISPLAYASICON","package":"druntime","parentType":"","signature":"CF_DISABLEDISPLAYASICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_DISABLEDISPLAYASICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_DISABLEACTIVATEAS","package":"druntime","parentType":"","signature":"CF_DISABLEACTIVATEAS","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_DISABLEACTIVATEAS"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_HIDECHANGEICON","package":"druntime","parentType":"","signature":"CF_HIDECHANGEICON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_HIDECHANGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CF_CONVERTONLY","package":"druntime","parentType":"","signature":"CF_CONVERTONLY","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CF_CONVERTONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CTERR_CLASSIDINVALID","package":"druntime","parentType":"","signature":"OLEUI_CTERR_CLASSIDINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CTERR_CLASSIDINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CTERR_DVASPECTINVALID","package":"druntime","parentType":"","signature":"OLEUI_CTERR_DVASPECTINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CTERR_DVASPECTINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CTERR_CBFORMATINVALID","package":"druntime","parentType":"","signature":"OLEUI_CTERR_CBFORMATINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CTERR_CBFORMATINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CTERR_HMETAPICTINVALID","package":"druntime","parentType":"","signature":"OLEUI_CTERR_HMETAPICTINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CTERR_HMETAPICTINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CTERR_STRINGINVALID","package":"druntime","parentType":"","signature":"OLEUI_CTERR_STRINGINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CTERR_STRINGINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"BZ_DISABLECANCELBUTTON","package":"druntime","parentType":"","signature":"BZ_DISABLECANCELBUTTON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#BZ_DISABLECANCELBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"BZ_DISABLESWITCHTOBUTTON","package":"druntime","parentType":"","signature":"BZ_DISABLESWITCHTOBUTTON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#BZ_DISABLESWITCHTOBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"BZ_DISABLERETRYBUTTON","package":"druntime","parentType":"","signature":"BZ_DISABLERETRYBUTTON","url":"/ddoc/druntime/core/sys/windows/oledlg.html#BZ_DISABLERETRYBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"BZ_NOTRESPONDINGDIALOG","package":"druntime","parentType":"","signature":"BZ_NOTRESPONDINGDIALOG","url":"/ddoc/druntime/core/sys/windows/oledlg.html#BZ_NOTRESPONDINGDIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_BZERR_HTASKINVALID","package":"druntime","parentType":"","signature":"OLEUI_BZERR_HTASKINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_BZERR_HTASKINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_BZ_SWITCHTOSELECTED","package":"druntime","parentType":"","signature":"OLEUI_BZ_SWITCHTOSELECTED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_BZ_SWITCHTOSELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_BZ_RETRYSELECTED","package":"druntime","parentType":"","signature":"OLEUI_BZ_RETRYSELECTED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_BZ_RETRYSELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_BZ_CALLUNBLOCKED","package":"druntime","parentType":"","signature":"OLEUI_BZ_CALLUNBLOCKED","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_BZ_CALLUNBLOCKED"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CSF_SHOWHELP","package":"druntime","parentType":"","signature":"CSF_SHOWHELP","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CSF_SHOWHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CSF_VALIDSOURCE","package":"druntime","parentType":"","signature":"CSF_VALIDSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CSF_VALIDSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CSF_ONLYGETSOURCE","package":"druntime","parentType":"","signature":"CSF_ONLYGETSOURCE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CSF_ONLYGETSOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"CSF_EXPLORER","package":"druntime","parentType":"","signature":"CSF_EXPLORER","url":"/ddoc/druntime/core/sys/windows/oledlg.html#CSF_EXPLORER"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_LINKCNTRNULL","package":"druntime","parentType":"","signature":"OLEUI_CSERR_LINKCNTRNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_LINKCNTRNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_LINKCNTRINVALID","package":"druntime","parentType":"","signature":"OLEUI_CSERR_LINKCNTRINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_LINKCNTRINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_FROMNOTNULL","package":"druntime","parentType":"","signature":"OLEUI_CSERR_FROMNOTNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_FROMNOTNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_TONOTNULL","package":"druntime","parentType":"","signature":"OLEUI_CSERR_TONOTNULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_TONOTNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_SOURCENULL","package":"druntime","parentType":"","signature":"OLEUI_CSERR_SOURCENULL","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_SOURCENULL"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_SOURCEINVALID","package":"druntime","parentType":"","signature":"OLEUI_CSERR_SOURCEINVALID","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_SOURCEINVALID"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_SOURCEPARSERROR","package":"druntime","parentType":"","signature":"OLEUI_CSERR_SOURCEPARSERROR","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_SOURCEPARSERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"OLEUI_CSERR_SOURCEPARSEERROR","package":"druntime","parentType":"","signature":"OLEUI_CSERR_SOURCEPARSEERROR","url":"/ddoc/druntime/core/sys/windows/oledlg.html#OLEUI_CSERR_SOURCEPARSEERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"VPF_SELECTRELATIVE","package":"druntime","parentType":"","signature":"VPF_SELECTRELATIVE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#VPF_SELECTRELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"VPF_DISABLERELATIVE","package":"druntime","parentType":"","signature":"VPF_DISABLERELATIVE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#VPF_DISABLERELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.oledlg","name":"VPF_DISABLESCALE","package":"druntime","parentType":"","signature":"VPF_DISABLESCALE","url":"/ddoc/druntime/core/sys/windows/oledlg.html#VPF_DISABLESCALE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.oleidl","name":"core.sys.windows.oleidl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/oleidl.html"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"BINDSPEED","package":"druntime","parentType":"","signature":"BINDSPEED","url":"/ddoc/druntime/core/sys/windows/oleidl.html#BINDSPEED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"BINDSPEED_INDEFINITE","package":"druntime","parentType":"","signature":"BINDSPEED_INDEFINITE = 1","url":"/ddoc/druntime/core/sys/windows/oleidl.html#BINDSPEED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"BINDSPEED_MODERATE","package":"druntime","parentType":"","signature":"BINDSPEED_MODERATE = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#BINDSPEED"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"BINDSPEED_IMMEDIATE","package":"druntime","parentType":"","signature":"BINDSPEED_IMMEDIATE = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#BINDSPEED"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"OLEWHICHMK","package":"druntime","parentType":"","signature":"OLEWHICHMK","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEWHICHMK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEWHICHMK_CONTAINER","package":"druntime","parentType":"","signature":"OLEWHICHMK_CONTAINER = 1","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEWHICHMK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEWHICHMK_OBJREL","package":"druntime","parentType":"","signature":"OLEWHICHMK_OBJREL = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEWHICHMK"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEWHICHMK_OBJFULL","package":"druntime","parentType":"","signature":"OLEWHICHMK_OBJFULL = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEWHICHMK"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"OLEGETMONIKER","package":"druntime","parentType":"","signature":"OLEGETMONIKER","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEGETMONIKER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEGETMONIKER_ONLYIFTHERE","package":"druntime","parentType":"","signature":"OLEGETMONIKER_ONLYIFTHERE = 1","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEGETMONIKER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEGETMONIKER_FORCEASSIGN","package":"druntime","parentType":"","signature":"OLEGETMONIKER_FORCEASSIGN = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEGETMONIKER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEGETMONIKER_UNASSIGN","package":"druntime","parentType":"","signature":"OLEGETMONIKER_UNASSIGN = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEGETMONIKER"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLEGETMONIKER_TEMPFORUSER","package":"druntime","parentType":"","signature":"OLEGETMONIKER_TEMPFORUSER = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEGETMONIKER"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"USERCLASSTYPE","package":"druntime","parentType":"","signature":"USERCLASSTYPE","url":"/ddoc/druntime/core/sys/windows/oleidl.html#USERCLASSTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"USERCLASSTYPE_FULL","package":"druntime","parentType":"","signature":"USERCLASSTYPE_FULL = 1","url":"/ddoc/druntime/core/sys/windows/oleidl.html#USERCLASSTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"USERCLASSTYPE_SHORT","package":"druntime","parentType":"","signature":"USERCLASSTYPE_SHORT = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#USERCLASSTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"USERCLASSTYPE_APPNAME","package":"druntime","parentType":"","signature":"USERCLASSTYPE_APPNAME = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#USERCLASSTYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"DROPEFFECT","package":"druntime","parentType":"","signature":"DROPEFFECT","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"DROPEFFECT_NONE","package":"druntime","parentType":"","signature":"DROPEFFECT_NONE = 0","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"DROPEFFECT_COPY","package":"druntime","parentType":"","signature":"DROPEFFECT_COPY = 1","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"DROPEFFECT_MOVE","package":"druntime","parentType":"","signature":"DROPEFFECT_MOVE = 2","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"DROPEFFECT_LINK","package":"druntime","parentType":"","signature":"DROPEFFECT_LINK = 4","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"DROPEFFECT_SCROLL","package":"druntime","parentType":"","signature":"DROPEFFECT_SCROLL = 0x80000000","url":"/ddoc/druntime/core/sys/windows/oleidl.html#DROPEFFECT"},{"doc":"","kind":"struct","module":"core.sys.windows.oleidl","name":"OLEMENUGROUPWIDTHS","package":"druntime","parentType":"","signature":"OLEMENUGROUPWIDTHS","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEMENUGROUPWIDTHS"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEMENUGROUPWIDTHS","package":"druntime","parentType":"","signature":"LPOLEMENUGROUPWIDTHS = OLEMENUGROUPWIDTHS *","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEMENUGROUPWIDTHS"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"HOLEMENU","package":"druntime","parentType":"","signature":"HOLEMENU = HGLOBAL","url":"/ddoc/druntime/core/sys/windows/oleidl.html#HOLEMENU"},{"doc":"","kind":"enum","module":"core.sys.windows.oleidl","name":"OLECLOSE","package":"druntime","parentType":"","signature":"OLECLOSE","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLECLOSE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLECLOSE_SAVEIFDIRTY","package":"druntime","parentType":"","signature":"OLECLOSE_SAVEIFDIRTY = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLECLOSE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLECLOSE_NOSAVE","package":"druntime","parentType":"","signature":"OLECLOSE_NOSAVE = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLECLOSE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.oleidl","name":"OLECLOSE_PROMPTSAVE","package":"druntime","parentType":"","signature":"OLECLOSE_PROMPTSAVE = ","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLECLOSE"},{"doc":"","kind":"struct","module":"core.sys.windows.oleidl","name":"OLEVERB","package":"druntime","parentType":"","signature":"OLEVERB","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEVERB"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEVERB","package":"druntime","parentType":"","signature":"LPOLEVERB = OLEVERB *","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEVERB"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"BORDERWIDTHS","package":"druntime","parentType":"","signature":"BORDERWIDTHS = RECT","url":"/ddoc/druntime/core/sys/windows/oleidl.html#BORDERWIDTHS"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPBORDERWIDTHS","package":"druntime","parentType":"","signature":"LPBORDERWIDTHS = LPRECT","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPBORDERWIDTHS"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPCBORDERWIDTHS","package":"druntime","parentType":"","signature":"LPCBORDERWIDTHS = LPCRECT","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPCBORDERWIDTHS"},{"doc":"","kind":"struct","module":"core.sys.windows.oleidl","name":"OLEINPLACEFRAMEINFO","package":"druntime","parentType":"","signature":"OLEINPLACEFRAMEINFO","url":"/ddoc/druntime/core/sys/windows/oleidl.html#OLEINPLACEFRAMEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEINPLACEFRAMEINFO","package":"druntime","parentType":"","signature":"LPOLEINPLACEFRAMEINFO = OLEINPLACEFRAMEINFO *","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEINPLACEFRAMEINFO"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IEnumOLEVERB","package":"druntime","parentType":"","signature":"IEnumOLEVERB : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IEnumOLEVERB"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Next","package":"druntime","parentType":"IEnumOLEVERB","signature":"HRESULT Next(ULONG, OLEVERB *, ULONG *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IEnumOLEVERB.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Skip","package":"druntime","parentType":"IEnumOLEVERB","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/oleidl/IEnumOLEVERB.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Reset","package":"druntime","parentType":"IEnumOLEVERB","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/oleidl/IEnumOLEVERB.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Clone","package":"druntime","parentType":"IEnumOLEVERB","signature":"HRESULT Clone(IEnumOLEVERB *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IEnumOLEVERB.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPENUMOLEVERB","package":"druntime","parentType":"","signature":"LPENUMOLEVERB = IEnumOLEVERB","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPENUMOLEVERB"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IParseDisplayName","package":"druntime","parentType":"","signature":"IParseDisplayName : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IParseDisplayName"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"ParseDisplayName","package":"druntime","parentType":"IParseDisplayName","signature":"HRESULT ParseDisplayName(IBindCtx, LPOLESTR, ULONG *, IMoniker *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IParseDisplayName.ParseDisplayName.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPPARSEDISPLAYNAME","package":"druntime","parentType":"","signature":"LPPARSEDISPLAYNAME = IParseDisplayName","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPPARSEDISPLAYNAME"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleContainer","package":"druntime","parentType":"","signature":"IOleContainer : IParseDisplayName","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleContainer"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnumObjects","package":"druntime","parentType":"IOleContainer","signature":"HRESULT EnumObjects(DWORD, IEnumUnknown *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleContainer.EnumObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"LockContainer","package":"druntime","parentType":"IOleContainer","signature":"HRESULT LockContainer(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleContainer.LockContainer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLECONTAINER","package":"druntime","parentType":"","signature":"LPOLECONTAINER = IOleContainer","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLECONTAINER"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleItemContainer","package":"druntime","parentType":"","signature":"IOleItemContainer : IOleContainer","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleItemContainer"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetObject","package":"druntime","parentType":"IOleItemContainer","signature":"HRESULT GetObject(LPOLESTR, DWORD, IBindCtx, REFIID, void * *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleItemContainer.GetObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetObjectStorage","package":"druntime","parentType":"IOleItemContainer","signature":"HRESULT GetObjectStorage(LPOLESTR, IBindCtx, REFIID, void * *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleItemContainer.GetObjectStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"IsRunning","package":"druntime","parentType":"IOleItemContainer","signature":"HRESULT IsRunning(LPOLESTR)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleItemContainer.IsRunning.html"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleClientSite","package":"druntime","parentType":"","signature":"IOleClientSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleClientSite"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SaveObject","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT SaveObject()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.SaveObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetMoniker","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT GetMoniker(DWORD, DWORD, LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.GetMoniker.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetContainer","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT GetContainer(LPOLECONTAINER *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.GetContainer.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"ShowObject","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT ShowObject()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.ShowObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnShowWindow","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT OnShowWindow(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.OnShowWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"RequestNewObjectLayout","package":"druntime","parentType":"IOleClientSite","signature":"HRESULT RequestNewObjectLayout()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleClientSite.RequestNewObjectLayout.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLECLIENTSITE","package":"druntime","parentType":"","signature":"LPOLECLIENTSITE = IOleClientSite","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLECLIENTSITE"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleObject","package":"druntime","parentType":"","signature":"IOleObject : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleObject"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetClientSite","package":"druntime","parentType":"IOleObject","signature":"HRESULT SetClientSite(LPOLECLIENTSITE)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.SetClientSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetClientSite","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetClientSite(LPOLECLIENTSITE *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetClientSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetHostNames","package":"druntime","parentType":"IOleObject","signature":"HRESULT SetHostNames(LPCOLESTR, LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.SetHostNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Close","package":"druntime","parentType":"IOleObject","signature":"HRESULT Close(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.Close.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetMoniker","package":"druntime","parentType":"IOleObject","signature":"HRESULT SetMoniker(DWORD, LPMONIKER)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.SetMoniker.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetMoniker","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetMoniker(DWORD, DWORD, LPMONIKER *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetMoniker.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"InitFromData","package":"druntime","parentType":"IOleObject","signature":"HRESULT InitFromData(LPDATAOBJECT, BOOL, DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.InitFromData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetClipboardData","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetClipboardData(DWORD, LPDATAOBJECT *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetClipboardData.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DoVerb","package":"druntime","parentType":"IOleObject","signature":"HRESULT DoVerb(LONG, LPMSG, LPOLECLIENTSITE, LONG, HWND, LPCRECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.DoVerb.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnumVerbs","package":"druntime","parentType":"IOleObject","signature":"HRESULT EnumVerbs(LPENUMOLEVERB *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.EnumVerbs.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Update","package":"druntime","parentType":"IOleObject","signature":"HRESULT Update()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.Update.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"IsUpToDate","package":"druntime","parentType":"IOleObject","signature":"HRESULT IsUpToDate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.IsUpToDate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetUserClassID","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetUserClassID(LPCLSID)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetUserClassID.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetUserType","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetUserType(DWORD, LPOLESTR *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetUserType.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetExtent","package":"druntime","parentType":"IOleObject","signature":"HRESULT SetExtent(DWORD, SIZEL *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.SetExtent.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetExtent","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetExtent(DWORD, SIZEL *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetExtent.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Advise","package":"druntime","parentType":"IOleObject","signature":"HRESULT Advise(LPADVISESINK, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.Advise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Unadvise","package":"druntime","parentType":"IOleObject","signature":"HRESULT Unadvise(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.Unadvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnumAdvise","package":"druntime","parentType":"IOleObject","signature":"HRESULT EnumAdvise(LPENUMSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.EnumAdvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetMiscStatus","package":"druntime","parentType":"IOleObject","signature":"HRESULT GetMiscStatus(DWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.GetMiscStatus.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetColorScheme","package":"druntime","parentType":"IOleObject","signature":"HRESULT SetColorScheme(LPLOGPALETTE)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleObject.SetColorScheme.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEOBJECT","package":"druntime","parentType":"","signature":"LPOLEOBJECT = IOleObject","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEOBJECT"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleWindow","package":"druntime","parentType":"","signature":"IOleWindow : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleWindow"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetWindow","package":"druntime","parentType":"IOleWindow","signature":"HRESULT GetWindow(HWND *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleWindow.GetWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"ContextSensitiveHelp","package":"druntime","parentType":"IOleWindow","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleWindow.ContextSensitiveHelp.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEWINDOW","package":"druntime","parentType":"","signature":"LPOLEWINDOW = IOleWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEWINDOW"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleInPlaceUIWindow","package":"druntime","parentType":"","signature":"IOleInPlaceUIWindow : IOleWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleInPlaceUIWindow"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetBorder","package":"druntime","parentType":"IOleInPlaceUIWindow","signature":"HRESULT GetBorder(LPRECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceUIWindow.GetBorder.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"RequestBorderSpace","package":"druntime","parentType":"IOleInPlaceUIWindow","signature":"HRESULT RequestBorderSpace(LPCBORDERWIDTHS)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceUIWindow.RequestBorderSpace.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetBorderSpace","package":"druntime","parentType":"IOleInPlaceUIWindow","signature":"HRESULT SetBorderSpace(LPCBORDERWIDTHS)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceUIWindow.SetBorderSpace.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetActiveObject","package":"druntime","parentType":"IOleInPlaceUIWindow","signature":"HRESULT SetActiveObject(LPOLEINPLACEACTIVEOBJECT, LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceUIWindow.SetActiveObject.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEINPLACEUIWINDOW","package":"druntime","parentType":"","signature":"LPOLEINPLACEUIWINDOW = IOleInPlaceUIWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEINPLACEUIWINDOW"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleInPlaceObject","package":"druntime","parentType":"","signature":"IOleInPlaceObject : IOleWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleInPlaceObject"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"InPlaceDeactivate","package":"druntime","parentType":"IOleInPlaceObject","signature":"HRESULT InPlaceDeactivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceObject.InPlaceDeactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"UIDeactivate","package":"druntime","parentType":"IOleInPlaceObject","signature":"HRESULT UIDeactivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceObject.UIDeactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetObjectRects","package":"druntime","parentType":"IOleInPlaceObject","signature":"HRESULT SetObjectRects(LPCRECT, LPCRECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceObject.SetObjectRects.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"ReactivateAndUndo","package":"druntime","parentType":"IOleInPlaceObject","signature":"HRESULT ReactivateAndUndo()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceObject.ReactivateAndUndo.html"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleInPlaceActiveObject","package":"druntime","parentType":"","signature":"IOleInPlaceActiveObject : IOleWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleInPlaceActiveObject"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"TranslateAccelerator","package":"druntime","parentType":"IOleInPlaceActiveObject","signature":"HRESULT TranslateAccelerator(LPMSG)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceActiveObject.TranslateAccelerator.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnFrameWindowActivate","package":"druntime","parentType":"IOleInPlaceActiveObject","signature":"HRESULT OnFrameWindowActivate(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceActiveObject.OnFrameWindowActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnDocWindowActivate","package":"druntime","parentType":"IOleInPlaceActiveObject","signature":"HRESULT OnDocWindowActivate(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceActiveObject.OnDocWindowActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"ResizeBorder","package":"druntime","parentType":"IOleInPlaceActiveObject","signature":"HRESULT ResizeBorder(LPCRECT, LPOLEINPLACEUIWINDOW, BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceActiveObject.ResizeBorder.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnableModeless","package":"druntime","parentType":"IOleInPlaceActiveObject","signature":"HRESULT EnableModeless(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceActiveObject.EnableModeless.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEINPLACEACTIVEOBJECT","package":"druntime","parentType":"","signature":"LPOLEINPLACEACTIVEOBJECT = IOleInPlaceActiveObject","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEINPLACEACTIVEOBJECT"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleInPlaceFrame","package":"druntime","parentType":"","signature":"IOleInPlaceFrame : IOleInPlaceUIWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleInPlaceFrame"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"InsertMenus","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT InsertMenus(HMENU, LPOLEMENUGROUPWIDTHS)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.InsertMenus.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetMenu","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT SetMenu(HMENU, HOLEMENU, HWND)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.SetMenu.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"RemoveMenus","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT RemoveMenus(HMENU)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.RemoveMenus.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetStatusText","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT SetStatusText(LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.SetStatusText.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnableModeless","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT EnableModeless(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.EnableModeless.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"TranslateAccelerator","package":"druntime","parentType":"IOleInPlaceFrame","signature":"HRESULT TranslateAccelerator(LPMSG, WORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceFrame.TranslateAccelerator.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEINPLACEFRAME","package":"druntime","parentType":"","signature":"LPOLEINPLACEFRAME = IOleInPlaceFrame","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEINPLACEFRAME"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleInPlaceSite","package":"druntime","parentType":"","signature":"IOleInPlaceSite : IOleWindow","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleInPlaceSite"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"CanInPlaceActivate","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT CanInPlaceActivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.CanInPlaceActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnInPlaceActivate","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT OnInPlaceActivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.OnInPlaceActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnUIActivate","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT OnUIActivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.OnUIActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetWindowContext","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT GetWindowContext(IOleInPlaceFrame, IOleInPlaceUIWindow, LPRECT, LPRECT, LPOLEINPLACEFRAMEINFO)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.GetWindowContext.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Scroll","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT Scroll(SIZE)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.Scroll.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnUIDeactivate","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT OnUIDeactivate(BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.OnUIDeactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnInPlaceDeactivate","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT OnInPlaceDeactivate()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.OnInPlaceDeactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DiscardUndoState","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT DiscardUndoState()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.DiscardUndoState.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DeactivateAndUndo","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT DeactivateAndUndo()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.DeactivateAndUndo.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnPosRectChange","package":"druntime","parentType":"IOleInPlaceSite","signature":"HRESULT OnPosRectChange(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleInPlaceSite.OnPosRectChange.html"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleAdviseHolder","package":"druntime","parentType":"","signature":"IOleAdviseHolder : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleAdviseHolder"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Advise","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT Advise(LPADVISESINK, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.Advise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Unadvise","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT Unadvise(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.Unadvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnumAdvise","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT EnumAdvise(LPENUMSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.EnumAdvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SendOnRename","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT SendOnRename(LPMONIKER)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.SendOnRename.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SendOnSave","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT SendOnSave()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.SendOnSave.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SendOnClose","package":"druntime","parentType":"IOleAdviseHolder","signature":"HRESULT SendOnClose()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleAdviseHolder.SendOnClose.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLEADVISEHOLDER","package":"druntime","parentType":"","signature":"LPOLEADVISEHOLDER = IOleAdviseHolder","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLEADVISEHOLDER"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IDropSource","package":"druntime","parentType":"","signature":"IDropSource : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IDropSource"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"QueryContinueDrag","package":"druntime","parentType":"IDropSource","signature":"HRESULT QueryContinueDrag(BOOL, DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropSource.QueryContinueDrag.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GiveFeedback","package":"druntime","parentType":"IDropSource","signature":"HRESULT GiveFeedback(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropSource.GiveFeedback.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPDROPSOURCE","package":"druntime","parentType":"","signature":"LPDROPSOURCE = IDropSource","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPDROPSOURCE"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IDropTarget","package":"druntime","parentType":"","signature":"IDropTarget : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IDropTarget"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DragEnter","package":"druntime","parentType":"IDropTarget","signature":"HRESULT DragEnter(LPDATAOBJECT, DWORD, POINTL, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropTarget.DragEnter.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DragOver","package":"druntime","parentType":"IDropTarget","signature":"HRESULT DragOver(DWORD, POINTL, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropTarget.DragOver.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DragLeave","package":"druntime","parentType":"IDropTarget","signature":"HRESULT DragLeave()","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropTarget.DragLeave.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Drop","package":"druntime","parentType":"IDropTarget","signature":"HRESULT Drop(LPDATAOBJECT, DWORD, POINTL, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IDropTarget.Drop.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPDROPTARGET","package":"druntime","parentType":"","signature":"LPDROPTARGET = IDropTarget","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPDROPTARGET"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"__IView_pfncont","package":"druntime","parentType":"","signature":"__IView_pfncont = BOOL function(ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/oleidl.html#__IView_pfncont"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IViewObject","package":"druntime","parentType":"","signature":"IViewObject : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IViewObject"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Draw","package":"druntime","parentType":"IViewObject","signature":"HRESULT Draw(DWORD, LONG, PVOID, DVTARGETDEVICE *, HDC, HDC, LPCRECTL, LPCRECTL, __IView_pfncont pfnContinue, ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.Draw.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetColorSet","package":"druntime","parentType":"IViewObject","signature":"HRESULT GetColorSet(DWORD, LONG, PVOID, DVTARGETDEVICE *, HDC, LPLOGPALETTE *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.GetColorSet.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Freeze","package":"druntime","parentType":"IViewObject","signature":"HRESULT Freeze(DWORD, LONG, PVOID, PDWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.Freeze.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Unfreeze","package":"druntime","parentType":"IViewObject","signature":"HRESULT Unfreeze(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.Unfreeze.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetAdvise","package":"druntime","parentType":"IViewObject","signature":"HRESULT SetAdvise(DWORD, DWORD, IAdviseSink)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.SetAdvise.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetAdvise","package":"druntime","parentType":"IViewObject","signature":"HRESULT GetAdvise(PDWORD, PDWORD, IAdviseSink *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject.GetAdvise.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPVIEWOBJECT","package":"druntime","parentType":"","signature":"LPVIEWOBJECT = IViewObject","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPVIEWOBJECT"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IViewObject2","package":"druntime","parentType":"","signature":"IViewObject2 : IViewObject","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IViewObject2"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"GetExtent","package":"druntime","parentType":"IViewObject2","signature":"HRESULT GetExtent(DWORD, LONG, DVTARGETDEVICE *, LPSIZEL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IViewObject2.GetExtent.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPVIEWOBJECT2","package":"druntime","parentType":"","signature":"LPVIEWOBJECT2 = IViewObject2","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPVIEWOBJECT2"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleCache","package":"druntime","parentType":"","signature":"IOleCache : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleCache"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Cache","package":"druntime","parentType":"IOleCache","signature":"HRESULT Cache(FORMATETC *, DWORD, DWORD *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache.Cache.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"Uncache","package":"druntime","parentType":"IOleCache","signature":"HRESULT Uncache(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache.Uncache.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"EnumCache","package":"druntime","parentType":"IOleCache","signature":"HRESULT EnumCache(IEnumSTATDATA *)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache.EnumCache.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"InitCache","package":"druntime","parentType":"IOleCache","signature":"HRESULT InitCache(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache.InitCache.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"SetData","package":"druntime","parentType":"IOleCache","signature":"HRESULT SetData(FORMATETC *, STGMEDIUM *, BOOL)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache.SetData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLECACHE","package":"druntime","parentType":"","signature":"LPOLECACHE = IOleCache","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLECACHE"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleCache2","package":"druntime","parentType":"","signature":"IOleCache2 : IOleCache","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleCache2"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"UpdateCache","package":"druntime","parentType":"IOleCache2","signature":"HRESULT UpdateCache(LPDATAOBJECT, DWORD, LPVOID)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache2.UpdateCache.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"DiscardCache","package":"druntime","parentType":"IOleCache2","signature":"HRESULT DiscardCache(DWORD)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCache2.DiscardCache.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLECACHE2","package":"druntime","parentType":"","signature":"LPOLECACHE2 = IOleCache2","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLECACHE2"},{"doc":"","kind":"interface","module":"core.sys.windows.oleidl","name":"IOleCacheControl","package":"druntime","parentType":"","signature":"IOleCacheControl : IUnknown","url":"/ddoc/druntime/core/sys/windows/oleidl.html#IOleCacheControl"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnRun","package":"druntime","parentType":"IOleCacheControl","signature":"HRESULT OnRun(LPDATAOBJECT)","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCacheControl.OnRun.html"},{"doc":"","kind":"method","module":"core.sys.windows.oleidl","name":"OnStop","package":"druntime","parentType":"IOleCacheControl","signature":"HRESULT OnStop()","url":"/ddoc/druntime/core/sys/windows/oleidl/IOleCacheControl.OnStop.html"},{"doc":"","kind":"alias","module":"core.sys.windows.oleidl","name":"LPOLECACHECONTROL","package":"druntime","parentType":"","signature":"LPOLECACHECONTROL = IOleCacheControl","url":"/ddoc/druntime/core/sys/windows/oleidl.html#LPOLECACHECONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.oleidl","name":"MK_ALT","package":"druntime","parentType":"","signature":"MK_ALT","url":"/ddoc/druntime/core/sys/windows/oleidl.html#MK_ALT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.pbt","name":"core.sys.windows.pbt","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/pbt.html"},{"doc":"","kind":"variable","module":"core.sys.windows.pbt","name":"PBTF_APMRESUMEFROMFAILURE","package":"druntime","parentType":"","signature":"LPARAM PBTF_APMRESUMEFROMFAILURE","url":"/ddoc/druntime/core/sys/windows/pbt.html#PBTF_APMRESUMEFROMFAILURE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.powrprof","name":"core.sys.windows.powrprof","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/powrprof.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"CallNtPowerInformation","package":"druntime","parentType":"","signature":"NTSTATUS CallNtPowerInformation(POWER_INFORMATION_LEVEL,  PVOID,  ULONG,\n       PVOID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/powrprof/CallNtPowerInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"CanUserWritePwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN CanUserWritePwrScheme()","url":"/ddoc/druntime/core/sys/windows/powrprof/CanUserWritePwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"DeletePwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN DeletePwrScheme(UINT)","url":"/ddoc/druntime/core/sys/windows/powrprof/DeletePwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"EnumPwrSchemes","package":"druntime","parentType":"","signature":"BOOLEAN EnumPwrSchemes(PWRSCHEMESENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/powrprof/EnumPwrSchemes.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"GetActivePwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN GetActivePwrScheme(PUINT)","url":"/ddoc/druntime/core/sys/windows/powrprof/GetActivePwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"GetCurrentPowerPolicies","package":"druntime","parentType":"","signature":"BOOLEAN GetCurrentPowerPolicies(PGLOBAL_POWER_POLICY,  PPOWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/GetCurrentPowerPolicies.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"GetPwrCapabilities","package":"druntime","parentType":"","signature":"BOOLEAN GetPwrCapabilities(PSYSTEM_POWER_CAPABILITIES)","url":"/ddoc/druntime/core/sys/windows/powrprof/GetPwrCapabilities.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"GetPwrDiskSpindownRange","package":"druntime","parentType":"","signature":"BOOLEAN GetPwrDiskSpindownRange(PUINT,  PUINT)","url":"/ddoc/druntime/core/sys/windows/powrprof/GetPwrDiskSpindownRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"IsAdminOverrideActive","package":"druntime","parentType":"","signature":"BOOLEAN IsAdminOverrideActive(PADMINISTRATOR_POWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/IsAdminOverrideActive.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"IsPwrHibernateAllowed","package":"druntime","parentType":"","signature":"BOOLEAN IsPwrHibernateAllowed()","url":"/ddoc/druntime/core/sys/windows/powrprof/IsPwrHibernateAllowed.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"IsPwrShutdownAllowed","package":"druntime","parentType":"","signature":"BOOLEAN IsPwrShutdownAllowed()","url":"/ddoc/druntime/core/sys/windows/powrprof/IsPwrShutdownAllowed.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"IsPwrSuspendAllowed","package":"druntime","parentType":"","signature":"BOOLEAN IsPwrSuspendAllowed()","url":"/ddoc/druntime/core/sys/windows/powrprof/IsPwrSuspendAllowed.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"ReadGlobalPwrPolicy","package":"druntime","parentType":"","signature":"BOOLEAN ReadGlobalPwrPolicy(PGLOBAL_POWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/ReadGlobalPwrPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"ReadProcessorPwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN ReadProcessorPwrScheme(UINT,  PMACHINE_PROCESSOR_POWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/ReadProcessorPwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"ReadPwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN ReadPwrScheme(UINT,  PPOWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/ReadPwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"SetActivePwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN SetActivePwrScheme(UINT,  PGLOBAL_POWER_POLICY,  PPOWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/SetActivePwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"SetSuspendState","package":"druntime","parentType":"","signature":"BOOLEAN SetSuspendState(BOOLEAN,  BOOLEAN,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/powrprof/SetSuspendState.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"WriteGlobalPwrPolicy","package":"druntime","parentType":"","signature":"BOOLEAN WriteGlobalPwrPolicy(PGLOBAL_POWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/WriteGlobalPwrPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"WriteProcessorPwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN WriteProcessorPwrScheme(UINT,  PMACHINE_PROCESSOR_POWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/WriteProcessorPwrScheme.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"ValidatePowerPolicies","package":"druntime","parentType":"","signature":"BOOLEAN ValidatePowerPolicies(PGLOBAL_POWER_POLICY,  PPOWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/ValidatePowerPolicies.html"},{"doc":"","kind":"function","module":"core.sys.windows.powrprof","name":"WritePwrScheme","package":"druntime","parentType":"","signature":"BOOLEAN WritePwrScheme(PUINT,  LPTSTR,  LPTSTR,  PPOWER_POLICY)","url":"/ddoc/druntime/core/sys/windows/powrprof/WritePwrScheme.html"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"GLOBAL_MACHINE_POWER_POLICY","package":"druntime","parentType":"","signature":"GLOBAL_MACHINE_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#GLOBAL_MACHINE_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PGLOBAL_MACHINE_POWER_POLICY","package":"druntime","parentType":"","signature":"PGLOBAL_MACHINE_POWER_POLICY = GLOBAL_MACHINE_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PGLOBAL_MACHINE_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"GLOBAL_USER_POWER_POLICY","package":"druntime","parentType":"","signature":"GLOBAL_USER_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#GLOBAL_USER_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PGLOBAL_USER_POWER_POLICY","package":"druntime","parentType":"","signature":"PGLOBAL_USER_POWER_POLICY = GLOBAL_USER_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PGLOBAL_USER_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"GLOBAL_POWER_POLICY","package":"druntime","parentType":"","signature":"GLOBAL_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#GLOBAL_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PGLOBAL_POWER_POLICY","package":"druntime","parentType":"","signature":"PGLOBAL_POWER_POLICY = GLOBAL_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PGLOBAL_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"MACHINE_POWER_POLICY","package":"druntime","parentType":"","signature":"MACHINE_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#MACHINE_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PMACHINE_POWER_POLICY","package":"druntime","parentType":"","signature":"PMACHINE_POWER_POLICY = MACHINE_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PMACHINE_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"MACHINE_PROCESSOR_POWER_POLICY","package":"druntime","parentType":"","signature":"MACHINE_PROCESSOR_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#MACHINE_PROCESSOR_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PMACHINE_PROCESSOR_POWER_POLICY","package":"druntime","parentType":"","signature":"PMACHINE_PROCESSOR_POWER_POLICY = MACHINE_PROCESSOR_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PMACHINE_PROCESSOR_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"USER_POWER_POLICY","package":"druntime","parentType":"","signature":"USER_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#USER_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PUSER_POWER_POLICY","package":"druntime","parentType":"","signature":"PUSER_POWER_POLICY = USER_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PUSER_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.powrprof","name":"POWER_POLICY","package":"druntime","parentType":"","signature":"POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/powrprof.html#POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PPOWER_POLICY","package":"druntime","parentType":"","signature":"PPOWER_POLICY = POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PPOWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PWRSCHEMESENUMPROC","package":"druntime","parentType":"","signature":"PWRSCHEMESENUMPROC = BOOLEAN function(UINT,  DWORD,  LPTSTR,  DWORD,  LPTSTR,  PPOWER_POLICY,\n       LPARAM)","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PWRSCHEMESENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.powrprof","name":"PFNNTINITIATEPWRACTION","package":"druntime","parentType":"","signature":"PFNNTINITIATEPWRACTION = BOOLEAN function(POWER_ACTION,  SYSTEM_POWER_STATE,  ULONG,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/powrprof.html#PFNNTINITIATEPWRACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.powrprof","name":"EnableSysTrayBatteryMeter","package":"druntime","parentType":"","signature":"ULONG EnableSysTrayBatteryMeter","url":"/ddoc/druntime/core/sys/windows/powrprof.html#EnableSysTrayBatteryMeter"},{"doc":"","kind":"variable","module":"core.sys.windows.powrprof","name":"NEWSCHEME","package":"druntime","parentType":"","signature":"UINT NEWSCHEME","url":"/ddoc/druntime/core/sys/windows/powrprof.html#NEWSCHEME"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.prsht","name":"core.sys.windows.prsht","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/prsht.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"CreatePropertySheetPageA","package":"druntime","parentType":"","signature":"HPROPSHEETPAGE CreatePropertySheetPageA(LPCPROPSHEETPAGEA)","url":"/ddoc/druntime/core/sys/windows/prsht/CreatePropertySheetPageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"CreatePropertySheetPageW","package":"druntime","parentType":"","signature":"HPROPSHEETPAGE CreatePropertySheetPageW(LPCPROPSHEETPAGEW)","url":"/ddoc/druntime/core/sys/windows/prsht/CreatePropertySheetPageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"DestroyPropertySheetPage","package":"druntime","parentType":"","signature":"BOOL DestroyPropertySheetPage(HPROPSHEETPAGE)","url":"/ddoc/druntime/core/sys/windows/prsht/DestroyPropertySheetPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropertySheetA","package":"druntime","parentType":"","signature":"INT_PTR PropertySheetA(LPCPROPSHEETHEADERA)","url":"/ddoc/druntime/core/sys/windows/prsht/PropertySheetA.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropertySheetW","package":"druntime","parentType":"","signature":"INT_PTR PropertySheetW(LPCPROPSHEETHEADERW)","url":"/ddoc/druntime/core/sys/windows/prsht/PropertySheetW.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_SetCurSel","package":"druntime","parentType":"","signature":"BOOL PropSheet_SetCurSel(HWND hPropSheetDlg,  HPROPSHEETPAGE hpage,\n       HPROPSHEETPAGE index)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_SetCurSel.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_RemovePage","package":"druntime","parentType":"","signature":"VOID PropSheet_RemovePage(HWND hPropSheetDlg,  int  index,  HPROPSHEETPAGE hpage)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_RemovePage.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_AddPage","package":"druntime","parentType":"","signature":"BOOL PropSheet_AddPage(HWND hPropSheetDlg,  HPROPSHEETPAGE hpage)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_AddPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_Changed","package":"druntime","parentType":"","signature":"VOID PropSheet_Changed(HWND hPropSheetDlg,  HWND hwndPage)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_Changed.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_RestartWindows","package":"druntime","parentType":"","signature":"VOID PropSheet_RestartWindows(HWND hPropSheetDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_RestartWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_RebootSystem","package":"druntime","parentType":"","signature":"VOID PropSheet_RebootSystem(HWND hPropSheetDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_RebootSystem.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_CancelToClose","package":"druntime","parentType":"","signature":"VOID PropSheet_CancelToClose(HWND hPropSheetDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_CancelToClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_QuerySiblings","package":"druntime","parentType":"","signature":"int PropSheet_QuerySiblings(HWND hPropSheetDlg,  WPARAM param1,  LPARAM param2)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_QuerySiblings.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_UnChanged","package":"druntime","parentType":"","signature":"VOID PropSheet_UnChanged(HWND hPropSheetDlg,  HWND hwndPage)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_UnChanged.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_Apply","package":"druntime","parentType":"","signature":"BOOL PropSheet_Apply(HWND hPropSheetDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_Apply.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_SetTitle","package":"druntime","parentType":"","signature":"VOID PropSheet_SetTitle(HWND hPropSheetDlg,  DWORD wStyle,  LPTSTR lpszText)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_SetTitle.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_SetWizButtons","package":"druntime","parentType":"","signature":"VOID PropSheet_SetWizButtons(HWND hPropSheetDlg,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_SetWizButtons.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_PressButton","package":"druntime","parentType":"","signature":"BOOL PropSheet_PressButton(HWND hPropSheetDlg,  int  iButton)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_PressButton.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_SetCurSelByID","package":"druntime","parentType":"","signature":"BOOL PropSheet_SetCurSelByID(HWND hPropSheetDlg,  int  id)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_SetCurSelByID.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_SetFinishText","package":"druntime","parentType":"","signature":"VOID PropSheet_SetFinishText(HWND hPropSheetDlg,  LPTSTR lpszText)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_SetFinishText.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_GetTabControl","package":"druntime","parentType":"","signature":"HWND PropSheet_GetTabControl(HWND hPropSheetDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_GetTabControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_IsDialogMessage","package":"druntime","parentType":"","signature":"BOOL PropSheet_IsDialogMessage(HWND hDlg,  LPMSG pMsg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_IsDialogMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_GetCurrentPageHwnd","package":"druntime","parentType":"","signature":"HWND PropSheet_GetCurrentPageHwnd(HWND hDlg)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_GetCurrentPageHwnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.prsht","name":"PropSheet_InsertPage","package":"druntime","parentType":"","signature":"BOOL PropSheet_InsertPage(HWND hPropSheetDlg,  WPARAM wInsertAfter,\n       HPROPSHEETPAGE hpage)","url":"/ddoc/druntime/core/sys/windows/prsht/PropSheet_InsertPage.html"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPFNPSPCALLBACKA","package":"druntime","parentType":"","signature":"LPFNPSPCALLBACKA = UINT function(HWND,  UINT,  LPPROPSHEETPAGEA)","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPFNPSPCALLBACKA"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPFNPSPCALLBACKW","package":"druntime","parentType":"","signature":"LPFNPSPCALLBACKW = UINT function(HWND,  UINT,  LPPROPSHEETPAGEW)","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPFNPSPCALLBACKW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"PFNPROPSHEETCALLBACK","package":"druntime","parentType":"","signature":"PFNPROPSHEETCALLBACK = int  function(HWND,  UINT,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/prsht.html#PFNPROPSHEETCALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.prsht","name":"PROPSHEETPAGEA","package":"druntime","parentType":"","signature":"PROPSHEETPAGEA","url":"/ddoc/druntime/core/sys/windows/prsht.html#PROPSHEETPAGEA"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPPROPSHEETPAGEA","package":"druntime","parentType":"","signature":"LPPROPSHEETPAGEA = PROPSHEETPAGEA *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPPROPSHEETPAGEA"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPCPROPSHEETPAGEA","package":"druntime","parentType":"","signature":"LPCPROPSHEETPAGEA = const(PROPSHEETPAGEA) *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPCPROPSHEETPAGEA"},{"doc":"","kind":"struct","module":"core.sys.windows.prsht","name":"PROPSHEETPAGEW","package":"druntime","parentType":"","signature":"PROPSHEETPAGEW","url":"/ddoc/druntime/core/sys/windows/prsht.html#PROPSHEETPAGEW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPPROPSHEETPAGEW","package":"druntime","parentType":"","signature":"LPPROPSHEETPAGEW = PROPSHEETPAGEW *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPPROPSHEETPAGEW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPCPROPSHEETPAGEW","package":"druntime","parentType":"","signature":"LPCPROPSHEETPAGEW = const(PROPSHEETPAGEW) *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPCPROPSHEETPAGEW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"HPROPSHEETPAGE","package":"druntime","parentType":"","signature":"HPROPSHEETPAGE = HANDLE","url":"/ddoc/druntime/core/sys/windows/prsht.html#HPROPSHEETPAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.prsht","name":"PROPSHEETHEADERA","package":"druntime","parentType":"","signature":"PROPSHEETHEADERA","url":"/ddoc/druntime/core/sys/windows/prsht.html#PROPSHEETHEADERA"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPPROPSHEETHEADERA","package":"druntime","parentType":"","signature":"LPPROPSHEETHEADERA = PROPSHEETHEADERA *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPPROPSHEETHEADERA"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPCPROPSHEETHEADERA","package":"druntime","parentType":"","signature":"LPCPROPSHEETHEADERA = const(PROPSHEETHEADERA) *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPCPROPSHEETHEADERA"},{"doc":"","kind":"struct","module":"core.sys.windows.prsht","name":"PROPSHEETHEADERW","package":"druntime","parentType":"","signature":"PROPSHEETHEADERW","url":"/ddoc/druntime/core/sys/windows/prsht.html#PROPSHEETHEADERW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPPROPSHEETHEADERW","package":"druntime","parentType":"","signature":"LPPROPSHEETHEADERW = PROPSHEETHEADERW *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPPROPSHEETHEADERW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPCPROPSHEETHEADERW","package":"druntime","parentType":"","signature":"LPCPROPSHEETHEADERW = const(PROPSHEETHEADERW) *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPCPROPSHEETHEADERW"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPFNADDPROPSHEETPAGE","package":"druntime","parentType":"","signature":"LPFNADDPROPSHEETPAGE = BOOL function(HPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPFNADDPROPSHEETPAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPFNADDPROPSHEETPAGES","package":"druntime","parentType":"","signature":"LPFNADDPROPSHEETPAGES = BOOL function(LPVOID,  LPFNADDPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPFNADDPROPSHEETPAGES"},{"doc":"","kind":"struct","module":"core.sys.windows.prsht","name":"PSHNOTIFY","package":"druntime","parentType":"","signature":"PSHNOTIFY","url":"/ddoc/druntime/core/sys/windows/prsht.html#PSHNOTIFY"},{"doc":"","kind":"alias","module":"core.sys.windows.prsht","name":"LPPSHNOTIFY","package":"druntime","parentType":"","signature":"LPPSHNOTIFY = PSHNOTIFY *","url":"/ddoc/druntime/core/sys/windows/prsht.html#LPPSHNOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.prsht","name":"MAXPROPPAGES","package":"druntime","parentType":"","signature":"MAXPROPPAGES","url":"/ddoc/druntime/core/sys/windows/prsht.html#MAXPROPPAGES"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.psapi","name":"core.sys.windows.psapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/psapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumProcesses","package":"druntime","parentType":"","signature":"BOOL EnumProcesses(DWORD *,  DWORD,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumProcesses.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetProcessImageFileNameA","package":"druntime","parentType":"","signature":"DWORD GetProcessImageFileNameA(HANDLE,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetProcessImageFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetProcessImageFileNameW","package":"druntime","parentType":"","signature":"DWORD GetProcessImageFileNameW(HANDLE,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetProcessImageFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumProcessModules","package":"druntime","parentType":"","signature":"BOOL EnumProcessModules(HANDLE,  HMODULE *,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumProcessModules.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumProcessModulesEx","package":"druntime","parentType":"","signature":"BOOL EnumProcessModulesEx(HANDLE,  HMODULE *,  DWORD,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumProcessModulesEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetModuleBaseNameA","package":"druntime","parentType":"","signature":"DWORD GetModuleBaseNameA(HANDLE,  HMODULE,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetModuleBaseNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetModuleBaseNameW","package":"druntime","parentType":"","signature":"DWORD GetModuleBaseNameW(HANDLE,  HMODULE,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetModuleBaseNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetModuleFileNameExA","package":"druntime","parentType":"","signature":"DWORD GetModuleFileNameExA(HANDLE,  HMODULE,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetModuleFileNameExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetModuleFileNameExW","package":"druntime","parentType":"","signature":"DWORD GetModuleFileNameExW(HANDLE,  HMODULE,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetModuleFileNameExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetModuleInformation","package":"druntime","parentType":"","signature":"BOOL GetModuleInformation(HANDLE,  HMODULE,  LPMODULEINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetModuleInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumDeviceDrivers","package":"druntime","parentType":"","signature":"BOOL EnumDeviceDrivers(LPVOID *,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumDeviceDrivers.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetDeviceDriverBaseNameA","package":"druntime","parentType":"","signature":"DWORD GetDeviceDriverBaseNameA(LPVOID,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetDeviceDriverBaseNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetDeviceDriverBaseNameW","package":"druntime","parentType":"","signature":"DWORD GetDeviceDriverBaseNameW(LPVOID,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetDeviceDriverBaseNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetDeviceDriverFileNameA","package":"druntime","parentType":"","signature":"DWORD GetDeviceDriverFileNameA(LPVOID,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetDeviceDriverFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetDeviceDriverFileNameW","package":"druntime","parentType":"","signature":"DWORD GetDeviceDriverFileNameW(LPVOID,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetDeviceDriverFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetProcessMemoryInfo","package":"druntime","parentType":"","signature":"BOOL GetProcessMemoryInfo(HANDLE,  PPROCESS_MEMORY_COUNTERS,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetProcessMemoryInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EmptyWorkingSet","package":"druntime","parentType":"","signature":"BOOL EmptyWorkingSet(HANDLE)","url":"/ddoc/druntime/core/sys/windows/psapi/EmptyWorkingSet.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetWsChanges","package":"druntime","parentType":"","signature":"BOOL GetWsChanges(HANDLE,  PPSAPI_WS_WATCH_INFORMATION,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetWsChanges.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetWsChangesEx","package":"druntime","parentType":"","signature":"BOOL GetWsChangesEx(HANDLE,  PPSAPI_WS_WATCH_INFORMATION_EX,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetWsChangesEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"InitializeProcessForWsWatch","package":"druntime","parentType":"","signature":"BOOL InitializeProcessForWsWatch(HANDLE)","url":"/ddoc/druntime/core/sys/windows/psapi/InitializeProcessForWsWatch.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"QueryWorkingSet","package":"druntime","parentType":"","signature":"BOOL QueryWorkingSet(HANDLE,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/QueryWorkingSet.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"QueryWorkingSetEx","package":"druntime","parentType":"","signature":"BOOL QueryWorkingSetEx(HANDLE,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/QueryWorkingSetEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetMappedFileNameW","package":"druntime","parentType":"","signature":"DWORD GetMappedFileNameW(HANDLE,  LPVOID,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetMappedFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetMappedFileNameA","package":"druntime","parentType":"","signature":"DWORD GetMappedFileNameA(HANDLE,  LPVOID,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetMappedFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"GetPerformanceInfo","package":"druntime","parentType":"","signature":"BOOL GetPerformanceInfo(PPERFORMANCE_INFORMATION,  DWORD)","url":"/ddoc/druntime/core/sys/windows/psapi/GetPerformanceInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumPageFilesW","package":"druntime","parentType":"","signature":"BOOL EnumPageFilesW(PENUM_PAGE_FILE_CALLBACKW,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumPageFilesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.psapi","name":"EnumPageFilesA","package":"druntime","parentType":"","signature":"BOOL EnumPageFilesA(PENUM_PAGE_FILE_CALLBACKA,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/psapi/EnumPageFilesA.html"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"MODULEINFO","package":"druntime","parentType":"","signature":"MODULEINFO","url":"/ddoc/druntime/core/sys/windows/psapi.html#MODULEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"LPMODULEINFO","package":"druntime","parentType":"","signature":"LPMODULEINFO = MODULEINFO *","url":"/ddoc/druntime/core/sys/windows/psapi.html#LPMODULEINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"PSAPI_WS_WATCH_INFORMATION","package":"druntime","parentType":"","signature":"PSAPI_WS_WATCH_INFORMATION","url":"/ddoc/druntime/core/sys/windows/psapi.html#PSAPI_WS_WATCH_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PPSAPI_WS_WATCH_INFORMATION","package":"druntime","parentType":"","signature":"PPSAPI_WS_WATCH_INFORMATION = PSAPI_WS_WATCH_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/psapi.html#PPSAPI_WS_WATCH_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"PSAPI_WS_WATCH_INFORMATION_EX","package":"druntime","parentType":"","signature":"PSAPI_WS_WATCH_INFORMATION_EX","url":"/ddoc/druntime/core/sys/windows/psapi.html#PSAPI_WS_WATCH_INFORMATION_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PPSAPI_WS_WATCH_INFORMATION_EX","package":"druntime","parentType":"","signature":"PPSAPI_WS_WATCH_INFORMATION_EX = PSAPI_WS_WATCH_INFORMATION_EX *","url":"/ddoc/druntime/core/sys/windows/psapi.html#PPSAPI_WS_WATCH_INFORMATION_EX"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"PROCESS_MEMORY_COUNTERS","package":"druntime","parentType":"","signature":"PROCESS_MEMORY_COUNTERS","url":"/ddoc/druntime/core/sys/windows/psapi.html#PROCESS_MEMORY_COUNTERS"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PPROCESS_MEMORY_COUNTERS","package":"druntime","parentType":"","signature":"PPROCESS_MEMORY_COUNTERS = PROCESS_MEMORY_COUNTERS *","url":"/ddoc/druntime/core/sys/windows/psapi.html#PPROCESS_MEMORY_COUNTERS"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"PERFORMANCE_INFORMATION","package":"druntime","parentType":"","signature":"PERFORMANCE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/psapi.html#PERFORMANCE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PPERFORMANCE_INFORMATION","package":"druntime","parentType":"","signature":"PPERFORMANCE_INFORMATION = PERFORMANCE_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/psapi.html#PPERFORMANCE_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.psapi","name":"ENUM_PAGE_FILE_INFORMATION","package":"druntime","parentType":"","signature":"ENUM_PAGE_FILE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/psapi.html#ENUM_PAGE_FILE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PENUM_PAGE_FILE_INFORMATION","package":"druntime","parentType":"","signature":"PENUM_PAGE_FILE_INFORMATION = ENUM_PAGE_FILE_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/psapi.html#PENUM_PAGE_FILE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PENUM_PAGE_FILE_CALLBACKW","package":"druntime","parentType":"","signature":"PENUM_PAGE_FILE_CALLBACKW = BOOL function(LPVOID,  PENUM_PAGE_FILE_INFORMATION,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/psapi.html#PENUM_PAGE_FILE_CALLBACKW"},{"doc":"","kind":"alias","module":"core.sys.windows.psapi","name":"PENUM_PAGE_FILE_CALLBACKA","package":"druntime","parentType":"","signature":"PENUM_PAGE_FILE_CALLBACKA = BOOL function(LPVOID,  PENUM_PAGE_FILE_INFORMATION,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/psapi.html#PENUM_PAGE_FILE_CALLBACKA"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rapi","name":"core.sys.windows.rapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeRapiInit","package":"druntime","parentType":"","signature":"HRESULT CeRapiInit()","url":"/ddoc/druntime/core/sys/windows/rapi/CeRapiInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeRapiInitEx","package":"druntime","parentType":"","signature":"HRESULT CeRapiInitEx(RAPIINIT *)","url":"/ddoc/druntime/core/sys/windows/rapi/CeRapiInitEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeCreateProcess","package":"druntime","parentType":"","signature":"BOOL CeCreateProcess(LPCWSTR,  LPCWSTR,  LPSECURITY_ATTRIBUTES,\n   LPSECURITY_ATTRIBUTES,  BOOL,  DWORD,  LPVOID,  LPWSTR,  LPSTARTUPINFO,\n   LPPROCESS_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/rapi/CeCreateProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeRapiUninit","package":"druntime","parentType":"","signature":"HRESULT CeRapiUninit()","url":"/ddoc/druntime/core/sys/windows/rapi/CeRapiUninit.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeWriteFile","package":"druntime","parentType":"","signature":"BOOL CeWriteFile(HANDLE,  LPCVOID,  DWORD,  LPDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/rapi/CeWriteFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeCreateFile","package":"druntime","parentType":"","signature":"HANDLE CeCreateFile(LPCWSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES,  DWORD,\n   DWORD,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/rapi/CeCreateFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeCreateDirectory","package":"druntime","parentType":"","signature":"BOOL CeCreateDirectory(LPCWSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/rapi/CeCreateDirectory.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeGetLastError","package":"druntime","parentType":"","signature":"DWORD CeGetLastError()","url":"/ddoc/druntime/core/sys/windows/rapi/CeGetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeGetFileTime","package":"druntime","parentType":"","signature":"BOOL CeGetFileTime(HANDLE,  LPFILETIME,  LPFILETIME,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/rapi/CeGetFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.rapi","name":"CeCloseHandle","package":"druntime","parentType":"","signature":"BOOL CeCloseHandle(HANDLE)","url":"/ddoc/druntime/core/sys/windows/rapi/CeCloseHandle.html"},{"doc":"","kind":"enum","module":"core.sys.windows.rapi","name":"RAPISTREAMFLAG","package":"druntime","parentType":"","signature":"RAPISTREAMFLAG","url":"/ddoc/druntime/core/sys/windows/rapi.html#RAPISTREAMFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rapi","name":"STREAM_TIMEOUT_READ","package":"druntime","parentType":"","signature":"STREAM_TIMEOUT_READ = ","url":"/ddoc/druntime/core/sys/windows/rapi.html#RAPISTREAMFLAG"},{"doc":"","kind":"interface","module":"core.sys.windows.rapi","name":"IRAPIStream","package":"druntime","parentType":"","signature":"IRAPIStream","url":"/ddoc/druntime/core/sys/windows/rapi.html#IRAPIStream"},{"doc":"","kind":"method","module":"core.sys.windows.rapi","name":"SetRapiStat","package":"druntime","parentType":"IRAPIStream","signature":"HRESULT SetRapiStat(RAPISTREAMFLAG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/rapi/IRAPIStream.SetRapiStat.html"},{"doc":"","kind":"method","module":"core.sys.windows.rapi","name":"GetRapiStat","package":"druntime","parentType":"IRAPIStream","signature":"HRESULT GetRapiStat(RAPISTREAMFLAG,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/rapi/IRAPIStream.GetRapiStat.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rapi","name":"RAPIEXT","package":"druntime","parentType":"","signature":"RAPIEXT = HRESULT function(DWORD,  BYTE,  DWORD,  BYTE,  IRAPIStream)","url":"/ddoc/druntime/core/sys/windows/rapi.html#RAPIEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.rapi","name":"RAPIINIT","package":"druntime","parentType":"","signature":"RAPIINIT","url":"/ddoc/druntime/core/sys/windows/rapi.html#RAPIINIT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.ras","name":"core.sys.windows.ras","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/ras.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasDialA","package":"druntime","parentType":"","signature":"DWORD RasDialA(LPRASDIALEXTENSIONS,  LPCSTR,  LPRASDIALPARAMSA,  DWORD,  LPVOID,  LPHRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasDialA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasDialW","package":"druntime","parentType":"","signature":"DWORD RasDialW(LPRASDIALEXTENSIONS,  LPCWSTR,  LPRASDIALPARAMSW,  DWORD,  LPVOID,  LPHRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasDialW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumConnectionsA","package":"druntime","parentType":"","signature":"DWORD RasEnumConnectionsA(LPRASCONNA,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumConnectionsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumConnectionsW","package":"druntime","parentType":"","signature":"DWORD RasEnumConnectionsW(LPRASCONNW,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumConnectionsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumEntriesA","package":"druntime","parentType":"","signature":"DWORD RasEnumEntriesA(LPCSTR,  LPCSTR,  LPRASENTRYNAMEA,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumEntriesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumEntriesW","package":"druntime","parentType":"","signature":"DWORD RasEnumEntriesW(LPCWSTR,  LPCWSTR,  LPRASENTRYNAMEW,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumEntriesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetConnectStatusA","package":"druntime","parentType":"","signature":"DWORD RasGetConnectStatusA(HRASCONN,  LPRASCONNSTATUSA)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetConnectStatusA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetConnectStatusW","package":"druntime","parentType":"","signature":"DWORD RasGetConnectStatusW(HRASCONN,  LPRASCONNSTATUSW)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetConnectStatusW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetErrorStringA","package":"druntime","parentType":"","signature":"DWORD RasGetErrorStringA(UINT,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetErrorStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetErrorStringW","package":"druntime","parentType":"","signature":"DWORD RasGetErrorStringW(UINT,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetErrorStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasHangUpA","package":"druntime","parentType":"","signature":"DWORD RasHangUpA(HRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasHangUpA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasHangUpW","package":"druntime","parentType":"","signature":"DWORD RasHangUpW(HRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasHangUpW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetProjectionInfoA","package":"druntime","parentType":"","signature":"DWORD RasGetProjectionInfoA(HRASCONN,  RASPROJECTION,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetProjectionInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetProjectionInfoW","package":"druntime","parentType":"","signature":"DWORD RasGetProjectionInfoW(HRASCONN,  RASPROJECTION,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetProjectionInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasCreatePhonebookEntryA","package":"druntime","parentType":"","signature":"DWORD RasCreatePhonebookEntryA(HWND,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasCreatePhonebookEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasCreatePhonebookEntryW","package":"druntime","parentType":"","signature":"DWORD RasCreatePhonebookEntryW(HWND,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasCreatePhonebookEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEditPhonebookEntryA","package":"druntime","parentType":"","signature":"DWORD RasEditPhonebookEntryA(HWND,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasEditPhonebookEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEditPhonebookEntryW","package":"druntime","parentType":"","signature":"DWORD RasEditPhonebookEntryW(HWND,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasEditPhonebookEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetEntryDialParamsA","package":"druntime","parentType":"","signature":"DWORD RasSetEntryDialParamsA(LPCSTR,  LPRASDIALPARAMSA,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetEntryDialParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetEntryDialParamsW","package":"druntime","parentType":"","signature":"DWORD RasSetEntryDialParamsW(LPCWSTR,  LPRASDIALPARAMSW,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetEntryDialParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetEntryDialParamsA","package":"druntime","parentType":"","signature":"DWORD RasGetEntryDialParamsA(LPCSTR,  LPRASDIALPARAMSA,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetEntryDialParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetEntryDialParamsW","package":"druntime","parentType":"","signature":"DWORD RasGetEntryDialParamsW(LPCWSTR,  LPRASDIALPARAMSW,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetEntryDialParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumDevicesA","package":"druntime","parentType":"","signature":"DWORD RasEnumDevicesA(LPRASDEVINFOA,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumDevicesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumDevicesW","package":"druntime","parentType":"","signature":"DWORD RasEnumDevicesW(LPRASDEVINFOW,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumDevicesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetCountryInfoA","package":"druntime","parentType":"","signature":"DWORD RasGetCountryInfoA(LPRASCTRYINFOA,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetCountryInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetCountryInfoW","package":"druntime","parentType":"","signature":"DWORD RasGetCountryInfoW(LPRASCTRYINFOW,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetCountryInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetEntryPropertiesA","package":"druntime","parentType":"","signature":"DWORD RasGetEntryPropertiesA(LPCSTR,  LPCSTR,  LPRASENTRYA,  LPDWORD,  LPBYTE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetEntryPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetEntryPropertiesW","package":"druntime","parentType":"","signature":"DWORD RasGetEntryPropertiesW(LPCWSTR,  LPCWSTR,  LPRASENTRYW,  LPDWORD,  LPBYTE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetEntryPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetEntryPropertiesA","package":"druntime","parentType":"","signature":"DWORD RasSetEntryPropertiesA(LPCSTR,  LPCSTR,  LPRASENTRYA,  DWORD,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetEntryPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetEntryPropertiesW","package":"druntime","parentType":"","signature":"DWORD RasSetEntryPropertiesW(LPCWSTR,  LPCWSTR,  LPRASENTRYW,  DWORD,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetEntryPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasRenameEntryA","package":"druntime","parentType":"","signature":"DWORD RasRenameEntryA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasRenameEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasRenameEntryW","package":"druntime","parentType":"","signature":"DWORD RasRenameEntryW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasRenameEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasDeleteEntryA","package":"druntime","parentType":"","signature":"DWORD RasDeleteEntryA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasDeleteEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasDeleteEntryW","package":"druntime","parentType":"","signature":"DWORD RasDeleteEntryW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasDeleteEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasValidateEntryNameA","package":"druntime","parentType":"","signature":"DWORD RasValidateEntryNameA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasValidateEntryNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasValidateEntryNameW","package":"druntime","parentType":"","signature":"DWORD RasValidateEntryNameW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/ras/RasValidateEntryNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetSubEntryHandleA","package":"druntime","parentType":"","signature":"DWORD RasGetSubEntryHandleA(HRASCONN,  DWORD,  LPHRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetSubEntryHandleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetSubEntryHandleW","package":"druntime","parentType":"","signature":"DWORD RasGetSubEntryHandleW(HRASCONN,  DWORD,  LPHRASCONN)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetSubEntryHandleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetCredentialsA","package":"druntime","parentType":"","signature":"DWORD RasGetCredentialsA(LPCSTR,  LPCSTR,  LPRASCREDENTIALSA)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetCredentialsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetCredentialsW","package":"druntime","parentType":"","signature":"DWORD RasGetCredentialsW(LPCWSTR,  LPCWSTR,  LPRASCREDENTIALSW)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetCredentialsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetCredentialsA","package":"druntime","parentType":"","signature":"DWORD RasSetCredentialsA(LPCSTR,  LPCSTR,  LPRASCREDENTIALSA,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetCredentialsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetCredentialsW","package":"druntime","parentType":"","signature":"DWORD RasSetCredentialsW(LPCWSTR,  LPCWSTR,  LPRASCREDENTIALSW,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetCredentialsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasConnectionNotificationA","package":"druntime","parentType":"","signature":"DWORD RasConnectionNotificationA(HRASCONN,  HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasConnectionNotificationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasConnectionNotificationW","package":"druntime","parentType":"","signature":"DWORD RasConnectionNotificationW(HRASCONN,  HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasConnectionNotificationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetSubEntryPropertiesA","package":"druntime","parentType":"","signature":"DWORD RasGetSubEntryPropertiesA(LPCSTR,  LPCSTR,  DWORD,  LPRASSUBENTRYA,  LPDWORD,  LPBYTE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetSubEntryPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetSubEntryPropertiesW","package":"druntime","parentType":"","signature":"DWORD RasGetSubEntryPropertiesW(LPCWSTR,  LPCWSTR,  DWORD,  LPRASSUBENTRYW,  LPDWORD,  LPBYTE,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetSubEntryPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetSubEntryPropertiesA","package":"druntime","parentType":"","signature":"DWORD RasSetSubEntryPropertiesA(LPCSTR,  LPCSTR,  DWORD,  LPRASSUBENTRYA,  DWORD,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetSubEntryPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetSubEntryPropertiesW","package":"druntime","parentType":"","signature":"DWORD RasSetSubEntryPropertiesW(LPCWSTR,  LPCWSTR,  DWORD,  LPRASSUBENTRYW,  DWORD,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetSubEntryPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialAddressA","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialAddressA(LPCSTR,  LPDWORD,  LPRASAUTODIALENTRYA,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialAddressA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialAddressW","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialAddressW(LPCWSTR,  LPDWORD,  LPRASAUTODIALENTRYW,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialAddressW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialAddressA","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialAddressA(LPCSTR,  DWORD,  LPRASAUTODIALENTRYA,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialAddressA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialAddressW","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialAddressW(LPCWSTR,  DWORD,  LPRASAUTODIALENTRYW,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialAddressW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumAutodialAddressesA","package":"druntime","parentType":"","signature":"DWORD RasEnumAutodialAddressesA(LPSTR *,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumAutodialAddressesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasEnumAutodialAddressesW","package":"druntime","parentType":"","signature":"DWORD RasEnumAutodialAddressesW(LPWSTR *,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasEnumAutodialAddressesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialEnableA","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialEnableA(DWORD,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialEnableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialEnableW","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialEnableW(DWORD,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialEnableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialEnableA","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialEnableA(DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialEnableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialEnableW","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialEnableW(DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialEnableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialParamA","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialParamA(DWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasGetAutodialParamW","package":"druntime","parentType":"","signature":"DWORD RasGetAutodialParamW(DWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasGetAutodialParamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialParamA","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialParamA(DWORD,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.ras","name":"RasSetAutodialParamW","package":"druntime","parentType":"","signature":"DWORD RasSetAutodialParamW(DWORD,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras/RasSetAutodialParamW.html"},{"doc":"","kind":"enum","module":"core.sys.windows.ras","name":"RASCONNSTATE","package":"druntime","parentType":"","signature":"RASCONNSTATE","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_OpenPort","package":"druntime","parentType":"","signature":"RASCS_OpenPort = 0","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_PortOpened","package":"druntime","parentType":"","signature":"RASCS_PortOpened = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_ConnectDevice","package":"druntime","parentType":"","signature":"RASCS_ConnectDevice = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_DeviceConnected","package":"druntime","parentType":"","signature":"RASCS_DeviceConnected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AllDevicesConnected","package":"druntime","parentType":"","signature":"RASCS_AllDevicesConnected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Authenticate","package":"druntime","parentType":"","signature":"RASCS_Authenticate = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthNotify","package":"druntime","parentType":"","signature":"RASCS_AuthNotify = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthRetry","package":"druntime","parentType":"","signature":"RASCS_AuthRetry = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthCallback","package":"druntime","parentType":"","signature":"RASCS_AuthCallback = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthChangePassword","package":"druntime","parentType":"","signature":"RASCS_AuthChangePassword = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthProject","package":"druntime","parentType":"","signature":"RASCS_AuthProject = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthLinkSpeed","package":"druntime","parentType":"","signature":"RASCS_AuthLinkSpeed = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_AuthAck","package":"druntime","parentType":"","signature":"RASCS_AuthAck = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_ReAuthenticate","package":"druntime","parentType":"","signature":"RASCS_ReAuthenticate = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Authenticated","package":"druntime","parentType":"","signature":"RASCS_Authenticated = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_PrepareForCallback","package":"druntime","parentType":"","signature":"RASCS_PrepareForCallback = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_WaitForModemReset","package":"druntime","parentType":"","signature":"RASCS_WaitForModemReset = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_WaitForCallback","package":"druntime","parentType":"","signature":"RASCS_WaitForCallback = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Projected","package":"druntime","parentType":"","signature":"RASCS_Projected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_StartAuthentication","package":"druntime","parentType":"","signature":"RASCS_StartAuthentication = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_CallbackComplete","package":"druntime","parentType":"","signature":"RASCS_CallbackComplete = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_LogonNetwork","package":"druntime","parentType":"","signature":"RASCS_LogonNetwork = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_SubEntryConnected","package":"druntime","parentType":"","signature":"RASCS_SubEntryConnected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_SubEntryDisconnected","package":"druntime","parentType":"","signature":"RASCS_SubEntryDisconnected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Interactive","package":"druntime","parentType":"","signature":"RASCS_Interactive = RASCS_PAUSED","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_RetryAuthentication","package":"druntime","parentType":"","signature":"RASCS_RetryAuthentication = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_CallbackSetByCaller","package":"druntime","parentType":"","signature":"RASCS_CallbackSetByCaller = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_PasswordExpired","package":"druntime","parentType":"","signature":"RASCS_PasswordExpired = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_InvokeEapUI","package":"druntime","parentType":"","signature":"RASCS_InvokeEapUI = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Connected","package":"druntime","parentType":"","signature":"RASCS_Connected = RASCS_DONE","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASCS_Disconnected","package":"druntime","parentType":"","signature":"RASCS_Disconnected = ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATE"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNSTATE","package":"druntime","parentType":"","signature":"LPRASCONNSTATE = RASCONNSTATE *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNSTATE"},{"doc":"","kind":"enum","module":"core.sys.windows.ras","name":"RASPROJECTION","package":"druntime","parentType":"","signature":"RASPROJECTION","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_Amb","package":"druntime","parentType":"","signature":"RASP_Amb = 0x10000","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_PppNbf","package":"druntime","parentType":"","signature":"RASP_PppNbf = 0x803F","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_PppIpx","package":"druntime","parentType":"","signature":"RASP_PppIpx = 0x802B","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_PppIp","package":"druntime","parentType":"","signature":"RASP_PppIp = 0x8021","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_PppCcp","package":"druntime","parentType":"","signature":"RASP_PppCcp = 0x80FD","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_PppLcp","package":"druntime","parentType":"","signature":"RASP_PppLcp = 0xC021","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.ras","name":"RASP_Slip","package":"druntime","parentType":"","signature":"RASP_Slip = 0x20000","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPROJECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPROJECTION","package":"druntime","parentType":"","signature":"LPRASPROJECTION = RASPROJECTION *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPROJECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"HRASCONN","package":"druntime","parentType":"","signature":"HRASCONN = HANDLE","url":"/ddoc/druntime/core/sys/windows/ras.html#HRASCONN"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPHRASCONN","package":"druntime","parentType":"","signature":"LPHRASCONN = HRASCONN *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPHRASCONN"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCONNW","package":"druntime","parentType":"","signature":"RASCONNW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNW","package":"druntime","parentType":"","signature":"LPRASCONNW = RASCONNW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCONNA","package":"druntime","parentType":"","signature":"RASCONNA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNA","package":"druntime","parentType":"","signature":"LPRASCONNA = RASCONNA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCONNSTATUSW","package":"druntime","parentType":"","signature":"RASCONNSTATUSW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATUSW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNSTATUSW","package":"druntime","parentType":"","signature":"LPRASCONNSTATUSW = RASCONNSTATUSW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNSTATUSW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCONNSTATUSA","package":"druntime","parentType":"","signature":"RASCONNSTATUSA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCONNSTATUSA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNSTATUSA","package":"druntime","parentType":"","signature":"LPRASCONNSTATUSA = RASCONNSTATUSA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNSTATUSA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASDIALPARAMSW","package":"druntime","parentType":"","signature":"RASDIALPARAMSW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALPARAMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDIALPARAMSW","package":"druntime","parentType":"","signature":"LPRASDIALPARAMSW = RASDIALPARAMSW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDIALPARAMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASDIALPARAMSA","package":"druntime","parentType":"","signature":"RASDIALPARAMSA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALPARAMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDIALPARAMSA","package":"druntime","parentType":"","signature":"LPRASDIALPARAMSA = RASDIALPARAMSA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDIALPARAMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASEAPINFO","package":"druntime","parentType":"","signature":"RASEAPINFO","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASDIALEXTENSIONS","package":"druntime","parentType":"","signature":"RASDIALEXTENSIONS","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALEXTENSIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDIALEXTENSIONS","package":"druntime","parentType":"","signature":"LPRASDIALEXTENSIONS = RASDIALEXTENSIONS *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDIALEXTENSIONS"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASENTRYNAMEW","package":"druntime","parentType":"","signature":"RASENTRYNAMEW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASENTRYNAMEW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRYNAMEW","package":"druntime","parentType":"","signature":"LPRASENTRYNAMEW = RASENTRYNAMEW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRYNAMEW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASENTRYNAMEA","package":"druntime","parentType":"","signature":"RASENTRYNAMEA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASENTRYNAMEA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRYNAMEA","package":"druntime","parentType":"","signature":"LPRASENTRYNAMEA = RASENTRYNAMEA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRYNAMEA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASAMBW","package":"druntime","parentType":"","signature":"RASAMBW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASAMBW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAMBW","package":"druntime","parentType":"","signature":"LPRASAMBW = RASAMBW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAMBW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASAMBA","package":"druntime","parentType":"","signature":"RASAMBA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASAMBA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAMBA","package":"druntime","parentType":"","signature":"LPRASAMBA = RASAMBA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAMBA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPNBFW","package":"druntime","parentType":"","signature":"RASPPPNBFW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPNBFW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPNBFW","package":"druntime","parentType":"","signature":"LPRASPPPNBFW = RASPPPNBFW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPNBFW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPNBFA","package":"druntime","parentType":"","signature":"RASPPPNBFA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPNBFA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPNBFA","package":"druntime","parentType":"","signature":"LPRASPPPNBFA = RASPPPNBFA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPNBFA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPIPXW","package":"druntime","parentType":"","signature":"RASPPPIPXW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPIPXW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIPXW","package":"druntime","parentType":"","signature":"LPRASPPPIPXW = RASPPPIPXW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIPXW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPIPXA","package":"druntime","parentType":"","signature":"RASPPPIPXA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPIPXA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIPXA","package":"druntime","parentType":"","signature":"LPRASPPPIPXA = RASPPPIPXA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIPXA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPIPW","package":"druntime","parentType":"","signature":"RASPPPIPW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPIPW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIPW","package":"druntime","parentType":"","signature":"LPRASPPPIPW = RASPPPIPW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIPW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPIPA","package":"druntime","parentType":"","signature":"RASPPPIPA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPIPA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIPA","package":"druntime","parentType":"","signature":"LPRASPPPIPA = RASPPPIPA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIPA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPLCPW","package":"druntime","parentType":"","signature":"RASPPPLCPW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPLCPW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPLCPW","package":"druntime","parentType":"","signature":"LPRASPPPLCPW = RASPPPLCPW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPLCPW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPLCPA","package":"druntime","parentType":"","signature":"RASPPPLCPA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPLCPA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPLCPA","package":"druntime","parentType":"","signature":"LPRASPPPLCPA = RASPPPLCPA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPLCPA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASSLIPW","package":"druntime","parentType":"","signature":"RASSLIPW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASSLIPW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSLIPW","package":"druntime","parentType":"","signature":"LPRASSLIPW = RASSLIPW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSLIPW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASSLIPA","package":"druntime","parentType":"","signature":"RASSLIPA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASSLIPA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSLIPA","package":"druntime","parentType":"","signature":"LPRASSLIPA = RASSLIPA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSLIPA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASDEVINFOW","package":"druntime","parentType":"","signature":"RASDEVINFOW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDEVINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDEVINFOW","package":"druntime","parentType":"","signature":"LPRASDEVINFOW = RASDEVINFOW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDEVINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASDEVINFOA","package":"druntime","parentType":"","signature":"RASDEVINFOA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDEVINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDEVINFOA","package":"druntime","parentType":"","signature":"LPRASDEVINFOA = RASDEVINFOA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDEVINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCTRYINFO","package":"druntime","parentType":"","signature":"RASCTRYINFO","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCTRYINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCTRYINFO","package":"druntime","parentType":"","signature":"LPRASCTRYINFO = RASCTRYINFO *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCTRYINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASCTRYINFOW","package":"druntime","parentType":"","signature":"RASCTRYINFOW = RASCTRYINFO","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCTRYINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCTRYINFOW","package":"druntime","parentType":"","signature":"LPRASCTRYINFOW = RASCTRYINFOW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCTRYINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCTRYINFOA","package":"druntime","parentType":"","signature":"LPRASCTRYINFOA = RASCTRYINFOA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCTRYINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASIPADDR","package":"druntime","parentType":"","signature":"RASIPADDR","url":"/ddoc/druntime/core/sys/windows/ras.html#RASIPADDR"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASENTRYW","package":"druntime","parentType":"","signature":"RASENTRYW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRYW","package":"druntime","parentType":"","signature":"LPRASENTRYW = RASENTRYW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASENTRYA","package":"druntime","parentType":"","signature":"RASENTRYA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRYA","package":"druntime","parentType":"","signature":"LPRASENTRYA = RASENTRYA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASADPARAMS","package":"druntime","parentType":"","signature":"RASADPARAMS","url":"/ddoc/druntime/core/sys/windows/ras.html#RASADPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASADPARAMS","package":"druntime","parentType":"","signature":"LPRASADPARAMS = RASADPARAMS *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASADPARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASSUBENTRYW","package":"druntime","parentType":"","signature":"RASSUBENTRYW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASSUBENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSUBENTRYW","package":"druntime","parentType":"","signature":"LPRASSUBENTRYW = RASSUBENTRYW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSUBENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASSUBENTRYA","package":"druntime","parentType":"","signature":"RASSUBENTRYA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASSUBENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSUBENTRYA","package":"druntime","parentType":"","signature":"LPRASSUBENTRYA = RASSUBENTRYA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSUBENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCREDENTIALSW","package":"druntime","parentType":"","signature":"RASCREDENTIALSW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCREDENTIALSW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCREDENTIALSW","package":"druntime","parentType":"","signature":"LPRASCREDENTIALSW = RASCREDENTIALSW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCREDENTIALSW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASCREDENTIALSA","package":"druntime","parentType":"","signature":"RASCREDENTIALSA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCREDENTIALSA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCREDENTIALSA","package":"druntime","parentType":"","signature":"LPRASCREDENTIALSA = RASCREDENTIALSA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCREDENTIALSA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASAUTODIALENTRYW","package":"druntime","parentType":"","signature":"RASAUTODIALENTRYW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASAUTODIALENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAUTODIALENTRYW","package":"druntime","parentType":"","signature":"LPRASAUTODIALENTRYW = RASAUTODIALENTRYW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAUTODIALENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASAUTODIALENTRYA","package":"druntime","parentType":"","signature":"RASAUTODIALENTRYA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASAUTODIALENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAUTODIALENTRYA","package":"druntime","parentType":"","signature":"LPRASAUTODIALENTRYA = RASAUTODIALENTRYA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAUTODIALENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASPPPCCP","package":"druntime","parentType":"","signature":"RASPPPCCP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASPPPCCP"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPCCP","package":"druntime","parentType":"","signature":"LPRASPPPCCP = RASPPPCCP *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPCCP"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASEAPUSERIDENTITYW","package":"druntime","parentType":"","signature":"RASEAPUSERIDENTITYW","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPUSERIDENTITYW"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASEAPUSERIDENTITYW","package":"druntime","parentType":"","signature":"LPRASEAPUSERIDENTITYW = RASEAPUSERIDENTITYW *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASEAPUSERIDENTITYW"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RASEAPUSERIDENTITYA","package":"druntime","parentType":"","signature":"RASEAPUSERIDENTITYA","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPUSERIDENTITYA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASEAPUSERIDENTITYA","package":"druntime","parentType":"","signature":"LPRASEAPUSERIDENTITYA = RASEAPUSERIDENTITYA *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASEAPUSERIDENTITYA"},{"doc":"","kind":"struct","module":"core.sys.windows.ras","name":"RAS_STATS","package":"druntime","parentType":"","signature":"RAS_STATS","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_STATS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"PRAS_STATS","package":"druntime","parentType":"","signature":"PRAS_STATS = RAS_STATS *","url":"/ddoc/druntime/core/sys/windows/ras.html#PRAS_STATS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONN","package":"druntime","parentType":"","signature":"LPRASCONN = RASCONN *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONN"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRY","package":"druntime","parentType":"","signature":"LPRASENTRY = RASENTRY *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCONNSTATUS","package":"druntime","parentType":"","signature":"LPRASCONNSTATUS = RASCONNSTATUS *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCONNSTATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDIALPARAMS","package":"druntime","parentType":"","signature":"LPRASDIALPARAMS = RASDIALPARAMS *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDIALPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAM","package":"druntime","parentType":"","signature":"LPRASAM = RASAMB *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAM"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPNBF","package":"druntime","parentType":"","signature":"LPRASPPPNBF = RASPPPNBF *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPNBF"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIPX","package":"druntime","parentType":"","signature":"LPRASPPPIPX = RASPPPIPX *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIPX"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPIP","package":"druntime","parentType":"","signature":"LPRASPPPIP = RASPPPIP *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPIP"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASPPPLCP","package":"druntime","parentType":"","signature":"LPRASPPPLCP = RASPPPLCP *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASPPPLCP"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSLIP","package":"druntime","parentType":"","signature":"LPRASSLIP = RASSLIP *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSLIP"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASDEVINFO","package":"druntime","parentType":"","signature":"LPRASDEVINFO = RASDEVINFO *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASDEVINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASENTRYNAME","package":"druntime","parentType":"","signature":"LPRASENTRYNAME = RASENTRYNAME *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASENTRYNAME"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASSUBENTRY","package":"druntime","parentType":"","signature":"LPRASSUBENTRY = RASSUBENTRY *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASSUBENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASCREDENTIALS","package":"druntime","parentType":"","signature":"LPRASCREDENTIALS = RASCREDENTIALS *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASCREDENTIALS"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASAUTODIALENTRY","package":"druntime","parentType":"","signature":"LPRASAUTODIALENTRY = RASAUTODIALENTRY *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASAUTODIALENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"LPRASEAPUSERIDENTITY","package":"druntime","parentType":"","signature":"LPRASEAPUSERIDENTITY = RASEAPUSERIDENTITY *","url":"/ddoc/druntime/core/sys/windows/ras.html#LPRASEAPUSERIDENTITY"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"ORASADFUNC","package":"druntime","parentType":"","signature":"ORASADFUNC = BOOL function (HWND,  LPSTR,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#ORASADFUNC"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASDIALFUNC","package":"druntime","parentType":"","signature":"RASDIALFUNC = void  function (UINT,  RASCONNSTATE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALFUNC"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASDIALFUNC1","package":"druntime","parentType":"","signature":"RASDIALFUNC1 = void  function(HRASCONN,  UINT,  RASCONNSTATE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALFUNC1"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASDIALFUNC2","package":"druntime","parentType":"","signature":"RASDIALFUNC2 = DWORD function (ULONG_PTR,  DWORD,  HRASCONN,  UINT,\n     RASCONNSTATE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALFUNC2"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASADFUNCA","package":"druntime","parentType":"","signature":"RASADFUNCA = BOOL function(LPSTR,  LPSTR,  LPRASADPARAMS,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#RASADFUNCA"},{"doc":"","kind":"alias","module":"core.sys.windows.ras","name":"RASADFUNCW","package":"druntime","parentType":"","signature":"RASADFUNCW = BOOL function(LPWSTR,  LPWSTR,  LPRASADPARAMS,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/ras.html#RASADFUNCW"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxDeviceType","package":"druntime","parentType":"","signature":"RAS_MaxDeviceType","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxDeviceType"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxPhoneNumber","package":"druntime","parentType":"","signature":"RAS_MaxPhoneNumber","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxPhoneNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxIpAddress","package":"druntime","parentType":"","signature":"RAS_MaxIpAddress","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxIpAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxIpxAddress","package":"druntime","parentType":"","signature":"RAS_MaxIpxAddress","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxIpxAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxEntryName","package":"druntime","parentType":"","signature":"RAS_MaxEntryName","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxEntryName"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxDeviceName","package":"druntime","parentType":"","signature":"RAS_MaxDeviceName","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxDeviceName"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxCallbackNumber","package":"druntime","parentType":"","signature":"RAS_MaxCallbackNumber","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxCallbackNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxAreaCode","package":"druntime","parentType":"","signature":"RAS_MaxAreaCode","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxAreaCode"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxPadType","package":"druntime","parentType":"","signature":"RAS_MaxPadType","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxPadType"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxX25Address","package":"druntime","parentType":"","signature":"RAS_MaxX25Address","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxX25Address"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxFacilities","package":"druntime","parentType":"","signature":"RAS_MaxFacilities","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxFacilities"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxUserData","package":"druntime","parentType":"","signature":"RAS_MaxUserData","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxUserData"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RAS_MaxReplyMessage","package":"druntime","parentType":"","signature":"RAS_MaxReplyMessage","url":"/ddoc/druntime/core/sys/windows/ras.html#RAS_MaxReplyMessage"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_UsePrefixSuffix","package":"druntime","parentType":"","signature":"RDEOPT_UsePrefixSuffix","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_UsePrefixSuffix"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_PausedStates","package":"druntime","parentType":"","signature":"RDEOPT_PausedStates","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_PausedStates"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_IgnoreModemSpeaker","package":"druntime","parentType":"","signature":"RDEOPT_IgnoreModemSpeaker","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_IgnoreModemSpeaker"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_SetModemSpeaker","package":"druntime","parentType":"","signature":"RDEOPT_SetModemSpeaker","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_SetModemSpeaker"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_IgnoreSoftwareCompression","package":"druntime","parentType":"","signature":"RDEOPT_IgnoreSoftwareCompression","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_IgnoreSoftwareCompression"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_SetSoftwareCompression","package":"druntime","parentType":"","signature":"RDEOPT_SetSoftwareCompression","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_SetSoftwareCompression"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_DisableConnectedUI","package":"druntime","parentType":"","signature":"RDEOPT_DisableConnectedUI","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_DisableConnectedUI"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_DisableReconnectUI","package":"druntime","parentType":"","signature":"RDEOPT_DisableReconnectUI","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_DisableReconnectUI"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_DisableReconnect","package":"druntime","parentType":"","signature":"RDEOPT_DisableReconnect","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_DisableReconnect"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_NoUser","package":"druntime","parentType":"","signature":"RDEOPT_NoUser","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_NoUser"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_PauseOnScript","package":"druntime","parentType":"","signature":"RDEOPT_PauseOnScript","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_PauseOnScript"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_Router","package":"druntime","parentType":"","signature":"RDEOPT_Router","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_Router"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"REN_User","package":"druntime","parentType":"","signature":"REN_User","url":"/ddoc/druntime/core/sys/windows/ras.html#REN_User"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"REN_AllUsers","package":"druntime","parentType":"","signature":"REN_AllUsers","url":"/ddoc/druntime/core/sys/windows/ras.html#REN_AllUsers"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"VS_Default","package":"druntime","parentType":"","signature":"VS_Default","url":"/ddoc/druntime/core/sys/windows/ras.html#VS_Default"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"VS_PptpOnly","package":"druntime","parentType":"","signature":"VS_PptpOnly","url":"/ddoc/druntime/core/sys/windows/ras.html#VS_PptpOnly"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"VS_PptpFirst","package":"druntime","parentType":"","signature":"VS_PptpFirst","url":"/ddoc/druntime/core/sys/windows/ras.html#VS_PptpFirst"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"VS_L2tpOnly","package":"druntime","parentType":"","signature":"VS_L2tpOnly","url":"/ddoc/druntime/core/sys/windows/ras.html#VS_L2tpOnly"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"VS_L2tpFirst","package":"druntime","parentType":"","signature":"VS_L2tpFirst","url":"/ddoc/druntime/core/sys/windows/ras.html#VS_L2tpFirst"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASDIALEVENT","package":"druntime","parentType":"","signature":"RASDIALEVENT","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDIALEVENT"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"WM_RASDIALEVENT","package":"druntime","parentType":"","signature":"WM_RASDIALEVENT","url":"/ddoc/druntime/core/sys/windows/ras.html#WM_RASDIALEVENT"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_UseCountryAndAreaCodes","package":"druntime","parentType":"","signature":"RASEO_UseCountryAndAreaCodes","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_UseCountryAndAreaCodes"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_SpecificIpAddr","package":"druntime","parentType":"","signature":"RASEO_SpecificIpAddr","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_SpecificIpAddr"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_SpecificNameServers","package":"druntime","parentType":"","signature":"RASEO_SpecificNameServers","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_SpecificNameServers"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_IpHeaderCompression","package":"druntime","parentType":"","signature":"RASEO_IpHeaderCompression","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_IpHeaderCompression"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RemoteDefaultGateway","package":"druntime","parentType":"","signature":"RASEO_RemoteDefaultGateway","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RemoteDefaultGateway"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_DisableLcpExtensions","package":"druntime","parentType":"","signature":"RASEO_DisableLcpExtensions","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_DisableLcpExtensions"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_TerminalBeforeDial","package":"druntime","parentType":"","signature":"RASEO_TerminalBeforeDial","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_TerminalBeforeDial"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_TerminalAfterDial","package":"druntime","parentType":"","signature":"RASEO_TerminalAfterDial","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_TerminalAfterDial"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_ModemLights","package":"druntime","parentType":"","signature":"RASEO_ModemLights","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_ModemLights"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_SwCompression","package":"druntime","parentType":"","signature":"RASEO_SwCompression","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_SwCompression"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireEncryptedPw","package":"druntime","parentType":"","signature":"RASEO_RequireEncryptedPw","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireEncryptedPw"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireMsEncryptedPw","package":"druntime","parentType":"","signature":"RASEO_RequireMsEncryptedPw","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireMsEncryptedPw"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireDataEncryption","package":"druntime","parentType":"","signature":"RASEO_RequireDataEncryption","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireDataEncryption"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_NetworkLogon","package":"druntime","parentType":"","signature":"RASEO_NetworkLogon","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_NetworkLogon"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_UseLogonCredentials","package":"druntime","parentType":"","signature":"RASEO_UseLogonCredentials","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_UseLogonCredentials"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_PromoteAlternates","package":"druntime","parentType":"","signature":"RASEO_PromoteAlternates","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_PromoteAlternates"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASNP_NetBEUI","package":"druntime","parentType":"","signature":"RASNP_NetBEUI","url":"/ddoc/druntime/core/sys/windows/ras.html#RASNP_NetBEUI"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASNP_Ipx","package":"druntime","parentType":"","signature":"RASNP_Ipx","url":"/ddoc/druntime/core/sys/windows/ras.html#RASNP_Ipx"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASNP_Ip","package":"druntime","parentType":"","signature":"RASNP_Ip","url":"/ddoc/druntime/core/sys/windows/ras.html#RASNP_Ip"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASFP_Ppp","package":"druntime","parentType":"","signature":"RASFP_Ppp","url":"/ddoc/druntime/core/sys/windows/ras.html#RASFP_Ppp"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASFP_Slip","package":"druntime","parentType":"","signature":"RASFP_Slip","url":"/ddoc/druntime/core/sys/windows/ras.html#RASFP_Slip"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASFP_Ras","package":"druntime","parentType":"","signature":"RASFP_Ras","url":"/ddoc/druntime/core/sys/windows/ras.html#RASFP_Ras"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASDT_Modem","package":"druntime","parentType":"","signature":"TCHAR[] RASDT_Modem","url":"/ddoc/druntime/core/sys/windows/ras.html#RASDT_Modem"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASET_Phone","package":"druntime","parentType":"","signature":"RASET_Phone","url":"/ddoc/druntime/core/sys/windows/ras.html#RASET_Phone"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASET_Vpn","package":"druntime","parentType":"","signature":"RASET_Vpn","url":"/ddoc/druntime/core/sys/windows/ras.html#RASET_Vpn"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASET_Direct","package":"druntime","parentType":"","signature":"RASET_Direct","url":"/ddoc/druntime/core/sys/windows/ras.html#RASET_Direct"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASET_Internet","package":"druntime","parentType":"","signature":"RASET_Internet","url":"/ddoc/druntime/core/sys/windows/ras.html#RASET_Internet"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RDEOPT_CustomDial","package":"druntime","parentType":"","signature":"RDEOPT_CustomDial","url":"/ddoc/druntime/core/sys/windows/ras.html#RDEOPT_CustomDial"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAP_PAP","package":"druntime","parentType":"","signature":"RASLCPAP_PAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAP_PAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAP_SPAP","package":"druntime","parentType":"","signature":"RASLCPAP_SPAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAP_SPAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAP_CHAP","package":"druntime","parentType":"","signature":"RASLCPAP_CHAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAP_CHAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAP_EAP","package":"druntime","parentType":"","signature":"RASLCPAP_EAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAP_EAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAD_CHAP_MD5","package":"druntime","parentType":"","signature":"RASLCPAD_CHAP_MD5","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAD_CHAP_MD5"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAD_CHAP_MS","package":"druntime","parentType":"","signature":"RASLCPAD_CHAP_MS","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAD_CHAP_MS"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPAD_CHAP_MSV2","package":"druntime","parentType":"","signature":"RASLCPAD_CHAP_MSV2","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPAD_CHAP_MSV2"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPO_PFC","package":"druntime","parentType":"","signature":"RASLCPO_PFC","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPO_PFC"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPO_ACFC","package":"druntime","parentType":"","signature":"RASLCPO_ACFC","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPO_ACFC"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPO_SSHF","package":"druntime","parentType":"","signature":"RASLCPO_SSHF","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPO_SSHF"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPO_DES_56","package":"druntime","parentType":"","signature":"RASLCPO_DES_56","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPO_DES_56"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASLCPO_3_DES","package":"druntime","parentType":"","signature":"RASLCPO_3_DES","url":"/ddoc/druntime/core/sys/windows/ras.html#RASLCPO_3_DES"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPCA_MPPC","package":"druntime","parentType":"","signature":"RASCCPCA_MPPC","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPCA_MPPC"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPCA_STAC","package":"druntime","parentType":"","signature":"RASCCPCA_STAC","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPCA_STAC"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPO_Compression","package":"druntime","parentType":"","signature":"RASCCPO_Compression","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPO_Compression"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPO_HistoryLess","package":"druntime","parentType":"","signature":"RASCCPO_HistoryLess","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPO_HistoryLess"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPO_Encryption56bit","package":"druntime","parentType":"","signature":"RASCCPO_Encryption56bit","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPO_Encryption56bit"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPO_Encryption40bit","package":"druntime","parentType":"","signature":"RASCCPO_Encryption40bit","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPO_Encryption40bit"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCCPO_Encryption128bit","package":"druntime","parentType":"","signature":"RASCCPO_Encryption128bit","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCCPO_Encryption128bit"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireEAP","package":"druntime","parentType":"","signature":"RASEO_RequireEAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireEAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequirePAP","package":"druntime","parentType":"","signature":"RASEO_RequirePAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequirePAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireSPAP","package":"druntime","parentType":"","signature":"RASEO_RequireSPAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireSPAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_Custom","package":"druntime","parentType":"","signature":"RASEO_Custom","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_Custom"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_PreviewPhoneNumber","package":"druntime","parentType":"","signature":"RASEO_PreviewPhoneNumber","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_PreviewPhoneNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_SharedPhoneNumbers","package":"druntime","parentType":"","signature":"RASEO_SharedPhoneNumbers","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_SharedPhoneNumbers"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_PreviewUserPw","package":"druntime","parentType":"","signature":"RASEO_PreviewUserPw","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_PreviewUserPw"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_PreviewDomain","package":"druntime","parentType":"","signature":"RASEO_PreviewDomain","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_PreviewDomain"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_ShowDialingProgress","package":"druntime","parentType":"","signature":"RASEO_ShowDialingProgress","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_ShowDialingProgress"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireCHAP","package":"druntime","parentType":"","signature":"RASEO_RequireCHAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireCHAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireMsCHAP","package":"druntime","parentType":"","signature":"RASEO_RequireMsCHAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireMsCHAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireMsCHAP2","package":"druntime","parentType":"","signature":"RASEO_RequireMsCHAP2","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireMsCHAP2"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_RequireW95MSCHAP","package":"druntime","parentType":"","signature":"RASEO_RequireW95MSCHAP","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_RequireW95MSCHAP"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEO_CustomScript","package":"druntime","parentType":"","signature":"RASEO_CustomScript","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEO_CustomScript"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASIPO_VJ","package":"druntime","parentType":"","signature":"RASIPO_VJ","url":"/ddoc/druntime/core/sys/windows/ras.html#RASIPO_VJ"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RCD_SingleUser","package":"druntime","parentType":"","signature":"RCD_SingleUser","url":"/ddoc/druntime/core/sys/windows/ras.html#RCD_SingleUser"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RCD_AllUsers","package":"druntime","parentType":"","signature":"RCD_AllUsers","url":"/ddoc/druntime/core/sys/windows/ras.html#RCD_AllUsers"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RCD_Eap","package":"druntime","parentType":"","signature":"RCD_Eap","url":"/ddoc/druntime/core/sys/windows/ras.html#RCD_Eap"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEAPF_NonInteractive","package":"druntime","parentType":"","signature":"RASEAPF_NonInteractive","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPF_NonInteractive"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEAPF_Logon","package":"druntime","parentType":"","signature":"RASEAPF_Logon","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPF_Logon"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASEAPF_Preview","package":"druntime","parentType":"","signature":"RASEAPF_Preview","url":"/ddoc/druntime/core/sys/windows/ras.html#RASEAPF_Preview"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_40Bit","package":"druntime","parentType":"","signature":"ET_40Bit","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_40Bit"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_128Bit","package":"druntime","parentType":"","signature":"ET_128Bit","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_128Bit"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_None","package":"druntime","parentType":"","signature":"ET_None","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_None"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_Require","package":"druntime","parentType":"","signature":"ET_Require","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_Require"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_RequireMax","package":"druntime","parentType":"","signature":"ET_RequireMax","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_RequireMax"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"ET_Optional","package":"druntime","parentType":"","signature":"ET_Optional","url":"/ddoc/druntime/core/sys/windows/ras.html#ET_Optional"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCS_PAUSED","package":"druntime","parentType":"","signature":"RASCS_PAUSED","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCS_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.ras","name":"RASCS_DONE","package":"druntime","parentType":"","signature":"RASCS_DONE","url":"/ddoc/druntime/core/sys/windows/ras.html#RASCS_DONE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rasdlg","name":"core.sys.windows.rasdlg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rasdlg.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasDialDlgA","package":"druntime","parentType":"","signature":"BOOL RasDialDlgA(LPSTR,  LPSTR,  LPSTR,  LPRASDIALDLG)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasDialDlgA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasDialDlgW","package":"druntime","parentType":"","signature":"BOOL RasDialDlgW(LPWSTR,  LPWSTR,  LPWSTR,  LPRASDIALDLG)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasDialDlgW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasEntryDlgA","package":"druntime","parentType":"","signature":"BOOL RasEntryDlgA(LPSTR,  LPSTR,  LPRASENTRYDLGA)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasEntryDlgA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasEntryDlgW","package":"druntime","parentType":"","signature":"BOOL RasEntryDlgW(LPWSTR,  LPWSTR,  LPRASENTRYDLGW)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasEntryDlgW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasPhonebookDlgA","package":"druntime","parentType":"","signature":"BOOL RasPhonebookDlgA(LPSTR,  LPSTR,  LPRASPBDLGA)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasPhonebookDlgA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rasdlg","name":"RasPhonebookDlgW","package":"druntime","parentType":"","signature":"BOOL RasPhonebookDlgW(LPWSTR,  LPWSTR,  LPRASPBDLGW)","url":"/ddoc/druntime/core/sys/windows/rasdlg/RasPhonebookDlgW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASENTRYDLGA","package":"druntime","parentType":"","signature":"RASENTRYDLGA","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASENTRYDLGA"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASENTRYDLGA","package":"druntime","parentType":"","signature":"LPRASENTRYDLGA = RASENTRYDLGA *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASENTRYDLGA"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASENTRYDLGW","package":"druntime","parentType":"","signature":"RASENTRYDLGW","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASENTRYDLGW"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASENTRYDLGW","package":"druntime","parentType":"","signature":"LPRASENTRYDLGW = RASENTRYDLGW *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASENTRYDLGW"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASDIALDLG","package":"druntime","parentType":"","signature":"RASDIALDLG","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASDIALDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASDIALDLG","package":"druntime","parentType":"","signature":"LPRASDIALDLG = RASDIALDLG *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASDIALDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"RASPBDLGFUNCW","package":"druntime","parentType":"","signature":"RASPBDLGFUNCW = VOID function(ULONG_PTR,  DWORD,  LPWSTR,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDLGFUNCW"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"RASPBDLGFUNCA","package":"druntime","parentType":"","signature":"RASPBDLGFUNCA = VOID function(ULONG_PTR,  DWORD,  LPSTR,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDLGFUNCA"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASPBDLGA","package":"druntime","parentType":"","signature":"RASPBDLGA","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDLGA"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASPBDLGA","package":"druntime","parentType":"","signature":"LPRASPBDLGA = RASPBDLGA *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASPBDLGA"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASPBDLGW","package":"druntime","parentType":"","signature":"RASPBDLGW","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDLGW"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASPBDLGW","package":"druntime","parentType":"","signature":"LPRASPBDLGW = RASPBDLGW *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASPBDLGW"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASNOUSERA","package":"druntime","parentType":"","signature":"RASNOUSERA","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASNOUSERA"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASNOUSERA","package":"druntime","parentType":"","signature":"LPRASNOUSERA = RASNOUSERA *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASNOUSERA"},{"doc":"","kind":"struct","module":"core.sys.windows.rasdlg","name":"RASNOUSERW","package":"druntime","parentType":"","signature":"RASNOUSERW","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASNOUSERW"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASNOUSERW","package":"druntime","parentType":"","signature":"LPRASNOUSERW = RASNOUSERW *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASNOUSERW"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASENTRYDLG","package":"druntime","parentType":"","signature":"LPRASENTRYDLG = RASENTRYDLG *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASENTRYDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASPBDLG","package":"druntime","parentType":"","signature":"LPRASPBDLG = RASPBDLG *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASPBDLG"},{"doc":"","kind":"alias","module":"core.sys.windows.rasdlg","name":"LPRASNOUSER","package":"druntime","parentType":"","signature":"LPRASNOUSER = RASNOUSER *","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#LPRASNOUSER"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASPBDFLAG_PositionDlg","package":"druntime","parentType":"","signature":"RASPBDFLAG_PositionDlg","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDFLAG_PositionDlg"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASPBDFLAG_ForceCloseOnDial","package":"druntime","parentType":"","signature":"RASPBDFLAG_ForceCloseOnDial","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDFLAG_ForceCloseOnDial"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASPBDFLAG_NoUser","package":"druntime","parentType":"","signature":"RASPBDFLAG_NoUser","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASPBDFLAG_NoUser"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASEDFLAG_PositionDlg","package":"druntime","parentType":"","signature":"RASEDFLAG_PositionDlg","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASEDFLAG_PositionDlg"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASEDFLAG_NewEntry","package":"druntime","parentType":"","signature":"RASEDFLAG_NewEntry","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASEDFLAG_NewEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASEDFLAG_CloneEntry","package":"druntime","parentType":"","signature":"RASEDFLAG_CloneEntry","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASEDFLAG_CloneEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.rasdlg","name":"RASDDFLAG_PositionDlg","package":"druntime","parentType":"","signature":"RASDDFLAG_PositionDlg","url":"/ddoc/druntime/core/sys/windows/rasdlg.html#RASDDFLAG_PositionDlg"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.raserror","name":"core.sys.windows.raserror","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/raserror.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rassapi","name":"core.sys.windows.rassapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rassapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminServerGetInfo","package":"druntime","parentType":"","signature":"DWORD RasAdminServerGetInfo(const(WCHAR) *,  PRAS_SERVER_0)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminServerGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminGetUserAccountServer","package":"druntime","parentType":"","signature":"DWORD RasAdminGetUserAccountServer(const(WCHAR) *,  const(WCHAR) *,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminGetUserAccountServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminUserGetInfo","package":"druntime","parentType":"","signature":"DWORD RasAdminUserGetInfo(const(WCHAR) *,  const(WCHAR) *,  PRAS_USER_0)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminUserGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminUserSetInfo","package":"druntime","parentType":"","signature":"DWORD RasAdminUserSetInfo(const(WCHAR) *,  const(WCHAR) *,  PRAS_USER_0)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminUserSetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminPortEnum","package":"druntime","parentType":"","signature":"DWORD RasAdminPortEnum(WCHAR *,  PRAS_PORT_0 *,  WORD *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminPortEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminPortGetInfo","package":"druntime","parentType":"","signature":"DWORD RasAdminPortGetInfo(const(WCHAR) *,  const(WCHAR) *,  RAS_PORT_1 *,\n      RAS_PORT_STATISTICS *,  RAS_PARAMETERS * *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminPortGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminPortClearStatistics","package":"druntime","parentType":"","signature":"DWORD RasAdminPortClearStatistics(const(WCHAR) *,  const(WCHAR) *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminPortClearStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminPortDisconnect","package":"druntime","parentType":"","signature":"DWORD RasAdminPortDisconnect(const(WCHAR) *,  const(WCHAR) *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminPortDisconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminFreeBuffer","package":"druntime","parentType":"","signature":"DWORD RasAdminFreeBuffer(PVOID)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminFreeBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminGetErrorString","package":"druntime","parentType":"","signature":"DWORD RasAdminGetErrorString(UINT,  WCHAR *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminGetErrorString.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminAcceptNewConnection","package":"druntime","parentType":"","signature":"BOOL RasAdminAcceptNewConnection(RAS_PORT_1 *,  RAS_PORT_STATISTICS *,\n      RAS_PARAMETERS *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminAcceptNewConnection.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminConnectionHangupNotification","package":"druntime","parentType":"","signature":"VOID RasAdminConnectionHangupNotification(RAS_PORT_1 *,\n       RAS_PORT_STATISTICS *,  RAS_PARAMETERS *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminConnectionHangupNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminGetIpAddressForUser","package":"druntime","parentType":"","signature":"DWORD RasAdminGetIpAddressForUser(WCHAR *,  WCHAR *,  IPADDR *,  BOOL *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminGetIpAddressForUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminReleaseIpAddress","package":"druntime","parentType":"","signature":"VOID RasAdminReleaseIpAddress(WCHAR *,  WCHAR *, IPADDR *)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminReleaseIpAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminGetUserParms","package":"druntime","parentType":"","signature":"DWORD RasAdminGetUserParms(WCHAR *,  PRAS_USER_0)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminGetUserParms.html"},{"doc":"","kind":"function","module":"core.sys.windows.rassapi","name":"RasAdminSetUserParms","package":"druntime","parentType":"","signature":"DWORD RasAdminSetUserParms(WCHAR *,  DWORD,  PRAS_USER_0)","url":"/ddoc/druntime/core/sys/windows/rassapi/RasAdminSetUserParms.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"IPADDR","package":"druntime","parentType":"","signature":"IPADDR = ULONG","url":"/ddoc/druntime/core/sys/windows/rassapi.html#IPADDR"},{"doc":"","kind":"enum","module":"core.sys.windows.rassapi","name":"RAS_PARAMS_FORMAT","package":"druntime","parentType":"","signature":"RAS_PARAMS_FORMAT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PARAMS_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rassapi","name":"ParamNumber","package":"druntime","parentType":"","signature":"ParamNumber = 0","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PARAMS_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rassapi","name":"ParamString","package":"druntime","parentType":"","signature":"ParamString = ","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PARAMS_FORMAT"},{"doc":"","kind":"union","module":"core.sys.windows.rassapi","name":"RAS_PARAMS_VALUE","package":"druntime","parentType":"","signature":"RAS_PARAMS_VALUE","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PARAMS_VALUE"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PARAMETERS","package":"druntime","parentType":"","signature":"RAS_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_USER_0","package":"druntime","parentType":"","signature":"RAS_USER_0","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_USER_0"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"PRAS_USER_0","package":"druntime","parentType":"","signature":"PRAS_USER_0 = RAS_USER_0 *","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PRAS_USER_0"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PORT_0","package":"druntime","parentType":"","signature":"RAS_PORT_0","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PORT_0"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"PRAS_PORT_0","package":"druntime","parentType":"","signature":"PRAS_PORT_0 = RAS_PORT_0 *","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PRAS_PORT_0"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PPP_NBFCP_RESULT","package":"druntime","parentType":"","signature":"RAS_PPP_NBFCP_RESULT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PPP_NBFCP_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PPP_IPCP_RESULT","package":"druntime","parentType":"","signature":"RAS_PPP_IPCP_RESULT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PPP_IPCP_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PPP_IPXCP_RESULT","package":"druntime","parentType":"","signature":"RAS_PPP_IPXCP_RESULT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PPP_IPXCP_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PPP_ATCP_RESULT","package":"druntime","parentType":"","signature":"RAS_PPP_ATCP_RESULT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PPP_ATCP_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PPP_PROJECTION_RESULT","package":"druntime","parentType":"","signature":"RAS_PPP_PROJECTION_RESULT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PPP_PROJECTION_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PORT_1","package":"druntime","parentType":"","signature":"RAS_PORT_1","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PORT_1"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"PRAS_PORT_1","package":"druntime","parentType":"","signature":"PRAS_PORT_1 = RAS_PORT_1 *","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PRAS_PORT_1"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_PORT_STATISTICS","package":"druntime","parentType":"","signature":"RAS_PORT_STATISTICS","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_PORT_STATISTICS"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"PRAS_PORT_STATISTICS","package":"druntime","parentType":"","signature":"PRAS_PORT_STATISTICS = RAS_PORT_STATISTICS *","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PRAS_PORT_STATISTICS"},{"doc":"","kind":"struct","module":"core.sys.windows.rassapi","name":"RAS_SERVER_0","package":"druntime","parentType":"","signature":"RAS_SERVER_0","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_SERVER_0"},{"doc":"","kind":"alias","module":"core.sys.windows.rassapi","name":"PRAS_SERVER_0","package":"druntime","parentType":"","signature":"PRAS_SERVER_0 = RAS_SERVER_0 *","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PRAS_SERVER_0"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASSAPI_MAX_PHONENUMBER_SIZE","package":"druntime","parentType":"","signature":"size_t RASSAPI_MAX_PHONENUMBER_SIZE","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASSAPI_MAX_PHONENUMBER_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASPRIV_NoCallback","package":"druntime","parentType":"","signature":"RASPRIV_NoCallback","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASPRIV_NoCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASPRIV_AdminSetCallback","package":"druntime","parentType":"","signature":"RASPRIV_AdminSetCallback","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASPRIV_AdminSetCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASPRIV_CallerSetCallback","package":"druntime","parentType":"","signature":"RASPRIV_CallerSetCallback","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASPRIV_CallerSetCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASPRIV_DialinPrivilege","package":"druntime","parentType":"","signature":"RASPRIV_DialinPrivilege","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASPRIV_DialinPrivilege"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RASPRIV_CallbackType","package":"druntime","parentType":"","signature":"RASPRIV_CallbackType","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RASPRIV_CallbackType"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"USER_AUTHENTICATED","package":"druntime","parentType":"","signature":"USER_AUTHENTICATED","url":"/ddoc/druntime/core/sys/windows/rassapi.html#USER_AUTHENTICATED"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"MESSENGER_PRESENT","package":"druntime","parentType":"","signature":"MESSENGER_PRESENT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#MESSENGER_PRESENT"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"PPP_CLIENT","package":"druntime","parentType":"","signature":"PPP_CLIENT","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PPP_CLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"GATEWAY_ACTIVE","package":"druntime","parentType":"","signature":"GATEWAY_ACTIVE","url":"/ddoc/druntime/core/sys/windows/rassapi.html#GATEWAY_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"REMOTE_LISTEN","package":"druntime","parentType":"","signature":"REMOTE_LISTEN","url":"/ddoc/druntime/core/sys/windows/rassapi.html#REMOTE_LISTEN"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"PORT_MULTILINKED","package":"druntime","parentType":"","signature":"PORT_MULTILINKED","url":"/ddoc/druntime/core/sys/windows/rassapi.html#PORT_MULTILINKED"},{"doc":"","kind":"variable","module":"core.sys.windows.rassapi","name":"RAS_IPADDRESSLEN","package":"druntime","parentType":"","signature":"size_t RAS_IPADDRESSLEN","url":"/ddoc/druntime/core/sys/windows/rassapi.html#RAS_IPADDRESSLEN"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.reason","name":"core.sys.windows.reason","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/reason.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.regstr","name":"core.sys.windows.regstr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/regstr.html"},{"doc":"","kind":"struct","module":"core.sys.windows.regstr","name":"DSKTLSYSTEMTIME","package":"druntime","parentType":"","signature":"DSKTLSYSTEMTIME","url":"/ddoc/druntime/core/sys/windows/regstr.html#DSKTLSYSTEMTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.regstr","name":"PDSKTLSYSTEMTIME","package":"druntime","parentType":"","signature":"PDSKTLSYSTEMTIME = DSKTLSYSTEMTIME *","url":"/ddoc/druntime/core/sys/windows/regstr.html#PDSKTLSYSTEMTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGSTR_MAX_VALUE_LENGTH","package":"druntime","parentType":"","signature":"REGSTR_MAX_VALUE_LENGTH","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGSTR_MAX_VALUE_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTGF_DEFCLEAN","package":"druntime","parentType":"","signature":"DOSOPTGF_DEFCLEAN","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTGF_DEFCLEAN"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_DEFAULT","package":"druntime","parentType":"","signature":"DOSOPTF_DEFAULT","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_SUPPORTED","package":"druntime","parentType":"","signature":"DOSOPTF_SUPPORTED","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_SUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_ALWAYSUSE","package":"druntime","parentType":"","signature":"DOSOPTF_ALWAYSUSE","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_ALWAYSUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_USESPMODE","package":"druntime","parentType":"","signature":"DOSOPTF_USESPMODE","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_USESPMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_PROVIDESUMB","package":"druntime","parentType":"","signature":"DOSOPTF_PROVIDESUMB","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_PROVIDESUMB"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_NEEDSETUP","package":"druntime","parentType":"","signature":"DOSOPTF_NEEDSETUP","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_NEEDSETUP"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_INDOSSTART","package":"druntime","parentType":"","signature":"DOSOPTF_INDOSSTART","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_INDOSSTART"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DOSOPTF_MULTIPLE","package":"druntime","parentType":"","signature":"DOSOPTF_MULTIPLE","url":"/ddoc/druntime/core/sys/windows/regstr.html#DOSOPTF_MULTIPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_FIRSTTIME","package":"druntime","parentType":"","signature":"SUF_FIRSTTIME","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_FIRSTTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_EXPRESS","package":"druntime","parentType":"","signature":"SUF_EXPRESS","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_EXPRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_BATCHINF","package":"druntime","parentType":"","signature":"SUF_BATCHINF","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_BATCHINF"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_CLEAN","package":"druntime","parentType":"","signature":"SUF_CLEAN","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_CLEAN"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_INSETUP","package":"druntime","parentType":"","signature":"SUF_INSETUP","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_INSETUP"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_NETSETUP","package":"druntime","parentType":"","signature":"SUF_NETSETUP","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_NETSETUP"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_NETHDBOOT","package":"druntime","parentType":"","signature":"SUF_NETHDBOOT","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_NETHDBOOT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_NETRPLBOOT","package":"druntime","parentType":"","signature":"SUF_NETRPLBOOT","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_NETRPLBOOT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"SUF_SBSCOPYOK","package":"druntime","parentType":"","signature":"SUF_SBSCOPYOK","url":"/ddoc/druntime/core/sys/windows/regstr.html#SUF_SBSCOPYOK"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"VPDF_DISABLEPWRMGMT","package":"druntime","parentType":"","signature":"VPDF_DISABLEPWRMGMT","url":"/ddoc/druntime/core/sys/windows/regstr.html#VPDF_DISABLEPWRMGMT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"VPDF_FORCEAPM10MODE","package":"druntime","parentType":"","signature":"VPDF_FORCEAPM10MODE","url":"/ddoc/druntime/core/sys/windows/regstr.html#VPDF_FORCEAPM10MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"VPDF_SKIPINTELSLCHECK","package":"druntime","parentType":"","signature":"VPDF_SKIPINTELSLCHECK","url":"/ddoc/druntime/core/sys/windows/regstr.html#VPDF_SKIPINTELSLCHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"VPDF_DISABLEPWRSTATUSPOLL","package":"druntime","parentType":"","signature":"VPDF_DISABLEPWRSTATUSPOLL","url":"/ddoc/druntime/core/sys/windows/regstr.html#VPDF_DISABLEPWRSTATUSPOLL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_OPT_HAVE_SOCKET","package":"druntime","parentType":"","signature":"PCMCIA_OPT_HAVE_SOCKET","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_OPT_HAVE_SOCKET"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_OPT_AUTOMEM","package":"druntime","parentType":"","signature":"PCMCIA_OPT_AUTOMEM","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_OPT_AUTOMEM"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_OPT_NO_SOUND","package":"druntime","parentType":"","signature":"PCMCIA_OPT_NO_SOUND","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_OPT_NO_SOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_OPT_NO_AUDIO","package":"druntime","parentType":"","signature":"PCMCIA_OPT_NO_AUDIO","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_OPT_NO_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_OPT_NO_APMREMOVE","package":"druntime","parentType":"","signature":"PCMCIA_OPT_NO_APMREMOVE","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_OPT_NO_APMREMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_DEF_MEMBEGIN","package":"druntime","parentType":"","signature":"PCMCIA_DEF_MEMBEGIN","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_DEF_MEMBEGIN"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_DEF_MEMEND","package":"druntime","parentType":"","signature":"PCMCIA_DEF_MEMEND","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_DEF_MEMEND"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_DEF_MEMLEN","package":"druntime","parentType":"","signature":"PCMCIA_DEF_MEMLEN","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_DEF_MEMLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCMCIA_DEF_MIN_REGION","package":"druntime","parentType":"","signature":"PCMCIA_DEF_MIN_REGION","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCMCIA_DEF_MIN_REGION"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_NO_VIDEO_IRQ","package":"druntime","parentType":"","signature":"PCI_FLAG_NO_VIDEO_IRQ","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_NO_VIDEO_IRQ"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_PCMCIA_WANT_IRQ","package":"druntime","parentType":"","signature":"PCI_FLAG_PCMCIA_WANT_IRQ","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_PCMCIA_WANT_IRQ"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_DUAL_IDE","package":"druntime","parentType":"","signature":"PCI_FLAG_DUAL_IDE","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_DUAL_IDE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_NO_ENUM_AT_ALL","package":"druntime","parentType":"","signature":"PCI_FLAG_NO_ENUM_AT_ALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_NO_ENUM_AT_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_ENUM_NO_RESOURCE","package":"druntime","parentType":"","signature":"PCI_FLAG_ENUM_NO_RESOURCE","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_ENUM_NO_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_NEED_DWORD_ACCESS","package":"druntime","parentType":"","signature":"PCI_FLAG_NEED_DWORD_ACCESS","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_NEED_DWORD_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_SINGLE_FUNCTION","package":"druntime","parentType":"","signature":"PCI_FLAG_SINGLE_FUNCTION","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_SINGLE_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_ALWAYS_ENABLED","package":"druntime","parentType":"","signature":"PCI_FLAG_ALWAYS_ENABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_ALWAYS_ENABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_IS_IDE","package":"druntime","parentType":"","signature":"PCI_FLAG_IS_IDE","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_IS_IDE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_IS_VIDEO","package":"druntime","parentType":"","signature":"PCI_FLAG_IS_VIDEO","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_IS_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCI_FLAG_FAIL_START","package":"druntime","parentType":"","signature":"PCI_FLAG_FAIL_START","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCI_FLAG_FAIL_START"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGSTR_VAL_MAX_HCID_LEN","package":"druntime","parentType":"","signature":"size_t REGSTR_VAL_MAX_HCID_LEN","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGSTR_VAL_MAX_HCID_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTDETIO","package":"druntime","parentType":"","signature":"REGDF_NOTDETIO","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTDETIO"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTDETMEM","package":"druntime","parentType":"","signature":"REGDF_NOTDETMEM","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTDETMEM"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTDETIRQ","package":"druntime","parentType":"","signature":"REGDF_NOTDETIRQ","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTDETIRQ"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTDETDMA","package":"druntime","parentType":"","signature":"REGDF_NOTDETDMA","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTDETDMA"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTDETALL","package":"druntime","parentType":"","signature":"REGDF_NOTDETALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTDETALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NEEDFULLCONFIG","package":"druntime","parentType":"","signature":"REGDF_NEEDFULLCONFIG","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NEEDFULLCONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_GENFORCEDCONFIG","package":"druntime","parentType":"","signature":"REGDF_GENFORCEDCONFIG","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_GENFORCEDCONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NODETCONFIG","package":"druntime","parentType":"","signature":"REGDF_NODETCONFIG","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NODETCONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_CONFLICTIO","package":"druntime","parentType":"","signature":"REGDF_CONFLICTIO","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_CONFLICTIO"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_CONFLICTMEM","package":"druntime","parentType":"","signature":"REGDF_CONFLICTMEM","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_CONFLICTMEM"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_CONFLICTIRQ","package":"druntime","parentType":"","signature":"REGDF_CONFLICTIRQ","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_CONFLICTIRQ"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_CONFLICTDMA","package":"druntime","parentType":"","signature":"REGDF_CONFLICTDMA","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_CONFLICTDMA"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_CONFLICTALL","package":"druntime","parentType":"","signature":"REGDF_CONFLICTALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_CONFLICTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_MAPIRQ2TO9","package":"druntime","parentType":"","signature":"REGDF_MAPIRQ2TO9","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_MAPIRQ2TO9"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGDF_NOTVERIFIED","package":"druntime","parentType":"","signature":"REGDF_NOTVERIFIED","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGDF_NOTVERIFIED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_DISABLED","package":"druntime","parentType":"","signature":"CONFIGFLAG_DISABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_REMOVED","package":"druntime","parentType":"","signature":"CONFIGFLAG_REMOVED","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_REMOVED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_MANUAL_INSTALL","package":"druntime","parentType":"","signature":"CONFIGFLAG_MANUAL_INSTALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_MANUAL_INSTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_IGNORE_BOOT_LC","package":"druntime","parentType":"","signature":"CONFIGFLAG_IGNORE_BOOT_LC","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_IGNORE_BOOT_LC"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_NET_BOOT","package":"druntime","parentType":"","signature":"CONFIGFLAG_NET_BOOT","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_NET_BOOT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_REINSTALL","package":"druntime","parentType":"","signature":"CONFIGFLAG_REINSTALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_REINSTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_FAILEDINSTALL","package":"druntime","parentType":"","signature":"CONFIGFLAG_FAILEDINSTALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_FAILEDINSTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_CANTSTOPACHILD","package":"druntime","parentType":"","signature":"CONFIGFLAG_CANTSTOPACHILD","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_CANTSTOPACHILD"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_OKREMOVEROM","package":"druntime","parentType":"","signature":"CONFIGFLAG_OKREMOVEROM","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_OKREMOVEROM"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CONFIGFLAG_NOREMOVEEXIT","package":"druntime","parentType":"","signature":"CONFIGFLAG_NOREMOVEEXIT","url":"/ddoc/druntime/core/sys/windows/regstr.html#CONFIGFLAG_NOREMOVEEXIT"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CSCONFIGFLAG_DISABLED","package":"druntime","parentType":"","signature":"CSCONFIGFLAG_DISABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#CSCONFIGFLAG_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CSCONFIGFLAG_DO_NOT_CREATE","package":"druntime","parentType":"","signature":"CSCONFIGFLAG_DO_NOT_CREATE","url":"/ddoc/druntime/core/sys/windows/regstr.html#CSCONFIGFLAG_DO_NOT_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CSCONFIGFLAG_DO_NOT_START","package":"druntime","parentType":"","signature":"CSCONFIGFLAG_DO_NOT_START","url":"/ddoc/druntime/core/sys/windows/regstr.html#CSCONFIGFLAG_DO_NOT_START"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"CSCONFIGFLAG_BITS","package":"druntime","parentType":"","signature":"CSCONFIGFLAG_BITS","url":"/ddoc/druntime/core/sys/windows/regstr.html#CSCONFIGFLAG_BITS"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"DMSTATEFLAG_APPLYTOALL","package":"druntime","parentType":"","signature":"DMSTATEFLAG_APPLYTOALL","url":"/ddoc/druntime/core/sys/windows/regstr.html#DMSTATEFLAG_APPLYTOALL"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"NUM_RESOURCE_MAP","package":"druntime","parentType":"","signature":"NUM_RESOURCE_MAP","url":"/ddoc/druntime/core/sys/windows/regstr.html#NUM_RESOURCE_MAP"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"MF_FLAGS_EVEN_IF_NO_RESOURCE","package":"druntime","parentType":"","signature":"MF_FLAGS_EVEN_IF_NO_RESOURCE","url":"/ddoc/druntime/core/sys/windows/regstr.html#MF_FLAGS_EVEN_IF_NO_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","package":"druntime","parentType":"","signature":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","url":"/ddoc/druntime/core/sys/windows/regstr.html#MF_FLAGS_NO_CREATE_IF_NO_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","package":"druntime","parentType":"","signature":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","url":"/ddoc/druntime/core/sys/windows/regstr.html#MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","package":"druntime","parentType":"","signature":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"EISAFLAG_NO_IO_MERGE","package":"druntime","parentType":"","signature":"EISAFLAG_NO_IO_MERGE","url":"/ddoc/druntime/core/sys/windows/regstr.html#EISAFLAG_NO_IO_MERGE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"EISAFLAG_SLOT_IO_FIRST","package":"druntime","parentType":"","signature":"EISAFLAG_SLOT_IO_FIRST","url":"/ddoc/druntime/core/sys/windows/regstr.html#EISAFLAG_SLOT_IO_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"EISA_NO_MAX_FUNCTION","package":"druntime","parentType":"","signature":"EISA_NO_MAX_FUNCTION","url":"/ddoc/druntime/core/sys/windows/regstr.html#EISA_NO_MAX_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"NUM_EISA_RANGES","package":"druntime","parentType":"","signature":"NUM_EISA_RANGES","url":"/ddoc/druntime/core/sys/windows/regstr.html#NUM_EISA_RANGES"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"APMMENUSUSPEND_DISABLED","package":"druntime","parentType":"","signature":"APMMENUSUSPEND_DISABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#APMMENUSUSPEND_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"APMMENUSUSPEND_ENABLED","package":"druntime","parentType":"","signature":"APMMENUSUSPEND_ENABLED","url":"/ddoc/druntime/core/sys/windows/regstr.html#APMMENUSUSPEND_ENABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"APMMENUSUSPEND_UNDOCKED","package":"druntime","parentType":"","signature":"APMMENUSUSPEND_UNDOCKED","url":"/ddoc/druntime/core/sys/windows/regstr.html#APMMENUSUSPEND_UNDOCKED"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"APMMENUSUSPEND_NOCHANGE","package":"druntime","parentType":"","signature":"APMMENUSUSPEND_NOCHANGE","url":"/ddoc/druntime/core/sys/windows/regstr.html#APMMENUSUSPEND_NOCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGSTR_KEY_ISAENUM","package":"druntime","parentType":"","signature":"TCHAR[] REGSTR_KEY_ISAENUM","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGSTR_KEY_ISAENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"REGSTR_KEY_CLASS","package":"druntime","parentType":"","signature":"TCHAR[] REGSTR_KEY_CLASS","url":"/ddoc/druntime/core/sys/windows/regstr.html#REGSTR_KEY_CLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCIC_DEFAULT_IRQMASK","package":"druntime","parentType":"","signature":"PCIC_DEFAULT_IRQMASK","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCIC_DEFAULT_IRQMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.regstr","name":"PCIC_DEFAULT_NUMSOCKETS","package":"druntime","parentType":"","signature":"PCIC_DEFAULT_NUMSOCKETS","url":"/ddoc/druntime/core/sys/windows/regstr.html#PCIC_DEFAULT_NUMSOCKETS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.richedit","name":"core.sys.windows.richedit","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/richedit.html"},{"doc":"","kind":"alias","module":"core.sys.windows.richedit","name":"TEXTMODE","package":"druntime","parentType":"","signature":"TEXTMODE = DWORD","url":"/ddoc/druntime/core/sys/windows/richedit.html#TEXTMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.richedit","name":"UNDONAMEID","package":"druntime","parentType":"","signature":"UNDONAMEID = DWORD","url":"/ddoc/druntime/core/sys/windows/richedit.html#UNDONAMEID"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"CHARFORMATA","package":"druntime","parentType":"","signature":"CHARFORMATA","url":"/ddoc/druntime/core/sys/windows/richedit.html#CHARFORMATA"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"CHARFORMATW","package":"druntime","parentType":"","signature":"CHARFORMATW","url":"/ddoc/druntime/core/sys/windows/richedit.html#CHARFORMATW"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"CHARFORMAT2A","package":"druntime","parentType":"","signature":"CHARFORMAT2A","url":"/ddoc/druntime/core/sys/windows/richedit.html#CHARFORMAT2A"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"CHARFORMAT2W","package":"druntime","parentType":"","signature":"CHARFORMAT2W","url":"/ddoc/druntime/core/sys/windows/richedit.html#CHARFORMAT2W"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"CHARRANGE","package":"druntime","parentType":"","signature":"CHARRANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#CHARRANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"COMPCOLOR","package":"druntime","parentType":"","signature":"COMPCOLOR","url":"/ddoc/druntime/core/sys/windows/richedit.html#COMPCOLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.richedit","name":"EDITSTREAMCALLBACK","package":"druntime","parentType":"","signature":"EDITSTREAMCALLBACK = DWORD function(DWORD_PTR, PBYTE, LONG, LONG *)","url":"/ddoc/druntime/core/sys/windows/richedit.html#EDITSTREAMCALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"EDITSTREAM","package":"druntime","parentType":"","signature":"EDITSTREAM","url":"/ddoc/druntime/core/sys/windows/richedit.html#EDITSTREAM"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENCORRECTTEXT","package":"druntime","parentType":"","signature":"ENCORRECTTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENCORRECTTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENDROPFILES","package":"druntime","parentType":"","signature":"ENDROPFILES","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENDROPFILES"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENLINK","package":"druntime","parentType":"","signature":"ENLINK","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENLINK"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENOLEOPFAILED","package":"druntime","parentType":"","signature":"ENOLEOPFAILED","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENOLEOPFAILED"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENPROTECTED","package":"druntime","parentType":"","signature":"ENPROTECTED","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENPROTECTED"},{"doc":"","kind":"alias","module":"core.sys.windows.richedit","name":"LPENPROTECTED","package":"druntime","parentType":"","signature":"LPENPROTECTED = ENPROTECTED *","url":"/ddoc/druntime/core/sys/windows/richedit.html#LPENPROTECTED"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"ENSAVECLIPBOARD","package":"druntime","parentType":"","signature":"ENSAVECLIPBOARD","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENSAVECLIPBOARD"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"FINDTEXTA","package":"druntime","parentType":"","signature":"FINDTEXTA","url":"/ddoc/druntime/core/sys/windows/richedit.html#FINDTEXTA"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"FINDTEXTW","package":"druntime","parentType":"","signature":"FINDTEXTW","url":"/ddoc/druntime/core/sys/windows/richedit.html#FINDTEXTW"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"FINDTEXTEXA","package":"druntime","parentType":"","signature":"FINDTEXTEXA","url":"/ddoc/druntime/core/sys/windows/richedit.html#FINDTEXTEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"FINDTEXTEXW","package":"druntime","parentType":"","signature":"FINDTEXTEXW","url":"/ddoc/druntime/core/sys/windows/richedit.html#FINDTEXTEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"FORMATRANGE","package":"druntime","parentType":"","signature":"FORMATRANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#FORMATRANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"MSGFILTER","package":"druntime","parentType":"","signature":"MSGFILTER","url":"/ddoc/druntime/core/sys/windows/richedit.html#MSGFILTER"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"PARAFORMAT","package":"druntime","parentType":"","signature":"PARAFORMAT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PARAFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"PARAFORMAT2","package":"druntime","parentType":"","signature":"PARAFORMAT2","url":"/ddoc/druntime/core/sys/windows/richedit.html#PARAFORMAT2"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"SELCHANGE","package":"druntime","parentType":"","signature":"SELCHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#SELCHANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"TEXTRANGEA","package":"druntime","parentType":"","signature":"TEXTRANGEA","url":"/ddoc/druntime/core/sys/windows/richedit.html#TEXTRANGEA"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"TEXTRANGEW","package":"druntime","parentType":"","signature":"TEXTRANGEW","url":"/ddoc/druntime/core/sys/windows/richedit.html#TEXTRANGEW"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"REQRESIZE","package":"druntime","parentType":"","signature":"REQRESIZE","url":"/ddoc/druntime/core/sys/windows/richedit.html#REQRESIZE"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"REPASTESPECIAL","package":"druntime","parentType":"","signature":"REPASTESPECIAL","url":"/ddoc/druntime/core/sys/windows/richedit.html#REPASTESPECIAL"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"PUNCTUATION","package":"druntime","parentType":"","signature":"PUNCTUATION","url":"/ddoc/druntime/core/sys/windows/richedit.html#PUNCTUATION"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"GETTEXTEX","package":"druntime","parentType":"","signature":"GETTEXTEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#GETTEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.richedit","name":"EDITWORDBREAKPROCEX","package":"druntime","parentType":"","signature":"EDITWORDBREAKPROCEX = LONG function(char *, LONG, BYTE, INT)","url":"/ddoc/druntime/core/sys/windows/richedit.html#EDITWORDBREAKPROCEX"},{"doc":"","kind":"struct","module":"core.sys.windows.richedit","name":"GETTEXTLENGTHEX","package":"druntime","parentType":"","signature":"GETTEXTLENGTHEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#GETTEXTLENGTHEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"RICHEDIT_CLASS10A","package":"druntime","parentType":"","signature":"RICHEDIT_CLASS10A","url":"/ddoc/druntime/core/sys/windows/richedit.html#RICHEDIT_CLASS10A"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"CF_RTF","package":"druntime","parentType":"","signature":"TCHAR[] CF_RTF","url":"/ddoc/druntime/core/sys/windows/richedit.html#CF_RTF"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"CFM_BOLD","package":"druntime","parentType":"","signature":"DWORD CFM_BOLD","url":"/ddoc/druntime/core/sys/windows/richedit.html#CFM_BOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"CFE_BOLD","package":"druntime","parentType":"","signature":"DWORD CFE_BOLD","url":"/ddoc/druntime/core/sys/windows/richedit.html#CFE_BOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"CFM_EFFECTS","package":"druntime","parentType":"","signature":"CFM_EFFECTS","url":"/ddoc/druntime/core/sys/windows/richedit.html#CFM_EFFECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"IMF_FORCENONE","package":"druntime","parentType":"","signature":"LPARAM IMF_FORCENONE","url":"/ddoc/druntime/core/sys/windows/richedit.html#IMF_FORCENONE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SEL_EMPTY","package":"druntime","parentType":"","signature":"SEL_EMPTY","url":"/ddoc/druntime/core/sys/windows/richedit.html#SEL_EMPTY"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SEL_TEXT","package":"druntime","parentType":"","signature":"SEL_TEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#SEL_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SEL_OBJECT","package":"druntime","parentType":"","signature":"SEL_OBJECT","url":"/ddoc/druntime/core/sys/windows/richedit.html#SEL_OBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SEL_MULTICHAR","package":"druntime","parentType":"","signature":"SEL_MULTICHAR","url":"/ddoc/druntime/core/sys/windows/richedit.html#SEL_MULTICHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SEL_MULTIOBJECT","package":"druntime","parentType":"","signature":"SEL_MULTIOBJECT","url":"/ddoc/druntime/core/sys/windows/richedit.html#SEL_MULTIOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"MAX_TAB_STOPS","package":"druntime","parentType":"","signature":"MAX_TAB_STOPS","url":"/ddoc/druntime/core/sys/windows/richedit.html#MAX_TAB_STOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_ALIGNMENT","package":"druntime","parentType":"","signature":"PFM_ALIGNMENT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_ALIGNMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NUMBERING","package":"druntime","parentType":"","signature":"PFM_NUMBERING","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NUMBERING"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_OFFSET","package":"druntime","parentType":"","signature":"PFM_OFFSET","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_OFFSETINDENT","package":"druntime","parentType":"","signature":"PFM_OFFSETINDENT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_OFFSETINDENT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_RIGHTINDENT","package":"druntime","parentType":"","signature":"PFM_RIGHTINDENT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_RIGHTINDENT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_STARTINDENT","package":"druntime","parentType":"","signature":"PFM_STARTINDENT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_STARTINDENT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_TABSTOPS","package":"druntime","parentType":"","signature":"PFM_TABSTOPS","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_TABSTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_BORDER","package":"druntime","parentType":"","signature":"PFM_BORDER","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_BORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_LINESPACING","package":"druntime","parentType":"","signature":"PFM_LINESPACING","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_LINESPACING"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NUMBERINGSTART","package":"druntime","parentType":"","signature":"PFM_NUMBERINGSTART","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NUMBERINGSTART"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NUMBERINGSTYLE","package":"druntime","parentType":"","signature":"PFM_NUMBERINGSTYLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NUMBERINGSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NUMBERINGTAB","package":"druntime","parentType":"","signature":"PFM_NUMBERINGTAB","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NUMBERINGTAB"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_SHADING","package":"druntime","parentType":"","signature":"PFM_SHADING","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_SHADING"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_SPACEAFTER","package":"druntime","parentType":"","signature":"PFM_SPACEAFTER","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_SPACEAFTER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_SPACEBEFORE","package":"druntime","parentType":"","signature":"PFM_SPACEBEFORE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_SPACEBEFORE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_STYLE","package":"druntime","parentType":"","signature":"PFM_STYLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_STYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_DONOTHYPHEN","package":"druntime","parentType":"","signature":"PFM_DONOTHYPHEN","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_DONOTHYPHEN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_KEEP","package":"druntime","parentType":"","signature":"PFM_KEEP","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_KEEP"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_KEEPNEXT","package":"druntime","parentType":"","signature":"PFM_KEEPNEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_KEEPNEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NOLINENUMBER","package":"druntime","parentType":"","signature":"PFM_NOLINENUMBER","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NOLINENUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_NOWIDOWCONTROL","package":"druntime","parentType":"","signature":"PFM_NOWIDOWCONTROL","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_NOWIDOWCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_PAGEBREAKBEFORE","package":"druntime","parentType":"","signature":"PFM_PAGEBREAKBEFORE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_PAGEBREAKBEFORE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_RTLPARA","package":"druntime","parentType":"","signature":"PFM_RTLPARA","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_RTLPARA"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_SIDEBYSIDE","package":"druntime","parentType":"","signature":"PFM_SIDEBYSIDE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_SIDEBYSIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFM_TABLE","package":"druntime","parentType":"","signature":"PFM_TABLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFM_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFN_BULLET","package":"druntime","parentType":"","signature":"PFN_BULLET","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFN_BULLET"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_DONOTHYPHEN","package":"druntime","parentType":"","signature":"PFE_DONOTHYPHEN","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_DONOTHYPHEN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_KEEP","package":"druntime","parentType":"","signature":"PFE_KEEP","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_KEEP"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_KEEPNEXT","package":"druntime","parentType":"","signature":"PFE_KEEPNEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_KEEPNEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_NOLINENUMBER","package":"druntime","parentType":"","signature":"PFE_NOLINENUMBER","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_NOLINENUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_NOWIDOWCONTROL","package":"druntime","parentType":"","signature":"PFE_NOWIDOWCONTROL","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_NOWIDOWCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_PAGEBREAKBEFORE","package":"druntime","parentType":"","signature":"PFE_PAGEBREAKBEFORE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_PAGEBREAKBEFORE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_RTLPARA","package":"druntime","parentType":"","signature":"PFE_RTLPARA","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_RTLPARA"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_SIDEBYSIDE","package":"druntime","parentType":"","signature":"PFE_SIDEBYSIDE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_SIDEBYSIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFE_TABLE","package":"druntime","parentType":"","signature":"PFE_TABLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFE_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFA_LEFT","package":"druntime","parentType":"","signature":"PFA_LEFT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFA_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFA_RIGHT","package":"druntime","parentType":"","signature":"PFA_RIGHT","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFA_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFA_CENTER","package":"druntime","parentType":"","signature":"PFA_CENTER","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFA_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFA_JUSTIFY","package":"druntime","parentType":"","signature":"PFA_JUSTIFY","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFA_JUSTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"PFA_FULL_INTERWORD","package":"druntime","parentType":"","signature":"PFA_FULL_INTERWORD","url":"/ddoc/druntime/core/sys/windows/richedit.html#PFA_FULL_INTERWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_TEXT","package":"druntime","parentType":"","signature":"SF_TEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_RTF","package":"druntime","parentType":"","signature":"SF_RTF","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_RTF"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_RTFNOOBJS","package":"druntime","parentType":"","signature":"SF_RTFNOOBJS","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_RTFNOOBJS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_TEXTIZED","package":"druntime","parentType":"","signature":"SF_TEXTIZED","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_TEXTIZED"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_UNICODE","package":"druntime","parentType":"","signature":"SF_UNICODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_USECODEPAGE","package":"druntime","parentType":"","signature":"SF_USECODEPAGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_USECODEPAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_NCRFORNONASCII","package":"druntime","parentType":"","signature":"SF_NCRFORNONASCII","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_NCRFORNONASCII"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SF_RTFVAL","package":"druntime","parentType":"","signature":"SF_RTFVAL","url":"/ddoc/druntime/core/sys/windows/richedit.html#SF_RTFVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SFF_PWD","package":"druntime","parentType":"","signature":"SFF_PWD","url":"/ddoc/druntime/core/sys/windows/richedit.html#SFF_PWD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SFF_KEEPDOCINFO","package":"druntime","parentType":"","signature":"SFF_KEEPDOCINFO","url":"/ddoc/druntime/core/sys/windows/richedit.html#SFF_KEEPDOCINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SFF_PERSISTVIEWSCALE","package":"druntime","parentType":"","signature":"SFF_PERSISTVIEWSCALE","url":"/ddoc/druntime/core/sys/windows/richedit.html#SFF_PERSISTVIEWSCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SFF_PLAINRTF","package":"druntime","parentType":"","signature":"SFF_PLAINRTF","url":"/ddoc/druntime/core/sys/windows/richedit.html#SFF_PLAINRTF"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SFF_SELECTION","package":"druntime","parentType":"","signature":"SFF_SELECTION","url":"/ddoc/druntime/core/sys/windows/richedit.html#SFF_SELECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_CLASSIFY","package":"druntime","parentType":"","signature":"WB_CLASSIFY","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_CLASSIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_MOVEWORDLEFT","package":"druntime","parentType":"","signature":"WB_MOVEWORDLEFT","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_MOVEWORDLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_MOVEWORDRIGHT","package":"druntime","parentType":"","signature":"WB_MOVEWORDRIGHT","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_MOVEWORDRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_LEFTBREAK","package":"druntime","parentType":"","signature":"WB_LEFTBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_LEFTBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_RIGHTBREAK","package":"druntime","parentType":"","signature":"WB_RIGHTBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_RIGHTBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_MOVEWORDPREV","package":"druntime","parentType":"","signature":"WB_MOVEWORDPREV","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_MOVEWORDPREV"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_MOVEWORDNEXT","package":"druntime","parentType":"","signature":"WB_MOVEWORDNEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_MOVEWORDNEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_PREVBREAK","package":"druntime","parentType":"","signature":"WB_PREVBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_PREVBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WB_NEXTBREAK","package":"druntime","parentType":"","signature":"WB_NEXTBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#WB_NEXTBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_WORDWRAP","package":"druntime","parentType":"","signature":"WBF_WORDWRAP","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_WORDWRAP"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_WORDBREAK","package":"druntime","parentType":"","signature":"WBF_WORDBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_WORDBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_OVERFLOW","package":"druntime","parentType":"","signature":"WBF_OVERFLOW","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_OVERFLOW"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_LEVEL1","package":"druntime","parentType":"","signature":"WBF_LEVEL1","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_LEVEL1"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_LEVEL2","package":"druntime","parentType":"","signature":"WBF_LEVEL2","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_LEVEL2"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"WBF_CUSTOM","package":"druntime","parentType":"","signature":"WBF_CUSTOM","url":"/ddoc/druntime/core/sys/windows/richedit.html#WBF_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_DISABLENOSCROLL","package":"druntime","parentType":"","signature":"ES_DISABLENOSCROLL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_DISABLENOSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_SUNKEN","package":"druntime","parentType":"","signature":"ES_SUNKEN","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_SUNKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_SAVESEL","package":"druntime","parentType":"","signature":"ES_SAVESEL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_SAVESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_EX_NOCALLOLEINIT","package":"druntime","parentType":"","signature":"ES_EX_NOCALLOLEINIT","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_EX_NOCALLOLEINIT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_NOIME","package":"druntime","parentType":"","signature":"ES_NOIME","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_NOIME"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_NOOLEDRAGDROP","package":"druntime","parentType":"","signature":"ES_NOOLEDRAGDROP","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_NOOLEDRAGDROP"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_SELECTIONBAR","package":"druntime","parentType":"","signature":"ES_SELECTIONBAR","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_SELECTIONBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_SELFIME","package":"druntime","parentType":"","signature":"ES_SELFIME","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_SELFIME"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ES_VERTICAL","package":"druntime","parentType":"","signature":"ES_VERTICAL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ES_VERTICAL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_CANPASTE","package":"druntime","parentType":"","signature":"EM_CANPASTE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_CANPASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_DISPLAYBAND","package":"druntime","parentType":"","signature":"EM_DISPLAYBAND","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_DISPLAYBAND"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_EXGETSEL","package":"druntime","parentType":"","signature":"EM_EXGETSEL","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_EXGETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_EXLIMITTEXT","package":"druntime","parentType":"","signature":"EM_EXLIMITTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_EXLIMITTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_EXLINEFROMCHAR","package":"druntime","parentType":"","signature":"EM_EXLINEFROMCHAR","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_EXLINEFROMCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_EXSETSEL","package":"druntime","parentType":"","signature":"EM_EXSETSEL","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_EXSETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FINDTEXT","package":"druntime","parentType":"","signature":"EM_FINDTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FINDTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FORMATRANGE","package":"druntime","parentType":"","signature":"EM_FORMATRANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FORMATRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETCHARFORMAT","package":"druntime","parentType":"","signature":"EM_GETCHARFORMAT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETCHARFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETEVENTMASK","package":"druntime","parentType":"","signature":"EM_GETEVENTMASK","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETEVENTMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETOLEINTERFACE","package":"druntime","parentType":"","signature":"EM_GETOLEINTERFACE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETOLEINTERFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETPARAFORMAT","package":"druntime","parentType":"","signature":"EM_GETPARAFORMAT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETPARAFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETSELTEXT","package":"druntime","parentType":"","signature":"EM_GETSELTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETSELTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_HIDESELECTION","package":"druntime","parentType":"","signature":"EM_HIDESELECTION","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_HIDESELECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_PASTESPECIAL","package":"druntime","parentType":"","signature":"EM_PASTESPECIAL","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_PASTESPECIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_REQUESTRESIZE","package":"druntime","parentType":"","signature":"EM_REQUESTRESIZE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_REQUESTRESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SELECTIONTYPE","package":"druntime","parentType":"","signature":"EM_SELECTIONTYPE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SELECTIONTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETBKGNDCOLOR","package":"druntime","parentType":"","signature":"EM_SETBKGNDCOLOR","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETBKGNDCOLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETCHARFORMAT","package":"druntime","parentType":"","signature":"EM_SETCHARFORMAT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETCHARFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETEVENTMASK","package":"druntime","parentType":"","signature":"EM_SETEVENTMASK","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETEVENTMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETOLECALLBACK","package":"druntime","parentType":"","signature":"EM_SETOLECALLBACK","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETOLECALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETPARAFORMAT","package":"druntime","parentType":"","signature":"EM_SETPARAFORMAT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETPARAFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETTARGETDEVICE","package":"druntime","parentType":"","signature":"EM_SETTARGETDEVICE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETTARGETDEVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_STREAMIN","package":"druntime","parentType":"","signature":"EM_STREAMIN","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_STREAMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_STREAMOUT","package":"druntime","parentType":"","signature":"EM_STREAMOUT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_STREAMOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETTEXTRANGE","package":"druntime","parentType":"","signature":"EM_GETTEXTRANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETTEXTRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FINDWORDBREAK","package":"druntime","parentType":"","signature":"EM_FINDWORDBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FINDWORDBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETOPTIONS","package":"druntime","parentType":"","signature":"EM_SETOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETOPTIONS","package":"druntime","parentType":"","signature":"EM_GETOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FINDTEXTEX","package":"druntime","parentType":"","signature":"EM_FINDTEXTEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FINDTEXTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETWORDBREAKPROCEX","package":"druntime","parentType":"","signature":"EM_GETWORDBREAKPROCEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETWORDBREAKPROCEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETWORDBREAKPROCEX","package":"druntime","parentType":"","signature":"EM_SETWORDBREAKPROCEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETWORDBREAKPROCEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETUNDOLIMIT","package":"druntime","parentType":"","signature":"EM_SETUNDOLIMIT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETUNDOLIMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_REDO","package":"druntime","parentType":"","signature":"EM_REDO","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_REDO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_CANREDO","package":"druntime","parentType":"","signature":"EM_CANREDO","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_CANREDO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETUNDONAME","package":"druntime","parentType":"","signature":"EM_GETUNDONAME","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETUNDONAME"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETREDONAME","package":"druntime","parentType":"","signature":"EM_GETREDONAME","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETREDONAME"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_STOPGROUPTYPING","package":"druntime","parentType":"","signature":"EM_STOPGROUPTYPING","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_STOPGROUPTYPING"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETTEXTMODE","package":"druntime","parentType":"","signature":"EM_SETTEXTMODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETTEXTMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETTEXTMODE","package":"druntime","parentType":"","signature":"EM_GETTEXTMODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETTEXTMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_AUTOURLDETECT","package":"druntime","parentType":"","signature":"EM_AUTOURLDETECT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_AUTOURLDETECT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETAUTOURLDETECT","package":"druntime","parentType":"","signature":"EM_GETAUTOURLDETECT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETAUTOURLDETECT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETPALETTE","package":"druntime","parentType":"","signature":"EM_SETPALETTE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETPALETTE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETTEXTEX","package":"druntime","parentType":"","signature":"EM_GETTEXTEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETTEXTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETTEXTLENGTHEX","package":"druntime","parentType":"","signature":"EM_GETTEXTLENGTHEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETTEXTLENGTHEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SHOWSCROLLBAR","package":"druntime","parentType":"","signature":"EM_SHOWSCROLLBAR","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SHOWSCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETTEXTEX","package":"druntime","parentType":"","signature":"EM_SETTEXTEX","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETTEXTEX"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETPUNCTUATION","package":"druntime","parentType":"","signature":"EM_SETPUNCTUATION","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETPUNCTUATION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETPUNCTUATION","package":"druntime","parentType":"","signature":"EM_GETPUNCTUATION","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETPUNCTUATION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETWORDWRAPMODE","package":"druntime","parentType":"","signature":"EM_SETWORDWRAPMODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETWORDWRAPMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETWORDWRAPMODE","package":"druntime","parentType":"","signature":"EM_GETWORDWRAPMODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETWORDWRAPMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETIMECOLOR","package":"druntime","parentType":"","signature":"EM_SETIMECOLOR","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETIMECOLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETIMECOLOR","package":"druntime","parentType":"","signature":"EM_GETIMECOLOR","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETIMECOLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETIMEOPTIONS","package":"druntime","parentType":"","signature":"EM_SETIMEOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETIMEOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETIMEOPTIONS","package":"druntime","parentType":"","signature":"EM_GETIMEOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETIMEOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETLANGOPTIONS","package":"druntime","parentType":"","signature":"EM_SETLANGOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETLANGOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETLANGOPTIONS","package":"druntime","parentType":"","signature":"EM_GETLANGOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETLANGOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETIMECOMPMODE","package":"druntime","parentType":"","signature":"EM_GETIMECOMPMODE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETIMECOMPMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FINDTEXTW","package":"druntime","parentType":"","signature":"EM_FINDTEXTW","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FINDTEXTW"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_FINDTEXTEXW","package":"druntime","parentType":"","signature":"EM_FINDTEXTEXW","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_FINDTEXTEXW"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_RECONVERSION","package":"druntime","parentType":"","signature":"EM_RECONVERSION","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_RECONVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETBIDIOPTIONS","package":"druntime","parentType":"","signature":"EM_SETBIDIOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETBIDIOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETBIDIOPTIONS","package":"druntime","parentType":"","signature":"EM_GETBIDIOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETBIDIOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETTYPOGRAPHYOPTIONS","package":"druntime","parentType":"","signature":"EM_SETTYPOGRAPHYOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETTYPOGRAPHYOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETTYPOGRAPHYOPTIONS","package":"druntime","parentType":"","signature":"EM_GETTYPOGRAPHYOPTIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETTYPOGRAPHYOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETEDITSTYLE","package":"druntime","parentType":"","signature":"EM_SETEDITSTYLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETEDITSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETEDITSTYLE","package":"druntime","parentType":"","signature":"EM_GETEDITSTYLE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETEDITSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETSCROLLPOS","package":"druntime","parentType":"","signature":"EM_GETSCROLLPOS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETSCROLLPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETSCROLLPOS","package":"druntime","parentType":"","signature":"EM_SETSCROLLPOS","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETSCROLLPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETFONTSIZE","package":"druntime","parentType":"","signature":"EM_SETFONTSIZE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETFONTSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_GETZOOM","package":"druntime","parentType":"","signature":"EM_GETZOOM","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_GETZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EM_SETZOOM","package":"druntime","parentType":"","signature":"EM_SETZOOM","url":"/ddoc/druntime/core/sys/windows/richedit.html#EM_SETZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_MSGFILTER","package":"druntime","parentType":"","signature":"EN_MSGFILTER","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_MSGFILTER"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_REQUESTRESIZE","package":"druntime","parentType":"","signature":"EN_REQUESTRESIZE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_REQUESTRESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_SELCHANGE","package":"druntime","parentType":"","signature":"EN_SELCHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_SELCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_DROPFILES","package":"druntime","parentType":"","signature":"EN_DROPFILES","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_DROPFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_PROTECTED","package":"druntime","parentType":"","signature":"EN_PROTECTED","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_PROTECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_CORRECTTEXT","package":"druntime","parentType":"","signature":"EN_CORRECTTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_CORRECTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_STOPNOUNDO","package":"druntime","parentType":"","signature":"EN_STOPNOUNDO","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_STOPNOUNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_IMECHANGE","package":"druntime","parentType":"","signature":"EN_IMECHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_IMECHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_SAVECLIPBOARD","package":"druntime","parentType":"","signature":"EN_SAVECLIPBOARD","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_SAVECLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_OLEOPFAILED","package":"druntime","parentType":"","signature":"EN_OLEOPFAILED","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_OLEOPFAILED"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"EN_LINK","package":"druntime","parentType":"","signature":"EN_LINK","url":"/ddoc/druntime/core/sys/windows/richedit.html#EN_LINK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_NONE","package":"druntime","parentType":"","signature":"ENM_NONE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_CHANGE","package":"druntime","parentType":"","signature":"ENM_CHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_UPDATE","package":"druntime","parentType":"","signature":"ENM_UPDATE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_SCROLL","package":"druntime","parentType":"","signature":"ENM_SCROLL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_SCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_SCROLLEVENTS","package":"druntime","parentType":"","signature":"ENM_SCROLLEVENTS","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_SCROLLEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_DRAGDROPDONE","package":"druntime","parentType":"","signature":"ENM_DRAGDROPDONE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_DRAGDROPDONE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_KEYEVENTS","package":"druntime","parentType":"","signature":"ENM_KEYEVENTS","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_KEYEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_MOUSEEVENTS","package":"druntime","parentType":"","signature":"ENM_MOUSEEVENTS","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_MOUSEEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_REQUESTRESIZE","package":"druntime","parentType":"","signature":"ENM_REQUESTRESIZE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_REQUESTRESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_SELCHANGE","package":"druntime","parentType":"","signature":"ENM_SELCHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_SELCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_DROPFILES","package":"druntime","parentType":"","signature":"ENM_DROPFILES","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_DROPFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_PROTECTED","package":"druntime","parentType":"","signature":"ENM_PROTECTED","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_PROTECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_CORRECTTEXT","package":"druntime","parentType":"","signature":"ENM_CORRECTTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_CORRECTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_IMECHANGE","package":"druntime","parentType":"","signature":"ENM_IMECHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_IMECHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_LANGCHANGE","package":"druntime","parentType":"","signature":"ENM_LANGCHANGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_LANGCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_OBJECTPOSITIONS","package":"druntime","parentType":"","signature":"ENM_OBJECTPOSITIONS","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_OBJECTPOSITIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ENM_LINK","package":"druntime","parentType":"","signature":"ENM_LINK","url":"/ddoc/druntime/core/sys/windows/richedit.html#ENM_LINK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_AUTOWORDSELECTION","package":"druntime","parentType":"","signature":"ECO_AUTOWORDSELECTION","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_AUTOWORDSELECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_AUTOVSCROLL","package":"druntime","parentType":"","signature":"ECO_AUTOVSCROLL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_AUTOVSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_AUTOHSCROLL","package":"druntime","parentType":"","signature":"ECO_AUTOHSCROLL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_AUTOHSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_NOHIDESEL","package":"druntime","parentType":"","signature":"ECO_NOHIDESEL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_NOHIDESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_READONLY","package":"druntime","parentType":"","signature":"ECO_READONLY","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_WANTRETURN","package":"druntime","parentType":"","signature":"ECO_WANTRETURN","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_WANTRETURN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_SAVESEL","package":"druntime","parentType":"","signature":"ECO_SAVESEL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_SAVESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_SELECTIONBAR","package":"druntime","parentType":"","signature":"ECO_SELECTIONBAR","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_SELECTIONBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"ECO_VERTICAL","package":"druntime","parentType":"","signature":"ECO_VERTICAL","url":"/ddoc/druntime/core/sys/windows/richedit.html#ECO_VERTICAL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SCF_DEFAULT","package":"druntime","parentType":"","signature":"SCF_DEFAULT","url":"/ddoc/druntime/core/sys/windows/richedit.html#SCF_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SCF_SELECTION","package":"druntime","parentType":"","signature":"SCF_SELECTION","url":"/ddoc/druntime/core/sys/windows/richedit.html#SCF_SELECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SCF_WORD","package":"druntime","parentType":"","signature":"SCF_WORD","url":"/ddoc/druntime/core/sys/windows/richedit.html#SCF_WORD"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SCF_ALL","package":"druntime","parentType":"","signature":"SCF_ALL","url":"/ddoc/druntime/core/sys/windows/richedit.html#SCF_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"SCF_USEUIRULES","package":"druntime","parentType":"","signature":"SCF_USEUIRULES","url":"/ddoc/druntime/core/sys/windows/richedit.html#SCF_USEUIRULES"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_PLAINTEXT","package":"druntime","parentType":"","signature":"TM_PLAINTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_PLAINTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_RICHTEXT","package":"druntime","parentType":"","signature":"TM_RICHTEXT","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_RICHTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_SINGLELEVELUNDO","package":"druntime","parentType":"","signature":"TM_SINGLELEVELUNDO","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_SINGLELEVELUNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_MULTILEVELUNDO","package":"druntime","parentType":"","signature":"TM_MULTILEVELUNDO","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_MULTILEVELUNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_SINGLECODEPAGE","package":"druntime","parentType":"","signature":"TM_SINGLECODEPAGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_SINGLECODEPAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TM_MULTICODEPAGE","package":"druntime","parentType":"","signature":"TM_MULTICODEPAGE","url":"/ddoc/druntime/core/sys/windows/richedit.html#TM_MULTICODEPAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GT_DEFAULT","package":"druntime","parentType":"","signature":"GT_DEFAULT","url":"/ddoc/druntime/core/sys/windows/richedit.html#GT_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GT_USECRLF","package":"druntime","parentType":"","signature":"GT_USECRLF","url":"/ddoc/druntime/core/sys/windows/richedit.html#GT_USECRLF"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"yHeightCharPtsMost","package":"druntime","parentType":"","signature":"yHeightCharPtsMost","url":"/ddoc/druntime/core/sys/windows/richedit.html#yHeightCharPtsMost"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"lDefaultTab","package":"druntime","parentType":"","signature":"lDefaultTab","url":"/ddoc/druntime/core/sys/windows/richedit.html#lDefaultTab"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_UNKNOWN","package":"druntime","parentType":"","signature":"UID_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_TYPING","package":"druntime","parentType":"","signature":"UID_TYPING","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_TYPING"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_DELETE","package":"druntime","parentType":"","signature":"UID_DELETE","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_DRAGDROP","package":"druntime","parentType":"","signature":"UID_DRAGDROP","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_DRAGDROP"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_CUT","package":"druntime","parentType":"","signature":"UID_CUT","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_CUT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"UID_PASTE","package":"druntime","parentType":"","signature":"UID_PASTE","url":"/ddoc/druntime/core/sys/windows/richedit.html#UID_PASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TO_ADVANCEDTYPOGRAPHY","package":"druntime","parentType":"","signature":"TO_ADVANCEDTYPOGRAPHY","url":"/ddoc/druntime/core/sys/windows/richedit.html#TO_ADVANCEDTYPOGRAPHY"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"TO_SIMPLELINEBREAK","package":"druntime","parentType":"","signature":"TO_SIMPLELINEBREAK","url":"/ddoc/druntime/core/sys/windows/richedit.html#TO_SIMPLELINEBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_DEFAULT","package":"druntime","parentType":"","signature":"GTL_DEFAULT","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_USECRLF","package":"druntime","parentType":"","signature":"GTL_USECRLF","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_USECRLF"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_PRECISE","package":"druntime","parentType":"","signature":"GTL_PRECISE","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_PRECISE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_CLOSE","package":"druntime","parentType":"","signature":"GTL_CLOSE","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_NUMCHARS","package":"druntime","parentType":"","signature":"GTL_NUMCHARS","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_NUMCHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.richedit","name":"GTL_NUMBYTES","package":"druntime","parentType":"","signature":"GTL_NUMBYTES","url":"/ddoc/druntime/core/sys/windows/richedit.html#GTL_NUMBYTES"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.richole","name":"core.sys.windows.richole","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/richole.html"},{"doc":"","kind":"struct","module":"core.sys.windows.richole","name":"REOBJECT","package":"druntime","parentType":"","signature":"REOBJECT","url":"/ddoc/druntime/core/sys/windows/richole.html#REOBJECT"},{"doc":"","kind":"interface","module":"core.sys.windows.richole","name":"IRichEditOle","package":"druntime","parentType":"","signature":"IRichEditOle : IUnknown","url":"/ddoc/druntime/core/sys/windows/richole.html#IRichEditOle"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetClientSite","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT GetClientSite(LPOLECLIENTSITE *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.GetClientSite.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetObjectCount","package":"druntime","parentType":"IRichEditOle","signature":"LONG GetObjectCount()","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.GetObjectCount.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetLinkCount","package":"druntime","parentType":"IRichEditOle","signature":"LONG GetLinkCount()","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.GetLinkCount.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetObject","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT GetObject(LONG,  REOBJECT *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.GetObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"InsertObject","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT InsertObject(REOBJECT *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.InsertObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ConvertObject","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT ConvertObject(LONG,  REFCLSID,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.ConvertObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ActivateAs","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT ActivateAs(REFCLSID,  REFCLSID)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.ActivateAs.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"SetHostNames","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT SetHostNames(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.SetHostNames.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"SetLinkAvailable","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT SetLinkAvailable(LONG,  BOOL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.SetLinkAvailable.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"SetDvaspect","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT SetDvaspect(LONG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.SetDvaspect.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"HandsOffStorage","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT HandsOffStorage(LONG)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.HandsOffStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"SaveCompleted","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT SaveCompleted(LONG,  LPSTORAGE)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.SaveCompleted.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"InPlaceDeactivate","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT InPlaceDeactivate()","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.InPlaceDeactivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ContextSensitiveHelp","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.ContextSensitiveHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetClipboardData","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT GetClipboardData(CHARRANGE *,  DWORD,  LPDATAOBJECT *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.GetClipboardData.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ImportDataObject","package":"druntime","parentType":"IRichEditOle","signature":"HRESULT ImportDataObject(LPDATAOBJECT,  CLIPFORMAT,  HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOle.ImportDataObject.html"},{"doc":"","kind":"alias","module":"core.sys.windows.richole","name":"LPRICHEDITOLE","package":"druntime","parentType":"","signature":"LPRICHEDITOLE = IRichEditOle","url":"/ddoc/druntime/core/sys/windows/richole.html#LPRICHEDITOLE"},{"doc":"","kind":"interface","module":"core.sys.windows.richole","name":"IRichEditOleCallback","package":"druntime","parentType":"","signature":"IRichEditOleCallback : IUnknown","url":"/ddoc/druntime/core/sys/windows/richole.html#IRichEditOleCallback"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetNewStorage","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT GetNewStorage(LPSTORAGE *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.GetNewStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetInPlaceContext","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT GetInPlaceContext(LPOLEINPLACEFRAME *,  LPOLEINPLACEUIWINDOW *,  LPOLEINPLACEFRAMEINFO)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.GetInPlaceContext.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ShowContainerUI","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT ShowContainerUI(BOOL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.ShowContainerUI.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"QueryInsertObject","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT QueryInsertObject(LPCLSID,  LPSTORAGE,  LONG)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.QueryInsertObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"DeleteObject","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT DeleteObject(LPOLEOBJECT)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.DeleteObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"QueryAcceptData","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT QueryAcceptData(LPDATAOBJECT,  CLIPFORMAT *,  DWORD,  BOOL,  HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.QueryAcceptData.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"ContextSensitiveHelp","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.ContextSensitiveHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetClipboardData","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT GetClipboardData(CHARRANGE *,  DWORD,  LPDATAOBJECT *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.GetClipboardData.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetDragDropEffect","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT GetDragDropEffect(BOOL,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.GetDragDropEffect.html"},{"doc":"","kind":"method","module":"core.sys.windows.richole","name":"GetContextMenu","package":"druntime","parentType":"IRichEditOleCallback","signature":"HRESULT GetContextMenu(WORD,  LPOLEOBJECT,  CHARRANGE *,  HMENU *)","url":"/ddoc/druntime/core/sys/windows/richole/IRichEditOleCallback.GetContextMenu.html"},{"doc":"","kind":"alias","module":"core.sys.windows.richole","name":"LPRICHEDITOLECALLBACK","package":"druntime","parentType":"","signature":"LPRICHEDITOLECALLBACK = IRichEditOleCallback","url":"/ddoc/druntime/core/sys/windows/richole.html#LPRICHEDITOLECALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.richole","name":"REO_GETOBJ_NO_INTERFACES","package":"druntime","parentType":"","signature":"ULONG REO_GETOBJ_NO_INTERFACES","url":"/ddoc/druntime/core/sys/windows/richole.html#REO_GETOBJ_NO_INTERFACES"},{"doc":"","kind":"variable","module":"core.sys.windows.richole","name":"IID_IRichEditOle","package":"druntime","parentType":"","signature":"GUID IID_IRichEditOle","url":"/ddoc/druntime/core/sys/windows/richole.html#IID_IRichEditOle"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpc","name":"core.sys.windows.rpc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpc.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpc","name":"I_RpcMapWin32Status","package":"druntime","parentType":"","signature":"int I_RpcMapWin32Status(RPC_STATUS)","url":"/ddoc/druntime/core/sys/windows/rpc/I_RpcMapWin32Status.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rpc","name":"midl_user_allocate","package":"druntime","parentType":"","signature":"midl_user_allocate = MIDL_user_allocate","url":"/ddoc/druntime/core/sys/windows/rpc.html#midl_user_allocate"},{"doc":"","kind":"alias","module":"core.sys.windows.rpc","name":"midl_user_free","package":"druntime","parentType":"","signature":"midl_user_free = MIDL_user_free","url":"/ddoc/druntime/core/sys/windows/rpc.html#midl_user_free"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcdce","name":"core.sys.windows.rpcdce","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcdce.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingFromStringBindingA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingFromStringBindingA(char *,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingFromStringBindingA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingFromStringBindingW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingFromStringBindingW(wchar *,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingFromStringBindingW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingToStringBindingA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingToStringBindingA(RPC_BINDING_HANDLE,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingToStringBindingA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingToStringBindingW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingToStringBindingW(RPC_BINDING_HANDLE,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingToStringBindingW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringBindingComposeA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringBindingComposeA(char *,  char *,  char *,  char *,  char *,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringBindingComposeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringBindingComposeW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringBindingComposeW(wchar *,  wchar *,  wchar *,  wchar *,  wchar *,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringBindingComposeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringBindingParseA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringBindingParseA(char *,  char * *,  char * *,  char * *,  char * *,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringBindingParseA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringBindingParseW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringBindingParseW(wchar *,  wchar * *,  wchar * *,  wchar * *,  wchar * *,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringBindingParseW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringFreeA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringFreeA(char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringFreeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcStringFreeW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcStringFreeW(wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcStringFreeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNetworkIsProtseqValidA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNetworkIsProtseqValidA(char *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNetworkIsProtseqValidA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNetworkIsProtseqValidW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNetworkIsProtseqValidW(wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNetworkIsProtseqValidW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNetworkInqProtseqsA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNetworkInqProtseqsA(RPC_PROTSEQ_VECTORA * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNetworkInqProtseqsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNetworkInqProtseqsW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNetworkInqProtseqsW(RPC_PROTSEQ_VECTORW * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNetworkInqProtseqsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcProtseqVectorFreeA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcProtseqVectorFreeA(RPC_PROTSEQ_VECTORA * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcProtseqVectorFreeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcProtseqVectorFreeW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcProtseqVectorFreeW(RPC_PROTSEQ_VECTORW * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcProtseqVectorFreeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqA(char *,  uint,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqW(wchar *,  uint,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqExA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqExA(char *,  uint  MaxCalls,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqExW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqExW(wchar *,  uint,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqEpA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqEpA(char *,  uint,  char *,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqEpA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqEpExA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqEpExA(char *,  uint,  char *,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqEpExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqEpW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqEpW(wchar *,  uint,  wchar *,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqEpW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqEpExW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqEpExW(wchar *,  uint,  wchar *,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqEpExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqIfA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqIfA(char *,  uint,  RPC_IF_HANDLE,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqIfA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqIfExA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqIfExA(char *,  uint,  RPC_IF_HANDLE,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqIfExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqIfW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqIfW(wchar *,  uint,  RPC_IF_HANDLE,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqIfW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseProtseqIfExW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseProtseqIfExW(wchar *,  uint,  RPC_IF_HANDLE,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseProtseqIfExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqServerPrincNameA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqServerPrincNameA(RPC_BINDING_HANDLE,  uint,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqServerPrincNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqServerPrincNameW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqServerPrincNameW(RPC_BINDING_HANDLE,  uint,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqServerPrincNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerInqDefaultPrincNameA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerInqDefaultPrincNameA(uint,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerInqDefaultPrincNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerInqDefaultPrincNameW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerInqDefaultPrincNameW(uint,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerInqDefaultPrincNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNsBindingInqEntryNameA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingInqEntryNameA(RPC_BINDING_HANDLE,  uint,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNsBindingInqEntryNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcNsBindingInqEntryNameW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingInqEntryNameW(RPC_BINDING_HANDLE,  uint,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcNsBindingInqEntryNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthClientA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthClientA(RPC_BINDING_HANDLE,  RPC_AUTHZ_HANDLE *,  char * *,  uint *,  uint *,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthClientA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthClientW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthClientW(RPC_BINDING_HANDLE,  RPC_AUTHZ_HANDLE *,  wchar * *,  uint *,  uint *,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthClientW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthInfoA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthInfoA(RPC_BINDING_HANDLE,  char * *,  uint *,  uint *,  RPC_AUTH_IDENTITY_HANDLE *,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthInfoW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthInfoW(RPC_BINDING_HANDLE,  wchar * *,  uint *,  uint *,  RPC_AUTH_IDENTITY_HANDLE *,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingSetAuthInfoA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingSetAuthInfoA(RPC_BINDING_HANDLE,  char *,  uint,  uint,  RPC_AUTH_IDENTITY_HANDLE,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingSetAuthInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingSetAuthInfoExA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingSetAuthInfoExA(RPC_BINDING_HANDLE,  char *,  uint,  uint,  RPC_AUTH_IDENTITY_HANDLE,  uint,  RPC_SECURITY_QOS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingSetAuthInfoExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingSetAuthInfoW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingSetAuthInfoW(RPC_BINDING_HANDLE,  wchar *,  uint,  uint,  RPC_AUTH_IDENTITY_HANDLE,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingSetAuthInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingSetAuthInfoExW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingSetAuthInfoExW(RPC_BINDING_HANDLE,  wchar *,  uint,  uint,  RPC_AUTH_IDENTITY_HANDLE,  uint,  RPC_SECURITY_QOS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingSetAuthInfoExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthInfoExA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthInfoExA(RPC_BINDING_HANDLE,  char * *,  uint *,  uint *,  RPC_AUTH_IDENTITY_HANDLE *,  uint *,  uint,  RPC_SECURITY_QOS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthInfoExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqAuthInfoExW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqAuthInfoExW(RPC_BINDING_HANDLE,  wchar * *,  uint *,  uint *,  RPC_AUTH_IDENTITY_HANDLE *,  uint *,  uint,  RPC_SECURITY_QOS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqAuthInfoExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerRegisterAuthInfoA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerRegisterAuthInfoA(char *,  uint,  RPC_AUTH_KEY_RETRIEVAL_FN,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerRegisterAuthInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerRegisterAuthInfoW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerRegisterAuthInfoW(wchar *,  uint,  RPC_AUTH_KEY_RETRIEVAL_FN,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerRegisterAuthInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidToStringA","package":"druntime","parentType":"","signature":"RPC_STATUS UuidToStringA(UUID *,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidToStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidFromStringA","package":"druntime","parentType":"","signature":"RPC_STATUS UuidFromStringA(char *,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidFromStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidToStringW","package":"druntime","parentType":"","signature":"RPC_STATUS UuidToStringW(UUID *,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidToStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidFromStringW","package":"druntime","parentType":"","signature":"RPC_STATUS UuidFromStringW(wchar *,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidFromStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpRegisterNoReplaceA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpRegisterNoReplaceA(RPC_IF_HANDLE,  RPC_BINDING_VECTOR *,  UUID_VECTOR *,  char *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpRegisterNoReplaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpRegisterNoReplaceW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpRegisterNoReplaceW(RPC_IF_HANDLE,  RPC_BINDING_VECTOR *,  UUID_VECTOR *,  wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpRegisterNoReplaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpRegisterA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpRegisterA(RPC_IF_HANDLE,  RPC_BINDING_VECTOR *,  UUID_VECTOR *,  char *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpRegisterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpRegisterW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpRegisterW(RPC_IF_HANDLE,  RPC_BINDING_VECTOR *,  UUID_VECTOR *,  wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpRegisterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"DceErrorInqTextA","package":"druntime","parentType":"","signature":"RPC_STATUS DceErrorInqTextA(RPC_STATUS,  char *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/DceErrorInqTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"DceErrorInqTextW","package":"druntime","parentType":"","signature":"RPC_STATUS DceErrorInqTextW(RPC_STATUS,  wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/DceErrorInqTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEpEltInqNextA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqNextA(RPC_EP_INQ_HANDLE,  RPC_IF_ID *,  RPC_BINDING_HANDLE *,  UUID *,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEpEltInqNextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEpEltInqNextW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqNextW(RPC_EP_INQ_HANDLE,  RPC_IF_ID *,  RPC_BINDING_HANDLE *,  UUID *,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEpEltInqNextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcImpersonateClient","package":"druntime","parentType":"","signature":"RPC_STATUS RpcImpersonateClient(RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcImpersonateClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcRevertToSelf","package":"druntime","parentType":"","signature":"RPC_STATUS RpcRevertToSelf()","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcRevertToSelf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingCopy","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingCopy(RPC_BINDING_HANDLE,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingFree(RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingInqObject","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingInqObject(RPC_BINDING_HANDLE,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingInqObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingReset","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingReset(RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingReset.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingSetObject","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingSetObject(RPC_BINDING_HANDLE,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingSetObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqDefaultProtectLevel","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqDefaultProtectLevel(uint,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqDefaultProtectLevel.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingVectorFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingVectorFree(RPC_BINDING_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingVectorFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcIfInqId","package":"druntime","parentType":"","signature":"RPC_STATUS RpcIfInqId(RPC_IF_HANDLE,  RPC_IF_ID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcIfInqId.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqComTimeout","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqComTimeout(RPC_BINDING_HANDLE,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqComTimeout.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtSetComTimeout","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetComTimeout(RPC_BINDING_HANDLE,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtSetComTimeout.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtSetCancelTimeout","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetCancelTimeout(int  Timeout)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtSetCancelTimeout.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcObjectInqType","package":"druntime","parentType":"","signature":"RPC_STATUS RpcObjectInqType(UUID *,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcObjectInqType.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcObjectSetInqFn","package":"druntime","parentType":"","signature":"RPC_STATUS RpcObjectSetInqFn(RPC_OBJECT_INQ_FN *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcObjectSetInqFn.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcObjectSetType","package":"druntime","parentType":"","signature":"RPC_STATUS RpcObjectSetType(UUID *,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcObjectSetType.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcProtseqVectorFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcProtseqVectorFree(RPC_PROTSEQ_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcProtseqVectorFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerInqIf","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerInqIf(RPC_IF_HANDLE,  UUID *,  RPC_MGR_EPV * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerInqIf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerListen","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerListen(uint,  uint,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerListen.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerRegisterIf","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerRegisterIf(RPC_IF_HANDLE,  UUID *,  RPC_MGR_EPV *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerRegisterIf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerRegisterIfEx","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerRegisterIfEx(RPC_IF_HANDLE,  UUID *,  RPC_MGR_EPV *,  uint,  uint,  RPC_IF_CALLBACK_FN *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerRegisterIfEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerRegisterIf2","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerRegisterIf2(RPC_IF_HANDLE,  UUID *,  RPC_MGR_EPV *,  uint,  uint,  uint,  RPC_IF_CALLBACK_FN *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerRegisterIf2.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUnregisterIf","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUnregisterIf(RPC_IF_HANDLE,  UUID *,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUnregisterIf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseAllProtseqs","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseAllProtseqs(uint,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseAllProtseqs.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseAllProtseqsEx","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseAllProtseqsEx(uint,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseAllProtseqsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseAllProtseqsIf","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseAllProtseqsIf(uint,  RPC_IF_HANDLE,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseAllProtseqsIf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcServerUseAllProtseqsIfEx","package":"druntime","parentType":"","signature":"RPC_STATUS RpcServerUseAllProtseqsIfEx(uint,  RPC_IF_HANDLE,  void *,  PRPC_POLICY)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcServerUseAllProtseqsIfEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtStatsVectorFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtStatsVectorFree(RPC_STATS_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtStatsVectorFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqStats","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqStats(RPC_BINDING_HANDLE,  RPC_STATS_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqStats.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtIsServerListening","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtIsServerListening(RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtIsServerListening.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtStopServerListening","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtStopServerListening(RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtStopServerListening.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtWaitServerListen","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtWaitServerListen()","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtWaitServerListen.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtSetServerStackSize","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetServerStackSize(uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtSetServerStackSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcSsDontSerializeContext","package":"druntime","parentType":"","signature":"void RpcSsDontSerializeContext()","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcSsDontSerializeContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEnableIdleCleanup","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEnableIdleCleanup()","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEnableIdleCleanup.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqIfIds","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqIfIds(RPC_BINDING_HANDLE,  RPC_IF_ID_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqIfIds.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcIfIdVectorFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcIfIdVectorFree(RPC_IF_ID_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcIfIdVectorFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpResolveBinding","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpResolveBinding(RPC_BINDING_HANDLE,  RPC_IF_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpResolveBinding.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcBindingServerFromClient","package":"druntime","parentType":"","signature":"RPC_STATUS RpcBindingServerFromClient(RPC_BINDING_HANDLE,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcBindingServerFromClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcRaiseException","package":"druntime","parentType":"","signature":"void RpcRaiseException(RPC_STATUS)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcRaiseException.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcTestCancel","package":"druntime","parentType":"","signature":"RPC_STATUS RpcTestCancel()","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcTestCancel.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcCancelThread","package":"druntime","parentType":"","signature":"RPC_STATUS RpcCancelThread(void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcCancelThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidCreate","package":"druntime","parentType":"","signature":"RPC_STATUS UuidCreate(UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidCompare","package":"druntime","parentType":"","signature":"int UuidCompare(UUID *,  UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidCompare.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidCreateNil","package":"druntime","parentType":"","signature":"RPC_STATUS UuidCreateNil(UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidCreateNil.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidEqual","package":"druntime","parentType":"","signature":"int UuidEqual(UUID *,  UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidEqual.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidHash","package":"druntime","parentType":"","signature":"ushort UuidHash(UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidIsNil","package":"druntime","parentType":"","signature":"int UuidIsNil(UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidIsNil.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcEpUnregister","package":"druntime","parentType":"","signature":"RPC_STATUS RpcEpUnregister(RPC_IF_HANDLE,  RPC_BINDING_VECTOR *,  UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcEpUnregister.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEpEltInqBegin","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE,  uint,  RPC_IF_ID *,  uint,  UUID *,  RPC_EP_INQ_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEpEltInqBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEpEltInqDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqDone(RPC_EP_INQ_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEpEltInqDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtEpUnregister","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpUnregister(RPC_BINDING_HANDLE,  RPC_IF_ID *,  RPC_BINDING_HANDLE,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtEpUnregister.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtSetAuthorizationFn","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetAuthorizationFn(RPC_MGMT_AUTHORIZATION_FN)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtSetAuthorizationFn.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtInqParameter","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtInqParameter(uint,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtInqParameter.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtSetParameter","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetParameter(uint,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtSetParameter.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtBindingInqParameter","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtBindingInqParameter(RPC_BINDING_HANDLE,  uint,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtBindingInqParameter.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"RpcMgmtBindingSetParameter","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtBindingSetParameter(RPC_BINDING_HANDLE,  uint,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdce/RpcMgmtBindingSetParameter.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce","name":"UuidCreateSequential","package":"druntime","parentType":"","signature":"RPC_STATUS UuidCreateSequential(UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce/UuidCreateSequential.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"uuid_t","package":"druntime","parentType":"","signature":"uuid_t = UUID","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#uuid_t"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"uuid_vector_t","package":"druntime","parentType":"","signature":"uuid_vector_t = UUID_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#uuid_vector_t"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_MGR_EPV","package":"druntime","parentType":"","signature":"RPC_MGR_EPV = void","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_MGR_EPV"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_BINDING_HANDLE","package":"druntime","parentType":"","signature":"RPC_BINDING_HANDLE = I_RPC_HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_BINDING_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"handle_t","package":"druntime","parentType":"","signature":"handle_t = RPC_BINDING_HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#handle_t"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_BINDING_VECTOR","package":"druntime","parentType":"","signature":"RPC_BINDING_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_BINDING_VECTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"rpc_binding_handle_t","package":"druntime","parentType":"","signature":"rpc_binding_handle_t = RPC_BINDING_HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#rpc_binding_handle_t"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"rpc_binding_vector_t","package":"druntime","parentType":"","signature":"rpc_binding_vector_t = RPC_BINDING_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#rpc_binding_vector_t"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"UUID_VECTOR","package":"druntime","parentType":"","signature":"UUID_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#UUID_VECTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_IF_HANDLE","package":"druntime","parentType":"","signature":"RPC_IF_HANDLE = void *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_IF_ID","package":"druntime","parentType":"","signature":"RPC_IF_ID","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_ID"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_POLICY","package":"druntime","parentType":"","signature":"RPC_POLICY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"PRPC_POLICY","package":"druntime","parentType":"","signature":"PRPC_POLICY = RPC_POLICY *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#PRPC_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_OBJECT_INQ_FN","package":"druntime","parentType":"","signature":"RPC_OBJECT_INQ_FN = void  function(UUID *,  UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_OBJECT_INQ_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_IF_CALLBACK_FN","package":"druntime","parentType":"","signature":"RPC_IF_CALLBACK_FN = RPC_STATUS function(RPC_IF_HANDLE,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_CALLBACK_FN"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_STATS_VECTOR","package":"druntime","parentType":"","signature":"RPC_STATS_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_STATS_VECTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_IF_ID_VECTOR","package":"druntime","parentType":"","signature":"RPC_IF_ID_VECTOR","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_ID_VECTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_AUTH_IDENTITY_HANDLE","package":"druntime","parentType":"","signature":"RPC_AUTH_IDENTITY_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_AUTH_IDENTITY_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_AUTHZ_HANDLE","package":"druntime","parentType":"","signature":"RPC_AUTHZ_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_AUTHZ_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_SECURITY_QOS","package":"druntime","parentType":"","signature":"RPC_SECURITY_QOS","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_SECURITY_QOS"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"PRPC_SECURITY_QOS","package":"druntime","parentType":"","signature":"PRPC_SECURITY_QOS = RPC_SECURITY_QOS *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#PRPC_SECURITY_QOS"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"SEC_WINNT_AUTH_IDENTITY_W","package":"druntime","parentType":"","signature":"SEC_WINNT_AUTH_IDENTITY_W","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#SEC_WINNT_AUTH_IDENTITY_W"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"PSEC_WINNT_AUTH_IDENTITY_W","package":"druntime","parentType":"","signature":"PSEC_WINNT_AUTH_IDENTITY_W = SEC_WINNT_AUTH_IDENTITY_W *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#PSEC_WINNT_AUTH_IDENTITY_W"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"SEC_WINNT_AUTH_IDENTITY_A","package":"druntime","parentType":"","signature":"SEC_WINNT_AUTH_IDENTITY_A","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#SEC_WINNT_AUTH_IDENTITY_A"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"PSEC_WINNT_AUTH_IDENTITY_A","package":"druntime","parentType":"","signature":"PSEC_WINNT_AUTH_IDENTITY_A = SEC_WINNT_AUTH_IDENTITY_A *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#PSEC_WINNT_AUTH_IDENTITY_A"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_CLIENT_INFORMATION1","package":"druntime","parentType":"","signature":"RPC_CLIENT_INFORMATION1","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_CLIENT_INFORMATION1"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"PRPC_CLIENT_INFORMATION1","package":"druntime","parentType":"","signature":"PRPC_CLIENT_INFORMATION1 = RPC_CLIENT_INFORMATION1 *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#PRPC_CLIENT_INFORMATION1"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_EP_INQ_HANDLE","package":"druntime","parentType":"","signature":"RPC_EP_INQ_HANDLE = I_RPC_HANDLE *","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_EP_INQ_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_MGMT_AUTHORIZATION_FN","package":"druntime","parentType":"","signature":"RPC_MGMT_AUTHORIZATION_FN = int  function(RPC_BINDING_HANDLE,  uint,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_MGMT_AUTHORIZATION_FN"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_PROTSEQ_VECTORA","package":"druntime","parentType":"","signature":"RPC_PROTSEQ_VECTORA","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_PROTSEQ_VECTORA"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdce","name":"RPC_PROTSEQ_VECTORW","package":"druntime","parentType":"","signature":"RPC_PROTSEQ_VECTORW","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_PROTSEQ_VECTORW"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdce","name":"RPC_AUTH_KEY_RETRIEVAL_FN","package":"druntime","parentType":"","signature":"RPC_AUTH_KEY_RETRIEVAL_FN = void  function(void *,  wchar *,  uint,  void * *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_AUTH_KEY_RETRIEVAL_FN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_CANCEL_INFINITE_TIMEOUT","package":"druntime","parentType":"","signature":"RPC_C_CANCEL_INFINITE_TIMEOUT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_CANCEL_INFINITE_TIMEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_LISTEN_MAX_CALLS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTSEQ_MAX_REQS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_BIND_TO_ALL_NICS","package":"druntime","parentType":"","signature":"RPC_C_BIND_TO_ALL_NICS","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_BIND_TO_ALL_NICS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_USE_INTERNET_PORT","package":"druntime","parentType":"","signature":"RPC_C_USE_INTERNET_PORT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_USE_INTERNET_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_USE_INTRANET_PORT","package":"druntime","parentType":"","signature":"RPC_C_USE_INTRANET_PORT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_USE_INTRANET_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_IF_AUTOLISTEN","package":"druntime","parentType":"","signature":"RPC_IF_AUTOLISTEN","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_AUTOLISTEN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_IF_OLE","package":"druntime","parentType":"","signature":"RPC_IF_OLE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_IF_OLE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_MGMT_INQ_IF_IDS","package":"druntime","parentType":"","signature":"RPC_C_MGMT_INQ_IF_IDS","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_MGMT_INQ_IF_IDS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_MGMT_INQ_PRINC_NAME","package":"druntime","parentType":"","signature":"RPC_C_MGMT_INQ_PRINC_NAME","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_MGMT_INQ_PRINC_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_MGMT_INQ_STATS","package":"druntime","parentType":"","signature":"RPC_C_MGMT_INQ_STATS","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_MGMT_INQ_STATS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_MGMT_IS_SERVER_LISTEN","package":"druntime","parentType":"","signature":"RPC_C_MGMT_IS_SERVER_LISTEN","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_MGMT_IS_SERVER_LISTEN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_MGMT_STOP_SERVER_LISTEN","package":"druntime","parentType":"","signature":"RPC_C_MGMT_STOP_SERVER_LISTEN","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_MGMT_STOP_SERVER_LISTEN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"DCE_C_ERROR_STRING_LEN","package":"druntime","parentType":"","signature":"DCE_C_ERROR_STRING_LEN","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#DCE_C_ERROR_STRING_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PARM_MAX_PACKET_LENGTH","package":"druntime","parentType":"","signature":"RPC_C_PARM_MAX_PACKET_LENGTH","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PARM_MAX_PACKET_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PARM_BUFFER_LENGTH","package":"druntime","parentType":"","signature":"RPC_C_PARM_BUFFER_LENGTH","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PARM_BUFFER_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_NONE","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_NONE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_CONNECT","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_CONNECT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_CONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_CALL","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_CALL","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_CALL"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_PKT","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_PKT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_PKT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_PKT_INTEGRITY"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_LEVEL_PKT_PRIVACY"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_IMP_LEVEL_ANONYMOUS","package":"druntime","parentType":"","signature":"RPC_C_IMP_LEVEL_ANONYMOUS","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_IMP_LEVEL_ANONYMOUS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_IMP_LEVEL_IDENTIFY","package":"druntime","parentType":"","signature":"RPC_C_IMP_LEVEL_IDENTIFY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_IMP_LEVEL_IDENTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_IMP_LEVEL_IMPERSONATE","package":"druntime","parentType":"","signature":"RPC_C_IMP_LEVEL_IMPERSONATE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_IMP_LEVEL_IMPERSONATE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_IMP_LEVEL_DELEGATE","package":"druntime","parentType":"","signature":"RPC_C_IMP_LEVEL_DELEGATE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_IMP_LEVEL_DELEGATE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_QOS_IDENTITY_STATIC","package":"druntime","parentType":"","signature":"RPC_C_QOS_IDENTITY_STATIC","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_QOS_IDENTITY_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_QOS_IDENTITY_DYNAMIC","package":"druntime","parentType":"","signature":"RPC_C_QOS_IDENTITY_DYNAMIC","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_QOS_IDENTITY_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_QOS_CAPABILITIES_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_QOS_CAPABILITIES_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_QOS_CAPABILITIES_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","package":"druntime","parentType":"","signature":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_NONE","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_NONE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_CONNECT","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_CONNECT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_CONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_CALL","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_CALL","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_CALL"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_PKT","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_PKT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_PKT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_PKT_INTEGRITY","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_PKT_INTEGRITY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_PKT_INTEGRITY"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_PROTECT_LEVEL_PKT_PRIVACY","package":"druntime","parentType":"","signature":"RPC_C_PROTECT_LEVEL_PKT_PRIVACY","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_PROTECT_LEVEL_PKT_PRIVACY"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_NONE","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_NONE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_DCE_PRIVATE","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_DCE_PRIVATE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_DCE_PRIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_DCE_PUBLIC","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_DCE_PUBLIC","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_DCE_PUBLIC"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_DEC_PUBLIC","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_DEC_PUBLIC","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_DEC_PUBLIC"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_WINNT","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_WINNT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_WINNT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHN_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_AUTHN_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHN_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"SEC_WINNT_AUTH_IDENTITY_ANSI","package":"druntime","parentType":"","signature":"SEC_WINNT_AUTH_IDENTITY_ANSI","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#SEC_WINNT_AUTH_IDENTITY_ANSI"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"SEC_WINNT_AUTH_IDENTITY_UNICODE","package":"druntime","parentType":"","signature":"SEC_WINNT_AUTH_IDENTITY_UNICODE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#SEC_WINNT_AUTH_IDENTITY_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHZ_NONE","package":"druntime","parentType":"","signature":"RPC_C_AUTHZ_NONE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHZ_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHZ_NAME","package":"druntime","parentType":"","signature":"RPC_C_AUTHZ_NAME","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHZ_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHZ_DCE","package":"druntime","parentType":"","signature":"RPC_C_AUTHZ_DCE","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHZ_DCE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce","name":"RPC_C_AUTHZ_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_AUTHZ_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdce.html#RPC_C_AUTHZ_DEFAULT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcdce2","name":"core.sys.windows.rpcdce2","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcdce2.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"UuidCompare","package":"druntime","parentType":"","signature":"int UuidCompare(UUID *,  UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/UuidCompare.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"UuidCreateNil","package":"druntime","parentType":"","signature":"RPC_STATUS UuidCreateNil(UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/UuidCreateNil.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"UuidEqual","package":"druntime","parentType":"","signature":"int UuidEqual(UUID *,  UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/UuidEqual.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"UuidHash","package":"druntime","parentType":"","signature":"ushort UuidHash(UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/UuidHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"UuidIsNil","package":"druntime","parentType":"","signature":"int UuidIsNil(UUID *,  RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/UuidIsNil.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtEpEltInqBegin","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE,  uint,  RPC_IF_ID *,\n       uint,  UUID *,  RPC_EP_INQ_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtEpEltInqBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtEpEltInqDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqDone(RPC_EP_INQ_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtEpEltInqDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtEpUnregister","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpUnregister(RPC_BINDING_HANDLE,  RPC_IF_ID *,\n       RPC_BINDING_HANDLE,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtEpUnregister.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtSetAuthorizationFn","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtSetAuthorizationFn(RPC_MGMT_AUTHORIZATION_FN)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtSetAuthorizationFn.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"DceErrorInqTextA","package":"druntime","parentType":"","signature":"RPC_STATUS DceErrorInqTextA(RPC_STATUS,  char *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/DceErrorInqTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"DceErrorInqTextW","package":"druntime","parentType":"","signature":"RPC_STATUS DceErrorInqTextW(RPC_STATUS,  wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/DceErrorInqTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtEpEltInqNextA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqNextA(RPC_EP_INQ_HANDLE,  RPC_IF_ID *,\n       RPC_BINDING_HANDLE *,  UUID *,  char * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtEpEltInqNextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdce2","name":"RpcMgmtEpEltInqNextW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcMgmtEpEltInqNextW(RPC_EP_INQ_HANDLE,  RPC_IF_ID *,\n       RPC_BINDING_HANDLE *,  UUID *,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdce2/RpcMgmtEpEltInqNextW.html"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdce2","name":"DCE_C_ERROR_STRING_LEN","package":"druntime","parentType":"","signature":"size_t DCE_C_ERROR_STRING_LEN","url":"/ddoc/druntime/core/sys/windows/rpcdce2.html#DCE_C_ERROR_STRING_LEN"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcdcep","name":"core.sys.windows.rpcdcep","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcGetBuffer","package":"druntime","parentType":"","signature":"int I_RpcGetBuffer(RPC_MESSAGE *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcGetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcSendReceive","package":"druntime","parentType":"","signature":"int I_RpcSendReceive(RPC_MESSAGE *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcSendReceive.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcSend","package":"druntime","parentType":"","signature":"int I_RpcSend(RPC_MESSAGE *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcSend.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcFreeBuffer","package":"druntime","parentType":"","signature":"int I_RpcFreeBuffer(RPC_MESSAGE *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcFreeBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcRequestMutex","package":"druntime","parentType":"","signature":"void I_RpcRequestMutex(I_RPC_MUTEX *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcRequestMutex.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcClearMutex","package":"druntime","parentType":"","signature":"void I_RpcClearMutex(I_RPC_MUTEX)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcClearMutex.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcDeleteMutex","package":"druntime","parentType":"","signature":"void I_RpcDeleteMutex(I_RPC_MUTEX)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcDeleteMutex.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcAllocate","package":"druntime","parentType":"","signature":"void * I_RpcAllocate(uint)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcFree","package":"druntime","parentType":"","signature":"void I_RpcFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcPauseExecution","package":"druntime","parentType":"","signature":"void I_RpcPauseExecution(uint)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcPauseExecution.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcMonitorAssociation","package":"druntime","parentType":"","signature":"int I_RpcMonitorAssociation(HANDLE,  PRPC_RUNDOWN,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcMonitorAssociation.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcStopMonitorAssociation","package":"druntime","parentType":"","signature":"int I_RpcStopMonitorAssociation(HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcStopMonitorAssociation.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcGetCurrentCallHandle","package":"druntime","parentType":"","signature":"HANDLE I_RpcGetCurrentCallHandle()","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcGetCurrentCallHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcGetAssociationContext","package":"druntime","parentType":"","signature":"int I_RpcGetAssociationContext(void * *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcGetAssociationContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcSetAssociationContext","package":"druntime","parentType":"","signature":"int I_RpcSetAssociationContext(void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcSetAssociationContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcNsBindingSetEntryName","package":"druntime","parentType":"","signature":"int I_RpcNsBindingSetEntryName(HANDLE,  uint,  wchar *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcNsBindingSetEntryName.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcBindingInqDynamicEndpoint","package":"druntime","parentType":"","signature":"int I_RpcBindingInqDynamicEndpoint(HANDLE,  wchar * *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcBindingInqDynamicEndpoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcBindingInqTransportType","package":"druntime","parentType":"","signature":"int I_RpcBindingInqTransportType(HANDLE,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcBindingInqTransportType.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcIfInqTransferSyntaxes","package":"druntime","parentType":"","signature":"int I_RpcIfInqTransferSyntaxes(HANDLE,  RPC_TRANSFER_SYNTAX *,  uint,\n              uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcIfInqTransferSyntaxes.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_UuidCreate","package":"druntime","parentType":"","signature":"int I_UuidCreate(GUID *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_UuidCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcBindingCopy","package":"druntime","parentType":"","signature":"int I_RpcBindingCopy(HANDLE,  HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcBindingCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcBindingIsClientLocal","package":"druntime","parentType":"","signature":"int I_RpcBindingIsClientLocal(HANDLE,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcBindingIsClientLocal.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcSsDontSerializeContext","package":"druntime","parentType":"","signature":"void I_RpcSsDontSerializeContext()","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcSsDontSerializeContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcServerRegisterForwardFunction","package":"druntime","parentType":"","signature":"int I_RpcServerRegisterForwardFunction(int  function (GUID *,\n              RPC_VERSION *,  GUID *,  ubyte *,  void * *))","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcServerRegisterForwardFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcConnectionInqSockBuffSize","package":"druntime","parentType":"","signature":"int I_RpcConnectionInqSockBuffSize(uint *,  uint *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcConnectionInqSockBuffSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcConnectionSetSockBuffSize","package":"druntime","parentType":"","signature":"int I_RpcConnectionSetSockBuffSize(uint,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcConnectionSetSockBuffSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcBindingSetAsync","package":"druntime","parentType":"","signature":"int I_RpcBindingSetAsync(HANDLE,  RPC_BLOCKING_FN)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcBindingSetAsync.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcAsyncSendReceive","package":"druntime","parentType":"","signature":"int I_RpcAsyncSendReceive(RPC_MESSAGE *,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcAsyncSendReceive.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcGetThreadWindowHandle","package":"druntime","parentType":"","signature":"int I_RpcGetThreadWindowHandle(void * *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcGetThreadWindowHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcServerThreadPauseListening","package":"druntime","parentType":"","signature":"int I_RpcServerThreadPauseListening()","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcServerThreadPauseListening.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcServerThreadContinueListening","package":"druntime","parentType":"","signature":"int I_RpcServerThreadContinueListening()","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcServerThreadContinueListening.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcServerUnregisterEndpointA","package":"druntime","parentType":"","signature":"int I_RpcServerUnregisterEndpointA(ubyte *,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcServerUnregisterEndpointA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcdcep","name":"I_RpcServerUnregisterEndpointW","package":"druntime","parentType":"","signature":"int I_RpcServerUnregisterEndpointW(ushort *,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep/I_RpcServerUnregisterEndpointW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"I_RPC_HANDLE","package":"druntime","parentType":"","signature":"I_RPC_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#I_RPC_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"RPC_STATUS","package":"druntime","parentType":"","signature":"RPC_STATUS = long","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_VERSION","package":"druntime","parentType":"","signature":"RPC_VERSION","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_VERSION"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_SYNTAX_IDENTIFIER","package":"druntime","parentType":"","signature":"RPC_SYNTAX_IDENTIFIER","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_SYNTAX_IDENTIFIER"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_SYNTAX_IDENTIFIER","package":"druntime","parentType":"","signature":"PRPC_SYNTAX_IDENTIFIER = RPC_SYNTAX_IDENTIFIER *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_SYNTAX_IDENTIFIER"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_MESSAGE","package":"druntime","parentType":"","signature":"RPC_MESSAGE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_MESSAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_MESSAGE","package":"druntime","parentType":"","signature":"PRPC_MESSAGE = RPC_MESSAGE *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_MESSAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"RPC_DISPATCH_FUNCTION","package":"druntime","parentType":"","signature":"RPC_DISPATCH_FUNCTION = void  function (PRPC_MESSAGE Message)","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_DISPATCH_FUNCTION"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_DISPATCH_TABLE","package":"druntime","parentType":"","signature":"RPC_DISPATCH_TABLE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_DISPATCH_TABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_DISPATCH_TABLE","package":"druntime","parentType":"","signature":"PRPC_DISPATCH_TABLE = RPC_DISPATCH_TABLE *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_DISPATCH_TABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_PROTSEQ_ENDPOINT","package":"druntime","parentType":"","signature":"RPC_PROTSEQ_ENDPOINT","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_PROTSEQ_ENDPOINT"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_PROTSEQ_ENDPOINT","package":"druntime","parentType":"","signature":"PRPC_PROTSEQ_ENDPOINT = RPC_PROTSEQ_ENDPOINT *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_PROTSEQ_ENDPOINT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_SERVER_INTERFACE","package":"druntime","parentType":"","signature":"RPC_SERVER_INTERFACE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_SERVER_INTERFACE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_SERVER_INTERFACE","package":"druntime","parentType":"","signature":"PRPC_SERVER_INTERFACE = RPC_SERVER_INTERFACE *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_SERVER_INTERFACE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_CLIENT_INTERFACE","package":"druntime","parentType":"","signature":"RPC_CLIENT_INTERFACE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_CLIENT_INTERFACE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_CLIENT_INTERFACE","package":"druntime","parentType":"","signature":"PRPC_CLIENT_INTERFACE = RPC_CLIENT_INTERFACE *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_CLIENT_INTERFACE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"I_RPC_MUTEX","package":"druntime","parentType":"","signature":"I_RPC_MUTEX = void *","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#I_RPC_MUTEX"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcdcep","name":"RPC_TRANSFER_SYNTAX","package":"druntime","parentType":"","signature":"RPC_TRANSFER_SYNTAX","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_TRANSFER_SYNTAX"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"RPC_BLOCKING_FN","package":"druntime","parentType":"","signature":"RPC_BLOCKING_FN = RPC_STATUS function(void *,  void *,  void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_BLOCKING_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcdcep","name":"PRPC_RUNDOWN","package":"druntime","parentType":"","signature":"PRPC_RUNDOWN = void  function(void *)","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#PRPC_RUNDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPC_NCA_FLAGS_DEFAULT","package":"druntime","parentType":"","signature":"RPC_NCA_FLAGS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_NCA_FLAGS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPC_NCA_FLAGS_IDEMPOTENT","package":"druntime","parentType":"","signature":"RPC_NCA_FLAGS_IDEMPOTENT","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_NCA_FLAGS_IDEMPOTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPC_NCA_FLAGS_BROADCAST","package":"druntime","parentType":"","signature":"RPC_NCA_FLAGS_BROADCAST","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_NCA_FLAGS_BROADCAST"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPC_NCA_FLAGS_MAYBE","package":"druntime","parentType":"","signature":"RPC_NCA_FLAGS_MAYBE","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_NCA_FLAGS_MAYBE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPCFLG_ASYNCHRONOUS","package":"druntime","parentType":"","signature":"RPCFLG_ASYNCHRONOUS","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPCFLG_ASYNCHRONOUS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPCFLG_INPUT_SYNCHRONOUS","package":"druntime","parentType":"","signature":"RPCFLG_INPUT_SYNCHRONOUS","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPCFLG_INPUT_SYNCHRONOUS"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"RPC_FLAGS_VALID_BIT","package":"druntime","parentType":"","signature":"RPC_FLAGS_VALID_BIT","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#RPC_FLAGS_VALID_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"TRANSPORT_TYPE_CN","package":"druntime","parentType":"","signature":"TRANSPORT_TYPE_CN","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#TRANSPORT_TYPE_CN"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"TRANSPORT_TYPE_DG","package":"druntime","parentType":"","signature":"TRANSPORT_TYPE_DG","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#TRANSPORT_TYPE_DG"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"TRANSPORT_TYPE_LPC","package":"druntime","parentType":"","signature":"TRANSPORT_TYPE_LPC","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#TRANSPORT_TYPE_LPC"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcdcep","name":"TRANSPORT_TYPE_WMSG","package":"druntime","parentType":"","signature":"TRANSPORT_TYPE_WMSG","url":"/ddoc/druntime/core/sys/windows/rpcdcep.html#TRANSPORT_TYPE_WMSG"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcndr","name":"core.sys.windows.rpcndr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRCContextBinding","package":"druntime","parentType":"","signature":"RPC_BINDING_HANDLE NDRCContextBinding(NDR_CCONTEXT)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRCContextBinding.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRCContextMarshall","package":"druntime","parentType":"","signature":"void NDRCContextMarshall(NDR_CCONTEXT, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRCContextMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRCContextUnmarshall","package":"druntime","parentType":"","signature":"void NDRCContextUnmarshall(NDR_CCONTEXT *, RPC_BINDING_HANDLE, void *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRCContextUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRSContextMarshall","package":"druntime","parentType":"","signature":"void NDRSContextMarshall(NDR_SCONTEXT, void *, NDR_RUNDOWN)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRSContextMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRSContextUnmarshall","package":"druntime","parentType":"","signature":"NDR_SCONTEXT NDRSContextUnmarshall(void * pBuff, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRSContextUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsDestroyClientContext","package":"druntime","parentType":"","signature":"void RpcSsDestroyClientContext(void * *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsDestroyClientContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NDRcopy","package":"druntime","parentType":"","signature":"void NDRcopy(void *, void *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NDRcopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"MIDL_wchar_strlen","package":"druntime","parentType":"","signature":"uint MIDL_wchar_strlen(wchar  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/MIDL_wchar_strlen.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"MIDL_wchar_strcpy","package":"druntime","parentType":"","signature":"void MIDL_wchar_strcpy(void *, wchar  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/MIDL_wchar_strcpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"char_from_ndr","package":"druntime","parentType":"","signature":"void char_from_ndr(PRPC_MESSAGE, ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/char_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"char_array_from_ndr","package":"druntime","parentType":"","signature":"void char_array_from_ndr(PRPC_MESSAGE, uint, uint, ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/char_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"short_from_ndr","package":"druntime","parentType":"","signature":"void short_from_ndr(PRPC_MESSAGE, ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/short_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"short_array_from_ndr","package":"druntime","parentType":"","signature":"void short_array_from_ndr(PRPC_MESSAGE, uint, uint, ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/short_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"short_from_ndr_temp","package":"druntime","parentType":"","signature":"void short_from_ndr_temp(ubyte * *, ushort *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/short_from_ndr_temp.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"int_from_ndr","package":"druntime","parentType":"","signature":"void int_from_ndr(PRPC_MESSAGE, uint *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/int_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"int_array_from_ndr","package":"druntime","parentType":"","signature":"void int_array_from_ndr(PRPC_MESSAGE, uint, uint, uint *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/int_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"int_from_ndr_temp","package":"druntime","parentType":"","signature":"void int_from_ndr_temp(ubyte * *, uint *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/int_from_ndr_temp.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"enum_from_ndr","package":"druntime","parentType":"","signature":"void enum_from_ndr(PRPC_MESSAGE, uint *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/enum_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"float_from_ndr","package":"druntime","parentType":"","signature":"void float_from_ndr(PRPC_MESSAGE, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/float_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"float_array_from_ndr","package":"druntime","parentType":"","signature":"void float_array_from_ndr(PRPC_MESSAGE, uint, uint, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/float_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"double_from_ndr","package":"druntime","parentType":"","signature":"void double_from_ndr(PRPC_MESSAGE, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/double_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"double_array_from_ndr","package":"druntime","parentType":"","signature":"void double_array_from_ndr(PRPC_MESSAGE, uint, uint, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/double_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"hyper_from_ndr","package":"druntime","parentType":"","signature":"void hyper_from_ndr(PRPC_MESSAGE, hyper *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/hyper_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"hyper_array_from_ndr","package":"druntime","parentType":"","signature":"void hyper_array_from_ndr(PRPC_MESSAGE, uint, uint, hyper *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/hyper_array_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"hyper_from_ndr_temp","package":"druntime","parentType":"","signature":"void hyper_from_ndr_temp(ubyte * *, hyper *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/hyper_from_ndr_temp.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"data_from_ndr","package":"druntime","parentType":"","signature":"void data_from_ndr(PRPC_MESSAGE, void *, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/data_from_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"data_into_ndr","package":"druntime","parentType":"","signature":"void data_into_ndr(void *, PRPC_MESSAGE, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/data_into_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"tree_into_ndr","package":"druntime","parentType":"","signature":"void tree_into_ndr(void *, PRPC_MESSAGE, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/tree_into_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"data_size_ndr","package":"druntime","parentType":"","signature":"void data_size_ndr(void *, PRPC_MESSAGE, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/data_size_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"tree_size_ndr","package":"druntime","parentType":"","signature":"void tree_size_ndr(void *, PRPC_MESSAGE, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/tree_size_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"tree_peek_ndr","package":"druntime","parentType":"","signature":"void tree_peek_ndr(PRPC_MESSAGE, ubyte * *, char *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/tree_peek_ndr.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"midl_allocate","package":"druntime","parentType":"","signature":"void  * midl_allocate(int)","url":"/ddoc/druntime/core/sys/windows/rpcndr/midl_allocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleTypeMarshall","package":"druntime","parentType":"","signature":"void NdrSimpleTypeMarshall(PMIDL_STUB_MESSAGE, ubyte *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleTypeMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrPointerMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrPointerMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING pFormat)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrPointerMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleStructMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleStructMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStructMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantStructMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStructMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingStructMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingStructMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrHardStructMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrHardStructMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrHardStructMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexStructMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrComplexStructMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexStructMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFixedArrayMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFixedArrayMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantArrayMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantArrayMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingArrayMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantVaryingArrayMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingArrayMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrVaryingArrayMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrVaryingArrayMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrVaryingArrayMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexArrayMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrComplexArrayMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexArrayMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonConformantStringMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrNonConformantStringMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonConformantStringMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStringMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantStringMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStringMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrEncapsulatedUnionMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrEncapsulatedUnionMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonEncapsulatedUnionMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrNonEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonEncapsulatedUnionMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrByteCountPointerMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrByteCountPointerMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrByteCountPointerMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrXmitOrRepAsMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrXmitOrRepAsMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrXmitOrRepAsMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrInterfacePointerMarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrInterfacePointerMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrInterfacePointerMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClientContextMarshall","package":"druntime","parentType":"","signature":"void NdrClientContextMarshall(PMIDL_STUB_MESSAGE, NDR_CCONTEXT, int)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClientContextMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerContextMarshall","package":"druntime","parentType":"","signature":"void NdrServerContextMarshall(PMIDL_STUB_MESSAGE, NDR_SCONTEXT, NDR_RUNDOWN)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerContextMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleTypeUnmarshall","package":"druntime","parentType":"","signature":"void NdrSimpleTypeUnmarshall(PMIDL_STUB_MESSAGE, ubyte *, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleTypeUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrPointerUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrPointerUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrPointerUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleStructUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleStructUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStructUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantStructUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStructUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingStructUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantVaryingStructUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingStructUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrHardStructUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrHardStructUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrHardStructUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexStructUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrComplexStructUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexStructUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFixedArrayUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrFixedArrayUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFixedArrayUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantArrayUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantArrayUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantArrayUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingArrayUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingArrayUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrVaryingArrayUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrVaryingArrayUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexArrayUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrComplexArrayUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexArrayUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonConformantStringUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrNonConformantStringUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonConformantStringUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStringUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrConformantStringUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStringUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrEncapsulatedUnionUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrEncapsulatedUnionUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonEncapsulatedUnionUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrNonEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonEncapsulatedUnionUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrByteCountPointerUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrByteCountPointerUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrByteCountPointerUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrXmitOrRepAsUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrXmitOrRepAsUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrXmitOrRepAsUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrInterfacePointerUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrInterfacePointerUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrInterfacePointerUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClientContextUnmarshall","package":"druntime","parentType":"","signature":"void NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE, NDR_CCONTEXT *, RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClientContextUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerContextUnmarshall","package":"druntime","parentType":"","signature":"NDR_SCONTEXT NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerContextUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrPointerBufferSize","package":"druntime","parentType":"","signature":"void NdrPointerBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrPointerBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleStructBufferSize","package":"druntime","parentType":"","signature":"void NdrSimpleStructBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleStructBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStructBufferSize","package":"druntime","parentType":"","signature":"void NdrConformantStructBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStructBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingStructBufferSize","package":"druntime","parentType":"","signature":"void NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingStructBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrHardStructBufferSize","package":"druntime","parentType":"","signature":"void NdrHardStructBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrHardStructBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexStructBufferSize","package":"druntime","parentType":"","signature":"void NdrComplexStructBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexStructBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFixedArrayBufferSize","package":"druntime","parentType":"","signature":"void NdrFixedArrayBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFixedArrayBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantArrayBufferSize","package":"druntime","parentType":"","signature":"void NdrConformantArrayBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantArrayBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingArrayBufferSize","package":"druntime","parentType":"","signature":"void NdrConformantVaryingArrayBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingArrayBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrVaryingArrayBufferSize","package":"druntime","parentType":"","signature":"void NdrVaryingArrayBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrVaryingArrayBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexArrayBufferSize","package":"druntime","parentType":"","signature":"void NdrComplexArrayBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexArrayBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStringBufferSize","package":"druntime","parentType":"","signature":"void NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStringBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonConformantStringBufferSize","package":"druntime","parentType":"","signature":"void NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonConformantStringBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrEncapsulatedUnionBufferSize","package":"druntime","parentType":"","signature":"void NdrEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrEncapsulatedUnionBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonEncapsulatedUnionBufferSize","package":"druntime","parentType":"","signature":"void NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonEncapsulatedUnionBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrByteCountPointerBufferSize","package":"druntime","parentType":"","signature":"void NdrByteCountPointerBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrByteCountPointerBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrXmitOrRepAsBufferSize","package":"druntime","parentType":"","signature":"void NdrXmitOrRepAsBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrXmitOrRepAsBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrInterfacePointerBufferSize","package":"druntime","parentType":"","signature":"void NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrInterfacePointerBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrContextHandleSize","package":"druntime","parentType":"","signature":"void NdrContextHandleSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrContextHandleSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrPointerMemorySize","package":"druntime","parentType":"","signature":"uint NdrPointerMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrPointerMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleStructMemorySize","package":"druntime","parentType":"","signature":"uint NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleStructMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStructMemorySize","package":"druntime","parentType":"","signature":"uint NdrConformantStructMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStructMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingStructMemorySize","package":"druntime","parentType":"","signature":"uint NdrConformantVaryingStructMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingStructMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrHardStructMemorySize","package":"druntime","parentType":"","signature":"uint NdrHardStructMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrHardStructMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexStructMemorySize","package":"druntime","parentType":"","signature":"uint NdrComplexStructMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexStructMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFixedArrayMemorySize","package":"druntime","parentType":"","signature":"uint NdrFixedArrayMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFixedArrayMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantArrayMemorySize","package":"druntime","parentType":"","signature":"uint NdrConformantArrayMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantArrayMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingArrayMemorySize","package":"druntime","parentType":"","signature":"uint NdrConformantVaryingArrayMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingArrayMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrVaryingArrayMemorySize","package":"druntime","parentType":"","signature":"uint NdrVaryingArrayMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrVaryingArrayMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexArrayMemorySize","package":"druntime","parentType":"","signature":"uint NdrComplexArrayMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexArrayMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStringMemorySize","package":"druntime","parentType":"","signature":"uint NdrConformantStringMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStringMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonConformantStringMemorySize","package":"druntime","parentType":"","signature":"uint NdrNonConformantStringMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonConformantStringMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrEncapsulatedUnionMemorySize","package":"druntime","parentType":"","signature":"uint NdrEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrEncapsulatedUnionMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonEncapsulatedUnionMemorySize","package":"druntime","parentType":"","signature":"uint NdrNonEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonEncapsulatedUnionMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrXmitOrRepAsMemorySize","package":"druntime","parentType":"","signature":"uint NdrXmitOrRepAsMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrXmitOrRepAsMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrInterfacePointerMemorySize","package":"druntime","parentType":"","signature":"uint NdrInterfacePointerMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrInterfacePointerMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrPointerFree","package":"druntime","parentType":"","signature":"void NdrPointerFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrPointerFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSimpleStructFree","package":"druntime","parentType":"","signature":"void NdrSimpleStructFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSimpleStructFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantStructFree","package":"druntime","parentType":"","signature":"void NdrConformantStructFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantStructFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingStructFree","package":"druntime","parentType":"","signature":"void NdrConformantVaryingStructFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingStructFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrHardStructFree","package":"druntime","parentType":"","signature":"void NdrHardStructFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrHardStructFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexStructFree","package":"druntime","parentType":"","signature":"void NdrComplexStructFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexStructFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFixedArrayFree","package":"druntime","parentType":"","signature":"void NdrFixedArrayFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFixedArrayFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantArrayFree","package":"druntime","parentType":"","signature":"void NdrConformantArrayFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantArrayFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConformantVaryingArrayFree","package":"druntime","parentType":"","signature":"void NdrConformantVaryingArrayFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConformantVaryingArrayFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrVaryingArrayFree","package":"druntime","parentType":"","signature":"void NdrVaryingArrayFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrVaryingArrayFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrComplexArrayFree","package":"druntime","parentType":"","signature":"void NdrComplexArrayFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrComplexArrayFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrEncapsulatedUnionFree","package":"druntime","parentType":"","signature":"void NdrEncapsulatedUnionFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrEncapsulatedUnionFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNonEncapsulatedUnionFree","package":"druntime","parentType":"","signature":"void NdrNonEncapsulatedUnionFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNonEncapsulatedUnionFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrByteCountPointerFree","package":"druntime","parentType":"","signature":"void NdrByteCountPointerFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrByteCountPointerFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrXmitOrRepAsFree","package":"druntime","parentType":"","signature":"void NdrXmitOrRepAsFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrXmitOrRepAsFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrInterfacePointerFree","package":"druntime","parentType":"","signature":"void NdrInterfacePointerFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrInterfacePointerFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrConvert","package":"druntime","parentType":"","signature":"void NdrConvert(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrConvert.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClientInitializeNew","package":"druntime","parentType":"","signature":"void NdrClientInitializeNew(PRPC_MESSAGE, PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClientInitializeNew.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerInitializeNew","package":"druntime","parentType":"","signature":"ubyte  * NdrServerInitializeNew(PRPC_MESSAGE, PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerInitializeNew.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClientInitialize","package":"druntime","parentType":"","signature":"void NdrClientInitialize(PRPC_MESSAGE, PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClientInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerInitialize","package":"druntime","parentType":"","signature":"ubyte  * NdrServerInitialize(PRPC_MESSAGE, PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerInitialize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerInitializeUnmarshall","package":"druntime","parentType":"","signature":"ubyte  * NdrServerInitializeUnmarshall(PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC, PRPC_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerInitializeUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerInitializeMarshall","package":"druntime","parentType":"","signature":"void NdrServerInitializeMarshall(PRPC_MESSAGE, PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerInitializeMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrGetBuffer","package":"druntime","parentType":"","signature":"ubyte  * NdrGetBuffer(PMIDL_STUB_MESSAGE, uint, RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrGetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNsGetBuffer","package":"druntime","parentType":"","signature":"ubyte  * NdrNsGetBuffer(PMIDL_STUB_MESSAGE, uint, RPC_BINDING_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNsGetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSendReceive","package":"druntime","parentType":"","signature":"ubyte  * NdrSendReceive(PMIDL_STUB_MESSAGE, ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSendReceive.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrNsSendReceive","package":"druntime","parentType":"","signature":"ubyte  * NdrNsSendReceive(PMIDL_STUB_MESSAGE, ubyte *, RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrNsSendReceive.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFreeBuffer","package":"druntime","parentType":"","signature":"void NdrFreeBuffer(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFreeBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClientCall","package":"druntime","parentType":"","signature":"CLIENT_CALL_RETURN NdrClientCall(PMIDL_STUB_DESC, PFORMAT_STRING,...)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClientCall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrStubCall","package":"druntime","parentType":"","signature":"int NdrStubCall(IRpcStubBuffer,  IRpcChannelBuffer, PRPC_MESSAGE, uint *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrStubCall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerCall","package":"druntime","parentType":"","signature":"void NdrServerCall(PRPC_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerCall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerUnmarshall","package":"druntime","parentType":"","signature":"int NdrServerUnmarshall(IRpcChannelBuffer,  PRPC_MESSAGE, PMIDL_STUB_MESSAGE, PMIDL_STUB_DESC, PFORMAT_STRING, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrServerMarshall","package":"druntime","parentType":"","signature":"void NdrServerMarshall(IRpcStubBuffer,  IRpcChannelBuffer, PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrServerMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrMapCommAndFaultStatus","package":"druntime","parentType":"","signature":"RPC_STATUS NdrMapCommAndFaultStatus(PMIDL_STUB_MESSAGE, uint *, uint *, RPC_STATUS)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrMapCommAndFaultStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_UPDecision","package":"druntime","parentType":"","signature":"int NdrSH_UPDecision(PMIDL_STUB_MESSAGE, ubyte * *, RPC_BUFPTR)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_UPDecision.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_TLUPDecision","package":"druntime","parentType":"","signature":"int NdrSH_TLUPDecision(PMIDL_STUB_MESSAGE, ubyte * *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_TLUPDecision.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_TLUPDecisionBuffer","package":"druntime","parentType":"","signature":"int NdrSH_TLUPDecisionBuffer(PMIDL_STUB_MESSAGE, ubyte * *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_TLUPDecisionBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfAlloc","package":"druntime","parentType":"","signature":"int NdrSH_IfAlloc(PMIDL_STUB_MESSAGE, ubyte * *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfAllocRef","package":"druntime","parentType":"","signature":"int NdrSH_IfAllocRef(PMIDL_STUB_MESSAGE, ubyte * *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfAllocRef.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfAllocSet","package":"druntime","parentType":"","signature":"int NdrSH_IfAllocSet(PMIDL_STUB_MESSAGE, ubyte * *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfAllocSet.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfCopy","package":"druntime","parentType":"","signature":"RPC_BUFPTR NdrSH_IfCopy(PMIDL_STUB_MESSAGE, ubyte * *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfAllocCopy","package":"druntime","parentType":"","signature":"RPC_BUFPTR NdrSH_IfAllocCopy(PMIDL_STUB_MESSAGE, ubyte * *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfAllocCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_Copy","package":"druntime","parentType":"","signature":"uint NdrSH_Copy(ubyte *, ubyte *, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_Copy.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_IfFree","package":"druntime","parentType":"","signature":"void NdrSH_IfFree(PMIDL_STUB_MESSAGE, ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_IfFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_StringMarshall","package":"druntime","parentType":"","signature":"RPC_BUFPTR NdrSH_StringMarshall(PMIDL_STUB_MESSAGE, ubyte *, uint, int)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_StringMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrSH_StringUnMarshall","package":"druntime","parentType":"","signature":"RPC_BUFPTR NdrSH_StringUnMarshall(PMIDL_STUB_MESSAGE, ubyte * *, int)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrSH_StringUnMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsAllocate","package":"druntime","parentType":"","signature":"void * RpcSsAllocate(uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsDisableAllocate","package":"druntime","parentType":"","signature":"void RpcSsDisableAllocate()","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsDisableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsEnableAllocate","package":"druntime","parentType":"","signature":"void RpcSsEnableAllocate()","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsEnableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsFree","package":"druntime","parentType":"","signature":"void RpcSsFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsGetThreadHandle","package":"druntime","parentType":"","signature":"RPC_SS_THREAD_HANDLE RpcSsGetThreadHandle()","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsGetThreadHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsSetClientAllocFree","package":"druntime","parentType":"","signature":"void RpcSsSetClientAllocFree(PRPC_CLIENT_ALLOC, PRPC_CLIENT_FREE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsSetClientAllocFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsSetThreadHandle","package":"druntime","parentType":"","signature":"void RpcSsSetThreadHandle(RPC_SS_THREAD_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsSetThreadHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSsSwapClientAllocFree","package":"druntime","parentType":"","signature":"void RpcSsSwapClientAllocFree(PRPC_CLIENT_ALLOC, PRPC_CLIENT_FREE, PRPC_CLIENT_ALLOC *, PRPC_CLIENT_FREE *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSsSwapClientAllocFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmAllocate","package":"druntime","parentType":"","signature":"void * RpcSmAllocate(uint, RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmClientFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmClientFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmClientFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmDestroyClientContext","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmDestroyClientContext(void * *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmDestroyClientContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmDisableAllocate","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmDisableAllocate()","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmDisableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmEnableAllocate","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmEnableAllocate()","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmEnableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmGetThreadHandle","package":"druntime","parentType":"","signature":"RPC_SS_THREAD_HANDLE RpcSmGetThreadHandle(RPC_STATUS *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmGetThreadHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmSetClientAllocFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmSetClientAllocFree(PRPC_CLIENT_ALLOC, PRPC_CLIENT_FREE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmSetClientAllocFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmSetThreadHandle","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmSetThreadHandle(RPC_SS_THREAD_HANDLE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmSetThreadHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"RpcSmSwapClientAllocFree","package":"druntime","parentType":"","signature":"RPC_STATUS RpcSmSwapClientAllocFree(PRPC_CLIENT_ALLOC, PRPC_CLIENT_FREE, PRPC_CLIENT_ALLOC *, PRPC_CLIENT_FREE *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/RpcSmSwapClientAllocFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSsEnableAllocate","package":"druntime","parentType":"","signature":"void NdrRpcSsEnableAllocate(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSsEnableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSsDisableAllocate","package":"druntime","parentType":"","signature":"void NdrRpcSsDisableAllocate(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSsDisableAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSmSetClientToOsf","package":"druntime","parentType":"","signature":"void NdrRpcSmSetClientToOsf(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSmSetClientToOsf.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSmClientAllocate","package":"druntime","parentType":"","signature":"void * NdrRpcSmClientAllocate(uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSmClientAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSmClientFree","package":"druntime","parentType":"","signature":"void NdrRpcSmClientFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSmClientFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSsDefaultAllocate","package":"druntime","parentType":"","signature":"void * NdrRpcSsDefaultAllocate(uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSsDefaultAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrRpcSsDefaultFree","package":"druntime","parentType":"","signature":"void NdrRpcSsDefaultFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrRpcSsDefaultFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerXlatInit","package":"druntime","parentType":"","signature":"PFULL_PTR_XLAT_TABLES NdrFullPointerXlatInit(uint, XLAT_SIDE)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerXlatInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerXlatFree","package":"druntime","parentType":"","signature":"void NdrFullPointerXlatFree(PFULL_PTR_XLAT_TABLES)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerXlatFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerQueryPointer","package":"druntime","parentType":"","signature":"int NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES, void *, ubyte, uint *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerQueryPointer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerQueryRefId","package":"druntime","parentType":"","signature":"int NdrFullPointerQueryRefId(PFULL_PTR_XLAT_TABLES, uint, ubyte, void * *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerQueryRefId.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerInsertRefId","package":"druntime","parentType":"","signature":"void NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES, uint, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerInsertRefId.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrFullPointerFree","package":"druntime","parentType":"","signature":"int NdrFullPointerFree(PFULL_PTR_XLAT_TABLES, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrFullPointerFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrAllocate","package":"druntime","parentType":"","signature":"void * NdrAllocate(PMIDL_STUB_MESSAGE, uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrClearOutParameters","package":"druntime","parentType":"","signature":"void NdrClearOutParameters(PMIDL_STUB_MESSAGE, PFORMAT_STRING, void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrClearOutParameters.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrOleAllocate","package":"druntime","parentType":"","signature":"void * NdrOleAllocate(uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrOleAllocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrOleFree","package":"druntime","parentType":"","signature":"void NdrOleFree(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrOleFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrUserMarshalMarshall","package":"druntime","parentType":"","signature":"ubyte * NdrUserMarshalMarshall(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrUserMarshalMarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrUserMarshalUnmarshall","package":"druntime","parentType":"","signature":"ubyte * NdrUserMarshalUnmarshall(PMIDL_STUB_MESSAGE, ubyte * *, PFORMAT_STRING, ubyte)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrUserMarshalUnmarshall.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrUserMarshalBufferSize","package":"druntime","parentType":"","signature":"void NdrUserMarshalBufferSize(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrUserMarshalBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrUserMarshalMemorySize","package":"druntime","parentType":"","signature":"uint NdrUserMarshalMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrUserMarshalMemorySize.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcndr","name":"NdrUserMarshalFree","package":"druntime","parentType":"","signature":"void NdrUserMarshalFree(PMIDL_STUB_MESSAGE, ubyte *, PFORMAT_STRING)","url":"/ddoc/druntime/core/sys/windows/rpcndr/NdrUserMarshalFree.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"midl_user_allocate","package":"druntime","parentType":"","signature":"midl_user_allocate = MIDL_user_allocate","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#midl_user_allocate"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"midl_user_free","package":"druntime","parentType":"","signature":"midl_user_free = MIDL_user_free","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#midl_user_free"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"hyper","package":"druntime","parentType":"","signature":"hyper = long","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#hyper"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"MIDL_uhyper","package":"druntime","parentType":"","signature":"MIDL_uhyper = ulong","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_uhyper"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"small","package":"druntime","parentType":"","signature":"small = char","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#small"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"NDR_CCONTEXT","package":"druntime","parentType":"","signature":"NDR_CCONTEXT = void  *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_CCONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"tagNDR_SCONTEXT","package":"druntime","parentType":"","signature":"tagNDR_SCONTEXT","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#tagNDR_SCONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"NDR_SCONTEXT","package":"druntime","parentType":"","signature":"NDR_SCONTEXT = tagNDR_SCONTEXT *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_SCONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"SCONTEXT_QUEUE","package":"druntime","parentType":"","signature":"SCONTEXT_QUEUE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#SCONTEXT_QUEUE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PSCONTEXT_QUEUE","package":"druntime","parentType":"","signature":"PSCONTEXT_QUEUE = SCONTEXT_QUEUE *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PSCONTEXT_QUEUE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"_MIDL_STUB_MESSAGE","package":"druntime","parentType":"","signature":"_MIDL_STUB_MESSAGE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#_MIDL_STUB_MESSAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"_MIDL_STUB_DESC","package":"druntime","parentType":"","signature":"_MIDL_STUB_DESC","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#_MIDL_STUB_DESC"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"_FULL_PTR_XLAT_TABLES","package":"druntime","parentType":"","signature":"_FULL_PTR_XLAT_TABLES","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#_FULL_PTR_XLAT_TABLES"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"RPC_BUFPTR","package":"druntime","parentType":"","signature":"RPC_BUFPTR = ubyte  *RPC_BUFPTR","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#RPC_BUFPTR"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"RPC_LENGTH","package":"druntime","parentType":"","signature":"RPC_LENGTH = uint","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#RPC_LENGTH"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PFORMAT_STRING","package":"druntime","parentType":"","signature":"PFORMAT_STRING = const(char) *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PFORMAT_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"ARRAY_INFO","package":"druntime","parentType":"","signature":"ARRAY_INFO","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#ARRAY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PARRAY_INFO","package":"druntime","parentType":"","signature":"PARRAY_INFO = ARRAY_INFO *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PARRAY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MIDL_STUB_MESSAGE","package":"druntime","parentType":"","signature":"MIDL_STUB_MESSAGE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_STUB_MESSAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PMIDL_STUB_MESSAGE","package":"druntime","parentType":"","signature":"PMIDL_STUB_MESSAGE = MIDL_STUB_MESSAGE *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PMIDL_STUB_MESSAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"GENERIC_BINDING_ROUTINE","package":"druntime","parentType":"","signature":"GENERIC_BINDING_ROUTINE = void *  function (void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#GENERIC_BINDING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"GENERIC_UNBIND_ROUTINE","package":"druntime","parentType":"","signature":"GENERIC_UNBIND_ROUTINE = void  function (void *, ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#GENERIC_UNBIND_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"USER_MARSHAL_SIZING_ROUTINE","package":"druntime","parentType":"","signature":"USER_MARSHAL_SIZING_ROUTINE = uint  function (uint  *, uint, void  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#USER_MARSHAL_SIZING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"USER_MARSHAL_MARSHALLING_ROUTINE","package":"druntime","parentType":"","signature":"USER_MARSHAL_MARSHALLING_ROUTINE = ubyte  *  function (uint  *, ubyte  *, void  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#USER_MARSHAL_MARSHALLING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"USER_MARSHAL_UNMARSHALLING_ROUTINE","package":"druntime","parentType":"","signature":"USER_MARSHAL_UNMARSHALLING_ROUTINE = ubyte  *  function (uint  *, ubyte  *, void  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#USER_MARSHAL_UNMARSHALLING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"USER_MARSHAL_FREEING_ROUTINE","package":"druntime","parentType":"","signature":"USER_MARSHAL_FREEING_ROUTINE = void  function (uint  *, void  *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#USER_MARSHAL_FREEING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"NDR_NOTIFY_ROUTINE","package":"druntime","parentType":"","signature":"NDR_NOTIFY_ROUTINE = void  function ()","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_NOTIFY_ROUTINE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"GENERIC_BINDING_ROUTINE_PAIR","package":"druntime","parentType":"","signature":"GENERIC_BINDING_ROUTINE_PAIR","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#GENERIC_BINDING_ROUTINE_PAIR"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PGENERIC_BINDING_ROUTINE_PAIR","package":"druntime","parentType":"","signature":"PGENERIC_BINDING_ROUTINE_PAIR = GENERIC_BINDING_ROUTINE_PAIR *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PGENERIC_BINDING_ROUTINE_PAIR"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"GENERIC_BINDING_INFO","package":"druntime","parentType":"","signature":"GENERIC_BINDING_INFO","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#GENERIC_BINDING_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PGENERIC_BINDING_INFO","package":"druntime","parentType":"","signature":"PGENERIC_BINDING_INFO = GENERIC_BINDING_INFO *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PGENERIC_BINDING_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"XMIT_ROUTINE_QUINTUPLE","package":"druntime","parentType":"","signature":"XMIT_ROUTINE_QUINTUPLE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#XMIT_ROUTINE_QUINTUPLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PXMIT_ROUTINE_QUINTUPLE","package":"druntime","parentType":"","signature":"PXMIT_ROUTINE_QUINTUPLE = XMIT_ROUTINE_QUINTUPLE *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PXMIT_ROUTINE_QUINTUPLE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MALLOC_FREE_STRUCT","package":"druntime","parentType":"","signature":"MALLOC_FREE_STRUCT","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MALLOC_FREE_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"COMM_FAULT_OFFSETS","package":"druntime","parentType":"","signature":"COMM_FAULT_OFFSETS","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#COMM_FAULT_OFFSETS"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"USER_MARSHAL_ROUTINE_QUADRUPLE","package":"druntime","parentType":"","signature":"USER_MARSHAL_ROUTINE_QUADRUPLE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#USER_MARSHAL_ROUTINE_QUADRUPLE"},{"doc":"","kind":"enum","module":"core.sys.windows.rpcndr","name":"IDL_CS_CONVERT","package":"druntime","parentType":"","signature":"IDL_CS_CONVERT","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#IDL_CS_CONVERT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"IDL_CS_NO_CONVERT","package":"druntime","parentType":"","signature":"IDL_CS_NO_CONVERT = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#IDL_CS_CONVERT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"IDL_CS_IN_PLACE_CONVERT","package":"druntime","parentType":"","signature":"IDL_CS_IN_PLACE_CONVERT = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#IDL_CS_CONVERT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"IDL_CS_NEW_BUFFER_CONVERT","package":"druntime","parentType":"","signature":"IDL_CS_NEW_BUFFER_CONVERT = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#IDL_CS_CONVERT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"NDR_CS_SIZE_CONVERT_ROUTINES","package":"druntime","parentType":"","signature":"NDR_CS_SIZE_CONVERT_ROUTINES","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_CS_SIZE_CONVERT_ROUTINES"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"NDR_CS_ROUTINES","package":"druntime","parentType":"","signature":"NDR_CS_ROUTINES","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_CS_ROUTINES"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MIDL_STUB_DESC","package":"druntime","parentType":"","signature":"MIDL_STUB_DESC","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_STUB_DESC"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PMIDL_STUB_DESC","package":"druntime","parentType":"","signature":"PMIDL_STUB_DESC = const(MIDL_STUB_DESC) *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PMIDL_STUB_DESC"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PMIDL_XMIT_TYPE","package":"druntime","parentType":"","signature":"PMIDL_XMIT_TYPE = void  *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PMIDL_XMIT_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MIDL_FORMAT_STRING","package":"druntime","parentType":"","signature":"MIDL_FORMAT_STRING","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_FORMAT_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MIDL_SERVER_INFO","package":"druntime","parentType":"","signature":"MIDL_SERVER_INFO","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_SERVER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PMIDL_SERVER_INFO","package":"druntime","parentType":"","signature":"PMIDL_SERVER_INFO = MIDL_SERVER_INFO *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PMIDL_SERVER_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"MIDL_STUBLESS_PROXY_INFO","package":"druntime","parentType":"","signature":"MIDL_STUBLESS_PROXY_INFO","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#MIDL_STUBLESS_PROXY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PMIDL_STUBLESS_PROXY_INFO","package":"druntime","parentType":"","signature":"PMIDL_STUBLESS_PROXY_INFO = MIDL_STUBLESS_PROXY_INFO *PMIDL_STUBLESS_PROXY_INFO","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PMIDL_STUBLESS_PROXY_INFO"},{"doc":"","kind":"union","module":"core.sys.windows.rpcndr","name":"CLIENT_CALL_RETURN","package":"druntime","parentType":"","signature":"CLIENT_CALL_RETURN","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CLIENT_CALL_RETURN"},{"doc":"","kind":"enum","module":"core.sys.windows.rpcndr","name":"XLAT_SIDE","package":"druntime","parentType":"","signature":"XLAT_SIDE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#XLAT_SIDE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"XLAT_SERVER","package":"druntime","parentType":"","signature":"XLAT_SERVER = 1","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#XLAT_SIDE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"XLAT_CLIENT","package":"druntime","parentType":"","signature":"XLAT_CLIENT = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#XLAT_SIDE"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"FULL_PTR_TO_REFID_ELEMENT","package":"druntime","parentType":"","signature":"FULL_PTR_TO_REFID_ELEMENT","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#FULL_PTR_TO_REFID_ELEMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PFULL_PTR_TO_REFID_ELEMENT","package":"druntime","parentType":"","signature":"PFULL_PTR_TO_REFID_ELEMENT = FULL_PTR_TO_REFID_ELEMENT *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PFULL_PTR_TO_REFID_ELEMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcndr","name":"FULL_PTR_XLAT_TABLES","package":"druntime","parentType":"","signature":"FULL_PTR_XLAT_TABLES","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#FULL_PTR_XLAT_TABLES"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PFULL_PTR_XLAT_TABLES","package":"druntime","parentType":"","signature":"PFULL_PTR_XLAT_TABLES = FULL_PTR_XLAT_TABLES *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PFULL_PTR_XLAT_TABLES"},{"doc":"","kind":"enum","module":"core.sys.windows.rpcndr","name":"STUB_PHASE","package":"druntime","parentType":"","signature":"STUB_PHASE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"STUB_UNMARSHAL","package":"druntime","parentType":"","signature":"STUB_UNMARSHAL = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"STUB_CALL_SERVER","package":"druntime","parentType":"","signature":"STUB_CALL_SERVER = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"STUB_MARSHAL","package":"druntime","parentType":"","signature":"STUB_MARSHAL = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"STUB_CALL_SERVER_NO_HRESULT","package":"druntime","parentType":"","signature":"STUB_CALL_SERVER_NO_HRESULT = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_PHASE"},{"doc":"","kind":"enum","module":"core.sys.windows.rpcndr","name":"PROXY_PHASE","package":"druntime","parentType":"","signature":"PROXY_PHASE","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"PROXY_CALCSIZE","package":"druntime","parentType":"","signature":"PROXY_CALCSIZE = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"PROXY_GETBUFFER","package":"druntime","parentType":"","signature":"PROXY_GETBUFFER = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"PROXY_MARSHAL","package":"druntime","parentType":"","signature":"PROXY_MARSHAL = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"PROXY_SENDRECEIVE","package":"druntime","parentType":"","signature":"PROXY_SENDRECEIVE = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.rpcndr","name":"PROXY_UNMARSHAL","package":"druntime","parentType":"","signature":"PROXY_UNMARSHAL = ","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PROXY_PHASE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"RPC_SS_THREAD_HANDLE","package":"druntime","parentType":"","signature":"RPC_SS_THREAD_HANDLE = void  *","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#RPC_SS_THREAD_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"NDR_RUNDOWN","package":"druntime","parentType":"","signature":"NDR_RUNDOWN = void  function (void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_RUNDOWN"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"EXPR_EVAL","package":"druntime","parentType":"","signature":"EXPR_EVAL = void  function (_MIDL_STUB_MESSAGE *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#EXPR_EVAL"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"XMIT_HELPER_ROUTINE","package":"druntime","parentType":"","signature":"XMIT_HELPER_ROUTINE = void  function(PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#XMIT_HELPER_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"CS_TYPE_NET_SIZE_ROUTINE","package":"druntime","parentType":"","signature":"CS_TYPE_NET_SIZE_ROUTINE = void  function (RPC_BINDING_HANDLE, uint, uint, IDL_CS_CONVERT *, uint *, error_status_t *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CS_TYPE_NET_SIZE_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"CS_TYPE_LOCAL_SIZE_ROUTINE","package":"druntime","parentType":"","signature":"CS_TYPE_LOCAL_SIZE_ROUTINE = void  function (RPC_BINDING_HANDLE, uint, uint, IDL_CS_CONVERT *, uint *, error_status_t *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CS_TYPE_LOCAL_SIZE_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"CS_TYPE_TO_NETCS_ROUTINE","package":"druntime","parentType":"","signature":"CS_TYPE_TO_NETCS_ROUTINE = void  function (RPC_BINDING_HANDLE, uint, void *, uint, byte *, uint *, error_status_t *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CS_TYPE_TO_NETCS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"CS_TYPE_FROM_NETCS_ROUTINE","package":"druntime","parentType":"","signature":"CS_TYPE_FROM_NETCS_ROUTINE = void  function (RPC_BINDING_HANDLE, uint, byte *, uint, uint, void *, uint *, error_status_t *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CS_TYPE_FROM_NETCS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"CS_TAG_GETTING_ROUTINE","package":"druntime","parentType":"","signature":"CS_TAG_GETTING_ROUTINE = void  function (RPC_BINDING_HANDLE, int, uint *, uint *, uint *, error_status_t *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#CS_TAG_GETTING_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PRPC_CLIENT_ALLOC","package":"druntime","parentType":"","signature":"PRPC_CLIENT_ALLOC = void *  function(uint)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PRPC_CLIENT_ALLOC"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"PRPC_CLIENT_FREE","package":"druntime","parentType":"","signature":"PRPC_CLIENT_FREE = void  function(void *)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#PRPC_CLIENT_FREE"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"STUB_THUNK","package":"druntime","parentType":"","signature":"STUB_THUNK = void  function (PMIDL_STUB_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#STUB_THUNK"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcndr","name":"SERVER_ROUTINE","package":"druntime","parentType":"","signature":"SERVER_ROUTINE = int  function()","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#SERVER_ROUTINE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcndr","name":"__RPCNDR_H_VERSION__","package":"druntime","parentType":"","signature":"__RPCNDR_H_VERSION__","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#__RPCNDR_H_VERSION__"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcndr","name":"NDR_CHAR_REP_MASK","package":"druntime","parentType":"","signature":"uint NDR_CHAR_REP_MASK","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#NDR_CHAR_REP_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcndr","name":"cbNDRContext","package":"druntime","parentType":"","signature":"cbNDRContext","url":"/ddoc/druntime/core/sys/windows/rpcndr.html#cbNDRContext"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcnsi","name":"core.sys.windows.rpcnsi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingExportA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingExportA(uint,  ubyte *,  RPC_IF_HANDLE,\n       RPC_BINDING_VECTOR *,  UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingExportA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingUnexportA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingUnexportA(uint,  ubyte *,  RPC_IF_HANDLE,\n       UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingUnexportA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingLookupBeginA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingLookupBeginA(uint,  ubyte *,  RPC_IF_HANDLE,  UUID *,\n       uint,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingLookupBeginA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingLookupNext","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingLookupNext(RPC_NS_HANDLE,  RPC_BINDING_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingLookupNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingLookupDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingLookupDone(RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingLookupDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupDeleteA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupDeleteA(uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupDeleteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrAddA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrAddA(uint,  ubyte *,  uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrAddA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrRemoveA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrRemoveA(uint,  ubyte *,  uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrRemoveA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrInqBeginA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrInqBeginA(uint,  ubyte *,  uint,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrInqBeginA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrInqNextA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrInqNextA(RPC_NS_HANDLE,  ubyte * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrInqNextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrInqDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrInqDone(RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrInqDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileDeleteA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileDeleteA(uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileDeleteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltAddA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltAddA(uint,  ubyte *,  RPC_IF_ID *,  uint,  ubyte *,\n       uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltAddA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltRemoveA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltRemoveA(uint,  ubyte *,  RPC_IF_ID *,  uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltRemoveA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltInqBeginA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltInqBeginA(uint,  ubyte *,  uint,  RPC_IF_ID *,  uint,\n       uint,  ubyte *,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltInqBeginA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltInqNextA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltInqNextA(RPC_NS_HANDLE,  RPC_IF_ID *,  ubyte * *,\n       uint *,  ubyte * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltInqNextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltInqDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltInqDone(RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltInqDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsEntryObjectInqNext","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsEntryObjectInqNext(RPC_NS_HANDLE,  UUID *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsEntryObjectInqNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsEntryObjectInqDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsEntryObjectInqDone(RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsEntryObjectInqDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsEntryExpandNameA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsEntryExpandNameA(uint,  ubyte *,  ubyte * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsEntryExpandNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtBindingUnexportA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtBindingUnexportA(uint,  ubyte *,  RPC_IF_ID *,  uint,\n       UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtBindingUnexportA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryCreateA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryCreateA(uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryCreateA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryDeleteA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryDeleteA(uint,  ubyte *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryDeleteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryInqIfIdsA","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryInqIfIdsA(uint,  ubyte *,  RPC_IF_ID_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryInqIfIdsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtHandleSetExpAge","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtHandleSetExpAge(RPC_NS_HANDLE,  uint)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtHandleSetExpAge.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtInqExpAge","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtInqExpAge(uint *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtInqExpAge.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtSetExpAge","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtSetExpAge(uint)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtSetExpAge.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingImportNext","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingImportNext(RPC_NS_HANDLE,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingImportNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingImportDone","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingImportDone(RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingImportDone.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingSelect","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingSelect(RPC_BINDING_VECTOR *,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingSelect.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingExportW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingExportW(uint,  ushort *,  RPC_IF_HANDLE,\n       RPC_BINDING_VECTOR *,  UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingExportW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingUnexportW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingUnexportW(uint,  ushort *,  RPC_IF_HANDLE,\n       UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingUnexportW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingLookupBeginW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingLookupBeginW(uint,  ushort *,  RPC_IF_HANDLE,  UUID *,\n       uint,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingLookupBeginW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupDeleteW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupDeleteW(uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupDeleteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrAddW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrAddW(uint,  ushort *,  uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrAddW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrRemoveW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrRemoveW(uint,  ushort *,  uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrRemoveW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrInqBeginW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrInqBeginW(uint,  ushort *,  uint,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrInqBeginW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsGroupMbrInqNextW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsGroupMbrInqNextW(RPC_NS_HANDLE,  ushort * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsGroupMbrInqNextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileDeleteW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileDeleteW(uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileDeleteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltAddW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltAddW(uint,  ushort *,  RPC_IF_ID *,  uint,  ushort *,\n       uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltAddW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltRemoveW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltRemoveW(uint,  ushort *,  RPC_IF_ID *,  uint,\n       ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltRemoveW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltInqBeginW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltInqBeginW(uint,  ushort *,  uint,  RPC_IF_ID *,\n       uint,  uint,  ushort *,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltInqBeginW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsProfileEltInqNextW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsProfileEltInqNextW(RPC_NS_HANDLE,  RPC_IF_ID *,  ushort * *,\n       uint *,  ushort * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsProfileEltInqNextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsEntryObjectInqBeginW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsEntryObjectInqBeginW(uint,  ushort *,  RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsEntryObjectInqBeginW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsEntryExpandNameW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsEntryExpandNameW(uint,  ushort *,  ushort * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsEntryExpandNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtBindingUnexportW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtBindingUnexportW(uint,  ushort *,  RPC_IF_ID *,  uint,\n       UUID_VECTOR *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtBindingUnexportW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryCreateW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryCreateW(uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryCreateW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryDeleteW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryDeleteW(uint,  ushort *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryDeleteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsMgmtEntryInqIfIdsW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsMgmtEntryInqIfIdsW(uint,  ushort ,  RPC_IF_ID_VECTOR * *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsMgmtEntryInqIfIdsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsi","name":"RpcNsBindingImportBeginW","package":"druntime","parentType":"","signature":"RPC_STATUS RpcNsBindingImportBeginW(uint,  ushort *,  RPC_IF_HANDLE,  UUID *,\n       RPC_NS_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsi/RpcNsBindingImportBeginW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcnsi","name":"RPC_NS_HANDLE","package":"druntime","parentType":"","signature":"RPC_NS_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_NS_HANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_NS_SYNTAX_DEFAULT","package":"druntime","parentType":"","signature":"RPC_C_NS_SYNTAX_DEFAULT","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_NS_SYNTAX_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_NS_SYNTAX_DCE","package":"druntime","parentType":"","signature":"RPC_C_NS_SYNTAX_DCE","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_NS_SYNTAX_DCE"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_PROFILE_DEFAULT_ELT","package":"druntime","parentType":"","signature":"RPC_C_PROFILE_DEFAULT_ELT","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_PROFILE_DEFAULT_ELT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_PROFILE_ALL_ELT","package":"druntime","parentType":"","signature":"RPC_C_PROFILE_ALL_ELT","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_PROFILE_ALL_ELT"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_PROFILE_MATCH_BY_IF","package":"druntime","parentType":"","signature":"RPC_C_PROFILE_MATCH_BY_IF","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_PROFILE_MATCH_BY_IF"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_PROFILE_MATCH_BY_MBR","package":"druntime","parentType":"","signature":"RPC_C_PROFILE_MATCH_BY_MBR","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_PROFILE_MATCH_BY_MBR"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_PROFILE_MATCH_BY_BOTH","package":"druntime","parentType":"","signature":"RPC_C_PROFILE_MATCH_BY_BOTH","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_PROFILE_MATCH_BY_BOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.rpcnsi","name":"RPC_C_NS_DEFAULT_EXP_AGE","package":"druntime","parentType":"","signature":"RPC_C_NS_DEFAULT_EXP_AGE","url":"/ddoc/druntime/core/sys/windows/rpcnsi.html#RPC_C_NS_DEFAULT_EXP_AGE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcnsip","name":"core.sys.windows.rpcnsip","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcnsip.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_RpcNsGetBuffer","package":"druntime","parentType":"","signature":"RPC_STATUS I_RpcNsGetBuffer(PRPC_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_RpcNsGetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_RpcNsSendReceive","package":"druntime","parentType":"","signature":"RPC_STATUS I_RpcNsSendReceive(PRPC_MESSAGE,  RPC_BINDING_HANDLE *)","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_RpcNsSendReceive.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_RpcNsRaiseException","package":"druntime","parentType":"","signature":"void I_RpcNsRaiseException(PRPC_MESSAGE,  RPC_STATUS)","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_RpcNsRaiseException.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_RpcReBindBuffer","package":"druntime","parentType":"","signature":"RPC_STATUS I_RpcReBindBuffer(PRPC_MESSAGE)","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_RpcReBindBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_NsServerBindSearch","package":"druntime","parentType":"","signature":"RPC_STATUS I_NsServerBindSearch()","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_NsServerBindSearch.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_NsClientBindSearch","package":"druntime","parentType":"","signature":"RPC_STATUS I_NsClientBindSearch()","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_NsClientBindSearch.html"},{"doc":"","kind":"function","module":"core.sys.windows.rpcnsip","name":"I_NsClientBindDone","package":"druntime","parentType":"","signature":"void I_NsClientBindDone()","url":"/ddoc/druntime/core/sys/windows/rpcnsip/I_NsClientBindDone.html"},{"doc":"","kind":"struct","module":"core.sys.windows.rpcnsip","name":"RPC_IMPORT_CONTEXT_P","package":"druntime","parentType":"","signature":"RPC_IMPORT_CONTEXT_P","url":"/ddoc/druntime/core/sys/windows/rpcnsip.html#RPC_IMPORT_CONTEXT_P"},{"doc":"","kind":"alias","module":"core.sys.windows.rpcnsip","name":"PRPC_IMPORT_CONTEXT_P","package":"druntime","parentType":"","signature":"PRPC_IMPORT_CONTEXT_P = RPC_IMPORT_CONTEXT_P *","url":"/ddoc/druntime/core/sys/windows/rpcnsip.html#PRPC_IMPORT_CONTEXT_P"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.rpcnterr","name":"core.sys.windows.rpcnterr","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/rpcnterr.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.schannel","name":"core.sys.windows.schannel","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/schannel.html"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"_HMAPPER","package":"druntime","parentType":"","signature":"_HMAPPER","url":"/ddoc/druntime/core/sys/windows/schannel.html#_HMAPPER"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SCHANNEL_CRED","package":"druntime","parentType":"","signature":"SCHANNEL_CRED","url":"/ddoc/druntime/core/sys/windows/schannel.html#SCHANNEL_CRED"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSCHANNEL_CRED","package":"druntime","parentType":"","signature":"PSCHANNEL_CRED = SCHANNEL_CRED *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSCHANNEL_CRED"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SecPkgCred_SupportedAlgs","package":"druntime","parentType":"","signature":"SecPkgCred_SupportedAlgs","url":"/ddoc/druntime/core/sys/windows/schannel.html#SecPkgCred_SupportedAlgs"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSecPkgCred_SupportedAlgs","package":"druntime","parentType":"","signature":"PSecPkgCred_SupportedAlgs = SecPkgCred_SupportedAlgs *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSecPkgCred_SupportedAlgs"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SecPkgCred_CypherStrengths","package":"druntime","parentType":"","signature":"SecPkgCred_CypherStrengths","url":"/ddoc/druntime/core/sys/windows/schannel.html#SecPkgCred_CypherStrengths"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSecPkgCred_CypherStrengths","package":"druntime","parentType":"","signature":"PSecPkgCred_CypherStrengths = SecPkgCred_CypherStrengths *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSecPkgCred_CypherStrengths"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SecPkgCred_SupportedProtocols","package":"druntime","parentType":"","signature":"SecPkgCred_SupportedProtocols","url":"/ddoc/druntime/core/sys/windows/schannel.html#SecPkgCred_SupportedProtocols"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSecPkgCred_SupportedProtocols","package":"druntime","parentType":"","signature":"PSecPkgCred_SupportedProtocols = SecPkgCred_SupportedProtocols *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSecPkgCred_SupportedProtocols"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SecPkgContext_IssuerListInfoEx","package":"druntime","parentType":"","signature":"SecPkgContext_IssuerListInfoEx","url":"/ddoc/druntime/core/sys/windows/schannel.html#SecPkgContext_IssuerListInfoEx"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSecPkgContext_IssuerListInfoEx","package":"druntime","parentType":"","signature":"PSecPkgContext_IssuerListInfoEx = SecPkgContext_IssuerListInfoEx *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSecPkgContext_IssuerListInfoEx"},{"doc":"","kind":"struct","module":"core.sys.windows.schannel","name":"SecPkgContext_ConnectionInfo","package":"druntime","parentType":"","signature":"SecPkgContext_ConnectionInfo","url":"/ddoc/druntime/core/sys/windows/schannel.html#SecPkgContext_ConnectionInfo"},{"doc":"","kind":"alias","module":"core.sys.windows.schannel","name":"PSecPkgContext_ConnectionInfo","package":"druntime","parentType":"","signature":"PSecPkgContext_ConnectionInfo = SecPkgContext_ConnectionInfo *","url":"/ddoc/druntime/core/sys/windows/schannel.html#PSecPkgContext_ConnectionInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.schannel","name":"SCHANNEL_CRED_VERSION","package":"druntime","parentType":"","signature":"DWORD SCHANNEL_CRED_VERSION","url":"/ddoc/druntime/core/sys/windows/schannel.html#SCHANNEL_CRED_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.schannel","name":"SCHANNEL_SHUTDOWN","package":"druntime","parentType":"","signature":"SCHANNEL_SHUTDOWN","url":"/ddoc/druntime/core/sys/windows/schannel.html#SCHANNEL_SHUTDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.schannel","name":"SP_PROT_PCT1_SERVER","package":"druntime","parentType":"","signature":"DWORD SP_PROT_PCT1_SERVER","url":"/ddoc/druntime/core/sys/windows/schannel.html#SP_PROT_PCT1_SERVER"},{"doc":"","kind":"variable","module":"core.sys.windows.schannel","name":"SCH_CRED_NO_SYSTEM_MAPPER","package":"druntime","parentType":"","signature":"DWORD SCH_CRED_NO_SYSTEM_MAPPER","url":"/ddoc/druntime/core/sys/windows/schannel.html#SCH_CRED_NO_SYSTEM_MAPPER"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.sdkddkver","name":"core.sys.windows.sdkddkver","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html"},{"doc":"","kind":"function","module":"core.sys.windows.sdkddkver","name":"OSVER","package":"druntime","parentType":"","signature":"uint OSVER(uint  Version)","url":"/ddoc/druntime/core/sys/windows/sdkddkver/OSVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.sdkddkver","name":"SPVER","package":"druntime","parentType":"","signature":"uint SPVER(uint  Version)","url":"/ddoc/druntime/core/sys/windows/sdkddkver/SPVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.sdkddkver","name":"SUBVER","package":"druntime","parentType":"","signature":"uint SUBVER(uint  Version)","url":"/ddoc/druntime/core/sys/windows/sdkddkver/SUBVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.sdkddkver","name":"NTDDI_VERSION_FROM_WIN32_WINNT2","package":"druntime","parentType":"","signature":"uint NTDDI_VERSION_FROM_WIN32_WINNT2(uint  Version)","url":"/ddoc/druntime/core/sys/windows/sdkddkver/NTDDI_VERSION_FROM_WIN32_WINNT2.html"},{"doc":"","kind":"alias","module":"core.sys.windows.sdkddkver","name":"NTDDI_VERSION_FROM_WIN32_WINNT","package":"druntime","parentType":"","signature":"NTDDI_VERSION_FROM_WIN32_WINNT = NTDDI_VERSION_FROM_WIN32_WINNT2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VERSION_FROM_WIN32_WINNT"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_NT4","package":"druntime","parentType":"","signature":"_WIN32_WINNT_NT4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_NT4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WIN2K","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WIN2K","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WIN2K"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WINXP","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WINXP","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WINXP"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WS03","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WS03","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WS03"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WIN6","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WIN6","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WIN6"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_VISTA","package":"druntime","parentType":"","signature":"_WIN32_WINNT_VISTA","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_VISTA"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WS08","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WS08","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WS08"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_LONGHORN","package":"druntime","parentType":"","signature":"_WIN32_WINNT_LONGHORN","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_LONGHORN"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WIN7","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WIN7","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WIN7"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WIN8","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WIN8","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WIN8"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WINBLUE","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WINBLUE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WINBLUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WINTHRESHOLD","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WINTHRESHOLD","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WINTHRESHOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_WINNT_WIN10","package":"druntime","parentType":"","signature":"_WIN32_WINNT_WIN10","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_WINNT_WIN10"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE20","package":"druntime","parentType":"","signature":"_WIN32_IE_IE20","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE20"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE30","package":"druntime","parentType":"","signature":"_WIN32_IE_IE30","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE30"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE302","package":"druntime","parentType":"","signature":"_WIN32_IE_IE302","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE302"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE40","package":"druntime","parentType":"","signature":"_WIN32_IE_IE40","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE40"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE401","package":"druntime","parentType":"","signature":"_WIN32_IE_IE401","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE401"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE50","package":"druntime","parentType":"","signature":"_WIN32_IE_IE50","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE50"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE501","package":"druntime","parentType":"","signature":"_WIN32_IE_IE501","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE501"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE55","package":"druntime","parentType":"","signature":"_WIN32_IE_IE55","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE55"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE60","package":"druntime","parentType":"","signature":"_WIN32_IE_IE60","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE60"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE60SP1","package":"druntime","parentType":"","signature":"_WIN32_IE_IE60SP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE60SP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE60SP2","package":"druntime","parentType":"","signature":"_WIN32_IE_IE60SP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE60SP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE70","package":"druntime","parentType":"","signature":"_WIN32_IE_IE70","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE70"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE80","package":"druntime","parentType":"","signature":"_WIN32_IE_IE80","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE80"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE90","package":"druntime","parentType":"","signature":"_WIN32_IE_IE90","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE90"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE100","package":"druntime","parentType":"","signature":"_WIN32_IE_IE100","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE100"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_IE110","package":"druntime","parentType":"","signature":"_WIN32_IE_IE110","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_IE110"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP1","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP2","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP3","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP4","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP5","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP5","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP5"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_NT4SP6","package":"druntime","parentType":"","signature":"_WIN32_IE_NT4SP6","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_NT4SP6"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN98","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN98","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN98"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN98SE","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN98SE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN98SE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WINME","package":"druntime","parentType":"","signature":"_WIN32_IE_WINME","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WINME"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN2K","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN2K","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN2K"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN2KSP1","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN2KSP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN2KSP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN2KSP2","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN2KSP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN2KSP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN2KSP3","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN2KSP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN2KSP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN2KSP4","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN2KSP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN2KSP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_XP","package":"druntime","parentType":"","signature":"_WIN32_IE_XP","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_XP"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_XPSP1","package":"druntime","parentType":"","signature":"_WIN32_IE_XPSP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_XPSP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_XPSP2","package":"druntime","parentType":"","signature":"_WIN32_IE_XPSP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_XPSP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WS03","package":"druntime","parentType":"","signature":"_WIN32_IE_WS03","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WS03"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WS03SP1","package":"druntime","parentType":"","signature":"_WIN32_IE_WS03SP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WS03SP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN6","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN6","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN6"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_LONGHORN","package":"druntime","parentType":"","signature":"_WIN32_IE_LONGHORN","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_LONGHORN"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN7","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN7","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN7"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN8","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN8","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN8"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WINBLUE","package":"druntime","parentType":"","signature":"_WIN32_IE_WINBLUE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WINBLUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WINTHRESHOLD","package":"druntime","parentType":"","signature":"_WIN32_IE_WINTHRESHOLD","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WINTHRESHOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"_WIN32_IE_WIN10","package":"druntime","parentType":"","signature":"_WIN32_IE_WIN10","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#_WIN32_IE_WIN10"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN2K","package":"druntime","parentType":"","signature":"NTDDI_WIN2K","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN2K"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN2KSP1","package":"druntime","parentType":"","signature":"NTDDI_WIN2KSP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN2KSP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN2KSP2","package":"druntime","parentType":"","signature":"NTDDI_WIN2KSP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN2KSP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN2KSP3","package":"druntime","parentType":"","signature":"NTDDI_WIN2KSP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN2KSP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN2KSP4","package":"druntime","parentType":"","signature":"NTDDI_WIN2KSP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN2KSP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINXP","package":"druntime","parentType":"","signature":"NTDDI_WINXP","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINXP"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINXPSP1","package":"druntime","parentType":"","signature":"NTDDI_WINXPSP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINXPSP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINXPSP2","package":"druntime","parentType":"","signature":"NTDDI_WINXPSP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINXPSP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINXPSP3","package":"druntime","parentType":"","signature":"NTDDI_WINXPSP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINXPSP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINXPSP4","package":"druntime","parentType":"","signature":"NTDDI_WINXPSP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINXPSP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS03","package":"druntime","parentType":"","signature":"NTDDI_WS03","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS03"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS03SP1","package":"druntime","parentType":"","signature":"NTDDI_WS03SP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS03SP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS03SP2","package":"druntime","parentType":"","signature":"NTDDI_WS03SP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS03SP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS03SP3","package":"druntime","parentType":"","signature":"NTDDI_WS03SP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS03SP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS03SP4","package":"druntime","parentType":"","signature":"NTDDI_WS03SP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS03SP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN6","package":"druntime","parentType":"","signature":"NTDDI_WIN6","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN6"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN6SP1","package":"druntime","parentType":"","signature":"NTDDI_WIN6SP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN6SP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN6SP2","package":"druntime","parentType":"","signature":"NTDDI_WIN6SP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN6SP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN6SP3","package":"druntime","parentType":"","signature":"NTDDI_WIN6SP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN6SP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN6SP4","package":"druntime","parentType":"","signature":"NTDDI_WIN6SP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN6SP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_VISTA","package":"druntime","parentType":"","signature":"NTDDI_VISTA","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VISTA"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_VISTASP1","package":"druntime","parentType":"","signature":"NTDDI_VISTASP1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VISTASP1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_VISTASP2","package":"druntime","parentType":"","signature":"NTDDI_VISTASP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VISTASP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_VISTASP3","package":"druntime","parentType":"","signature":"NTDDI_VISTASP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VISTASP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_VISTASP4","package":"druntime","parentType":"","signature":"NTDDI_VISTASP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_VISTASP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_LONGHORN","package":"druntime","parentType":"","signature":"NTDDI_LONGHORN","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_LONGHORN"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS08","package":"druntime","parentType":"","signature":"NTDDI_WS08","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS08"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS08SP2","package":"druntime","parentType":"","signature":"NTDDI_WS08SP2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS08SP2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS08SP3","package":"druntime","parentType":"","signature":"NTDDI_WS08SP3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS08SP3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WS08SP4","package":"druntime","parentType":"","signature":"NTDDI_WS08SP4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WS08SP4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN7","package":"druntime","parentType":"","signature":"NTDDI_WIN7","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN7"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN8","package":"druntime","parentType":"","signature":"NTDDI_WIN8","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN8"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINBLUE","package":"druntime","parentType":"","signature":"NTDDI_WINBLUE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINBLUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WINTHRESHOLD","package":"druntime","parentType":"","signature":"NTDDI_WINTHRESHOLD","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WINTHRESHOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10","package":"druntime","parentType":"","signature":"NTDDI_WIN10","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_TH2","package":"druntime","parentType":"","signature":"NTDDI_WIN10_TH2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_TH2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_RS1","package":"druntime","parentType":"","signature":"NTDDI_WIN10_RS1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_RS1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_RS2","package":"druntime","parentType":"","signature":"NTDDI_WIN10_RS2","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_RS2"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_RS3","package":"druntime","parentType":"","signature":"NTDDI_WIN10_RS3","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_RS3"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_RS4","package":"druntime","parentType":"","signature":"NTDDI_WIN10_RS4","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_RS4"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_RS5","package":"druntime","parentType":"","signature":"NTDDI_WIN10_RS5","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_RS5"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_19H1","package":"druntime","parentType":"","signature":"NTDDI_WIN10_19H1","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_19H1"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_VB","package":"druntime","parentType":"","signature":"NTDDI_WIN10_VB","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_VB"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_MN","package":"druntime","parentType":"","signature":"NTDDI_WIN10_MN","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_MN"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_FE","package":"druntime","parentType":"","signature":"NTDDI_WIN10_FE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_FE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_CO","package":"druntime","parentType":"","signature":"NTDDI_WIN10_CO","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_CO"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_NI","package":"druntime","parentType":"","signature":"NTDDI_WIN10_NI","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_NI"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN10_CU","package":"druntime","parentType":"","signature":"NTDDI_WIN10_CU","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN10_CU"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN11_ZN","package":"druntime","parentType":"","signature":"NTDDI_WIN11_ZN","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN11_ZN"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN11_GA","package":"druntime","parentType":"","signature":"NTDDI_WIN11_GA","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN11_GA"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"NTDDI_WIN11_GE","package":"druntime","parentType":"","signature":"NTDDI_WIN11_GE","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#NTDDI_WIN11_GE"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"WDK_NTDDI_VERSION","package":"druntime","parentType":"","signature":"WDK_NTDDI_VERSION","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#WDK_NTDDI_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"OSVERSION_MASK","package":"druntime","parentType":"","signature":"OSVERSION_MASK","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#OSVERSION_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"SPVERSION_MASK","package":"druntime","parentType":"","signature":"SPVERSION_MASK","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#SPVERSION_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"SUBVERSION_MASK","package":"druntime","parentType":"","signature":"SUBVERSION_MASK","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#SUBVERSION_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.sdkddkver","name":"WINVER","package":"druntime","parentType":"","signature":"WINVER","url":"/ddoc/druntime/core/sys/windows/sdkddkver.html#WINVER"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.secext","name":"core.sys.windows.secext","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/secext.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"GetComputerObjectNameA","package":"druntime","parentType":"","signature":"BOOLEAN GetComputerObjectNameA(EXTENDED_NAME_FORMAT,  LPSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/GetComputerObjectNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"GetComputerObjectNameW","package":"druntime","parentType":"","signature":"BOOLEAN GetComputerObjectNameW(EXTENDED_NAME_FORMAT,  LPWSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/GetComputerObjectNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"GetUserNameExA","package":"druntime","parentType":"","signature":"BOOLEAN GetUserNameExA(EXTENDED_NAME_FORMAT,  LPSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/GetUserNameExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"GetUserNameExW","package":"druntime","parentType":"","signature":"BOOLEAN GetUserNameExW(EXTENDED_NAME_FORMAT,  LPWSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/GetUserNameExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"TranslateNameA","package":"druntime","parentType":"","signature":"BOOLEAN TranslateNameA(LPCSTR,  EXTENDED_NAME_FORMAT,\n       EXTENDED_NAME_FORMAT,  LPSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/TranslateNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.secext","name":"TranslateNameW","package":"druntime","parentType":"","signature":"BOOLEAN TranslateNameW(LPCWSTR,  EXTENDED_NAME_FORMAT,\n       EXTENDED_NAME_FORMAT,  LPWSTR,  PULONG)","url":"/ddoc/druntime/core/sys/windows/secext/TranslateNameW.html"},{"doc":"","kind":"enum","module":"core.sys.windows.secext","name":"EXTENDED_NAME_FORMAT","package":"druntime","parentType":"","signature":"EXTENDED_NAME_FORMAT","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameUnknown","package":"druntime","parentType":"","signature":"NameUnknown = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameFullyQualifiedDN","package":"druntime","parentType":"","signature":"NameFullyQualifiedDN = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameSamCompatible","package":"druntime","parentType":"","signature":"NameSamCompatible = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameDisplay","package":"druntime","parentType":"","signature":"NameDisplay = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameUniqueId","package":"druntime","parentType":"","signature":"NameUniqueId = 6","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameCanonical","package":"druntime","parentType":"","signature":"NameCanonical = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameUserPrincipal","package":"druntime","parentType":"","signature":"NameUserPrincipal = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameCanonicalEx","package":"druntime","parentType":"","signature":"NameCanonicalEx = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameServicePrincipal","package":"druntime","parentType":"","signature":"NameServicePrincipal = ","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.secext","name":"NameDnsDomain","package":"druntime","parentType":"","signature":"NameDnsDomain = 12","url":"/ddoc/druntime/core/sys/windows/secext.html#EXTENDED_NAME_FORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.secext","name":"PEXTENDED_NAME_FORMAT","package":"druntime","parentType":"","signature":"PEXTENDED_NAME_FORMAT = EXTENDED_NAME_FORMAT *","url":"/ddoc/druntime/core/sys/windows/secext.html#PEXTENDED_NAME_FORMAT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.security","name":"core.sys.windows.security","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/security.html"},{"doc":"","kind":"alias","module":"core.sys.windows.security","name":"SEC_CHAR","package":"druntime","parentType":"","signature":"SEC_CHAR = char","url":"/ddoc/druntime/core/sys/windows/security.html#SEC_CHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.security","name":"SEC_WCHAR","package":"druntime","parentType":"","signature":"SEC_WCHAR = wchar","url":"/ddoc/druntime/core/sys/windows/security.html#SEC_WCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.security","name":"SECURITY_STATUS","package":"druntime","parentType":"","signature":"SECURITY_STATUS = int","url":"/ddoc/druntime/core/sys/windows/security.html#SECURITY_STATUS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.servprov","name":"core.sys.windows.servprov","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/servprov.html"},{"doc":"","kind":"interface","module":"core.sys.windows.servprov","name":"IServiceProvider","package":"druntime","parentType":"","signature":"IServiceProvider : IUnknown","url":"/ddoc/druntime/core/sys/windows/servprov.html#IServiceProvider"},{"doc":"","kind":"method","module":"core.sys.windows.servprov","name":"QueryService","package":"druntime","parentType":"IServiceProvider","signature":"HRESULT QueryService(REFGUID,  REFIID,  void * *)","url":"/ddoc/druntime/core/sys/windows/servprov/IServiceProvider.QueryService.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.setupapi","name":"core.sys.windows.setupapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/setupapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddInstallSectionToDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupAddInstallSectionToDiskSpaceListA(HDSKSPC,  HINF,  HINF,  PCSTR,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddInstallSectionToDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddInstallSectionToDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupAddInstallSectionToDiskSpaceListW(HDSKSPC,  HINF,  HINF,  PCWSTR,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddInstallSectionToDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddSectionToDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupAddSectionToDiskSpaceListA(HDSKSPC,  HINF,  HINF,  PCSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddSectionToDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddSectionToDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupAddSectionToDiskSpaceListW(HDSKSPC,  HINF,  HINF,  PCWSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddSectionToDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddToDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupAddToDiskSpaceListA(HDSKSPC,  PCSTR,  LONGLONG,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddToDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddToDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupAddToDiskSpaceListW(HDSKSPC,  PCWSTR,  LONGLONG,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddToDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddToSourceListA","package":"druntime","parentType":"","signature":"BOOL SetupAddToSourceListA(DWORD,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddToSourceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAddToSourceListW","package":"druntime","parentType":"","signature":"BOOL SetupAddToSourceListW(DWORD,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAddToSourceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQuerySourceListA","package":"druntime","parentType":"","signature":"BOOL SetupQuerySourceListA(DWORD,  PCSTR * * List,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQuerySourceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQuerySourceListW","package":"druntime","parentType":"","signature":"BOOL SetupQuerySourceListW(DWORD,  PCWSTR * * List,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQuerySourceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFreeSourceListA","package":"druntime","parentType":"","signature":"BOOL SetupFreeSourceListA(PCSTR * * List,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFreeSourceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFreeSourceListW","package":"druntime","parentType":"","signature":"BOOL SetupFreeSourceListW(PCWSTR * * List,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFreeSourceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAdjustDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupAdjustDiskSpaceListA(HDSKSPC,  LPCSTR,  LONGLONG,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAdjustDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupAdjustDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupAdjustDiskSpaceListW(HDSKSPC,  LPCWSTR,  LONGLONG,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupAdjustDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupBackupErrorA","package":"druntime","parentType":"","signature":"UINT SetupBackupErrorA(HWND,  PCSTR,  PCSTR,  PCSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupBackupErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupBackupErrorW","package":"druntime","parentType":"","signature":"UINT SetupBackupErrorW(HWND,  PCWSTR,  PCWSTR,  PCWSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupBackupErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCancelTemporary","package":"druntime","parentType":"","signature":"BOOL SetupCancelTemporary()","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCancelTemporary.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCloseFileQueue","package":"druntime","parentType":"","signature":"BOOL SetupCloseFileQueue(HSPFILEQ)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCloseFileQueue.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCloseInfFile","package":"druntime","parentType":"","signature":"VOID SetupCloseInfFile(HINF)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCloseInfFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCloseLog","package":"druntime","parentType":"","signature":"VOID SetupCloseLog()","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCloseLog.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCommitFileQueueA","package":"druntime","parentType":"","signature":"BOOL SetupCommitFileQueueA(HWND,  HSPFILEQ,  PSP_FILE_CALLBACK_A,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCommitFileQueueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCommitFileQueueW","package":"druntime","parentType":"","signature":"BOOL SetupCommitFileQueueW(HWND,  HSPFILEQ,  PSP_FILE_CALLBACK_W,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCommitFileQueueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCopyErrorA","package":"druntime","parentType":"","signature":"UINT SetupCopyErrorA(HWND,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  UINT,  DWORD,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCopyErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCopyErrorW","package":"druntime","parentType":"","signature":"UINT SetupCopyErrorW(HWND,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  UINT,  DWORD,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCopyErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCopyOEMInfA","package":"druntime","parentType":"","signature":"BOOL SetupCopyOEMInfA(PCSTR,  PCSTR,  DWORD,  DWORD,  PSTR,  DWORD,  PDWORD,  PSTR *)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCopyOEMInfA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCopyOEMInfW","package":"druntime","parentType":"","signature":"BOOL SetupCopyOEMInfW(PCWSTR,  PCWSTR,  DWORD,  DWORD,  PWSTR,  DWORD,  PDWORD,  PWSTR *)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCopyOEMInfW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCreateDiskSpaceListA","package":"druntime","parentType":"","signature":"HDSKSPC SetupCreateDiskSpaceListA(PVOID,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCreateDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupCreateDiskSpaceListW","package":"druntime","parentType":"","signature":"HDSKSPC SetupCreateDiskSpaceListW(PVOID,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupCreateDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDecompressOrCopyFileA","package":"druntime","parentType":"","signature":"DWORD SetupDecompressOrCopyFileA(PCSTR,  PCSTR,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDecompressOrCopyFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDecompressOrCopyFileW","package":"druntime","parentType":"","signature":"DWORD SetupDecompressOrCopyFileW(PCWSTR,  PCWSTR,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDecompressOrCopyFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDefaultQueueCallbackA","package":"druntime","parentType":"","signature":"UINT SetupDefaultQueueCallbackA(PVOID,  UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDefaultQueueCallbackA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDefaultQueueCallbackW","package":"druntime","parentType":"","signature":"UINT SetupDefaultQueueCallbackW(PVOID,  UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDefaultQueueCallbackW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDeleteErrorA","package":"druntime","parentType":"","signature":"UINT SetupDeleteErrorA(HWND,  PCSTR,  PCSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDeleteErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDeleteErrorW","package":"druntime","parentType":"","signature":"UINT SetupDeleteErrorW(HWND,  PCWSTR,  PCWSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDeleteErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDestroyDiskSpaceList","package":"druntime","parentType":"","signature":"BOOL SetupDestroyDiskSpaceList(HDSKSPC)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDestroyDiskSpaceList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiAskForOEMDisk","package":"druntime","parentType":"","signature":"BOOL SetupDiAskForOEMDisk(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiAskForOEMDisk.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiBuildClassInfoList","package":"druntime","parentType":"","signature":"BOOL SetupDiBuildClassInfoList(DWORD,  LPGUID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiBuildClassInfoList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiBuildClassInfoListExA","package":"druntime","parentType":"","signature":"BOOL SetupDiBuildClassInfoListExA(DWORD,  LPGUID,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiBuildClassInfoListExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiBuildClassInfoListExW","package":"druntime","parentType":"","signature":"BOOL SetupDiBuildClassInfoListExW(DWORD,  LPGUID,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiBuildClassInfoListExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiBuildDriverInfoList","package":"druntime","parentType":"","signature":"BOOL SetupDiBuildDriverInfoList(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiBuildDriverInfoList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCallClassInstaller","package":"druntime","parentType":"","signature":"BOOL SetupDiCallClassInstaller(DI_FUNCTION,  HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCallClassInstaller.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCancelDriverInfoSearch","package":"druntime","parentType":"","signature":"BOOL SetupDiCancelDriverInfoSearch(HDEVINFO)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCancelDriverInfoSearch.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiChangeState","package":"druntime","parentType":"","signature":"BOOL SetupDiChangeState(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiChangeState.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassGuidsFromNameA","package":"druntime","parentType":"","signature":"BOOL SetupDiClassGuidsFromNameA(PCSTR,  LPGUID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassGuidsFromNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassGuidsFromNameW","package":"druntime","parentType":"","signature":"BOOL SetupDiClassGuidsFromNameW(PCWSTR,  LPGUID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassGuidsFromNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassGuidsFromNameExA","package":"druntime","parentType":"","signature":"BOOL SetupDiClassGuidsFromNameExA(PCSTR,  LPGUID,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassGuidsFromNameExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassGuidsFromNameExW","package":"druntime","parentType":"","signature":"BOOL SetupDiClassGuidsFromNameExW(PCWSTR,  LPGUID,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassGuidsFromNameExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassNameFromGuidA","package":"druntime","parentType":"","signature":"BOOL SetupDiClassNameFromGuidA(const(GUID) *,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassNameFromGuidA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassNameFromGuidW","package":"druntime","parentType":"","signature":"BOOL SetupDiClassNameFromGuidW(const(GUID) *,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassNameFromGuidW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassNameFromGuidExA","package":"druntime","parentType":"","signature":"BOOL SetupDiClassNameFromGuidExA(const(GUID) *,  PSTR,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassNameFromGuidExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiClassNameFromGuidExW","package":"druntime","parentType":"","signature":"BOOL SetupDiClassNameFromGuidExW(const(GUID) *,  PWSTR,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiClassNameFromGuidExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInfoA","package":"druntime","parentType":"","signature":"BOOL SetupDiCreateDeviceInfoA(HDEVINFO,  PCSTR,  const(GUID) *,  PCSTR,  HWND,  DWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInfoW","package":"druntime","parentType":"","signature":"BOOL SetupDiCreateDeviceInfoW(HDEVINFO,  PCWSTR,  const(GUID) *,  PCWSTR,  HWND,  DWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInfoList","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiCreateDeviceInfoList(const(GUID) *,  HWND)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInfoList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInfoListExA","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiCreateDeviceInfoListExA(const(GUID) *,  HWND,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInfoListExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInfoListExW","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiCreateDeviceInfoListExW(const(GUID) *,  HWND,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInfoListExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInterfaceA","package":"druntime","parentType":"","signature":"BOOL SetupDiCreateDeviceInterfaceA(HDEVINFO,  PSP_DEVINFO_DATA,  const(GUID) *,  PCSTR,  DWORD,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInterfaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInterfaceW","package":"druntime","parentType":"","signature":"BOOL SetupDiCreateDeviceInterfaceW(HDEVINFO,  PSP_DEVINFO_DATA,  const(GUID) *,  PCWSTR,  DWORD,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInterfaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInterfaceRegKeyA","package":"druntime","parentType":"","signature":"HKEY SetupDiCreateDeviceInterfaceRegKeyA(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  DWORD,  REGSAM,  HINF,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInterfaceRegKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDeviceInterfaceRegKeyW","package":"druntime","parentType":"","signature":"HKEY SetupDiCreateDeviceInterfaceRegKeyW(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  DWORD,  REGSAM,  HINF,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDeviceInterfaceRegKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDevRegKeyA","package":"druntime","parentType":"","signature":"HKEY SetupDiCreateDevRegKeyA(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  DWORD,  HINF,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDevRegKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiCreateDevRegKeyW","package":"druntime","parentType":"","signature":"HKEY SetupDiCreateDevRegKeyW(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  DWORD,  HINF,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiCreateDevRegKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDeleteDeviceInfo","package":"druntime","parentType":"","signature":"BOOL SetupDiDeleteDeviceInfo(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDeleteDeviceInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDeleteDeviceInterfaceData","package":"druntime","parentType":"","signature":"BOOL SetupDiDeleteDeviceInterfaceData(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDeleteDeviceInterfaceData.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDeleteDeviceInterfaceRegKey","package":"druntime","parentType":"","signature":"BOOL SetupDiDeleteDeviceInterfaceRegKey(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDeleteDeviceInterfaceRegKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDeleteDevRegKey","package":"druntime","parentType":"","signature":"BOOL SetupDiDeleteDevRegKey(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDeleteDevRegKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDestroyClassImageList","package":"druntime","parentType":"","signature":"BOOL SetupDiDestroyClassImageList(PSP_CLASSIMAGELIST_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDestroyClassImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDestroyDeviceInfoList","package":"druntime","parentType":"","signature":"BOOL SetupDiDestroyDeviceInfoList(HDEVINFO)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDestroyDeviceInfoList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDestroyDriverInfoList","package":"druntime","parentType":"","signature":"BOOL SetupDiDestroyDriverInfoList(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDestroyDriverInfoList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiDrawMiniIcon","package":"druntime","parentType":"","signature":"INT SetupDiDrawMiniIcon(HDC,  RECT,  INT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiDrawMiniIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiEnumDeviceInfo","package":"druntime","parentType":"","signature":"BOOL SetupDiEnumDeviceInfo(HDEVINFO,  DWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiEnumDeviceInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiEnumDeviceInterfaces","package":"druntime","parentType":"","signature":"BOOL SetupDiEnumDeviceInterfaces(HDEVINFO,  PSP_DEVINFO_DATA,  const(GUID) *,  DWORD,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiEnumDeviceInterfaces.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiEnumDriverInfoA","package":"druntime","parentType":"","signature":"BOOL SetupDiEnumDriverInfoA(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  PSP_DRVINFO_DATA_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiEnumDriverInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiEnumDriverInfoW","package":"druntime","parentType":"","signature":"BOOL SetupDiEnumDriverInfoW(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  PSP_DRVINFO_DATA_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiEnumDriverInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetActualSectionToInstallA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetActualSectionToInstallA(HINF,  PCSTR,  PSTR,  DWORD,  PDWORD,  PSTR *)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetActualSectionToInstallA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetActualSectionToInstallW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetActualSectionToInstallW(HINF,  PCWSTR,  PWSTR,  DWORD,  PDWORD,  PWSTR *)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetActualSectionToInstallW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassBitmapIndex","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassBitmapIndex(const(GUID) *,  PINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassBitmapIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDescriptionA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDescriptionA(const(GUID) *,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDescriptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDescriptionW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDescriptionW(const(GUID) *,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDescriptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDescriptionExA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDescriptionExA(const(GUID) *,  PSTR,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDescriptionExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDescriptionExW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDescriptionExW(const(GUID) *,  PWSTR,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDescriptionExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevPropertySheetsA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDevPropertySheetsA(HDEVINFO,  PSP_DEVINFO_DATA,  LPPROPSHEETHEADERA,  DWORD,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevPropertySheetsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevPropertySheetsW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassDevPropertySheetsW(HDEVINFO,  PSP_DEVINFO_DATA,  LPPROPSHEETHEADERW,  DWORD,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevPropertySheetsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevsA","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiGetClassDevsA(const(GUID) *,  PCSTR,  HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevsW","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiGetClassDevsW(const(GUID) *,  PCWSTR,  HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevsExA","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiGetClassDevsExA(const(GUID) *,  PCSTR,  HWND,  DWORD,  HDEVINFO,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevsExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassDevsExW","package":"druntime","parentType":"","signature":"HDEVINFO SetupDiGetClassDevsExW(const(GUID) *,  PCWSTR,  HWND,  DWORD,  HDEVINFO,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassDevsExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassImageIndex","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassImageIndex(PSP_CLASSIMAGELIST_DATA,  const(GUID) *,  PINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassImageIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassImageList","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassImageList(PSP_CLASSIMAGELIST_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassImageList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassImageListExA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassImageListExA(PSP_CLASSIMAGELIST_DATA,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassImageListExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassImageListExW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassImageListExW(PSP_CLASSIMAGELIST_DATA,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassImageListExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_CLASSINSTALL_HEADER,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_CLASSINSTALL_HEADER,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassRegistryPropertyA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassRegistryPropertyA(LPGUID,  DWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassRegistryPropertyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetClassRegistryPropertyW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetClassRegistryPropertyW(LPGUID,  DWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetClassRegistryPropertyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInfoListClass","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInfoListClass(HDEVINFO,  LPGUID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInfoListClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInfoListDetailA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInfoListDetailA(HDEVINFO,  PSP_DEVINFO_LIST_DETAIL_DATA_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInfoListDetailA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInfoListDetailW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInfoListDetailW(HDEVINFO,  PSP_DEVINFO_LIST_DETAIL_DATA_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInfoListDetailW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DEVINSTALL_PARAMS_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DEVINSTALL_PARAMS_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInstanceIdA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInstanceIdA(HDEVINFO,  PSP_DEVINFO_DATA,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInstanceIdA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInstanceIdW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInstanceIdW(HDEVINFO,  PSP_DEVINFO_DATA,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInstanceIdW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInterfaceAlias","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInterfaceAlias(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  const(GUID) *,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInterfaceAlias.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInterfaceDetailA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInterfaceDetailA(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  PSP_DEVICE_INTERFACE_DETAIL_DATA_A,  DWORD,  PDWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInterfaceDetailA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceInterfaceDetailW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceInterfaceDetailW(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  PSP_DEVICE_INTERFACE_DETAIL_DATA_W,  DWORD,  PDWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceInterfaceDetailW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceRegistryPropertyA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceRegistryPropertyA(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceRegistryPropertyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDeviceRegistryPropertyW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDeviceRegistryPropertyW(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDeviceRegistryPropertyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDriverInfoDetailA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDriverInfoDetailA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_A,  PSP_DRVINFO_DETAIL_DATA_A,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDriverInfoDetailA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDriverInfoDetailW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDriverInfoDetailW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_W,  PSP_DRVINFO_DETAIL_DATA_W,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDriverInfoDetailW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDriverInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDriverInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_A,  PSP_DRVINSTALL_PARAMS)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDriverInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetDriverInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetDriverInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_W,  PSP_DRVINSTALL_PARAMS)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetDriverInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileFriendlyNameA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileFriendlyNameA(DWORD,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileFriendlyNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileFriendlyNameExA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileFriendlyNameExA(DWORD,  PSTR,  DWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileFriendlyNameExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileFriendlyNameExW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileFriendlyNameExW(DWORD,  PWSTR,  DWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileFriendlyNameExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileFriendlyNameW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileFriendlyNameW(DWORD,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileFriendlyNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileList","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileList(PDWORD,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileList.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileListExA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileListExA(PDWORD,  DWORD,  PDWORD,  PDWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileListExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetHwProfileListExW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetHwProfileListExW(PDWORD,  DWORD,  PDWORD,  PDWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetHwProfileListExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetINFClassA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetINFClassA(PCSTR,  LPGUID,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetINFClassA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetINFClassW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetINFClassW(PCWSTR,  LPGUID,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetINFClassW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetSelectedDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiGetSelectedDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetSelectedDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetSelectedDriverA","package":"druntime","parentType":"","signature":"BOOL SetupDiGetSelectedDriverA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetSelectedDriverA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetSelectedDriverW","package":"druntime","parentType":"","signature":"BOOL SetupDiGetSelectedDriverW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetSelectedDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiGetWizardage","package":"druntime","parentType":"","signature":"HPROPSHEETPAGE SetupDiGetWizardage(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_INSTALLWIZARD_DATA,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiGetWizardage.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallClassA","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallClassA(HWND,  PCSTR,  DWORD,  HSPFILEQ)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallClassA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallClassW","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallClassW(HWND,  PCWSTR,  DWORD,  HSPFILEQ)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallClassW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallClassExA","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallClassExA(HWND,  PCSTR,  DWORD,  HSPFILEQ,  const(GUID) *,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallClassExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallClassExW","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallClassExW(HWND,  PCWSTR,  DWORD,  HSPFILEQ,  const(GUID) *,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallClassExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallDeviceInterfaces","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallDeviceInterfaces(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallDeviceInterfaces.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiInstallDriverFiles","package":"druntime","parentType":"","signature":"BOOL SetupDiInstallDriverFiles(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiInstallDriverFiles.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiLoadClassIcon","package":"druntime","parentType":"","signature":"BOOL SetupDiLoadClassIcon(const(GUID) *,  HICON *,  PINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiLoadClassIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiMoveDuplicateDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiMoveDuplicateDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiMoveDuplicateDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenClassRegKey","package":"druntime","parentType":"","signature":"HKEY SetupDiOpenClassRegKey(const(GUID) *,  REGSAM)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenClassRegKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenClassRegKeyExA","package":"druntime","parentType":"","signature":"HKEY SetupDiOpenClassRegKeyExA(const(GUID) *,  REGSAM,  DWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenClassRegKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenClassRegKeyExW","package":"druntime","parentType":"","signature":"HKEY SetupDiOpenClassRegKeyExW(const(GUID) *,  REGSAM,  DWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenClassRegKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDeviceInfoA","package":"druntime","parentType":"","signature":"BOOL SetupDiOpenDeviceInfoA(HDEVINFO,  PCSTR,  HWND,  DWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDeviceInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDeviceInfoW","package":"druntime","parentType":"","signature":"BOOL SetupDiOpenDeviceInfoW(HDEVINFO,  PCWSTR,  HWND,  DWORD,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDeviceInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDeviceInterfaceA","package":"druntime","parentType":"","signature":"BOOL SetupDiOpenDeviceInterfaceA(HDEVINFO,  PCSTR,  DWORD,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDeviceInterfaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDeviceInterfaceW","package":"druntime","parentType":"","signature":"BOOL SetupDiOpenDeviceInterfaceW(HDEVINFO,  PCWSTR,  DWORD,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDeviceInterfaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDeviceInterfaceRegKey","package":"druntime","parentType":"","signature":"HKEY SetupDiOpenDeviceInterfaceRegKey(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA,  DWORD,  REGSAM)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDeviceInterfaceRegKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiOpenDevRegKey","package":"druntime","parentType":"","signature":"HKEY SetupDiOpenDevRegKey(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  DWORD,  DWORD,  REGSAM)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiOpenDevRegKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiRegisterCoDeviceInstallers","package":"druntime","parentType":"","signature":"BOOL SetupDiRegisterCoDeviceInstallers(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiRegisterCoDeviceInstallers.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiRegisterDeviceInfo","package":"druntime","parentType":"","signature":"BOOL SetupDiRegisterDeviceInfo(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  PSP_DETSIG_CMPPROC,  PVOID,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiRegisterDeviceInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiRemoveDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiRemoveDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiRemoveDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiRemoveDeviceInterface","package":"druntime","parentType":"","signature":"BOOL SetupDiRemoveDeviceInterface(HDEVINFO,  PSP_DEVICE_INTERFACE_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiRemoveDeviceInterface.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSelectBestCompatDrv","package":"druntime","parentType":"","signature":"BOOL SetupDiSelectBestCompatDrv(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSelectBestCompatDrv.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSelectDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiSelectDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSelectDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSelectOEMDrv","package":"druntime","parentType":"","signature":"BOOL SetupDiSelectOEMDrv(HWND,  HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSelectOEMDrv.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetClassInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetClassInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_CLASSINSTALL_HEADER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetClassInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetClassInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetClassInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_CLASSINSTALL_HEADER,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetClassInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetClassRegistryPropertyA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetClassRegistryPropertyA(LPGUID,  DWORD,  const(BYTE) *,  DWORD,  PCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetClassRegistryPropertyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetClassRegistryPropertyW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetClassRegistryPropertyW(LPGUID,  DWORD,  const(BYTE) *,  DWORD,  PCWSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetClassRegistryPropertyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDeviceInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDeviceInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DEVINSTALL_PARAMS_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDeviceInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDeviceInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDeviceInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DEVINSTALL_PARAMS_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDeviceInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDeviceRegistryPropertyA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDeviceRegistryPropertyA(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  const(BYTE) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDeviceRegistryPropertyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDeviceRegistryPropertyW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDeviceRegistryPropertyW(HDEVINFO,  PSP_DEVINFO_DATA,  DWORD,  const(BYTE) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDeviceRegistryPropertyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDriverInstallParamsA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDriverInstallParamsA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_A,  PSP_DRVINSTALL_PARAMS)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDriverInstallParamsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetDriverInstallParamsW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetDriverInstallParamsW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_W,  PSP_DRVINSTALL_PARAMS)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetDriverInstallParamsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetSelectedDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiSetSelectedDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetSelectedDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetSelectedDriverA","package":"druntime","parentType":"","signature":"BOOL SetupDiSetSelectedDriverA(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetSelectedDriverA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiSetSelectedDriverW","package":"druntime","parentType":"","signature":"BOOL SetupDiSetSelectedDriverW(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DRVINFO_DATA_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiSetSelectedDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDiUnremoveDevice","package":"druntime","parentType":"","signature":"BOOL SetupDiUnremoveDevice(HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDiUnremoveDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDuplicateDiskSpaceListA","package":"druntime","parentType":"","signature":"HDSKSPC SetupDuplicateDiskSpaceListA(HDSKSPC,  PVOID,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDuplicateDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupDuplicateDiskSpaceListW","package":"druntime","parentType":"","signature":"HDSKSPC SetupDuplicateDiskSpaceListW(HDSKSPC,  PVOID,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupDuplicateDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFindFirstLineA","package":"druntime","parentType":"","signature":"BOOL SetupFindFirstLineA(HINF,  PCSTR,  PCSTR,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFindFirstLineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFindFirstLineW","package":"druntime","parentType":"","signature":"BOOL SetupFindFirstLineW(HINF,  PCWSTR,  PCWSTR,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFindFirstLineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFindNextLine","package":"druntime","parentType":"","signature":"BOOL SetupFindNextLine(PINFCONTEXT,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFindNextLine.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFindNextMatchLineA","package":"druntime","parentType":"","signature":"BOOL SetupFindNextMatchLineA(PINFCONTEXT,  PCSTR,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFindNextMatchLineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFindNextMatchLineW","package":"druntime","parentType":"","signature":"BOOL SetupFindNextMatchLineW(PINFCONTEXT,  PCWSTR,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFindNextMatchLineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFreeA","package":"druntime","parentType":"","signature":"BOOL SetupFreeA(PCSTR * *,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFreeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupFreeW","package":"druntime","parentType":"","signature":"BOOL SetupFreeW(PCWSTR * *,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupFreeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetBackupInformationA","package":"druntime","parentType":"","signature":"BOOL SetupGetBackupInformationA(HSPFILEQ,  PSP_BACKUP_QUEUE_PARAMS_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetBackupInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetBackupInformationW","package":"druntime","parentType":"","signature":"BOOL SetupGetBackupInformationW(HSPFILEQ,  PSP_BACKUP_QUEUE_PARAMS_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetBackupInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetBinaryField","package":"druntime","parentType":"","signature":"BOOL SetupGetBinaryField(PINFCONTEXT,  DWORD,  PBYTE,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetBinaryField.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetFieldCount","package":"druntime","parentType":"","signature":"DWORD SetupGetFieldCount(PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetFieldCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetFileCompressionInfoA","package":"druntime","parentType":"","signature":"DWORD SetupGetFileCompressionInfoA(PCSTR,  PSTR *,  PDWORD,  PDWORD,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetFileCompressionInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetFileCompressionInfoW","package":"druntime","parentType":"","signature":"DWORD SetupGetFileCompressionInfoW(PCWSTR,  PWSTR *,  PDWORD,  PDWORD,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetFileCompressionInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetInfFileListA","package":"druntime","parentType":"","signature":"BOOL SetupGetInfFileListA(PCSTR,  DWORD,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetInfFileListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetInfFileListW","package":"druntime","parentType":"","signature":"BOOL SetupGetInfFileListW(PCWSTR,  DWORD,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetInfFileListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetInfInformationA","package":"druntime","parentType":"","signature":"BOOL SetupGetInfInformationA(LPCVOID,  DWORD,  PSP_INF_INFORMATION,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetInfInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetInfInformationW","package":"druntime","parentType":"","signature":"BOOL SetupGetInfInformationW(LPCVOID,  DWORD,  PSP_INF_INFORMATION,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetInfInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetIntField","package":"druntime","parentType":"","signature":"BOOL SetupGetIntField(PINFCONTEXT,  DWORD,  PINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetIntField.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineByIndexA","package":"druntime","parentType":"","signature":"BOOL SetupGetLineByIndexA(HINF,  PCSTR,  DWORD,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineByIndexA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineByIndexW","package":"druntime","parentType":"","signature":"BOOL SetupGetLineByIndexW(HINF,  PCWSTR,  DWORD,  PINFCONTEXT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineByIndexW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineCountA","package":"druntime","parentType":"","signature":"LONG SetupGetLineCountA(HINF,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineCountA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineCountW","package":"druntime","parentType":"","signature":"LONG SetupGetLineCountW(HINF,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineCountW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineTextA","package":"druntime","parentType":"","signature":"BOOL SetupGetLineTextA(PINFCONTEXT,  HINF,  PCSTR,  PCSTR,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetLineTextW","package":"druntime","parentType":"","signature":"BOOL SetupGetLineTextW(PINFCONTEXT,  HINF,  PCWSTR,  PCWSTR,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetLineTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetMultiSzFieldA","package":"druntime","parentType":"","signature":"BOOL SetupGetMultiSzFieldA(PINFCONTEXT,  DWORD,  PSTR,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetMultiSzFieldA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetMultiSzFieldW","package":"druntime","parentType":"","signature":"BOOL SetupGetMultiSzFieldW(PINFCONTEXT,  DWORD,  PWSTR,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetMultiSzFieldW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceFileLocationA","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceFileLocationA(HINF,  PINFCONTEXT,  PCSTR,  PUINT,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceFileLocationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceFileLocationW","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceFileLocationW(HINF,  PINFCONTEXT,  PCWSTR,  PUINT,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceFileLocationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceFileSizeA","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceFileSizeA(HINF,  PINFCONTEXT,  PCSTR,  PCSTR,  PDWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceFileSizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceFileSizeW","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceFileSizeW(HINF,  PINFCONTEXT,  PCWSTR,  PCWSTR,  PDWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceFileSizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceInfoA","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceInfoA(HINF,  UINT,  UINT,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetSourceInfoW","package":"druntime","parentType":"","signature":"BOOL SetupGetSourceInfoW(HINF,  UINT,  UINT,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetSourceInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetStringFieldA","package":"druntime","parentType":"","signature":"BOOL SetupGetStringFieldA(PINFCONTEXT,  DWORD,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetStringFieldA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetStringFieldW","package":"druntime","parentType":"","signature":"BOOL SetupGetStringFieldW(PINFCONTEXT,  DWORD,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetStringFieldW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetTargetPathA","package":"druntime","parentType":"","signature":"BOOL SetupGetTargetPathA(HINF,  PINFCONTEXT,  PCSTR,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetTargetPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupGetTargetPathW","package":"druntime","parentType":"","signature":"BOOL SetupGetTargetPathW(HINF,  PINFCONTEXT,  PCWSTR,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupGetTargetPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInitDefaultQueueCallback","package":"druntime","parentType":"","signature":"PVOID SetupInitDefaultQueueCallback(HWND)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInitDefaultQueueCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInitDefaultQueueCallbackEx","package":"druntime","parentType":"","signature":"PVOID SetupInitDefaultQueueCallbackEx(HWND,  HWND,  UINT,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInitDefaultQueueCallbackEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInitializeFileLogA","package":"druntime","parentType":"","signature":"HSPFILELOG SetupInitializeFileLogA(PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInitializeFileLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInitializeFileLogW","package":"druntime","parentType":"","signature":"HSPFILELOG SetupInitializeFileLogW(PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInitializeFileLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFileA","package":"druntime","parentType":"","signature":"BOOL SetupInstallFileA(HINF,  PINFCONTEXT,  PCSTR,  PCSTR,  PCSTR,  DWORD,  PSP_FILE_CALLBACK_A,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFileW","package":"druntime","parentType":"","signature":"BOOL SetupInstallFileW(HINF,  PINFCONTEXT,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD,  PSP_FILE_CALLBACK_W,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFileExA","package":"druntime","parentType":"","signature":"BOOL SetupInstallFileExA(HINF,  PINFCONTEXT,  PCSTR,  PCSTR,  PCSTR,  DWORD,  PSP_FILE_CALLBACK_A,  PVOID,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFileExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFileExW","package":"druntime","parentType":"","signature":"BOOL SetupInstallFileExW(HINF,  PINFCONTEXT,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD,  PSP_FILE_CALLBACK_W,  PVOID,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFileExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFilesFromInfSectionA","package":"druntime","parentType":"","signature":"BOOL SetupInstallFilesFromInfSectionA(HINF,  HINF,  HSPFILEQ,  PCSTR,  PCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFilesFromInfSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFilesFromInfSectionW","package":"druntime","parentType":"","signature":"BOOL SetupInstallFilesFromInfSectionW(HINF,  HINF,  HSPFILEQ,  PCWSTR,  PCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFilesFromInfSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFromInfSectionA","package":"druntime","parentType":"","signature":"BOOL SetupInstallFromInfSectionA(HWND,  HINF,  PCSTR,  UINT,  HKEY,  PCSTR,  UINT,  PSP_FILE_CALLBACK_A,  PVOID,  HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFromInfSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallFromInfSectionW","package":"druntime","parentType":"","signature":"BOOL SetupInstallFromInfSectionW(HWND,  HINF,  PCWSTR,  UINT,  HKEY,  PCWSTR,  UINT,  PSP_FILE_CALLBACK_W,  PVOID,  HDEVINFO,  PSP_DEVINFO_DATA)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallFromInfSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallServicesFromInfSectionA","package":"druntime","parentType":"","signature":"BOOL SetupInstallServicesFromInfSectionA(HINF,  PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallServicesFromInfSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallServicesFromInfSectionW","package":"druntime","parentType":"","signature":"BOOL SetupInstallServicesFromInfSectionW(HINF,  PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallServicesFromInfSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallServicesFromInfSectionExA","package":"druntime","parentType":"","signature":"BOOL SetupInstallServicesFromInfSectionExA(HINF,  PCSTR,  DWORD,  HDEVINFO,  PSP_DEVINFO_DATA,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallServicesFromInfSectionExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupInstallServicesFromInfSectionExW","package":"druntime","parentType":"","signature":"BOOL SetupInstallServicesFromInfSectionExW(HINF,  PCWSTR,  DWORD,  HDEVINFO,  PSP_DEVINFO_DATA,  PVOID,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupInstallServicesFromInfSectionExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupIterateCabinetA","package":"druntime","parentType":"","signature":"BOOL SetupIterateCabinetA(PCSTR,  DWORD,  PSP_FILE_CALLBACK_A,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupIterateCabinetA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupIterateCabinetW","package":"druntime","parentType":"","signature":"BOOL SetupIterateCabinetW(PCWSTR,  DWORD,  PSP_FILE_CALLBACK_W,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupIterateCabinetW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupLogErrorA","package":"druntime","parentType":"","signature":"BOOL SetupLogErrorA(LPCSTR,  LogSeverity)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupLogErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupLogErrorW","package":"druntime","parentType":"","signature":"BOOL SetupLogErrorW(LPCWSTR,  LogSeverity)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupLogErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupLogFileA","package":"druntime","parentType":"","signature":"BOOL SetupLogFileA(HSPFILELOG,  PCSTR,  PCSTR,  PCSTR,  DWORD,  PCSTR,  PCSTR,  PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupLogFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupLogFileW","package":"druntime","parentType":"","signature":"BOOL SetupLogFileW(HSPFILELOG,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupLogFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenAppendInfFileA","package":"druntime","parentType":"","signature":"BOOL SetupOpenAppendInfFileA(PCSTR,  HINF,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenAppendInfFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenAppendInfFileW","package":"druntime","parentType":"","signature":"BOOL SetupOpenAppendInfFileW(PCWSTR,  HINF,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenAppendInfFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenFileQueue","package":"druntime","parentType":"","signature":"HSPFILEQ SetupOpenFileQueue()","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenFileQueue.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenInfFileA","package":"druntime","parentType":"","signature":"HINF SetupOpenInfFileA(PCSTR,  PCSTR,  DWORD,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenInfFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenInfFileW","package":"druntime","parentType":"","signature":"HINF SetupOpenInfFileW(PCWSTR,  PCWSTR,  DWORD,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenInfFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenLog","package":"druntime","parentType":"","signature":"BOOL SetupOpenLog(BOOL)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenLog.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupOpenMasterInf","package":"druntime","parentType":"","signature":"HINF SetupOpenMasterInf()","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupOpenMasterInf.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupPromptForDiskA","package":"druntime","parentType":"","signature":"UINT SetupPromptForDiskA(HWND,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  DWORD,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupPromptForDiskA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupPromptForDiskW","package":"druntime","parentType":"","signature":"UINT SetupPromptForDiskW(HWND,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupPromptForDiskW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupPromptReboot","package":"druntime","parentType":"","signature":"INT SetupPromptReboot(HSPFILEQ,  HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupPromptReboot.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryA","package":"druntime","parentType":"","signature":"BOOL SetupQueryA(DWORD,  PCSTR * *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryW","package":"druntime","parentType":"","signature":"BOOL SetupQueryW(DWORD,  PCWSTR * *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryDrivesInDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupQueryDrivesInDiskSpaceListA(HDSKSPC,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryDrivesInDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryDrivesInDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupQueryDrivesInDiskSpaceListW(HDSKSPC,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryDrivesInDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryFileLogA","package":"druntime","parentType":"","signature":"BOOL SetupQueryFileLogA(HSPFILELOG,  PCSTR,  PCSTR,  SetupFileLogInfo,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryFileLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryFileLogW","package":"druntime","parentType":"","signature":"BOOL SetupQueryFileLogW(HSPFILELOG,  PCWSTR,  PCWSTR,  SetupFileLogInfo,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryFileLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfFileInformationA","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfFileInformationA(PSP_INF_INFORMATION,  UINT,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfFileInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfFileInformationW","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfFileInformationW(PSP_INF_INFORMATION,  UINT,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfFileInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfOriginalFileInformationA","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfOriginalFileInformationA(PSP_INF_INFORMATION,  UINT,  PSP_ALTPLATFORM_INFO,  PSP_ORIGINAL_FILE_INFO_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfOriginalFileInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfOriginalFileInformationW","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfOriginalFileInformationW(PSP_INF_INFORMATION,  UINT,  PSP_ALTPLATFORM_INFO,  PSP_ORIGINAL_FILE_INFO_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfOriginalFileInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfVersionInformationA","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfVersionInformationA(PSP_INF_INFORMATION,  UINT,  PSTR,  PSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfVersionInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueryInfVersionInformationW","package":"druntime","parentType":"","signature":"BOOL SetupQueryInfVersionInformationW(PSP_INF_INFORMATION,  UINT,  PCWSTR,  PWSTR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueryInfVersionInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQuerySpaceRequiredOnDriveA","package":"druntime","parentType":"","signature":"BOOL SetupQuerySpaceRequiredOnDriveA(HDSKSPC,  PCSTR,  LONGLONG *,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQuerySpaceRequiredOnDriveA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQuerySpaceRequiredOnDriveW","package":"druntime","parentType":"","signature":"BOOL SetupQuerySpaceRequiredOnDriveW(HDSKSPC,  PCWSTR,  LONGLONG *,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQuerySpaceRequiredOnDriveW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopyA","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopyA(HSPFILEQ,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopyW","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopyW(HSPFILEQ,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopyIndirectA","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopyIndirectA(PSP_FILE_COPY_PARAMS_A)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopyIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopyIndirectW","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopyIndirectW(PSP_FILE_COPY_PARAMS_W)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopyIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopySectionA","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopySectionA(HSPFILEQ,  PCSTR,  HINF,  HINF,  PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopySectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueCopySectionW","package":"druntime","parentType":"","signature":"BOOL SetupQueueCopySectionW(HSPFILEQ,  PCWSTR,  HINF,  HINF,  PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueCopySectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDefaultCopyA","package":"druntime","parentType":"","signature":"BOOL SetupQueueDefaultCopyA(HSPFILEQ,  HINF,  PCSTR,  PCSTR,  PCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDefaultCopyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDefaultCopyW","package":"druntime","parentType":"","signature":"BOOL SetupQueueDefaultCopyW(HSPFILEQ,  HINF,  PCWSTR,  PCWSTR,  PCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDefaultCopyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDeleteA","package":"druntime","parentType":"","signature":"BOOL SetupQueueDeleteA(HSPFILEQ,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDeleteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDeleteW","package":"druntime","parentType":"","signature":"BOOL SetupQueueDeleteW(HSPFILEQ,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDeleteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDeleteSectionA","package":"druntime","parentType":"","signature":"BOOL SetupQueueDeleteSectionA(HSPFILEQ,  HINF,  HINF,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDeleteSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueDeleteSectionW","package":"druntime","parentType":"","signature":"BOOL SetupQueueDeleteSectionW(HSPFILEQ,  HINF,  HINF,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueDeleteSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueRenameA","package":"druntime","parentType":"","signature":"BOOL SetupQueueRenameA(HSPFILEQ,  PCSTR,  PCSTR,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueRenameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueRenameW","package":"druntime","parentType":"","signature":"BOOL SetupQueueRenameW(HSPFILEQ,  PCWSTR,  PCWSTR,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueRenameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueRenameSectionA","package":"druntime","parentType":"","signature":"BOOL SetupQueueRenameSectionA(HSPFILEQ,  HINF,  HINF,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueRenameSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupQueueRenameSectionW","package":"druntime","parentType":"","signature":"BOOL SetupQueueRenameSectionW(HSPFILEQ,  HINF,  HINF,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupQueueRenameSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFileLogEntryA","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFileLogEntryA(HSPFILELOG,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFileLogEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFileLogEntryW","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFileLogEntryW(HSPFILELOG,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFileLogEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFromDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFromDiskSpaceListA(HDSKSPC,  PCSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFromDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFromDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFromDiskSpaceListW(HDSKSPC,  PCWSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFromDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFromSourceListA","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFromSourceListA(DWORD,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFromSourceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveFromSourceListW","package":"druntime","parentType":"","signature":"BOOL SetupRemoveFromSourceListW(DWORD,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveFromSourceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveInstallSectionFromDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupRemoveInstallSectionFromDiskSpaceListA(HDSKSPC,  HINF,  HINF,  PCSTR,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveInstallSectionFromDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveInstallSectionFromDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupRemoveInstallSectionFromDiskSpaceListW(HDSKSPC,  HINF,  HINF,  PCWSTR,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveInstallSectionFromDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveSectionFromDiskSpaceListA","package":"druntime","parentType":"","signature":"BOOL SetupRemoveSectionFromDiskSpaceListA(HDSKSPC,  HINF,  HINF,  PCSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveSectionFromDiskSpaceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRemoveSectionFromDiskSpaceListW","package":"druntime","parentType":"","signature":"BOOL SetupRemoveSectionFromDiskSpaceListW(HDSKSPC,  HINF,  HINF,  PCWSTR,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRemoveSectionFromDiskSpaceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRenameErrorA","package":"druntime","parentType":"","signature":"UINT SetupRenameErrorA(HWND,  PCSTR,  PCSTR,  PCSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRenameErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupRenameErrorW","package":"druntime","parentType":"","signature":"UINT SetupRenameErrorW(HWND,  PCWSTR,  PCWSTR,  PCWSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupRenameErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupScanFileQueueA","package":"druntime","parentType":"","signature":"BOOL SetupScanFileQueueA(HSPFILEQ,  DWORD,  HWND,  PSP_FILE_CALLBACK_A,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupScanFileQueueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupScanFileQueueW","package":"druntime","parentType":"","signature":"BOOL SetupScanFileQueueW(HSPFILEQ,  DWORD,  HWND,  PSP_FILE_CALLBACK_W,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupScanFileQueueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetDirectoryIdA","package":"druntime","parentType":"","signature":"BOOL SetupSetDirectoryIdA(HINF,  DWORD,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetDirectoryIdA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetDirectoryIdW","package":"druntime","parentType":"","signature":"BOOL SetupSetDirectoryIdW(HINF,  DWORD,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetDirectoryIdW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetDirectoryIdExA","package":"druntime","parentType":"","signature":"BOOL SetupSetDirectoryIdExA(HINF,  DWORD,  PCSTR,  DWORD,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetDirectoryIdExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetDirectoryIdExW","package":"druntime","parentType":"","signature":"BOOL SetupSetDirectoryIdExW(HINF,  DWORD,  PCWSTR,  DWORD,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetDirectoryIdExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetFileQueueAlternatePlatformA","package":"druntime","parentType":"","signature":"BOOL SetupSetFileQueueAlternatePlatformA(HSPFILEQ,  PSP_ALTPLATFORM_INFO,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetFileQueueAlternatePlatformA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetFileQueueAlternatePlatformW","package":"druntime","parentType":"","signature":"BOOL SetupSetFileQueueAlternatePlatformW(HSPFILEQ,  PSP_ALTPLATFORM_INFO,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetFileQueueAlternatePlatformW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetPlatformPathOverrideA","package":"druntime","parentType":"","signature":"BOOL SetupSetPlatformPathOverrideA(PCSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetPlatformPathOverrideA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetPlatformPathOverrideW","package":"druntime","parentType":"","signature":"BOOL SetupSetPlatformPathOverrideW(PCWSTR)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetPlatformPathOverrideW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetSourceListA","package":"druntime","parentType":"","signature":"BOOL SetupSetSourceListA(DWORD,  PCSTR *,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetSourceListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupSetSourceListW","package":"druntime","parentType":"","signature":"BOOL SetupSetSourceListW(DWORD,  PCWSTR *,  UINT)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupSetSourceListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupTermDefaultQueueCallback","package":"druntime","parentType":"","signature":"VOID SetupTermDefaultQueueCallback(PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupTermDefaultQueueCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.setupapi","name":"SetupTerminateFileLog","package":"druntime","parentType":"","signature":"BOOL SetupTerminateFileLog(HSPFILELOG)","url":"/ddoc/druntime/core/sys/windows/setupapi/SetupTerminateFileLog.html"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"DI_FUNCTION","package":"druntime","parentType":"","signature":"DI_FUNCTION = UINT","url":"/ddoc/druntime/core/sys/windows/setupapi.html#DI_FUNCTION"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"LogSeverity","package":"druntime","parentType":"","signature":"LogSeverity = DWORD","url":"/ddoc/druntime/core/sys/windows/setupapi.html#LogSeverity"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"HINF","package":"druntime","parentType":"","signature":"HINF = PVOID","url":"/ddoc/druntime/core/sys/windows/setupapi.html#HINF"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"HDSKSPC","package":"druntime","parentType":"","signature":"HDSKSPC = PVOID","url":"/ddoc/druntime/core/sys/windows/setupapi.html#HDSKSPC"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"HDEVINFO","package":"druntime","parentType":"","signature":"HDEVINFO = HANDLE","url":"/ddoc/druntime/core/sys/windows/setupapi.html#HDEVINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"HSPFILEQ","package":"druntime","parentType":"","signature":"HSPFILEQ = PVOID","url":"/ddoc/druntime/core/sys/windows/setupapi.html#HSPFILEQ"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"HSPFILELOG","package":"druntime","parentType":"","signature":"HSPFILELOG = PVOID","url":"/ddoc/druntime/core/sys/windows/setupapi.html#HSPFILELOG"},{"doc":"","kind":"enum","module":"core.sys.windows.setupapi","name":"SetupFileLogInfo","package":"druntime","parentType":"","signature":"SetupFileLogInfo","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogSourceFilename","package":"druntime","parentType":"","signature":"SetupFileLogSourceFilename = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogChecksum","package":"druntime","parentType":"","signature":"SetupFileLogChecksum = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogDiskTagfile","package":"druntime","parentType":"","signature":"SetupFileLogDiskTagfile = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogDiskDescription","package":"druntime","parentType":"","signature":"SetupFileLogDiskDescription = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogOtherInfo","package":"druntime","parentType":"","signature":"SetupFileLogOtherInfo = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"enum_member","module":"core.sys.windows.setupapi","name":"SetupFileLogMax","package":"druntime","parentType":"","signature":"SetupFileLogMax = ","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupFileLogInfo"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"INFCONTEXT","package":"druntime","parentType":"","signature":"INFCONTEXT","url":"/ddoc/druntime/core/sys/windows/setupapi.html#INFCONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PINFCONTEXT","package":"druntime","parentType":"","signature":"PINFCONTEXT = INFCONTEXT *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PINFCONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_INF_INFORMATION","package":"druntime","parentType":"","signature":"PSP_INF_INFORMATION = SP_INF_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_INF_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_ALTPLATFORM_INFO","package":"druntime","parentType":"","signature":"SP_ALTPLATFORM_INFO","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_ALTPLATFORM_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_ALTPLATFORM_INFO","package":"druntime","parentType":"","signature":"PSP_ALTPLATFORM_INFO = SP_ALTPLATFORM_INFO *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_ALTPLATFORM_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_ORIGINAL_FILE_INFO_A","package":"druntime","parentType":"","signature":"SP_ORIGINAL_FILE_INFO_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_ORIGINAL_FILE_INFO_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_ORIGINAL_FILE_INFO_A","package":"druntime","parentType":"","signature":"PSP_ORIGINAL_FILE_INFO_A = SP_ORIGINAL_FILE_INFO_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_ORIGINAL_FILE_INFO_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_ORIGINAL_FILE_INFO_W","package":"druntime","parentType":"","signature":"SP_ORIGINAL_FILE_INFO_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_ORIGINAL_FILE_INFO_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_ORIGINAL_FILE_INFO_W","package":"druntime","parentType":"","signature":"PSP_ORIGINAL_FILE_INFO_W = SP_ORIGINAL_FILE_INFO_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_ORIGINAL_FILE_INFO_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"FILEPATHS_A","package":"druntime","parentType":"","signature":"FILEPATHS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#FILEPATHS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PFILEPATHS_A","package":"druntime","parentType":"","signature":"PFILEPATHS_A = FILEPATHS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PFILEPATHS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"FILEPATHS_W","package":"druntime","parentType":"","signature":"FILEPATHS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#FILEPATHS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PFILEPATHS_W","package":"druntime","parentType":"","signature":"PFILEPATHS_W = FILEPATHS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PFILEPATHS_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SOURCE_MEDIA_A","package":"druntime","parentType":"","signature":"SOURCE_MEDIA_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SOURCE_MEDIA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSOURCE_MEDIA_A","package":"druntime","parentType":"","signature":"PSOURCE_MEDIA_A = SOURCE_MEDIA_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSOURCE_MEDIA_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SOURCE_MEDIA_W","package":"druntime","parentType":"","signature":"SOURCE_MEDIA_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SOURCE_MEDIA_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSOURCE_MEDIA_W","package":"druntime","parentType":"","signature":"PSOURCE_MEDIA_W = SOURCE_MEDIA_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSOURCE_MEDIA_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"CABINET_INFO_A","package":"druntime","parentType":"","signature":"CABINET_INFO_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#CABINET_INFO_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PCABINET_INFO_A","package":"druntime","parentType":"","signature":"PCABINET_INFO_A = CABINET_INFO_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PCABINET_INFO_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"CABINET_INFO_W","package":"druntime","parentType":"","signature":"CABINET_INFO_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#CABINET_INFO_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PCABINET_INFO_W","package":"druntime","parentType":"","signature":"PCABINET_INFO_W = CABINET_INFO_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PCABINET_INFO_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PFILE_IN_CABINET_INFO_A","package":"druntime","parentType":"","signature":"PFILE_IN_CABINET_INFO_A = FILE_IN_CABINET_INFO_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PFILE_IN_CABINET_INFO_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PFILE_IN_CABINET_INFO_W","package":"druntime","parentType":"","signature":"PFILE_IN_CABINET_INFO_W = FILE_IN_CABINET_INFO_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PFILE_IN_CABINET_INFO_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_FILE_COPY_PARAMS_A","package":"druntime","parentType":"","signature":"SP_FILE_COPY_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_FILE_COPY_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_FILE_COPY_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_FILE_COPY_PARAMS_A = SP_FILE_COPY_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_FILE_COPY_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_FILE_COPY_PARAMS_W","package":"druntime","parentType":"","signature":"SP_FILE_COPY_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_FILE_COPY_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_FILE_COPY_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_FILE_COPY_PARAMS_W = SP_FILE_COPY_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_FILE_COPY_PARAMS_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DEVINFO_DATA","package":"druntime","parentType":"","signature":"SP_DEVINFO_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DEVINFO_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVINFO_DATA","package":"druntime","parentType":"","signature":"PSP_DEVINFO_DATA = SP_DEVINFO_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVINFO_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVICE_INTERFACE_DATA","package":"druntime","parentType":"","signature":"PSP_DEVICE_INTERFACE_DATA = SP_DEVICE_INTERFACE_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVICE_INTERFACE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SP_INTERFACE_DEVICE_DATA","package":"druntime","parentType":"","signature":"SP_INTERFACE_DEVICE_DATA = SP_DEVICE_INTERFACE_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_INTERFACE_DEVICE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_INTERFACE_DEVICE_DATA","package":"druntime","parentType":"","signature":"PSP_INTERFACE_DEVICE_DATA = SP_DEVICE_INTERFACE_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_INTERFACE_DEVICE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVICE_INTERFACE_DETAIL_DATA_A","package":"druntime","parentType":"","signature":"PSP_DEVICE_INTERFACE_DETAIL_DATA_A = SP_DEVICE_INTERFACE_DETAIL_DATA_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVICE_INTERFACE_DETAIL_DATA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVICE_INTERFACE_DETAIL_DATA_W","package":"druntime","parentType":"","signature":"PSP_DEVICE_INTERFACE_DETAIL_DATA_W = SP_DEVICE_INTERFACE_DETAIL_DATA_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVICE_INTERFACE_DETAIL_DATA_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SP_INTERFACE_DEVICE_DETAIL_DATA_A","package":"druntime","parentType":"","signature":"SP_INTERFACE_DEVICE_DETAIL_DATA_A = SP_DEVICE_INTERFACE_DETAIL_DATA_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_INTERFACE_DEVICE_DETAIL_DATA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_INTERFACE_DEVICE_DETAIL_DATA_A","package":"druntime","parentType":"","signature":"PSP_INTERFACE_DEVICE_DETAIL_DATA_A = SP_DEVICE_INTERFACE_DETAIL_DATA_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_INTERFACE_DEVICE_DETAIL_DATA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SP_INTERFACE_DEVICE_DETAIL_DATA_W","package":"druntime","parentType":"","signature":"SP_INTERFACE_DEVICE_DETAIL_DATA_W = SP_DEVICE_INTERFACE_DETAIL_DATA_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_INTERFACE_DEVICE_DETAIL_DATA_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_INTERFACE_DEVICE_DETAIL_DATA_W","package":"druntime","parentType":"","signature":"PSP_INTERFACE_DEVICE_DETAIL_DATA_W = SP_DEVICE_INTERFACE_DETAIL_DATA_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_INTERFACE_DEVICE_DETAIL_DATA_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVINFO_LIST_DETAIL_DATA_A","package":"druntime","parentType":"","signature":"PSP_DEVINFO_LIST_DETAIL_DATA_A = SP_DEVINFO_LIST_DETAIL_DATA_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVINFO_LIST_DETAIL_DATA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVINFO_LIST_DETAIL_DATA_W","package":"druntime","parentType":"","signature":"PSP_DEVINFO_LIST_DETAIL_DATA_W = SP_DEVINFO_LIST_DETAIL_DATA_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVINFO_LIST_DETAIL_DATA_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_FILE_CALLBACK_A","package":"druntime","parentType":"","signature":"PSP_FILE_CALLBACK_A = UINT function(PVOID,  UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_FILE_CALLBACK_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_FILE_CALLBACK_W","package":"druntime","parentType":"","signature":"PSP_FILE_CALLBACK_W = UINT function(PVOID,  UINT,  UINT_PTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_FILE_CALLBACK_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DEVINSTALL_PARAMS_A","package":"druntime","parentType":"","signature":"SP_DEVINSTALL_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DEVINSTALL_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVINSTALL_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_DEVINSTALL_PARAMS_A = SP_DEVINSTALL_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVINSTALL_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DEVINSTALL_PARAMS_W","package":"druntime","parentType":"","signature":"SP_DEVINSTALL_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DEVINSTALL_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DEVINSTALL_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_DEVINSTALL_PARAMS_W = SP_DEVINSTALL_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DEVINSTALL_PARAMS_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_CLASSINSTALL_HEADER","package":"druntime","parentType":"","signature":"SP_CLASSINSTALL_HEADER","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_CLASSINSTALL_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_CLASSINSTALL_HEADER","package":"druntime","parentType":"","signature":"PSP_CLASSINSTALL_HEADER = SP_CLASSINSTALL_HEADER *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_CLASSINSTALL_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_ENABLECLASS_PARAMS","package":"druntime","parentType":"","signature":"SP_ENABLECLASS_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_ENABLECLASS_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_ENABLECLASS_PARAMS","package":"druntime","parentType":"","signature":"PSP_ENABLECLASS_PARAMS = SP_ENABLECLASS_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_ENABLECLASS_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_MOVEDEV_PARAMS","package":"druntime","parentType":"","signature":"SP_MOVEDEV_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_MOVEDEV_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_MOVEDEV_PARAMS","package":"druntime","parentType":"","signature":"PSP_MOVEDEV_PARAMS = SP_MOVEDEV_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_MOVEDEV_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_PROPCHANGE_PARAMS","package":"druntime","parentType":"","signature":"SP_PROPCHANGE_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_PROPCHANGE_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_PROPCHANGE_PARAMS","package":"druntime","parentType":"","signature":"PSP_PROPCHANGE_PARAMS = SP_PROPCHANGE_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_PROPCHANGE_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_REMOVEDEVICE_PARAMS","package":"druntime","parentType":"","signature":"SP_REMOVEDEVICE_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_REMOVEDEVICE_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_REMOVEDEVICE_PARAMS","package":"druntime","parentType":"","signature":"PSP_REMOVEDEVICE_PARAMS = SP_REMOVEDEVICE_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_REMOVEDEVICE_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_UNREMOVEDEVICE_PARAMS","package":"druntime","parentType":"","signature":"SP_UNREMOVEDEVICE_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_UNREMOVEDEVICE_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_UNREMOVEDEVICE_PARAMS","package":"druntime","parentType":"","signature":"PSP_UNREMOVEDEVICE_PARAMS = SP_UNREMOVEDEVICE_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_UNREMOVEDEVICE_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_SELECTDEVICE_PARAMS_A","package":"druntime","parentType":"","signature":"SP_SELECTDEVICE_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_SELECTDEVICE_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_SELECTDEVICE_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_SELECTDEVICE_PARAMS_A = SP_SELECTDEVICE_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_SELECTDEVICE_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_SELECTDEVICE_PARAMS_W","package":"druntime","parentType":"","signature":"SP_SELECTDEVICE_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_SELECTDEVICE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_SELECTDEVICE_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_SELECTDEVICE_PARAMS_W = SP_SELECTDEVICE_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_SELECTDEVICE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PDETECT_PROGRESS_NOTIFY","package":"druntime","parentType":"","signature":"PDETECT_PROGRESS_NOTIFY = BOOL function(PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PDETECT_PROGRESS_NOTIFY"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DETECTDEVICE_PARAMS","package":"druntime","parentType":"","signature":"SP_DETECTDEVICE_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DETECTDEVICE_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DETECTDEVICE_PARAMS","package":"druntime","parentType":"","signature":"PSP_DETECTDEVICE_PARAMS = SP_DETECTDEVICE_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DETECTDEVICE_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_INSTALLWIZARD_DATA","package":"druntime","parentType":"","signature":"SP_INSTALLWIZARD_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_INSTALLWIZARD_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_INSTALLWIZARD_DATA","package":"druntime","parentType":"","signature":"PSP_INSTALLWIZARD_DATA = SP_INSTALLWIZARD_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_INSTALLWIZARD_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_NEWDEVICEWIZARD_DATA","package":"druntime","parentType":"","signature":"SP_NEWDEVICEWIZARD_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_NEWDEVICEWIZARD_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_NEWDEVICEWIZARD_DATA","package":"druntime","parentType":"","signature":"PSP_NEWDEVICEWIZARD_DATA = SP_NEWDEVICEWIZARD_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_NEWDEVICEWIZARD_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SP_ADDPROPERTYPAGE_DATA","package":"druntime","parentType":"","signature":"SP_ADDPROPERTYPAGE_DATA = SP_NEWDEVICEWIZARD_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_ADDPROPERTYPAGE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_ADDPROPERTYPAGE_DATA","package":"druntime","parentType":"","signature":"PSP_ADDPROPERTYPAGE_DATA = SP_NEWDEVICEWIZARD_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_ADDPROPERTYPAGE_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_TROUBLESHOOTER_PARAMS_A","package":"druntime","parentType":"","signature":"SP_TROUBLESHOOTER_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_TROUBLESHOOTER_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_TROUBLESHOOTER_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_TROUBLESHOOTER_PARAMS_A = SP_TROUBLESHOOTER_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_TROUBLESHOOTER_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_TROUBLESHOOTER_PARAMS_W","package":"druntime","parentType":"","signature":"SP_TROUBLESHOOTER_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_TROUBLESHOOTER_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_TROUBLESHOOTER_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_TROUBLESHOOTER_PARAMS_W = SP_TROUBLESHOOTER_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_TROUBLESHOOTER_PARAMS_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_POWERMESSAGEWAKE_PARAMS_A","package":"druntime","parentType":"","signature":"SP_POWERMESSAGEWAKE_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_POWERMESSAGEWAKE_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_POWERMESSAGEWAKE_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_POWERMESSAGEWAKE_PARAMS_A = SP_POWERMESSAGEWAKE_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_POWERMESSAGEWAKE_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_POWERMESSAGEWAKE_PARAMS_W","package":"druntime","parentType":"","signature":"SP_POWERMESSAGEWAKE_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_POWERMESSAGEWAKE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_POWERMESSAGEWAKE_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_POWERMESSAGEWAKE_PARAMS_W = SP_POWERMESSAGEWAKE_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_POWERMESSAGEWAKE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V2_A","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V2_A = SP_DRVINFO_DATA_V2_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V2_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V2_W","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V2_W = SP_DRVINFO_DATA_V2_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V2_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DRVINFO_DATA_V1_A","package":"druntime","parentType":"","signature":"SP_DRVINFO_DATA_V1_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DRVINFO_DATA_V1_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V1_A","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V1_A = SP_DRVINFO_DATA_V1_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V1_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DRVINFO_DATA_V1_W","package":"druntime","parentType":"","signature":"SP_DRVINFO_DATA_V1_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DRVINFO_DATA_V1_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V1_W","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V1_W = SP_DRVINFO_DATA_V1_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V1_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V1","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V1 = SP_DRVINFO_DATA_V1 *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V1"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DATA_V2","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DATA_V2 = SP_DRVINFO_DATA_V2 *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DATA_V2"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DETSIG_CMPPROC","package":"druntime","parentType":"","signature":"PSP_DETSIG_CMPPROC = DWORD function(HDEVINFO,  PSP_DEVINFO_DATA,  PSP_DEVINFO_DATA,  PVOID)","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DETSIG_CMPPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DETAIL_DATA_A","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DETAIL_DATA_A = SP_DRVINFO_DETAIL_DATA_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DETAIL_DATA_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINFO_DETAIL_DATA_W","package":"druntime","parentType":"","signature":"PSP_DRVINFO_DETAIL_DATA_W = SP_DRVINFO_DETAIL_DATA_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINFO_DETAIL_DATA_W"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_DRVINSTALL_PARAMS","package":"druntime","parentType":"","signature":"SP_DRVINSTALL_PARAMS","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_DRVINSTALL_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_DRVINSTALL_PARAMS","package":"druntime","parentType":"","signature":"PSP_DRVINSTALL_PARAMS = SP_DRVINSTALL_PARAMS *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_DRVINSTALL_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"COINSTALLER_CONTEXT_DATA","package":"druntime","parentType":"","signature":"COINSTALLER_CONTEXT_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#COINSTALLER_CONTEXT_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PCOINSTALLER_CONTEXT_DATA","package":"druntime","parentType":"","signature":"PCOINSTALLER_CONTEXT_DATA = COINSTALLER_CONTEXT_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PCOINSTALLER_CONTEXT_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_CLASSIMAGELIST_DATA","package":"druntime","parentType":"","signature":"SP_CLASSIMAGELIST_DATA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_CLASSIMAGELIST_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_CLASSIMAGELIST_DATA","package":"druntime","parentType":"","signature":"PSP_CLASSIMAGELIST_DATA = SP_CLASSIMAGELIST_DATA *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_CLASSIMAGELIST_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_PROPSHEETPAGE_REQUEST","package":"druntime","parentType":"","signature":"SP_PROPSHEETPAGE_REQUEST","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_PROPSHEETPAGE_REQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_PROPSHEETPAGE_REQUEST","package":"druntime","parentType":"","signature":"PSP_PROPSHEETPAGE_REQUEST = SP_PROPSHEETPAGE_REQUEST *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_PROPSHEETPAGE_REQUEST"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_BACKUP_QUEUE_PARAMS_A","package":"druntime","parentType":"","signature":"SP_BACKUP_QUEUE_PARAMS_A","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_BACKUP_QUEUE_PARAMS_A"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_BACKUP_QUEUE_PARAMS_A","package":"druntime","parentType":"","signature":"PSP_BACKUP_QUEUE_PARAMS_A = SP_BACKUP_QUEUE_PARAMS_A *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_BACKUP_QUEUE_PARAMS_A"},{"doc":"","kind":"struct","module":"core.sys.windows.setupapi","name":"SP_BACKUP_QUEUE_PARAMS_W","package":"druntime","parentType":"","signature":"SP_BACKUP_QUEUE_PARAMS_W","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SP_BACKUP_QUEUE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"PSP_BACKUP_QUEUE_PARAMS_W","package":"druntime","parentType":"","signature":"PSP_BACKUP_QUEUE_PARAMS_W = SP_BACKUP_QUEUE_PARAMS_W *","url":"/ddoc/druntime/core/sys/windows/setupapi.html#PSP_BACKUP_QUEUE_PARAMS_W"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiCreateInterfaceDeviceW","package":"druntime","parentType":"","signature":"SetupDiCreateInterfaceDeviceW = SetupDiCreateDeviceInterfaceW","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiCreateInterfaceDeviceW"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiCreateInterfaceDeviceRegKeyW","package":"druntime","parentType":"","signature":"SetupDiCreateInterfaceDeviceRegKeyW = SetupDiCreateDeviceInterfaceRegKeyW","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiCreateInterfaceDeviceRegKeyW"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiOpenInterfaceDeviceW","package":"druntime","parentType":"","signature":"SetupDiOpenInterfaceDeviceW = SetupDiOpenDeviceInterfaceW","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiOpenInterfaceDeviceW"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiGetInterfaceDeviceDetailW","package":"druntime","parentType":"","signature":"SetupDiGetInterfaceDeviceDetailW = SetupDiGetDeviceInterfaceDetailW","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiGetInterfaceDeviceDetailW"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiCreateInterfaceDeviceA","package":"druntime","parentType":"","signature":"SetupDiCreateInterfaceDeviceA = SetupDiCreateDeviceInterfaceA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiCreateInterfaceDeviceA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiCreateInterfaceDeviceRegKeyA","package":"druntime","parentType":"","signature":"SetupDiCreateInterfaceDeviceRegKeyA = SetupDiCreateDeviceInterfaceRegKeyA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiCreateInterfaceDeviceRegKeyA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiOpenInterfaceDeviceA","package":"druntime","parentType":"","signature":"SetupDiOpenInterfaceDeviceA = SetupDiOpenDeviceInterfaceA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiOpenInterfaceDeviceA"},{"doc":"","kind":"alias","module":"core.sys.windows.setupapi","name":"SetupDiGetInterfaceDeviceDetailA","package":"druntime","parentType":"","signature":"SetupDiGetInterfaceDeviceDetailA = SetupDiGetDeviceInterfaceDetailA","url":"/ddoc/druntime/core/sys/windows/setupapi.html#SetupDiGetInterfaceDeviceDetailA"},{"doc":"","kind":"variable","module":"core.sys.windows.setupapi","name":"_SETUPAPI_VER","package":"druntime","parentType":"","signature":"UINT _SETUPAPI_VER","url":"/ddoc/druntime/core/sys/windows/setupapi.html#_SETUPAPI_VER"},{"doc":"","kind":"variable","module":"core.sys.windows.setupapi","name":"USE_SP_DRVINFO_DATA_V1","package":"druntime","parentType":"","signature":"bool USE_SP_DRVINFO_DATA_V1","url":"/ddoc/druntime/core/sys/windows/setupapi.html#USE_SP_DRVINFO_DATA_V1"},{"doc":"","kind":"variable","module":"core.sys.windows.setupapi","name":"MAX_INSTALLWIZARD_DYNAPAGES","package":"druntime","parentType":"","signature":"MAX_INSTALLWIZARD_DYNAPAGES","url":"/ddoc/druntime/core/sys/windows/setupapi.html#MAX_INSTALLWIZARD_DYNAPAGES"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.shellapi","name":"core.sys.windows.shellapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/shellapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"CommandLineToArgvW","package":"druntime","parentType":"","signature":"LPWSTR * CommandLineToArgvW(LPCWSTR,  int *)","url":"/ddoc/druntime/core/sys/windows/shellapi/CommandLineToArgvW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DragAcceptFiles","package":"druntime","parentType":"","signature":"void DragAcceptFiles(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shellapi/DragAcceptFiles.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DragFinish","package":"druntime","parentType":"","signature":"void DragFinish(HDROP)","url":"/ddoc/druntime/core/sys/windows/shellapi/DragFinish.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DragQueryFileA","package":"druntime","parentType":"","signature":"UINT DragQueryFileA(HDROP,  UINT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/DragQueryFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DragQueryFileW","package":"druntime","parentType":"","signature":"UINT DragQueryFileW(HDROP,  UINT,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/DragQueryFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DragQueryPoint","package":"druntime","parentType":"","signature":"BOOL DragQueryPoint(HDROP,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/DragQueryPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"DuplicateIcon","package":"druntime","parentType":"","signature":"HICON DuplicateIcon(HINSTANCE,  HICON)","url":"/ddoc/druntime/core/sys/windows/shellapi/DuplicateIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractAssociatedIconA","package":"druntime","parentType":"","signature":"HICON ExtractAssociatedIconA(HINSTANCE,  LPCSTR,  PWORD)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractAssociatedIconA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractAssociatedIconW","package":"druntime","parentType":"","signature":"HICON ExtractAssociatedIconW(HINSTANCE,  LPCWSTR,  PWORD)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractAssociatedIconW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractIconA","package":"druntime","parentType":"","signature":"HICON ExtractIconA(HINSTANCE,  LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractIconA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractIconW","package":"druntime","parentType":"","signature":"HICON ExtractIconW(HINSTANCE,  LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractIconW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractIconExA","package":"druntime","parentType":"","signature":"UINT ExtractIconExA(LPCSTR,  int,  HICON *,  HICON *,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractIconExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ExtractIconExW","package":"druntime","parentType":"","signature":"UINT ExtractIconExW(LPCWSTR,  int,  HICON *,  HICON *,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ExtractIconExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"FindExecutableA","package":"druntime","parentType":"","signature":"HINSTANCE FindExecutableA(LPCSTR,  LPCSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/shellapi/FindExecutableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"FindExecutableW","package":"druntime","parentType":"","signature":"HINSTANCE FindExecutableW(LPCWSTR,  LPCWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shellapi/FindExecutableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHAppBarMessage","package":"druntime","parentType":"","signature":"UINT_PTR SHAppBarMessage(DWORD,  PAPPBARDATA)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHAppBarMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"Shell_NotifyIconA","package":"druntime","parentType":"","signature":"BOOL Shell_NotifyIconA(DWORD,  PNOTIFYICONDATAA)","url":"/ddoc/druntime/core/sys/windows/shellapi/Shell_NotifyIconA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"Shell_NotifyIconW","package":"druntime","parentType":"","signature":"BOOL Shell_NotifyIconW(DWORD,  PNOTIFYICONDATAW)","url":"/ddoc/druntime/core/sys/windows/shellapi/Shell_NotifyIconW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellAboutA","package":"druntime","parentType":"","signature":"int ShellAboutA(HWND,  LPCSTR,  LPCSTR,  HICON)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellAboutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellAboutW","package":"druntime","parentType":"","signature":"int ShellAboutW(HWND,  LPCWSTR,  LPCWSTR,  HICON)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellAboutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellExecuteA","package":"druntime","parentType":"","signature":"HINSTANCE ShellExecuteA(HWND,  LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellExecuteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellExecuteW","package":"druntime","parentType":"","signature":"HINSTANCE ShellExecuteW(HWND,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellExecuteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellExecuteExA","package":"druntime","parentType":"","signature":"BOOL ShellExecuteExA(LPSHELLEXECUTEINFOA)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellExecuteExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"ShellExecuteExW","package":"druntime","parentType":"","signature":"BOOL ShellExecuteExW(LPSHELLEXECUTEINFOW)","url":"/ddoc/druntime/core/sys/windows/shellapi/ShellExecuteExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHFileOperationA","package":"druntime","parentType":"","signature":"int SHFileOperationA(LPSHFILEOPSTRUCTA)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHFileOperationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHFileOperationW","package":"druntime","parentType":"","signature":"int SHFileOperationW(LPSHFILEOPSTRUCTW)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHFileOperationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHFreeNameMappings","package":"druntime","parentType":"","signature":"void SHFreeNameMappings(HANDLE)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHFreeNameMappings.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHGetFileInfoA","package":"druntime","parentType":"","signature":"DWORD_PTR SHGetFileInfoA(LPCSTR,  DWORD,  SHFILEINFOA *,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHGetFileInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHGetFileInfoW","package":"druntime","parentType":"","signature":"DWORD_PTR SHGetFileInfoW(LPCWSTR,  DWORD,  SHFILEINFOW *,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHGetFileInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHQueryRecycleBinA","package":"druntime","parentType":"","signature":"HRESULT SHQueryRecycleBinA(LPCSTR,   LPSHQUERYRBINFO)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHQueryRecycleBinA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHQueryRecycleBinW","package":"druntime","parentType":"","signature":"HRESULT SHQueryRecycleBinW(LPCWSTR,   LPSHQUERYRBINFO)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHQueryRecycleBinW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHEmptyRecycleBinA","package":"druntime","parentType":"","signature":"HRESULT SHEmptyRecycleBinA(HWND,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHEmptyRecycleBinA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shellapi","name":"SHEmptyRecycleBinW","package":"druntime","parentType":"","signature":"HRESULT SHEmptyRecycleBinW(HWND,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shellapi/SHEmptyRecycleBinW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"FILEOP_FLAGS","package":"druntime","parentType":"","signature":"FILEOP_FLAGS = WORD","url":"/ddoc/druntime/core/sys/windows/shellapi.html#FILEOP_FLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"HDROP","package":"druntime","parentType":"","signature":"HDROP = HANDLE","url":"/ddoc/druntime/core/sys/windows/shellapi.html#HDROP"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"APPBARDATA","package":"druntime","parentType":"","signature":"APPBARDATA","url":"/ddoc/druntime/core/sys/windows/shellapi.html#APPBARDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"PAPPBARDATA","package":"druntime","parentType":"","signature":"PAPPBARDATA = APPBARDATA *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#PAPPBARDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"NOTIFYICONDATAA","package":"druntime","parentType":"","signature":"NOTIFYICONDATAA","url":"/ddoc/druntime/core/sys/windows/shellapi.html#NOTIFYICONDATAA"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"PNOTIFYICONDATAA","package":"druntime","parentType":"","signature":"PNOTIFYICONDATAA = NOTIFYICONDATAA *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#PNOTIFYICONDATAA"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"NOTIFYICONDATAW","package":"druntime","parentType":"","signature":"NOTIFYICONDATAW","url":"/ddoc/druntime/core/sys/windows/shellapi.html#NOTIFYICONDATAW"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"PNOTIFYICONDATAW","package":"druntime","parentType":"","signature":"PNOTIFYICONDATAW = NOTIFYICONDATAW *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#PNOTIFYICONDATAW"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHELLEXECUTEINFOA","package":"druntime","parentType":"","signature":"SHELLEXECUTEINFOA","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHELLEXECUTEINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHELLEXECUTEINFOA","package":"druntime","parentType":"","signature":"LPSHELLEXECUTEINFOA = SHELLEXECUTEINFOA *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHELLEXECUTEINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHELLEXECUTEINFOW","package":"druntime","parentType":"","signature":"SHELLEXECUTEINFOW","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHELLEXECUTEINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHELLEXECUTEINFOW","package":"druntime","parentType":"","signature":"LPSHELLEXECUTEINFOW = SHELLEXECUTEINFOW *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHELLEXECUTEINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHFILEOPSTRUCTA","package":"druntime","parentType":"","signature":"SHFILEOPSTRUCTA","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHFILEOPSTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHFILEOPSTRUCTA","package":"druntime","parentType":"","signature":"LPSHFILEOPSTRUCTA = SHFILEOPSTRUCTA *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHFILEOPSTRUCTA"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHFILEOPSTRUCTW","package":"druntime","parentType":"","signature":"SHFILEOPSTRUCTW","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHFILEOPSTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHFILEOPSTRUCTW","package":"druntime","parentType":"","signature":"LPSHFILEOPSTRUCTW = SHFILEOPSTRUCTW *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHFILEOPSTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHFILEINFOA","package":"druntime","parentType":"","signature":"SHFILEINFOA","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHFILEINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHFILEINFOW","package":"druntime","parentType":"","signature":"SHFILEINFOW","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHFILEINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.shellapi","name":"SHQUERYRBINFO","package":"druntime","parentType":"","signature":"SHQUERYRBINFO","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHQUERYRBINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHQUERYRBINFO","package":"druntime","parentType":"","signature":"LPSHQUERYRBINFO = SHQUERYRBINFO *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHQUERYRBINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"PNOTIFYICONDATA","package":"druntime","parentType":"","signature":"PNOTIFYICONDATA = NOTIFYICONDATA *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#PNOTIFYICONDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHELLEXECUTEINFO","package":"druntime","parentType":"","signature":"LPSHELLEXECUTEINFO = SHELLEXECUTEINFO *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHELLEXECUTEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.shellapi","name":"LPSHFILEOPSTRUCT","package":"druntime","parentType":"","signature":"LPSHFILEOPSTRUCT = SHFILEOPSTRUCT *","url":"/ddoc/druntime/core/sys/windows/shellapi.html#LPSHFILEOPSTRUCT"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SEE_MASK_CLASSNAME","package":"druntime","parentType":"","signature":"ULONG SEE_MASK_CLASSNAME","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SEE_MASK_CLASSNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"NIF_MESSAGE","package":"druntime","parentType":"","signature":"UINT NIF_MESSAGE","url":"/ddoc/druntime/core/sys/windows/shellapi.html#NIF_MESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"NIS_HIDDEN","package":"druntime","parentType":"","signature":"DWORD NIS_HIDDEN","url":"/ddoc/druntime/core/sys/windows/shellapi.html#NIS_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SE_ERR_FNF","package":"druntime","parentType":"","signature":"HINSTANCE SE_ERR_FNF","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SE_ERR_FNF"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"FOF_MULTIDESTFILES","package":"druntime","parentType":"","signature":"FILEOP_FLAGS FOF_MULTIDESTFILES","url":"/ddoc/druntime/core/sys/windows/shellapi.html#FOF_MULTIDESTFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SHGFI_LARGEICON","package":"druntime","parentType":"","signature":"UINT SHGFI_LARGEICON","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHGFI_LARGEICON"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SHERB_NOCONFIRMATION","package":"druntime","parentType":"","signature":"SHERB_NOCONFIRMATION","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHERB_NOCONFIRMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SHERB_NOPROGRESSUI","package":"druntime","parentType":"","signature":"SHERB_NOPROGRESSUI","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHERB_NOPROGRESSUI"},{"doc":"","kind":"variable","module":"core.sys.windows.shellapi","name":"SHERB_NOSOUND","package":"druntime","parentType":"","signature":"SHERB_NOSOUND","url":"/ddoc/druntime/core/sys/windows/shellapi.html#SHERB_NOSOUND"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.shldisp","name":"core.sys.windows.shldisp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/shldisp.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shldisp","name":"IAutoComplete","package":"druntime","parentType":"","signature":"IAutoComplete : IUnknown","url":"/ddoc/druntime/core/sys/windows/shldisp.html#IAutoComplete"},{"doc":"","kind":"method","module":"core.sys.windows.shldisp","name":"Init","package":"druntime","parentType":"IAutoComplete","signature":"HRESULT Init(HWND,  IUnknown,  LPCOLESTR,  LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/shldisp/IAutoComplete.Init.html"},{"doc":"","kind":"method","module":"core.sys.windows.shldisp","name":"Enable","package":"druntime","parentType":"IAutoComplete","signature":"HRESULT Enable(BOOL)","url":"/ddoc/druntime/core/sys/windows/shldisp/IAutoComplete.Enable.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shldisp","name":"LPAUTOCOMPLETE","package":"druntime","parentType":"","signature":"LPAUTOCOMPLETE = IAutoComplete","url":"/ddoc/druntime/core/sys/windows/shldisp.html#LPAUTOCOMPLETE"},{"doc":"","kind":"interface","module":"core.sys.windows.shldisp","name":"IAutoComplete2","package":"druntime","parentType":"","signature":"IAutoComplete2 : IAutoComplete","url":"/ddoc/druntime/core/sys/windows/shldisp.html#IAutoComplete2"},{"doc":"","kind":"method","module":"core.sys.windows.shldisp","name":"SetOptions","package":"druntime","parentType":"IAutoComplete2","signature":"HRESULT SetOptions(DWORD)","url":"/ddoc/druntime/core/sys/windows/shldisp/IAutoComplete2.SetOptions.html"},{"doc":"","kind":"method","module":"core.sys.windows.shldisp","name":"GetOptions","package":"druntime","parentType":"IAutoComplete2","signature":"HRESULT GetOptions(DWORD *)","url":"/ddoc/druntime/core/sys/windows/shldisp/IAutoComplete2.GetOptions.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shldisp","name":"LPAUTOCOMPLETE2","package":"druntime","parentType":"","signature":"LPAUTOCOMPLETE2 = IAutoComplete2","url":"/ddoc/druntime/core/sys/windows/shldisp.html#LPAUTOCOMPLETE2"},{"doc":"","kind":"variable","module":"core.sys.windows.shldisp","name":"ACO_AUTOSUGGEST","package":"druntime","parentType":"","signature":"DWORD ACO_AUTOSUGGEST","url":"/ddoc/druntime/core/sys/windows/shldisp.html#ACO_AUTOSUGGEST"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.shlguid","name":"core.sys.windows.shlguid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/shlguid.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.shlobj","name":"core.sys.windows.shlobj","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/shlobj.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHAddToRecentDocs","package":"druntime","parentType":"","signature":"void SHAddToRecentDocs(UINT,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHAddToRecentDocs.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHBrowseForFolderA","package":"druntime","parentType":"","signature":"LPITEMIDLIST SHBrowseForFolderA(PBROWSEINFOA)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHBrowseForFolderA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHBrowseForFolderW","package":"druntime","parentType":"","signature":"LPITEMIDLIST SHBrowseForFolderW(PBROWSEINFOW)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHBrowseForFolderW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHChangeNotify","package":"druntime","parentType":"","signature":"void SHChangeNotify(LONG,  UINT,  PCVOID,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHChangeNotify.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetDataFromIDListA","package":"druntime","parentType":"","signature":"HRESULT SHGetDataFromIDListA(LPSHELLFOLDER,  LPCITEMIDLIST,  int,  PVOID,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetDataFromIDListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetDataFromIDListW","package":"druntime","parentType":"","signature":"HRESULT SHGetDataFromIDListW(LPSHELLFOLDER,  LPCITEMIDLIST,  int,  PVOID,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetDataFromIDListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetDesktopFolder","package":"druntime","parentType":"","signature":"HRESULT SHGetDesktopFolder(LPSHELLFOLDER *)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetDesktopFolder.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetInstanceExplorer","package":"druntime","parentType":"","signature":"HRESULT SHGetInstanceExplorer(IUnknown *)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetInstanceExplorer.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetMalloc","package":"druntime","parentType":"","signature":"HRESULT SHGetMalloc(LPMALLOC *)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetMalloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetPathFromIDListA","package":"druntime","parentType":"","signature":"BOOL SHGetPathFromIDListA(LPCITEMIDLIST,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetPathFromIDListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetPathFromIDListW","package":"druntime","parentType":"","signature":"BOOL SHGetPathFromIDListW(LPCITEMIDLIST,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetPathFromIDListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetSpecialFolderLocation","package":"druntime","parentType":"","signature":"HRESULT SHGetSpecialFolderLocation(HWND,  int,  LPITEMIDLIST *)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetSpecialFolderLocation.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHLoadInProc","package":"druntime","parentType":"","signature":"HRESULT SHLoadInProc(REFCLSID)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHLoadInProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetFolderPathA","package":"druntime","parentType":"","signature":"HRESULT SHGetFolderPathA(HWND,  int,  HANDLE,  DWORD,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetFolderPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetFolderPathW","package":"druntime","parentType":"","signature":"HRESULT SHGetFolderPathW(HWND,  int,  HANDLE,  DWORD,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetFolderPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlobj","name":"SHGetSettings","package":"druntime","parentType":"","signature":"void SHGetSettings(LPSHELLFLAGSTATE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHGetSettings.html"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SHARD","package":"druntime","parentType":"","signature":"SHARD","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_PIDL","package":"druntime","parentType":"","signature":"SHARD_PIDL = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_PATHA","package":"druntime","parentType":"","signature":"SHARD_PATHA = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_PATHW","package":"druntime","parentType":"","signature":"SHARD_PATHW = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_APPIDINFO","package":"druntime","parentType":"","signature":"SHARD_APPIDINFO = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_APPIDINFOIDLIST","package":"druntime","parentType":"","signature":"SHARD_APPIDINFOIDLIST = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_LINK","package":"druntime","parentType":"","signature":"SHARD_LINK = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_APPIDINFOLINK","package":"druntime","parentType":"","signature":"SHARD_APPIDINFOLINK = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_SHELLITEM","package":"druntime","parentType":"","signature":"SHARD_SHELLITEM = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHARD_PATH","package":"druntime","parentType":"","signature":"SHARD_PATH = (_WIN32_UNICODE ?  SHARD_PATHW :  SHARD_PATHA)","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHARD"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SFGAOF","package":"druntime","parentType":"","signature":"SFGAOF : DWORD","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CANCOPY","package":"druntime","parentType":"","signature":"SFGAO_CANCOPY = DROPEFFECT.DROPEFFECT_COPY","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CANMOVE","package":"druntime","parentType":"","signature":"SFGAO_CANMOVE = DROPEFFECT.DROPEFFECT_MOVE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CANLINK","package":"druntime","parentType":"","signature":"SFGAO_CANLINK = DROPEFFECT.DROPEFFECT_LINK","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CANRENAME","package":"druntime","parentType":"","signature":"SFGAO_CANRENAME = 0x00000010L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CANDELETE","package":"druntime","parentType":"","signature":"SFGAO_CANDELETE = 0x00000020L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_HASPROPSHEET","package":"druntime","parentType":"","signature":"SFGAO_HASPROPSHEET = 0x00000040L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_DROPTARGET","package":"druntime","parentType":"","signature":"SFGAO_DROPTARGET = 0x00000100L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CAPABILITYMASK","package":"druntime","parentType":"","signature":"SFGAO_CAPABILITYMASK = 0x00000177L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_ISSLOW","package":"druntime","parentType":"","signature":"SFGAO_ISSLOW = 0x00004000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_GHOSTED","package":"druntime","parentType":"","signature":"SFGAO_GHOSTED = 0x00008000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_LINK","package":"druntime","parentType":"","signature":"SFGAO_LINK = 0x00010000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_SHARE","package":"druntime","parentType":"","signature":"SFGAO_SHARE = 0x00020000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_READONLY","package":"druntime","parentType":"","signature":"SFGAO_READONLY = 0x00040000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_HIDDEN","package":"druntime","parentType":"","signature":"SFGAO_HIDDEN = 0x00080000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_DISPLAYATTRMASK","package":"druntime","parentType":"","signature":"SFGAO_DISPLAYATTRMASK = (SFGAO_ISSLOW |  SFGAO_GHOSTED |  SFGAO_LINK\n                            |  SFGAO_SHARE |  SFGAO_READONLY |  SFGAO_HIDDEN)","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_FILESYSANCESTOR","package":"druntime","parentType":"","signature":"SFGAO_FILESYSANCESTOR = 0x10000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_FOLDER","package":"druntime","parentType":"","signature":"SFGAO_FOLDER = 0x20000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_FILESYSTEM","package":"druntime","parentType":"","signature":"SFGAO_FILESYSTEM = 0x40000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_HASSUBFOLDER","package":"druntime","parentType":"","signature":"SFGAO_HASSUBFOLDER = 0x80000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_CONTENTSMASK","package":"druntime","parentType":"","signature":"SFGAO_CONTENTSMASK = 0x80000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_VALIDATE","package":"druntime","parentType":"","signature":"SFGAO_VALIDATE = 0x01000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_REMOVABLE","package":"druntime","parentType":"","signature":"SFGAO_REMOVABLE = 0x02000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SFGAO_COMPRESSED","package":"druntime","parentType":"","signature":"SFGAO_COMPRESSED = 0x04000000L","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SFGAOF"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"SHGDNF","package":"druntime","parentType":"","signature":"SHGDNF = DWORD","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGDNF"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"CIDA","package":"druntime","parentType":"","signature":"CIDA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CIDA"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPIDA","package":"druntime","parentType":"","signature":"LPIDA = CIDA *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPIDA"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"SHITEMID","package":"druntime","parentType":"","signature":"SHITEMID","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHITEMID"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHITEMID","package":"druntime","parentType":"","signature":"LPSHITEMID = SHITEMID *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHITEMID"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCSHITEMID","package":"druntime","parentType":"","signature":"LPCSHITEMID = const(SHITEMID) *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCSHITEMID"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"ITEMIDLIST","package":"druntime","parentType":"","signature":"ITEMIDLIST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#ITEMIDLIST"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPITEMIDLIST","package":"druntime","parentType":"","signature":"LPITEMIDLIST = ITEMIDLIST *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPITEMIDLIST"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCITEMIDLIST","package":"druntime","parentType":"","signature":"LPCITEMIDLIST = const(ITEMIDLIST) *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCITEMIDLIST"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"BFFCALLBACK","package":"druntime","parentType":"","signature":"BFFCALLBACK = int  function(HWND,  UINT,  LPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFCALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"BROWSEINFOA","package":"druntime","parentType":"","signature":"BROWSEINFOA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BROWSEINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"PBROWSEINFOA","package":"druntime","parentType":"","signature":"PBROWSEINFOA = BROWSEINFOA *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#PBROWSEINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"BROWSEINFOW","package":"druntime","parentType":"","signature":"BROWSEINFOW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BROWSEINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"PBROWSEINFOW","package":"druntime","parentType":"","signature":"PBROWSEINFOW = BROWSEINFOW *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#PBROWSEINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"CMINVOKECOMMANDINFO","package":"druntime","parentType":"","signature":"CMINVOKECOMMANDINFO","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMINVOKECOMMANDINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCMINVOKECOMMANDINFO","package":"druntime","parentType":"","signature":"LPCMINVOKECOMMANDINFO = CMINVOKECOMMANDINFO *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCMINVOKECOMMANDINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"DROPFILES","package":"druntime","parentType":"","signature":"DROPFILES","url":"/ddoc/druntime/core/sys/windows/shlobj.html#DROPFILES"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPDROPFILES","package":"druntime","parentType":"","signature":"LPDROPFILES = DROPFILES *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPDROPFILES"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SHGNO","package":"druntime","parentType":"","signature":"SHGNO","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_NORMAL","package":"druntime","parentType":"","signature":"SHGDN_NORMAL = 0","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_INFOLDER","package":"druntime","parentType":"","signature":"SHGDN_INFOLDER = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_FOREDITING","package":"druntime","parentType":"","signature":"SHGDN_FOREDITING = 0x1000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_INCLUDE_NONFILESYS","package":"druntime","parentType":"","signature":"SHGDN_INCLUDE_NONFILESYS = 0x2000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_FORADDRESSBAR","package":"druntime","parentType":"","signature":"SHGDN_FORADDRESSBAR = 0x4000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHGDN_FORPARSING","package":"druntime","parentType":"","signature":"SHGDN_FORPARSING = 0x8000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHGNO"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SHCONTF","package":"druntime","parentType":"","signature":"SHCONTF","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_FOLDERS","package":"druntime","parentType":"","signature":"SHCONTF_FOLDERS = 32","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_NONFOLDERS","package":"druntime","parentType":"","signature":"SHCONTF_NONFOLDERS = 64","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_INCLUDEHIDDEN","package":"druntime","parentType":"","signature":"SHCONTF_INCLUDEHIDDEN = 128","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_INIT_ON_FIRST_NEXT","package":"druntime","parentType":"","signature":"SHCONTF_INIT_ON_FIRST_NEXT = 256","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_NETPRINTERSRCH","package":"druntime","parentType":"","signature":"SHCONTF_NETPRINTERSRCH = 512","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_SHAREABLE","package":"druntime","parentType":"","signature":"SHCONTF_SHAREABLE = 1024","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SHCONTF_STORAGE","package":"druntime","parentType":"","signature":"SHCONTF_STORAGE = 2048","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCONTF"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"STRRET","package":"druntime","parentType":"","signature":"STRRET","url":"/ddoc/druntime/core/sys/windows/shlobj.html#STRRET"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSTRRET","package":"druntime","parentType":"","signature":"LPSTRRET = STRRET *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSTRRET"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"FD_FLAGS","package":"druntime","parentType":"","signature":"FD_FLAGS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_CLSID","package":"druntime","parentType":"","signature":"FD_CLSID = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_SIZEPOINT","package":"druntime","parentType":"","signature":"FD_SIZEPOINT = 2","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_ATTRIBUTES","package":"druntime","parentType":"","signature":"FD_ATTRIBUTES = 4","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_CREATETIME","package":"druntime","parentType":"","signature":"FD_CREATETIME = 8","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_ACCESSTIME","package":"druntime","parentType":"","signature":"FD_ACCESSTIME = 16","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_WRITESTIME","package":"druntime","parentType":"","signature":"FD_WRITESTIME = 32","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_FILESIZE","package":"druntime","parentType":"","signature":"FD_FILESIZE = 64","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FD_LINKUI","package":"druntime","parentType":"","signature":"FD_LINKUI = 0x8000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FD_FLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FILEDESCRIPTORA","package":"druntime","parentType":"","signature":"FILEDESCRIPTORA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FILEDESCRIPTORA"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEDESCRIPTORA","package":"druntime","parentType":"","signature":"LPFILEDESCRIPTORA = FILEDESCRIPTORA *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEDESCRIPTORA"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FILEDESCRIPTORW","package":"druntime","parentType":"","signature":"FILEDESCRIPTORW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FILEDESCRIPTORW"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEDESCRIPTORW","package":"druntime","parentType":"","signature":"LPFILEDESCRIPTORW = FILEDESCRIPTORW *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEDESCRIPTORW"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FILEGROUPDESCRIPTORA","package":"druntime","parentType":"","signature":"FILEGROUPDESCRIPTORA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FILEGROUPDESCRIPTORA"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEGROUPDESCRIPTORA","package":"druntime","parentType":"","signature":"LPFILEGROUPDESCRIPTORA = FILEGROUPDESCRIPTORA *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEGROUPDESCRIPTORA"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FILEGROUPDESCRIPTORW","package":"druntime","parentType":"","signature":"FILEGROUPDESCRIPTORW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FILEGROUPDESCRIPTORW"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEGROUPDESCRIPTORW","package":"druntime","parentType":"","signature":"LPFILEGROUPDESCRIPTORW = FILEGROUPDESCRIPTORW *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEGROUPDESCRIPTORW"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SLR_FLAGS","package":"druntime","parentType":"","signature":"SLR_FLAGS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_NO_UI","package":"druntime","parentType":"","signature":"SLR_NO_UI = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_ANY_MATCH","package":"druntime","parentType":"","signature":"SLR_ANY_MATCH = 2","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_UPDATE","package":"druntime","parentType":"","signature":"SLR_UPDATE = 4","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_NOUPDATE","package":"druntime","parentType":"","signature":"SLR_NOUPDATE = 8","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_NOSEARCH","package":"druntime","parentType":"","signature":"SLR_NOSEARCH = 16","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_NOTRACK","package":"druntime","parentType":"","signature":"SLR_NOTRACK = 32","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_NOLINKINFO","package":"druntime","parentType":"","signature":"SLR_NOLINKINFO = 64","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLR_INVOKE_MSI","package":"druntime","parentType":"","signature":"SLR_INVOKE_MSI = 128","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLR_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SLGP_FLAGS","package":"druntime","parentType":"","signature":"SLGP_FLAGS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLGP_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLGP_SHORTPATH","package":"druntime","parentType":"","signature":"SLGP_SHORTPATH = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLGP_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLGP_UNCPRIORITY","package":"druntime","parentType":"","signature":"SLGP_UNCPRIORITY = 2","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLGP_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SLGP_RAWPATH","package":"druntime","parentType":"","signature":"SLGP_RAWPATH = 4","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SLGP_FLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPVIEWSETTINGS","package":"druntime","parentType":"","signature":"LPVIEWSETTINGS = PBYTE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPVIEWSETTINGS"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"FOLDERFLAGS","package":"druntime","parentType":"","signature":"FOLDERFLAGS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_AUTOARRANGE","package":"druntime","parentType":"","signature":"FWF_AUTOARRANGE = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_ABBREVIATEDNAMES","package":"druntime","parentType":"","signature":"FWF_ABBREVIATEDNAMES = 2","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_SNAPTOGRID","package":"druntime","parentType":"","signature":"FWF_SNAPTOGRID = 4","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_OWNERDATA","package":"druntime","parentType":"","signature":"FWF_OWNERDATA = 8","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_BESTFITWINDOW","package":"druntime","parentType":"","signature":"FWF_BESTFITWINDOW = 16","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_DESKTOP","package":"druntime","parentType":"","signature":"FWF_DESKTOP = 32","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_SINGLESEL","package":"druntime","parentType":"","signature":"FWF_SINGLESEL = 64","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_NOSUBFOLDERS","package":"druntime","parentType":"","signature":"FWF_NOSUBFOLDERS = 128","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_TRANSPARENT","package":"druntime","parentType":"","signature":"FWF_TRANSPARENT = 256","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_NOCLIENTEDGE","package":"druntime","parentType":"","signature":"FWF_NOCLIENTEDGE = 512","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_NOSCROLL","package":"druntime","parentType":"","signature":"FWF_NOSCROLL = 0x400","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_ALIGNLEFT","package":"druntime","parentType":"","signature":"FWF_ALIGNLEFT = 0x800","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FWF_SINGLECLICKACTIVATE","package":"druntime","parentType":"","signature":"FWF_SINGLECLICKACTIVATE = 0x8000","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERFLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"FOLDERVIEWMODE","package":"druntime","parentType":"","signature":"FOLDERVIEWMODE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERVIEWMODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FVM_ICON","package":"druntime","parentType":"","signature":"FVM_ICON = 1","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERVIEWMODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FVM_SMALLICON","package":"druntime","parentType":"","signature":"FVM_SMALLICON = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERVIEWMODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FVM_LIST","package":"druntime","parentType":"","signature":"FVM_LIST = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERVIEWMODE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"FVM_DETAILS","package":"druntime","parentType":"","signature":"FVM_DETAILS = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERVIEWMODE"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FOLDERSETTINGS","package":"druntime","parentType":"","signature":"FOLDERSETTINGS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FOLDERSETTINGS"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFOLDERSETTINGS","package":"druntime","parentType":"","signature":"LPFOLDERSETTINGS = FOLDERSETTINGS *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFOLDERSETTINGS"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCFOLDERSETTINGS","package":"druntime","parentType":"","signature":"LPCFOLDERSETTINGS = const(FOLDERSETTINGS) *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCFOLDERSETTINGS"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"FVSHOWINFO","package":"druntime","parentType":"","signature":"FVSHOWINFO","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSHOWINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFVSHOWINFO","package":"druntime","parentType":"","signature":"LPFVSHOWINFO = FVSHOWINFO *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFVSHOWINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"NRESARRAY","package":"druntime","parentType":"","signature":"NRESARRAY","url":"/ddoc/druntime/core/sys/windows/shlobj.html#NRESARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPNRESARRAY","package":"druntime","parentType":"","signature":"LPNRESARRAY = NRESARRAY *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPNRESARRAY"},{"doc":"","kind":"enum","module":"core.sys.windows.shlobj","name":"SVUIA_STATUS","package":"druntime","parentType":"","signature":"SVUIA_STATUS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVUIA_STATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SVUIA_DEACTIVATE","package":"druntime","parentType":"","signature":"SVUIA_DEACTIVATE = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVUIA_STATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SVUIA_ACTIVATE_NOFOCUS","package":"druntime","parentType":"","signature":"SVUIA_ACTIVATE_NOFOCUS = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVUIA_STATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SVUIA_ACTIVATE_FOCUS","package":"druntime","parentType":"","signature":"SVUIA_ACTIVATE_FOCUS = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVUIA_STATUS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlobj","name":"SVUIA_INPLACEACTIVATE","package":"druntime","parentType":"","signature":"SVUIA_INPLACEACTIVATE = ","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVUIA_STATUS"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IEnumIDList","package":"druntime","parentType":"","signature":"IEnumIDList : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IEnumIDList"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Next","package":"druntime","parentType":"IEnumIDList","signature":"HRESULT Next(ULONG,  LPITEMIDLIST *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IEnumIDList.Next.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Skip","package":"druntime","parentType":"IEnumIDList","signature":"HRESULT Skip(ULONG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IEnumIDList.Skip.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Reset","package":"druntime","parentType":"IEnumIDList","signature":"HRESULT Reset()","url":"/ddoc/druntime/core/sys/windows/shlobj/IEnumIDList.Reset.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Clone","package":"druntime","parentType":"IEnumIDList","signature":"HRESULT Clone(IEnumIDList *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IEnumIDList.Clone.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPENUMIDLIST","package":"druntime","parentType":"","signature":"LPENUMIDLIST = IEnumIDList","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPENUMIDLIST"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IObjMgr","package":"druntime","parentType":"","signature":"IObjMgr : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IObjMgr"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Append","package":"druntime","parentType":"IObjMgr","signature":"HRESULT Append(IUnknown)","url":"/ddoc/druntime/core/sys/windows/shlobj/IObjMgr.Append.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Remove","package":"druntime","parentType":"IObjMgr","signature":"HRESULT Remove(IUnknown)","url":"/ddoc/druntime/core/sys/windows/shlobj/IObjMgr.Remove.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IContextMenu","package":"druntime","parentType":"","signature":"IContextMenu : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IContextMenu"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"QueryContextMenu","package":"druntime","parentType":"IContextMenu","signature":"HRESULT QueryContextMenu(HMENU,  UINT,  UINT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IContextMenu.QueryContextMenu.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"InvokeCommand","package":"druntime","parentType":"IContextMenu","signature":"HRESULT InvokeCommand(LPCMINVOKECOMMANDINFO)","url":"/ddoc/druntime/core/sys/windows/shlobj/IContextMenu.InvokeCommand.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetCommandString","package":"druntime","parentType":"IContextMenu","signature":"HRESULT GetCommandString(UINT_PTR,  UINT,  PUINT,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IContextMenu.GetCommandString.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCONTEXTMENU","package":"druntime","parentType":"","signature":"LPCONTEXTMENU = IContextMenu","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCONTEXTMENU"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IContextMenu2","package":"druntime","parentType":"","signature":"IContextMenu2 : IContextMenu","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IContextMenu2"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"HandleMenuMsg","package":"druntime","parentType":"IContextMenu2","signature":"HRESULT HandleMenuMsg(UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj/IContextMenu2.HandleMenuMsg.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCONTEXTMENU2","package":"druntime","parentType":"","signature":"LPCONTEXTMENU2 = IContextMenu2","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCONTEXTMENU2"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IQueryInfo","package":"druntime","parentType":"","signature":"IQueryInfo : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IQueryInfo"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetInfoTip","package":"druntime","parentType":"IQueryInfo","signature":"HRESULT GetInfoTip(DWORD,  WCHAR * *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IQueryInfo.GetInfoTip.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetInfoFlags","package":"druntime","parentType":"IQueryInfo","signature":"HRESULT GetInfoFlags(DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IQueryInfo.GetInfoFlags.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellExtInit","package":"druntime","parentType":"","signature":"IShellExtInit : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellExtInit"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Initialize","package":"druntime","parentType":"IShellExtInit","signature":"HRESULT Initialize(LPCITEMIDLIST,  LPDATAOBJECT,  HKEY)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellExtInit.Initialize.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLEXTINIT","package":"druntime","parentType":"","signature":"LPSHELLEXTINIT = IShellExtInit","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLEXTINIT"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellPropSheetExt","package":"druntime","parentType":"","signature":"IShellPropSheetExt : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellPropSheetExt"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"AddPages","package":"druntime","parentType":"IShellPropSheetExt","signature":"HRESULT AddPages(LPFNADDPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellPropSheetExt.AddPages.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ReplacePage","package":"druntime","parentType":"IShellPropSheetExt","signature":"HRESULT ReplacePage(UINT,  LPFNADDPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellPropSheetExt.ReplacePage.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLPROPSHEETEXT","package":"druntime","parentType":"","signature":"LPSHELLPROPSHEETEXT = IShellPropSheetExt","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLPROPSHEETEXT"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IExtractIconA","package":"druntime","parentType":"","signature":"IExtractIconA : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IExtractIconA"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIconLocation","package":"druntime","parentType":"IExtractIconA","signature":"HRESULT GetIconLocation(UINT,  LPSTR,  UINT,  int *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IExtractIconA.GetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Extract","package":"druntime","parentType":"IExtractIconA","signature":"HRESULT Extract(LPCSTR,  UINT,  HICON *,  HICON *,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IExtractIconA.Extract.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPEXTRACTICONA","package":"druntime","parentType":"","signature":"LPEXTRACTICONA = IExtractIconA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPEXTRACTICONA"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IExtractIconW","package":"druntime","parentType":"","signature":"IExtractIconW : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IExtractIconW"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIconLocation","package":"druntime","parentType":"IExtractIconW","signature":"HRESULT GetIconLocation(UINT,  LPWSTR,  UINT,  int *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IExtractIconW.GetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Extract","package":"druntime","parentType":"IExtractIconW","signature":"HRESULT Extract(LPCWSTR,  UINT,  HICON *,  HICON *,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IExtractIconW.Extract.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPEXTRACTICONW","package":"druntime","parentType":"","signature":"LPEXTRACTICONW = IExtractIconW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPEXTRACTICONW"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellLinkA","package":"druntime","parentType":"","signature":"IShellLinkA : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellLinkA"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetPath","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetPath(LPSTR,  int,  WIN32_FIND_DATAA *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetPath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIDList","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetIDList(LPITEMIDLIST *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetIDList.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetIDList","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetIDList(LPCITEMIDLIST)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetIDList.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetDescription","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetDescription(LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetDescription","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetDescription(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetWorkingDirectory","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetWorkingDirectory(LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetWorkingDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetWorkingDirectory","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetWorkingDirectory(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetWorkingDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetArguments","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetArguments(LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetArguments.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetArguments","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetArguments(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetArguments.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetHotkey","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetHotkey(PWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetHotkey.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetHotkey","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetHotkey(WORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetHotkey.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetShowCmd","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetShowCmd(int *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetShowCmd.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetShowCmd","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetShowCmd(int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetShowCmd.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIconLocation","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT GetIconLocation(LPSTR,  int,  int *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.GetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetIconLocation","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetIconLocation(LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetRelativePath","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetRelativePath(LPCSTR ,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetRelativePath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Resolve","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT Resolve(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.Resolve.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetPath","package":"druntime","parentType":"IShellLinkA","signature":"HRESULT SetPath(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkA.SetPath.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellLinkW","package":"druntime","parentType":"","signature":"IShellLinkW : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellLinkW"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetPath","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetPath(LPWSTR,  int,  WIN32_FIND_DATAW *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetPath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIDList","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetIDList(LPITEMIDLIST *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetIDList.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetIDList","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetIDList(LPCITEMIDLIST)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetIDList.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetDescription","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetDescription(LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetDescription","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetDescription(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetDescription.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetWorkingDirectory","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetWorkingDirectory(LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetWorkingDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetWorkingDirectory","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetWorkingDirectory(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetWorkingDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetArguments","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetArguments(LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetArguments.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetArguments","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetArguments(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetArguments.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetHotkey","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetHotkey(PWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetHotkey.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetHotkey","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetHotkey(WORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetHotkey.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetShowCmd","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetShowCmd(int *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetShowCmd.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetShowCmd","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetShowCmd(int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetShowCmd.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIconLocation","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT GetIconLocation(LPWSTR,  int,  int *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.GetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetIconLocation","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetIconLocation(LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetIconLocation.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetRelativePath","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetRelativePath(LPCWSTR ,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetRelativePath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Resolve","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT Resolve(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.Resolve.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetPath","package":"druntime","parentType":"IShellLinkW","signature":"HRESULT SetPath(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellLinkW.SetPath.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellFolder","package":"druntime","parentType":"","signature":"IShellFolder : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellFolder"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ParseDisplayName","package":"druntime","parentType":"IShellFolder","signature":"HRESULT ParseDisplayName(HWND,  LPBC,  LPOLESTR,  PULONG,  LPITEMIDLIST *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.ParseDisplayName.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"EnumObjects","package":"druntime","parentType":"IShellFolder","signature":"HRESULT EnumObjects(HWND,  DWORD,  LPENUMIDLIST *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.EnumObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"BindToObject","package":"druntime","parentType":"IShellFolder","signature":"HRESULT BindToObject(LPCITEMIDLIST,  LPBC,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.BindToObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"BindToStorage","package":"druntime","parentType":"IShellFolder","signature":"HRESULT BindToStorage(LPCITEMIDLIST,  LPBC,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.BindToStorage.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CompareIDs","package":"druntime","parentType":"IShellFolder","signature":"HRESULT CompareIDs(LPARAM,  LPCITEMIDLIST,  LPCITEMIDLIST)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.CompareIDs.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CreateViewObject","package":"druntime","parentType":"IShellFolder","signature":"HRESULT CreateViewObject(HWND,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.CreateViewObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetAttributesOf","package":"druntime","parentType":"IShellFolder","signature":"HRESULT GetAttributesOf(UINT,  LPCITEMIDLIST *,  PULONG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.GetAttributesOf.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetUIObjectOf","package":"druntime","parentType":"IShellFolder","signature":"HRESULT GetUIObjectOf(HWND,  UINT,  LPCITEMIDLIST *,  REFIID,  PUINT,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.GetUIObjectOf.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetDisplayNameOf","package":"druntime","parentType":"IShellFolder","signature":"HRESULT GetDisplayNameOf(LPCITEMIDLIST,  DWORD,  LPSTRRET)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.GetDisplayNameOf.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetNameOf","package":"druntime","parentType":"IShellFolder","signature":"HRESULT SetNameOf(HWND,  LPCITEMIDLIST,  LPCOLESTR,  DWORD,  LPITEMIDLIST *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellFolder.SetNameOf.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLFOLDER","package":"druntime","parentType":"","signature":"LPSHELLFOLDER = IShellFolder","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLFOLDER"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"ICopyHook","package":"druntime","parentType":"","signature":"ICopyHook : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#ICopyHook"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CopyCallback","package":"druntime","parentType":"ICopyHook","signature":"UINT CopyCallback(HWND,  UINT,  UINT,  LPCSTR,  DWORD,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/ICopyHook.CopyCallback.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCOPYHOOK","package":"druntime","parentType":"","signature":"LPCOPYHOOK = ICopyHook","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCOPYHOOK"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IFileViewerSite","package":"druntime","parentType":"","signature":"IFileViewerSite : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IFileViewerSite"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetPinnedWindow","package":"druntime","parentType":"IFileViewerSite","signature":"HRESULT SetPinnedWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileViewerSite.SetPinnedWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetPinnedWindow","package":"druntime","parentType":"IFileViewerSite","signature":"HRESULT GetPinnedWindow(HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileViewerSite.GetPinnedWindow.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEVIEWERSITE","package":"druntime","parentType":"","signature":"LPFILEVIEWERSITE = IFileViewerSite","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEVIEWERSITE"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IFileViewer","package":"druntime","parentType":"","signature":"IFileViewer : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IFileViewer"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ShowInitialize","package":"druntime","parentType":"IFileViewer","signature":"HRESULT ShowInitialize(LPFILEVIEWERSITE)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileViewer.ShowInitialize.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Show","package":"druntime","parentType":"IFileViewer","signature":"HRESULT Show(LPFVSHOWINFO)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileViewer.Show.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"PrintTo","package":"druntime","parentType":"IFileViewer","signature":"HRESULT PrintTo(LPSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileViewer.PrintTo.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPFILEVIEWER","package":"druntime","parentType":"","signature":"LPFILEVIEWER = IFileViewer","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPFILEVIEWER"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IFileSystemBindData","package":"druntime","parentType":"","signature":"IFileSystemBindData : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IFileSystemBindData"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetFindData","package":"druntime","parentType":"IFileSystemBindData","signature":"HRESULT SetFindData(const(WIN32_FIND_DATAW) *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileSystemBindData.SetFindData.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetFindData","package":"druntime","parentType":"IFileSystemBindData","signature":"HRESULT GetFindData(WIN32_FIND_DATAW *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IFileSystemBindData.GetFindData.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IPersistFolder","package":"druntime","parentType":"","signature":"IPersistFolder : IPersist","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IPersistFolder"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetClassID","package":"druntime","parentType":"IPersistFolder","signature":"HRESULT GetClassID(CLSID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IPersistFolder.GetClassID.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Initialize","package":"druntime","parentType":"IPersistFolder","signature":"HRESULT Initialize(LPCITEMIDLIST)","url":"/ddoc/druntime/core/sys/windows/shlobj/IPersistFolder.Initialize.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPPERSISTFOLDER","package":"druntime","parentType":"","signature":"LPPERSISTFOLDER = IPersistFolder","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPPERSISTFOLDER"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLBROWSER","package":"druntime","parentType":"","signature":"LPSHELLBROWSER = IShellBrowser","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLBROWSER"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLVIEW","package":"druntime","parentType":"","signature":"LPSHELLVIEW = IShellView","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLVIEW"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellBrowser","package":"druntime","parentType":"","signature":"IShellBrowser : IOleWindow","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellBrowser"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetWindow","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT GetWindow(HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.GetWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ContextSensitiveHelp","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.ContextSensitiveHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"InsertMenusSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT InsertMenusSB(HMENU,  LPOLEMENUGROUPWIDTHS)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.InsertMenusSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetMenuSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT SetMenuSB(HMENU,  HOLEMENU,  HWND)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.SetMenuSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"RemoveMenusSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT RemoveMenusSB(HMENU)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.RemoveMenusSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetStatusTextSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT SetStatusTextSB(LPCOLESTR)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.SetStatusTextSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"EnableModelessSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT EnableModelessSB(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.EnableModelessSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"TranslateAcceleratorSB","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT TranslateAcceleratorSB(LPMSG,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.TranslateAcceleratorSB.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"BrowseObject","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT BrowseObject(LPCITEMIDLIST,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.BrowseObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetViewStateStream","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT GetViewStateStream(DWORD,  LPSTREAM *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.GetViewStateStream.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetControlWindow","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT GetControlWindow(UINT,  HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.GetControlWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SendControlMsg","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT SendControlMsg(UINT,  UINT,  WPARAM,  LPARAM,  LRESULT *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.SendControlMsg.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"QueryActiveShellView","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT QueryActiveShellView(LPSHELLVIEW *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.QueryActiveShellView.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"OnViewWindowActive","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT OnViewWindowActive(LPSHELLVIEW)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.OnViewWindowActive.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SetToolbarItems","package":"druntime","parentType":"IShellBrowser","signature":"HRESULT SetToolbarItems(LPTBBUTTON,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellBrowser.SetToolbarItems.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellView","package":"druntime","parentType":"","signature":"IShellView : IOleWindow","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellView"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetWindow","package":"druntime","parentType":"IShellView","signature":"HRESULT GetWindow(HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.GetWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ContextSensitiveHelp","package":"druntime","parentType":"IShellView","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.ContextSensitiveHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"TranslateAccelerator","package":"druntime","parentType":"IShellView","signature":"HRESULT TranslateAccelerator(LPMSG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.TranslateAccelerator.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"EnableModeless","package":"druntime","parentType":"IShellView","signature":"HRESULT EnableModeless(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.EnableModeless.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"UIActivate","package":"druntime","parentType":"IShellView","signature":"HRESULT UIActivate(UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.UIActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Refresh","package":"druntime","parentType":"IShellView","signature":"HRESULT Refresh()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.Refresh.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CreateViewWindow","package":"druntime","parentType":"IShellView","signature":"HRESULT CreateViewWindow(IShellView,  LPCFOLDERSETTINGS,  LPSHELLBROWSER,  RECT *,  HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.CreateViewWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"DestroyViewWindow","package":"druntime","parentType":"IShellView","signature":"HRESULT DestroyViewWindow()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.DestroyViewWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetCurrentInfo","package":"druntime","parentType":"IShellView","signature":"HRESULT GetCurrentInfo(LPFOLDERSETTINGS)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.GetCurrentInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"AddPropertySheetPages","package":"druntime","parentType":"IShellView","signature":"HRESULT AddPropertySheetPages(DWORD,  LPFNADDPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.AddPropertySheetPages.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SaveViewState","package":"druntime","parentType":"IShellView","signature":"HRESULT SaveViewState()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.SaveViewState.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SelectItem","package":"druntime","parentType":"IShellView","signature":"HRESULT SelectItem(LPCITEMIDLIST,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.SelectItem.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetItemObject","package":"druntime","parentType":"IShellView","signature":"HRESULT GetItemObject(UINT,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView.GetItemObject.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"ICommDlgBrowser","package":"druntime","parentType":"","signature":"ICommDlgBrowser : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#ICommDlgBrowser"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"OnDefaultCommand","package":"druntime","parentType":"ICommDlgBrowser","signature":"HRESULT OnDefaultCommand(IShellView)","url":"/ddoc/druntime/core/sys/windows/shlobj/ICommDlgBrowser.OnDefaultCommand.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"OnStateChange","package":"druntime","parentType":"ICommDlgBrowser","signature":"HRESULT OnStateChange(IShellView,  ULONG)","url":"/ddoc/druntime/core/sys/windows/shlobj/ICommDlgBrowser.OnStateChange.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"IncludeObject","package":"druntime","parentType":"ICommDlgBrowser","signature":"HRESULT IncludeObject(IShellView,  LPCITEMIDLIST)","url":"/ddoc/druntime/core/sys/windows/shlobj/ICommDlgBrowser.IncludeObject.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPCOMMDLGBROWSER","package":"druntime","parentType":"","signature":"LPCOMMDLGBROWSER = ICommDlgBrowser","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPCOMMDLGBROWSER"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"SHELLVIEWID","package":"druntime","parentType":"","signature":"SHELLVIEWID = GUID","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHELLVIEWID"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"SV2CVW2_PARAMS","package":"druntime","parentType":"","signature":"SV2CVW2_PARAMS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SV2CVW2_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSV2CVW2_PARAMS","package":"druntime","parentType":"","signature":"LPSV2CVW2_PARAMS = SV2CVW2_PARAMS *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSV2CVW2_PARAMS"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellView2","package":"druntime","parentType":"","signature":"IShellView2 : IShellView","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellView2"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetWindow","package":"druntime","parentType":"IShellView2","signature":"HRESULT GetWindow(HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.GetWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"ContextSensitiveHelp","package":"druntime","parentType":"IShellView2","signature":"HRESULT ContextSensitiveHelp(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.ContextSensitiveHelp.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"TranslateAccelerator","package":"druntime","parentType":"IShellView2","signature":"HRESULT TranslateAccelerator(LPMSG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.TranslateAccelerator.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"EnableModeless","package":"druntime","parentType":"IShellView2","signature":"HRESULT EnableModeless(BOOL)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.EnableModeless.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"UIActivate","package":"druntime","parentType":"IShellView2","signature":"HRESULT UIActivate(UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.UIActivate.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Refresh","package":"druntime","parentType":"IShellView2","signature":"HRESULT Refresh()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.Refresh.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CreateViewWindow","package":"druntime","parentType":"IShellView2","signature":"HRESULT CreateViewWindow(IShellView,  LPCFOLDERSETTINGS,  LPSHELLBROWSER,  RECT *,  HWND *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.CreateViewWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"DestroyViewWindow","package":"druntime","parentType":"IShellView2","signature":"HRESULT DestroyViewWindow()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.DestroyViewWindow.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetCurrentInfo","package":"druntime","parentType":"IShellView2","signature":"HRESULT GetCurrentInfo(LPFOLDERSETTINGS)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.GetCurrentInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"AddPropertySheetPages","package":"druntime","parentType":"IShellView2","signature":"HRESULT AddPropertySheetPages(DWORD,  LPFNADDPROPSHEETPAGE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.AddPropertySheetPages.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SaveViewState","package":"druntime","parentType":"IShellView2","signature":"HRESULT SaveViewState()","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.SaveViewState.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"SelectItem","package":"druntime","parentType":"IShellView2","signature":"HRESULT SelectItem(LPCITEMIDLIST,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.SelectItem.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetItemObject","package":"druntime","parentType":"IShellView2","signature":"HRESULT GetItemObject(UINT,  REFIID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.GetItemObject.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetView","package":"druntime","parentType":"IShellView2","signature":"HRESULT GetView(SHELLVIEWID *,  ULONG)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.GetView.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"CreateViewWindow2","package":"druntime","parentType":"IShellView2","signature":"HRESULT CreateViewWindow2(LPSV2CVW2_PARAMS)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellView2.CreateViewWindow2.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellExecuteHookA","package":"druntime","parentType":"","signature":"IShellExecuteHookA : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellExecuteHookA"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Execute","package":"druntime","parentType":"IShellExecuteHookA","signature":"HRESULT Execute(LPSHELLEXECUTEINFOA)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellExecuteHookA.Execute.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellExecuteHookW","package":"druntime","parentType":"","signature":"IShellExecuteHookW : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellExecuteHookW"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"Execute","package":"druntime","parentType":"IShellExecuteHookW","signature":"HRESULT Execute(LPSHELLEXECUTEINFOW)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellExecuteHookW.Execute.html"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellIcon","package":"druntime","parentType":"","signature":"IShellIcon : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellIcon"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetIconOf","package":"druntime","parentType":"IShellIcon","signature":"HRESULT GetIconOf(LPCITEMIDLIST,  UINT,  PINT)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellIcon.GetIconOf.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLICON","package":"druntime","parentType":"","signature":"LPSHELLICON = IShellIcon","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLICON"},{"doc":"","kind":"struct","module":"core.sys.windows.shlobj","name":"SHELLFLAGSTATE","package":"druntime","parentType":"","signature":"SHELLFLAGSTATE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHELLFLAGSTATE"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowAllObjects","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowAllObjects()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowAllObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowExtensions","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowExtensions()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowExtensions.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fNoConfirmRecycle","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fNoConfirmRecycle()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fNoConfirmRecycle.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowSysFiles","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowSysFiles()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowSysFiles.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowCompColor","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowCompColor()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowCompColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDoubleClickInWebView","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDoubleClickInWebView()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDoubleClickInWebView.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDesktopHTML","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDesktopHTML()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDesktopHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fWin95Classic","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fWin95Classic()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fWin95Classic.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDontPrettyPath","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDontPrettyPath()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDontPrettyPath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowAttribCol","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowAttribCol()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowAttribCol.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fMapNetDrvBtn","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fMapNetDrvBtn()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fMapNetDrvBtn.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowInfoTip","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowInfoTip()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowInfoTip.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fHideIcons","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fHideIcons()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fHideIcons.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fRestFlags","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"ubyte fRestFlags()()","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fRestFlags.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowAllObjects","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowAllObjects()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowAllObjects.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowExtensions","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowExtensions()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowExtensions.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fNoConfirmRecycle","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fNoConfirmRecycle()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fNoConfirmRecycle.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowSysFiles","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowSysFiles()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowSysFiles.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowCompColor","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowCompColor()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowCompColor.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDoubleClickInWebView","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDoubleClickInWebView()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDoubleClickInWebView.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDesktopHTML","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDesktopHTML()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDesktopHTML.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fWin95Classic","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fWin95Classic()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fWin95Classic.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fDontPrettyPath","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fDontPrettyPath()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fDontPrettyPath.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowAttribCol","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowAttribCol()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowAttribCol.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fMapNetDrvBtn","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fMapNetDrvBtn()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fMapNetDrvBtn.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fShowInfoTip","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fShowInfoTip()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fShowInfoTip.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fHideIcons","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"bool fHideIcons()(bool  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fHideIcons.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"fRestFlags","package":"druntime","parentType":"SHELLFLAGSTATE","signature":"ubyte fRestFlags()(ubyte  f)","url":"/ddoc/druntime/core/sys/windows/shlobj/SHELLFLAGSTATE.fRestFlags.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"LPSHELLFLAGSTATE","package":"druntime","parentType":"","signature":"LPSHELLFLAGSTATE = SHELLFLAGSTATE *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#LPSHELLFLAGSTATE"},{"doc":"","kind":"interface","module":"core.sys.windows.shlobj","name":"IShellIconOverlayIdentifier","package":"druntime","parentType":"","signature":"IShellIconOverlayIdentifier : IUnknown","url":"/ddoc/druntime/core/sys/windows/shlobj.html#IShellIconOverlayIdentifier"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"IsMemberOf","package":"druntime","parentType":"IShellIconOverlayIdentifier","signature":"HRESULT IsMemberOf(LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellIconOverlayIdentifier.IsMemberOf.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetOverlayInfo","package":"druntime","parentType":"IShellIconOverlayIdentifier","signature":"HRESULT GetOverlayInfo(LPWSTR,  int,  int *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellIconOverlayIdentifier.GetOverlayInfo.html"},{"doc":"","kind":"method","module":"core.sys.windows.shlobj","name":"GetPriority","package":"druntime","parentType":"IShellIconOverlayIdentifier","signature":"HRESULT GetPriority(int *)","url":"/ddoc/druntime/core/sys/windows/shlobj/IShellIconOverlayIdentifier.GetPriority.html"},{"doc":"","kind":"alias","module":"core.sys.windows.shlobj","name":"PBROWSEINFO","package":"druntime","parentType":"","signature":"PBROWSEINFO = BROWSEINFO *","url":"/ddoc/druntime/core/sys/windows/shlobj.html#PBROWSEINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_RETURNONLYFSDIRS","package":"druntime","parentType":"","signature":"BIF_RETURNONLYFSDIRS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_RETURNONLYFSDIRS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_DONTGOBELOWDOMAIN","package":"druntime","parentType":"","signature":"BIF_DONTGOBELOWDOMAIN","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_DONTGOBELOWDOMAIN"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_STATUSTEXT","package":"druntime","parentType":"","signature":"BIF_STATUSTEXT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_STATUSTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_RETURNFSANCESTORS","package":"druntime","parentType":"","signature":"BIF_RETURNFSANCESTORS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_RETURNFSANCESTORS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_EDITBOX","package":"druntime","parentType":"","signature":"BIF_EDITBOX","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_EDITBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_VALIDATE","package":"druntime","parentType":"","signature":"BIF_VALIDATE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_VALIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_NEWDIALOGSTYLE","package":"druntime","parentType":"","signature":"BIF_NEWDIALOGSTYLE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_NEWDIALOGSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_BROWSEINCLUDEURLS","package":"druntime","parentType":"","signature":"BIF_BROWSEINCLUDEURLS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_BROWSEINCLUDEURLS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_USENEWUI","package":"druntime","parentType":"","signature":"BIF_USENEWUI","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_USENEWUI"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_BROWSEFORCOMPUTER","package":"druntime","parentType":"","signature":"BIF_BROWSEFORCOMPUTER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_BROWSEFORCOMPUTER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_BROWSEFORPRINTER","package":"druntime","parentType":"","signature":"BIF_BROWSEFORPRINTER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_BROWSEFORPRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_BROWSEINCLUDEFILES","package":"druntime","parentType":"","signature":"BIF_BROWSEINCLUDEFILES","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_BROWSEINCLUDEFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BIF_SHAREABLE","package":"druntime","parentType":"","signature":"BIF_SHAREABLE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BIF_SHAREABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_INITIALIZED","package":"druntime","parentType":"","signature":"BFFM_INITIALIZED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_INITIALIZED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SELCHANGED","package":"druntime","parentType":"","signature":"BFFM_SELCHANGED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SELCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_VALIDATEFAILEDA","package":"druntime","parentType":"","signature":"BFFM_VALIDATEFAILEDA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_VALIDATEFAILEDA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_VALIDATEFAILEDW","package":"druntime","parentType":"","signature":"BFFM_VALIDATEFAILEDW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_VALIDATEFAILEDW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETSTATUSTEXTA","package":"druntime","parentType":"","signature":"BFFM_SETSTATUSTEXTA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETSTATUSTEXTA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_ENABLEOK","package":"druntime","parentType":"","signature":"BFFM_ENABLEOK","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_ENABLEOK"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETSELECTIONA","package":"druntime","parentType":"","signature":"BFFM_SETSELECTIONA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETSELECTIONA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETSELECTIONW","package":"druntime","parentType":"","signature":"BFFM_SETSELECTIONW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETSELECTIONW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETSTATUSTEXTW","package":"druntime","parentType":"","signature":"BFFM_SETSTATUSTEXTW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETSTATUSTEXTW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETOKTEXT","package":"druntime","parentType":"","signature":"BFFM_SETOKTEXT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETOKTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"BFFM_SETEXPANDED","package":"druntime","parentType":"","signature":"BFFM_SETEXPANDED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#BFFM_SETEXPANDED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"DVASPECT_SHORTNAME","package":"druntime","parentType":"","signature":"DVASPECT_SHORTNAME","url":"/ddoc/druntime/core/sys/windows/shlobj.html#DVASPECT_SHORTNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_RENAMEITEM","package":"druntime","parentType":"","signature":"SHCNE_RENAMEITEM","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_RENAMEITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_CREATE","package":"druntime","parentType":"","signature":"SHCNE_CREATE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_DELETE","package":"druntime","parentType":"","signature":"SHCNE_DELETE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_MKDIR","package":"druntime","parentType":"","signature":"SHCNE_MKDIR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_MKDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_RMDIR","package":"druntime","parentType":"","signature":"SHCNE_RMDIR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_RMDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_MEDIAINSERTED","package":"druntime","parentType":"","signature":"SHCNE_MEDIAINSERTED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_MEDIAINSERTED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_MEDIAREMOVED","package":"druntime","parentType":"","signature":"SHCNE_MEDIAREMOVED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_MEDIAREMOVED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_DRIVEREMOVED","package":"druntime","parentType":"","signature":"SHCNE_DRIVEREMOVED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_DRIVEREMOVED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_DRIVEADD","package":"druntime","parentType":"","signature":"SHCNE_DRIVEADD","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_DRIVEADD"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_NETSHARE","package":"druntime","parentType":"","signature":"SHCNE_NETSHARE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_NETSHARE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_NETUNSHARE","package":"druntime","parentType":"","signature":"SHCNE_NETUNSHARE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_NETUNSHARE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_ATTRIBUTES","package":"druntime","parentType":"","signature":"SHCNE_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_UPDATEDIR","package":"druntime","parentType":"","signature":"SHCNE_UPDATEDIR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_UPDATEDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_UPDATEITEM","package":"druntime","parentType":"","signature":"SHCNE_UPDATEITEM","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_UPDATEITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_SERVERDISCONNECT","package":"druntime","parentType":"","signature":"SHCNE_SERVERDISCONNECT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_SERVERDISCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_UPDATEIMAGE","package":"druntime","parentType":"","signature":"SHCNE_UPDATEIMAGE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_UPDATEIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_DRIVEADDGUI","package":"druntime","parentType":"","signature":"SHCNE_DRIVEADDGUI","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_DRIVEADDGUI"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_RENAMEFOLDER","package":"druntime","parentType":"","signature":"SHCNE_RENAMEFOLDER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_RENAMEFOLDER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_FREESPACE","package":"druntime","parentType":"","signature":"SHCNE_FREESPACE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_FREESPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_ASSOCCHANGED","package":"druntime","parentType":"","signature":"SHCNE_ASSOCCHANGED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_ASSOCCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_DISKEVENTS","package":"druntime","parentType":"","signature":"SHCNE_DISKEVENTS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_DISKEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_GLOBALEVENTS","package":"druntime","parentType":"","signature":"SHCNE_GLOBALEVENTS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_GLOBALEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_ALLEVENTS","package":"druntime","parentType":"","signature":"SHCNE_ALLEVENTS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_ALLEVENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNE_INTERRUPT","package":"druntime","parentType":"","signature":"SHCNE_INTERRUPT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNE_INTERRUPT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_IDLIST","package":"druntime","parentType":"","signature":"SHCNF_IDLIST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_IDLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_PATHA","package":"druntime","parentType":"","signature":"SHCNF_PATHA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_PATHA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_PRINTERA","package":"druntime","parentType":"","signature":"SHCNF_PRINTERA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_PRINTERA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_DWORD","package":"druntime","parentType":"","signature":"SHCNF_DWORD","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_DWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_PATHW","package":"druntime","parentType":"","signature":"SHCNF_PATHW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_PATHW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_PRINTERW","package":"druntime","parentType":"","signature":"SHCNF_PRINTERW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_PRINTERW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_TYPE","package":"druntime","parentType":"","signature":"SHCNF_TYPE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_FLUSH","package":"druntime","parentType":"","signature":"SHCNF_FLUSH","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_FLUSH"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SHCNF_FLUSHNOWAIT","package":"druntime","parentType":"","signature":"SHCNF_FLUSHNOWAIT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SHCNF_FLUSHNOWAIT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"STRRET_WSTR","package":"druntime","parentType":"","signature":"STRRET_WSTR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#STRRET_WSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"STRRET_OFFSET","package":"druntime","parentType":"","signature":"STRRET_OFFSET","url":"/ddoc/druntime/core/sys/windows/shlobj.html#STRRET_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"STRRET_CSTR","package":"druntime","parentType":"","signature":"STRRET_CSTR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#STRRET_CSTR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"REGSTR_PATH_EXPLORER","package":"druntime","parentType":"","signature":"TCHAR[] REGSTR_PATH_EXPLORER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#REGSTR_PATH_EXPLORER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"REGSTR_PATH_SPECIAL_FOLDERS","package":"druntime","parentType":"","signature":"TCHAR[] REGSTR_PATH_SPECIAL_FOLDERS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#REGSTR_PATH_SPECIAL_FOLDERS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CFSTR_SHELLIDLIST","package":"druntime","parentType":"","signature":"TCHAR[] CFSTR_SHELLIDLIST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CFSTR_SHELLIDLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CFSTR_PRINTERGROUP","package":"druntime","parentType":"","signature":"TCHAR[] CFSTR_PRINTERGROUP","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CFSTR_PRINTERGROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_NORMAL","package":"druntime","parentType":"","signature":"CMF_NORMAL","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_DEFAULTONLY","package":"druntime","parentType":"","signature":"CMF_DEFAULTONLY","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_DEFAULTONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_VERBSONLY","package":"druntime","parentType":"","signature":"CMF_VERBSONLY","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_VERBSONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_EXPLORE","package":"druntime","parentType":"","signature":"CMF_EXPLORE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_EXPLORE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_NOVERBS","package":"druntime","parentType":"","signature":"CMF_NOVERBS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_NOVERBS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_CANRENAME","package":"druntime","parentType":"","signature":"CMF_CANRENAME","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_CANRENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_NODEFAULT","package":"druntime","parentType":"","signature":"CMF_NODEFAULT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_NODEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_INCLUDESTATIC","package":"druntime","parentType":"","signature":"CMF_INCLUDESTATIC","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_INCLUDESTATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMF_RESERVED","package":"druntime","parentType":"","signature":"CMF_RESERVED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMF_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_VERBA","package":"druntime","parentType":"","signature":"GCS_VERBA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_VERBA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_HELPTEXTA","package":"druntime","parentType":"","signature":"GCS_HELPTEXTA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_HELPTEXTA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_VALIDATEA","package":"druntime","parentType":"","signature":"GCS_VALIDATEA","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_VALIDATEA"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_VERBW","package":"druntime","parentType":"","signature":"GCS_VERBW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_VERBW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_HELPTEXTW","package":"druntime","parentType":"","signature":"GCS_HELPTEXTW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_HELPTEXTW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_VALIDATEW","package":"druntime","parentType":"","signature":"GCS_VALIDATEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_VALIDATEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GCS_UNICODE","package":"druntime","parentType":"","signature":"GCS_UNICODE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GCS_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMDSTR_NEWFOLDER","package":"druntime","parentType":"","signature":"TCHAR[] CMDSTR_NEWFOLDER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMDSTR_NEWFOLDER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMIC_MASK_HOTKEY","package":"druntime","parentType":"","signature":"CMIC_MASK_HOTKEY","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMIC_MASK_HOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMIC_MASK_ICON","package":"druntime","parentType":"","signature":"CMIC_MASK_ICON","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMIC_MASK_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMIC_MASK_FLAG_NO_UI","package":"druntime","parentType":"","signature":"CMIC_MASK_FLAG_NO_UI","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMIC_MASK_FLAG_NO_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CMIC_MASK_MODAL","package":"druntime","parentType":"","signature":"CMIC_MASK_MODAL","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CMIC_MASK_MODAL"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_OPENICON","package":"druntime","parentType":"","signature":"GIL_OPENICON","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_OPENICON"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_FORSHELL","package":"druntime","parentType":"","signature":"GIL_FORSHELL","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_FORSHELL"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_SIMULATEDOC","package":"druntime","parentType":"","signature":"GIL_SIMULATEDOC","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_SIMULATEDOC"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_PERINSTANCE","package":"druntime","parentType":"","signature":"GIL_PERINSTANCE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_PERINSTANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_PERCLASS","package":"druntime","parentType":"","signature":"GIL_PERCLASS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_PERCLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_NOTFILENAME","package":"druntime","parentType":"","signature":"GIL_NOTFILENAME","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_NOTFILENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"GIL_DONTCACHE","package":"druntime","parentType":"","signature":"GIL_DONTCACHE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#GIL_DONTCACHE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FVSIF_RECT","package":"druntime","parentType":"","signature":"FVSIF_RECT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSIF_RECT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FVSIF_PINNED","package":"druntime","parentType":"","signature":"FVSIF_PINNED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSIF_PINNED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FVSIF_NEWFAILED","package":"druntime","parentType":"","signature":"FVSIF_NEWFAILED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSIF_NEWFAILED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FVSIF_NEWFILE","package":"druntime","parentType":"","signature":"FVSIF_NEWFILE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSIF_NEWFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FVSIF_CANVIEWIT","package":"druntime","parentType":"","signature":"FVSIF_CANVIEWIT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FVSIF_CANVIEWIT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CDBOSC_SETFOCUS","package":"druntime","parentType":"","signature":"CDBOSC_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CDBOSC_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CDBOSC_KILLFOCUS","package":"druntime","parentType":"","signature":"CDBOSC_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CDBOSC_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CDBOSC_SELCHANGE","package":"druntime","parentType":"","signature":"CDBOSC_SELCHANGE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CDBOSC_SELCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"CDBOSC_RENAME","package":"druntime","parentType":"","signature":"CDBOSC_RENAME","url":"/ddoc/druntime/core/sys/windows/shlobj.html#CDBOSC_RENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_SHVIEWFIRST","package":"druntime","parentType":"","signature":"FCIDM_SHVIEWFIRST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_SHVIEWFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_SHVIEWLAST","package":"druntime","parentType":"","signature":"FCIDM_SHVIEWLAST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_SHVIEWLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_BROWSERFIRST","package":"druntime","parentType":"","signature":"FCIDM_BROWSERFIRST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_BROWSERFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_BROWSERLAST","package":"druntime","parentType":"","signature":"FCIDM_BROWSERLAST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_BROWSERLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_GLOBALFIRST","package":"druntime","parentType":"","signature":"FCIDM_GLOBALFIRST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_GLOBALFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_GLOBALLAST","package":"druntime","parentType":"","signature":"FCIDM_GLOBALLAST","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_GLOBALLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_FILE","package":"druntime","parentType":"","signature":"FCIDM_MENU_FILE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_EDIT","package":"druntime","parentType":"","signature":"FCIDM_MENU_EDIT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_EDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_VIEW","package":"druntime","parentType":"","signature":"FCIDM_MENU_VIEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_VIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_VIEW_SEP_OPTIONS","package":"druntime","parentType":"","signature":"FCIDM_MENU_VIEW_SEP_OPTIONS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_VIEW_SEP_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_TOOLS","package":"druntime","parentType":"","signature":"FCIDM_MENU_TOOLS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_TOOLS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_TOOLS_SEP_GOTO","package":"druntime","parentType":"","signature":"FCIDM_MENU_TOOLS_SEP_GOTO","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_TOOLS_SEP_GOTO"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_HELP","package":"druntime","parentType":"","signature":"FCIDM_MENU_HELP","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_FIND","package":"druntime","parentType":"","signature":"FCIDM_MENU_FIND","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_FIND"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_EXPLORE","package":"druntime","parentType":"","signature":"FCIDM_MENU_EXPLORE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_EXPLORE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_MENU_FAVORITES","package":"druntime","parentType":"","signature":"FCIDM_MENU_FAVORITES","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_MENU_FAVORITES"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_TOOLBAR","package":"druntime","parentType":"","signature":"FCIDM_TOOLBAR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_TOOLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCIDM_STATUS","package":"druntime","parentType":"","signature":"FCIDM_STATUS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCIDM_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_DEFBROWSER","package":"druntime","parentType":"","signature":"SBSP_DEFBROWSER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_DEFBROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_SAMEBROWSER","package":"druntime","parentType":"","signature":"SBSP_SAMEBROWSER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_SAMEBROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_NEWBROWSER","package":"druntime","parentType":"","signature":"SBSP_NEWBROWSER","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_NEWBROWSER"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_DEFMODE","package":"druntime","parentType":"","signature":"SBSP_DEFMODE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_DEFMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_OPENMODE","package":"druntime","parentType":"","signature":"SBSP_OPENMODE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_OPENMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_EXPLOREMODE","package":"druntime","parentType":"","signature":"SBSP_EXPLOREMODE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_EXPLOREMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_ABSOLUTE","package":"druntime","parentType":"","signature":"SBSP_ABSOLUTE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_ABSOLUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_RELATIVE","package":"druntime","parentType":"","signature":"SBSP_RELATIVE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_PARENT","package":"druntime","parentType":"","signature":"SBSP_PARENT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_PARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_INITIATEDBYHLINKFRAME","package":"druntime","parentType":"","signature":"SBSP_INITIATEDBYHLINKFRAME","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_INITIATEDBYHLINKFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SBSP_REDIRECT","package":"druntime","parentType":"","signature":"SBSP_REDIRECT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SBSP_REDIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCT_MERGE","package":"druntime","parentType":"","signature":"FCT_MERGE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCT_MERGE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCT_CONFIGABLE","package":"druntime","parentType":"","signature":"FCT_CONFIGABLE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCT_CONFIGABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"FCT_ADDTOEND","package":"druntime","parentType":"","signature":"FCT_ADDTOEND","url":"/ddoc/druntime/core/sys/windows/shlobj.html#FCT_ADDTOEND"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_DESELECT","package":"druntime","parentType":"","signature":"SVSI_DESELECT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_DESELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_SELECT","package":"druntime","parentType":"","signature":"SVSI_SELECT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_EDIT","package":"druntime","parentType":"","signature":"SVSI_EDIT","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_EDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_DESELECTOTHERS","package":"druntime","parentType":"","signature":"SVSI_DESELECTOTHERS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_DESELECTOTHERS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_ENSUREVISIBLE","package":"druntime","parentType":"","signature":"SVSI_ENSUREVISIBLE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_ENSUREVISIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVSI_FOCUSED","package":"druntime","parentType":"","signature":"SVSI_FOCUSED","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVSI_FOCUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVGIO_BACKGROUND","package":"druntime","parentType":"","signature":"SVGIO_BACKGROUND","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVGIO_BACKGROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVGIO_SELECTION","package":"druntime","parentType":"","signature":"SVGIO_SELECTION","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVGIO_SELECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SVGIO_ALLVIEW","package":"druntime","parentType":"","signature":"SVGIO_ALLVIEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SVGIO_ALLVIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SV2GV_CURRENTVIEW","package":"druntime","parentType":"","signature":"UINT SV2GV_CURRENTVIEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SV2GV_CURRENTVIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SV2GV_DEFAULTVIEW","package":"druntime","parentType":"","signature":"UINT SV2GV_DEFAULTVIEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SV2GV_DEFAULTVIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWALLOBJECTS","package":"druntime","parentType":"","signature":"SSF_SHOWALLOBJECTS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWALLOBJECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWEXTENSIONS","package":"druntime","parentType":"","signature":"SSF_SHOWEXTENSIONS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWEXTENSIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWCOMPCOLOR","package":"druntime","parentType":"","signature":"SSF_SHOWCOMPCOLOR","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWCOMPCOLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWSYSFILES","package":"druntime","parentType":"","signature":"SSF_SHOWSYSFILES","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWSYSFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_DOUBLECLICKINWEBVIEW","package":"druntime","parentType":"","signature":"SSF_DOUBLECLICKINWEBVIEW","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_DOUBLECLICKINWEBVIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWATTRIBCOL","package":"druntime","parentType":"","signature":"SSF_SHOWATTRIBCOL","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWATTRIBCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_DESKTOPHTML","package":"druntime","parentType":"","signature":"SSF_DESKTOPHTML","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_DESKTOPHTML"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_WIN95CLASSIC","package":"druntime","parentType":"","signature":"SSF_WIN95CLASSIC","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_WIN95CLASSIC"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_DONTPRETTYPATH","package":"druntime","parentType":"","signature":"SSF_DONTPRETTYPATH","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_DONTPRETTYPATH"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_MAPNETDRVBUTTON","package":"druntime","parentType":"","signature":"SSF_MAPNETDRVBUTTON","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_MAPNETDRVBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_SHOWINFOTIP","package":"druntime","parentType":"","signature":"SSF_SHOWINFOTIP","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_SHOWINFOTIP"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_HIDEICONS","package":"druntime","parentType":"","signature":"SSF_HIDEICONS","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_HIDEICONS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"SSF_NOCONFIRMRECYCLE","package":"druntime","parentType":"","signature":"SSF_NOCONFIRMRECYCLE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#SSF_NOCONFIRMRECYCLE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"ISIOI_ICONFILE","package":"druntime","parentType":"","signature":"ISIOI_ICONFILE","url":"/ddoc/druntime/core/sys/windows/shlobj.html#ISIOI_ICONFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlobj","name":"ISIOI_ICONINDEX","package":"druntime","parentType":"","signature":"ISIOI_ICONINDEX","url":"/ddoc/druntime/core/sys/windows/shlobj.html#ISIOI_ICONINDEX"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.shlwapi","name":"core.sys.windows.shlwapi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/shlwapi.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqNA","package":"druntime","parentType":"","signature":"BOOL IntlStrEqNA(LPCSTR pStr1,  LPCSTR pStr2,  int  nChar)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqNA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqNW","package":"druntime","parentType":"","signature":"BOOL IntlStrEqNW(LPCWSTR pStr1,  LPCWSTR pStr2,  int  nChar)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqNW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqNIA","package":"druntime","parentType":"","signature":"BOOL IntlStrEqNIA(LPCSTR pStr1,  LPCSTR pStr2,  int  nChar)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqNIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqNIW","package":"druntime","parentType":"","signature":"BOOL IntlStrEqNIW(LPCWSTR pStr1,  LPCWSTR pStr2,  int  nChar)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqNIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsFileUrlA","package":"druntime","parentType":"","signature":"BOOL UrlIsFileUrlA(LPCSTR pszURL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsFileUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsFileUrlW","package":"druntime","parentType":"","signature":"BOOL UrlIsFileUrlW(LPCWSTR pszURL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsFileUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlUnescapeInPlaceA","package":"druntime","parentType":"","signature":"HRESULT UrlUnescapeInPlaceA(LPSTR pszUrl,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlUnescapeInPlaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlUnescapeInPlaceW","package":"druntime","parentType":"","signature":"HRESULT UrlUnescapeInPlaceW(LPWSTR pszUrl,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlUnescapeInPlaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"ChrCmpIA","package":"druntime","parentType":"","signature":"BOOL ChrCmpIA(WORD,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/ChrCmpIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"ChrCmpIW","package":"druntime","parentType":"","signature":"BOOL ChrCmpIW(WCHAR,  WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/ChrCmpIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqWorkerA","package":"druntime","parentType":"","signature":"BOOL IntlStrEqWorkerA(BOOL,  LPCSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqWorkerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"IntlStrEqWorkerW","package":"druntime","parentType":"","signature":"BOOL IntlStrEqWorkerW(BOOL,  LPCWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/IntlStrEqWorkerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHStrDupA","package":"druntime","parentType":"","signature":"HRESULT SHStrDupA(LPCSTR,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHStrDupA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHStrDupW","package":"druntime","parentType":"","signature":"HRESULT SHStrDupW(LPCWSTR,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHStrDupW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCatA","package":"druntime","parentType":"","signature":"LPSTR StrCatA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCatW","package":"druntime","parentType":"","signature":"LPWSTR StrCatW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCatBuffA","package":"druntime","parentType":"","signature":"LPSTR StrCatBuffA(LPSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCatBuffA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCatBuffW","package":"druntime","parentType":"","signature":"LPWSTR StrCatBuffW(LPWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCatBuffW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCatChainW","package":"druntime","parentType":"","signature":"DWORD StrCatChainW(LPWSTR,  DWORD,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCatChainW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrChrA","package":"druntime","parentType":"","signature":"LPSTR StrChrA(LPCSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrChrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrChrW","package":"druntime","parentType":"","signature":"LPWSTR StrChrW(LPCWSTR,  WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrChrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrChrIA","package":"druntime","parentType":"","signature":"LPSTR StrChrIA(LPCSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrChrIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrChrIW","package":"druntime","parentType":"","signature":"LPWSTR StrChrIW(LPCWSTR,  WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrChrIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpIW","package":"druntime","parentType":"","signature":"int StrCmpIW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpW","package":"druntime","parentType":"","signature":"int StrCmpW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCpyW","package":"druntime","parentType":"","signature":"LPWSTR StrCpyW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCpyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCpyNW","package":"druntime","parentType":"","signature":"LPWSTR StrCpyNW(LPWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCpyNW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpNA","package":"druntime","parentType":"","signature":"int StrCmpNA(LPCSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpNA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpNW","package":"druntime","parentType":"","signature":"int StrCmpNW(LPCWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpNW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpNIA","package":"druntime","parentType":"","signature":"int StrCmpNIA(LPCSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpNIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCmpNIW","package":"druntime","parentType":"","signature":"int StrCmpNIW(LPCWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCmpNIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCSpnA","package":"druntime","parentType":"","signature":"int StrCSpnA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCSpnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCSpnW","package":"druntime","parentType":"","signature":"int StrCSpnW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCSpnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCSpnIA","package":"druntime","parentType":"","signature":"int StrCSpnIA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCSpnIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrCSpnIW","package":"druntime","parentType":"","signature":"int StrCSpnIW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrCSpnIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrDupA","package":"druntime","parentType":"","signature":"LPSTR StrDupA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrDupA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrDupW","package":"druntime","parentType":"","signature":"LPWSTR StrDupW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrDupW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFormatByteSize64A","package":"druntime","parentType":"","signature":"LPSTR StrFormatByteSize64A(LONGLONG,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFormatByteSize64A.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFormatByteSizeA","package":"druntime","parentType":"","signature":"LPSTR StrFormatByteSizeA(DWORD,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFormatByteSizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFormatByteSizeW","package":"druntime","parentType":"","signature":"LPWSTR StrFormatByteSizeW(LONGLONG,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFormatByteSizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFormatKBSizeA","package":"druntime","parentType":"","signature":"LPSTR StrFormatKBSizeA(LONGLONG,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFormatKBSizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFormatKBSizeW","package":"druntime","parentType":"","signature":"LPWSTR StrFormatKBSizeW(LONGLONG,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFormatKBSizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFromTimeIntervalA","package":"druntime","parentType":"","signature":"int StrFromTimeIntervalA(LPSTR,  UINT,  DWORD,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFromTimeIntervalA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrFromTimeIntervalW","package":"druntime","parentType":"","signature":"int StrFromTimeIntervalW(LPWSTR,  UINT,  DWORD,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrFromTimeIntervalW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrIsIntlEqualA","package":"druntime","parentType":"","signature":"BOOL StrIsIntlEqualA(BOOL,  LPCSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrIsIntlEqualA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrIsIntlEqualW","package":"druntime","parentType":"","signature":"BOOL StrIsIntlEqualW(BOOL,  LPCWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrIsIntlEqualW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrNCatA","package":"druntime","parentType":"","signature":"LPSTR StrNCatA(LPSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrNCatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrNCatW","package":"druntime","parentType":"","signature":"LPWSTR StrNCatW(LPWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrNCatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrPBrkA","package":"druntime","parentType":"","signature":"LPSTR StrPBrkA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrPBrkA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrPBrkW","package":"druntime","parentType":"","signature":"LPWSTR StrPBrkW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrPBrkW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRChrA","package":"druntime","parentType":"","signature":"LPSTR StrRChrA(LPCSTR,  LPCSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRChrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRChrW","package":"druntime","parentType":"","signature":"LPWSTR StrRChrW(LPCWSTR,  LPCWSTR,  WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRChrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRChrIA","package":"druntime","parentType":"","signature":"LPSTR StrRChrIA(LPCSTR,  LPCSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRChrIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRChrIW","package":"druntime","parentType":"","signature":"LPWSTR StrRChrIW(LPCWSTR,  LPCWSTR,  WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRChrIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRStrIA","package":"druntime","parentType":"","signature":"LPSTR StrRStrIA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRStrIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRStrIW","package":"druntime","parentType":"","signature":"LPWSTR StrRStrIW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRStrIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrSpnA","package":"druntime","parentType":"","signature":"int StrSpnA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrSpnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrSpnW","package":"druntime","parentType":"","signature":"int StrSpnW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrSpnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrStrA","package":"druntime","parentType":"","signature":"LPSTR StrStrA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrStrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrStrIA","package":"druntime","parentType":"","signature":"LPSTR StrStrIA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrStrIA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrStrIW","package":"druntime","parentType":"","signature":"LPWSTR StrStrIW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrStrIW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrStrW","package":"druntime","parentType":"","signature":"LPWSTR StrStrW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrStrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrToIntA","package":"druntime","parentType":"","signature":"int StrToIntA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrToIntA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrToIntW","package":"druntime","parentType":"","signature":"int StrToIntW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrToIntW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrToIntExA","package":"druntime","parentType":"","signature":"BOOL StrToIntExA(LPCSTR,  DWORD,  int *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrToIntExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrToIntExW","package":"druntime","parentType":"","signature":"BOOL StrToIntExW(LPCWSTR,  DWORD,  int *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrToIntExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrTrimA","package":"druntime","parentType":"","signature":"BOOL StrTrimA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrTrimA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrTrimW","package":"druntime","parentType":"","signature":"BOOL StrTrimW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrTrimW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAddBackslashA","package":"druntime","parentType":"","signature":"LPSTR PathAddBackslashA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAddBackslashA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAddBackslashW","package":"druntime","parentType":"","signature":"LPWSTR PathAddBackslashW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAddBackslashW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAddExtensionA","package":"druntime","parentType":"","signature":"BOOL PathAddExtensionA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAddExtensionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAddExtensionW","package":"druntime","parentType":"","signature":"BOOL PathAddExtensionW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAddExtensionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAppendA","package":"druntime","parentType":"","signature":"BOOL PathAppendA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAppendA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathAppendW","package":"druntime","parentType":"","signature":"BOOL PathAppendW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathAppendW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathBuildRootA","package":"druntime","parentType":"","signature":"LPSTR PathBuildRootA(LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathBuildRootA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathBuildRootW","package":"druntime","parentType":"","signature":"LPWSTR PathBuildRootW(LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathBuildRootW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCanonicalizeA","package":"druntime","parentType":"","signature":"BOOL PathCanonicalizeA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCanonicalizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCanonicalizeW","package":"druntime","parentType":"","signature":"BOOL PathCanonicalizeW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCanonicalizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCombineA","package":"druntime","parentType":"","signature":"LPSTR PathCombineA(LPSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCombineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCombineW","package":"druntime","parentType":"","signature":"LPWSTR PathCombineW(LPWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCombineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCommonPrefixA","package":"druntime","parentType":"","signature":"int PathCommonPrefixA(LPCSTR,  LPCSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCommonPrefixA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCommonPrefixW","package":"druntime","parentType":"","signature":"int PathCommonPrefixW(LPCWSTR,  LPCWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCommonPrefixW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCompactPathA","package":"druntime","parentType":"","signature":"BOOL PathCompactPathA(HDC,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCompactPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCompactPathW","package":"druntime","parentType":"","signature":"BOOL PathCompactPathW(HDC,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCompactPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCompactPathExA","package":"druntime","parentType":"","signature":"BOOL PathCompactPathExA(LPSTR,  LPCSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCompactPathExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCompactPathExW","package":"druntime","parentType":"","signature":"BOOL PathCompactPathExW(LPWSTR,  LPCWSTR,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCompactPathExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCreateFromUrlA","package":"druntime","parentType":"","signature":"HRESULT PathCreateFromUrlA(LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCreateFromUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathCreateFromUrlW","package":"druntime","parentType":"","signature":"HRESULT PathCreateFromUrlW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathCreateFromUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFileExistsA","package":"druntime","parentType":"","signature":"BOOL PathFileExistsA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFileExistsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFileExistsW","package":"druntime","parentType":"","signature":"BOOL PathFileExistsW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFileExistsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindExtensionA","package":"druntime","parentType":"","signature":"LPSTR PathFindExtensionA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindExtensionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindExtensionW","package":"druntime","parentType":"","signature":"LPWSTR PathFindExtensionW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindExtensionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindFileNameA","package":"druntime","parentType":"","signature":"LPSTR PathFindFileNameA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindFileNameW","package":"druntime","parentType":"","signature":"LPWSTR PathFindFileNameW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindNextComponentA","package":"druntime","parentType":"","signature":"LPSTR PathFindNextComponentA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindNextComponentA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindNextComponentW","package":"druntime","parentType":"","signature":"LPWSTR PathFindNextComponentW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindNextComponentW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindOnPathA","package":"druntime","parentType":"","signature":"BOOL PathFindOnPathA(LPSTR,  LPCSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindOnPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindOnPathW","package":"druntime","parentType":"","signature":"BOOL PathFindOnPathW(LPWSTR,  LPCWSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindOnPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindSuffixArrayA","package":"druntime","parentType":"","signature":"LPCSTR PathFindSuffixArrayA(LPCSTR,  LPCSTR *,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindSuffixArrayA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathFindSuffixArrayW","package":"druntime","parentType":"","signature":"LPCWSTR PathFindSuffixArrayW(LPCWSTR,  LPCWSTR *,  int)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathFindSuffixArrayW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetArgsA","package":"druntime","parentType":"","signature":"LPSTR PathGetArgsA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetArgsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetArgsW","package":"druntime","parentType":"","signature":"LPWSTR PathGetArgsW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetArgsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetCharTypeA","package":"druntime","parentType":"","signature":"UINT PathGetCharTypeA(UCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetCharTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetCharTypeW","package":"druntime","parentType":"","signature":"UINT PathGetCharTypeW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetCharTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetDriveNumberA","package":"druntime","parentType":"","signature":"int PathGetDriveNumberA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetDriveNumberA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathGetDriveNumberW","package":"druntime","parentType":"","signature":"int PathGetDriveNumberW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathGetDriveNumberW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsContentTypeA","package":"druntime","parentType":"","signature":"BOOL PathIsContentTypeA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsContentTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsContentTypeW","package":"druntime","parentType":"","signature":"BOOL PathIsContentTypeW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsContentTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsDirectoryA","package":"druntime","parentType":"","signature":"BOOL PathIsDirectoryA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsDirectoryEmptyA","package":"druntime","parentType":"","signature":"BOOL PathIsDirectoryEmptyA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsDirectoryEmptyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsDirectoryEmptyW","package":"druntime","parentType":"","signature":"BOOL PathIsDirectoryEmptyW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsDirectoryEmptyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsDirectoryW","package":"druntime","parentType":"","signature":"BOOL PathIsDirectoryW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsFileSpecA","package":"druntime","parentType":"","signature":"BOOL PathIsFileSpecA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsFileSpecA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsFileSpecW","package":"druntime","parentType":"","signature":"BOOL PathIsFileSpecW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsFileSpecW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsLFNFileSpecA","package":"druntime","parentType":"","signature":"BOOL PathIsLFNFileSpecA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsLFNFileSpecA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsLFNFileSpecW","package":"druntime","parentType":"","signature":"BOOL PathIsLFNFileSpecW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsLFNFileSpecW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsNetworkPathA","package":"druntime","parentType":"","signature":"BOOL PathIsNetworkPathA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsNetworkPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsNetworkPathW","package":"druntime","parentType":"","signature":"BOOL PathIsNetworkPathW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsNetworkPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsPrefixA","package":"druntime","parentType":"","signature":"BOOL PathIsPrefixA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsPrefixA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsPrefixW","package":"druntime","parentType":"","signature":"BOOL PathIsPrefixW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsPrefixW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsRelativeA","package":"druntime","parentType":"","signature":"BOOL PathIsRelativeA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsRelativeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsRelativeW","package":"druntime","parentType":"","signature":"BOOL PathIsRelativeW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsRelativeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsRootA","package":"druntime","parentType":"","signature":"BOOL PathIsRootA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsRootA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsRootW","package":"druntime","parentType":"","signature":"BOOL PathIsRootW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsRootW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsSameRootA","package":"druntime","parentType":"","signature":"BOOL PathIsSameRootA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsSameRootA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsSameRootW","package":"druntime","parentType":"","signature":"BOOL PathIsSameRootW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsSameRootW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsSystemFolderA","package":"druntime","parentType":"","signature":"BOOL PathIsSystemFolderA(LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsSystemFolderA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsSystemFolderW","package":"druntime","parentType":"","signature":"BOOL PathIsSystemFolderW(LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsSystemFolderW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCA","package":"druntime","parentType":"","signature":"BOOL PathIsUNCA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCServerA","package":"druntime","parentType":"","signature":"BOOL PathIsUNCServerA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCServerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCServerShareA","package":"druntime","parentType":"","signature":"BOOL PathIsUNCServerShareA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCServerShareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCServerShareW","package":"druntime","parentType":"","signature":"BOOL PathIsUNCServerShareW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCServerShareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCServerW","package":"druntime","parentType":"","signature":"BOOL PathIsUNCServerW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCServerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsUNCW","package":"druntime","parentType":"","signature":"BOOL PathIsUNCW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsUNCW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsURLA","package":"druntime","parentType":"","signature":"BOOL PathIsURLA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsURLA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathIsURLW","package":"druntime","parentType":"","signature":"BOOL PathIsURLW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathIsURLW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMakePrettyA","package":"druntime","parentType":"","signature":"BOOL PathMakePrettyA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMakePrettyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMakePrettyW","package":"druntime","parentType":"","signature":"BOOL PathMakePrettyW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMakePrettyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMakeSystemFolderA","package":"druntime","parentType":"","signature":"BOOL PathMakeSystemFolderA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMakeSystemFolderA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMakeSystemFolderW","package":"druntime","parentType":"","signature":"BOOL PathMakeSystemFolderW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMakeSystemFolderW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMatchSpecA","package":"druntime","parentType":"","signature":"BOOL PathMatchSpecA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMatchSpecA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathMatchSpecW","package":"druntime","parentType":"","signature":"BOOL PathMatchSpecW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathMatchSpecW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathParseIconLocationA","package":"druntime","parentType":"","signature":"int PathParseIconLocationA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathParseIconLocationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathParseIconLocationW","package":"druntime","parentType":"","signature":"int PathParseIconLocationW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathParseIconLocationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathQuoteSpacesA","package":"druntime","parentType":"","signature":"void PathQuoteSpacesA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathQuoteSpacesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathQuoteSpacesW","package":"druntime","parentType":"","signature":"void PathQuoteSpacesW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathQuoteSpacesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRelativePathToA","package":"druntime","parentType":"","signature":"BOOL PathRelativePathToA(LPSTR,  LPCSTR,  DWORD,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRelativePathToA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRelativePathToW","package":"druntime","parentType":"","signature":"BOOL PathRelativePathToW(LPWSTR,  LPCWSTR,  DWORD,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRelativePathToW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveArgsA","package":"druntime","parentType":"","signature":"void PathRemoveArgsA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveArgsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveArgsW","package":"druntime","parentType":"","signature":"void PathRemoveArgsW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveArgsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveBackslashA","package":"druntime","parentType":"","signature":"LPSTR PathRemoveBackslashA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveBackslashA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveBackslashW","package":"druntime","parentType":"","signature":"LPWSTR PathRemoveBackslashW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveBackslashW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveBlanksA","package":"druntime","parentType":"","signature":"void PathRemoveBlanksA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveBlanksA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveBlanksW","package":"druntime","parentType":"","signature":"void PathRemoveBlanksW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveBlanksW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveExtensionA","package":"druntime","parentType":"","signature":"void PathRemoveExtensionA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveExtensionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveExtensionW","package":"druntime","parentType":"","signature":"void PathRemoveExtensionW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveExtensionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveFileSpecA","package":"druntime","parentType":"","signature":"BOOL PathRemoveFileSpecA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveFileSpecA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRemoveFileSpecW","package":"druntime","parentType":"","signature":"BOOL PathRemoveFileSpecW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRemoveFileSpecW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRenameExtensionA","package":"druntime","parentType":"","signature":"BOOL PathRenameExtensionA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRenameExtensionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathRenameExtensionW","package":"druntime","parentType":"","signature":"BOOL PathRenameExtensionW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathRenameExtensionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSearchAndQualifyA","package":"druntime","parentType":"","signature":"BOOL PathSearchAndQualifyA(LPCSTR,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSearchAndQualifyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSearchAndQualifyW","package":"druntime","parentType":"","signature":"BOOL PathSearchAndQualifyW(LPCWSTR,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSearchAndQualifyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSetDlgItemPathA","package":"druntime","parentType":"","signature":"void PathSetDlgItemPathA(HWND,  int,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSetDlgItemPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSetDlgItemPathW","package":"druntime","parentType":"","signature":"void PathSetDlgItemPathW(HWND,  int,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSetDlgItemPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSkipRootA","package":"druntime","parentType":"","signature":"LPSTR PathSkipRootA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSkipRootA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathSkipRootW","package":"druntime","parentType":"","signature":"LPWSTR PathSkipRootW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathSkipRootW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathStripPathA","package":"druntime","parentType":"","signature":"void PathStripPathA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathStripPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathStripPathW","package":"druntime","parentType":"","signature":"void PathStripPathW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathStripPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathStripToRootA","package":"druntime","parentType":"","signature":"BOOL PathStripToRootA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathStripToRootA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathStripToRootW","package":"druntime","parentType":"","signature":"BOOL PathStripToRootW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathStripToRootW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUndecorateA","package":"druntime","parentType":"","signature":"void PathUndecorateA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUndecorateA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUndecorateW","package":"druntime","parentType":"","signature":"void PathUndecorateW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUndecorateW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnExpandEnvStringsA","package":"druntime","parentType":"","signature":"BOOL PathUnExpandEnvStringsA(LPCSTR,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnExpandEnvStringsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnExpandEnvStringsW","package":"druntime","parentType":"","signature":"BOOL PathUnExpandEnvStringsW(LPCWSTR,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnExpandEnvStringsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnmakeSystemFolderA","package":"druntime","parentType":"","signature":"BOOL PathUnmakeSystemFolderA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnmakeSystemFolderA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnmakeSystemFolderW","package":"druntime","parentType":"","signature":"BOOL PathUnmakeSystemFolderW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnmakeSystemFolderW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnquoteSpacesA","package":"druntime","parentType":"","signature":"void PathUnquoteSpacesA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnquoteSpacesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"PathUnquoteSpacesW","package":"druntime","parentType":"","signature":"void PathUnquoteSpacesW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/PathUnquoteSpacesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHAutoComplete","package":"druntime","parentType":"","signature":"HRESULT SHAutoComplete(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHAutoComplete.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCreateThread","package":"druntime","parentType":"","signature":"BOOL SHCreateThread(LPTHREAD_START_ROUTINE,  void *,  DWORD,  LPTHREAD_START_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCreateThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCopyKeyA","package":"druntime","parentType":"","signature":"DWORD SHCopyKeyA(HKEY,  LPCSTR,  HKEY,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCopyKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCopyKeyW","package":"druntime","parentType":"","signature":"DWORD SHCopyKeyW(HKEY,  LPCWSTR,  HKEY,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCopyKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteEmptyKeyA","package":"druntime","parentType":"","signature":"DWORD SHDeleteEmptyKeyA(HKEY,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteEmptyKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteEmptyKeyW","package":"druntime","parentType":"","signature":"DWORD SHDeleteEmptyKeyW(HKEY,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteEmptyKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteKeyA","package":"druntime","parentType":"","signature":"DWORD SHDeleteKeyA(HKEY,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteKeyW","package":"druntime","parentType":"","signature":"DWORD SHDeleteKeyW(HKEY,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHEnumKeyExA","package":"druntime","parentType":"","signature":"DWORD SHEnumKeyExA(HKEY,  DWORD,  LPSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHEnumKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHEnumKeyExW","package":"druntime","parentType":"","signature":"DWORD SHEnumKeyExW(HKEY,  DWORD,  LPWSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHEnumKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHQueryInfoKeyA","package":"druntime","parentType":"","signature":"DWORD SHQueryInfoKeyA(HKEY,  LPDWORD,  LPDWORD,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHQueryInfoKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHQueryInfoKeyW","package":"druntime","parentType":"","signature":"DWORD SHQueryInfoKeyW(HKEY,  LPDWORD,  LPDWORD,  LPDWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHQueryInfoKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHQueryValueExA","package":"druntime","parentType":"","signature":"DWORD SHQueryValueExA(HKEY,  LPCSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHQueryValueExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHQueryValueExW","package":"druntime","parentType":"","signature":"DWORD SHQueryValueExW(HKEY,  LPCWSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHQueryValueExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHGetThreadRef","package":"druntime","parentType":"","signature":"HRESULT SHGetThreadRef(IUnknown *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHGetThreadRef.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHSetThreadRef","package":"druntime","parentType":"","signature":"HRESULT SHSetThreadRef(IUnknown)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHSetThreadRef.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHSkipJunction","package":"druntime","parentType":"","signature":"BOOL SHSkipJunction(IBindCtx,  const(CLSID) *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHSkipJunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHEnumValueA","package":"druntime","parentType":"","signature":"DWORD SHEnumValueA(HKEY,  DWORD,  LPSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHEnumValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHEnumValueW","package":"druntime","parentType":"","signature":"DWORD SHEnumValueW(HKEY,  DWORD,  LPWSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHEnumValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHGetValueA","package":"druntime","parentType":"","signature":"DWORD SHGetValueA(HKEY,  LPCSTR,  LPCSTR,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHGetValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHGetValueW","package":"druntime","parentType":"","signature":"DWORD SHGetValueW(HKEY,  LPCWSTR,  LPCWSTR,  LPDWORD,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHGetValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHSetValueA","package":"druntime","parentType":"","signature":"DWORD SHSetValueA(HKEY,  LPCSTR,  LPCSTR,  DWORD,  LPCVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHSetValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHSetValueW","package":"druntime","parentType":"","signature":"DWORD SHSetValueW(HKEY,  LPCWSTR,  LPCWSTR,  DWORD,  LPCVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHSetValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteValueA","package":"druntime","parentType":"","signature":"DWORD SHDeleteValueA(HKEY,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHDeleteValueW","package":"druntime","parentType":"","signature":"DWORD SHDeleteValueW(HKEY,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHDeleteValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocCreate","package":"druntime","parentType":"","signature":"HRESULT AssocCreate(CLSID,  const(IID) * ,  const(LPVOID) *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryKeyA","package":"druntime","parentType":"","signature":"HRESULT AssocQueryKeyA(ASSOCF,  ASSOCKEY,  LPCSTR,  LPCSTR,  HKEY *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryKeyW","package":"druntime","parentType":"","signature":"HRESULT AssocQueryKeyW(ASSOCF,  ASSOCKEY,  LPCWSTR,  LPCWSTR,  HKEY *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryStringA","package":"druntime","parentType":"","signature":"HRESULT AssocQueryStringA(ASSOCF,  ASSOCSTR,  LPCSTR,  LPCSTR,  LPSTR,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryStringByKeyA","package":"druntime","parentType":"","signature":"HRESULT AssocQueryStringByKeyA(ASSOCF,  ASSOCSTR,  HKEY,  LPCSTR,  LPSTR,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryStringByKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryStringByKeyW","package":"druntime","parentType":"","signature":"HRESULT AssocQueryStringByKeyW(ASSOCF,  ASSOCSTR,  HKEY,  LPCWSTR,  LPWSTR,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryStringByKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"AssocQueryStringW","package":"druntime","parentType":"","signature":"HRESULT AssocQueryStringW(ASSOCF,  ASSOCSTR,  LPCWSTR,  LPCWSTR,  LPWSTR,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/AssocQueryStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlApplySchemeA","package":"druntime","parentType":"","signature":"HRESULT UrlApplySchemeA(LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlApplySchemeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlApplySchemeW","package":"druntime","parentType":"","signature":"HRESULT UrlApplySchemeW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlApplySchemeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCanonicalizeA","package":"druntime","parentType":"","signature":"HRESULT UrlCanonicalizeA(LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCanonicalizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCanonicalizeW","package":"druntime","parentType":"","signature":"HRESULT UrlCanonicalizeW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCanonicalizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCombineA","package":"druntime","parentType":"","signature":"HRESULT UrlCombineA(LPCSTR,  LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCombineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCombineW","package":"druntime","parentType":"","signature":"HRESULT UrlCombineW(LPCWSTR,  LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCombineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCompareA","package":"druntime","parentType":"","signature":"int UrlCompareA(LPCSTR,  LPCSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCompareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCompareW","package":"druntime","parentType":"","signature":"int UrlCompareW(LPCWSTR,  LPCWSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCompareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCreateFromPathA","package":"druntime","parentType":"","signature":"HRESULT UrlCreateFromPathA(LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCreateFromPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlCreateFromPathW","package":"druntime","parentType":"","signature":"HRESULT UrlCreateFromPathW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlCreateFromPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlEscapeA","package":"druntime","parentType":"","signature":"HRESULT UrlEscapeA(LPCSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlEscapeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlEscapeW","package":"druntime","parentType":"","signature":"HRESULT UrlEscapeW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlEscapeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlGetLocationA","package":"druntime","parentType":"","signature":"LPCSTR UrlGetLocationA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlGetLocationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlGetLocationW","package":"druntime","parentType":"","signature":"LPCWSTR UrlGetLocationW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlGetLocationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlGetPartA","package":"druntime","parentType":"","signature":"HRESULT UrlGetPartA(LPCSTR,  LPSTR,  LPDWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlGetPartA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlGetPartW","package":"druntime","parentType":"","signature":"HRESULT UrlGetPartW(LPCWSTR,  LPWSTR,  LPDWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlGetPartW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlHashA","package":"druntime","parentType":"","signature":"HRESULT UrlHashA(LPCSTR,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlHashA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlHashW","package":"druntime","parentType":"","signature":"HRESULT UrlHashW(LPCWSTR,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlHashW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsA","package":"druntime","parentType":"","signature":"BOOL UrlIsA(LPCSTR,  URLIS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsW","package":"druntime","parentType":"","signature":"BOOL UrlIsW(LPCWSTR,  URLIS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsNoHistoryA","package":"druntime","parentType":"","signature":"BOOL UrlIsNoHistoryA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsNoHistoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsNoHistoryW","package":"druntime","parentType":"","signature":"BOOL UrlIsNoHistoryW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsNoHistoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsOpaqueA","package":"druntime","parentType":"","signature":"BOOL UrlIsOpaqueA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsOpaqueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlIsOpaqueW","package":"druntime","parentType":"","signature":"BOOL UrlIsOpaqueW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlIsOpaqueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlUnescapeA","package":"druntime","parentType":"","signature":"HRESULT UrlUnescapeA(LPSTR,  LPSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlUnescapeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"UrlUnescapeW","package":"druntime","parentType":"","signature":"HRESULT UrlUnescapeW(LPWSTR,  LPWSTR,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/UrlUnescapeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegCloseUSKey","package":"druntime","parentType":"","signature":"DWORD SHRegCloseUSKey(HUSKEY)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegCloseUSKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegCreateUSKeyA","package":"druntime","parentType":"","signature":"LONG SHRegCreateUSKeyA(LPCSTR,  REGSAM,  HUSKEY,  PHUSKEY,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegCreateUSKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegCreateUSKeyW","package":"druntime","parentType":"","signature":"LONG SHRegCreateUSKeyW(LPCWSTR,  REGSAM,  HUSKEY,  PHUSKEY,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegCreateUSKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegDeleteEmptyUSKeyA","package":"druntime","parentType":"","signature":"LONG SHRegDeleteEmptyUSKeyA(HUSKEY,  LPCSTR,  SHREGDEL_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegDeleteEmptyUSKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegDeleteEmptyUSKeyW","package":"druntime","parentType":"","signature":"LONG SHRegDeleteEmptyUSKeyW(HUSKEY,  LPCWSTR,  SHREGDEL_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegDeleteEmptyUSKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegDeleteUSValueA","package":"druntime","parentType":"","signature":"LONG SHRegDeleteUSValueA(HUSKEY,  LPCSTR,  SHREGDEL_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegDeleteUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegDeleteUSValueW","package":"druntime","parentType":"","signature":"LONG SHRegDeleteUSValueW(HUSKEY,  LPCWSTR,  SHREGDEL_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegDeleteUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegDuplicateHKey","package":"druntime","parentType":"","signature":"HKEY SHRegDuplicateHKey(HKEY)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegDuplicateHKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegEnumUSKeyA","package":"druntime","parentType":"","signature":"DWORD SHRegEnumUSKeyA(HUSKEY,  DWORD,  LPSTR,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegEnumUSKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegEnumUSKeyW","package":"druntime","parentType":"","signature":"DWORD SHRegEnumUSKeyW(HUSKEY,  DWORD,  LPWSTR,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegEnumUSKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegEnumUSValueA","package":"druntime","parentType":"","signature":"DWORD SHRegEnumUSValueA(HUSKEY,  DWORD,  LPSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegEnumUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegEnumUSValueW","package":"druntime","parentType":"","signature":"DWORD SHRegEnumUSValueW(HUSKEY,  DWORD,  LPWSTR,  LPDWORD,  LPDWORD,  LPVOID,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegEnumUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetBoolUSValueA","package":"druntime","parentType":"","signature":"BOOL SHRegGetBoolUSValueA(LPCSTR,  LPCSTR,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetBoolUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetBoolUSValueW","package":"druntime","parentType":"","signature":"BOOL SHRegGetBoolUSValueW(LPCWSTR,  LPCWSTR,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetBoolUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetPathA","package":"druntime","parentType":"","signature":"DWORD SHRegGetPathA(HKEY,  LPCSTR,  LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetPathW","package":"druntime","parentType":"","signature":"DWORD SHRegGetPathW(HKEY,  LPCWSTR,  LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetUSValueA","package":"druntime","parentType":"","signature":"LONG SHRegGetUSValueA(LPCSTR,  LPCSTR,  LPDWORD,  LPVOID,  LPDWORD,  BOOL,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegGetUSValueW","package":"druntime","parentType":"","signature":"LONG SHRegGetUSValueW(LPCWSTR,  LPCWSTR,  LPDWORD,  LPVOID,  LPDWORD,  BOOL,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegGetUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegOpenUSKeyA","package":"druntime","parentType":"","signature":"LONG SHRegOpenUSKeyA(LPCSTR,  REGSAM,  HUSKEY,  PHUSKEY,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegOpenUSKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegOpenUSKeyW","package":"druntime","parentType":"","signature":"LONG SHRegOpenUSKeyW(LPCWSTR,  REGSAM,  HUSKEY,  PHUSKEY,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegOpenUSKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegQueryInfoUSKeyA","package":"druntime","parentType":"","signature":"DWORD SHRegQueryInfoUSKeyA(HUSKEY,  LPDWORD,  LPDWORD,  LPDWORD,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegQueryInfoUSKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegQueryInfoUSKeyW","package":"druntime","parentType":"","signature":"DWORD SHRegQueryInfoUSKeyW(HUSKEY,  LPDWORD,  LPDWORD,  LPDWORD,  LPDWORD,  SHREGENUM_FLAGS)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegQueryInfoUSKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegQueryUSValueA","package":"druntime","parentType":"","signature":"LONG SHRegQueryUSValueA(HUSKEY,  LPCSTR,  LPDWORD,  LPVOID,  LPDWORD,  BOOL,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegQueryUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegQueryUSValueW","package":"druntime","parentType":"","signature":"LONG SHRegQueryUSValueW(HUSKEY,  LPCWSTR,  LPDWORD,  LPVOID,  LPDWORD,  BOOL,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegQueryUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegSetPathA","package":"druntime","parentType":"","signature":"DWORD SHRegSetPathA(HKEY,  LPCSTR,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegSetPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegSetPathW","package":"druntime","parentType":"","signature":"DWORD SHRegSetPathW(HKEY,  LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegSetPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegSetUSValueA","package":"druntime","parentType":"","signature":"LONG SHRegSetUSValueA(LPCSTR,  LPCSTR,  DWORD,  LPVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegSetUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegSetUSValueW","package":"druntime","parentType":"","signature":"LONG SHRegSetUSValueW(LPCWSTR,  LPCWSTR,  DWORD,  LPVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegSetUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegWriteUSValueA","package":"druntime","parentType":"","signature":"LONG SHRegWriteUSValueA(HUSKEY,  LPCSTR,  DWORD,  LPVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegWriteUSValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHRegWriteUSValueW","package":"druntime","parentType":"","signature":"LONG SHRegWriteUSValueW(HUSKEY,  LPCWSTR,  DWORD,  LPVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHRegWriteUSValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"HashData","package":"druntime","parentType":"","signature":"HRESULT HashData(LPBYTE,  DWORD,  LPBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/HashData.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCreateShellPalette","package":"druntime","parentType":"","signature":"HPALETTE SHCreateShellPalette(HDC)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCreateShellPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"ColorHLSToRGB","package":"druntime","parentType":"","signature":"COLORREF ColorHLSToRGB(WORD,  WORD,  WORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/ColorHLSToRGB.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"ColorAdjustLuma","package":"druntime","parentType":"","signature":"COLORREF ColorAdjustLuma(COLORREF,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/ColorAdjustLuma.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"ColorRGBToHLS","package":"druntime","parentType":"","signature":"void ColorRGBToHLS(COLORREF,  WORD *,  WORD *,  WORD *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/ColorRGBToHLS.html"},{"doc":"Should not be necessary for D? extern (C): int  wnsprintfA(LPSTR, int, LPCSTR, ...); int  wnsprintfW(LPWSTR, int, LPCWSTR, ...); extern (Windows): ...","kind":"function","module":"core.sys.windows.shlwapi","name":"MLLoadLibraryA","package":"druntime","parentType":"","signature":"HINSTANCE MLLoadLibraryA(LPCSTR,  HANDLE,  DWORD,  LPCSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/MLLoadLibraryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"MLLoadLibraryW","package":"druntime","parentType":"","signature":"HINSTANCE MLLoadLibraryW(LPCWSTR,  HANDLE,  DWORD,  LPCWSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/shlwapi/MLLoadLibraryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"DllInstall","package":"druntime","parentType":"","signature":"HRESULT DllInstall(BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/shlwapi/DllInstall.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRetToBufA","package":"druntime","parentType":"","signature":"HRESULT StrRetToBufA(LPSTRRET,  LPCITEMIDLIST,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRetToBufA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRetToBufW","package":"druntime","parentType":"","signature":"HRESULT StrRetToBufW(LPSTRRET,  LPCITEMIDLIST,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRetToBufW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRetToStrA","package":"druntime","parentType":"","signature":"HRESULT StrRetToStrA(LPSTRRET,  LPCITEMIDLIST,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRetToStrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"StrRetToStrW","package":"druntime","parentType":"","signature":"HRESULT StrRetToStrW(LPSTRRET,  LPCITEMIDLIST,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/StrRetToStrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCreateStreamOnFileA","package":"druntime","parentType":"","signature":"HRESULT SHCreateStreamOnFileA(LPCSTR,  DWORD,  IStream *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCreateStreamOnFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHCreateStreamOnFileW","package":"druntime","parentType":"","signature":"HRESULT SHCreateStreamOnFileW(LPCWSTR,  DWORD,  IStream *)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHCreateStreamOnFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHOpenRegStream2A","package":"druntime","parentType":"","signature":"IStream SHOpenRegStream2A(HKEY,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHOpenRegStream2A.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHOpenRegStream2W","package":"druntime","parentType":"","signature":"IStream SHOpenRegStream2W(HKEY,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHOpenRegStream2W.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHOpenRegStreamA","package":"druntime","parentType":"","signature":"IStream SHOpenRegStreamA(HKEY,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHOpenRegStreamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.shlwapi","name":"SHOpenRegStreamW","package":"druntime","parentType":"","signature":"IStream SHOpenRegStreamW(HKEY,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/shlwapi/SHOpenRegStreamW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.shlwapi","name":"DLLVERSIONINFO","package":"druntime","parentType":"","signature":"DLLVERSIONINFO","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#DLLVERSIONINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.shlwapi","name":"DLLVERSIONINFO2","package":"druntime","parentType":"","signature":"DLLVERSIONINFO2","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#DLLVERSIONINFO2"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"ASSOCSTR","package":"druntime","parentType":"","signature":"ASSOCSTR","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_COMMAND","package":"druntime","parentType":"","signature":"ASSOCSTR_COMMAND = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_EXECUTABLE","package":"druntime","parentType":"","signature":"ASSOCSTR_EXECUTABLE = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_FRIENDLYDOCNAME","package":"druntime","parentType":"","signature":"ASSOCSTR_FRIENDLYDOCNAME = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_FRIENDLYAPPNAME","package":"druntime","parentType":"","signature":"ASSOCSTR_FRIENDLYAPPNAME = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_NOOPEN","package":"druntime","parentType":"","signature":"ASSOCSTR_NOOPEN = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_SHELLNEWVALUE","package":"druntime","parentType":"","signature":"ASSOCSTR_SHELLNEWVALUE = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_DDECOMMAND","package":"druntime","parentType":"","signature":"ASSOCSTR_DDECOMMAND = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_DDEIFEXEC","package":"druntime","parentType":"","signature":"ASSOCSTR_DDEIFEXEC = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_DDEAPPLICATION","package":"druntime","parentType":"","signature":"ASSOCSTR_DDEAPPLICATION = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCSTR_DDETOPIC","package":"druntime","parentType":"","signature":"ASSOCSTR_DDETOPIC = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCSTR"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"ASSOCKEY","package":"druntime","parentType":"","signature":"ASSOCKEY","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCKEY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCKEY_SHELLEXECCLASS","package":"druntime","parentType":"","signature":"ASSOCKEY_SHELLEXECCLASS = 1","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCKEY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCKEY_APP","package":"druntime","parentType":"","signature":"ASSOCKEY_APP = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCKEY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCKEY_CLASS","package":"druntime","parentType":"","signature":"ASSOCKEY_CLASS = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCKEY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCKEY_BASECLASS","package":"druntime","parentType":"","signature":"ASSOCKEY_BASECLASS = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCKEY"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"ASSOCDATA","package":"druntime","parentType":"","signature":"ASSOCDATA","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCDATA"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCDATA_MSIDESCRIPTOR","package":"druntime","parentType":"","signature":"ASSOCDATA_MSIDESCRIPTOR = 1","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCDATA"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCDATA_NOACTIVATEHANDLER","package":"druntime","parentType":"","signature":"ASSOCDATA_NOACTIVATEHANDLER = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCDATA"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"ASSOCDATA_QUERYCLASSSTORE","package":"druntime","parentType":"","signature":"ASSOCDATA_QUERYCLASSSTORE = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.shlwapi","name":"ASSOCF","package":"druntime","parentType":"","signature":"ASSOCF = DWORD","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#ASSOCF"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"SHREGDEL_FLAGS","package":"druntime","parentType":"","signature":"SHREGDEL_FLAGS","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGDEL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGDEL_DEFAULT","package":"druntime","parentType":"","signature":"SHREGDEL_DEFAULT = 0x00000000","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGDEL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGDEL_HKCU","package":"druntime","parentType":"","signature":"SHREGDEL_HKCU = 0x00000001","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGDEL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGDEL_HKLM","package":"druntime","parentType":"","signature":"SHREGDEL_HKLM = 0x00000010","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGDEL_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGDEL_BOTH","package":"druntime","parentType":"","signature":"SHREGDEL_BOTH = 0x00000011","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGDEL_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"SHREGENUM_FLAGS","package":"druntime","parentType":"","signature":"SHREGENUM_FLAGS","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGENUM_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGENUM_DEFAULT","package":"druntime","parentType":"","signature":"SHREGENUM_DEFAULT = 0x00000000","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGENUM_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGENUM_HKCU","package":"druntime","parentType":"","signature":"SHREGENUM_HKCU = 0x00000001","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGENUM_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGENUM_HKLM","package":"druntime","parentType":"","signature":"SHREGENUM_HKLM = 0x00000010","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGENUM_FLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"SHREGENUM_BOTH","package":"druntime","parentType":"","signature":"SHREGENUM_BOTH = 0x00000011","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#SHREGENUM_FLAGS"},{"doc":"","kind":"enum","module":"core.sys.windows.shlwapi","name":"URLIS","package":"druntime","parentType":"","signature":"URLIS","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_URL","package":"druntime","parentType":"","signature":"URLIS_URL = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_OPAQUE","package":"druntime","parentType":"","signature":"URLIS_OPAQUE = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_NOHISTORY","package":"druntime","parentType":"","signature":"URLIS_NOHISTORY = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_FILEURL","package":"druntime","parentType":"","signature":"URLIS_FILEURL = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_APPLIABLE","package":"druntime","parentType":"","signature":"URLIS_APPLIABLE = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_DIRECTORY","package":"druntime","parentType":"","signature":"URLIS_DIRECTORY = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.shlwapi","name":"URLIS_HASQUERY","package":"druntime","parentType":"","signature":"URLIS_HASQUERY = ","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URLIS"},{"doc":"","kind":"alias","module":"core.sys.windows.shlwapi","name":"HUSKEY","package":"druntime","parentType":"","signature":"HUSKEY = HANDLE","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#HUSKEY"},{"doc":"","kind":"alias","module":"core.sys.windows.shlwapi","name":"PHUSKEY","package":"druntime","parentType":"","signature":"PHUSKEY = HUSKEY *","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#PHUSKEY"},{"doc":"","kind":"alias","module":"core.sys.windows.shlwapi","name":"DLLGETVERSIONPROC","package":"druntime","parentType":"","signature":"DLLGETVERSIONPROC = HRESULT function (DLLVERSIONINFO *)","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#DLLGETVERSIONPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.shlwapi","name":"StrToLong","package":"druntime","parentType":"","signature":"StrToLong = StrToInt","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#StrToLong"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"DLLVER_PLATFORM_WINDOWS","package":"druntime","parentType":"","signature":"DLLVER_PLATFORM_WINDOWS","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#DLLVER_PLATFORM_WINDOWS"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"DLLVER_PLATFORM_NT","package":"druntime","parentType":"","signature":"DLLVER_PLATFORM_NT","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#DLLVER_PLATFORM_NT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_DONT_ESCAPE_EXTRA_INFO","package":"druntime","parentType":"","signature":"URL_DONT_ESCAPE_EXTRA_INFO","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_DONT_ESCAPE_EXTRA_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_DONT_SIMPLIFY","package":"druntime","parentType":"","signature":"URL_DONT_SIMPLIFY","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_DONT_SIMPLIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_ESCAPE_PERCENT","package":"druntime","parentType":"","signature":"URL_ESCAPE_PERCENT","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_ESCAPE_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_ESCAPE_SEGMENT_ONLY","package":"druntime","parentType":"","signature":"URL_ESCAPE_SEGMENT_ONLY","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_ESCAPE_SEGMENT_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_ESCAPE_SPACES_ONLY","package":"druntime","parentType":"","signature":"URL_ESCAPE_SPACES_ONLY","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_ESCAPE_SPACES_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_ESCAPE_UNSAFE","package":"druntime","parentType":"","signature":"URL_ESCAPE_UNSAFE","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_ESCAPE_UNSAFE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_INTERNAL_PATH","package":"druntime","parentType":"","signature":"URL_INTERNAL_PATH","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_INTERNAL_PATH"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_PARTFLAG_KEEPSCHEME","package":"druntime","parentType":"","signature":"URL_PARTFLAG_KEEPSCHEME","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_PARTFLAG_KEEPSCHEME"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_PLUGGABLE_PROTOCOL","package":"druntime","parentType":"","signature":"URL_PLUGGABLE_PROTOCOL","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_PLUGGABLE_PROTOCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_UNESCAPE","package":"druntime","parentType":"","signature":"URL_UNESCAPE","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_UNESCAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_UNESCAPE_HIGH_ANSI_ONLY","package":"druntime","parentType":"","signature":"URL_UNESCAPE_HIGH_ANSI_ONLY","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_UNESCAPE_HIGH_ANSI_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.shlwapi","name":"URL_UNESCAPE_INPLACE","package":"druntime","parentType":"","signature":"URL_UNESCAPE_INPLACE","url":"/ddoc/druntime/core/sys/windows/shlwapi.html#URL_UNESCAPE_INPLACE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.snmp","name":"core.sys.windows.snmp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/snmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionClose","package":"druntime","parentType":"","signature":"VOID SnmpExtensionClose()","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionInit","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionInit(DWORD,  HANDLE *,  AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionInitEx","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionInitEx(AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionInitEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionMonitor","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionMonitor(LPVOID)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionMonitor.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionQuery","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionQuery(BYTE,  SnmpVarBindList *,  AsnInteger32 *,\n       AsnInteger32 *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionQueryEx","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionQueryEx(DWORD,  DWORD,  SnmpVarBindList *,  AsnOctetString *,\n       AsnInteger32 *,  AsnInteger32 *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionQueryEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpExtensionTrap","package":"druntime","parentType":"","signature":"BOOL SnmpExtensionTrap(AsnObjectIdentifier *,  AsnInteger32 *,  AsnInteger32 *,\n       AsnTimeticks *,  SnmpVarBindList *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpExtensionTrap.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpSvcGetUptime","package":"druntime","parentType":"","signature":"DWORD SnmpSvcGetUptime()","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpSvcGetUptime.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpSvcSetLogLevel","package":"druntime","parentType":"","signature":"VOID SnmpSvcSetLogLevel(INT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpSvcSetLogLevel.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpSvcSetLogType","package":"druntime","parentType":"","signature":"VOID SnmpSvcSetLogType(INT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpSvcSetLogType.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilAsnAnyCpy","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilAsnAnyCpy(AsnAny *,  AsnAny *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilAsnAnyCpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilAsnAnyFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilAsnAnyFree(AsnAny *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilAsnAnyFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilDbgPrint","package":"druntime","parentType":"","signature":"VOID SnmpUtilDbgPrint(INT,  LPSTR, ...)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilDbgPrint.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilIdsToA","package":"druntime","parentType":"","signature":"LPSTR SnmpUtilIdsToA(UINT *,  UINT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilIdsToA.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilMemAlloc","package":"druntime","parentType":"","signature":"LPVOID SnmpUtilMemAlloc(UINT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilMemAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilMemFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilMemFree(LPVOID)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilMemFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilMemReAlloc","package":"druntime","parentType":"","signature":"LPVOID SnmpUtilMemReAlloc(LPVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilMemReAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOctetsCmp","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOctetsCmp(AsnOctetString *,  AsnOctetString *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOctetsCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOctetsCpy","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOctetsCpy(AsnOctetString *,  AsnOctetString *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOctetsCpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOctetsFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilOctetsFree(AsnOctetString *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOctetsFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOctetsNCmp","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOctetsNCmp(AsnOctetString *,  AsnOctetString *,  UINT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOctetsNCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidAppend","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOidAppend(AsnObjectIdentifier *,  AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidAppend.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidCmp","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOidCmp(AsnObjectIdentifier *,  AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidCpy","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOidCpy(AsnObjectIdentifier *,  AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidCpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilOidFree(AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidNCmp","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilOidNCmp(AsnObjectIdentifier *,  AsnObjectIdentifier *,  UINT)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidNCmp.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilOidToA","package":"druntime","parentType":"","signature":"LPSTR SnmpUtilOidToA(AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilOidToA.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilPrintAsnAny","package":"druntime","parentType":"","signature":"VOID SnmpUtilPrintAsnAny(AsnAny *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilPrintAsnAny.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilPrintOid","package":"druntime","parentType":"","signature":"VOID SnmpUtilPrintOid(AsnObjectIdentifier *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilPrintOid.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilVarBindCpy","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilVarBindCpy(SnmpVarBind *,  SnmpVarBind *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilVarBindCpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilVarBindListCpy","package":"druntime","parentType":"","signature":"SNMPAPI SnmpUtilVarBindListCpy(SnmpVarBindList *,  SnmpVarBindList *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilVarBindListCpy.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilVarBindFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilVarBindFree(SnmpVarBind *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilVarBindFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.snmp","name":"SnmpUtilVarBindListFree","package":"druntime","parentType":"","signature":"VOID SnmpUtilVarBindListFree(SnmpVarBindList *)","url":"/ddoc/druntime/core/sys/windows/snmp/SnmpUtilVarBindListFree.html"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMPAPI","package":"druntime","parentType":"","signature":"SNMPAPI = INT","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMPAPI"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnInteger32","package":"druntime","parentType":"","signature":"AsnInteger32 = LONG","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnInteger32"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnUnsigned32","package":"druntime","parentType":"","signature":"AsnUnsigned32 = ULONG","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnUnsigned32"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnCounter64","package":"druntime","parentType":"","signature":"AsnCounter64 = ULARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnCounter64"},{"doc":"","kind":"struct","module":"core.sys.windows.snmp","name":"AsnOctetString","package":"druntime","parentType":"","signature":"AsnOctetString","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnOctetString"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnBits","package":"druntime","parentType":"","signature":"AsnBits = AsnOctetString","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnBits"},{"doc":"","kind":"struct","module":"core.sys.windows.snmp","name":"AsnObjectIdentifier","package":"druntime","parentType":"","signature":"AsnObjectIdentifier","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnObjectIdentifier"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnObjectName","package":"druntime","parentType":"","signature":"AsnObjectName = AsnObjectIdentifier","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnObjectName"},{"doc":"","kind":"struct","module":"core.sys.windows.snmp","name":"AsnAny","package":"druntime","parentType":"","signature":"AsnAny","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnAny"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnObjectSyntax","package":"druntime","parentType":"","signature":"AsnObjectSyntax = AsnAny","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnObjectSyntax"},{"doc":"","kind":"struct","module":"core.sys.windows.snmp","name":"SnmpVarBind","package":"druntime","parentType":"","signature":"SnmpVarBind","url":"/ddoc/druntime/core/sys/windows/snmp.html#SnmpVarBind"},{"doc":"","kind":"struct","module":"core.sys.windows.snmp","name":"SnmpVarBindList","package":"druntime","parentType":"","signature":"SnmpVarBindList","url":"/ddoc/druntime/core/sys/windows/snmp.html#SnmpVarBindList"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_malloc","package":"druntime","parentType":"","signature":"SNMP_malloc = SnmpUtilMemAlloc","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_malloc"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_free","package":"druntime","parentType":"","signature":"SNMP_free = SnmpUtilMemFree","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_free"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_realloc","package":"druntime","parentType":"","signature":"SNMP_realloc = SnmpUtilMemReAlloc","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_realloc"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_DBG_malloc","package":"druntime","parentType":"","signature":"SNMP_DBG_malloc = SnmpUtilMemAlloc","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_DBG_malloc"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_DBG_free","package":"druntime","parentType":"","signature":"SNMP_DBG_free = SnmpUtilMemFree","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_DBG_free"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_DBG_realloc","package":"druntime","parentType":"","signature":"SNMP_DBG_realloc = SnmpUtilMemReAlloc","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_DBG_realloc"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_oidappend","package":"druntime","parentType":"","signature":"SNMP_oidappend = SnmpUtilOidAppend","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_oidappend"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_oidcmp","package":"druntime","parentType":"","signature":"SNMP_oidcmp = SnmpUtilOidCmp","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_oidcmp"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_oidcpy","package":"druntime","parentType":"","signature":"SNMP_oidcpy = SnmpUtilOidCpy","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_oidcpy"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_oidfree","package":"druntime","parentType":"","signature":"SNMP_oidfree = SnmpUtilOidFree","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_oidfree"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_oidncmp","package":"druntime","parentType":"","signature":"SNMP_oidncmp = SnmpUtilOidNCmp","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_oidncmp"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_printany","package":"druntime","parentType":"","signature":"SNMP_printany = SnmpUtilPrintAsnAny","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_printany"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_CopyVarBind","package":"druntime","parentType":"","signature":"SNMP_CopyVarBind = SnmpUtilVarBindCpy","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_CopyVarBind"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_CopyVarBindList","package":"druntime","parentType":"","signature":"SNMP_CopyVarBindList = SnmpUtilVarBindListCpy","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_CopyVarBindList"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_FreeVarBind","package":"druntime","parentType":"","signature":"SNMP_FreeVarBind = SnmpUtilVarBindFree","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_FreeVarBind"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"SNMP_FreeVarBindList","package":"druntime","parentType":"","signature":"SNMP_FreeVarBindList = SnmpUtilVarBindListFree","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_FreeVarBindList"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1155_IPADDRESS","package":"druntime","parentType":"","signature":"ASN_RFC1155_IPADDRESS = ASN_IPADDRESS","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1155_IPADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1155_COUNTER","package":"druntime","parentType":"","signature":"ASN_RFC1155_COUNTER = ASN_COUNTER32","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1155_COUNTER"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1155_GAUGE","package":"druntime","parentType":"","signature":"ASN_RFC1155_GAUGE = ASN_GAUGE32","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1155_GAUGE"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1155_TIMETICKS","package":"druntime","parentType":"","signature":"ASN_RFC1155_TIMETICKS = ASN_TIMETICKS","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1155_TIMETICKS"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1155_OPAQUE","package":"druntime","parentType":"","signature":"ASN_RFC1155_OPAQUE = ASN_OPAQUE","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1155_OPAQUE"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1213_DISPSTRING","package":"druntime","parentType":"","signature":"ASN_RFC1213_DISPSTRING = ASN_OCTETSTRING","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1213_DISPSTRING"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1157_GETREQUEST","package":"druntime","parentType":"","signature":"ASN_RFC1157_GETREQUEST = SNMP_PDU_GET","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1157_GETREQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1157_GETNEXTREQUEST","package":"druntime","parentType":"","signature":"ASN_RFC1157_GETNEXTREQUEST = SNMP_PDU_GETNEXT","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1157_GETNEXTREQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1157_GETRESPONSE","package":"druntime","parentType":"","signature":"ASN_RFC1157_GETRESPONSE = SNMP_PDU_RESPONSE","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1157_GETRESPONSE"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1157_SETREQUEST","package":"druntime","parentType":"","signature":"ASN_RFC1157_SETREQUEST = SNMP_PDU_SET","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1157_SETREQUEST"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_RFC1157_TRAP","package":"druntime","parentType":"","signature":"ASN_RFC1157_TRAP = SNMP_PDU_V1TRAP","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_RFC1157_TRAP"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_CONTEXTSPECIFIC","package":"druntime","parentType":"","signature":"ASN_CONTEXTSPECIFIC = ASN_CONTEXT","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_CONTEXTSPECIFIC"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"ASN_PRIMATIVE","package":"druntime","parentType":"","signature":"ASN_PRIMATIVE = ASN_PRIMITIVE","url":"/ddoc/druntime/core/sys/windows/snmp.html#ASN_PRIMATIVE"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"RFC1157VarBindList","package":"druntime","parentType":"","signature":"RFC1157VarBindList = SnmpVarBindList","url":"/ddoc/druntime/core/sys/windows/snmp.html#RFC1157VarBindList"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"RFC1157VarBind","package":"druntime","parentType":"","signature":"RFC1157VarBind = SnmpVarBind","url":"/ddoc/druntime/core/sys/windows/snmp.html#RFC1157VarBind"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnInteger","package":"druntime","parentType":"","signature":"AsnInteger = AsnInteger32","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnInteger"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnCounter","package":"druntime","parentType":"","signature":"AsnCounter = AsnCounter32","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnCounter"},{"doc":"","kind":"alias","module":"core.sys.windows.snmp","name":"AsnGauge","package":"druntime","parentType":"","signature":"AsnGauge = AsnGauge32","url":"/ddoc/druntime/core/sys/windows/snmp.html#AsnGauge"},{"doc":"","kind":"variable","module":"core.sys.windows.snmp","name":"SNMP_OUTPUT_TO_CONSOLE","package":"druntime","parentType":"","signature":"INT SNMP_OUTPUT_TO_CONSOLE","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_OUTPUT_TO_CONSOLE"},{"doc":"","kind":"variable","module":"core.sys.windows.snmp","name":"SNMP_MAX_OID_LEN","package":"druntime","parentType":"","signature":"size_t SNMP_MAX_OID_LEN","url":"/ddoc/druntime/core/sys/windows/snmp.html#SNMP_MAX_OID_LEN"},{"doc":"$(RED Warning: This binding is out-of-date and does not allow use on non-Windows platforms. Use `etc.c.odbc.sql` instead.)","kind":"module","module":"core.sys.windows.sql","name":"core.sys.windows.sql","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sql.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLAllocConnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLAllocConnect(SQLHENV,  SQLHDBC *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLAllocConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLAllocEnv","package":"druntime","parentType":"","signature":"SQLRETURN SQLAllocEnv(SQLHENV *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLAllocEnv.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLAllocStmt","package":"druntime","parentType":"","signature":"SQLRETURN SQLAllocStmt(SQLHDBC,  SQLHSTMT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLAllocStmt.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLError","package":"druntime","parentType":"","signature":"SQLRETURN SQLError(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLCHAR *,  SQLINTEGER *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLError.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLFreeConnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLFreeConnect(SQLHDBC)","url":"/ddoc/druntime/core/sys/windows/sql/SQLFreeConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLFreeEnv","package":"druntime","parentType":"","signature":"SQLRETURN SQLFreeEnv(SQLHENV)","url":"/ddoc/druntime/core/sys/windows/sql/SQLFreeEnv.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLSetParam","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetParam(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLULEN,  SQLSMALLINT,  SQLPOINTER,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLSetParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetConnectOption","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetConnectOption(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetConnectOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetStmtOption","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetStmtOption(SQLHSTMT,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetStmtOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLSetConnectOption","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetConnectOption(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/druntime/core/sys/windows/sql/SQLSetConnectOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLSetStmtOption","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetStmtOption(SQLHSTMT,  SQLUSMALLINT,  SQLROWCOUNT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLSetStmtOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLBindCol","package":"druntime","parentType":"","signature":"SQLRETURN SQLBindCol(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLBindCol.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLCancel","package":"druntime","parentType":"","signature":"SQLRETURN SQLCancel(SQLHSTMT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLCancel.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLConnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLConnect(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLDescribeCol","package":"druntime","parentType":"","signature":"SQLRETURN SQLDescribeCol(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLDescribeCol.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLDisconnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLDisconnect(SQLHDBC)","url":"/ddoc/druntime/core/sys/windows/sql/SQLDisconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLExecDirect","package":"druntime","parentType":"","signature":"SQLRETURN SQLExecDirect(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sql/SQLExecDirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLExecute","package":"druntime","parentType":"","signature":"SQLRETURN SQLExecute(SQLHSTMT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLExecute.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLFetch","package":"druntime","parentType":"","signature":"SQLRETURN SQLFetch(SQLHSTMT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLFetch.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLFreeStmt","package":"druntime","parentType":"","signature":"SQLRETURN SQLFreeStmt(SQLHSTMT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLFreeStmt.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetCursorName","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetCursorName(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetCursorName.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLNumResultCols","package":"druntime","parentType":"","signature":"SQLRETURN SQLNumResultCols(SQLHSTMT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLNumResultCols.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLPrepare","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrepare(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sql/SQLPrepare.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLRowCount","package":"druntime","parentType":"","signature":"SQLRETURN SQLRowCount(SQLHSTMT,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLRowCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLSetCursorName","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetCursorName(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLSetCursorName.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLTransact","package":"druntime","parentType":"","signature":"SQLRETURN SQLTransact(SQLHENV,  SQLHDBC,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLTransact.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLColumns","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumns(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLColumns.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetData","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetData(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetData.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetFunctions","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetFunctions(SQLHDBC,  SQLUSMALLINT,  SQLUSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetFunctions.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetInfo","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetInfo(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLGetTypeInfo","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetTypeInfo(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLGetTypeInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLParamData","package":"druntime","parentType":"","signature":"SQLRETURN SQLParamData(SQLHSTMT,  SQLPOINTER *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLParamData.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLPutData","package":"druntime","parentType":"","signature":"SQLRETURN SQLPutData(SQLHSTMT,  SQLPOINTER,  SQLLEN)","url":"/ddoc/druntime/core/sys/windows/sql/SQLPutData.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLSpecialColumns","package":"druntime","parentType":"","signature":"SQLRETURN SQLSpecialColumns(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLSpecialColumns.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLStatistics","package":"druntime","parentType":"","signature":"SQLRETURN SQLStatistics(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLStatistics.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLTables","package":"druntime","parentType":"","signature":"SQLRETURN SQLTables(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sql/SQLTables.html"},{"doc":"","kind":"function","module":"core.sys.windows.sql","name":"SQLDataSources","package":"druntime","parentType":"","signature":"SQLRETURN SQLDataSources(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sql/SQLDataSources.html"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"ODBCVER","package":"druntime","parentType":"","signature":"ODBCVER","url":"/ddoc/druntime/core/sys/windows/sql.html#ODBCVER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ACCESSIBLE_PROCEDURES","package":"druntime","parentType":"","signature":"SQL_ACCESSIBLE_PROCEDURES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ACCESSIBLE_PROCEDURES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ACCESSIBLE_TABLES","package":"druntime","parentType":"","signature":"SQL_ACCESSIBLE_TABLES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ACCESSIBLE_TABLES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ALL_TYPES","package":"druntime","parentType":"","signature":"SQL_ALL_TYPES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ALL_TYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ALTER_TABLE","package":"druntime","parentType":"","signature":"SQL_ALTER_TABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ALTER_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLALLOCCONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLALLOCCONNECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLALLOCCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLALLOCENV","package":"druntime","parentType":"","signature":"SQL_API_SQLALLOCENV","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLALLOCENV"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLALLOCSTMT","package":"druntime","parentType":"","signature":"SQL_API_SQLALLOCSTMT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLALLOCSTMT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLBINDCOL","package":"druntime","parentType":"","signature":"SQL_API_SQLBINDCOL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLBINDCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLCANCEL","package":"druntime","parentType":"","signature":"SQL_API_SQLCANCEL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLCANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLCOLUMNS","package":"druntime","parentType":"","signature":"SQL_API_SQLCOLUMNS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLCOLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLCONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLCONNECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLDATASOURCES","package":"druntime","parentType":"","signature":"SQL_API_SQLDATASOURCES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLDATASOURCES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLDESCRIBECOL","package":"druntime","parentType":"","signature":"SQL_API_SQLDESCRIBECOL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLDESCRIBECOL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLDISCONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLDISCONNECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLDISCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLERROR","package":"druntime","parentType":"","signature":"SQL_API_SQLERROR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLEXECDIRECT","package":"druntime","parentType":"","signature":"SQL_API_SQLEXECDIRECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLEXECDIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLEXECUTE","package":"druntime","parentType":"","signature":"SQL_API_SQLEXECUTE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLEXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLFETCH","package":"druntime","parentType":"","signature":"SQL_API_SQLFETCH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLFETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLFREECONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLFREECONNECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLFREECONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLFREEENV","package":"druntime","parentType":"","signature":"SQL_API_SQLFREEENV","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLFREEENV"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLFREESTMT","package":"druntime","parentType":"","signature":"SQL_API_SQLFREESTMT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLFREESTMT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETCONNECTOPTION","package":"druntime","parentType":"","signature":"SQL_API_SQLGETCONNECTOPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETCONNECTOPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETCURSORNAME","package":"druntime","parentType":"","signature":"SQL_API_SQLGETCURSORNAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETCURSORNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETDATA","package":"druntime","parentType":"","signature":"SQL_API_SQLGETDATA","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETFUNCTIONS","package":"druntime","parentType":"","signature":"SQL_API_SQLGETFUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETFUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETINFO","package":"druntime","parentType":"","signature":"SQL_API_SQLGETINFO","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETSTMTOPTION","package":"druntime","parentType":"","signature":"SQL_API_SQLGETSTMTOPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETSTMTOPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLGETTYPEINFO","package":"druntime","parentType":"","signature":"SQL_API_SQLGETTYPEINFO","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLGETTYPEINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLNUMRESULTCOLS","package":"druntime","parentType":"","signature":"SQL_API_SQLNUMRESULTCOLS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLNUMRESULTCOLS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLPARAMDATA","package":"druntime","parentType":"","signature":"SQL_API_SQLPARAMDATA","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLPARAMDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLPREPARE","package":"druntime","parentType":"","signature":"SQL_API_SQLPREPARE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLPREPARE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLPUTDATA","package":"druntime","parentType":"","signature":"SQL_API_SQLPUTDATA","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLPUTDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLROWCOUNT","package":"druntime","parentType":"","signature":"SQL_API_SQLROWCOUNT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLROWCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSETCONNECTOPTION","package":"druntime","parentType":"","signature":"SQL_API_SQLSETCONNECTOPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSETCONNECTOPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSETCURSORNAME","package":"druntime","parentType":"","signature":"SQL_API_SQLSETCURSORNAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSETCURSORNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSETPARAM","package":"druntime","parentType":"","signature":"SQL_API_SQLSETPARAM","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSETPARAM"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSETSTMTOPTION","package":"druntime","parentType":"","signature":"SQL_API_SQLSETSTMTOPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSETSTMTOPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSPECIALCOLUMNS","package":"druntime","parentType":"","signature":"SQL_API_SQLSPECIALCOLUMNS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSPECIALCOLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLSTATISTICS","package":"druntime","parentType":"","signature":"SQL_API_SQLSTATISTICS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLSTATISTICS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLTABLES","package":"druntime","parentType":"","signature":"SQL_API_SQLTABLES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLTABLES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_API_SQLTRANSACT","package":"druntime","parentType":"","signature":"SQL_API_SQLTRANSACT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_API_SQLTRANSACT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CB_DELETE","package":"druntime","parentType":"","signature":"SQL_CB_DELETE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CB_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CB_CLOSE","package":"druntime","parentType":"","signature":"SQL_CB_CLOSE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CB_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CB_PRESERVE","package":"druntime","parentType":"","signature":"SQL_CB_PRESERVE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CB_PRESERVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CHAR","package":"druntime","parentType":"","signature":"SQL_CHAR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CLOSE","package":"druntime","parentType":"","signature":"SQL_CLOSE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_COMMIT","package":"druntime","parentType":"","signature":"SQL_COMMIT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_COMMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_CURSOR_COMMIT_BEHAVIOR","package":"druntime","parentType":"","signature":"SQL_CURSOR_COMMIT_BEHAVIOR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_CURSOR_COMMIT_BEHAVIOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DATA_AT_EXEC","package":"druntime","parentType":"","signature":"SQL_DATA_AT_EXEC","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DATA_AT_EXEC"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DATA_SOURCE_NAME","package":"druntime","parentType":"","signature":"SQL_DATA_SOURCE_NAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DATA_SOURCE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DATA_SOURCE_READ_ONLY","package":"druntime","parentType":"","signature":"SQL_DATA_SOURCE_READ_ONLY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DATA_SOURCE_READ_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DBMS_NAME","package":"druntime","parentType":"","signature":"SQL_DBMS_NAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DBMS_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DBMS_VER","package":"druntime","parentType":"","signature":"SQL_DBMS_VER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DBMS_VER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DECIMAL","package":"druntime","parentType":"","signature":"SQL_DECIMAL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DECIMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DEFAULT_TXN_ISOLATION","package":"druntime","parentType":"","signature":"SQL_DEFAULT_TXN_ISOLATION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DEFAULT_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DOUBLE","package":"druntime","parentType":"","signature":"SQL_DOUBLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DOUBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_DROP","package":"druntime","parentType":"","signature":"SQL_DROP","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_DROP"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ERROR","package":"druntime","parentType":"","signature":"SQL_ERROR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_NEXT","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_NEXT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_NEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_FIRST","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_FIRST","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_LAST","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_LAST","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_PRIOR","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_PRIOR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_ABSOLUTE","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_ABSOLUTE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FD_FETCH_RELATIVE","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_RELATIVE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FD_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_ABSOLUTE","package":"druntime","parentType":"","signature":"SQL_FETCH_ABSOLUTE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_DIRECTION","package":"druntime","parentType":"","signature":"SQL_FETCH_DIRECTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_DIRECTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_FIRST","package":"druntime","parentType":"","signature":"SQL_FETCH_FIRST","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_LAST","package":"druntime","parentType":"","signature":"SQL_FETCH_LAST","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_NEXT","package":"druntime","parentType":"","signature":"SQL_FETCH_NEXT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_NEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_PRIOR","package":"druntime","parentType":"","signature":"SQL_FETCH_PRIOR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FETCH_RELATIVE","package":"druntime","parentType":"","signature":"SQL_FETCH_RELATIVE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_FLOAT","package":"druntime","parentType":"","signature":"SQL_FLOAT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_GD_ANY_COLUMN","package":"druntime","parentType":"","signature":"SQL_GD_ANY_COLUMN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_GD_ANY_COLUMN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_GD_ANY_ORDER","package":"druntime","parentType":"","signature":"SQL_GD_ANY_ORDER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_GD_ANY_ORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_GETDATA_EXTENSIONS","package":"druntime","parentType":"","signature":"SQL_GETDATA_EXTENSIONS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_GETDATA_EXTENSIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IC_LOWER","package":"druntime","parentType":"","signature":"SQL_IC_LOWER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IC_LOWER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IC_MIXED","package":"druntime","parentType":"","signature":"SQL_IC_MIXED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IC_MIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IC_SENSITIVE","package":"druntime","parentType":"","signature":"SQL_IC_SENSITIVE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IC_SENSITIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IC_UPPER","package":"druntime","parentType":"","signature":"SQL_IC_UPPER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IC_UPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IDENTIFIER_CASE","package":"druntime","parentType":"","signature":"SQL_IDENTIFIER_CASE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_IDENTIFIER_QUOTE_CHAR","package":"druntime","parentType":"","signature":"SQL_IDENTIFIER_QUOTE_CHAR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_IDENTIFIER_QUOTE_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INDEX_ALL","package":"druntime","parentType":"","signature":"SQL_INDEX_ALL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INDEX_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INDEX_CLUSTERED","package":"druntime","parentType":"","signature":"SQL_INDEX_CLUSTERED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INDEX_CLUSTERED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INDEX_HASHED","package":"druntime","parentType":"","signature":"SQL_INDEX_HASHED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INDEX_HASHED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INDEX_OTHER","package":"druntime","parentType":"","signature":"SQL_INDEX_OTHER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INDEX_OTHER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INDEX_UNIQUE","package":"druntime","parentType":"","signature":"SQL_INDEX_UNIQUE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INDEX_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INTEGER","package":"druntime","parentType":"","signature":"SQL_INTEGER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INTEGER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INTEGRITY","package":"druntime","parentType":"","signature":"SQL_INTEGRITY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INTEGRITY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_INVALID_HANDLE","package":"druntime","parentType":"","signature":"SQL_INVALID_HANDLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_INVALID_HANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_CATALOG_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_CATALOG_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_CATALOG_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMN_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMN_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMN_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMNS_IN_GROUP_BY","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMNS_IN_GROUP_BY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMNS_IN_INDEX","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMNS_IN_INDEX","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMNS_IN_ORDER_BY","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMNS_IN_ORDER_BY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMNS_IN_SELECT","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMNS_IN_SELECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_COLUMNS_IN_TABLE","package":"druntime","parentType":"","signature":"SQL_MAX_COLUMNS_IN_TABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_COLUMNS_IN_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_CURSOR_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_CURSOR_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_CURSOR_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_INDEX_SIZE","package":"druntime","parentType":"","signature":"SQL_MAX_INDEX_SIZE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_INDEX_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_MESSAGE_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAX_MESSAGE_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_MESSAGE_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_ROW_SIZE","package":"druntime","parentType":"","signature":"SQL_MAX_ROW_SIZE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_ROW_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_SCHEMA_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_SCHEMA_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_SCHEMA_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_STATEMENT_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_STATEMENT_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_STATEMENT_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_TABLE_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_TABLE_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_TABLE_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_TABLES_IN_SELECT","package":"druntime","parentType":"","signature":"SQL_MAX_TABLES_IN_SELECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAX_USER_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_USER_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAX_USER_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_CATALOG_NAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_COLUMN_NAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_INDEX","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_SELECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_CURSOR_NAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_INDEX_SIZE","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_INDEX_SIZE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_INDEX_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_ROW_SIZE","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_ROW_SIZE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_ROW_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_SCHEMA_NAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_STATEMENT_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_STATEMENT_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_STATEMENT_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_TABLES_IN_SELECT","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_TABLES_IN_SELECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_MAXIMUM_USER_NAME_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAXIMUM_USER_NAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_MAXIMUM_USER_NAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NC_HIGH","package":"druntime","parentType":"","signature":"SQL_NC_HIGH","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NC_HIGH"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NC_LOW","package":"druntime","parentType":"","signature":"SQL_NC_LOW","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NC_LOW"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NEED_DATA","package":"druntime","parentType":"","signature":"SQL_NEED_DATA","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NEED_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NO_NULLS","package":"druntime","parentType":"","signature":"SQL_NO_NULLS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NO_NULLS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NTS","package":"druntime","parentType":"","signature":"SQL_NTS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NTSL","package":"druntime","parentType":"","signature":"LONG SQL_NTSL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NTSL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULL_COLLATION","package":"druntime","parentType":"","signature":"SQL_NULL_COLLATION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULL_COLLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULL_DATA","package":"druntime","parentType":"","signature":"SQL_NULL_DATA","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULL_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULL_HDBC","package":"druntime","parentType":"","signature":"SQL_NULL_HDBC","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULL_HDBC"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULL_HENV","package":"druntime","parentType":"","signature":"SQL_NULL_HENV","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULL_HENV"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULL_HSTMT","package":"druntime","parentType":"","signature":"SQL_NULL_HSTMT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULL_HSTMT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULLABLE","package":"druntime","parentType":"","signature":"SQL_NULLABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULLABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NULLABLE_UNKNOWN","package":"druntime","parentType":"","signature":"SQL_NULLABLE_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NULLABLE_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_NUMERIC","package":"druntime","parentType":"","signature":"SQL_NUMERIC","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_NUMERIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","package":"druntime","parentType":"","signature":"SQL_ORDER_BY_COLUMNS_IN_SELECT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ORDER_BY_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_PC_PSEUDO","package":"druntime","parentType":"","signature":"SQL_PC_PSEUDO","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_PC_PSEUDO"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_PC_UNKNOWN","package":"druntime","parentType":"","signature":"SQL_PC_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_PC_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_REAL","package":"druntime","parentType":"","signature":"SQL_REAL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_REAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_RESET_PARAMS","package":"druntime","parentType":"","signature":"SQL_RESET_PARAMS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_RESET_PARAMS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_ROLLBACK","package":"druntime","parentType":"","signature":"SQL_ROLLBACK","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_ROLLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCCO_LOCK","package":"druntime","parentType":"","signature":"SQL_SCCO_LOCK","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCCO_LOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCCO_OPT_ROWVER","package":"druntime","parentType":"","signature":"SQL_SCCO_OPT_ROWVER","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCCO_OPT_ROWVER"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCCO_OPT_VALUES","package":"druntime","parentType":"","signature":"SQL_SCCO_OPT_VALUES","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCCO_OPT_VALUES"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCCO_READ_ONLY","package":"druntime","parentType":"","signature":"SQL_SCCO_READ_ONLY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCCO_READ_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCOPE_CURROW","package":"druntime","parentType":"","signature":"SQL_SCOPE_CURROW","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCOPE_CURROW"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCOPE_SESSION","package":"druntime","parentType":"","signature":"SQL_SCOPE_SESSION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCOPE_SESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCOPE_TRANSACTION","package":"druntime","parentType":"","signature":"SQL_SCOPE_TRANSACTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCOPE_TRANSACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SCROLL_CONCURRENCY","package":"druntime","parentType":"","signature":"SQL_SCROLL_CONCURRENCY","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SCROLL_CONCURRENCY"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SEARCH_PATTERN_ESCAPE","package":"druntime","parentType":"","signature":"SQL_SEARCH_PATTERN_ESCAPE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SEARCH_PATTERN_ESCAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SERVER_NAME","package":"druntime","parentType":"","signature":"SQL_SERVER_NAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SERVER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SMALLINT","package":"druntime","parentType":"","signature":"SQL_SMALLINT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SMALLINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SPECIAL_CHARACTERS","package":"druntime","parentType":"","signature":"SQL_SPECIAL_CHARACTERS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SPECIAL_CHARACTERS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_STILL_EXECUTING","package":"druntime","parentType":"","signature":"SQL_STILL_EXECUTING","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_STILL_EXECUTING"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SUCCESS","package":"druntime","parentType":"","signature":"SQL_SUCCESS","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SUCCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_SUCCESS_WITH_INFO","package":"druntime","parentType":"","signature":"SQL_SUCCESS_WITH_INFO","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TC_ALL","package":"druntime","parentType":"","signature":"SQL_TC_ALL","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TC_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TC_DDL_COMMIT","package":"druntime","parentType":"","signature":"SQL_TC_DDL_COMMIT","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TC_DDL_COMMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TC_DDL_IGNORE","package":"druntime","parentType":"","signature":"SQL_TC_DDL_IGNORE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TC_DDL_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TC_DML","package":"druntime","parentType":"","signature":"SQL_TC_DML","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TC_DML"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TC_NONE","package":"druntime","parentType":"","signature":"SQL_TC_NONE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_CAPABLE","package":"druntime","parentType":"","signature":"SQL_TXN_CAPABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_CAPABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_ISOLATION_OPTION","package":"druntime","parentType":"","signature":"SQL_TXN_ISOLATION_OPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_READ_COMMITTED","package":"druntime","parentType":"","signature":"SQL_TXN_READ_COMMITTED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_READ_COMMITTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_READ_UNCOMMITTED","package":"druntime","parentType":"","signature":"SQL_TXN_READ_UNCOMMITTED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_REPEATABLE_READ","package":"druntime","parentType":"","signature":"SQL_TXN_REPEATABLE_READ","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TXN_SERIALIZABLE","package":"druntime","parentType":"","signature":"SQL_TXN_SERIALIZABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TXN_SERIALIZABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_CAPABLE","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_CAPABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_CAPABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_ISOLATION_OPTION","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_ISOLATION_OPTION","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_READ_COMMITTED","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_READ_COMMITTED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_READ_COMMITTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_READ_UNCOMMITTED","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_READ_UNCOMMITTED","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_REPEATABLE_READ","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_REPEATABLE_READ","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_TRANSACTION_SERIALIZABLE","package":"druntime","parentType":"","signature":"SQL_TRANSACTION_SERIALIZABLE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_TRANSACTION_SERIALIZABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_UNBIND","package":"druntime","parentType":"","signature":"SQL_UNBIND","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_UNBIND"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_UNKNOWN_TYPE","package":"druntime","parentType":"","signature":"SQL_UNKNOWN_TYPE","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_UNKNOWN_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_USER_NAME","package":"druntime","parentType":"","signature":"SQL_USER_NAME","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_USER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sql","name":"SQL_VARCHAR","package":"druntime","parentType":"","signature":"SQL_VARCHAR","url":"/ddoc/druntime/core/sys/windows/sql.html#SQL_VARCHAR"},{"doc":"$(RED Warning: This binding is out-of-date and does not allow use on non-Windows platforms. Use `etc.c.odbc.sqlext` instead.)","kind":"module","module":"core.sys.windows.sqlext","name":"core.sys.windows.sqlext","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sqlext.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLDriverConnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLDriverConnect(SQLHDBC,  SQLHWND,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLDriverConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLBrowseConnect","package":"druntime","parentType":"","signature":"SQLRETURN SQLBrowseConnect(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLBrowseConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLColumnPrivileges","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumnPrivileges(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLColumnPrivileges.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLColAttributes","package":"druntime","parentType":"","signature":"SQLRETURN SQLColAttributes(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLColAttributes.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLDescribeParam","package":"druntime","parentType":"","signature":"SQLRETURN SQLDescribeParam(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLDescribeParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLExtendedFetch","package":"druntime","parentType":"","signature":"SQLRETURN SQLExtendedFetch(SQLHSTMT,  SQLUSMALLINT,  SQLINTEGER,  SQLUINTEGER *,  SQLUSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLExtendedFetch.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLForeignKeys","package":"druntime","parentType":"","signature":"SQLRETURN SQLForeignKeys(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLForeignKeys.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLMoreResults","package":"druntime","parentType":"","signature":"SQLRETURN SQLMoreResults(SQLHSTMT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLMoreResults.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLNativeSql","package":"druntime","parentType":"","signature":"SQLRETURN SQLNativeSql(SQLHDBC,  SQLCHAR *,  SQLINTEGER,  SQLCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLNativeSql.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLNumParams","package":"druntime","parentType":"","signature":"SQLRETURN SQLNumParams(SQLHSTMT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLNumParams.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLParamOptions","package":"druntime","parentType":"","signature":"SQLRETURN SQLParamOptions(SQLHSTMT,  SQLUINTEGER,  SQLUINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLParamOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLPrimaryKeys","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrimaryKeys(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLPrimaryKeys.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLProcedureColumns","package":"druntime","parentType":"","signature":"SQLRETURN SQLProcedureColumns(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLProcedureColumns.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLProcedures","package":"druntime","parentType":"","signature":"SQLRETURN SQLProcedures(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLProcedures.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLSetPos","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetPos(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLSetPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLTablePrivileges","package":"druntime","parentType":"","signature":"SQLRETURN SQLTablePrivileges(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLTablePrivileges.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLDrivers","package":"druntime","parentType":"","signature":"SQLRETURN SQLDrivers(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLDrivers.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLBindParameter","package":"druntime","parentType":"","signature":"SQLRETURN SQLBindParameter(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLULEN,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLBindParameter.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLSetScrollOptions","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetScrollOptions(SQLHSTMT,  SQLUSMALLINT,  SQLLEN,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLSetScrollOptions.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"ODBCGetTryWaitValue","package":"druntime","parentType":"","signature":"DWORD ODBCGetTryWaitValue()","url":"/ddoc/druntime/core/sys/windows/sqlext/ODBCGetTryWaitValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"ODBCSetTryWaitValue","package":"druntime","parentType":"","signature":"BOOL ODBCSetTryWaitValue(DWORD)","url":"/ddoc/druntime/core/sys/windows/sqlext/ODBCSetTryWaitValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"TraceOpenLogFile","package":"druntime","parentType":"","signature":"RETCODE TraceOpenLogFile(LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/sqlext/TraceOpenLogFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"TraceCloseLogFile","package":"druntime","parentType":"","signature":"RETCODE TraceCloseLogFile()","url":"/ddoc/druntime/core/sys/windows/sqlext/TraceCloseLogFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"TraceReturn","package":"druntime","parentType":"","signature":"VOID TraceReturn(RETCODE,  RETCODE)","url":"/ddoc/druntime/core/sys/windows/sqlext/TraceReturn.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"TraceVersion","package":"druntime","parentType":"","signature":"DWORD TraceVersion()","url":"/ddoc/druntime/core/sys/windows/sqlext/TraceVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLBulkOperations","package":"druntime","parentType":"","signature":"SQLRETURN SQLBulkOperations(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLBulkOperations.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlext","name":"SQLAllocHandleStd","package":"druntime","parentType":"","signature":"SQLRETURN SQLAllocHandleStd(  SQLSMALLINT,  SQLHANDLE,  SQLHANDLE *)","url":"/ddoc/druntime/core/sys/windows/sqlext/SQLAllocHandleStd.html"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SPEC_MAJOR","package":"druntime","parentType":"","signature":"SQL_SPEC_MAJOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SPEC_MAJOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SPEC_MINOR","package":"druntime","parentType":"","signature":"SQL_SPEC_MINOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SPEC_MINOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SPEC_STRING","package":"druntime","parentType":"","signature":"char[] SQL_SPEC_STRING","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SPEC_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ACCESS_MODE","package":"druntime","parentType":"","signature":"SQL_ACCESS_MODE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ACCESS_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ACTIVE_CONNECTIONS","package":"druntime","parentType":"","signature":"SQL_ACTIVE_CONNECTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ACTIVE_CONNECTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ACTIVE_STATEMENTS","package":"druntime","parentType":"","signature":"SQL_ACTIVE_STATEMENTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ACTIVE_STATEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DATE","package":"druntime","parentType":"","signature":"SQL_DATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TIME","package":"druntime","parentType":"","signature":"SQL_TIME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SIGNED_OFFSET","package":"druntime","parentType":"","signature":"SQL_SIGNED_OFFSET","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SIGNED_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TINYINT","package":"druntime","parentType":"","signature":"SQL_TINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UNSIGNED_OFFSET","package":"druntime","parentType":"","signature":"SQL_UNSIGNED_OFFSET","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UNSIGNED_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ADD","package":"druntime","parentType":"","signature":"SQL_ADD","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ADD"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ALL_EXCEPT_LIKE","package":"druntime","parentType":"","signature":"SQL_ALL_EXCEPT_LIKE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ALL_EXCEPT_LIKE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_ALL_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_API_ALL_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_ALL_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLCOLATTRIBUTES","package":"druntime","parentType":"","signature":"SQL_API_SQLCOLATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLCOLATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLDRIVERCONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLDRIVERCONNECT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLDRIVERCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLBROWSECONNECT","package":"druntime","parentType":"","signature":"SQL_API_SQLBROWSECONNECT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLBROWSECONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLCOLUMNPRIVILEGES","package":"druntime","parentType":"","signature":"SQL_API_SQLCOLUMNPRIVILEGES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLCOLUMNPRIVILEGES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLDESCRIBEPARAM","package":"druntime","parentType":"","signature":"SQL_API_SQLDESCRIBEPARAM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLDESCRIBEPARAM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLEXTENDEDFETCH","package":"druntime","parentType":"","signature":"SQL_API_SQLEXTENDEDFETCH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLEXTENDEDFETCH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLFOREIGNKEYS","package":"druntime","parentType":"","signature":"SQL_API_SQLFOREIGNKEYS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLFOREIGNKEYS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLMORERESULTS","package":"druntime","parentType":"","signature":"SQL_API_SQLMORERESULTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLMORERESULTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLNATIVESQL","package":"druntime","parentType":"","signature":"SQL_API_SQLNATIVESQL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLNATIVESQL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLNUMPARAMS","package":"druntime","parentType":"","signature":"SQL_API_SQLNUMPARAMS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLNUMPARAMS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLPARAMOPTIONS","package":"druntime","parentType":"","signature":"SQL_API_SQLPARAMOPTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLPARAMOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLPRIMARYKEYS","package":"druntime","parentType":"","signature":"SQL_API_SQLPRIMARYKEYS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLPRIMARYKEYS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLPROCEDURECOLUMNS","package":"druntime","parentType":"","signature":"SQL_API_SQLPROCEDURECOLUMNS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLPROCEDURECOLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLPROCEDURES","package":"druntime","parentType":"","signature":"SQL_API_SQLPROCEDURES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLPROCEDURES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLSETPOS","package":"druntime","parentType":"","signature":"SQL_API_SQLSETPOS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLSETPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLSETSCROLLOPTIONS","package":"druntime","parentType":"","signature":"SQL_API_SQLSETSCROLLOPTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLSETSCROLLOPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLTABLEPRIVILEGES","package":"druntime","parentType":"","signature":"SQL_API_SQLTABLEPRIVILEGES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLTABLEPRIVILEGES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLDRIVERS","package":"druntime","parentType":"","signature":"SQL_API_SQLDRIVERS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLDRIVERS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_SQLBINDPARAMETER","package":"druntime","parentType":"","signature":"SQL_API_SQLBINDPARAMETER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_SQLBINDPARAMETER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_API_LOADBYORDINAL","package":"druntime","parentType":"","signature":"SQL_API_LOADBYORDINAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_API_LOADBYORDINAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ASYNC_ENABLE","package":"druntime","parentType":"","signature":"SQL_ASYNC_ENABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ASYNC_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ASYNC_ENABLE_OFF","package":"druntime","parentType":"","signature":"SQL_ASYNC_ENABLE_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ASYNC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ASYNC_ENABLE_ON","package":"druntime","parentType":"","signature":"SQL_ASYNC_ENABLE_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ASYNC_ENABLE_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ASYNC_ENABLE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_ASYNC_ENABLE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ASYNC_ENABLE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ATTR_CONNECTION_DEAD","package":"druntime","parentType":"","signature":"SQL_ATTR_CONNECTION_DEAD","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ATTR_CONNECTION_DEAD"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ATTR_READONLY","package":"druntime","parentType":"","signature":"SQL_ATTR_READONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ATTR_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ATTR_READWRITE_UNKNOWN","package":"druntime","parentType":"","signature":"SQL_ATTR_READWRITE_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ATTR_READWRITE_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ATTR_WRITE","package":"druntime","parentType":"","signature":"SQL_ATTR_WRITE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ATTR_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AUTOCOMMIT","package":"druntime","parentType":"","signature":"SQL_AUTOCOMMIT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AUTOCOMMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AUTOCOMMIT_OFF","package":"druntime","parentType":"","signature":"SQL_AUTOCOMMIT_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AUTOCOMMIT_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AUTOCOMMIT_ON","package":"druntime","parentType":"","signature":"SQL_AUTOCOMMIT_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AUTOCOMMIT_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AUTOCOMMIT_DEFAULT","package":"druntime","parentType":"","signature":"SQL_AUTOCOMMIT_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AUTOCOMMIT_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BEST_ROWID","package":"druntime","parentType":"","signature":"SQL_BEST_ROWID","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BEST_ROWID"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BIGINT","package":"druntime","parentType":"","signature":"SQL_BIGINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BIGINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BINARY","package":"druntime","parentType":"","signature":"SQL_BINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BIND_BY_COLUMN","package":"druntime","parentType":"","signature":"SQL_BIND_BY_COLUMN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BIND_TYPE","package":"druntime","parentType":"","signature":"SQL_BIND_TYPE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BIND_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BIND_TYPE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_BIND_TYPE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BIND_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BIT","package":"druntime","parentType":"","signature":"SQL_BIT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BOOKMARK_PERSISTENCE","package":"druntime","parentType":"","signature":"SQL_BOOKMARK_PERSISTENCE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BOOKMARK_PERSISTENCE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_CLOSE","package":"druntime","parentType":"","signature":"SQL_BP_CLOSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_DELETE","package":"druntime","parentType":"","signature":"SQL_BP_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_DROP","package":"druntime","parentType":"","signature":"SQL_BP_DROP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_DROP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_TRANSACTION","package":"druntime","parentType":"","signature":"SQL_BP_TRANSACTION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_TRANSACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_UPDATE","package":"druntime","parentType":"","signature":"SQL_BP_UPDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_OTHER_HSTMT","package":"druntime","parentType":"","signature":"SQL_BP_OTHER_HSTMT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_OTHER_HSTMT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_BP_SCROLL","package":"druntime","parentType":"","signature":"SQL_BP_SCROLL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_BP_SCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_BINARY","package":"druntime","parentType":"","signature":"SQL_C_BINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_BINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_BIT","package":"druntime","parentType":"","signature":"SQL_C_BIT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_CHAR","package":"druntime","parentType":"","signature":"SQL_C_CHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_DATE","package":"druntime","parentType":"","signature":"SQL_C_DATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_DOUBLE","package":"druntime","parentType":"","signature":"SQL_C_DOUBLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_DOUBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_FLOAT","package":"druntime","parentType":"","signature":"SQL_C_FLOAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_LONG","package":"druntime","parentType":"","signature":"SQL_C_LONG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_LONG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_SHORT","package":"druntime","parentType":"","signature":"SQL_C_SHORT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_SHORT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_SLONG","package":"druntime","parentType":"","signature":"SQL_C_SLONG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_SLONG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_SSHORT","package":"druntime","parentType":"","signature":"SQL_C_SSHORT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_SSHORT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_STINYINT","package":"druntime","parentType":"","signature":"SQL_C_STINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_STINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_TIME","package":"druntime","parentType":"","signature":"SQL_C_TIME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_C_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_TINYINT","package":"druntime","parentType":"","signature":"SQL_C_TINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_TINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_ULONG","package":"druntime","parentType":"","signature":"SQL_C_ULONG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_ULONG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_USHORT","package":"druntime","parentType":"","signature":"SQL_C_USHORT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_USHORT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_UTINYINT","package":"druntime","parentType":"","signature":"SQL_C_UTINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_UTINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_BOOKMARK","package":"druntime","parentType":"","signature":"SQL_C_BOOKMARK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_BOOKMARK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_C_DEFAULT","package":"druntime","parentType":"","signature":"SQL_C_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_C_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CASCADE","package":"druntime","parentType":"","signature":"SQL_CASCADE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CASCADE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CB_NON_NULL","package":"druntime","parentType":"","signature":"SQL_CB_NON_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CB_NON_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CB_NULL","package":"druntime","parentType":"","signature":"SQL_CB_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CB_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CC_CLOSE","package":"druntime","parentType":"","signature":"SQL_CC_CLOSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CC_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CC_DELETE","package":"druntime","parentType":"","signature":"SQL_CC_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CC_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CC_PRESERVE","package":"druntime","parentType":"","signature":"SQL_CC_PRESERVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CC_PRESERVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CD_FALSE","package":"druntime","parentType":"","signature":"SQL_CD_FALSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CD_FALSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CD_TRUE","package":"druntime","parentType":"","signature":"SQL_CD_TRUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CD_TRUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CN_ANY","package":"druntime","parentType":"","signature":"SQL_CN_ANY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CN_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CN_DIFFERENT","package":"druntime","parentType":"","signature":"SQL_CN_DIFFERENT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CN_DIFFERENT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CN_NONE","package":"druntime","parentType":"","signature":"SQL_CN_NONE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CN_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_ALIAS","package":"druntime","parentType":"","signature":"SQL_COLUMN_ALIAS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_ALIAS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_COUNT","package":"druntime","parentType":"","signature":"SQL_COLUMN_COUNT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_COUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_NAME","package":"druntime","parentType":"","signature":"SQL_COLUMN_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_DISPLAY_SIZE","package":"druntime","parentType":"","signature":"SQL_COLUMN_DISPLAY_SIZE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_DISPLAY_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_LABEL","package":"druntime","parentType":"","signature":"SQL_COLUMN_LABEL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_LABEL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_LENGTH","package":"druntime","parentType":"","signature":"SQL_COLUMN_LENGTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_MONEY","package":"druntime","parentType":"","signature":"SQL_COLUMN_MONEY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_MONEY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_NULLABLE","package":"druntime","parentType":"","signature":"SQL_COLUMN_NULLABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_NULLABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_OWNER_NAME","package":"druntime","parentType":"","signature":"SQL_COLUMN_OWNER_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_OWNER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_PRECISION","package":"druntime","parentType":"","signature":"SQL_COLUMN_PRECISION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_PRECISION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_QUALIFIER_NAME","package":"druntime","parentType":"","signature":"SQL_COLUMN_QUALIFIER_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_QUALIFIER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_SCALE","package":"druntime","parentType":"","signature":"SQL_COLUMN_SCALE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_SCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_UNSIGNED","package":"druntime","parentType":"","signature":"SQL_COLUMN_UNSIGNED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_UNSIGNED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_UPDATABLE","package":"druntime","parentType":"","signature":"SQL_COLUMN_UPDATABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_UPDATABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_AUTO_INCREMENT","package":"druntime","parentType":"","signature":"SQL_COLUMN_AUTO_INCREMENT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_AUTO_INCREMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_CASE_SENSITIVE","package":"druntime","parentType":"","signature":"SQL_COLUMN_CASE_SENSITIVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_SEARCHABLE","package":"druntime","parentType":"","signature":"SQL_COLUMN_SEARCHABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_SEARCHABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_TYPE","package":"druntime","parentType":"","signature":"SQL_COLUMN_TYPE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_TYPE_NAME","package":"druntime","parentType":"","signature":"SQL_COLUMN_TYPE_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_TYPE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLUMN_TABLE_NAME","package":"druntime","parentType":"","signature":"SQL_COLUMN_TABLE_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLUMN_TABLE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCAT_NULL_BEHAVIOR","package":"druntime","parentType":"","signature":"SQL_CONCAT_NULL_BEHAVIOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCAT_NULL_BEHAVIOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_READ_ONLY","package":"druntime","parentType":"","signature":"SQL_CONCUR_READ_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_READ_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_DEFAULT","package":"druntime","parentType":"","signature":"SQL_CONCUR_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_LOCK","package":"druntime","parentType":"","signature":"SQL_CONCUR_LOCK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_LOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_ROWVER","package":"druntime","parentType":"","signature":"SQL_CONCUR_ROWVER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_ROWVER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_CONCUR_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCUR_VALUES","package":"druntime","parentType":"","signature":"SQL_CONCUR_VALUES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCUR_VALUES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONCURRENCY","package":"druntime","parentType":"","signature":"SQL_CONCURRENCY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONCURRENCY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_BIGINT","package":"druntime","parentType":"","signature":"SQL_CONVERT_BIGINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_BIGINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_BINARY","package":"druntime","parentType":"","signature":"SQL_CONVERT_BINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_BINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_BIT","package":"druntime","parentType":"","signature":"SQL_CONVERT_BIT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_CHAR","package":"druntime","parentType":"","signature":"SQL_CONVERT_CHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_DATE","package":"druntime","parentType":"","signature":"SQL_CONVERT_DATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_DECIMAL","package":"druntime","parentType":"","signature":"SQL_CONVERT_DECIMAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_DECIMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_DOUBLE","package":"druntime","parentType":"","signature":"SQL_CONVERT_DOUBLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_DOUBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_FLOAT","package":"druntime","parentType":"","signature":"SQL_CONVERT_FLOAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_CONVERT_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_INTEGER","package":"druntime","parentType":"","signature":"SQL_CONVERT_INTEGER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_INTEGER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_LONGVARBINARY","package":"druntime","parentType":"","signature":"SQL_CONVERT_LONGVARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_LONGVARCHAR","package":"druntime","parentType":"","signature":"SQL_CONVERT_LONGVARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_NUMERIC","package":"druntime","parentType":"","signature":"SQL_CONVERT_NUMERIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_NUMERIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_REAL","package":"druntime","parentType":"","signature":"SQL_CONVERT_REAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_REAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_SMALLINT","package":"druntime","parentType":"","signature":"SQL_CONVERT_SMALLINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_SMALLINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_TIME","package":"druntime","parentType":"","signature":"SQL_CONVERT_TIME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_CONVERT_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_TINYINT","package":"druntime","parentType":"","signature":"SQL_CONVERT_TINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_TINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_VARBINARY","package":"druntime","parentType":"","signature":"SQL_CONVERT_VARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_VARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CONVERT_VARCHAR","package":"druntime","parentType":"","signature":"SQL_CONVERT_VARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CONVERT_VARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CORRELATION_NAME","package":"druntime","parentType":"","signature":"SQL_CORRELATION_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CORRELATION_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CR_CLOSE","package":"druntime","parentType":"","signature":"SQL_CR_CLOSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CR_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CR_DELETE","package":"druntime","parentType":"","signature":"SQL_CR_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CR_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CR_PRESERVE","package":"druntime","parentType":"","signature":"SQL_CR_PRESERVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CR_PRESERVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURRENT_QUALIFIER","package":"druntime","parentType":"","signature":"SQL_CURRENT_QUALIFIER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURRENT_QUALIFIER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_DYNAMIC","package":"druntime","parentType":"","signature":"SQL_CURSOR_DYNAMIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_FORWARD_ONLY","package":"druntime","parentType":"","signature":"SQL_CURSOR_FORWARD_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_KEYSET_DRIVEN","package":"druntime","parentType":"","signature":"SQL_CURSOR_KEYSET_DRIVEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","package":"druntime","parentType":"","signature":"SQL_CURSOR_ROLLBACK_BEHAVIOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_ROLLBACK_BEHAVIOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_STATIC","package":"druntime","parentType":"","signature":"SQL_CURSOR_STATIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_TYPE","package":"druntime","parentType":"","signature":"SQL_CURSOR_TYPE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CURSOR_TYPE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_CURSOR_TYPE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CURSOR_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CV_CASCADED","package":"druntime","parentType":"","signature":"SQL_CV_CASCADED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CV_CASCADED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CV_CHECK_OPTION","package":"druntime","parentType":"","signature":"SQL_CV_CHECK_OPTION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CV_CHECK_OPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CV_CREATE_VIEW","package":"druntime","parentType":"","signature":"SQL_CV_CREATE_VIEW","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CV_CREATE_VIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CV_LOCAL","package":"druntime","parentType":"","signature":"SQL_CV_LOCAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CV_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_BIGINT","package":"druntime","parentType":"","signature":"SQL_CVT_BIGINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_BIGINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_BINARY","package":"druntime","parentType":"","signature":"SQL_CVT_BINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_BINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_BIT","package":"druntime","parentType":"","signature":"SQL_CVT_BIT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_CHAR","package":"druntime","parentType":"","signature":"SQL_CVT_CHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_DATE","package":"druntime","parentType":"","signature":"SQL_CVT_DATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_DATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_DECIMAL","package":"druntime","parentType":"","signature":"SQL_CVT_DECIMAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_DECIMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_DOUBLE","package":"druntime","parentType":"","signature":"SQL_CVT_DOUBLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_DOUBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_FLOAT","package":"druntime","parentType":"","signature":"SQL_CVT_FLOAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_FLOAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_INTEGER","package":"druntime","parentType":"","signature":"SQL_CVT_INTEGER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_INTEGER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_LONGVARBINARY","package":"druntime","parentType":"","signature":"SQL_CVT_LONGVARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_LONGVARCHAR","package":"druntime","parentType":"","signature":"SQL_CVT_LONGVARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_NUMERIC","package":"druntime","parentType":"","signature":"SQL_CVT_NUMERIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_NUMERIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_REAL","package":"druntime","parentType":"","signature":"SQL_CVT_REAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_REAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_SMALLINT","package":"druntime","parentType":"","signature":"SQL_CVT_SMALLINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_SMALLINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_TIME","package":"druntime","parentType":"","signature":"SQL_CVT_TIME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_CVT_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_TINYINT","package":"druntime","parentType":"","signature":"SQL_CVT_TINYINT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_TINYINT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_VARBINARY","package":"druntime","parentType":"","signature":"SQL_CVT_VARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_VARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_CVT_VARCHAR","package":"druntime","parentType":"","signature":"SQL_CVT_VARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_CVT_VARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DATABASE_NAME","package":"druntime","parentType":"","signature":"SQL_DATABASE_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DATABASE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DEFAULT_PARAM","package":"druntime","parentType":"","signature":"SQL_DEFAULT_PARAM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DEFAULT_PARAM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DELETE","package":"druntime","parentType":"","signature":"SQL_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_COMPLETE","package":"druntime","parentType":"","signature":"SQL_DRIVER_COMPLETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_COMPLETE_REQUIRED","package":"druntime","parentType":"","signature":"SQL_DRIVER_COMPLETE_REQUIRED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_COMPLETE_REQUIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_HDBC","package":"druntime","parentType":"","signature":"SQL_DRIVER_HDBC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_HDBC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_HENV","package":"druntime","parentType":"","signature":"SQL_DRIVER_HENV","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_HENV"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_HLIB","package":"druntime","parentType":"","signature":"SQL_DRIVER_HLIB","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_HLIB"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_HSTMT","package":"druntime","parentType":"","signature":"SQL_DRIVER_HSTMT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_HSTMT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_NAME","package":"druntime","parentType":"","signature":"SQL_DRIVER_NAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_NOPROMPT","package":"druntime","parentType":"","signature":"SQL_DRIVER_NOPROMPT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_NOPROMPT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_ODBC_VER","package":"druntime","parentType":"","signature":"SQL_DRIVER_ODBC_VER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_ODBC_VER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_PROMPT","package":"druntime","parentType":"","signature":"SQL_DRIVER_PROMPT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_PROMPT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DRIVER_VER","package":"druntime","parentType":"","signature":"SQL_DRIVER_VER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DRIVER_VER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DTC_ENLIST_EXPENSIVE","package":"druntime","parentType":"","signature":"SQL_DTC_ENLIST_EXPENSIVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DTC_ENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DTC_UNENLIST_EXPENSIVE","package":"druntime","parentType":"","signature":"SQL_DTC_UNENLIST_EXPENSIVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DTC_UNENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_DTC_TRANSITION_COST","package":"druntime","parentType":"","signature":"SQL_DTC_TRANSITION_COST","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_DTC_TRANSITION_COST"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ENSURE","package":"druntime","parentType":"","signature":"SQL_ENSURE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ENSURE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ENTIRE_ROWSET","package":"druntime","parentType":"","signature":"SQL_ENTIRE_ROWSET","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ENTIRE_ROWSET"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_EXPRESSIONS_IN_ORDERBY","package":"druntime","parentType":"","signature":"SQL_EXPRESSIONS_IN_ORDERBY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_EXPRESSIONS_IN_ORDERBY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FD_FETCH_BOOKMARK","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_BOOKMARK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FD_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FD_FETCH_PREV","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_PREV","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FD_FETCH_PREV"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FD_FETCH_RESUME","package":"druntime","parentType":"","signature":"SQL_FD_FETCH_RESUME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FD_FETCH_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FETCH_BOOKMARK","package":"druntime","parentType":"","signature":"SQL_FETCH_BOOKMARK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FETCH_PREV","package":"druntime","parentType":"","signature":"SQL_FETCH_PREV","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FETCH_PREV"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FETCH_RESUME","package":"druntime","parentType":"","signature":"SQL_FETCH_RESUME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FETCH_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FILE_NOT_SUPPORTED","package":"druntime","parentType":"","signature":"SQL_FILE_NOT_SUPPORTED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FILE_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FILE_TABLE","package":"druntime","parentType":"","signature":"SQL_FILE_TABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FILE_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FILE_QUALIFIER","package":"druntime","parentType":"","signature":"SQL_FILE_QUALIFIER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FILE_QUALIFIER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FILE_CATALOG","package":"druntime","parentType":"","signature":"SQL_FILE_CATALOG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FILE_CATALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FILE_USAGE","package":"druntime","parentType":"","signature":"SQL_FILE_USAGE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FILE_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_CVT_CONVERT","package":"druntime","parentType":"","signature":"SQL_FN_CVT_CONVERT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_CVT_CONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ABS","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ABS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ABS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ACOS","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ACOS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ACOS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ASIN","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ASIN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ASIN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ATAN","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ATAN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ATAN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ATAN2","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ATAN2","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ATAN2"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_CEILING","package":"druntime","parentType":"","signature":"SQL_FN_NUM_CEILING","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_CEILING"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_COS","package":"druntime","parentType":"","signature":"SQL_FN_NUM_COS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_COS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_COT","package":"druntime","parentType":"","signature":"SQL_FN_NUM_COT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_COT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_DEGREES","package":"druntime","parentType":"","signature":"SQL_FN_NUM_DEGREES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_DEGREES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_EXP","package":"druntime","parentType":"","signature":"SQL_FN_NUM_EXP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_EXP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_FLOOR","package":"druntime","parentType":"","signature":"SQL_FN_NUM_FLOOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_FLOOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_LOG","package":"druntime","parentType":"","signature":"SQL_FN_NUM_LOG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_LOG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_LOG10","package":"druntime","parentType":"","signature":"SQL_FN_NUM_LOG10","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_LOG10"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_MOD","package":"druntime","parentType":"","signature":"SQL_FN_NUM_MOD","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_MOD"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_PI","package":"druntime","parentType":"","signature":"SQL_FN_NUM_PI","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_PI"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_POWER","package":"druntime","parentType":"","signature":"SQL_FN_NUM_POWER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_POWER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_RADIANS","package":"druntime","parentType":"","signature":"SQL_FN_NUM_RADIANS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_RADIANS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_RAND","package":"druntime","parentType":"","signature":"SQL_FN_NUM_RAND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_RAND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_ROUND","package":"druntime","parentType":"","signature":"SQL_FN_NUM_ROUND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_ROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_SIGN","package":"druntime","parentType":"","signature":"SQL_FN_NUM_SIGN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_SIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_SIN","package":"druntime","parentType":"","signature":"SQL_FN_NUM_SIN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_SIN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_SQRT","package":"druntime","parentType":"","signature":"SQL_FN_NUM_SQRT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_SQRT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_TAN","package":"druntime","parentType":"","signature":"SQL_FN_NUM_TAN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_TAN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_NUM_TRUNCATE","package":"druntime","parentType":"","signature":"SQL_FN_NUM_TRUNCATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_NUM_TRUNCATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_ASCII","package":"druntime","parentType":"","signature":"SQL_FN_STR_ASCII","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_ASCII"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_CHAR","package":"druntime","parentType":"","signature":"SQL_FN_STR_CHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_CONCAT","package":"druntime","parentType":"","signature":"SQL_FN_STR_CONCAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_CONCAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_DIFFERENCE","package":"druntime","parentType":"","signature":"SQL_FN_STR_DIFFERENCE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_DIFFERENCE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_INSERT","package":"druntime","parentType":"","signature":"SQL_FN_STR_INSERT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_INSERT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LCASE","package":"druntime","parentType":"","signature":"SQL_FN_STR_LCASE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LEFT","package":"druntime","parentType":"","signature":"SQL_FN_STR_LEFT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LENGTH","package":"druntime","parentType":"","signature":"SQL_FN_STR_LENGTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LOCATE","package":"druntime","parentType":"","signature":"SQL_FN_STR_LOCATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LOCATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LOCATE_2","package":"druntime","parentType":"","signature":"SQL_FN_STR_LOCATE_2","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LOCATE_2"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_LTRIM","package":"druntime","parentType":"","signature":"SQL_FN_STR_LTRIM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_LTRIM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_REPEAT","package":"druntime","parentType":"","signature":"SQL_FN_STR_REPEAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_REPEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_REPLACE","package":"druntime","parentType":"","signature":"SQL_FN_STR_REPLACE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_REPLACE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_RIGHT","package":"druntime","parentType":"","signature":"SQL_FN_STR_RIGHT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_RTRIM","package":"druntime","parentType":"","signature":"SQL_FN_STR_RTRIM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_RTRIM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_SOUNDEX","package":"druntime","parentType":"","signature":"SQL_FN_STR_SOUNDEX","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_SOUNDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_SPACE","package":"druntime","parentType":"","signature":"SQL_FN_STR_SPACE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_SPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_SUBSTRING","package":"druntime","parentType":"","signature":"SQL_FN_STR_SUBSTRING","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_SUBSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_STR_UCASE","package":"druntime","parentType":"","signature":"SQL_FN_STR_UCASE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_STR_UCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_SYS_DBNAME","package":"druntime","parentType":"","signature":"SQL_FN_SYS_DBNAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_SYS_DBNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_SYS_IFNULL","package":"druntime","parentType":"","signature":"SQL_FN_SYS_IFNULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_SYS_IFNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_SYS_USERNAME","package":"druntime","parentType":"","signature":"SQL_FN_SYS_USERNAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_SYS_USERNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_CURDATE","package":"druntime","parentType":"","signature":"SQL_FN_TD_CURDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_CURDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_CURTIME","package":"druntime","parentType":"","signature":"SQL_FN_TD_CURTIME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_CURTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_DAYNAME","package":"druntime","parentType":"","signature":"SQL_FN_TD_DAYNAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_DAYNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_DAYOFMONTH","package":"druntime","parentType":"","signature":"SQL_FN_TD_DAYOFMONTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_DAYOFMONTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_DAYOFWEEK","package":"druntime","parentType":"","signature":"SQL_FN_TD_DAYOFWEEK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_DAYOFWEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_DAYOFYEAR","package":"druntime","parentType":"","signature":"SQL_FN_TD_DAYOFYEAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_DAYOFYEAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_HOUR","package":"druntime","parentType":"","signature":"SQL_FN_TD_HOUR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_HOUR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_MINUTE","package":"druntime","parentType":"","signature":"SQL_FN_TD_MINUTE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_MINUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_MONTH","package":"druntime","parentType":"","signature":"SQL_FN_TD_MONTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_MONTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_MONTHNAME","package":"druntime","parentType":"","signature":"SQL_FN_TD_MONTHNAME","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_MONTHNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_NOW","package":"druntime","parentType":"","signature":"SQL_FN_TD_NOW","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_NOW"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_QUARTER","package":"druntime","parentType":"","signature":"SQL_FN_TD_QUARTER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_QUARTER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_SECOND","package":"druntime","parentType":"","signature":"SQL_FN_TD_SECOND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_SECOND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_TIMESTAMPADD","package":"druntime","parentType":"","signature":"SQL_FN_TD_TIMESTAMPADD","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_TIMESTAMPADD"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_TIMESTAMPDIFF","package":"druntime","parentType":"","signature":"SQL_FN_TD_TIMESTAMPDIFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_TIMESTAMPDIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_WEEK","package":"druntime","parentType":"","signature":"SQL_FN_TD_WEEK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TD_YEAR","package":"druntime","parentType":"","signature":"SQL_FN_TD_YEAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TD_YEAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_DAY","package":"druntime","parentType":"","signature":"SQL_FN_TSI_DAY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_DAY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_FRAC_SECOND","package":"druntime","parentType":"","signature":"SQL_FN_TSI_FRAC_SECOND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_FRAC_SECOND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_HOUR","package":"druntime","parentType":"","signature":"SQL_FN_TSI_HOUR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_HOUR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_MINUTE","package":"druntime","parentType":"","signature":"SQL_FN_TSI_MINUTE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_MINUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_MONTH","package":"druntime","parentType":"","signature":"SQL_FN_TSI_MONTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_MONTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_QUARTER","package":"druntime","parentType":"","signature":"SQL_FN_TSI_QUARTER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_QUARTER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_SECOND","package":"druntime","parentType":"","signature":"SQL_FN_TSI_SECOND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_SECOND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_WEEK","package":"druntime","parentType":"","signature":"SQL_FN_TSI_WEEK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_FN_TSI_YEAR","package":"druntime","parentType":"","signature":"SQL_FN_TSI_YEAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_FN_TSI_YEAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","package":"druntime","parentType":"","signature":"SQL_GB_GROUP_BY_CONTAINS_SELECT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GB_GROUP_BY_CONTAINS_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GB_GROUP_BY_EQUALS_SELECT","package":"druntime","parentType":"","signature":"SQL_GB_GROUP_BY_EQUALS_SELECT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GB_GROUP_BY_EQUALS_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GB_NO_RELATION","package":"druntime","parentType":"","signature":"SQL_GB_NO_RELATION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GB_NO_RELATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GB_NOT_SUPPORTED","package":"druntime","parentType":"","signature":"SQL_GB_NOT_SUPPORTED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GB_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GD_BLOCK","package":"druntime","parentType":"","signature":"SQL_GD_BLOCK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GD_BLOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GD_BOUND","package":"druntime","parentType":"","signature":"SQL_GD_BOUND","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GD_BOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GET_BOOKMARK","package":"druntime","parentType":"","signature":"SQL_GET_BOOKMARK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GET_BOOKMARK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_GROUP_BY","package":"druntime","parentType":"","signature":"SQL_GROUP_BY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_GROUP_BY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_IGNORE","package":"druntime","parentType":"","signature":"SQL_IGNORE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_INFO_FIRST","package":"druntime","parentType":"","signature":"SQL_INFO_FIRST","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_INFO_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_KEYSET_SIZE","package":"druntime","parentType":"","signature":"SQL_KEYSET_SIZE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_KEYSET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_KEYSET_SIZE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_KEYSET_SIZE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_KEYSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_KEYWORDS","package":"druntime","parentType":"","signature":"SQL_KEYWORDS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_KEYWORDS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LCK_EXCLUSIVE","package":"druntime","parentType":"","signature":"SQL_LCK_EXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LCK_NO_CHANGE","package":"druntime","parentType":"","signature":"SQL_LCK_NO_CHANGE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LCK_UNLOCK","package":"druntime","parentType":"","signature":"SQL_LCK_UNLOCK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LCK_UNLOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LEN_BINARY_ATTR_OFFSET","package":"druntime","parentType":"","signature":"SQL_LEN_BINARY_ATTR_OFFSET","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LEN_BINARY_ATTR_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LEN_DATA_AT_EXEC_OFFSET","package":"druntime","parentType":"","signature":"SQL_LEN_DATA_AT_EXEC_OFFSET","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LEN_DATA_AT_EXEC_OFFSET"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LIKE_ESCAPE_CLAUSE","package":"druntime","parentType":"","signature":"SQL_LIKE_ESCAPE_CLAUSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LIKE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LIKE_ONLY","package":"druntime","parentType":"","signature":"SQL_LIKE_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LIKE_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOCK_EXCLUSIVE","package":"druntime","parentType":"","signature":"SQL_LOCK_EXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOCK_NO_CHANGE","package":"druntime","parentType":"","signature":"SQL_LOCK_NO_CHANGE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOCK_TYPES","package":"druntime","parentType":"","signature":"SQL_LOCK_TYPES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOCK_TYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOCK_UNLOCK","package":"druntime","parentType":"","signature":"SQL_LOCK_UNLOCK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOGIN_TIMEOUT","package":"druntime","parentType":"","signature":"SQL_LOGIN_TIMEOUT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOGIN_TIMEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LOGIN_TIMEOUT_DEFAULT","package":"druntime","parentType":"","signature":"SQL_LOGIN_TIMEOUT_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LOGIN_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LONGVARBINARY","package":"druntime","parentType":"","signature":"SQL_LONGVARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LONGVARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_LONGVARCHAR","package":"druntime","parentType":"","signature":"SQL_LONGVARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_LONGVARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_BINARY_LITERAL_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_BINARY_LITERAL_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_BINARY_LITERAL_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_CHAR_LITERAL_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_CHAR_LITERAL_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_CHAR_LITERAL_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_DSN_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAX_DSN_LENGTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_DSN_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAX_LENGTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_LENGTH_DEFAULT","package":"druntime","parentType":"","signature":"SQL_MAX_LENGTH_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_LENGTH_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_OPTION_STRING_LENGTH","package":"druntime","parentType":"","signature":"SQL_MAX_OPTION_STRING_LENGTH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_OPTION_STRING_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_OWNER_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_OWNER_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_OWNER_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_PROCEDURE_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_PROCEDURE_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_PROCEDURE_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_QUALIFIER_NAME_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_QUALIFIER_NAME_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_QUALIFIER_NAME_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","package":"druntime","parentType":"","signature":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_ROW_SIZE_INCLUDES_LONG"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_ROWS","package":"druntime","parentType":"","signature":"SQL_MAX_ROWS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_ROWS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MAX_ROWS_DEFAULT","package":"druntime","parentType":"","signature":"SQL_MAX_ROWS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MAX_ROWS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MODE_READ_WRITE","package":"druntime","parentType":"","signature":"SQL_MODE_READ_WRITE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MODE_READ_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MODE_READ_ONLY","package":"druntime","parentType":"","signature":"SQL_MODE_READ_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MODE_READ_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MODE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_MODE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MODE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MULT_RESULT_SETS","package":"druntime","parentType":"","signature":"SQL_MULT_RESULT_SETS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MULT_RESULT_SETS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_MULTIPLE_ACTIVE_TXN","package":"druntime","parentType":"","signature":"SQL_MULTIPLE_ACTIVE_TXN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_MULTIPLE_ACTIVE_TXN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NC_END","package":"druntime","parentType":"","signature":"SQL_NC_END","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NC_END"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NC_START","package":"druntime","parentType":"","signature":"SQL_NC_START","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NC_START"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NEED_LONG_DATA_LEN","package":"druntime","parentType":"","signature":"SQL_NEED_LONG_DATA_LEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NEED_LONG_DATA_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NNC_NON_NULL","package":"druntime","parentType":"","signature":"SQL_NNC_NON_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NNC_NON_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NNC_NULL","package":"druntime","parentType":"","signature":"SQL_NNC_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NNC_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NO_TOTAL","package":"druntime","parentType":"","signature":"SQL_NO_TOTAL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NO_TOTAL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NON_NULLABLE_COLUMNS","package":"druntime","parentType":"","signature":"SQL_NON_NULLABLE_COLUMNS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NON_NULLABLE_COLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NOSCAN_OFF","package":"druntime","parentType":"","signature":"SQL_NOSCAN_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NOSCAN_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NOSCAN_ON","package":"druntime","parentType":"","signature":"SQL_NOSCAN_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NOSCAN_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NOSCAN","package":"druntime","parentType":"","signature":"SQL_NOSCAN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NOSCAN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NOSCAN_DEFAULT","package":"druntime","parentType":"","signature":"SQL_NOSCAN_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NOSCAN_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_NUMERIC_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_NUMERIC_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_NUMERIC_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OAC_LEVEL1","package":"druntime","parentType":"","signature":"SQL_OAC_LEVEL1","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OAC_LEVEL1"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OAC_LEVEL2","package":"druntime","parentType":"","signature":"SQL_OAC_LEVEL2","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OAC_LEVEL2"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OAC_NONE","package":"druntime","parentType":"","signature":"SQL_OAC_NONE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OAC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_API_CONFORMANCE","package":"druntime","parentType":"","signature":"SQL_ODBC_API_CONFORMANCE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_API_CONFORMANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_CURSORS","package":"druntime","parentType":"","signature":"SQL_ODBC_CURSORS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_CURSORS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_SAG_CLI_CONFORMANCE","package":"druntime","parentType":"","signature":"SQL_ODBC_SAG_CLI_CONFORMANCE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_SAG_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_SQL_CONFORMANCE","package":"druntime","parentType":"","signature":"SQL_ODBC_SQL_CONFORMANCE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_SQL_OPT_IEF","package":"druntime","parentType":"","signature":"SQL_ODBC_SQL_OPT_IEF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_SQL_OPT_IEF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_VER","package":"druntime","parentType":"","signature":"SQL_ODBC_VER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_VER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACE","package":"druntime","parentType":"","signature":"SQL_OPT_TRACE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACE_FILE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_OPT_TRACE_FILE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACE_FILE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACE_OFF","package":"druntime","parentType":"","signature":"SQL_OPT_TRACE_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACE_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_OPT_TRACE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACE_ON","package":"druntime","parentType":"","signature":"SQL_OPT_TRACE_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACE_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OPT_TRACEFILE","package":"druntime","parentType":"","signature":"SQL_OPT_TRACEFILE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OPT_TRACEFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OSC_CORE","package":"druntime","parentType":"","signature":"SQL_OSC_CORE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OSC_CORE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OSC_EXTENDED","package":"druntime","parentType":"","signature":"SQL_OSC_EXTENDED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OSC_EXTENDED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OSC_MINIMUM","package":"druntime","parentType":"","signature":"SQL_OSC_MINIMUM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OSC_MINIMUM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OSCC_COMPLIANT","package":"druntime","parentType":"","signature":"SQL_OSCC_COMPLIANT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OSCC_COMPLIANT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OSCC_NOT_COMPLIANT","package":"druntime","parentType":"","signature":"SQL_OSCC_NOT_COMPLIANT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OSCC_NOT_COMPLIANT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OU_DML_STATEMENTS","package":"druntime","parentType":"","signature":"SQL_OU_DML_STATEMENTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OU_INDEX_DEFINITION","package":"druntime","parentType":"","signature":"SQL_OU_INDEX_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OU_PRIVILEGE_DEFINITION","package":"druntime","parentType":"","signature":"SQL_OU_PRIVILEGE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OU_PROCEDURE_INVOCATION","package":"druntime","parentType":"","signature":"SQL_OU_PROCEDURE_INVOCATION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OU_TABLE_DEFINITION","package":"druntime","parentType":"","signature":"SQL_OU_TABLE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OUTER_JOINS","package":"druntime","parentType":"","signature":"SQL_OUTER_JOINS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OUTER_JOINS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OWNER_TERM","package":"druntime","parentType":"","signature":"SQL_OWNER_TERM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OWNER_TERM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_OWNER_USAGE","package":"druntime","parentType":"","signature":"SQL_OWNER_USAGE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_OWNER_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PACKET_SIZE","package":"druntime","parentType":"","signature":"SQL_PACKET_SIZE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PACKET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PARAM_INPUT","package":"druntime","parentType":"","signature":"SQL_PARAM_INPUT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PARAM_INPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PARAM_INPUT_OUTPUT","package":"druntime","parentType":"","signature":"SQL_PARAM_INPUT_OUTPUT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PARAM_INPUT_OUTPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PARAM_OUTPUT","package":"druntime","parentType":"","signature":"SQL_PARAM_OUTPUT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PARAM_OUTPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PARAM_TYPE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_PARAM_TYPE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PARAM_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PARAM_TYPE_UNKNOWN","package":"druntime","parentType":"","signature":"SQL_PARAM_TYPE_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PARAM_TYPE_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PC_NOT_PSEUDO","package":"druntime","parentType":"","signature":"SQL_PC_NOT_PSEUDO","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PC_NOT_PSEUDO"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_ADD","package":"druntime","parentType":"","signature":"SQL_POS_ADD","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_ADD"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_DELETE","package":"druntime","parentType":"","signature":"SQL_POS_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_OPERATIONS","package":"druntime","parentType":"","signature":"SQL_POS_OPERATIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_OPERATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_POSITION","package":"druntime","parentType":"","signature":"SQL_POS_POSITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_POSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_REFRESH","package":"druntime","parentType":"","signature":"SQL_POS_REFRESH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_REFRESH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POS_UPDATE","package":"druntime","parentType":"","signature":"SQL_POS_UPDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POS_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POSITION","package":"druntime","parentType":"","signature":"SQL_POSITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_POSITIONED_STATEMENTS","package":"druntime","parentType":"","signature":"SQL_POSITIONED_STATEMENTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_POSITIONED_STATEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PROCEDURE_TERM","package":"druntime","parentType":"","signature":"SQL_PROCEDURE_TERM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PROCEDURE_TERM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PROCEDURES","package":"druntime","parentType":"","signature":"SQL_PROCEDURES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PROCEDURES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PS_POSITIONED_DELETE","package":"druntime","parentType":"","signature":"SQL_PS_POSITIONED_DELETE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PS_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PS_POSITIONED_UPDATE","package":"druntime","parentType":"","signature":"SQL_PS_POSITIONED_UPDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PS_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PS_SELECT_FOR_UPDATE","package":"druntime","parentType":"","signature":"SQL_PS_SELECT_FOR_UPDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PS_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PT_FUNCTION","package":"druntime","parentType":"","signature":"SQL_PT_FUNCTION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PT_FUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PT_PROCEDURE","package":"druntime","parentType":"","signature":"SQL_PT_PROCEDURE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PT_PROCEDURE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PT_UNKNOWN","package":"druntime","parentType":"","signature":"SQL_PT_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PT_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QL_END","package":"druntime","parentType":"","signature":"SQL_QL_END","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QL_END"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QL_START","package":"druntime","parentType":"","signature":"SQL_QL_START","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QL_START"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QU_DML_STATEMENTS","package":"druntime","parentType":"","signature":"SQL_QU_DML_STATEMENTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QU_INDEX_DEFINITION","package":"druntime","parentType":"","signature":"SQL_QU_INDEX_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QU_PRIVILEGE_DEFINITION","package":"druntime","parentType":"","signature":"SQL_QU_PRIVILEGE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QU_PROCEDURE_INVOCATION","package":"druntime","parentType":"","signature":"SQL_QU_PROCEDURE_INVOCATION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QU_TABLE_DEFINITION","package":"druntime","parentType":"","signature":"SQL_QU_TABLE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUALIFIER_LOCATION","package":"druntime","parentType":"","signature":"SQL_QUALIFIER_LOCATION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUALIFIER_LOCATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUALIFIER_NAME_SEPARATOR","package":"druntime","parentType":"","signature":"SQL_QUALIFIER_NAME_SEPARATOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUALIFIER_NAME_SEPARATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUALIFIER_TERM","package":"druntime","parentType":"","signature":"SQL_QUALIFIER_TERM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUALIFIER_TERM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUALIFIER_USAGE","package":"druntime","parentType":"","signature":"SQL_QUALIFIER_USAGE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUALIFIER_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUERY_TIMEOUT","package":"druntime","parentType":"","signature":"SQL_QUERY_TIMEOUT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUERY_TIMEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUERY_TIMEOUT_DEFAULT","package":"druntime","parentType":"","signature":"SQL_QUERY_TIMEOUT_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUERY_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUICK","package":"druntime","parentType":"","signature":"SQL_QUICK","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUICK"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUIET_MODE","package":"druntime","parentType":"","signature":"SQL_QUIET_MODE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUIET_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_QUOTED_IDENTIFIER_CASE","package":"druntime","parentType":"","signature":"SQL_QUOTED_IDENTIFIER_CASE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_QUOTED_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RD_OFF","package":"druntime","parentType":"","signature":"SQL_RD_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RD_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RD_ON","package":"druntime","parentType":"","signature":"SQL_RD_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RD_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RD_DEFAULT","package":"druntime","parentType":"","signature":"SQL_RD_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RD_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_REFRESH","package":"druntime","parentType":"","signature":"SQL_REFRESH","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_REFRESH"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RESTRICT","package":"druntime","parentType":"","signature":"SQL_RESTRICT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RESTRICT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RESULT_COL","package":"druntime","parentType":"","signature":"SQL_RESULT_COL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RESULT_COL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RETRIEVE_DATA","package":"druntime","parentType":"","signature":"SQL_RETRIEVE_DATA","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RETRIEVE_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_RETURN_VALUE","package":"druntime","parentType":"","signature":"SQL_RETURN_VALUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_RETURN_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_ADDED","package":"druntime","parentType":"","signature":"SQL_ROW_ADDED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_ADDED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_DELETED","package":"druntime","parentType":"","signature":"SQL_ROW_DELETED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_DELETED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_ERROR","package":"druntime","parentType":"","signature":"SQL_ROW_ERROR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_NOROW","package":"druntime","parentType":"","signature":"SQL_ROW_NOROW","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_NOROW"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_NUMBER","package":"druntime","parentType":"","signature":"SQL_ROW_NUMBER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_NUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_SUCCESS","package":"druntime","parentType":"","signature":"SQL_ROW_SUCCESS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_SUCCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_UPDATED","package":"druntime","parentType":"","signature":"SQL_ROW_UPDATED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_UPDATED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROW_UPDATES","package":"druntime","parentType":"","signature":"SQL_ROW_UPDATES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROW_UPDATES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROWSET_SIZE","package":"druntime","parentType":"","signature":"SQL_ROWSET_SIZE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROWSET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROWSET_SIZE_DEFAULT","package":"druntime","parentType":"","signature":"SQL_ROWSET_SIZE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROWSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ROWVER","package":"druntime","parentType":"","signature":"SQL_ROWVER","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ROWVER"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SC_NON_UNIQUE","package":"druntime","parentType":"","signature":"SQL_SC_NON_UNIQUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SC_NON_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SC_TRY_UNIQUE","package":"druntime","parentType":"","signature":"SQL_SC_TRY_UNIQUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SC_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SC_UNIQUE","package":"druntime","parentType":"","signature":"SQL_SC_UNIQUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SC_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCCO_OPT_TIMESTAMP","package":"druntime","parentType":"","signature":"SQL_SCCO_OPT_TIMESTAMP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCCO_OPT_TIMESTAMP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCROLL_DYNAMIC","package":"druntime","parentType":"","signature":"SQL_SCROLL_DYNAMIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCROLL_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCROLL_FORWARD_ONLY","package":"druntime","parentType":"","signature":"SQL_SCROLL_FORWARD_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCROLL_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCROLL_KEYSET_DRIVEN","package":"druntime","parentType":"","signature":"SQL_SCROLL_KEYSET_DRIVEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCROLL_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCROLL_OPTIONS","package":"druntime","parentType":"","signature":"SQL_SCROLL_OPTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCROLL_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SCROLL_STATIC","package":"druntime","parentType":"","signature":"SQL_SCROLL_STATIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SCROLL_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SEARCHABLE","package":"druntime","parentType":"","signature":"SQL_SEARCHABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SEARCHABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SET_NULL","package":"druntime","parentType":"","signature":"SQL_SET_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SET_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SETPARAM_VALUE_MAX","package":"druntime","parentType":"","signature":"SQL_SETPARAM_VALUE_MAX","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SETPARAM_VALUE_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SETPOS_MAX_LOCK_VALUE","package":"druntime","parentType":"","signature":"SQL_SETPOS_MAX_LOCK_VALUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SETPOS_MAX_LOCK_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SETPOS_MAX_OPTION_VALUE","package":"druntime","parentType":"","signature":"SQL_SETPOS_MAX_OPTION_VALUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SETPOS_MAX_OPTION_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SIMULATE_CURSOR","package":"druntime","parentType":"","signature":"SQL_SIMULATE_CURSOR","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SIMULATE_CURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SO_DYNAMIC","package":"druntime","parentType":"","signature":"SQL_SO_DYNAMIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SO_DYNAMIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SO_FORWARD_ONLY","package":"druntime","parentType":"","signature":"SQL_SO_FORWARD_ONLY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SO_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SO_KEYSET_DRIVEN","package":"druntime","parentType":"","signature":"SQL_SO_KEYSET_DRIVEN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SO_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SO_MIXED","package":"druntime","parentType":"","signature":"SQL_SO_MIXED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SO_MIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SO_STATIC","package":"druntime","parentType":"","signature":"SQL_SO_STATIC","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SO_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQ_COMPARISON","package":"druntime","parentType":"","signature":"SQL_SQ_COMPARISON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQ_COMPARISON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQ_CORRELATED_SUBQUERIES","package":"druntime","parentType":"","signature":"SQL_SQ_CORRELATED_SUBQUERIES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQ_CORRELATED_SUBQUERIES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQ_EXISTS","package":"druntime","parentType":"","signature":"SQL_SQ_EXISTS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQ_EXISTS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQ_IN","package":"druntime","parentType":"","signature":"SQL_SQ_IN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQ_IN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQ_QUANTIFIED","package":"druntime","parentType":"","signature":"SQL_SQ_QUANTIFIED","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQ_QUANTIFIED"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SQLSTATE_SIZE","package":"druntime","parentType":"","signature":"SQL_SQLSTATE_SIZE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SQLSTATE_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SS_ADDITIONS","package":"druntime","parentType":"","signature":"SQL_SS_ADDITIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SS_ADDITIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SS_DELETIONS","package":"druntime","parentType":"","signature":"SQL_SS_DELETIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SS_DELETIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SS_UPDATES","package":"druntime","parentType":"","signature":"SQL_SS_UPDATES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SS_UPDATES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_STATIC_SENSITIVITY","package":"druntime","parentType":"","signature":"SQL_STATIC_SENSITIVITY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_STATIC_SENSITIVITY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_STRING_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_STRING_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SUBQUERIES","package":"druntime","parentType":"","signature":"SQL_SUBQUERIES","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SUBQUERIES"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_SYSTEM_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_SYSTEM_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_SYSTEM_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TABLE_STAT","package":"druntime","parentType":"","signature":"SQL_TABLE_STAT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TABLE_STAT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TABLE_TERM","package":"druntime","parentType":"","signature":"SQL_TABLE_TERM","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TABLE_TERM"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TIMEDATE_ADD_INTERVALS","package":"druntime","parentType":"","signature":"SQL_TIMEDATE_ADD_INTERVALS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TIMEDATE_ADD_INTERVALS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TIMEDATE_DIFF_INTERVALS","package":"druntime","parentType":"","signature":"SQL_TIMEDATE_DIFF_INTERVALS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TIMEDATE_DIFF_INTERVALS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TIMEDATE_FUNCTIONS","package":"druntime","parentType":"","signature":"SQL_TIMEDATE_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TIMEDATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TRANSLATE_DLL","package":"druntime","parentType":"","signature":"SQL_TRANSLATE_DLL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TRANSLATE_DLL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TRANSLATE_OPTION","package":"druntime","parentType":"","signature":"SQL_TRANSLATE_OPTION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TRANSLATE_OPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TXN_ISOLATION","package":"druntime","parentType":"","signature":"SQL_TXN_ISOLATION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TXN_VERSIONING","package":"druntime","parentType":"","signature":"SQL_TXN_VERSIONING","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TXN_VERSIONING"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_TYPE_NULL","package":"druntime","parentType":"","signature":"SQL_TYPE_NULL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_TYPE_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_U_UNION","package":"druntime","parentType":"","signature":"SQL_U_UNION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_U_UNION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_U_UNION_ALL","package":"druntime","parentType":"","signature":"SQL_U_UNION_ALL","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_U_UNION_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UB_OFF","package":"druntime","parentType":"","signature":"SQL_UB_OFF","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UB_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UB_DEFAULT","package":"druntime","parentType":"","signature":"SQL_UB_DEFAULT","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UB_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UB_ON","package":"druntime","parentType":"","signature":"SQL_UB_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UB_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UNION","package":"druntime","parentType":"","signature":"SQL_UNION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UNION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UNSEARCHABLE","package":"druntime","parentType":"","signature":"SQL_UNSEARCHABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UNSEARCHABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_UPDATE","package":"druntime","parentType":"","signature":"SQL_UPDATE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_USE_BOOKMARKS","package":"druntime","parentType":"","signature":"SQL_USE_BOOKMARKS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_USE_BOOKMARKS"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_VARBINARY","package":"druntime","parentType":"","signature":"SQL_VARBINARY","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_VARBINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLATT_OPT_MAX","package":"druntime","parentType":"","signature":"SQL_COLATT_OPT_MAX","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLATT_OPT_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_COLATT_OPT_MIN","package":"druntime","parentType":"","signature":"SQL_COLATT_OPT_MIN","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_COLATT_OPT_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_PRED_SEARCHABLE","package":"druntime","parentType":"","signature":"SQL_PRED_SEARCHABLE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_PRED_SEARCHABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ATTR_ANSI_APP","package":"druntime","parentType":"","signature":"SQL_ATTR_ANSI_APP","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ATTR_ANSI_APP"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AA_TRUE","package":"druntime","parentType":"","signature":"SQL_AA_TRUE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AA_TRUE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_AA_FALSE","package":"druntime","parentType":"","signature":"SQL_AA_FALSE","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_AA_FALSE"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"TRACE_VERSION","package":"druntime","parentType":"","signature":"TRACE_VERSION","url":"/ddoc/druntime/core/sys/windows/sqlext.html#TRACE_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"TRACE_ON","package":"druntime","parentType":"","signature":"TRACE_ON","url":"/ddoc/druntime/core/sys/windows/sqlext.html#TRACE_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlext","name":"SQL_ODBC_KEYWORDS","package":"druntime","parentType":"","signature":"char [] SQL_ODBC_KEYWORDS","url":"/ddoc/druntime/core/sys/windows/sqlext.html#SQL_ODBC_KEYWORDS"},{"doc":"$(RED Warning: This binding is out-of-date and does not allow use on non-Windows platforms. Use `etc.c.odbc.sqltypes` instead.)","kind":"module","module":"core.sys.windows.sqltypes","name":"core.sys.windows.sqltypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sqltypes.html"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SCHAR","package":"druntime","parentType":"","signature":"SCHAR = byte","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SDWORD","package":"druntime","parentType":"","signature":"SDWORD = int","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SDWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SWORD","package":"druntime","parentType":"","signature":"SWORD = short","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"UDWORD","package":"druntime","parentType":"","signature":"UDWORD = ULONG","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#UDWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"UWORD","package":"druntime","parentType":"","signature":"UWORD = USHORT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#UWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SDOUBLE","package":"druntime","parentType":"","signature":"SDOUBLE = double","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SDOUBLE"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SFLOAT","package":"druntime","parentType":"","signature":"SFLOAT = float","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SFLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"PTR","package":"druntime","parentType":"","signature":"PTR = PVOID","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#PTR"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLCHAR","package":"druntime","parentType":"","signature":"SQLCHAR = UCHAR","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLUINTEGER","package":"druntime","parentType":"","signature":"SQLUINTEGER = UDWORD","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLUINTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLHANDLE","package":"druntime","parentType":"","signature":"SQLHANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLHANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLHENV","package":"druntime","parentType":"","signature":"SQLHENV = SQLHANDLE","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLHENV"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLRETURN","package":"druntime","parentType":"","signature":"SQLRETURN = SQLSMALLINT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLRETURN"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLHWND","package":"druntime","parentType":"","signature":"SQLHWND = HWND","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLHWND"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"BOOKMARK","package":"druntime","parentType":"","signature":"BOOKMARK = ULONG","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#BOOKMARK"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLLEN","package":"druntime","parentType":"","signature":"SQLLEN = SQLINTEGER","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLLEN"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLROWCOUNT","package":"druntime","parentType":"","signature":"SQLROWCOUNT = SQLUINTEGER","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLROWCOUNT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLTRANSID","package":"druntime","parentType":"","signature":"SQLTRANSID = DWORD","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLTRANSID"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLSETPOSIROW","package":"druntime","parentType":"","signature":"SQLSETPOSIROW = SQLUSMALLINT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLSETPOSIROW"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLWCHAR","package":"druntime","parentType":"","signature":"SQLWCHAR = wchar","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLWCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLDATE","package":"druntime","parentType":"","signature":"SQLDATE = ubyte","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLDATE"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLDOUBLE","package":"druntime","parentType":"","signature":"SQLDOUBLE = double","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLDOUBLE"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLNUMERIC","package":"druntime","parentType":"","signature":"SQLNUMERIC = ubyte","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLNUMERIC"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLREAL","package":"druntime","parentType":"","signature":"SQLREAL = float","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLREAL"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLTIME","package":"druntime","parentType":"","signature":"SQLTIME = ubyte","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"ODBCINT64","package":"druntime","parentType":"","signature":"ODBCINT64 = long","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#ODBCINT64"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLUBIGINT","package":"druntime","parentType":"","signature":"SQLUBIGINT = ulong","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLUBIGINT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"DATE_STRUCT","package":"druntime","parentType":"","signature":"DATE_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#DATE_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"TIME_STRUCT","package":"druntime","parentType":"","signature":"TIME_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#TIME_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"TIMESTAMP_STRUCT","package":"druntime","parentType":"","signature":"TIMESTAMP_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#TIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQL_DATE_STRUCT","package":"druntime","parentType":"","signature":"SQL_DATE_STRUCT = DATE_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_DATE_STRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQL_TIME_STRUCT","package":"druntime","parentType":"","signature":"SQL_TIME_STRUCT = TIME_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_TIME_STRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQL_TIMESTAMP_STRUCT","package":"druntime","parentType":"","signature":"SQL_TIMESTAMP_STRUCT = TIMESTAMP_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_TIMESTAMP_STRUCT"},{"doc":"","kind":"enum","module":"core.sys.windows.sqltypes","name":"SQLINTERVAL","package":"druntime","parentType":"","signature":"SQLINTERVAL","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_YEAR","package":"druntime","parentType":"","signature":"SQL_IS_YEAR = 1","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_MONTH","package":"druntime","parentType":"","signature":"SQL_IS_MONTH = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_DAY","package":"druntime","parentType":"","signature":"SQL_IS_DAY = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_HOUR","package":"druntime","parentType":"","signature":"SQL_IS_HOUR = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_MINUTE","package":"druntime","parentType":"","signature":"SQL_IS_MINUTE = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_SECOND","package":"druntime","parentType":"","signature":"SQL_IS_SECOND = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_YEAR_TO_MONTH","package":"druntime","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_DAY_TO_HOUR","package":"druntime","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_DAY_TO_MINUTE","package":"druntime","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_DAY_TO_SECOND","package":"druntime","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_HOUR_TO_MINUTE","package":"druntime","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_HOUR_TO_SECOND","package":"druntime","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.sqltypes","name":"SQL_IS_MINUTE_TO_SECOND","package":"druntime","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = ","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"SQL_YEAR_MONTH_STRUCT","package":"druntime","parentType":"","signature":"SQL_YEAR_MONTH_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_YEAR_MONTH_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"SQL_DAY_SECOND_STRUCT","package":"druntime","parentType":"","signature":"SQL_DAY_SECOND_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_DAY_SECOND_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"SQL_INTERVAL_STRUCT","package":"druntime","parentType":"","signature":"SQL_INTERVAL_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_INTERVAL_STRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.sqltypes","name":"SQL_NUMERIC_STRUCT","package":"druntime","parentType":"","signature":"SQL_NUMERIC_STRUCT","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_NUMERIC_STRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.sqltypes","name":"SQLGUID","package":"druntime","parentType":"","signature":"SQLGUID = GUID","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQLGUID"},{"doc":"","kind":"variable","module":"core.sys.windows.sqltypes","name":"SQL_MAX_NUMERIC_LEN","package":"druntime","parentType":"","signature":"SQL_MAX_NUMERIC_LEN","url":"/ddoc/druntime/core/sys/windows/sqltypes.html#SQL_MAX_NUMERIC_LEN"},{"doc":"$(RED Warning: This binding is out-of-date and does not allow use on non-Windows platforms. Use `etc.c.odbc.sqlucode` instead.)","kind":"module","module":"core.sys.windows.sqlucode","name":"core.sys.windows.sqlucode","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sqlucode.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLBrowseConnectA","package":"druntime","parentType":"","signature":"SQLRETURN SQLBrowseConnectA(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLBrowseConnectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLBrowseConnectW","package":"druntime","parentType":"","signature":"SQLRETURN SQLBrowseConnectW(SQLHDBC,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLBrowseConnectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColAttributeA","package":"druntime","parentType":"","signature":"SQLRETURN SQLColAttributeA(SQLHSTMT,  SQLSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColAttributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColAttributeW","package":"druntime","parentType":"","signature":"SQLRETURN SQLColAttributeW(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColAttributeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColAttributesA","package":"druntime","parentType":"","signature":"SQLRETURN SQLColAttributesA(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColAttributesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColAttributesW","package":"druntime","parentType":"","signature":"SQLRETURN SQLColAttributesW(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColAttributesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColumnPrivilegesA","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesA(  SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColumnPrivilegesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColumnPrivilegesW","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesW(  SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColumnPrivilegesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColumnsA","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumnsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColumnsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLColumnsW","package":"druntime","parentType":"","signature":"SQLRETURN SQLColumnsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLColumnsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLConnectA","package":"druntime","parentType":"","signature":"SQLRETURN SQLConnectA(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLConnectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLConnectW","package":"druntime","parentType":"","signature":"SQLRETURN SQLConnectW(SQLHDBC,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLConnectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDataSourcesA","package":"druntime","parentType":"","signature":"SQLRETURN SQLDataSourcesA(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDataSourcesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDataSourcesW","package":"druntime","parentType":"","signature":"SQLRETURN SQLDataSourcesW(SQLHENV,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDataSourcesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDescribeColA","package":"druntime","parentType":"","signature":"SQLRETURN SQLDescribeColA(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDescribeColA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDescribeColW","package":"druntime","parentType":"","signature":"SQLRETURN SQLDescribeColW(SQLHSTMT,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDescribeColW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDriverConnectA","package":"druntime","parentType":"","signature":"SQLRETURN SQLDriverConnectA(SQLHDBC,  SQLHWND,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDriverConnectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDriverConnectW","package":"druntime","parentType":"","signature":"SQLRETURN SQLDriverConnectW(SQLHDBC,  SQLHWND,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDriverConnectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDriversA","package":"druntime","parentType":"","signature":"SQLRETURN SQLDriversA(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDriversA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLDriversW","package":"druntime","parentType":"","signature":"SQLRETURN SQLDriversW(SQLHENV,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLDriversW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLErrorA","package":"druntime","parentType":"","signature":"SQLRETURN SQLErrorA(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLCHAR *,  SQLINTEGER *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLErrorW","package":"druntime","parentType":"","signature":"SQLRETURN SQLErrorW(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLWCHAR *,  SQLINTEGER *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLExecDirectA","package":"druntime","parentType":"","signature":"SQLRETURN SQLExecDirectA(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLExecDirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLExecDirectW","package":"druntime","parentType":"","signature":"SQLRETURN SQLExecDirectW(SQLHSTMT,  SQLWCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLExecDirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLForeignKeysA","package":"druntime","parentType":"","signature":"SQLRETURN SQLForeignKeysA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLForeignKeysA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLForeignKeysW","package":"druntime","parentType":"","signature":"SQLRETURN SQLForeignKeysW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLForeignKeysW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetConnectAttrA","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetConnectAttrA(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetConnectAttrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetConnectAttrW","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetConnectAttrW(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetConnectAttrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetConnectOptionA","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetConnectOptionA(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetConnectOptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetConnectOptionW","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetConnectOptionW(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetConnectOptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetCursorNameA","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetCursorNameA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetCursorNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetCursorNameW","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetCursorNameW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetCursorNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetInfoA","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetInfoA(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetInfoW","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetInfoW(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetTypeInfoA","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetTypeInfoA(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetTypeInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLGetTypeInfoW","package":"druntime","parentType":"","signature":"SQLRETURN SQLGetTypeInfoW(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLGetTypeInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLNativeSqlA","package":"druntime","parentType":"","signature":"SQLRETURN SQLNativeSqlA(SQLHDBC,  SQLCHAR *,  SQLINTEGER,  SQLCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLNativeSqlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLNativeSqlW","package":"druntime","parentType":"","signature":"SQLRETURN SQLNativeSqlW(SQLHDBC,  SQLWCHAR *,  SQLINTEGER,  SQLWCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLNativeSqlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLPrepareA","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrepareA(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLPrepareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLPrepareW","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrepareW(SQLHSTMT,  SQLWCHAR *,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLPrepareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLPrimaryKeysA","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrimaryKeysA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLPrimaryKeysA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLPrimaryKeysW","package":"druntime","parentType":"","signature":"SQLRETURN SQLPrimaryKeysW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLPrimaryKeysW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLProcedureColumnsA","package":"druntime","parentType":"","signature":"SQLRETURN SQLProcedureColumnsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLProcedureColumnsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLProcedureColumnsW","package":"druntime","parentType":"","signature":"SQLRETURN SQLProcedureColumnsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLProcedureColumnsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLProceduresA","package":"druntime","parentType":"","signature":"SQLRETURN SQLProceduresA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLProceduresA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLProceduresW","package":"druntime","parentType":"","signature":"SQLRETURN SQLProceduresW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLProceduresW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetConnectAttrA","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetConnectAttrA(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetConnectAttrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetConnectAttrW","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetConnectAttrW(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetConnectAttrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetConnectOptionA","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetConnectOptionA(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetConnectOptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetConnectOptionW","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetConnectOptionW(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetConnectOptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetCursorNameA","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetCursorNameA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetCursorNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSetCursorNameW","package":"druntime","parentType":"","signature":"SQLRETURN SQLSetCursorNameW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSetCursorNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSpecialColumnsA","package":"druntime","parentType":"","signature":"SQLRETURN SQLSpecialColumnsA(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSpecialColumnsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLSpecialColumnsW","package":"druntime","parentType":"","signature":"SQLRETURN SQLSpecialColumnsW(SQLHSTMT,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLSpecialColumnsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLStatisticsA","package":"druntime","parentType":"","signature":"SQLRETURN SQLStatisticsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLStatisticsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLStatisticsW","package":"druntime","parentType":"","signature":"SQLRETURN SQLStatisticsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLStatisticsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLTablePrivilegesA","package":"druntime","parentType":"","signature":"SQLRETURN SQLTablePrivilegesA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLTablePrivilegesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLTablePrivilegesW","package":"druntime","parentType":"","signature":"SQLRETURN SQLTablePrivilegesW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLTablePrivilegesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLTablesA","package":"druntime","parentType":"","signature":"SQLRETURN SQLTablesA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLTablesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sqlucode","name":"SQLTablesW","package":"druntime","parentType":"","signature":"SQLRETURN SQLTablesW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/druntime/core/sys/windows/sqlucode/SQLTablesW.html"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlucode","name":"SQL_WCHAR","package":"druntime","parentType":"","signature":"SQL_WCHAR","url":"/ddoc/druntime/core/sys/windows/sqlucode.html#SQL_WCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlucode","name":"SQL_WVARCHAR","package":"druntime","parentType":"","signature":"SQL_WVARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlucode.html#SQL_WVARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlucode","name":"SQL_WLONGVARCHAR","package":"druntime","parentType":"","signature":"SQL_WLONGVARCHAR","url":"/ddoc/druntime/core/sys/windows/sqlucode.html#SQL_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlucode","name":"SQL_C_WCHAR","package":"druntime","parentType":"","signature":"SQL_C_WCHAR","url":"/ddoc/druntime/core/sys/windows/sqlucode.html#SQL_C_WCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.sqlucode","name":"SQL_SQLSTATE_SIZEW","package":"druntime","parentType":"","signature":"SQL_SQLSTATE_SIZEW","url":"/ddoc/druntime/core/sys/windows/sqlucode.html#SQL_SQLSTATE_SIZEW"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.sspi","name":"core.sys.windows.sspi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/sspi.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"FreeCredentialsHandle","package":"druntime","parentType":"","signature":"SECURITY_STATUS FreeCredentialsHandle(PCredHandle)","url":"/ddoc/druntime/core/sys/windows/sspi/FreeCredentialsHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"EnumerateSecurityPackagesA","package":"druntime","parentType":"","signature":"SECURITY_STATUS EnumerateSecurityPackagesA(PULONG, PSecPkgInfoA *)","url":"/ddoc/druntime/core/sys/windows/sspi/EnumerateSecurityPackagesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"EnumerateSecurityPackagesW","package":"druntime","parentType":"","signature":"SECURITY_STATUS EnumerateSecurityPackagesW(PULONG, PSecPkgInfoW *)","url":"/ddoc/druntime/core/sys/windows/sspi/EnumerateSecurityPackagesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"AcquireCredentialsHandleA","package":"druntime","parentType":"","signature":"SECURITY_STATUS AcquireCredentialsHandleA(SEC_CHAR *, SEC_CHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID, PCredHandle, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi/AcquireCredentialsHandleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"AcquireCredentialsHandleW","package":"druntime","parentType":"","signature":"SECURITY_STATUS AcquireCredentialsHandleW(SEC_WCHAR *, SEC_WCHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID, PCredHandle, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi/AcquireCredentialsHandleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"AcceptSecurityContext","package":"druntime","parentType":"","signature":"SECURITY_STATUS AcceptSecurityContext(PCredHandle, PCtxtHandle, PSecBufferDesc, ULONG, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi/AcceptSecurityContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"InitializeSecurityContextA","package":"druntime","parentType":"","signature":"SECURITY_STATUS InitializeSecurityContextA(PCredHandle, PCtxtHandle, SEC_CHAR *, ULONG, ULONG, ULONG, PSecBufferDesc, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi/InitializeSecurityContextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"InitializeSecurityContextW","package":"druntime","parentType":"","signature":"SECURITY_STATUS InitializeSecurityContextW(PCredHandle, PCtxtHandle, SEC_WCHAR *, ULONG, ULONG, ULONG, PSecBufferDesc, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi/InitializeSecurityContextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"FreeContextBuffer","package":"druntime","parentType":"","signature":"SECURITY_STATUS FreeContextBuffer(PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi/FreeContextBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QueryContextAttributesA","package":"druntime","parentType":"","signature":"SECURITY_STATUS QueryContextAttributesA(PCtxtHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi/QueryContextAttributesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QueryContextAttributesW","package":"druntime","parentType":"","signature":"SECURITY_STATUS QueryContextAttributesW(PCtxtHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi/QueryContextAttributesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QueryCredentialsAttributesA","package":"druntime","parentType":"","signature":"SECURITY_STATUS QueryCredentialsAttributesA(PCredHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi/QueryCredentialsAttributesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QueryCredentialsAttributesW","package":"druntime","parentType":"","signature":"SECURITY_STATUS QueryCredentialsAttributesW(PCredHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi/QueryCredentialsAttributesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"DecryptMessage","package":"druntime","parentType":"","signature":"SECURITY_STATUS DecryptMessage(PCtxtHandle, PSecBufferDesc, ULONG, PULONG)","url":"/ddoc/druntime/core/sys/windows/sspi/DecryptMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"EncryptMessage","package":"druntime","parentType":"","signature":"SECURITY_STATUS EncryptMessage(PCtxtHandle, ULONG, PSecBufferDesc, ULONG)","url":"/ddoc/druntime/core/sys/windows/sspi/EncryptMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"DeleteSecurityContext","package":"druntime","parentType":"","signature":"SECURITY_STATUS DeleteSecurityContext(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi/DeleteSecurityContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"CompleteAuthToken","package":"druntime","parentType":"","signature":"SECURITY_STATUS CompleteAuthToken(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi/CompleteAuthToken.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"ApplyControlTokenA","package":"druntime","parentType":"","signature":"SECURITY_STATUS ApplyControlTokenA(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi/ApplyControlTokenA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"ApplyControlTokenW","package":"druntime","parentType":"","signature":"SECURITY_STATUS ApplyControlTokenW(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi/ApplyControlTokenW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"ImpersonateSecurityContext","package":"druntime","parentType":"","signature":"SECURITY_STATUS ImpersonateSecurityContext(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi/ImpersonateSecurityContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"RevertSecurityContext","package":"druntime","parentType":"","signature":"SECURITY_STATUS RevertSecurityContext(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi/RevertSecurityContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"MakeSignature","package":"druntime","parentType":"","signature":"SECURITY_STATUS MakeSignature(PCtxtHandle, ULONG, PSecBufferDesc, ULONG)","url":"/ddoc/druntime/core/sys/windows/sspi/MakeSignature.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"VerifySignature","package":"druntime","parentType":"","signature":"SECURITY_STATUS VerifySignature(PCtxtHandle, PSecBufferDesc, ULONG, PULONG)","url":"/ddoc/druntime/core/sys/windows/sspi/VerifySignature.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QuerySecurityPackageInfoA","package":"druntime","parentType":"","signature":"SECURITY_STATUS QuerySecurityPackageInfoA(SEC_CHAR *, PSecPkgInfoA *)","url":"/ddoc/druntime/core/sys/windows/sspi/QuerySecurityPackageInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"QuerySecurityPackageInfoW","package":"druntime","parentType":"","signature":"SECURITY_STATUS QuerySecurityPackageInfoW(SEC_WCHAR *, PSecPkgInfoW *)","url":"/ddoc/druntime/core/sys/windows/sspi/QuerySecurityPackageInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"InitSecurityInterfaceA","package":"druntime","parentType":"","signature":"PSecurityFunctionTableA InitSecurityInterfaceA()","url":"/ddoc/druntime/core/sys/windows/sspi/InitSecurityInterfaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.sspi","name":"InitSecurityInterfaceW","package":"druntime","parentType":"","signature":"PSecurityFunctionTableW InitSecurityInterfaceW()","url":"/ddoc/druntime/core/sys/windows/sspi/InitSecurityInterfaceW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"SECURITY_STRING","package":"druntime","parentType":"","signature":"SECURITY_STRING = UNICODE_STRING","url":"/ddoc/druntime/core/sys/windows/sspi.html#SECURITY_STRING"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSECURITY_STRING","package":"druntime","parentType":"","signature":"PSECURITY_STRING = UNICODE_STRING *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSECURITY_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecHandle","package":"druntime","parentType":"","signature":"SecHandle","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecHandle"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecHandle","package":"druntime","parentType":"","signature":"PSecHandle = SecHandle *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecHandle"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecBuffer","package":"druntime","parentType":"","signature":"SecBuffer","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecBuffer"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecBuffer","package":"druntime","parentType":"","signature":"PSecBuffer = SecBuffer *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecBuffer"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"CredHandle","package":"druntime","parentType":"","signature":"CredHandle = SecHandle","url":"/ddoc/druntime/core/sys/windows/sspi.html#CredHandle"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PCredHandle","package":"druntime","parentType":"","signature":"PCredHandle = PSecHandle","url":"/ddoc/druntime/core/sys/windows/sspi.html#PCredHandle"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"CtxtHandle","package":"druntime","parentType":"","signature":"CtxtHandle = SecHandle","url":"/ddoc/druntime/core/sys/windows/sspi.html#CtxtHandle"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PCtxtHandle","package":"druntime","parentType":"","signature":"PCtxtHandle = PSecHandle","url":"/ddoc/druntime/core/sys/windows/sspi.html#PCtxtHandle"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SECURITY_INTEGER","package":"druntime","parentType":"","signature":"SECURITY_INTEGER","url":"/ddoc/druntime/core/sys/windows/sspi.html#SECURITY_INTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"TimeStamp","package":"druntime","parentType":"","signature":"TimeStamp = SECURITY_INTEGER","url":"/ddoc/druntime/core/sys/windows/sspi.html#TimeStamp"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PTimeStamp","package":"druntime","parentType":"","signature":"PTimeStamp = SECURITY_INTEGER *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PTimeStamp"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecBufferDesc","package":"druntime","parentType":"","signature":"SecBufferDesc","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecBufferDesc"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecBufferDesc","package":"druntime","parentType":"","signature":"PSecBufferDesc = SecBufferDesc *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecBufferDesc"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_StreamSizes","package":"druntime","parentType":"","signature":"SecPkgContext_StreamSizes","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_StreamSizes"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_StreamSizes","package":"druntime","parentType":"","signature":"PSecPkgContext_StreamSizes = SecPkgContext_StreamSizes *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_StreamSizes"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_Sizes","package":"druntime","parentType":"","signature":"SecPkgContext_Sizes","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_Sizes"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_Sizes","package":"druntime","parentType":"","signature":"PSecPkgContext_Sizes = SecPkgContext_Sizes *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_Sizes"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_AuthorityW","package":"druntime","parentType":"","signature":"SecPkgContext_AuthorityW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_AuthorityW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_AuthorityW","package":"druntime","parentType":"","signature":"PSecPkgContext_AuthorityW = SecPkgContext_AuthorityW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_AuthorityW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_AuthorityA","package":"druntime","parentType":"","signature":"SecPkgContext_AuthorityA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_AuthorityA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_AuthorityA","package":"druntime","parentType":"","signature":"PSecPkgContext_AuthorityA = SecPkgContext_AuthorityA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_AuthorityA"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_KeyInfoW","package":"druntime","parentType":"","signature":"SecPkgContext_KeyInfoW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_KeyInfoW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_KeyInfoW","package":"druntime","parentType":"","signature":"PSecPkgContext_KeyInfoW = SecPkgContext_KeyInfoW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_KeyInfoW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_KeyInfoA","package":"druntime","parentType":"","signature":"SecPkgContext_KeyInfoA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_KeyInfoA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_KeyInfoA","package":"druntime","parentType":"","signature":"PSecPkgContext_KeyInfoA = SecPkgContext_KeyInfoA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_KeyInfoA"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_LifeSpan","package":"druntime","parentType":"","signature":"SecPkgContext_LifeSpan","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_LifeSpan"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_LifeSpan","package":"druntime","parentType":"","signature":"PSecPkgContext_LifeSpan = SecPkgContext_LifeSpan *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_LifeSpan"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_NamesW","package":"druntime","parentType":"","signature":"SecPkgContext_NamesW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_NamesW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_NamesW","package":"druntime","parentType":"","signature":"PSecPkgContext_NamesW = SecPkgContext_NamesW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_NamesW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_NamesA","package":"druntime","parentType":"","signature":"SecPkgContext_NamesA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_NamesA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_NamesA","package":"druntime","parentType":"","signature":"PSecPkgContext_NamesA = SecPkgContext_NamesA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_NamesA"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgInfoW","package":"druntime","parentType":"","signature":"SecPkgInfoW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgInfoW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgInfoW","package":"druntime","parentType":"","signature":"PSecPkgInfoW = SecPkgInfoW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgInfoW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgInfoA","package":"druntime","parentType":"","signature":"SecPkgInfoA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgInfoA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgInfoA","package":"druntime","parentType":"","signature":"PSecPkgInfoA = SecPkgInfoA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgInfoA"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgContext_PackageInfo","package":"druntime","parentType":"","signature":"SecPkgContext_PackageInfo","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgContext_PackageInfo"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgContext_PackageInfo","package":"druntime","parentType":"","signature":"PSecPkgContext_PackageInfo = SecPkgContext_PackageInfo *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgContext_PackageInfo"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgCredentials_NamesW","package":"druntime","parentType":"","signature":"SecPkgCredentials_NamesW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgCredentials_NamesW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgCredentials_NamesW","package":"druntime","parentType":"","signature":"PSecPkgCredentials_NamesW = SecPkgCredentials_NamesW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgCredentials_NamesW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecPkgCredentials_NamesA","package":"druntime","parentType":"","signature":"SecPkgCredentials_NamesA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecPkgCredentials_NamesA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecPkgCredentials_NamesA","package":"druntime","parentType":"","signature":"PSecPkgCredentials_NamesA = SecPkgCredentials_NamesA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecPkgCredentials_NamesA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"SEC_GET_KEY_FN","package":"druntime","parentType":"","signature":"SEC_GET_KEY_FN = void  function()","url":"/ddoc/druntime/core/sys/windows/sspi.html#SEC_GET_KEY_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ENUMERATE_SECURITY_PACKAGES_FN_W","package":"druntime","parentType":"","signature":"ENUMERATE_SECURITY_PACKAGES_FN_W = SECURITY_STATUS function(PULONG, PSecPkgInfoW *)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ENUMERATE_SECURITY_PACKAGES_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ENUMERATE_SECURITY_PACKAGES_FN_A","package":"druntime","parentType":"","signature":"ENUMERATE_SECURITY_PACKAGES_FN_A = SECURITY_STATUS function(PULONG, PSecPkgInfoA *)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ENUMERATE_SECURITY_PACKAGES_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W","package":"druntime","parentType":"","signature":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W = SECURITY_STATUS function(PCredHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_CREDENTIALS_ATTRIBUTES_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A","package":"druntime","parentType":"","signature":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A = SECURITY_STATUS function(PCredHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_CREDENTIALS_ATTRIBUTES_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ACQUIRE_CREDENTIALS_HANDLE_FN_W","package":"druntime","parentType":"","signature":"ACQUIRE_CREDENTIALS_HANDLE_FN_W = SECURITY_STATUS function(SEC_WCHAR *, SEC_WCHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID, PCredHandle, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ACQUIRE_CREDENTIALS_HANDLE_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ACQUIRE_CREDENTIALS_HANDLE_FN_A","package":"druntime","parentType":"","signature":"ACQUIRE_CREDENTIALS_HANDLE_FN_A = SECURITY_STATUS function(SEC_CHAR *, SEC_CHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID, PCredHandle, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ACQUIRE_CREDENTIALS_HANDLE_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"FREE_CREDENTIALS_HANDLE_FN","package":"druntime","parentType":"","signature":"FREE_CREDENTIALS_HANDLE_FN = SECURITY_STATUS function(PCredHandle)","url":"/ddoc/druntime/core/sys/windows/sspi.html#FREE_CREDENTIALS_HANDLE_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"INITIALIZE_SECURITY_CONTEXT_FN_W","package":"druntime","parentType":"","signature":"INITIALIZE_SECURITY_CONTEXT_FN_W = SECURITY_STATUS function(PCredHandle, PCtxtHandle, SEC_WCHAR *, ULONG, ULONG, ULONG, PSecBufferDesc, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi.html#INITIALIZE_SECURITY_CONTEXT_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"INITIALIZE_SECURITY_CONTEXT_FN_A","package":"druntime","parentType":"","signature":"INITIALIZE_SECURITY_CONTEXT_FN_A = SECURITY_STATUS function(PCredHandle, PCtxtHandle, SEC_CHAR *, ULONG, ULONG, ULONG, PSecBufferDesc, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi.html#INITIALIZE_SECURITY_CONTEXT_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ACCEPT_SECURITY_CONTEXT_FN","package":"druntime","parentType":"","signature":"ACCEPT_SECURITY_CONTEXT_FN = SECURITY_STATUS function(PCredHandle, PCtxtHandle, PSecBufferDesc, ULONG, ULONG, PCtxtHandle, PSecBufferDesc, PULONG, PTimeStamp)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ACCEPT_SECURITY_CONTEXT_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"COMPLETE_AUTH_TOKEN_FN","package":"druntime","parentType":"","signature":"COMPLETE_AUTH_TOKEN_FN = SECURITY_STATUS function(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi.html#COMPLETE_AUTH_TOKEN_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"DELETE_SECURITY_CONTEXT_FN","package":"druntime","parentType":"","signature":"DELETE_SECURITY_CONTEXT_FN = SECURITY_STATUS function(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi.html#DELETE_SECURITY_CONTEXT_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"APPLY_CONTROL_TOKEN_FN_W","package":"druntime","parentType":"","signature":"APPLY_CONTROL_TOKEN_FN_W = SECURITY_STATUS function(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi.html#APPLY_CONTROL_TOKEN_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"APPLY_CONTROL_TOKEN_FN_A","package":"druntime","parentType":"","signature":"APPLY_CONTROL_TOKEN_FN_A = SECURITY_STATUS function(PCtxtHandle, PSecBufferDesc)","url":"/ddoc/druntime/core/sys/windows/sspi.html#APPLY_CONTROL_TOKEN_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_CONTEXT_ATTRIBUTES_FN_A","package":"druntime","parentType":"","signature":"QUERY_CONTEXT_ATTRIBUTES_FN_A = SECURITY_STATUS function(PCtxtHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_CONTEXT_ATTRIBUTES_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_CONTEXT_ATTRIBUTES_FN_W","package":"druntime","parentType":"","signature":"QUERY_CONTEXT_ATTRIBUTES_FN_W = SECURITY_STATUS function(PCtxtHandle, ULONG, PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_CONTEXT_ATTRIBUTES_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"IMPERSONATE_SECURITY_CONTEXT_FN","package":"druntime","parentType":"","signature":"IMPERSONATE_SECURITY_CONTEXT_FN = SECURITY_STATUS function(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi.html#IMPERSONATE_SECURITY_CONTEXT_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"REVERT_SECURITY_CONTEXT_FN","package":"druntime","parentType":"","signature":"REVERT_SECURITY_CONTEXT_FN = SECURITY_STATUS function(PCtxtHandle)","url":"/ddoc/druntime/core/sys/windows/sspi.html#REVERT_SECURITY_CONTEXT_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"MAKE_SIGNATURE_FN","package":"druntime","parentType":"","signature":"MAKE_SIGNATURE_FN = SECURITY_STATUS function(PCtxtHandle, ULONG, PSecBufferDesc, ULONG)","url":"/ddoc/druntime/core/sys/windows/sspi.html#MAKE_SIGNATURE_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"VERIFY_SIGNATURE_FN","package":"druntime","parentType":"","signature":"VERIFY_SIGNATURE_FN = SECURITY_STATUS function(PCtxtHandle, PSecBufferDesc, ULONG, PULONG)","url":"/ddoc/druntime/core/sys/windows/sspi.html#VERIFY_SIGNATURE_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"FREE_CONTEXT_BUFFER_FN","package":"druntime","parentType":"","signature":"FREE_CONTEXT_BUFFER_FN = SECURITY_STATUS function(PVOID)","url":"/ddoc/druntime/core/sys/windows/sspi.html#FREE_CONTEXT_BUFFER_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_SECURITY_PACKAGE_INFO_FN_A","package":"druntime","parentType":"","signature":"QUERY_SECURITY_PACKAGE_INFO_FN_A = SECURITY_STATUS function(SEC_CHAR *, PSecPkgInfoA *)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_SECURITY_PACKAGE_INFO_FN_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_SECURITY_CONTEXT_TOKEN_FN","package":"druntime","parentType":"","signature":"QUERY_SECURITY_CONTEXT_TOKEN_FN = SECURITY_STATUS function(PCtxtHandle, HANDLE *)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_SECURITY_CONTEXT_TOKEN_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"QUERY_SECURITY_PACKAGE_INFO_FN_W","package":"druntime","parentType":"","signature":"QUERY_SECURITY_PACKAGE_INFO_FN_W = SECURITY_STATUS function(SEC_WCHAR *, PSecPkgInfoW *)","url":"/ddoc/druntime/core/sys/windows/sspi.html#QUERY_SECURITY_PACKAGE_INFO_FN_W"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"ENCRYPT_MESSAGE_FN","package":"druntime","parentType":"","signature":"ENCRYPT_MESSAGE_FN = SECURITY_STATUS function(PCtxtHandle, ULONG, PSecBufferDesc, ULONG)","url":"/ddoc/druntime/core/sys/windows/sspi.html#ENCRYPT_MESSAGE_FN"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"DECRYPT_MESSAGE_FN","package":"druntime","parentType":"","signature":"DECRYPT_MESSAGE_FN = SECURITY_STATUS function(PCtxtHandle, PSecBufferDesc, ULONG, PULONG)","url":"/ddoc/druntime/core/sys/windows/sspi.html#DECRYPT_MESSAGE_FN"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecurityFunctionTableW","package":"druntime","parentType":"","signature":"SecurityFunctionTableW","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecurityFunctionTableW"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecurityFunctionTableW","package":"druntime","parentType":"","signature":"PSecurityFunctionTableW = SecurityFunctionTableW *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecurityFunctionTableW"},{"doc":"","kind":"struct","module":"core.sys.windows.sspi","name":"SecurityFunctionTableA","package":"druntime","parentType":"","signature":"SecurityFunctionTableA","url":"/ddoc/druntime/core/sys/windows/sspi.html#SecurityFunctionTableA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"PSecurityFunctionTableA","package":"druntime","parentType":"","signature":"PSecurityFunctionTableA = SecurityFunctionTableA *","url":"/ddoc/druntime/core/sys/windows/sspi.html#PSecurityFunctionTableA"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"INIT_SECURITY_INTERFACE_A","package":"druntime","parentType":"","signature":"INIT_SECURITY_INTERFACE_A = PSecurityFunctionTableA function()","url":"/ddoc/druntime/core/sys/windows/sspi.html#INIT_SECURITY_INTERFACE_A"},{"doc":"","kind":"alias","module":"core.sys.windows.sspi","name":"INIT_SECURITY_INTERFACE_W","package":"druntime","parentType":"","signature":"INIT_SECURITY_INTERFACE_W = PSecurityFunctionTableW function()","url":"/ddoc/druntime/core/sys/windows/sspi.html#INIT_SECURITY_INTERFACE_W"},{"doc":"","kind":"variable","module":"core.sys.windows.sspi","name":"UNISP_NAME_A","package":"druntime","parentType":"","signature":"UNISP_NAME_A","url":"/ddoc/druntime/core/sys/windows/sspi.html#UNISP_NAME_A"},{"doc":"","kind":"variable","module":"core.sys.windows.sspi","name":"UNISP_NAME_W","package":"druntime","parentType":"","signature":"UNISP_NAME_W","url":"/ddoc/druntime/core/sys/windows/sspi.html#UNISP_NAME_W"},{"doc":"","kind":"variable","module":"core.sys.windows.sspi","name":"SECBUFFER_VERSION","package":"druntime","parentType":"","signature":"SECBUFFER_VERSION","url":"/ddoc/druntime/core/sys/windows/sspi.html#SECBUFFER_VERSION"},{"doc":"...","kind":"module","module":"core.sys.windows.stacktrace","name":"core.sys.windows.stacktrace","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/stacktrace.html"},{"doc":"","kind":"function","module":"core.sys.windows.stacktrace","name":"RtlCaptureContext","package":"druntime","parentType":"","signature":"void RtlCaptureContext(CONTEXT *  ContextRecord)","url":"/ddoc/druntime/core/sys/windows/stacktrace/RtlCaptureContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.stacktrace","name":"GetEnvironmentVariableA","package":"druntime","parentType":"","signature":"DWORD GetEnvironmentVariableA(LPCSTR lpName,  LPSTR pBuffer,  DWORD nSize)","url":"/ddoc/druntime/core/sys/windows/stacktrace/GetEnvironmentVariableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.stacktrace","name":"generateSearchPath","package":"druntime","parentType":"","signature":"string generateSearchPath()","url":"/ddoc/druntime/core/sys/windows/stacktrace/generateSearchPath.html"},{"doc":"","kind":"alias","module":"core.sys.windows.stacktrace","name":"RtlCaptureStackBackTraceFunc","package":"druntime","parentType":"","signature":"RtlCaptureStackBackTraceFunc = USHORT function(ULONG FramesToSkip,  ULONG FramesToCapture,  PVOID * BackTrace,  PULONG BackTraceHash) @nogc","url":"/ddoc/druntime/core/sys/windows/stacktrace.html#RtlCaptureStackBackTraceFunc"},{"doc":"","kind":"class","module":"core.sys.windows.stacktrace","name":"StackTrace","package":"druntime","parentType":"","signature":"StackTrace : Throwable.TraceInfo","url":"/ddoc/druntime/core/sys/windows/stacktrace.html#StackTrace"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"opApply","package":"druntime","parentType":"StackTrace","signature":"int opApply(  scope  int  delegate(ref  const(char[]))  dg )","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.opApply.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"opApply","package":"druntime","parentType":"StackTrace","signature":"int opApply(  scope  int  delegate(ref  size_t,  ref  const(char[]))  dg )","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.opApply.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"toString","package":"druntime","parentType":"StackTrace","signature":"string toString()","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.toString.html"},{"doc":"Receive a stack trace in the form of an address list. One form accepts an allocated buffer, the other form automatically allocates the buffer.","kind":"method","module":"core.sys.windows.stacktrace","name":"trace","package":"druntime","parentType":"StackTrace","signature":"ulong[] trace(size_t skip =  0,  CONTEXT *  context =  null)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.trace.html"},{"doc":"ditto","kind":"method","module":"core.sys.windows.stacktrace","name":"trace","package":"druntime","parentType":"StackTrace","signature":"ulong[] trace(ulong[]  buffer,  size_t skip =  0,  CONTEXT *  context =  null)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.trace.html"},{"doc":"Resolve a stack trace. Params: addresses = A list of addresses to resolve. Returns: An array of strings with the results.","kind":"method","module":"core.sys.windows.stacktrace","name":"resolve","package":"druntime","parentType":"StackTrace","signature":"char[][] resolve(const(ulong)[]  addresses)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.resolve.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"traceNoSync","package":"druntime","parentType":"StackTrace","signature":"ulong[] traceNoSync(ulong[]  buffer,  size_t skip,  CONTEXT *  context)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.traceNoSync.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"resolveNoSync","package":"druntime","parentType":"StackTrace","signature":"char[][] resolveNoSync(const(ulong)[]  addresses)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.resolveNoSync.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"formatStackFrame","package":"druntime","parentType":"StackTrace","signature":"char[] formatStackFrame(void *  pc)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.formatStackFrame.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"formatStackFrame","package":"druntime","parentType":"StackTrace","signature":"char[] formatStackFrame(void *  pc,  char *  symName)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.formatStackFrame.html"},{"doc":"","kind":"method","module":"core.sys.windows.stacktrace","name":"formatStackFrame","package":"druntime","parentType":"StackTrace","signature":"char[] formatStackFrame(void *  pc,  char *  symName,\n                                    const  scope  char *  fileName,  uint  lineNum)","url":"/ddoc/druntime/core/sys/windows/stacktrace/StackTrace.formatStackFrame.html"},{"doc":"","kind":"variable","module":"core.sys.windows.stacktrace","name":"RtlCaptureStackBackTrace","package":"druntime","parentType":"","signature":"RtlCaptureStackBackTraceFunc RtlCaptureStackBackTrace","url":"/ddoc/druntime/core/sys/windows/stacktrace.html#RtlCaptureStackBackTrace"},{"doc":"","kind":"variable","module":"core.sys.windows.stacktrace","name":"mutex","package":"druntime","parentType":"","signature":"CRITICAL_SECTION mutex","url":"/ddoc/druntime/core/sys/windows/stacktrace.html#mutex"},{"doc":"","kind":"variable","module":"core.sys.windows.stacktrace","name":"initialized","package":"druntime","parentType":"","signature":"bool initialized","url":"/ddoc/druntime/core/sys/windows/stacktrace.html#initialized"},{"doc":"$(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) Author: Walter Bright","kind":"module","module":"core.sys.windows.stat","name":"core.sys.windows.stat","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/stat.html"},{"doc":"","kind":"function","module":"core.sys.windows.stat","name":"S_ISREG","package":"druntime","parentType":"","signature":"int S_ISREG()(int  m)","url":"/ddoc/druntime/core/sys/windows/stat/S_ISREG.html"},{"doc":"","kind":"function","module":"core.sys.windows.stat","name":"S_ISBLK","package":"druntime","parentType":"","signature":"int S_ISBLK()(int  m)","url":"/ddoc/druntime/core/sys/windows/stat/S_ISBLK.html"},{"doc":"","kind":"function","module":"core.sys.windows.stat","name":"S_ISNAM","package":"druntime","parentType":"","signature":"int S_ISNAM()(int  m)","url":"/ddoc/druntime/core/sys/windows/stat/S_ISNAM.html"},{"doc":"","kind":"function","module":"core.sys.windows.stat","name":"S_ISDIR","package":"druntime","parentType":"","signature":"int S_ISDIR()(int  m)","url":"/ddoc/druntime/core/sys/windows/stat/S_ISDIR.html"},{"doc":"","kind":"function","module":"core.sys.windows.stat","name":"S_ISCHR","package":"druntime","parentType":"","signature":"int S_ISCHR()(int  m)","url":"/ddoc/druntime/core/sys/windows/stat/S_ISCHR.html"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFMT","package":"druntime","parentType":"","signature":"S_IFMT","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFMT"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFDIR","package":"druntime","parentType":"","signature":"S_IFDIR","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFCHR","package":"druntime","parentType":"","signature":"S_IFCHR","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFCHR"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFIFO","package":"druntime","parentType":"","signature":"S_IFIFO","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFIFO"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFREG","package":"druntime","parentType":"","signature":"S_IFREG","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFREG"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IREAD","package":"druntime","parentType":"","signature":"S_IREAD","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IWRITE","package":"druntime","parentType":"","signature":"S_IWRITE","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IEXEC","package":"druntime","parentType":"","signature":"S_IEXEC","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IEXEC"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFBLK","package":"druntime","parentType":"","signature":"S_IFBLK","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFBLK"},{"doc":"","kind":"variable","module":"core.sys.windows.stat","name":"S_IFNAM","package":"druntime","parentType":"","signature":"S_IFNAM","url":"/ddoc/druntime/core/sys/windows/stat.html#S_IFNAM"},{"doc":"D header file for Windows malloc.h.","kind":"module","module":"core.sys.windows.stdc.malloc","name":"core.sys.windows.stdc.malloc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/stdc/malloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_recalloc","package":"druntime","parentType":"","signature":"void * _recalloc(void *,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_recalloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_free","package":"druntime","parentType":"","signature":"void _aligned_free(void *)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_free.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_malloc","package":"druntime","parentType":"","signature":"void * _aligned_malloc(size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_malloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_offset_malloc","package":"druntime","parentType":"","signature":"void * _aligned_offset_malloc(size_t,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_offset_malloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_realloc","package":"druntime","parentType":"","signature":"void * _aligned_realloc(void *,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_realloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_recalloc","package":"druntime","parentType":"","signature":"void * _aligned_recalloc(void *,  size_t,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_recalloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_offset_realloc","package":"druntime","parentType":"","signature":"void * _aligned_offset_realloc(void *,  size_t,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_offset_realloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.malloc","name":"_aligned_offset_recalloc","package":"druntime","parentType":"","signature":"void * _aligned_offset_recalloc(void *,  size_t,  size_t,  size_t,  size_t)","url":"/ddoc/druntime/core/sys/windows/stdc/malloc/_aligned_offset_recalloc.html"},{"doc":"D header file for C99.","kind":"module","module":"core.sys.windows.stdc.time","name":"core.sys.windows.stdc.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/stdc/time.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.time","name":"clock","package":"druntime","parentType":"","signature":"clock_t clock()","url":"/ddoc/druntime/core/sys/windows/stdc/time/clock.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.time","name":"tzset","package":"druntime","parentType":"","signature":"void tzset()","url":"/ddoc/druntime/core/sys/windows/stdc/time/tzset.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.time","name":"_tzset","package":"druntime","parentType":"","signature":"void _tzset()","url":"/ddoc/druntime/core/sys/windows/stdc/time/_tzset.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.time","name":"_strdate","package":"druntime","parentType":"","signature":"char * _strdate(return  scope  char *  s)","url":"/ddoc/druntime/core/sys/windows/stdc/time/_strdate.html"},{"doc":"","kind":"function","module":"core.sys.windows.stdc.time","name":"_strtime","package":"druntime","parentType":"","signature":"char * _strtime(return  scope  char *  s)","url":"/ddoc/druntime/core/sys/windows/stdc/time/_strtime.html"},{"doc":"","kind":"struct","module":"core.sys.windows.stdc.time","name":"tm","package":"druntime","parentType":"","signature":"tm","url":"/ddoc/druntime/core/sys/windows/stdc/time.html#tm"},{"doc":"","kind":"alias","module":"core.sys.windows.stdc.time","name":"time_t","package":"druntime","parentType":"","signature":"time_t = c_long","url":"/ddoc/druntime/core/sys/windows/stdc/time.html#time_t"},{"doc":"","kind":"alias","module":"core.sys.windows.stdc.time","name":"clock_t","package":"druntime","parentType":"","signature":"clock_t = c_long","url":"/ddoc/druntime/core/sys/windows/stdc/time.html#clock_t"},{"doc":"","kind":"variable","module":"core.sys.windows.stdc.time","name":"CLOCKS_PER_SEC","package":"druntime","parentType":"","signature":"clock_t CLOCKS_PER_SEC","url":"/ddoc/druntime/core/sys/windows/stdc/time.html#CLOCKS_PER_SEC"},{"doc":"","kind":"variable","module":"core.sys.windows.stdc.time","name":"tzname","package":"druntime","parentType":"","signature":"const(char) *[2] tzname","url":"/ddoc/druntime/core/sys/windows/stdc/time.html#tzname"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.subauth","name":"core.sys.windows.subauth","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/subauth.html"},{"doc":"","kind":"function","module":"core.sys.windows.subauth","name":"Msv1_0SubAuthenticationRoutine","package":"druntime","parentType":"","signature":"NTSTATUS Msv1_0SubAuthenticationRoutine(NETLOGON_LOGON_INFO_CLASS, PVOID,\n     ULONG, PUSER_ALL_INFORMATION, PULONG, PULONG,\n     PBOOLEAN, PLARGE_INTEGER, PLARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/subauth/Msv1_0SubAuthenticationRoutine.html"},{"doc":"","kind":"function","module":"core.sys.windows.subauth","name":"Msv1_0SubAuthenticationFilter","package":"druntime","parentType":"","signature":"NTSTATUS Msv1_0SubAuthenticationFilter(NETLOGON_LOGON_INFO_CLASS, PVOID,\n     ULONG, PUSER_ALL_INFORMATION, PULONG, PULONG,\n     PBOOLEAN, PLARGE_INTEGER, PLARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/subauth/Msv1_0SubAuthenticationFilter.html"},{"doc":"","kind":"function","module":"core.sys.windows.subauth","name":"Msv1_0SubAuthenticationRoutineGeneric","package":"druntime","parentType":"","signature":"NTSTATUS Msv1_0SubAuthenticationRoutineGeneric(PVOID, ULONG, PULONG, PVOID *)","url":"/ddoc/druntime/core/sys/windows/subauth/Msv1_0SubAuthenticationRoutineGeneric.html"},{"doc":"","kind":"function","module":"core.sys.windows.subauth","name":"Msv1_0SubAuthenticationRoutineEx","package":"druntime","parentType":"","signature":"NTSTATUS Msv1_0SubAuthenticationRoutineEx(NETLOGON_LOGON_INFO_CLASS, PVOID,\n     ULONG, PUSER_ALL_INFORMATION, SAM_HANDLE,\n     PMSV1_0_VALIDATION_INFO, PULONG)","url":"/ddoc/druntime/core/sys/windows/subauth/Msv1_0SubAuthenticationRoutineEx.html"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"SAM_HANDLE","package":"druntime","parentType":"","signature":"SAM_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/subauth.html#SAM_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PSAM_HANDLE","package":"druntime","parentType":"","signature":"PSAM_HANDLE = SAM_HANDLE *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PSAM_HANDLE"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"OLD_LARGE_INTEGER","package":"druntime","parentType":"","signature":"OLD_LARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/subauth.html#OLD_LARGE_INTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"POLD_LARGE_INTEGER","package":"druntime","parentType":"","signature":"POLD_LARGE_INTEGER = OLD_LARGE_INTEGER *","url":"/ddoc/druntime/core/sys/windows/subauth.html#POLD_LARGE_INTEGER"},{"doc":"","kind":"enum","module":"core.sys.windows.subauth","name":"NETLOGON_LOGON_INFO_CLASS","package":"druntime","parentType":"","signature":"NETLOGON_LOGON_INFO_CLASS","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonInteractiveInformation","package":"druntime","parentType":"","signature":"NetlogonInteractiveInformation = 1","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonNetworkInformation","package":"druntime","parentType":"","signature":"NetlogonNetworkInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonServiceInformation","package":"druntime","parentType":"","signature":"NetlogonServiceInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonGenericInformation","package":"druntime","parentType":"","signature":"NetlogonGenericInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonInteractiveTransitiveInformation","package":"druntime","parentType":"","signature":"NetlogonInteractiveTransitiveInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonNetworkTransitiveInformation","package":"druntime","parentType":"","signature":"NetlogonNetworkTransitiveInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.subauth","name":"NetlogonServiceTransitiveInformation","package":"druntime","parentType":"","signature":"NetlogonServiceTransitiveInformation = ","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_INFO_CLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"CYPHER_BLOCK","package":"druntime","parentType":"","signature":"CYPHER_BLOCK","url":"/ddoc/druntime/core/sys/windows/subauth.html#CYPHER_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PCYPHER_BLOCK","package":"druntime","parentType":"","signature":"PCYPHER_BLOCK = CYPHER_BLOCK *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PCYPHER_BLOCK"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"CLEAR_BLOCK","package":"druntime","parentType":"","signature":"CLEAR_BLOCK","url":"/ddoc/druntime/core/sys/windows/subauth.html#CLEAR_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PCLEAR_BLOCK","package":"druntime","parentType":"","signature":"PCLEAR_BLOCK = CLEAR_BLOCK *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PCLEAR_BLOCK"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"LM_OWF_PASSWORD","package":"druntime","parentType":"","signature":"LM_OWF_PASSWORD","url":"/ddoc/druntime/core/sys/windows/subauth.html#LM_OWF_PASSWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PLM_OWF_PASSWORD","package":"druntime","parentType":"","signature":"PLM_OWF_PASSWORD = LM_OWF_PASSWORD *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PLM_OWF_PASSWORD"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"USER_SESSION_KEY","package":"druntime","parentType":"","signature":"USER_SESSION_KEY","url":"/ddoc/druntime/core/sys/windows/subauth.html#USER_SESSION_KEY"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PUSER_SESSION_KEY","package":"druntime","parentType":"","signature":"PUSER_SESSION_KEY = USER_SESSION_KEY *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PUSER_SESSION_KEY"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"LM_CHALLENGE","package":"druntime","parentType":"","signature":"LM_CHALLENGE = CLEAR_BLOCK","url":"/ddoc/druntime/core/sys/windows/subauth.html#LM_CHALLENGE"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PLM_CHALLENGE","package":"druntime","parentType":"","signature":"PLM_CHALLENGE = LM_CHALLENGE *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PLM_CHALLENGE"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"NT_OWF_PASSWORD","package":"druntime","parentType":"","signature":"NT_OWF_PASSWORD = LM_OWF_PASSWORD","url":"/ddoc/druntime/core/sys/windows/subauth.html#NT_OWF_PASSWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNT_OWF_PASSWORD","package":"druntime","parentType":"","signature":"PNT_OWF_PASSWORD = NT_OWF_PASSWORD *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNT_OWF_PASSWORD"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"NT_CHALLENGE","package":"druntime","parentType":"","signature":"NT_CHALLENGE = LM_CHALLENGE","url":"/ddoc/druntime/core/sys/windows/subauth.html#NT_CHALLENGE"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNT_CHALLENGE","package":"druntime","parentType":"","signature":"PNT_CHALLENGE = NT_CHALLENGE *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNT_CHALLENGE"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"LOGON_HOURS","package":"druntime","parentType":"","signature":"LOGON_HOURS","url":"/ddoc/druntime/core/sys/windows/subauth.html#LOGON_HOURS"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PLOGON_HOURS","package":"druntime","parentType":"","signature":"PLOGON_HOURS = LOGON_HOURS *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PLOGON_HOURS"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"SR_SECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"SR_SECURITY_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/subauth.html#SR_SECURITY_DESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PSR_SECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"PSR_SECURITY_DESCRIPTOR = SR_SECURITY_DESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PSR_SECURITY_DESCRIPTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"USER_ALL_INFORMATION","package":"druntime","parentType":"","signature":"USER_ALL_INFORMATION","url":"/ddoc/druntime/core/sys/windows/subauth.html#USER_ALL_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PUSER_ALL_INFORMATION","package":"druntime","parentType":"","signature":"PUSER_ALL_INFORMATION = USER_ALL_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PUSER_ALL_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"MSV1_0_VALIDATION_INFO","package":"druntime","parentType":"","signature":"MSV1_0_VALIDATION_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_VALIDATION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PMSV1_0_VALIDATION_INFO","package":"druntime","parentType":"","signature":"PMSV1_0_VALIDATION_INFO = MSV1_0_VALIDATION_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PMSV1_0_VALIDATION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"NETLOGON_LOGON_IDENTITY_INFO","package":"druntime","parentType":"","signature":"NETLOGON_LOGON_IDENTITY_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_LOGON_IDENTITY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNETLOGON_LOGON_IDENTITY_INFO","package":"druntime","parentType":"","signature":"PNETLOGON_LOGON_IDENTITY_INFO = NETLOGON_LOGON_IDENTITY_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNETLOGON_LOGON_IDENTITY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"NETLOGON_INTERACTIVE_INFO","package":"druntime","parentType":"","signature":"NETLOGON_INTERACTIVE_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_INTERACTIVE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNETLOGON_INTERACTIVE_INFO","package":"druntime","parentType":"","signature":"PNETLOGON_INTERACTIVE_INFO = NETLOGON_INTERACTIVE_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNETLOGON_INTERACTIVE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"NETLOGON_GENERIC_INFO","package":"druntime","parentType":"","signature":"NETLOGON_GENERIC_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_GENERIC_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNETLOGON_GENERIC_INFO","package":"druntime","parentType":"","signature":"PNETLOGON_GENERIC_INFO = NETLOGON_GENERIC_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNETLOGON_GENERIC_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"NETLOGON_NETWORK_INFO","package":"druntime","parentType":"","signature":"NETLOGON_NETWORK_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_NETWORK_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNETLOGON_NETWORK_INFO","package":"druntime","parentType":"","signature":"PNETLOGON_NETWORK_INFO = NETLOGON_NETWORK_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNETLOGON_NETWORK_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.subauth","name":"NETLOGON_SERVICE_INFO","package":"druntime","parentType":"","signature":"NETLOGON_SERVICE_INFO","url":"/ddoc/druntime/core/sys/windows/subauth.html#NETLOGON_SERVICE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.subauth","name":"PNETLOGON_SERVICE_INFO","package":"druntime","parentType":"","signature":"PNETLOGON_SERVICE_INFO = NETLOGON_SERVICE_INFO *","url":"/ddoc/druntime/core/sys/windows/subauth.html#PNETLOGON_SERVICE_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_VALIDATION_LOGOFF_TIME","package":"druntime","parentType":"","signature":"ULONG MSV1_0_VALIDATION_LOGOFF_TIME","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_VALIDATION_LOGOFF_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_ACCOUNT_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_PASSWORD","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_PASSWORD","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_PASSWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_WORKSTATIONS","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_WORKSTATIONS","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_WORKSTATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_LOGON_HOURS","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_LOGON_HOURS","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_LOGON_HOURS"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_ACCOUNT_EXPIRY"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_PASSWORD_EXPIRY"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_ACCOUNT_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"MSV1_0_SUBAUTH_LOCKOUT","package":"druntime","parentType":"","signature":"MSV1_0_SUBAUTH_LOCKOUT","url":"/ddoc/druntime/core/sys/windows/subauth.html#MSV1_0_SUBAUTH_LOCKOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"NEXT_FREE_ACCOUNT_CONTROL_BIT","package":"druntime","parentType":"","signature":"NEXT_FREE_ACCOUNT_CONTROL_BIT","url":"/ddoc/druntime/core/sys/windows/subauth.html#NEXT_FREE_ACCOUNT_CONTROL_BIT"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"SAM_DAYS_PER_WEEK","package":"druntime","parentType":"","signature":"SAM_DAYS_PER_WEEK","url":"/ddoc/druntime/core/sys/windows/subauth.html#SAM_DAYS_PER_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"SAM_HOURS_PER_WEEK","package":"druntime","parentType":"","signature":"SAM_HOURS_PER_WEEK","url":"/ddoc/druntime/core/sys/windows/subauth.html#SAM_HOURS_PER_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"SAM_MINUTES_PER_WEEK","package":"druntime","parentType":"","signature":"SAM_MINUTES_PER_WEEK","url":"/ddoc/druntime/core/sys/windows/subauth.html#SAM_MINUTES_PER_WEEK"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"USER_ACCOUNT_DISABLED","package":"druntime","parentType":"","signature":"ULONG USER_ACCOUNT_DISABLED","url":"/ddoc/druntime/core/sys/windows/subauth.html#USER_ACCOUNT_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"CYPHER_BLOCK_LENGTH","package":"druntime","parentType":"","signature":"CYPHER_BLOCK_LENGTH","url":"/ddoc/druntime/core/sys/windows/subauth.html#CYPHER_BLOCK_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"USER_SESSION_KEY_LENGTH","package":"druntime","parentType":"","signature":"USER_SESSION_KEY_LENGTH","url":"/ddoc/druntime/core/sys/windows/subauth.html#USER_SESSION_KEY_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.subauth","name":"CLEAR_BLOCK_LENGTH","package":"druntime","parentType":"","signature":"CLEAR_BLOCK_LENGTH","url":"/ddoc/druntime/core/sys/windows/subauth.html#CLEAR_BLOCK_LENGTH"},{"doc":"This module provides OS specific helper function for threads support","kind":"module","module":"core.sys.windows.threadaux","name":"core.sys.windows.threadaux","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/threadaux.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"OpenThread","package":"druntime","parentType":"","signature":"HANDLE OpenThread(DWORD dwDesiredAccess,  BOOL bInheritHandle,  DWORD dwThreadId)","url":"/ddoc/druntime/core/sys/windows/threadaux/OpenThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"rt_moduleTlsCtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsCtor()","url":"/ddoc/druntime/core/sys/windows/threadaux/rt_moduleTlsCtor.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"rt_moduleTlsDtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsDtor()","url":"/ddoc/druntime/core/sys/windows/threadaux/rt_moduleTlsDtor.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"GetTlsDataAddress","package":"druntime","parentType":"","signature":"void * GetTlsDataAddress(  HANDLE hnd )","url":"/ddoc/druntime/core/sys/windows/threadaux/GetTlsDataAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"GetTlsDataAddress","package":"druntime","parentType":"","signature":"void * GetTlsDataAddress(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/GetTlsDataAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"thread_moduleTlsCtor","package":"druntime","parentType":"","signature":"void thread_moduleTlsCtor(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_moduleTlsCtor.html"},{"doc":"","kind":"function","module":"core.sys.windows.threadaux","name":"thread_moduleTlsDtor","package":"druntime","parentType":"","signature":"void thread_moduleTlsDtor(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_moduleTlsDtor.html"},{"doc":"","kind":"struct","module":"core.sys.windows.threadaux","name":"thread_aux","package":"druntime","parentType":"","signature":"thread_aux","url":"/ddoc/druntime/core/sys/windows/threadaux.html#thread_aux"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"getTEB","package":"druntime","parentType":"thread_aux","signature":"void * * getTEB(  HANDLE hnd )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.getTEB.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"getTEB","package":"druntime","parentType":"thread_aux","signature":"void * * getTEB(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.getTEB.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"getTEB","package":"druntime","parentType":"thread_aux","signature":"void * * getTEB()","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.getTEB.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"getThreadStackBottom","package":"druntime","parentType":"thread_aux","signature":"void * getThreadStackBottom(  HANDLE hnd )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.getThreadStackBottom.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"getThreadStackBottom","package":"druntime","parentType":"thread_aux","signature":"void * getThreadStackBottom(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.getThreadStackBottom.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"OpenThreadHandle","package":"druntime","parentType":"thread_aux","signature":"HANDLE OpenThreadHandle(  uint  id )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.OpenThreadHandle.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"enumProcessThreads","package":"druntime","parentType":"thread_aux","signature":"bool enumProcessThreads(  uint  procid,  bool  function(  uint  id,  void *  context )  dg,  void *  context )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.enumProcessThreads.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"enumProcessThreads","package":"druntime","parentType":"thread_aux","signature":"bool enumProcessThreads(  bool  function(  uint  id,  void *  context )  dg,  void *  context )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.enumProcessThreads.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"impersonate_thread","package":"druntime","parentType":"thread_aux","signature":"void impersonate_thread(  uint  id,  externCVoidFunc fn )","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.impersonate_thread.html"},{"doc":"","kind":"method","module":"core.sys.windows.threadaux","name":"impersonate_thread","package":"druntime","parentType":"thread_aux","signature":"void impersonate_thread(  uint  id,  scope  void  delegate()  dg)","url":"/ddoc/druntime/core/sys/windows/threadaux/thread_aux.impersonate_thread.html"},{"doc":"","kind":"alias","module":"core.sys.windows.threadaux","name":"getTEB","package":"druntime","parentType":"","signature":"getTEB = thread_aux.getTEB","url":"/ddoc/druntime/core/sys/windows/threadaux.html#getTEB"},{"doc":"","kind":"alias","module":"core.sys.windows.threadaux","name":"getThreadStackBottom","package":"druntime","parentType":"","signature":"getThreadStackBottom = thread_aux.getThreadStackBottom","url":"/ddoc/druntime/core/sys/windows/threadaux.html#getThreadStackBottom"},{"doc":"","kind":"alias","module":"core.sys.windows.threadaux","name":"OpenThreadHandle","package":"druntime","parentType":"","signature":"OpenThreadHandle = thread_aux.OpenThreadHandle","url":"/ddoc/druntime/core/sys/windows/threadaux.html#OpenThreadHandle"},{"doc":"","kind":"alias","module":"core.sys.windows.threadaux","name":"enumProcessThreads","package":"druntime","parentType":"","signature":"enumProcessThreads = thread_aux.enumProcessThreads","url":"/ddoc/druntime/core/sys/windows/threadaux.html#enumProcessThreads"},{"doc":"","kind":"alias","module":"core.sys.windows.threadaux","name":"impersonate_thread","package":"druntime","parentType":"","signature":"impersonate_thread = thread_aux.impersonate_thread","url":"/ddoc/druntime/core/sys/windows/threadaux.html#impersonate_thread"},{"doc":"","kind":"variable","module":"core.sys.windows.threadaux","name":"_tls_index","package":"druntime","parentType":"","signature":"int _tls_index","url":"/ddoc/druntime/core/sys/windows/threadaux.html#_tls_index"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.tlhelp32","name":"core.sys.windows.tlhelp32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Heap32First","package":"druntime","parentType":"","signature":"BOOL Heap32First(LPHEAPENTRY32, DWORD, ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Heap32First.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Heap32ListFirst","package":"druntime","parentType":"","signature":"BOOL Heap32ListFirst(HANDLE, LPHEAPLIST32)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Heap32ListFirst.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Heap32ListNext","package":"druntime","parentType":"","signature":"BOOL Heap32ListNext(HANDLE, LPHEAPLIST32)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Heap32ListNext.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Heap32Next","package":"druntime","parentType":"","signature":"BOOL Heap32Next(LPHEAPENTRY32)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Heap32Next.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Thread32First","package":"druntime","parentType":"","signature":"BOOL Thread32First(HANDLE, LPTHREADENTRY32)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Thread32First.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Thread32Next","package":"druntime","parentType":"","signature":"BOOL Thread32Next(HANDLE, LPTHREADENTRY32)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Thread32Next.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Toolhelp32ReadProcessMemory","package":"druntime","parentType":"","signature":"BOOL Toolhelp32ReadProcessMemory(DWORD, LPCVOID, LPVOID, SIZE_T, SIZE_T *)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Toolhelp32ReadProcessMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"CreateToolhelp32Snapshot","package":"druntime","parentType":"","signature":"HANDLE CreateToolhelp32Snapshot(DWORD, DWORD)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/CreateToolhelp32Snapshot.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Module32FirstW","package":"druntime","parentType":"","signature":"BOOL Module32FirstW(HANDLE, LPMODULEENTRY32W)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Module32FirstW.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Module32NextW","package":"druntime","parentType":"","signature":"BOOL Module32NextW(HANDLE, LPMODULEENTRY32W)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Module32NextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Process32FirstW","package":"druntime","parentType":"","signature":"BOOL Process32FirstW(HANDLE, LPPROCESSENTRY32W)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Process32FirstW.html"},{"doc":"","kind":"function","module":"core.sys.windows.tlhelp32","name":"Process32NextW","package":"druntime","parentType":"","signature":"BOOL Process32NextW(HANDLE, LPPROCESSENTRY32W)","url":"/ddoc/druntime/core/sys/windows/tlhelp32/Process32NextW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.tlhelp32","name":"HEAPLIST32","package":"druntime","parentType":"","signature":"HEAPLIST32","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#HEAPLIST32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"PHEAPLIST32","package":"druntime","parentType":"","signature":"PHEAPLIST32 = HEAPLIST32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PHEAPLIST32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"LPHEAPLIST32","package":"druntime","parentType":"","signature":"LPHEAPLIST32 = HEAPLIST32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#LPHEAPLIST32"},{"doc":"","kind":"struct","module":"core.sys.windows.tlhelp32","name":"HEAPENTRY32","package":"druntime","parentType":"","signature":"HEAPENTRY32","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#HEAPENTRY32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"PHEAPENTRY32","package":"druntime","parentType":"","signature":"PHEAPENTRY32 = HEAPENTRY32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PHEAPENTRY32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"LPHEAPENTRY32","package":"druntime","parentType":"","signature":"LPHEAPENTRY32 = HEAPENTRY32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#LPHEAPENTRY32"},{"doc":"","kind":"struct","module":"core.sys.windows.tlhelp32","name":"PROCESSENTRY32W","package":"druntime","parentType":"","signature":"PROCESSENTRY32W","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PROCESSENTRY32W"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"PPROCESSENTRY32W","package":"druntime","parentType":"","signature":"PPROCESSENTRY32W = PROCESSENTRY32W *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PPROCESSENTRY32W"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"LPPROCESSENTRY32W","package":"druntime","parentType":"","signature":"LPPROCESSENTRY32W = PROCESSENTRY32W *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#LPPROCESSENTRY32W"},{"doc":"","kind":"struct","module":"core.sys.windows.tlhelp32","name":"THREADENTRY32","package":"druntime","parentType":"","signature":"THREADENTRY32","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#THREADENTRY32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"PTHREADENTRY32","package":"druntime","parentType":"","signature":"PTHREADENTRY32 = THREADENTRY32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PTHREADENTRY32"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"LPTHREADENTRY32","package":"druntime","parentType":"","signature":"LPTHREADENTRY32 = THREADENTRY32 *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#LPTHREADENTRY32"},{"doc":"","kind":"struct","module":"core.sys.windows.tlhelp32","name":"MODULEENTRY32W","package":"druntime","parentType":"","signature":"MODULEENTRY32W","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#MODULEENTRY32W"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"PMODULEENTRY32W","package":"druntime","parentType":"","signature":"PMODULEENTRY32W = MODULEENTRY32W *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#PMODULEENTRY32W"},{"doc":"","kind":"alias","module":"core.sys.windows.tlhelp32","name":"LPMODULEENTRY32W","package":"druntime","parentType":"","signature":"LPMODULEENTRY32W = MODULEENTRY32W *","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#LPMODULEENTRY32W"},{"doc":"","kind":"variable","module":"core.sys.windows.tlhelp32","name":"MAX_MODULE_NAME32","package":"druntime","parentType":"","signature":"MAX_MODULE_NAME32","url":"/ddoc/druntime/core/sys/windows/tlhelp32.html#MAX_MODULE_NAME32"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.tmschema","name":"core.sys.windows.tmschema","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/tmschema.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.unknwn","name":"core.sys.windows.unknwn","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/unknwn.html"},{"doc":"","kind":"function","module":"core.sys.windows.unknwn","name":"MIDL_user_allocate","package":"druntime","parentType":"","signature":"void * MIDL_user_allocate(size_t)","url":"/ddoc/druntime/core/sys/windows/unknwn/MIDL_user_allocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.unknwn","name":"MIDL_user_free","package":"druntime","parentType":"","signature":"void MIDL_user_free(void *)","url":"/ddoc/druntime/core/sys/windows/unknwn/MIDL_user_free.html"},{"doc":"","kind":"interface","module":"core.sys.windows.unknwn","name":"IUnknown","package":"druntime","parentType":"","signature":"IUnknown","url":"/ddoc/druntime/core/sys/windows/unknwn.html#IUnknown"},{"doc":"","kind":"method","module":"core.sys.windows.unknwn","name":"QueryInterface","package":"druntime","parentType":"IUnknown","signature":"HRESULT QueryInterface(IID *  riid,  void * *  pvObject)","url":"/ddoc/druntime/core/sys/windows/unknwn/IUnknown.QueryInterface.html"},{"doc":"","kind":"method","module":"core.sys.windows.unknwn","name":"AddRef","package":"druntime","parentType":"IUnknown","signature":"ULONG AddRef()","url":"/ddoc/druntime/core/sys/windows/unknwn/IUnknown.AddRef.html"},{"doc":"","kind":"method","module":"core.sys.windows.unknwn","name":"Release","package":"druntime","parentType":"IUnknown","signature":"ULONG Release()","url":"/ddoc/druntime/core/sys/windows/unknwn/IUnknown.Release.html"},{"doc":"","kind":"alias","module":"core.sys.windows.unknwn","name":"LPUNKNOWN","package":"druntime","parentType":"","signature":"LPUNKNOWN = IUnknown","url":"/ddoc/druntime/core/sys/windows/unknwn.html#LPUNKNOWN"},{"doc":"","kind":"interface","module":"core.sys.windows.unknwn","name":"IClassFactory","package":"druntime","parentType":"","signature":"IClassFactory : IUnknown","url":"/ddoc/druntime/core/sys/windows/unknwn.html#IClassFactory"},{"doc":"","kind":"method","module":"core.sys.windows.unknwn","name":"CreateInstance","package":"druntime","parentType":"IClassFactory","signature":"HRESULT CreateInstance(IUnknown UnkOuter,  IID *  riid,  void * *  pvObject)","url":"/ddoc/druntime/core/sys/windows/unknwn/IClassFactory.CreateInstance.html"},{"doc":"","kind":"method","module":"core.sys.windows.unknwn","name":"LockServer","package":"druntime","parentType":"IClassFactory","signature":"HRESULT LockServer(BOOL fLock)","url":"/ddoc/druntime/core/sys/windows/unknwn/IClassFactory.LockServer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.unknwn","name":"LPCLASSFACTORY","package":"druntime","parentType":"","signature":"LPCLASSFACTORY = IClassFactory","url":"/ddoc/druntime/core/sys/windows/unknwn.html#LPCLASSFACTORY"},{"doc":"","kind":"module","module":"core.sys.windows.uuid","name":"core.sys.windows.uuid","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/uuid.html"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"_DBBMKGUID","package":"druntime","parentType":"","signature":"IID _DBBMKGUID","url":"/ddoc/druntime/core/sys/windows/uuid.html#_DBBMKGUID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"_DBCIDGUID","package":"druntime","parentType":"","signature":"IID _DBCIDGUID","url":"/ddoc/druntime/core/sys/windows/uuid.html#_DBCIDGUID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"_GUID_NAMEONLY","package":"druntime","parentType":"","signature":"IID _GUID_NAMEONLY","url":"/ddoc/druntime/core/sys/windows/uuid.html#_GUID_NAMEONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"ARRAYID_PathProperties","package":"druntime","parentType":"","signature":"IID ARRAYID_PathProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#ARRAYID_PathProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_GRAY_16","package":"druntime","parentType":"","signature":"IID BFID_GRAY_16","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_GRAY_16"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_GRAY_8","package":"druntime","parentType":"","signature":"IID BFID_GRAY_8","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_GRAY_8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_MONOCHROME","package":"druntime","parentType":"","signature":"IID BFID_MONOCHROME","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_MONOCHROME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_24","package":"druntime","parentType":"","signature":"IID BFID_RGB_24","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_24"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_32","package":"druntime","parentType":"","signature":"IID BFID_RGB_32","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_4","package":"druntime","parentType":"","signature":"IID BFID_RGB_4","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_555","package":"druntime","parentType":"","signature":"IID BFID_RGB_555","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_555"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_565","package":"druntime","parentType":"","signature":"IID BFID_RGB_565","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_565"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGB_8","package":"druntime","parentType":"","signature":"IID BFID_RGB_8","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGB_8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BFID_RGBA_32","package":"druntime","parentType":"","signature":"IID BFID_RGBA_32","url":"/ddoc/druntime/core/sys/windows/uuid.html#BFID_RGBA_32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_LinkTargetItem","package":"druntime","parentType":"","signature":"IID BHID_LinkTargetItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_LinkTargetItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_SFObject","package":"druntime","parentType":"","signature":"IID BHID_SFObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_SFObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_SFUIObject","package":"druntime","parentType":"","signature":"IID BHID_SFUIObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_SFUIObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_SFViewObject","package":"druntime","parentType":"","signature":"IID BHID_SFViewObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_SFViewObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_Storage","package":"druntime","parentType":"","signature":"IID BHID_Storage","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_Storage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_StorageEnum","package":"druntime","parentType":"","signature":"IID BHID_StorageEnum","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_StorageEnum"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"BHID_Stream","package":"druntime","parentType":"","signature":"IID BHID_Stream","url":"/ddoc/druntime/core/sys/windows/uuid.html#BHID_Stream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_BrowsableShellExt","package":"druntime","parentType":"","signature":"IID CATID_BrowsableShellExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_BrowsableShellExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_BrowseInPlace","package":"druntime","parentType":"","signature":"IID CATID_BrowseInPlace","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_BrowseInPlace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_ClusCfgCapabilities","package":"druntime","parentType":"","signature":"IID CATID_ClusCfgCapabilities","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_ClusCfgCapabilities"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_ClusCfgMemberSetChangeListener","package":"druntime","parentType":"","signature":"IID CATID_ClusCfgMemberSetChangeListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_ClusCfgMemberSetChangeListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_ClusCfgResourceTypes","package":"druntime","parentType":"","signature":"IID CATID_ClusCfgResourceTypes","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_ClusCfgResourceTypes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_ClusCfgStartupListeners","package":"druntime","parentType":"","signature":"IID CATID_ClusCfgStartupListeners","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_ClusCfgStartupListeners"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_CommBand","package":"druntime","parentType":"","signature":"IID CATID_CommBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_CommBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_Control","package":"druntime","parentType":"","signature":"IID CATID_Control","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_Control"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_DesignTimeUIActivatableControl","package":"druntime","parentType":"","signature":"IID CATID_DesignTimeUIActivatableControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_DesignTimeUIActivatableControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_DeskBand","package":"druntime","parentType":"","signature":"IID CATID_DeskBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_DeskBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_DocObject","package":"druntime","parentType":"","signature":"IID CATID_DocObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_DocObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_EnumClusCfgManagedResources","package":"druntime","parentType":"","signature":"IID CATID_EnumClusCfgManagedResources","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_EnumClusCfgManagedResources"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_InfoBand","package":"druntime","parentType":"","signature":"IID CATID_InfoBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_InfoBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_Insertable","package":"druntime","parentType":"","signature":"IID CATID_Insertable","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_Insertable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_InternetAware","package":"druntime","parentType":"","signature":"IID CATID_InternetAware","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_InternetAware"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_IsShortcut","package":"druntime","parentType":"","signature":"IID CATID_IsShortcut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_IsShortcut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_MARSHALER","package":"druntime","parentType":"","signature":"IID CATID_MARSHALER","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_MARSHALER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_NeverShowExt","package":"druntime","parentType":"","signature":"IID CATID_NeverShowExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_NeverShowExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToFile","package":"druntime","parentType":"","signature":"IID CATID_PersistsToFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToMemory","package":"druntime","parentType":"","signature":"IID CATID_PersistsToMemory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToMemory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToMoniker","package":"druntime","parentType":"","signature":"IID CATID_PersistsToMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToPropertyBag","package":"druntime","parentType":"","signature":"IID CATID_PersistsToPropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToPropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToStorage","package":"druntime","parentType":"","signature":"IID CATID_PersistsToStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToStream","package":"druntime","parentType":"","signature":"IID CATID_PersistsToStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_PersistsToStreamInit","package":"druntime","parentType":"","signature":"IID CATID_PersistsToStreamInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_PersistsToStreamInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_Printable","package":"druntime","parentType":"","signature":"IID CATID_Printable","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_Printable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_Programmable","package":"druntime","parentType":"","signature":"IID CATID_Programmable","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_Programmable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_RequiresDataPathHost","package":"druntime","parentType":"","signature":"IID CATID_RequiresDataPathHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_RequiresDataPathHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_SafeForInitializing","package":"druntime","parentType":"","signature":"IID CATID_SafeForInitializing","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_SafeForInitializing"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CATID_SafeForScripting","package":"druntime","parentType":"","signature":"IID CATID_SafeForScripting","url":"/ddoc/druntime/core/sys/windows/uuid.html#CATID_SafeForScripting"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_DocHostCommandHandler","package":"druntime","parentType":"","signature":"IID CGID_DocHostCommandHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_DocHostCommandHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_DownloadHost","package":"druntime","parentType":"","signature":"IID CGID_DownloadHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_DownloadHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_Explorer","package":"druntime","parentType":"","signature":"IID CGID_Explorer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_Explorer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_ExplorerBarDoc","package":"druntime","parentType":"","signature":"IID CGID_ExplorerBarDoc","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_ExplorerBarDoc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_InternetExplorer","package":"druntime","parentType":"","signature":"IID CGID_InternetExplorer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_InternetExplorer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_MSHTML","package":"druntime","parentType":"","signature":"IID CGID_MSHTML","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_MSHTML"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_ShellDocView","package":"druntime","parentType":"","signature":"IID CGID_ShellDocView","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_ShellDocView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_ShellServiceObject","package":"druntime","parentType":"","signature":"IID CGID_ShellServiceObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_ShellServiceObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CGID_ShortCut","package":"druntime","parentType":"","signature":"IID CGID_ShortCut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CGID_ShortCut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_1","package":"druntime","parentType":"","signature":"IID CLSID_1","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_2","package":"druntime","parentType":"","signature":"IID CLSID_2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_3","package":"druntime","parentType":"","signature":"IID CLSID_3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_4","package":"druntime","parentType":"","signature":"IID CLSID_4","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_5","package":"druntime","parentType":"","signature":"IID CLSID_5","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_5"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_6","package":"druntime","parentType":"","signature":"IID CLSID_6","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_6"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_7","package":"druntime","parentType":"","signature":"IID CLSID_7","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_8","package":"druntime","parentType":"","signature":"IID CLSID_8","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_9","package":"druntime","parentType":"","signature":"IID CLSID_9","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_9"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_a","package":"druntime","parentType":"","signature":"IID CLSID_a","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_a"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AboutProtocol","package":"druntime","parentType":"","signature":"IID CLSID_AboutProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AboutProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AccessControlEntry","package":"druntime","parentType":"","signature":"IID CLSID_AccessControlEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AccessControlEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AccessControlList","package":"druntime","parentType":"","signature":"IID CLSID_AccessControlList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AccessControlList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AccountDiscovery","package":"druntime","parentType":"","signature":"IID CLSID_AccountDiscovery","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AccountDiscovery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ACLCustomMRU","package":"druntime","parentType":"","signature":"IID CLSID_ACLCustomMRU","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ACLCustomMRU"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ACLHistory","package":"druntime","parentType":"","signature":"IID CLSID_ACLHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ACLHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ACListISF","package":"druntime","parentType":"","signature":"IID CLSID_ACListISF","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ACListISF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ACLMRU","package":"druntime","parentType":"","signature":"IID CLSID_ACLMRU","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ACLMRU"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ACLMulti","package":"druntime","parentType":"","signature":"IID CLSID_ACLMulti","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ACLMulti"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ActiveDesktop","package":"druntime","parentType":"","signature":"IID CLSID_ActiveDesktop","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ActiveDesktop"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AdapterInfo","package":"druntime","parentType":"","signature":"IID CLSID_AdapterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AdapterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AddrControl","package":"druntime","parentType":"","signature":"IID CLSID_AddrControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AddrControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AddressBarParser","package":"druntime","parentType":"","signature":"IID CLSID_AddressBarParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AddressBarParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ADsDSOObject","package":"druntime","parentType":"","signature":"IID CLSID_ADsDSOObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ADsDSOObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ADsSecurityUtility","package":"druntime","parentType":"","signature":"IID CLSID_ADsSecurityUtility","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ADsSecurityUtility"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ADSystemInfo","package":"druntime","parentType":"","signature":"IID CLSID_ADSystemInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ADSystemInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AlgSetup","package":"druntime","parentType":"","signature":"IID CLSID_AlgSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AlgSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AllClasses","package":"druntime","parentType":"","signature":"IID CLSID_AllClasses","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AllClasses"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AlphabeticalCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_AlphabeticalCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AlphabeticalCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AnchorClick","package":"druntime","parentType":"","signature":"IID CLSID_AnchorClick","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AnchorClick"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AnimationComposerFactory","package":"druntime","parentType":"","signature":"IID CLSID_AnimationComposerFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AnimationComposerFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AnimationComposerSiteFactory","package":"druntime","parentType":"","signature":"IID CLSID_AnimationComposerSiteFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AnimationComposerSiteFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ApplicationGatewayServices","package":"druntime","parentType":"","signature":"IID CLSID_ApplicationGatewayServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ApplicationGatewayServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AutoComplete","package":"druntime","parentType":"","signature":"IID CLSID_AutoComplete","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AutoComplete"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AutoDiscoveryProvider","package":"druntime","parentType":"","signature":"IID CLSID_AutoDiscoveryProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AutoDiscoveryProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_AutoplayForSlideShow","package":"druntime","parentType":"","signature":"IID CLSID_AutoplayForSlideShow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_AutoplayForSlideShow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_b","package":"druntime","parentType":"","signature":"IID CLSID_b","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_b"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BackgroundCopyManager","package":"druntime","parentType":"","signature":"IID CLSID_BackgroundCopyManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BackgroundCopyManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BackgroundCopyManager1_5","package":"druntime","parentType":"","signature":"IID CLSID_BackgroundCopyManager1_5","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BackgroundCopyManager1_5"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BackgroundCopyQMgr","package":"druntime","parentType":"","signature":"IID CLSID_BackgroundCopyQMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BackgroundCopyQMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BackLink","package":"druntime","parentType":"","signature":"IID CLSID_BackLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BackLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BasicImageEffects","package":"druntime","parentType":"","signature":"IID CLSID_BasicImageEffects","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BasicImageEffects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BasicImageEffectsPP","package":"druntime","parentType":"","signature":"IID CLSID_BasicImageEffectsPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BasicImageEffectsPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BlockFormats","package":"druntime","parentType":"","signature":"IID CLSID_BlockFormats","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BlockFormats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_BridgeTerminal","package":"druntime","parentType":"","signature":"IID CLSID_BridgeTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_BridgeTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_c","package":"druntime","parentType":"","signature":"IID CLSID_c","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_c"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CAccPropServices","package":"druntime","parentType":"","signature":"IID CLSID_CAccPropServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CAccPropServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CActiveIMM","package":"druntime","parentType":"","signature":"IID CLSID_CActiveIMM","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CActiveIMM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CAnchorBrowsePropertyPage","package":"druntime","parentType":"","signature":"IID CLSID_CAnchorBrowsePropertyPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CAnchorBrowsePropertyPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CaseIgnoreList","package":"druntime","parentType":"","signature":"IID CLSID_CaseIgnoreList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CaseIgnoreList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CCheckBox","package":"druntime","parentType":"","signature":"IID CLSID_CCheckBox","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CCheckBox"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CColorPropPage","package":"druntime","parentType":"","signature":"IID CLSID_CColorPropPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CColorPropPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CCombobox","package":"druntime","parentType":"","signature":"IID CLSID_CCombobox","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CCombobox"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDBurn","package":"druntime","parentType":"","signature":"IID CLSID_CDBurn","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDBurn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDebugDocumentHelper","package":"druntime","parentType":"","signature":"IID CLSID_CDebugDocumentHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDebugDocumentHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDeviceRect","package":"druntime","parentType":"","signature":"IID CLSID_CDeviceRect","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDeviceRect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRM","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRM","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMAnimation","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMAnimationSet","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMAnimationSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMAnimationSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMClippedVisual","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMClippedVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMClippedVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMDevice","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMFace","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMFace","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMFace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMFrame","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMFrameInterpolator","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMFrameInterpolator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMFrameInterpolator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMLight","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMLightInterpolator","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMLightInterpolator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMLightInterpolator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMMaterial","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMMaterial","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMMaterial"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMMaterialInterpolato","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMMaterialInterpolato","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMMaterialInterpolato"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMMesh","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMMeshBuilder","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMMeshBuilder","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMMeshBuilder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMMeshInterpolator","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMMeshInterpolator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMMeshInterpolator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMProgressiveMesh","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMProgressiveMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMProgressiveMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMShadow","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMTexture","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMTexture","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMTexture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMTextureInterpolator","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMTextureInterpolator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMTextureInterpolator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMUserVisual","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMUserVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMUserVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMViewport","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMViewport","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMViewport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMViewportInterpolato","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMViewportInterpolato","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMViewportInterpolato"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirect3DRMWrap","package":"druntime","parentType":"","signature":"IID CLSID_CDirect3DRMWrap","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirect3DRMWrap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDirectXFile","package":"druntime","parentType":"","signature":"IID CLSID_CDirectXFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDirectXFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDLAgent","package":"druntime","parentType":"","signature":"IID CLSID_CDLAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDLAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CdlProtocol","package":"druntime","parentType":"","signature":"IID CLSID_CdlProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CdlProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDocBrowsePropertyPage","package":"druntime","parentType":"","signature":"IID CLSID_CDocBrowsePropertyPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDocBrowsePropertyPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CDownloadBehavior","package":"druntime","parentType":"","signature":"IID CLSID_CDownloadBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CDownloadBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CEnroll","package":"druntime","parentType":"","signature":"IID CLSID_CEnroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CEnroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CEventObj","package":"druntime","parentType":"","signature":"IID CLSID_CEventObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CEventObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CFontPropPage","package":"druntime","parentType":"","signature":"IID CLSID_CFontPropPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CFontPropPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CFSIconOverlayManager","package":"druntime","parentType":"","signature":"IID CLSID_CFSIconOverlayManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CFSIconOverlayManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ChannelAgent","package":"druntime","parentType":"","signature":"IID CLSID_ChannelAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ChannelAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ChannelMgr","package":"druntime","parentType":"","signature":"IID CLSID_ChannelMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ChannelMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CHeaderFooter","package":"druntime","parentType":"","signature":"IID CLSID_CHeaderFooter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CHeaderFooter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CHtmlArea","package":"druntime","parentType":"","signature":"IID CLSID_CHtmlArea","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CHtmlArea"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CIEOptionElement","package":"druntime","parentType":"","signature":"IID CLSID_CIEOptionElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CIEOptionElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CIESelectElement","package":"druntime","parentType":"","signature":"IID CLSID_CIESelectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CIESelectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CImageBrowsePropertyPage","package":"druntime","parentType":"","signature":"IID CLSID_CImageBrowsePropertyPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CImageBrowsePropertyPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClassInstallFilter","package":"druntime","parentType":"","signature":"IID CLSID_ClassInstallFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClassInstallFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CLayoutRect","package":"druntime","parentType":"","signature":"IID CLSID_CLayoutRect","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CLayoutRect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClientCaps","package":"druntime","parentType":"","signature":"IID CLSID_ClientCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClientCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusAppWiz","package":"druntime","parentType":"","signature":"IID CLSID_ClusAppWiz","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusAppWiz"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgAsyncEvictCleanup","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgAsyncEvictCleanup","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgAsyncEvictCleanup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgEvictCleanup","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgEvictCleanup","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgEvictCleanup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgResTypeGenScript","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgResTypeGenScript","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgResTypeGenScript"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgResTypeMajorityNodeSet","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgResTypeMajorityNodeSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgResTypeMajorityNodeSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgResTypeServices","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgResTypeServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgResTypeServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgStartupNotify","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgStartupNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgStartupNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusCfgWizard","package":"druntime","parentType":"","signature":"IID CLSID_ClusCfgWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusCfgWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ClusterConfigurationType","package":"druntime","parentType":"","signature":"IID CLSID_ClusterConfigurationType","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ClusterConfigurationType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CMimeTypes","package":"druntime","parentType":"","signature":"IID CLSID_CMimeTypes","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CMimeTypes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CMLangConvertCharset","package":"druntime","parentType":"","signature":"IID CLSID_CMLangConvertCharset","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CMLangConvertCharset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CMLangString","package":"druntime","parentType":"","signature":"IID CLSID_CMLangString","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CMLangString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CMultiLanguage","package":"druntime","parentType":"","signature":"IID CLSID_CMultiLanguage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CMultiLanguage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CNetCfg","package":"druntime","parentType":"","signature":"IID CLSID_CNetCfg","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CNetCfg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CoDitherToRGB8","package":"druntime","parentType":"","signature":"IID CLSID_CoDitherToRGB8","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CoDitherToRGB8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CoMapMIMEToCLSID","package":"druntime","parentType":"","signature":"IID CLSID_CoMapMIMEToCLSID","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CoMapMIMEToCLSID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ComBinding","package":"druntime","parentType":"","signature":"IID CLSID_ComBinding","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ComBinding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CommonQuery","package":"druntime","parentType":"","signature":"IID CLSID_CommonQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CommonQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CompositePP","package":"druntime","parentType":"","signature":"IID CLSID_CompositePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CompositePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ConnectionCommonUi","package":"druntime","parentType":"","signature":"IID CLSID_ConnectionCommonUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ConnectionCommonUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ConnectionManager","package":"druntime","parentType":"","signature":"IID CLSID_ConnectionManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ConnectionManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ConnectionManager2","package":"druntime","parentType":"","signature":"IID CLSID_ConnectionManager2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ConnectionManager2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ControlPanel","package":"druntime","parentType":"","signature":"IID CLSID_ControlPanel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ControlPanel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ConvertVBX","package":"druntime","parentType":"","signature":"IID CLSID_ConvertVBX","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ConvertVBX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ConvolvePP","package":"druntime","parentType":"","signature":"IID CLSID_ConvolvePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ConvolvePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_COpsProfile","package":"druntime","parentType":"","signature":"IID CLSID_COpsProfile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_COpsProfile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CoSniffStream","package":"druntime","parentType":"","signature":"IID CLSID_CoSniffStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CoSniffStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPersistDataPeer","package":"druntime","parentType":"","signature":"IID CLSID_CPersistDataPeer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPersistDataPeer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPersistHistory","package":"druntime","parentType":"","signature":"IID CLSID_CPersistHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPersistHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPersistShortcut","package":"druntime","parentType":"","signature":"IID CLSID_CPersistShortcut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPersistShortcut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPersistSnapshot","package":"druntime","parentType":"","signature":"IID CLSID_CPersistSnapshot","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPersistSnapshot"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPersistUserData","package":"druntime","parentType":"","signature":"IID CLSID_CPersistUserData","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPersistUserData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPicturePropPage","package":"druntime","parentType":"","signature":"IID CLSID_CPicturePropPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPicturePropPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CPlugins","package":"druntime","parentType":"","signature":"IID CLSID_CPlugins","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CPlugins"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CRadioButton","package":"druntime","parentType":"","signature":"IID CLSID_CRadioButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CRadioButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBarn","package":"druntime","parentType":"","signature":"IID CLSID_CrBarn","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBarn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBarnPP","package":"druntime","parentType":"","signature":"IID CLSID_CrBarnPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBarnPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBlindPP","package":"druntime","parentType":"","signature":"IID CLSID_CrBlindPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBlindPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBlinds","package":"druntime","parentType":"","signature":"IID CLSID_CrBlinds","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBlinds"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBlur","package":"druntime","parentType":"","signature":"IID CLSID_CrBlur","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBlur"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrBlurPP","package":"druntime","parentType":"","signature":"IID CLSID_CrBlurPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrBlurPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrEmboss","package":"druntime","parentType":"","signature":"IID CLSID_CrEmboss","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrEmboss"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrEngrave","package":"druntime","parentType":"","signature":"IID CLSID_CrEngrave","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrEngrave"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrInset","package":"druntime","parentType":"","signature":"IID CLSID_CrInset","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrInset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrIris","package":"druntime","parentType":"","signature":"IID CLSID_CrIris","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrIris"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrIrisPP","package":"druntime","parentType":"","signature":"IID CLSID_CrIrisPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrIrisPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrRadialWipe","package":"druntime","parentType":"","signature":"IID CLSID_CrRadialWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrRadialWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrRadialWipePP","package":"druntime","parentType":"","signature":"IID CLSID_CrRadialWipePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrRadialWipePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrSlide","package":"druntime","parentType":"","signature":"IID CLSID_CrSlide","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrSlide"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrSlidePP","package":"druntime","parentType":"","signature":"IID CLSID_CrSlidePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrSlidePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrSpiral","package":"druntime","parentType":"","signature":"IID CLSID_CrSpiral","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrSpiral"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrSpiralPP","package":"druntime","parentType":"","signature":"IID CLSID_CrSpiralPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrSpiralPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrStretch","package":"druntime","parentType":"","signature":"IID CLSID_CrStretch","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrStretch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrStretchPP","package":"druntime","parentType":"","signature":"IID CLSID_CrStretchPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrStretchPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrWheel","package":"druntime","parentType":"","signature":"IID CLSID_CrWheel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrWheel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrWheelPP","package":"druntime","parentType":"","signature":"IID CLSID_CrWheelPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrWheelPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrZigzag","package":"druntime","parentType":"","signature":"IID CLSID_CrZigzag","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrZigzag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CrZigzagPP","package":"druntime","parentType":"","signature":"IID CLSID_CrZigzagPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CrZigzagPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CScriptErrorList","package":"druntime","parentType":"","signature":"IID CLSID_CScriptErrorList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CScriptErrorList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CScrollBar","package":"druntime","parentType":"","signature":"IID CLSID_CScrollBar","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CScrollBar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CSliderBar","package":"druntime","parentType":"","signature":"IID CLSID_CSliderBar","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CSliderBar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CSpinButton","package":"druntime","parentType":"","signature":"IID CLSID_CSpinButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CSpinButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CTemplatePrinter","package":"druntime","parentType":"","signature":"IID CLSID_CTemplatePrinter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CTemplatePrinter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CUrlHistory","package":"druntime","parentType":"","signature":"IID CLSID_CUrlHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CUrlHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CURLSearchHook","package":"druntime","parentType":"","signature":"IID CLSID_CURLSearchHook","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CURLSearchHook"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CurrentUserClasses","package":"druntime","parentType":"","signature":"IID CLSID_CurrentUserClasses","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CurrentUserClasses"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_CUtilityButton","package":"druntime","parentType":"","signature":"IID CLSID_CUtilityButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_CUtilityButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_d","package":"druntime","parentType":"","signature":"IID CLSID_d","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_d"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAArray","package":"druntime","parentType":"","signature":"IID CLSID_DAArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DABbox2","package":"druntime","parentType":"","signature":"IID CLSID_DABbox2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DABbox2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DABbox3","package":"druntime","parentType":"","signature":"IID CLSID_DABbox3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DABbox3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DABehavior","package":"druntime","parentType":"","signature":"IID CLSID_DABehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DABehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DABoolean","package":"druntime","parentType":"","signature":"IID CLSID_DABoolean","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DABoolean"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DACamera","package":"druntime","parentType":"","signature":"IID CLSID_DACamera","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DACamera"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAColor","package":"druntime","parentType":"","signature":"IID CLSID_DAColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DADashStyle","package":"druntime","parentType":"","signature":"IID CLSID_DADashStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DADashStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAEndStyle","package":"druntime","parentType":"","signature":"IID CLSID_DAEndStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAEndStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAEvent","package":"druntime","parentType":"","signature":"IID CLSID_DAEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAFontStyle","package":"druntime","parentType":"","signature":"IID CLSID_DAFontStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAFontStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAGeometry","package":"druntime","parentType":"","signature":"IID CLSID_DAGeometry","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAGeometry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAImage","package":"druntime","parentType":"","signature":"IID CLSID_DAImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAImportationResult","package":"druntime","parentType":"","signature":"IID CLSID_DAImportationResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAImportationResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAJoinStyle","package":"druntime","parentType":"","signature":"IID CLSID_DAJoinStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAJoinStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DALineStyle","package":"druntime","parentType":"","signature":"IID CLSID_DALineStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DALineStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAMatte","package":"druntime","parentType":"","signature":"IID CLSID_DAMatte","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAMatte"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAMicrophone","package":"druntime","parentType":"","signature":"IID CLSID_DAMicrophone","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAMicrophone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAMontage","package":"druntime","parentType":"","signature":"IID CLSID_DAMontage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAMontage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DANumber","package":"druntime","parentType":"","signature":"IID CLSID_DANumber","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DANumber"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAPair","package":"druntime","parentType":"","signature":"IID CLSID_DAPair","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAPair"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAPath2","package":"druntime","parentType":"","signature":"IID CLSID_DAPath2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAPath2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAPickableResult","package":"druntime","parentType":"","signature":"IID CLSID_DAPickableResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAPickableResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAPoint2","package":"druntime","parentType":"","signature":"IID CLSID_DAPoint2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAPoint2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAPoint3","package":"druntime","parentType":"","signature":"IID CLSID_DAPoint3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAPoint3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DarwinAppPublisher","package":"druntime","parentType":"","signature":"IID CLSID_DarwinAppPublisher","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DarwinAppPublisher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DASound","package":"druntime","parentType":"","signature":"IID CLSID_DASound","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DASound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAStatics","package":"druntime","parentType":"","signature":"IID CLSID_DAStatics","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAStatics"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAString","package":"druntime","parentType":"","signature":"IID CLSID_DAString","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DataChannel","package":"druntime","parentType":"","signature":"IID CLSID_DataChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DataChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DATransform2","package":"druntime","parentType":"","signature":"IID CLSID_DATransform2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DATransform2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DATransform3","package":"druntime","parentType":"","signature":"IID CLSID_DATransform3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DATransform3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DATuple","package":"druntime","parentType":"","signature":"IID CLSID_DATuple","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DATuple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAUserData","package":"druntime","parentType":"","signature":"IID CLSID_DAUserData","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAUserData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAVector2","package":"druntime","parentType":"","signature":"IID CLSID_DAVector2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAVector2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAVector3","package":"druntime","parentType":"","signature":"IID CLSID_DAVector3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAVector3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAView","package":"druntime","parentType":"","signature":"IID CLSID_DAView","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAViewerControl","package":"druntime","parentType":"","signature":"IID CLSID_DAViewerControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAViewerControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DAViewerControlWindowed","package":"druntime","parentType":"","signature":"IID CLSID_DAViewerControlWindowed","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DAViewerControlWindowed"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DCOMAccessControl","package":"druntime","parentType":"","signature":"IID CLSID_DCOMAccessControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DCOMAccessControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DebugHelper","package":"druntime","parentType":"","signature":"IID CLSID_DebugHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DebugHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DeCompMimeFilter","package":"druntime","parentType":"","signature":"IID CLSID_DeCompMimeFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DeCompMimeFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DefaultDebugSessionProvider","package":"druntime","parentType":"","signature":"IID CLSID_DefaultDebugSessionProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DefaultDebugSessionProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectDraw","package":"druntime","parentType":"","signature":"IID CLSID_DirectDraw","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectDraw"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectDrawClipper","package":"druntime","parentType":"","signature":"IID CLSID_DirectDrawClipper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectDrawClipper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectDrawFactory2","package":"druntime","parentType":"","signature":"IID CLSID_DirectDrawFactory2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectDrawFactory2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectInput","package":"druntime","parentType":"","signature":"IID CLSID_DirectInput","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectInput"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectInputDevice","package":"druntime","parentType":"","signature":"IID CLSID_DirectInputDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectInputDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusic","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusic","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusic"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicBand","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicBandTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicBandTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicBandTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicChordMap","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicChordMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicChordMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicChordMapTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicChordMapTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicChordMapTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicChordTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicChordTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicChordTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicCollection","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicCommandTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicCommandTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicCommandTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicComposer","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicComposer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicComposer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicGraph","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicGraph","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicGraph"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicLoader","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicLoader","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicLoader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicMotifTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicMotifTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicMotifTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicMuteTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicMuteTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicMuteTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicPerformance","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicPerformance","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicPerformance"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSegment","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSegment","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSegment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSegmentState","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSegmentState","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSegmentState"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSeqTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSeqTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSeqTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSignPostTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSignPostTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSignPostTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicStyle","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicStyleTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicStyleTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicStyleTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSynth","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSynth","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSynth"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicSysExTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicSysExTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicSysExTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicTempoTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicTempoTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicTempoTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectMusicTimeSigTrack","package":"druntime","parentType":"","signature":"IID CLSID_DirectMusicTimeSigTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectMusicTimeSigTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectPlay","package":"druntime","parentType":"","signature":"IID CLSID_DirectPlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectPlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectPlayLobby","package":"druntime","parentType":"","signature":"IID CLSID_DirectPlayLobby","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectPlayLobby"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectSound","package":"druntime","parentType":"","signature":"IID CLSID_DirectSound","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectSound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectSound8","package":"druntime","parentType":"","signature":"IID CLSID_DirectSound8","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectSound8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectSoundCapture","package":"druntime","parentType":"","signature":"IID CLSID_DirectSoundCapture","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectSoundCapture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectSoundCapture8","package":"druntime","parentType":"","signature":"IID CLSID_DirectSoundCapture8","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectSoundCapture8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DirectSoundFullDuplex","package":"druntime","parentType":"","signature":"IID CLSID_DirectSoundFullDuplex","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DirectSoundFullDuplex"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DispatchMapper","package":"druntime","parentType":"","signature":"IID CLSID_DispatchMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DispatchMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DNWithBinary","package":"druntime","parentType":"","signature":"IID CLSID_DNWithBinary","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DNWithBinary"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DNWithString","package":"druntime","parentType":"","signature":"IID CLSID_DNWithString","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DNWithString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DocFileColumnProvider","package":"druntime","parentType":"","signature":"IID CLSID_DocFileColumnProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DocFileColumnProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DocHostUIHandler","package":"druntime","parentType":"","signature":"IID CLSID_DocHostUIHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DocHostUIHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DOMChildrenCollection","package":"druntime","parentType":"","signature":"IID CLSID_DOMChildrenCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DOMChildrenCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DOMDocument","package":"druntime","parentType":"","signature":"IID CLSID_DOMDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DOMDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DOMFreeThreadedDocument","package":"druntime","parentType":"","signature":"IID CLSID_DOMFreeThreadedDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DOMFreeThreadedDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DragDropHelper","package":"druntime","parentType":"","signature":"IID CLSID_DragDropHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DragDropHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DriveSizeCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_DriveSizeCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DriveSizeCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DriveTypeCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_DriveTypeCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DriveTypeCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsDisplaySpecifier","package":"druntime","parentType":"","signature":"IID CLSID_DsDisplaySpecifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsDisplaySpecifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsDomainTreeBrowser","package":"druntime","parentType":"","signature":"IID CLSID_DsDomainTreeBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsDomainTreeBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindAdvanced","package":"druntime","parentType":"","signature":"IID CLSID_DsFindAdvanced","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindAdvanced"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindComputer","package":"druntime","parentType":"","signature":"IID CLSID_DsFindComputer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindComputer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindContainer","package":"druntime","parentType":"","signature":"IID CLSID_DsFindContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindDomainController","package":"druntime","parentType":"","signature":"IID CLSID_DsFindDomainController","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindDomainController"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindFrsMembers","package":"druntime","parentType":"","signature":"IID CLSID_DsFindFrsMembers","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindFrsMembers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindObjects","package":"druntime","parentType":"","signature":"IID CLSID_DsFindObjects","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindObjects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindPeople","package":"druntime","parentType":"","signature":"IID CLSID_DsFindPeople","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindPeople"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindPrinter","package":"druntime","parentType":"","signature":"IID CLSID_DsFindPrinter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindPrinter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFindVolume","package":"druntime","parentType":"","signature":"IID CLSID_DsFindVolume","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFindVolume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsFolderProperties","package":"druntime","parentType":"","signature":"IID CLSID_DsFolderProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsFolderProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsPropertyPages","package":"druntime","parentType":"","signature":"IID CLSID_DsPropertyPages","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsPropertyPages"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DsQuery","package":"druntime","parentType":"","signature":"IID CLSID_DsQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DsQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DWbemClassObject","package":"druntime","parentType":"","signature":"IID CLSID_DWbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DWbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DWbemContext","package":"druntime","parentType":"","signature":"IID CLSID_DWbemContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DWbemContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DWbemLocator","package":"druntime","parentType":"","signature":"IID CLSID_DWbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DWbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DX2D","package":"druntime","parentType":"","signature":"IID CLSID_DX2D","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DX2D"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXFade","package":"druntime","parentType":"","signature":"IID CLSID_DXFade","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXFade"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXGradient","package":"druntime","parentType":"","signature":"IID CLSID_DXGradient","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXGradient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXLUTBuilder","package":"druntime","parentType":"","signature":"IID CLSID_DXLUTBuilder","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXLUTBuilder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXRasterizer","package":"druntime","parentType":"","signature":"IID CLSID_DXRasterizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXRasterizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXSurface","package":"druntime","parentType":"","signature":"IID CLSID_DXSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXSurfaceModifier","package":"druntime","parentType":"","signature":"IID CLSID_DXSurfaceModifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXSurfaceModifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTAlpha","package":"druntime","parentType":"","signature":"IID CLSID_DXTAlpha","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTAlpha"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTAlphaImageLoader","package":"druntime","parentType":"","signature":"IID CLSID_DXTAlphaImageLoader","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTAlphaImageLoader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTAlphaImageLoaderPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTAlphaImageLoaderPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTAlphaImageLoaderPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTAlphaPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTAlphaPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTAlphaPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTaskManager","package":"druntime","parentType":"","signature":"IID CLSID_DXTaskManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTaskManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTBarn","package":"druntime","parentType":"","signature":"IID CLSID_DXTBarn","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTBarn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTBlinds","package":"druntime","parentType":"","signature":"IID CLSID_DXTBlinds","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTBlinds"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTCheckerBoard","package":"druntime","parentType":"","signature":"IID CLSID_DXTCheckerBoard","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTCheckerBoard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTCheckerBoardPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTCheckerBoardPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTCheckerBoardPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTChroma","package":"druntime","parentType":"","signature":"IID CLSID_DXTChroma","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTChroma"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTChromaPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTChromaPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTChromaPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTComposite","package":"druntime","parentType":"","signature":"IID CLSID_DXTComposite","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTComposite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTConvolution","package":"druntime","parentType":"","signature":"IID CLSID_DXTConvolution","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTConvolution"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTDropShadow","package":"druntime","parentType":"","signature":"IID CLSID_DXTDropShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTDropShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTDropShadowPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTDropShadowPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTDropShadowPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTFilter","package":"druntime","parentType":"","signature":"IID CLSID_DXTFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTFilterBehavior","package":"druntime","parentType":"","signature":"IID CLSID_DXTFilterBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTFilterBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTFilterCollection","package":"druntime","parentType":"","signature":"IID CLSID_DXTFilterCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTFilterCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTFilterFactory","package":"druntime","parentType":"","signature":"IID CLSID_DXTFilterFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTFilterFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTGlow","package":"druntime","parentType":"","signature":"IID CLSID_DXTGlow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTGlow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTGlowPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTGlowPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTGlowPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTGradientD","package":"druntime","parentType":"","signature":"IID CLSID_DXTGradientD","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTGradientD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTGradientWipe","package":"druntime","parentType":"","signature":"IID CLSID_DXTGradientWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTGradientWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTICMFilter","package":"druntime","parentType":"","signature":"IID CLSID_DXTICMFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTICMFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTICMFilterPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTICMFilterPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTICMFilterPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTInset","package":"druntime","parentType":"","signature":"IID CLSID_DXTInset","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTInset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTIris","package":"druntime","parentType":"","signature":"IID CLSID_DXTIris","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTIris"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTLabel","package":"druntime","parentType":"","signature":"IID CLSID_DXTLabel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTLabel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTLight","package":"druntime","parentType":"","signature":"IID CLSID_DXTLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTLightPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTLightPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTLightPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMaskFilter","package":"druntime","parentType":"","signature":"IID CLSID_DXTMaskFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMaskFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMatrix","package":"druntime","parentType":"","signature":"IID CLSID_DXTMatrix","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMatrix"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMatrixPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTMatrixPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMatrixPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaBurnFilm","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaBurnFilm","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaBurnFilm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaCenterPeel","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaCenterPeel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaCenterPeel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaColorFade","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaColorFade","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaColorFade"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaFlowMotion","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaFlowMotion","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaFlowMotion"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaGriddler","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaGriddler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaGriddler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaGriddler2","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaGriddler2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaGriddler2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaJaws","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaJaws","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaJaws"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaLightWipe","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaLightWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaLightWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaLiquid","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaLiquid","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaLiquid"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaPageTurn","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaPageTurn","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaPageTurn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaPeelPiece","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaPeelPiece","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaPeelPiece"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaPeelSmall","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaPeelSmall","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaPeelSmall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaPeelSplit","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaPeelSplit","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaPeelSplit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaRadialScaleWipe","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaRadialScaleWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaRadialScaleWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaRipple","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaRipple","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaRipple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaRoll","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaRoll","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaRoll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaThreshold","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaThreshold","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaThreshold"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaTwister","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaTwister","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaTwister"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaVacuum","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaVacuum","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaVacuum"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaWater","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaWater","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaWater"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaWhiteOut","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaWhiteOut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaWhiteOut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMetaWormHole","package":"druntime","parentType":"","signature":"IID CLSID_DXTMetaWormHole","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMetaWormHole"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMotionBlur","package":"druntime","parentType":"","signature":"IID CLSID_DXTMotionBlur","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMotionBlur"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTMotionBlurPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTMotionBlurPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTMotionBlurPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRadialWipe","package":"druntime","parentType":"","signature":"IID CLSID_DXTRadialWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRadialWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRandomBars","package":"druntime","parentType":"","signature":"IID CLSID_DXTRandomBars","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRandomBars"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRandomBarsPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTRandomBarsPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRandomBarsPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRandomDissolve","package":"druntime","parentType":"","signature":"IID CLSID_DXTRandomDissolve","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRandomDissolve"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTransformFactory","package":"druntime","parentType":"","signature":"IID CLSID_DXTransformFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTransformFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRedirect","package":"druntime","parentType":"","signature":"IID CLSID_DXTRedirect","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRedirect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTRevealTrans","package":"druntime","parentType":"","signature":"IID CLSID_DXTRevealTrans","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTRevealTrans"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTScale","package":"druntime","parentType":"","signature":"IID CLSID_DXTScale","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTScale"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTShadow","package":"druntime","parentType":"","signature":"IID CLSID_DXTShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTShadowPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTShadowPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTShadowPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTSlide","package":"druntime","parentType":"","signature":"IID CLSID_DXTSlide","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTSlide"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTSpiral","package":"druntime","parentType":"","signature":"IID CLSID_DXTSpiral","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTSpiral"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTStretch","package":"druntime","parentType":"","signature":"IID CLSID_DXTStretch","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTStretch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTStrips","package":"druntime","parentType":"","signature":"IID CLSID_DXTStrips","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTStrips"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTStripsPP","package":"druntime","parentType":"","signature":"IID CLSID_DXTStripsPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTStripsPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTWave","package":"druntime","parentType":"","signature":"IID CLSID_DXTWave","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTWave"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTWavePP","package":"druntime","parentType":"","signature":"IID CLSID_DXTWavePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTWavePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTWipe","package":"druntime","parentType":"","signature":"IID CLSID_DXTWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTWipePP","package":"druntime","parentType":"","signature":"IID CLSID_DXTWipePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTWipePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_DXTZigzag","package":"druntime","parentType":"","signature":"IID CLSID_DXTZigzag","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_DXTZigzag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_EAPOLManager","package":"druntime","parentType":"","signature":"IID CLSID_EAPOLManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_EAPOLManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Email","package":"druntime","parentType":"","signature":"IID CLSID_Email","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Email"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_EnumAdapterInfo","package":"druntime","parentType":"","signature":"IID CLSID_EnumAdapterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_EnumAdapterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_EVENTQUEUE","package":"druntime","parentType":"","signature":"IID CLSID_EVENTQUEUE","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_EVENTQUEUE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_EXTENDEDERRORINFO","package":"druntime","parentType":"","signature":"IID CLSID_EXTENDEDERRORINFO","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_EXTENDEDERRORINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FadePP","package":"druntime","parentType":"","signature":"IID CLSID_FadePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FadePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FaxNumber","package":"druntime","parentType":"","signature":"IID CLSID_FaxNumber","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FaxNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FilePlaybackTerminal","package":"druntime","parentType":"","signature":"IID CLSID_FilePlaybackTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FilePlaybackTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileProtocol","package":"druntime","parentType":"","signature":"IID CLSID_FileProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileRecordingTerminal","package":"druntime","parentType":"","signature":"IID CLSID_FileRecordingTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileRecordingTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileRecordingTrack","package":"druntime","parentType":"","signature":"IID CLSID_FileRecordingTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileRecordingTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileSearchBand","package":"druntime","parentType":"","signature":"IID CLSID_FileSearchBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileSearchBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileSysColumnProvider","package":"druntime","parentType":"","signature":"IID CLSID_FileSysColumnProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileSysColumnProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FileTerminal","package":"druntime","parentType":"","signature":"IID CLSID_FileTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FileTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FolderShortcut","package":"druntime","parentType":"","signature":"IID CLSID_FolderShortcut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FolderShortcut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FolderViewHost","package":"druntime","parentType":"","signature":"IID CLSID_FolderViewHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FolderViewHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FontNames","package":"druntime","parentType":"","signature":"IID CLSID_FontNames","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FontNames"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FramesCollection","package":"druntime","parentType":"","signature":"IID CLSID_FramesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FramesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FreeSpaceCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_FreeSpaceCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FreeSpaceCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_FtpProtocol","package":"druntime","parentType":"","signature":"IID CLSID_FtpProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_FtpProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_GblComponentCategoriesMgr","package":"druntime","parentType":"","signature":"IID CLSID_GblComponentCategoriesMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_GblComponentCategoriesMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_GLOBAL_BROADCAST","package":"druntime","parentType":"","signature":"IID CLSID_GLOBAL_BROADCAST","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_GLOBAL_BROADCAST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_GopherProtocol","package":"druntime","parentType":"","signature":"IID CLSID_GopherProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_GopherProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_GradientPP","package":"druntime","parentType":"","signature":"IID CLSID_GradientPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_GradientPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HandsetTerminal","package":"druntime","parentType":"","signature":"IID CLSID_HandsetTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HandsetTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HeadsetTerminal","package":"druntime","parentType":"","signature":"IID CLSID_HeadsetTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HeadsetTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HNetCfgMgr","package":"druntime","parentType":"","signature":"IID CLSID_HNetCfgMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HNetCfgMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Hold","package":"druntime","parentType":"","signature":"IID CLSID_Hold","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Hold"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HomeNetAutoConfigService","package":"druntime","parentType":"","signature":"IID CLSID_HomeNetAutoConfigService","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HomeNetAutoConfigService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HomePage","package":"druntime","parentType":"","signature":"IID CLSID_HomePage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HomePage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HostDialogHelper","package":"druntime","parentType":"","signature":"IID CLSID_HostDialogHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HostDialogHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTADocument","package":"druntime","parentType":"","signature":"IID CLSID_HTADocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTADocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCAttachBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTCAttachBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCAttachBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCDefaultDispatch","package":"druntime","parentType":"","signature":"IID CLSID_HTCDefaultDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCDefaultDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCDescBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTCDescBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCDescBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCEventBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTCEventBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCEventBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCMethodBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTCMethodBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCMethodBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTCPropertyBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTCPropertyBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTCPropertyBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLAnchorElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLAnchorElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLAnchorElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLAppBehavior","package":"druntime","parentType":"","signature":"IID CLSID_HTMLAppBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLAppBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLApplication","package":"druntime","parentType":"","signature":"IID CLSID_HTMLApplication","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLApplication"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLAreaElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLAreasCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLAreasCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLAreasCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLAttributeCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLAttributeCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLAttributeCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBaseElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBaseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBaseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBaseFontElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBaseFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBaseFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBGsound","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBGsound","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBGsound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBlockElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBlockElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBlockElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBody","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBody","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBody"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLBRElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLBRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLBRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLButtonElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLCommentElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLCommentElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLCommentElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLCurrentStyle","package":"druntime","parentType":"","signature":"IID CLSID_HTMLCurrentStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLCurrentStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDDElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDDElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDDElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDefaults","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDefaults","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDefaults"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDialog","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDialog","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDialog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDivElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDivElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDivElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDivPosition","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDivPosition","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDivPosition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HtmlDlgSafeHelper","package":"druntime","parentType":"","signature":"IID CLSID_HtmlDlgSafeHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HtmlDlgSafeHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDListElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDocument","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDOMAttribute","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDOMAttribute","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDOMAttribute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDOMImplementation","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDOMImplementation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDOMImplementation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDOMTextNode","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDOMTextNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDOMTextNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLDTElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLDTElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLDTElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLElementCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLEmbed","package":"druntime","parentType":"","signature":"IID CLSID_HTMLEmbed","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLEmbed"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFieldSetElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFieldSetElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFieldSetElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFontElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFormElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFormElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFormElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFrameBase","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFrameBase","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFrameBase"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFrameElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFrameElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFrameElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLFrameSetSite","package":"druntime","parentType":"","signature":"IID CLSID_HTMLFrameSetSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLFrameSetSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLGenericElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLGenericElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLGenericElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLHeadElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLHeadElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLHeadElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLHeaderElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLHeaderElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLHeaderElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLHistory","package":"druntime","parentType":"","signature":"IID CLSID_HTMLHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLHRElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLHRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLHRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLHtmlElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLHtmlElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLHtmlElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLIFrame","package":"druntime","parentType":"","signature":"IID CLSID_HTMLIFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLIFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLImageElementFactory","package":"druntime","parentType":"","signature":"IID CLSID_HTMLImageElementFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLImageElementFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLImg","package":"druntime","parentType":"","signature":"IID CLSID_HTMLImg","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLImg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLInputButtonElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLInputButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLInputButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLInputElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLInputElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLInputElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLInputFileElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLInputFileElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLInputFileElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLInputImage","package":"druntime","parentType":"","signature":"IID CLSID_HTMLInputImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLInputImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLInputTextElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLInputTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLInputTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLIsIndexElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLIsIndexElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLIsIndexElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLabelElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLabelElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLabelElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLegendElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLegendElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLegendElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLIElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLIElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLIElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLinkElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLinkElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLinkElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLListElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLoadOptions","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLoadOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLoadOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLLocation","package":"druntime","parentType":"","signature":"IID CLSID_HTMLLocation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLLocation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLMapElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLMapElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLMapElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLMarqueeElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLMarqueeElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLMarqueeElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLMetaElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLMetaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLMetaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLNamespace","package":"druntime","parentType":"","signature":"IID CLSID_HTMLNamespace","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLNamespace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLNamespaceCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLNamespaceCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLNamespaceCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLNavigator","package":"druntime","parentType":"","signature":"IID CLSID_HTMLNavigator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLNavigator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLNextIdElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLNextIdElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLNextIdElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLNoShowElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLNoShowElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLNoShowElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLObjectElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLObjectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLObjectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLOListElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLOListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLOListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLOptionButtonElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLOptionButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLOptionButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLOptionElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLOptionElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLOptionElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLOptionElementFactory","package":"druntime","parentType":"","signature":"IID CLSID_HTMLOptionElementFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLOptionElementFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLParaElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLParaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLParaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLParamElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLParamElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLParamElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLPhraseElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLPhraseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLPhraseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLPluginDocument","package":"druntime","parentType":"","signature":"IID CLSID_HTMLPluginDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLPluginDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLPopup","package":"druntime","parentType":"","signature":"IID CLSID_HTMLPopup","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLPopup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLRenderStyle","package":"druntime","parentType":"","signature":"IID CLSID_HTMLRenderStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLRenderStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLRichtextElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLRichtextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLRichtextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLRuleStyle","package":"druntime","parentType":"","signature":"IID CLSID_HTMLRuleStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLRuleStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLScreen","package":"druntime","parentType":"","signature":"IID CLSID_HTMLScreen","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLScreen"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLScriptElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLScriptElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLScriptElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLSelectElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLSelectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLSelectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLSpanElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLSpanElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLSpanElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLSpanFlow","package":"druntime","parentType":"","signature":"IID CLSID_HTMLSpanFlow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLSpanFlow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyle","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleFontFace","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleFontFace","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleFontFace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheet","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheetPage","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheetPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheetPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheetPagesCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheetPagesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheetPagesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheetRule","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheetRule","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheetRule"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheetRulesCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheetRulesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheetRulesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLStyleSheetsCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLStyleSheetsCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLStyleSheetsCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTable","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTableCaption","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTableCaption","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTableCaption"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTableCell","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTableCell","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTableCell"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTableCol","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTableCol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTableCol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTableRow","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTableRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTableRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTableSection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTableSection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTableSection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTextAreaElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTextAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTextAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTextElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLTitleElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLTitleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLTitleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLUListElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLUListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLUListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLUnknownElement","package":"druntime","parentType":"","signature":"IID CLSID_HTMLUnknownElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLUnknownElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLUrnCollection","package":"druntime","parentType":"","signature":"IID CLSID_HTMLUrnCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLUrnCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLWindow2","package":"druntime","parentType":"","signature":"IID CLSID_HTMLWindow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLWindow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HTMLWindowProxy","package":"druntime","parentType":"","signature":"IID CLSID_HTMLWindowProxy","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HTMLWindowProxy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HttpProtocol","package":"druntime","parentType":"","signature":"IID CLSID_HttpProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HttpProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HttpSProtocol","package":"druntime","parentType":"","signature":"IID CLSID_HttpSProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HttpSProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_HWShellExecute","package":"druntime","parentType":"","signature":"IID CLSID_HWShellExecute","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_HWShellExecute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_IActiveXSafetyProvider","package":"druntime","parentType":"","signature":"IID CLSID_IActiveXSafetyProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_IActiveXSafetyProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_IImageDecodeFilter","package":"druntime","parentType":"","signature":"IID CLSID_IImageDecodeFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_IImageDecodeFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_IImgCtx","package":"druntime","parentType":"","signature":"IID CLSID_IImgCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_IImgCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ImageList","package":"druntime","parentType":"","signature":"IID CLSID_ImageList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ImageList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ImageProperties","package":"druntime","parentType":"","signature":"IID CLSID_ImageProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ImageProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InProcFreeMarshaler","package":"druntime","parentType":"","signature":"IID CLSID_InProcFreeMarshaler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InProcFreeMarshaler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_IntDitherer","package":"druntime","parentType":"","signature":"IID CLSID_IntDitherer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_IntDitherer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_IntelliForms","package":"druntime","parentType":"","signature":"IID CLSID_IntelliForms","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_IntelliForms"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Internet","package":"druntime","parentType":"","signature":"IID CLSID_Internet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Internet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetButtons","package":"druntime","parentType":"","signature":"IID CLSID_InternetButtons","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetButtons"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetConnectionBeaconServic","package":"druntime","parentType":"","signature":"IID CLSID_InternetConnectionBeaconServic","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetConnectionBeaconServic"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetExplorer","package":"druntime","parentType":"","signature":"IID CLSID_InternetExplorer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetExplorer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetPrintOrdering","package":"druntime","parentType":"","signature":"IID CLSID_InternetPrintOrdering","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetPrintOrdering"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetSecurityManager","package":"druntime","parentType":"","signature":"IID CLSID_InternetSecurityManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetSecurityManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetShortcut","package":"druntime","parentType":"","signature":"IID CLSID_InternetShortcut","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetShortcut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_InternetZoneManager","package":"druntime","parentType":"","signature":"IID CLSID_InternetZoneManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_InternetZoneManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LanConnectionManager","package":"druntime","parentType":"","signature":"IID CLSID_LanConnectionManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LanConnectionManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LargeInteger","package":"druntime","parentType":"","signature":"IID CLSID_LargeInteger","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LargeInteger"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LDAPConnectionObject","package":"druntime","parentType":"","signature":"IID CLSID_LDAPConnectionObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LDAPConnectionObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LDAPObject","package":"druntime","parentType":"","signature":"IID CLSID_LDAPObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LDAPObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LinkColumnProvider","package":"druntime","parentType":"","signature":"IID CLSID_LinkColumnProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LinkColumnProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LocalMachineClasses","package":"druntime","parentType":"","signature":"IID CLSID_LocalMachineClasses","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LocalMachineClasses"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LogManager","package":"druntime","parentType":"","signature":"IID CLSID_LogManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LogManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_LUTBuilderPP","package":"druntime","parentType":"","signature":"IID CLSID_LUTBuilderPP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_LUTBuilderPP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MachineDebugManager","package":"druntime","parentType":"","signature":"IID CLSID_MachineDebugManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MachineDebugManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MailAutoDiscovery","package":"druntime","parentType":"","signature":"IID CLSID_MailAutoDiscovery","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MailAutoDiscovery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MailProtocolADEntry","package":"druntime","parentType":"","signature":"IID CLSID_MailProtocolADEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MailProtocolADEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ManualResetEvent","package":"druntime","parentType":"","signature":"IID CLSID_ManualResetEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ManualResetEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_McastAddressAllocation","package":"druntime","parentType":"","signature":"IID CLSID_McastAddressAllocation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_McastAddressAllocation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MediaStreamTerminal","package":"druntime","parentType":"","signature":"IID CLSID_MediaStreamTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MediaStreamTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MergedCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_MergedCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MergedCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MHTMLDocument","package":"druntime","parentType":"","signature":"IID CLSID_MHTMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MHTMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MicrophoneTerminal","package":"druntime","parentType":"","signature":"IID CLSID_MicrophoneTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MicrophoneTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MicrosoftDS","package":"druntime","parentType":"","signature":"IID CLSID_MicrosoftDS","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MicrosoftDS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MigrationWizardAuto","package":"druntime","parentType":"","signature":"IID CLSID_MigrationWizardAuto","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MigrationWizardAuto"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MkProtocol","package":"druntime","parentType":"","signature":"IID CLSID_MkProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MkProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MofCompiler","package":"druntime","parentType":"","signature":"IID CLSID_MofCompiler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MofCompiler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MountedVolume","package":"druntime","parentType":"","signature":"IID CLSID_MountedVolume","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MountedVolume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSBurnEngineObj","package":"druntime","parentType":"","signature":"IID CLSID_MSBurnEngineObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSBurnEngineObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSDATT","package":"druntime","parentType":"","signature":"IID CLSID_MSDATT","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSDATT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSDAVTM","package":"druntime","parentType":"","signature":"IID CLSID_MSDAVTM","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSDAVTM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSDiscMasterObj","package":"druntime","parentType":"","signature":"IID CLSID_MSDiscMasterObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSDiscMasterObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSDiscRecorderObj","package":"druntime","parentType":"","signature":"IID CLSID_MSDiscRecorderObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSDiscRecorderObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSDiscStashObj","package":"druntime","parentType":"","signature":"IID CLSID_MSDiscStashObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSDiscStashObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSEnumDiscRecordersObj","package":"druntime","parentType":"","signature":"IID CLSID_MSEnumDiscRecordersObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSEnumDiscRecordersObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MSOButtons","package":"druntime","parentType":"","signature":"IID CLSID_MSOButtons","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MSOButtons"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MyComputer","package":"druntime","parentType":"","signature":"IID CLSID_MyComputer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MyComputer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_MyDocuments","package":"druntime","parentType":"","signature":"IID CLSID_MyDocuments","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_MyDocuments"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NameTranslate","package":"druntime","parentType":"","signature":"IID CLSID_NameTranslate","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NameTranslate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetAddress","package":"druntime","parentType":"","signature":"IID CLSID_NetAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetConnectionHNetUtil","package":"druntime","parentType":"","signature":"IID CLSID_NetConnectionHNetUtil","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetConnectionHNetUtil"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetConnectionUiUtilities","package":"druntime","parentType":"","signature":"IID CLSID_NetConnectionUiUtilities","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetConnectionUiUtilities"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetCrawler","package":"druntime","parentType":"","signature":"IID CLSID_NetCrawler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetCrawler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetSharingManager","package":"druntime","parentType":"","signature":"IID CLSID_NetSharingManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetSharingManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetworkDomain","package":"druntime","parentType":"","signature":"IID CLSID_NetworkDomain","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetworkDomain"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetworkPlaces","package":"druntime","parentType":"","signature":"IID CLSID_NetworkPlaces","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetworkPlaces"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetworkServer","package":"druntime","parentType":"","signature":"IID CLSID_NetworkServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetworkServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetworkShare","package":"druntime","parentType":"","signature":"IID CLSID_NetworkShare","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetworkShare"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NetworkType","package":"druntime","parentType":"","signature":"IID CLSID_NetworkType","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NetworkType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NodeType","package":"druntime","parentType":"","signature":"IID CLSID_NodeType","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NodeType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NotificaitonTest1","package":"druntime","parentType":"","signature":"IID CLSID_NotificaitonTest1","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NotificaitonTest1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NotificaitonTest2","package":"druntime","parentType":"","signature":"IID CLSID_NotificaitonTest2","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NotificaitonTest2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NotificaitonTest3","package":"druntime","parentType":"","signature":"IID CLSID_NotificaitonTest3","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NotificaitonTest3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NotificaitonTest4","package":"druntime","parentType":"","signature":"IID CLSID_NotificaitonTest4","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NotificaitonTest4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_NotificationManager","package":"druntime","parentType":"","signature":"IID CLSID_NotificationManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_NotificationManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ObjectManager","package":"druntime","parentType":"","signature":"IID CLSID_ObjectManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ObjectManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OctetList","package":"druntime","parentType":"","signature":"IID CLSID_OctetList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OctetList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OldHTMLDocument","package":"druntime","parentType":"","signature":"IID CLSID_OldHTMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OldHTMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OldHTMLFormElement","package":"druntime","parentType":"","signature":"IID CLSID_OldHTMLFormElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OldHTMLFormElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OLEDB_CONVERSIONLIBRARY","package":"druntime","parentType":"","signature":"IID CLSID_OLEDB_CONVERSIONLIBRARY","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OLEDB_CONVERSIONLIBRARY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OLEDB_ENUMERATOR","package":"druntime","parentType":"","signature":"IID CLSID_OLEDB_ENUMERATOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OLEDB_ENUMERATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_OLEDB_ROWPOSITIONLIBRARY","package":"druntime","parentType":"","signature":"IID CLSID_OLEDB_ROWPOSITIONLIBRARY","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_OLEDB_ROWPOSITIONLIBRARY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PassportClientServices","package":"druntime","parentType":"","signature":"IID CLSID_PassportClientServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PassportClientServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Path","package":"druntime","parentType":"","signature":"IID CLSID_Path","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Path"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Pathname","package":"druntime","parentType":"","signature":"IID CLSID_Pathname","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Pathname"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PeerFactory","package":"druntime","parentType":"","signature":"IID CLSID_PeerFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PeerFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PendingProxyConnection","package":"druntime","parentType":"","signature":"IID CLSID_PendingProxyConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PendingProxyConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PersistentDataChannel","package":"druntime","parentType":"","signature":"IID CLSID_PersistentDataChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PersistentDataChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PersistPropset","package":"druntime","parentType":"","signature":"IID CLSID_PersistPropset","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PersistPropset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Picture_Dib","package":"druntime","parentType":"","signature":"IID CLSID_Picture_Dib","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Picture_Dib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Picture_EnhMetafile","package":"druntime","parentType":"","signature":"IID CLSID_Picture_EnhMetafile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Picture_EnhMetafile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Picture_Metafile","package":"druntime","parentType":"","signature":"IID CLSID_Picture_Metafile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Picture_Metafile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Pixelate","package":"druntime","parentType":"","signature":"IID CLSID_Pixelate","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Pixelate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PixelatePP","package":"druntime","parentType":"","signature":"IID CLSID_PixelatePP","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PixelatePP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PluggableSuperclassRegistratio","package":"druntime","parentType":"","signature":"IID CLSID_PluggableSuperclassRegistratio","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PluggableSuperclassRegistratio"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PluggableTerminalRegistration","package":"druntime","parentType":"","signature":"IID CLSID_PluggableTerminalRegistration","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PluggableTerminalRegistration"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PostAgent","package":"druntime","parentType":"","signature":"IID CLSID_PostAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PostAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PostalAddress","package":"druntime","parentType":"","signature":"IID CLSID_PostalAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PostalAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PrimaryControlChannel","package":"druntime","parentType":"","signature":"IID CLSID_PrimaryControlChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PrimaryControlChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Printers","package":"druntime","parentType":"","signature":"IID CLSID_Printers","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Printers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PROCESS_BROADCAST","package":"druntime","parentType":"","signature":"IID CLSID_PROCESS_BROADCAST","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PROCESS_BROADCAST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ProcessDebugManager","package":"druntime","parentType":"","signature":"IID CLSID_ProcessDebugManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ProcessDebugManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ProgressDialog","package":"druntime","parentType":"","signature":"IID CLSID_ProgressDialog","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ProgressDialog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PropertiesUI","package":"druntime","parentType":"","signature":"IID CLSID_PropertiesUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PropertiesUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PropertyEntry","package":"druntime","parentType":"","signature":"IID CLSID_PropertyEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PropertyEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PropertyValue","package":"druntime","parentType":"","signature":"IID CLSID_PropertyValue","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PropertyValue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSBindCtx","package":"druntime","parentType":"","signature":"IID CLSID_PSBindCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSBindCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSClassObject","package":"druntime","parentType":"","signature":"IID CLSID_PSClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSClientSite","package":"druntime","parentType":"","signature":"IID CLSID_PSClientSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSClientSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSDragDrop","package":"druntime","parentType":"","signature":"IID CLSID_PSDragDrop","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSDragDrop"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSEnumerators","package":"druntime","parentType":"","signature":"IID CLSID_PSEnumerators","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSEnumerators"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PseudoSink","package":"druntime","parentType":"","signature":"IID CLSID_PseudoSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PseudoSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSGenObject","package":"druntime","parentType":"","signature":"IID CLSID_PSGenObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSGenObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSInPlaceActive","package":"druntime","parentType":"","signature":"IID CLSID_PSInPlaceActive","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSInPlaceActive"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSInPlaceFrame","package":"druntime","parentType":"","signature":"IID CLSID_PSInPlaceFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSInPlaceFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PSUrlMonProxy","package":"druntime","parentType":"","signature":"IID CLSID_PSUrlMonProxy","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PSUrlMonProxy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PublishDropTarget","package":"druntime","parentType":"","signature":"IID CLSID_PublishDropTarget","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PublishDropTarget"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_PublishingWizard","package":"druntime","parentType":"","signature":"IID CLSID_PublishingWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_PublishingWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_QueryAssociations","package":"druntime","parentType":"","signature":"IID CLSID_QueryAssociations","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_QueryAssociations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_QueryCancelAutoPlay","package":"druntime","parentType":"","signature":"IID CLSID_QueryCancelAutoPlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_QueryCancelAutoPlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_RecycleBin","package":"druntime","parentType":"","signature":"IID CLSID_RecycleBin","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_RecycleBin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_RemoteUnknownPSFactory","package":"druntime","parentType":"","signature":"IID CLSID_RemoteUnknownPSFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_RemoteUnknownPSFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Rendezvous","package":"druntime","parentType":"","signature":"IID CLSID_Rendezvous","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Rendezvous"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ReplicaPointer","package":"druntime","parentType":"","signature":"IID CLSID_ReplicaPointer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ReplicaPointer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Request","package":"druntime","parentType":"","signature":"IID CLSID_Request","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Request"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_RequestMakeCall","package":"druntime","parentType":"","signature":"IID CLSID_RequestMakeCall","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_RequestMakeCall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ResProtocol","package":"druntime","parentType":"","signature":"IID CLSID_ResProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ResProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_RTCClient","package":"druntime","parentType":"","signature":"IID CLSID_RTCClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_RTCClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Scriptlet","package":"druntime","parentType":"","signature":"IID CLSID_Scriptlet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Scriptlet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SdoMachine","package":"druntime","parentType":"","signature":"IID CLSID_SdoMachine","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SdoMachine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SdpConferenceBlob","package":"druntime","parentType":"","signature":"IID CLSID_SdpConferenceBlob","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SdpConferenceBlob"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SearchAssistantOC","package":"druntime","parentType":"","signature":"IID CLSID_SearchAssistantOC","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SearchAssistantOC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SearchCommand","package":"druntime","parentType":"","signature":"IID CLSID_SearchCommand","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SearchCommand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SecondaryControlChannel","package":"druntime","parentType":"","signature":"IID CLSID_SecondaryControlChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SecondaryControlChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SecurityDescriptor","package":"druntime","parentType":"","signature":"IID CLSID_SecurityDescriptor","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SecurityDescriptor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SENS","package":"druntime","parentType":"","signature":"IID CLSID_SENS","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SENS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ServiceManager","package":"druntime","parentType":"","signature":"IID CLSID_ServiceManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ServiceManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingApplicationDefinition","package":"druntime","parentType":"","signature":"IID CLSID_SharingApplicationDefinition","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingApplicationDefinition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingConfiguration","package":"druntime","parentType":"","signature":"IID CLSID_SharingConfiguration","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingConfiguration"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingManagerEnumApplicationDe","package":"druntime","parentType":"","signature":"IID CLSID_SharingManagerEnumApplicationDe","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingManagerEnumApplicationDe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingManagerEnumPortMapping","package":"druntime","parentType":"","signature":"IID CLSID_SharingManagerEnumPortMapping","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingManagerEnumPortMapping"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingManagerEnumPrivateConnec","package":"druntime","parentType":"","signature":"IID CLSID_SharingManagerEnumPrivateConnec","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingManagerEnumPrivateConnec"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SharingManagerEnumPublicConnect","package":"druntime","parentType":"","signature":"IID CLSID_SharingManagerEnumPublicConnect","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SharingManagerEnumPublicConnect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Shell","package":"druntime","parentType":"","signature":"IID CLSID_Shell","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Shell"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellBrowserWindow","package":"druntime","parentType":"","signature":"IID CLSID_ShellBrowserWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellBrowserWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellDesktop","package":"druntime","parentType":"","signature":"IID CLSID_ShellDesktop","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellDesktop"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellDispatchInproc","package":"druntime","parentType":"","signature":"IID CLSID_ShellDispatchInproc","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellDispatchInproc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellFolderItem","package":"druntime","parentType":"","signature":"IID CLSID_ShellFolderItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellFolderItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellFolderView","package":"druntime","parentType":"","signature":"IID CLSID_ShellFolderView","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellFolderView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellFolderViewOC","package":"druntime","parentType":"","signature":"IID CLSID_ShellFolderViewOC","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellFolderViewOC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellFSFolder","package":"druntime","parentType":"","signature":"IID CLSID_ShellFSFolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellFSFolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellImageDataFactory","package":"druntime","parentType":"","signature":"IID CLSID_ShellImageDataFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellImageDataFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLink","package":"druntime","parentType":"","signature":"IID CLSID_ShellLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLinkObject","package":"druntime","parentType":"","signature":"IID CLSID_ShellLinkObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLinkObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLocalMachine","package":"druntime","parentType":"","signature":"IID CLSID_ShellLocalMachine","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLocalMachine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLogonEnumUsers","package":"druntime","parentType":"","signature":"IID CLSID_ShellLogonEnumUsers","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLogonEnumUsers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLogonStatusHost","package":"druntime","parentType":"","signature":"IID CLSID_ShellLogonStatusHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLogonStatusHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellLogonUser","package":"druntime","parentType":"","signature":"IID CLSID_ShellLogonUser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellLogonUser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellNameSpace","package":"druntime","parentType":"","signature":"IID CLSID_ShellNameSpace","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellNameSpace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellUIHelper","package":"druntime","parentType":"","signature":"IID CLSID_ShellUIHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellUIHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ShellWindows","package":"druntime","parentType":"","signature":"IID CLSID_ShellWindows","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ShellWindows"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SizeCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_SizeCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SizeCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SoftDistExt","package":"druntime","parentType":"","signature":"IID CLSID_SoftDistExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SoftDistExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SpeakerphoneTerminal","package":"druntime","parentType":"","signature":"IID CLSID_SpeakerphoneTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SpeakerphoneTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SpeakersTerminal","package":"druntime","parentType":"","signature":"IID CLSID_SpeakersTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SpeakersTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SpeechUIServer","package":"druntime","parentType":"","signature":"IID CLSID_SpeechUIServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SpeechUIServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StaticDib","package":"druntime","parentType":"","signature":"IID CLSID_StaticDib","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StaticDib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StaticMetafile","package":"druntime","parentType":"","signature":"IID CLSID_StaticMetafile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StaticMetafile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdAsyncActManager","package":"druntime","parentType":"","signature":"IID CLSID_StdAsyncActManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdAsyncActManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdComponentCategoriesMgr","package":"druntime","parentType":"","signature":"IID CLSID_StdComponentCategoriesMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdComponentCategoriesMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdEncodingFilterFac","package":"druntime","parentType":"","signature":"IID CLSID_StdEncodingFilterFac","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdEncodingFilterFac"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdEvent","package":"druntime","parentType":"","signature":"IID CLSID_StdEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdFont","package":"druntime","parentType":"","signature":"IID CLSID_StdFont","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdFont"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdGlobalInterfaceTable","package":"druntime","parentType":"","signature":"IID CLSID_StdGlobalInterfaceTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdGlobalInterfaceTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdHlink","package":"druntime","parentType":"","signature":"IID CLSID_StdHlink","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdHlink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdHlinkBrowseContext","package":"druntime","parentType":"","signature":"IID CLSID_StdHlinkBrowseContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdHlinkBrowseContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdMarshal","package":"druntime","parentType":"","signature":"IID CLSID_StdMarshal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdMarshal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdNotificationMgr","package":"druntime","parentType":"","signature":"IID CLSID_StdNotificationMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdNotificationMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdPicture","package":"druntime","parentType":"","signature":"IID CLSID_StdPicture","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdPicture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdURLMoniker","package":"druntime","parentType":"","signature":"IID CLSID_StdURLMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdURLMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StdURLProtocol","package":"druntime","parentType":"","signature":"IID CLSID_StdURLProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StdURLProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StgFolder","package":"druntime","parentType":"","signature":"IID CLSID_StgFolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StgFolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StockColorPage","package":"druntime","parentType":"","signature":"IID CLSID_StockColorPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StockColorPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StockFontPage","package":"druntime","parentType":"","signature":"IID CLSID_StockFontPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StockFontPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_StockPicturePage","package":"druntime","parentType":"","signature":"IID CLSID_StockPicturePage","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_StockPicturePage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SubscriptionMgr","package":"druntime","parentType":"","signature":"IID CLSID_SubscriptionMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SubscriptionMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SubscriptionThrottler","package":"druntime","parentType":"","signature":"IID CLSID_SubscriptionThrottler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SubscriptionThrottler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemDateTime","package":"druntime","parentType":"","signature":"IID CLSID_SWbemDateTime","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemDateTime"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemEventSource","package":"druntime","parentType":"","signature":"IID CLSID_SWbemEventSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemEventSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemLastError","package":"druntime","parentType":"","signature":"IID CLSID_SWbemLastError","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemLastError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemLocator","package":"druntime","parentType":"","signature":"IID CLSID_SWbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemMethod","package":"druntime","parentType":"","signature":"IID CLSID_SWbemMethod","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemMethod"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemMethodSet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemMethodSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemMethodSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemNamedValue","package":"druntime","parentType":"","signature":"IID CLSID_SWbemNamedValue","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemNamedValue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemNamedValueSet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemNamedValueSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemNamedValueSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemObject","package":"druntime","parentType":"","signature":"IID CLSID_SWbemObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemObjectEx","package":"druntime","parentType":"","signature":"IID CLSID_SWbemObjectEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemObjectEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemObjectPath","package":"druntime","parentType":"","signature":"IID CLSID_SWbemObjectPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemObjectPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemObjectSet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemObjectSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemObjectSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemPrivilege","package":"druntime","parentType":"","signature":"IID CLSID_SWbemPrivilege","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemPrivilege"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemPrivilegeSet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemPrivilegeSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemPrivilegeSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemProperty","package":"druntime","parentType":"","signature":"IID CLSID_SWbemProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemPropertySet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemPropertySet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemPropertySet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemQualifier","package":"druntime","parentType":"","signature":"IID CLSID_SWbemQualifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemQualifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemQualifierSet","package":"druntime","parentType":"","signature":"IID CLSID_SWbemQualifierSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemQualifierSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemRefreshableItem","package":"druntime","parentType":"","signature":"IID CLSID_SWbemRefreshableItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemRefreshableItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemRefresher","package":"druntime","parentType":"","signature":"IID CLSID_SWbemRefresher","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemRefresher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemSecurity","package":"druntime","parentType":"","signature":"IID CLSID_SWbemSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemServices","package":"druntime","parentType":"","signature":"IID CLSID_SWbemServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemServicesEx","package":"druntime","parentType":"","signature":"IID CLSID_SWbemServicesEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemServicesEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SWbemSink","package":"druntime","parentType":"","signature":"IID CLSID_SWbemSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SWbemSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SynchronizeContainer","package":"druntime","parentType":"","signature":"IID CLSID_SynchronizeContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SynchronizeContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_SyncMgr","package":"druntime","parentType":"","signature":"IID CLSID_SyncMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_SyncMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TAPI","package":"druntime","parentType":"","signature":"IID CLSID_TAPI","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TAPI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TaskbarList","package":"druntime","parentType":"","signature":"IID CLSID_TaskbarList","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TaskbarList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TaskManager","package":"druntime","parentType":"","signature":"IID CLSID_TaskManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TaskManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TerminalManager","package":"druntime","parentType":"","signature":"IID CLSID_TerminalManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TerminalManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_THREAD_BROADCAST","package":"druntime","parentType":"","signature":"IID CLSID_THREAD_BROADCAST","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_THREAD_BROADCAST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ThreadDialogProcParam","package":"druntime","parentType":"","signature":"IID CLSID_ThreadDialogProcParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ThreadDialogProcParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ThumbnailFCNHandler","package":"druntime","parentType":"","signature":"IID CLSID_ThumbnailFCNHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ThumbnailFCNHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ThumbnailUpdater","package":"druntime","parentType":"","signature":"IID CLSID_ThumbnailUpdater","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ThumbnailUpdater"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIME","package":"druntime","parentType":"","signature":"IID CLSID_TIME","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMEAnimation","package":"druntime","parentType":"","signature":"IID CLSID_TIMEAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMEAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TimeCategorizer","package":"druntime","parentType":"","signature":"IID CLSID_TimeCategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TimeCategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMEColorAnimation","package":"druntime","parentType":"","signature":"IID CLSID_TIMEColorAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMEColorAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMEFactory","package":"druntime","parentType":"","signature":"IID CLSID_TIMEFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMEFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMEFilterAnimation","package":"druntime","parentType":"","signature":"IID CLSID_TIMEFilterAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMEFilterAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMEMotionAnimation","package":"druntime","parentType":"","signature":"IID CLSID_TIMEMotionAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMEMotionAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TIMESetAnimation","package":"druntime","parentType":"","signature":"IID CLSID_TIMESetAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TIMESetAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_Timestamp","package":"druntime","parentType":"","signature":"IID CLSID_Timestamp","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_Timestamp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_ToolbarExtButtons","package":"druntime","parentType":"","signature":"IID CLSID_ToolbarExtButtons","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_ToolbarExtButtons"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TrackFile","package":"druntime","parentType":"","signature":"IID CLSID_TrackFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TrackFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TrkForceOwnership","package":"druntime","parentType":"","signature":"IID CLSID_TrkForceOwnership","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TrkForceOwnership"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TrkRestoreNotify","package":"druntime","parentType":"","signature":"IID CLSID_TrkRestoreNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TrkRestoreNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TrkRestoreParser","package":"druntime","parentType":"","signature":"IID CLSID_TrkRestoreParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TrkRestoreParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_TypedName","package":"druntime","parentType":"","signature":"IID CLSID_TypedName","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_TypedName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UmiLDAPQueryObject","package":"druntime","parentType":"","signature":"IID CLSID_UmiLDAPQueryObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UmiLDAPQueryObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UnsecuredApartment","package":"druntime","parentType":"","signature":"IID CLSID_UnsecuredApartment","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UnsecuredApartment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDescriptionDocument","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDescriptionDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDescriptionDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDevice","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDeviceFinder","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDeviceFinder","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDeviceFinder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDeviceHostICSSupport","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDeviceHostICSSupport","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDeviceHostICSSupport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDeviceHostSetup","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDeviceHostSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDeviceHostSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPDevices","package":"druntime","parentType":"","signature":"IID CLSID_UPnPDevices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPDevices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPNAT","package":"druntime","parentType":"","signature":"IID CLSID_UPnPNAT","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPNAT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPRegistrar","package":"druntime","parentType":"","signature":"IID CLSID_UPnPRegistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPRegistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPService","package":"druntime","parentType":"","signature":"IID CLSID_UPnPService","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UPnPServices","package":"druntime","parentType":"","signature":"IID CLSID_UPnPServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UPnPServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UrlMkBindCtx","package":"druntime","parentType":"","signature":"IID CLSID_UrlMkBindCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UrlMkBindCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UserEventTimer","package":"druntime","parentType":"","signature":"IID CLSID_UserEventTimer","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UserEventTimer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UserEventTimerCallback","package":"druntime","parentType":"","signature":"IID CLSID_UserEventTimerCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UserEventTimerCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_UserNotification","package":"druntime","parentType":"","signature":"IID CLSID_UserNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_UserNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_VideoInputTerminal","package":"druntime","parentType":"","signature":"IID CLSID_VideoInputTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_VideoInputTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_VideoWindowTerm","package":"druntime","parentType":"","signature":"IID CLSID_VideoWindowTerm","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_VideoWindowTerm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_VirusScan","package":"druntime","parentType":"","signature":"IID CLSID_VirusScan","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_VirusScan"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemAdministrativeLocator","package":"druntime","parentType":"","signature":"IID CLSID_WbemAdministrativeLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemAdministrativeLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemAuthenticatedLocator","package":"druntime","parentType":"","signature":"IID CLSID_WbemAuthenticatedLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemAuthenticatedLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemBackupRestore","package":"druntime","parentType":"","signature":"IID CLSID_WbemBackupRestore","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemBackupRestore"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemClassObject","package":"druntime","parentType":"","signature":"IID CLSID_WbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemContext","package":"druntime","parentType":"","signature":"IID CLSID_WbemContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemDCOMTransport","package":"druntime","parentType":"","signature":"IID CLSID_WbemDCOMTransport","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemDCOMTransport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemDecoupledBasicEventProvide","package":"druntime","parentType":"","signature":"IID CLSID_WbemDecoupledBasicEventProvide","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemDecoupledBasicEventProvide"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemDecoupledRegistrar","package":"druntime","parentType":"","signature":"IID CLSID_WbemDecoupledRegistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemDecoupledRegistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemDefPath","package":"druntime","parentType":"","signature":"IID CLSID_WbemDefPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemDefPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemLevel1Login","package":"druntime","parentType":"","signature":"IID CLSID_WbemLevel1Login","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemLevel1Login"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemLocalAddrRes","package":"druntime","parentType":"","signature":"IID CLSID_WbemLocalAddrRes","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemLocalAddrRes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemLocator","package":"druntime","parentType":"","signature":"IID CLSID_WbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemObjectTextSrc","package":"druntime","parentType":"","signature":"IID CLSID_WbemObjectTextSrc","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemObjectTextSrc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemQuery","package":"druntime","parentType":"","signature":"IID CLSID_WbemQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemRefresher","package":"druntime","parentType":"","signature":"IID CLSID_WbemRefresher","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemRefresher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemStatusCodeText","package":"druntime","parentType":"","signature":"IID CLSID_WbemStatusCodeText","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemStatusCodeText"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemUnauthenticatedLocator","package":"druntime","parentType":"","signature":"IID CLSID_WbemUnauthenticatedLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemUnauthenticatedLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WbemUninitializedClassObject","package":"druntime","parentType":"","signature":"IID CLSID_WbemUninitializedClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WbemUninitializedClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebBrowser","package":"druntime","parentType":"","signature":"IID CLSID_WebBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebBrowser_V1","package":"druntime","parentType":"","signature":"IID CLSID_WebBrowser_V1","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebBrowser_V1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebCheck","package":"druntime","parentType":"","signature":"IID CLSID_WebCheck","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebCheck"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebCheckDefaultProcess","package":"druntime","parentType":"","signature":"IID CLSID_WebCheckDefaultProcess","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebCheckDefaultProcess"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebCheckOfflineSync","package":"druntime","parentType":"","signature":"IID CLSID_WebCheckOfflineSync","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebCheckOfflineSync"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebCrawlerAgent","package":"druntime","parentType":"","signature":"IID CLSID_WebCrawlerAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebCrawlerAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebViewFolderContents","package":"druntime","parentType":"","signature":"IID CLSID_WebViewFolderContents","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebViewFolderContents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WebWizardHost","package":"druntime","parentType":"","signature":"IID CLSID_WebWizardHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WebWizardHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_wfolders","package":"druntime","parentType":"","signature":"IID CLSID_wfolders","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_wfolders"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WinNTConnectionObject","package":"druntime","parentType":"","signature":"IID CLSID_WinNTConnectionObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WinNTConnectionObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WinNTObject","package":"druntime","parentType":"","signature":"IID CLSID_WinNTObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WinNTObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WinNTSystemInfo","package":"druntime","parentType":"","signature":"IID CLSID_WinNTSystemInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WinNTSystemInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_WMIExtension","package":"druntime","parentType":"","signature":"IID CLSID_WMIExtension","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_WMIExtension"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_XMLDocument","package":"druntime","parentType":"","signature":"IID CLSID_XMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_XMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_XMLDSOControl","package":"druntime","parentType":"","signature":"IID CLSID_XMLDSOControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_XMLDSOControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_XMLHTTPRequest","package":"druntime","parentType":"","signature":"IID CLSID_XMLHTTPRequest","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_XMLHTTPRequest"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"CLSID_XMLParser","package":"druntime","parentType":"","signature":"IID CLSID_XMLParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#CLSID_XMLParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_AUTOMATICUPDATE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_AUTOMATICUPDATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_AUTOMATICUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_BTREE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_BTREE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_BTREE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_CHECK_OPTION","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_CHECK_OPTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_CHECK_OPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_CLUSTERED","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_CLUSTERED","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_CLUSTERED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_CONSTRAINT_CHECK_DEFERRE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_CONSTRAINT_CHECK_DEFERRE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_CONSTRAINT_CHECK_DEFERRE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_DISALLOWNULL","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_DISALLOWNULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_DISALLOWNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_DROP_CASCADE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_DROP_CASCADE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_DROP_CASCADE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_EXPLICITUPDATE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_EXPLICITUPDATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_EXPLICITUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_FILLFACTOR","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_FILLFACTOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_FILLFACTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_HASH","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_HASH","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_HASH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_IGNOREANYNULL","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_IGNOREANYNULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_IGNOREANYNULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_IGNORENULL","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_IGNORENULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_IGNORENULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_INITIALSIZE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_INITIALSIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_INITIALSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_NONCLUSTERED","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_NONCLUSTERED","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_NONCLUSTERED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_ON_COMMIT_PRESERVE_ROWS","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_ON_COMMIT_PRESERVE_ROWS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_ON_COMMIT_PRESERVE_ROWS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_PRIMARY","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_PRIMARY","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_SORTBOOKMARKS","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_SORTBOOKMARKS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_SORTBOOKMARKS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DB_PROPERTY_UNIQUE","package":"druntime","parentType":"","signature":"IID DB_PROPERTY_UNIQUE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DB_PROPERTY_UNIQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBCOL_SELFCOLUMNS","package":"druntime","parentType":"","signature":"IID DBCOL_SELFCOLUMNS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBCOL_SELFCOLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBCOL_SPECIALCOL","package":"druntime","parentType":"","signature":"IID DBCOL_SPECIALCOL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBCOL_SPECIALCOL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_COMMAND","package":"druntime","parentType":"","signature":"IID DBGUID_COMMAND","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_COMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_CONTAINEROBJECT","package":"druntime","parentType":"","signature":"IID DBGUID_CONTAINEROBJECT","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_CONTAINEROBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_DBSQL","package":"druntime","parentType":"","signature":"IID DBGUID_DBSQL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_DBSQL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_DEFAULT","package":"druntime","parentType":"","signature":"IID DBGUID_DEFAULT","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_DSO","package":"druntime","parentType":"","signature":"IID DBGUID_DSO","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_DSO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_HISTOGRAM_ROWSET","package":"druntime","parentType":"","signature":"IID DBGUID_HISTOGRAM_ROWSET","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_HISTOGRAM_ROWSET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_LDAPDialect","package":"druntime","parentType":"","signature":"IID DBGUID_LDAPDialect","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_LDAPDialect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_LIKE_DOS","package":"druntime","parentType":"","signature":"IID DBGUID_LIKE_DOS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_LIKE_DOS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_LIKE_MAPI","package":"druntime","parentType":"","signature":"IID DBGUID_LIKE_MAPI","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_LIKE_MAPI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_LIKE_OFS","package":"druntime","parentType":"","signature":"IID DBGUID_LIKE_OFS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_LIKE_OFS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_LIKE_SQL","package":"druntime","parentType":"","signature":"IID DBGUID_LIKE_SQL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_LIKE_SQL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_MDX","package":"druntime","parentType":"","signature":"IID DBGUID_MDX","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_MDX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_ROW","package":"druntime","parentType":"","signature":"IID DBGUID_ROW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_ROW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_ROWSET","package":"druntime","parentType":"","signature":"IID DBGUID_ROWSET","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_ROWSET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_SESSION","package":"druntime","parentType":"","signature":"IID DBGUID_SESSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_SESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_SQL","package":"druntime","parentType":"","signature":"IID DBGUID_SQL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_SQL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBGUID_STREAM","package":"druntime","parentType":"","signature":"IID DBGUID_STREAM","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBGUID_STREAM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_CHARACTERSET","package":"druntime","parentType":"","signature":"IID DBOBJECT_CHARACTERSET","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_CHARACTERSET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_COLLATION","package":"druntime","parentType":"","signature":"IID DBOBJECT_COLLATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_COLLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_COLUMN","package":"druntime","parentType":"","signature":"IID DBOBJECT_COLUMN","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_COLUMN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_DATABASE","package":"druntime","parentType":"","signature":"IID DBOBJECT_DATABASE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_DATABASE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_DOMAIN","package":"druntime","parentType":"","signature":"IID DBOBJECT_DOMAIN","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_DOMAIN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_PROCEDURE","package":"druntime","parentType":"","signature":"IID DBOBJECT_PROCEDURE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_PROCEDURE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_SCHEMA","package":"druntime","parentType":"","signature":"IID DBOBJECT_SCHEMA","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_SCHEMA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_SCHEMAROWSET","package":"druntime","parentType":"","signature":"IID DBOBJECT_SCHEMAROWSET","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_SCHEMAROWSET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_TABLE","package":"druntime","parentType":"","signature":"IID DBOBJECT_TABLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_TRANSLATION","package":"druntime","parentType":"","signature":"IID DBOBJECT_TRANSLATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_TRANSLATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_TRUSTEE","package":"druntime","parentType":"","signature":"IID DBOBJECT_TRUSTEE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_TRUSTEE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBOBJECT_VIEW","package":"druntime","parentType":"","signature":"IID DBOBJECT_VIEW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBOBJECT_VIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_ADSIBIND","package":"druntime","parentType":"","signature":"IID DBPROPSET_ADSIBIND","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_ADSIBIND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_ADSISEARCH","package":"druntime","parentType":"","signature":"IID DBPROPSET_ADSISEARCH","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_ADSISEARCH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_COLUMN","package":"druntime","parentType":"","signature":"IID DBPROPSET_COLUMN","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_COLUMN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_COLUMNALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_COLUMNALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_COLUMNALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_CONSTRAINTALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_CONSTRAINTALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_CONSTRAINTALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DATASOURCE","package":"druntime","parentType":"","signature":"IID DBPROPSET_DATASOURCE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DATASOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DATASOURCEALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_DATASOURCEALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DATASOURCEALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DATASOURCEINFO","package":"druntime","parentType":"","signature":"IID DBPROPSET_DATASOURCEINFO","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DATASOURCEINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DATASOURCEINFOALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_DATASOURCEINFOALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DATASOURCEINFOALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DBINIT","package":"druntime","parentType":"","signature":"IID DBPROPSET_DBINIT","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DBINIT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_DBINITALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_DBINITALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_DBINITALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_INDEX","package":"druntime","parentType":"","signature":"IID DBPROPSET_INDEX","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_INDEXALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_INDEXALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_INDEXALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_PROPERTIESINERROR","package":"druntime","parentType":"","signature":"IID DBPROPSET_PROPERTIESINERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_PROPERTIESINERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_ROWSET","package":"druntime","parentType":"","signature":"IID DBPROPSET_ROWSET","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_ROWSET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_ROWSETALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_ROWSETALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_ROWSETALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_SESSION","package":"druntime","parentType":"","signature":"IID DBPROPSET_SESSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_SESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_SESSIONALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_SESSIONALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_SESSIONALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_STREAM","package":"druntime","parentType":"","signature":"IID DBPROPSET_STREAM","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_STREAM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_STREAMALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_STREAMALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_STREAMALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_TABLE","package":"druntime","parentType":"","signature":"IID DBPROPSET_TABLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_TABLEALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_TABLEALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_TABLEALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_TRUSTEE","package":"druntime","parentType":"","signature":"IID DBPROPSET_TRUSTEE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_TRUSTEE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_TRUSTEEALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_TRUSTEEALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_TRUSTEEALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_VIEW","package":"druntime","parentType":"","signature":"IID DBPROPSET_VIEW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_VIEW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBPROPSET_VIEWALL","package":"druntime","parentType":"","signature":"IID DBPROPSET_VIEWALL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBPROPSET_VIEWALL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_ASSERTIONS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_ASSERTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_ASSERTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CATALOGS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CATALOGS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CATALOGS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CHARACTER_SETS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CHARACTER_SETS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CHARACTER_SETS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CHECK_CONSTRAINTS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CHECK_CONSTRAINTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CHECK_CONSTRAINTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_COLLATIONS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_COLLATIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_COLLATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_COLUMN_DOMAIN_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_COLUMN_DOMAIN_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_COLUMN_DOMAIN_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_COLUMN_PRIVILEGES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_COLUMN_PRIVILEGES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_COLUMN_PRIVILEGES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_COLUMNS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_COLUMNS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_COLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CONSTRAINT_COLUMN_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CONSTRAINT_COLUMN_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CONSTRAINT_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_CONSTRAINT_TABLE_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_CONSTRAINT_TABLE_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_CONSTRAINT_TABLE_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_FOREIGN_KEYS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_FOREIGN_KEYS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_FOREIGN_KEYS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_INDEXES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_INDEXES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_INDEXES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_KEY_COLUMN_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_KEY_COLUMN_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_KEY_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_PRIMARY_KEYS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_PRIMARY_KEYS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_PRIMARY_KEYS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_PROCEDURE_COLUMNS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_PROCEDURE_COLUMNS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_PROCEDURE_COLUMNS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_PROCEDURE_PARAMETERS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_PROCEDURE_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_PROCEDURE_PARAMETERS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_PROCEDURES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_PROCEDURES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_PROCEDURES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_PROVIDER_TYPES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_PROVIDER_TYPES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_PROVIDER_TYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_REFERENTIAL_CONSTRAINTS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_REFERENTIAL_CONSTRAINTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_REFERENTIAL_CONSTRAINTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_SCHEMATA","package":"druntime","parentType":"","signature":"IID DBSCHEMA_SCHEMATA","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_SCHEMATA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_SQL_LANGUAGES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_SQL_LANGUAGES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_SQL_LANGUAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_STATISTICS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_STATISTICS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_STATISTICS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TABLE_CONSTRAINTS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TABLE_CONSTRAINTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TABLE_CONSTRAINTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TABLE_PRIVILEGES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TABLE_PRIVILEGES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TABLE_PRIVILEGES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TABLE_STATISTICS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TABLE_STATISTICS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TABLE_STATISTICS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TABLES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TABLES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TABLES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TABLES_INFO","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TABLES_INFO","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TABLES_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TRANSLATIONS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TRANSLATIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TRANSLATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_TRUSTEE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_TRUSTEE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_TRUSTEE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_USAGE_PRIVILEGES","package":"druntime","parentType":"","signature":"IID DBSCHEMA_USAGE_PRIVILEGES","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_USAGE_PRIVILEGES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_VIEW_COLUMN_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_VIEW_COLUMN_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_VIEW_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_VIEW_TABLE_USAGE","package":"druntime","parentType":"","signature":"IID DBSCHEMA_VIEW_TABLE_USAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_VIEW_TABLE_USAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DBSCHEMA_VIEWS","package":"druntime","parentType":"","signature":"IID DBSCHEMA_VIEWS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DBSCHEMA_VIEWS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DDVPTYPE_BROOKTREE","package":"druntime","parentType":"","signature":"IID DDVPTYPE_BROOKTREE","url":"/ddoc/druntime/core/sys/windows/uuid.html#DDVPTYPE_BROOKTREE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DDVPTYPE_CCIR656","package":"druntime","parentType":"","signature":"IID DDVPTYPE_CCIR656","url":"/ddoc/druntime/core/sys/windows/uuid.html#DDVPTYPE_CCIR656"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DDVPTYPE_E_HREFH_VREFL","package":"druntime","parentType":"","signature":"IID DDVPTYPE_E_HREFH_VREFL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DDVPTYPE_E_HREFH_VREFL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DDVPTYPE_E_HREFL_VREFL","package":"druntime","parentType":"","signature":"IID DDVPTYPE_E_HREFL_VREFL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DDVPTYPE_E_HREFL_VREFL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DDVPTYPE_PHILIPS","package":"druntime","parentType":"","signature":"IID DDVPTYPE_PHILIPS","url":"/ddoc/druntime/core/sys/windows/uuid.html#DDVPTYPE_PHILIPS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID__SearchAssistantEvents","package":"druntime","parentType":"","signature":"IID DIID__SearchAssistantEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID__SearchAssistantEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispCEventObj","package":"druntime","parentType":"","signature":"IID DIID_DispCEventObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispCEventObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispDOMChildrenCollection","package":"druntime","parentType":"","signature":"IID DIID_DispDOMChildrenCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispDOMChildrenCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCAttachBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTCAttachBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCAttachBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCDefaultDispatch","package":"druntime","parentType":"","signature":"IID DIID_DispHTCDefaultDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCDefaultDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCDescBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTCDescBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCDescBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCEventBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTCEventBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCEventBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCMethodBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTCMethodBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCMethodBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTCPropertyBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTCPropertyBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTCPropertyBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLAnchorElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLAnchorElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLAnchorElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLAppBehavior","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLAppBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLAppBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLAreaElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLAreasCollection","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLAreasCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLAreasCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLAttributeCollection","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLAttributeCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLAttributeCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBaseElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBaseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBaseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBaseFontElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBaseFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBaseFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBGsound","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBGsound","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBGsound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBlockElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBlockElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBlockElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBody","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBody","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBody"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLBRElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLBRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLBRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLButtonElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLCommentElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLCommentElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLCommentElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLCurrentStyle","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLCurrentStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLCurrentStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDDElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDDElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDDElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDefaults","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDefaults","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDefaults"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDivElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDivElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDivElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDivPosition","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDivPosition","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDivPosition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDListElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDocument","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDOMAttribute","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDOMAttribute","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDOMAttribute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDOMImplementation","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDOMImplementation","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDOMImplementation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDOMTextNode","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDOMTextNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDOMTextNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLDTElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLDTElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLDTElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLElementCollection","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLEmbed","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLEmbed","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLEmbed"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFieldSetElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFieldSetElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFieldSetElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFontElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFormElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFormElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFormElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFrameBase","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFrameBase","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFrameBase"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFrameElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFrameElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFrameElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLFrameSetSite","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLFrameSetSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLFrameSetSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLGenericElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLGenericElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLGenericElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLHeadElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLHeadElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLHeadElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLHeaderElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLHeaderElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLHeaderElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLHRElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLHRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLHRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLHtmlElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLHtmlElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLHtmlElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLIFrame","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLIFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLIFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLImg","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLImg","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLImg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLInputElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLInputElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLInputElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLIsIndexElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLIsIndexElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLIsIndexElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLLabelElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLLabelElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLLabelElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLLegendElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLLegendElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLLegendElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLLIElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLLIElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLLIElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLLinkElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLLinkElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLLinkElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLListElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLMapElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLMapElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLMapElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLMarqueeElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLMarqueeElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLMarqueeElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLMetaElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLMetaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLMetaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLNextIdElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLNextIdElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLNextIdElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLNoShowElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLNoShowElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLNoShowElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLObjectElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLObjectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLObjectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLOListElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLOListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLOListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLOptionElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLOptionElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLOptionElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLParaElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLParaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLParaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLParamElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLParamElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLParamElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLPhraseElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLPhraseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLPhraseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLPopup","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLPopup","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLPopup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLRenderStyle","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLRenderStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLRenderStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLRichtextElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLRichtextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLRichtextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLRuleStyle","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLRuleStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLRuleStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLScreen","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLScreen","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLScreen"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLScriptElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLScriptElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLScriptElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLSelectElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLSelectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLSelectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLSpanElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLSpanElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLSpanElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLSpanFlow","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLSpanFlow","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLSpanFlow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLStyle","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLStyleElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLStyleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLStyleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLStyleSheet","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLStyleSheet","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLStyleSheet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTable","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTableCaption","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTableCaption","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTableCaption"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTableCell","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTableCell","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTableCell"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTableCol","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTableCol","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTableCol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTableRow","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTableRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTableRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTableSection","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTableSection","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTableSection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTextAreaElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTextAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTextAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTextElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLTitleElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLTitleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLTitleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLUListElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLUListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLUListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLUnknownElement","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLUnknownElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLUnknownElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLWindow2","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLWindow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLWindow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispHTMLWindowProxy","package":"druntime","parentType":"","signature":"IID DIID_DispHTMLWindowProxy","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispHTMLWindowProxy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispIHTMLInputButtonElement","package":"druntime","parentType":"","signature":"IID DIID_DispIHTMLInputButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispIHTMLInputButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispIHTMLInputFileElement","package":"druntime","parentType":"","signature":"IID DIID_DispIHTMLInputFileElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispIHTMLInputFileElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispIHTMLInputImage","package":"druntime","parentType":"","signature":"IID DIID_DispIHTMLInputImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispIHTMLInputImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispIHTMLInputTextElement","package":"druntime","parentType":"","signature":"IID DIID_DispIHTMLInputTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispIHTMLInputTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DispIHTMLOptionButtonElement","package":"druntime","parentType":"","signature":"IID DIID_DispIHTMLOptionButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DispIHTMLOptionButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DMigrationWizardAutoEvents","package":"druntime","parentType":"","signature":"IID DIID_DMigrationWizardAutoEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DMigrationWizardAutoEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DSearchCommandEvents","package":"druntime","parentType":"","signature":"IID DIID_DSearchCommandEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DSearchCommandEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DShellFolderViewEvents","package":"druntime","parentType":"","signature":"IID DIID_DShellFolderViewEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DShellFolderViewEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DShellNameSpaceEvents","package":"druntime","parentType":"","signature":"IID DIID_DShellNameSpaceEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DShellNameSpaceEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DShellWindowsEvents","package":"druntime","parentType":"","signature":"IID DIID_DShellWindowsEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DShellWindowsEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DWebBridgeEvents","package":"druntime","parentType":"","signature":"IID DIID_DWebBridgeEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DWebBridgeEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DWebBrowserEvents","package":"druntime","parentType":"","signature":"IID DIID_DWebBrowserEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DWebBrowserEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_DWebBrowserEvents2","package":"druntime","parentType":"","signature":"IID DIID_DWebBrowserEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_DWebBrowserEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLAnchorEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLAnchorEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLAnchorEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLAnchorEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLAnchorEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLAnchorEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLAreaEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLAreaEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLAreaEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLAreaEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLAreaEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLAreaEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLButtonElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLButtonElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLButtonElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLButtonElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLButtonElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLButtonElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLControlElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLControlElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLControlElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLControlElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLControlElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLControlElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLDocumentEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLDocumentEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLDocumentEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLDocumentEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLDocumentEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLDocumentEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLFormElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLFormElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLFormElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLFormElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLFormElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLFormElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLFrameSiteEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLFrameSiteEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLFrameSiteEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLFrameSiteEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLFrameSiteEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLFrameSiteEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLImgEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLImgEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLImgEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLImgEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLImgEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLImgEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputFileElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputFileElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputFileElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputFileElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputFileElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputFileElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputImageEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputImageEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputImageEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputImageEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputImageEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputImageEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputTextElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputTextElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputTextElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLInputTextElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLInputTextElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLInputTextElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLLabelEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLLabelEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLLabelEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLLabelEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLLabelEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLLabelEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLLinkElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLLinkElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLLinkElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLLinkElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLLinkElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLLinkElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLMapEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLMapEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLMapEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLMapEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLMapEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLMapEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLMarqueeElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLMarqueeElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLMarqueeElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLMarqueeElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLMarqueeElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLMarqueeElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLNamespaceEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLNamespaceEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLNamespaceEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLObjectElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLObjectElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLObjectElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLObjectElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLObjectElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLObjectElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLOptionButtonElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLOptionButtonElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLOptionButtonElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLOptionButtonElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLOptionButtonElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLOptionButtonElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLPersistEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLPersistEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLPersistEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLScriptEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLScriptEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLScriptEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLScriptEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLScriptEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLScriptEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLSelectElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLSelectElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLSelectElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLSelectElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLSelectElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLSelectElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLStyleElementEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLStyleElementEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLStyleElementEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLStyleElementEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLStyleElementEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLStyleElementEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLTableEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLTableEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLTableEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLTableEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLTableEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLTableEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLTextContainerEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLTextContainerEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLTextContainerEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLTextContainerEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLTextContainerEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLTextContainerEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLWindowEvents","package":"druntime","parentType":"","signature":"IID DIID_HTMLWindowEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLWindowEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_HTMLWindowEvents2","package":"druntime","parentType":"","signature":"IID DIID_HTMLWindowEvents2","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_HTMLWindowEvents2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_IRTCDispatchEventNotification","package":"druntime","parentType":"","signature":"IID DIID_IRTCDispatchEventNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_IRTCDispatchEventNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_ISWbemSinkEvents","package":"druntime","parentType":"","signature":"IID DIID_ISWbemSinkEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_ISWbemSinkEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_ITTAPIDispatchEventNotification","package":"druntime","parentType":"","signature":"IID DIID_ITTAPIDispatchEventNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_ITTAPIDispatchEventNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_LayoutRectEvents","package":"druntime","parentType":"","signature":"IID DIID_LayoutRectEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_LayoutRectEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DIID_XMLDOMDocumentEvents","package":"druntime","parentType":"","signature":"IID DIID_XMLDOMDocumentEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#DIID_XMLDOMDocumentEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_ComPort","package":"druntime","parentType":"","signature":"IID DPAID_ComPort","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_ComPort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_INet","package":"druntime","parentType":"","signature":"IID DPAID_INet","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_INet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_INetPort","package":"druntime","parentType":"","signature":"IID DPAID_INetPort","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_INetPort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_INetW","package":"druntime","parentType":"","signature":"IID DPAID_INetW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_INetW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_LobbyProvider","package":"druntime","parentType":"","signature":"IID DPAID_LobbyProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_LobbyProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_Modem","package":"druntime","parentType":"","signature":"IID DPAID_Modem","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_Modem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_ModemW","package":"druntime","parentType":"","signature":"IID DPAID_ModemW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_ModemW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_Phone","package":"druntime","parentType":"","signature":"IID DPAID_Phone","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_Phone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_PhoneW","package":"druntime","parentType":"","signature":"IID DPAID_PhoneW","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_PhoneW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_ServiceProvider","package":"druntime","parentType":"","signature":"IID DPAID_ServiceProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_ServiceProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPAID_TotalSize","package":"druntime","parentType":"","signature":"IID DPAID_TotalSize","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPAID_TotalSize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPLPROPERTY_LobbyGuid","package":"druntime","parentType":"","signature":"IID DPLPROPERTY_LobbyGuid","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPLPROPERTY_LobbyGuid"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPLPROPERTY_MessagesSupported","package":"druntime","parentType":"","signature":"IID DPLPROPERTY_MessagesSupported","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPLPROPERTY_MessagesSupported"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPLPROPERTY_PlayerGuid","package":"druntime","parentType":"","signature":"IID DPLPROPERTY_PlayerGuid","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPLPROPERTY_PlayerGuid"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPLPROPERTY_PlayerScore","package":"druntime","parentType":"","signature":"IID DPLPROPERTY_PlayerScore","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPLPROPERTY_PlayerScore"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPSPGUID_IPX","package":"druntime","parentType":"","signature":"IID DPSPGUID_IPX","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPSPGUID_IPX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPSPGUID_MODEM","package":"druntime","parentType":"","signature":"IID DPSPGUID_MODEM","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPSPGUID_MODEM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPSPGUID_SERIAL","package":"druntime","parentType":"","signature":"IID DPSPGUID_SERIAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPSPGUID_SERIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DPSPGUID_TCPIP","package":"druntime","parentType":"","signature":"IID DPSPGUID_TCPIP","url":"/ddoc/druntime/core/sys/windows/uuid.html#DPSPGUID_TCPIP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DS3DALG_HRTF_FULL","package":"druntime","parentType":"","signature":"IID DS3DALG_HRTF_FULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#DS3DALG_HRTF_FULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DS3DALG_HRTF_LIGHT","package":"druntime","parentType":"","signature":"IID DS3DALG_HRTF_LIGHT","url":"/ddoc/druntime/core/sys/windows/uuid.html#DS3DALG_HRTF_LIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"DS3DALG_NO_VIRTUALIZATION","package":"druntime","parentType":"","signature":"IID DS3DALG_NO_VIRTUALIZATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#DS3DALG_NO_VIRTUALIZATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FLAGID_Internet","package":"druntime","parentType":"","signature":"IID FLAGID_Internet","url":"/ddoc/druntime/core/sys/windows/uuid.html#FLAGID_Internet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_AudioSummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_AudioSummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_AudioSummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Briefcase","package":"druntime","parentType":"","signature":"IID FMTID_Briefcase","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Briefcase"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_DiscardableInformation","package":"druntime","parentType":"","signature":"IID FMTID_DiscardableInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_DiscardableInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Displaced","package":"druntime","parentType":"","signature":"IID FMTID_Displaced","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Displaced"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_DocSummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_DocSummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_DocSummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_DRM","package":"druntime","parentType":"","signature":"IID FMTID_DRM","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_DRM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_ImageProperties","package":"druntime","parentType":"","signature":"IID FMTID_ImageProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_ImageProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_ImageSummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_ImageSummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_ImageSummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_InternetSite","package":"druntime","parentType":"","signature":"IID FMTID_InternetSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_InternetSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Intshcut","package":"druntime","parentType":"","signature":"IID FMTID_Intshcut","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Intshcut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_MediaFileSummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_MediaFileSummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_MediaFileSummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Misc","package":"druntime","parentType":"","signature":"IID FMTID_Misc","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Misc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_MUSIC","package":"druntime","parentType":"","signature":"IID FMTID_MUSIC","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_MUSIC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_PropertyBag","package":"druntime","parentType":"","signature":"IID FMTID_PropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_PropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Query","package":"druntime","parentType":"","signature":"IID FMTID_Query","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Query"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_ShellDetails","package":"druntime","parentType":"","signature":"IID FMTID_ShellDetails","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_ShellDetails"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Storage","package":"druntime","parentType":"","signature":"IID FMTID_Storage","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Storage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_SummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_SummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_SummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_UserDefinedProperties","package":"druntime","parentType":"","signature":"IID FMTID_UserDefinedProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_UserDefinedProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_VideoSummaryInformation","package":"druntime","parentType":"","signature":"IID FMTID_VideoSummaryInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_VideoSummaryInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_Volume","package":"druntime","parentType":"","signature":"IID FMTID_Volume","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_Volume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"FMTID_WebView","package":"druntime","parentType":"","signature":"IID FMTID_WebView","url":"/ddoc/druntime/core/sys/windows/uuid.html#FMTID_WebView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ACPI_CMOS_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_ACPI_CMOS_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ACPI_CMOS_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ACPI_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_ACPI_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ACPI_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ACPI_PORT_RANGES_INTERFACE_STAND","package":"druntime","parentType":"","signature":"IID GUID_ACPI_PORT_RANGES_INTERFACE_STAND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ACPI_PORT_RANGES_INTERFACE_STAND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ACPI_REGS_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_ACPI_REGS_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ACPI_REGS_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ARBITER_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_ARBITER_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ARBITER_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_BUS_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_1394","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_1394","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_1394"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_AVC","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_AVC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_AVC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_DOT4PRT","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_DOT4PRT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_DOT4PRT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_EISA","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_EISA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_EISA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_HID","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_HID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_HID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_INTERNAL","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_INTERNAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_IRDA","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_IRDA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_IRDA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_ISAPNP","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_ISAPNP","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_ISAPNP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_LPTENUM","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_LPTENUM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_LPTENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_MCA","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_MCA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_MCA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_PCI","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_PCI","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_PCI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_PCMCIA","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_PCMCIA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_PCMCIA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_SERENUM","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_SERENUM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_SERENUM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_USB","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_USB","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_USB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_BUS_TYPE_USBPRINT","package":"druntime","parentType":"","signature":"IID GUID_BUS_TYPE_USBPRINT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_BUS_TYPE_USBPRINT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Button","package":"druntime","parentType":"","signature":"IID GUID_Button","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Button"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_CHECKVALUEEXCLUSIVE","package":"druntime","parentType":"","signature":"IID GUID_CHECKVALUEEXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_CHECKVALUEEXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ChordParam","package":"druntime","parentType":"","signature":"IID GUID_ChordParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ChordParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Clear_All_Bands","package":"druntime","parentType":"","signature":"IID GUID_Clear_All_Bands","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Clear_All_Bands"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_COLOR","package":"druntime","parentType":"","signature":"IID GUID_COLOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_COLOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ColorControlCallbacks","package":"druntime","parentType":"","signature":"IID GUID_ColorControlCallbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ColorControlCallbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_CommandParam","package":"druntime","parentType":"","signature":"IID GUID_CommandParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_CommandParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_CommandParam2","package":"druntime","parentType":"","signature":"IID GUID_CommandParam2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_CommandParam2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ConnectToDLSCollection","package":"druntime","parentType":"","signature":"IID GUID_ConnectToDLSCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ConnectToDLSCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ConstantForce","package":"druntime","parentType":"","signature":"IID GUID_ConstantForce","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ConstantForce"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_CustomForce","package":"druntime","parentType":"","signature":"IID GUID_CustomForce","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_CustomForce"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_D3DCallbacks2","package":"druntime","parentType":"","signature":"IID GUID_D3DCallbacks2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_D3DCallbacks2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_D3DCallbacks3","package":"druntime","parentType":"","signature":"IID GUID_D3DCallbacks3","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_D3DCallbacks3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_D3DExtendedCaps","package":"druntime","parentType":"","signature":"IID GUID_D3DExtendedCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_D3DExtendedCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_D3DParseUnknownCommandCallback","package":"druntime","parentType":"","signature":"IID GUID_D3DParseUnknownCommandCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_D3DParseUnknownCommandCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Damper","package":"druntime","parentType":"","signature":"IID GUID_Damper","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Damper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DDMoreCaps","package":"druntime","parentType":"","signature":"IID GUID_DDMoreCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DDMoreCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DDMoreSurfaceCaps","package":"druntime","parentType":"","signature":"IID GUID_DDMoreSurfaceCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DDMoreSurfaceCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DDStereoMode","package":"druntime","parentType":"","signature":"IID GUID_DDStereoMode","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DDStereoMode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DefaultGMCollection","package":"druntime","parentType":"","signature":"IID GUID_DefaultGMCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DefaultGMCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_1394","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_1394","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_1394"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_1394DEBUG","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_1394DEBUG","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_1394DEBUG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_61883","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_61883","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_61883"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_ADAPTER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_ADAPTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_ADAPTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_APMSUPPORT","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_APMSUPPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_APMSUPPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_AVC","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_AVC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_AVC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_BATTERY","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_BATTERY","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_BATTERY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_BLUETOOTH","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_BLUETOOTH","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_BLUETOOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_CDROM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_CDROM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_CDROM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_COMPUTER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_COMPUTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_COMPUTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_DECODER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_DECODER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_DECODER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_DISKDRIVE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_DISKDRIVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_DISKDRIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_DISPLAY","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_DISPLAY","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_DISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_DOT4","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_DOT4","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_DOT4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_DOT4PRINT","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_DOT4PRINT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_DOT4PRINT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_ENUM1394","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_ENUM1394","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_ENUM1394"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FDC","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FDC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FDC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FLOPPYDISK","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FLOPPYDISK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FLOPPYDISK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_ACTIVITYMONIT","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_ACTIVITYMONIT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_ACTIVITYMONIT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_ANTIVIRUS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_ANTIVIRUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_ANTIVIRUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_CFSMETADATASER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_CFSMETADATASER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_CFSMETADATASER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_COMPRESSION","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_COMPRESSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_COMPRESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_CONTENTSCREEN","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_CONTENTSCREEN","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_CONTENTSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_CONTINUOUSBACK","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_CONTINUOUSBACK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_CONTINUOUSBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_COPYPROTECTIO","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_COPYPROTECTIO","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_COPYPROTECTIO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_ENCRYPTION","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_ENCRYPTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_ENCRYPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_HSM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_HSM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_HSM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_INFRASTRUCTUR","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_INFRASTRUCTUR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_INFRASTRUCTUR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_OPENFILEBACKU","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_OPENFILEBACKU","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_OPENFILEBACKU"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_QUOTAMANAGEME","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_QUOTAMANAGEME","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_QUOTAMANAGEME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_REPLICATION","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_REPLICATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_REPLICATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_SECURITYENHANC","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_SECURITYENHANC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_SECURITYENHANC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_SYSTEM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_SYSTEM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_SYSTEM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_SYSTEMRECOVER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_SYSTEMRECOVER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_SYSTEMRECOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_FSFILTER_UNDELETE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_FSFILTER_UNDELETE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_FSFILTER_UNDELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_GPS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_GPS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_GPS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_HDC","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_HDC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_HDC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_HIDCLASS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_HIDCLASS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_HIDCLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_IMAGE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_IMAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_IMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_INFRARED","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_INFRARED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_INFRARED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_KEYBOARD","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_KEYBOARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_KEYBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_LEGACYDRIVER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_LEGACYDRIVER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_LEGACYDRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MEDIA","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MEDIA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MEDIA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MEDIUM_CHANGER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MEDIUM_CHANGER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MEDIUM_CHANGER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MODEM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MODEM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MODEM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MONITOR","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MONITOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MONITOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MOUSE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MOUSE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MOUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MTD","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MTD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MTD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MULTIFUNCTION","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MULTIFUNCTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MULTIFUNCTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_MULTIPORTSERIAL","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_MULTIPORTSERIAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_MULTIPORTSERIAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_NET","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_NET","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_NET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_NETCLIENT","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_NETCLIENT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_NETCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_NETSERVICE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_NETSERVICE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_NETSERVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_NETTRANS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_NETTRANS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_NETTRANS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_NODRIVER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_NODRIVER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_NODRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PCMCIA","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PCMCIA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PCMCIA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PNPPRINTERS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PNPPRINTERS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PNPPRINTERS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PORTS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PORTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PORTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PRINTER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PRINTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PRINTERUPGRADE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PRINTERUPGRADE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PRINTERUPGRADE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_PROCESSOR","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_SBP2","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_SBP2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_SBP2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_SCSIADAPTER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_SCSIADAPTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_SCSIADAPTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_SMARTCARDREADER","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_SMARTCARDREADER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_SMARTCARDREADER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_SOUND","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_SOUND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_SOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_SYSTEM","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_SYSTEM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_SYSTEM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_TAPEDRIVE","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_TAPEDRIVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_TAPEDRIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_UNKNOWN","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_USB","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_USB","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_USB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_VOLUME","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_VOLUME","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_VOLUMESNAPSHOT","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_VOLUMESNAPSHOT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_VOLUMESNAPSHOT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVCLASS_WCEUSBS","package":"druntime","parentType":"","signature":"IID GUID_DEVCLASS_WCEUSBS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVCLASS_WCEUSBS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVICE_INTERFACE_ARRIVAL","package":"druntime","parentType":"","signature":"IID GUID_DEVICE_INTERFACE_ARRIVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVICE_INTERFACE_ARRIVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVICE_INTERFACE_REMOVAL","package":"druntime","parentType":"","signature":"IID GUID_DEVICE_INTERFACE_REMOVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVICE_INTERFACE_REMOVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_CDCHANGER","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_CDCHANGER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_CDCHANGER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_CDROM","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_CDROM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_CDROM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_COMPORT","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_COMPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_COMPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_DISK","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_DISK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_DISK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_FLOPPY","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_FLOPPY","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_FLOPPY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_MEDIUMCHANGER","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_MEDIUMCHANGER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_MEDIUMCHANGER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_PARTITION","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_PARTITION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_PARTITION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_SERENUM_BUS_ENUMERA","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_SERENUM_BUS_ENUMERA","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_SERENUM_BUS_ENUMERA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_STORAGEPORT","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_STORAGEPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_STORAGEPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_TAPE","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_TAPE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_TAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_VOLUME","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_VOLUME","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_VOLUME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DEVINTERFACE_WRITEONCEDISK","package":"druntime","parentType":"","signature":"IID GUID_DEVINTERFACE_WRITEONCEDISK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DEVINTERFACE_WRITEONCEDISK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DirectDrawPaletteStream","package":"druntime","parentType":"","signature":"IID GUID_DirectDrawPaletteStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DirectDrawPaletteStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DirectDrawSurfaceStream","package":"druntime","parentType":"","signature":"IID GUID_DirectDrawSurfaceStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DirectDrawSurfaceStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DirectMusicAllTypes","package":"druntime","parentType":"","signature":"IID GUID_DirectMusicAllTypes","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DirectMusicAllTypes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Disable_Auto_Download","package":"druntime","parentType":"","signature":"IID GUID_Disable_Auto_Download","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Disable_Auto_Download"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DisableTempo","package":"druntime","parentType":"","signature":"IID GUID_DisableTempo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DisableTempo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DisableTimeSig","package":"druntime","parentType":"","signature":"IID GUID_DisableTimeSig","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DisableTimeSig"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_DLS1","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_DLS1","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_DLS1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_DLS2","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_DLS2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_DLS2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_Effects","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_Effects","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_Effects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_GM_Hardware","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_GM_Hardware","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_GM_Hardware"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_GS_Capable","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_GS_Capable","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_GS_Capable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_GS_Hardware","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_GS_Hardware","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_GS_Hardware"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_INSTRUMENT2","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_INSTRUMENT2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_INSTRUMENT2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_LegacyCaps","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_LegacyCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_LegacyCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_MemorySize","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_MemorySize","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_MemorySize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_SampleMemorySize","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_SampleMemorySize","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_SampleMemorySize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_SamplePlaybackRate","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_SamplePlaybackRate","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_SamplePlaybackRate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_SynthSink_DSOUND","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_SynthSink_DSOUND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_SynthSink_DSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_SynthSink_WAVE","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_SynthSink_WAVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_SynthSink_WAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_Volume","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_Volume","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_Volume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_WavesReverb","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_WavesReverb","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_WavesReverb"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_WriteLatency","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_WriteLatency","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_WriteLatency"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_WritePeriod","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_WritePeriod","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_WritePeriod"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_XG_Capable","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_XG_Capable","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_XG_Capable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_DMUS_PROP_XG_Hardware","package":"druntime","parentType":"","signature":"IID GUID_DMUS_PROP_XG_Hardware","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_DMUS_PROP_XG_Hardware"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Download","package":"druntime","parentType":"","signature":"IID GUID_Download","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Download"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Enable_Auto_Download","package":"druntime","parentType":"","signature":"IID GUID_Enable_Auto_Download","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Enable_Auto_Download"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_EnableTempo","package":"druntime","parentType":"","signature":"IID GUID_EnableTempo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_EnableTempo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_EnableTimeSig","package":"druntime","parentType":"","signature":"IID GUID_EnableTimeSig","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_EnableTimeSig"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTBOLD","package":"druntime","parentType":"","signature":"IID GUID_FONTBOLD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTBOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTITALIC","package":"druntime","parentType":"","signature":"IID GUID_FONTITALIC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTITALIC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTNAME","package":"druntime","parentType":"","signature":"IID GUID_FONTNAME","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTSIZE","package":"druntime","parentType":"","signature":"IID GUID_FONTSIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTSTRIKETHROUGH","package":"druntime","parentType":"","signature":"IID GUID_FONTSTRIKETHROUGH","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTSTRIKETHROUGH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_FONTUNDERSCORE","package":"druntime","parentType":"","signature":"IID GUID_FONTUNDERSCORE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_FONTUNDERSCORE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Friction","package":"druntime","parentType":"","signature":"IID GUID_Friction","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Friction"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HANDLE","package":"druntime","parentType":"","signature":"IID GUID_HANDLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HasPathProperties","package":"druntime","parentType":"","signature":"IID GUID_HasPathProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HasPathProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HIDClass","package":"druntime","parentType":"","signature":"IID GUID_HIDClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HIDClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HIMETRIC","package":"druntime","parentType":"","signature":"IID GUID_HIMETRIC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HIMETRIC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HWPROFILE_CHANGE_CANCELLED","package":"druntime","parentType":"","signature":"IID GUID_HWPROFILE_CHANGE_CANCELLED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HWPROFILE_CHANGE_CANCELLED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HWPROFILE_CHANGE_COMPLETE","package":"druntime","parentType":"","signature":"IID GUID_HWPROFILE_CHANGE_COMPLETE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HWPROFILE_CHANGE_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_HWPROFILE_QUERY_CHANGE","package":"druntime","parentType":"","signature":"IID GUID_HWPROFILE_QUERY_CHANGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_HWPROFILE_QUERY_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_IDirectMusicBand","package":"druntime","parentType":"","signature":"IID GUID_IDirectMusicBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_IDirectMusicBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_IDirectMusicChordMap","package":"druntime","parentType":"","signature":"IID GUID_IDirectMusicChordMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_IDirectMusicChordMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_IDirectMusicStyle","package":"druntime","parentType":"","signature":"IID GUID_IDirectMusicStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_IDirectMusicStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Inertia","package":"druntime","parentType":"","signature":"IID GUID_Inertia","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Inertia"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_INT_ROUTE_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_INT_ROUTE_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_INT_ROUTE_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Joystick","package":"druntime","parentType":"","signature":"IID GUID_Joystick","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Joystick"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_KernelCallbacks","package":"druntime","parentType":"","signature":"IID GUID_KernelCallbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_KernelCallbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_KernelCaps","package":"druntime","parentType":"","signature":"IID GUID_KernelCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_KernelCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Key","package":"druntime","parentType":"","signature":"IID GUID_Key","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Key"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_KeyboardClass","package":"druntime","parentType":"","signature":"IID GUID_KeyboardClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_KeyboardClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_LEGACY_DEVICE_DETECTION_STANDAR","package":"druntime","parentType":"","signature":"IID GUID_LEGACY_DEVICE_DETECTION_STANDAR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_LEGACY_DEVICE_DETECTION_STANDAR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MediaClass","package":"druntime","parentType":"","signature":"IID GUID_MediaClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MediaClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MF_ENUMERATION_INTERFACE","package":"druntime","parentType":"","signature":"IID GUID_MF_ENUMERATION_INTERFACE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MF_ENUMERATION_INTERFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Miscellaneous2Callbacks","package":"druntime","parentType":"","signature":"IID GUID_Miscellaneous2Callbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Miscellaneous2Callbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MiscellaneousCallbacks","package":"druntime","parentType":"","signature":"IID GUID_MiscellaneousCallbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MiscellaneousCallbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MotionCompCallbacks","package":"druntime","parentType":"","signature":"IID GUID_MotionCompCallbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MotionCompCallbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MouseClass","package":"druntime","parentType":"","signature":"IID GUID_MouseClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MouseClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_MuteParam","package":"druntime","parentType":"","signature":"IID GUID_MuteParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_MuteParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_ADD_WEP","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_ADD_WEP","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_ADD_WEP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_AUTHENTICATION_MODE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_AUTHENTICATION_MODE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_AUTHENTICATION_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_BASIC_RATES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_BASIC_RATES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_BASIC_RATES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_BSSID","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_BSSID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_BSSID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_BSSID_LIST","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_BSSID_LIST","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_BSSID_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_BSSID_LIST_SCAN","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_BSSID_LIST_SCAN","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_BSSID_LIST_SCAN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_CONFIGURATION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_CONFIGURATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_CONFIGURATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_DESIRED_RATES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_DESIRED_RATES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_DESIRED_RATES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_DISASSOCIATE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_DISASSOCIATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_DISASSOCIATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_FRAGMENTATION_THRESH","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_FRAGMENTATION_THRESH","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_FRAGMENTATION_THRESH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_INFRASTRUCTURE_MODE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_INFRASTRUCTURE_MODE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_INFRASTRUCTURE_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_NETWORK_TYPE_IN_USE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_NETWORK_TYPES_SUPPOR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_NETWORK_TYPES_SUPPOR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_NETWORK_TYPES_SUPPOR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_NUMBER_OF_ANTENNAS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_POWER_MODE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_POWER_MODE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_POWER_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_PRIVACY_FILTER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_PRIVACY_FILTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_PRIVACY_FILTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_REMOVE_WEP","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_REMOVE_WEP","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_REMOVE_WEP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_RSSI","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_RSSI","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_RSSI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_RSSI_TRIGGER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_RSSI_TRIGGER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_RSSI_TRIGGER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_RTS_THRESHOLD","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_RTS_THRESHOLD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_RTS_THRESHOLD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_RX_ANTENNA_SELECTED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_RX_ANTENNA_SELECTED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_RX_ANTENNA_SELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_SSID","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_SSID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_SSID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_STATISTICS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_STATISTICS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_STATISTICS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_SUPPORTED_RATES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_SUPPORTED_RATES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_SUPPORTED_RATES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_TX_ANTENNA_SELECTED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_TX_ANTENNA_SELECTED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_TX_ANTENNA_SELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_TX_POWER_LEVEL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_TX_POWER_LEVEL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_TX_POWER_LEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_11_WEP_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_11_WEP_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_11_WEP_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_CURRENT_ADDRESS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_CURRENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_CURRENT_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_MAC_OPTIONS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_MAC_OPTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_MAC_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_MAXIMUM_LIST_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_MULTICAST_LIST","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_MULTICAST_LIST","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_MULTICAST_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_PERMANENT_ADDRESS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_PERMANENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_PERMANENT_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_XMIT_MORE_COLLISIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_3_XMIT_ONE_COLLISION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_3_XMIT_ONE_COLLISION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_3_XMIT_ONE_COLLISION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_CURRENT_ADDRESS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_CURRENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_CURRENT_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_CURRENT_FUNCTIONAL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_CURRENT_FUNCTIONAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_CURRENT_FUNCTIONAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_CURRENT_GROUP","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_CURRENT_GROUP","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_CURRENT_GROUP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_CURRENT_RING_STATE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_CURRENT_RING_STATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_CURRENT_RING_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_CURRENT_RING_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_CURRENT_RING_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_CURRENT_RING_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_LAST_OPEN_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_LAST_OPEN_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_LAST_OPEN_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_LINE_ERRORS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_LINE_ERRORS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_LINE_ERRORS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_LOST_FRAMES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_LOST_FRAMES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_LOST_FRAMES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_802_5_PERMANENT_ADDRESS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_802_5_PERMANENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_802_5_PERMANENT_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_HW_CURRENT_ADDRESS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_HW_CURRENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_HW_CURRENT_ADDRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_AAL0_PACKET_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_AAL0_PACKET_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_AAL0_PACKET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_AAL1_PACKET_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_AAL1_PACKET_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_AAL1_PACKET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_AAL34_PACKET_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_AAL34_PACKET_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_AAL34_PACKET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_AAL5_PACKET_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_AAL5_PACKET_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_AAL5_PACKET_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_ACTIVE_VCI_BITS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_ACTIVE_VCI_BITS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_ACTIVE_VCI_BITS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_ACTIVE_VCS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_ACTIVE_VCS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_ACTIVE_VCS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_MAX_ACTIVE_VPI_BITS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_MAX_ACTIVE_VPI_BITS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_MAX_ACTIVE_VPI_BITS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_RCV_CELLS_DROPPED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_RCV_CELLS_DROPPED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_RCV_CELLS_DROPPED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_RCV_CELLS_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_RCV_CELLS_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_RCV_CELLS_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_SUPPORTED_AAL_TYPES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_SUPPORTED_AAL_TYPES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_SUPPORTED_AAL_TYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_SUPPORTED_SERVICE_CATEG","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_SUPPORTED_SERVICE_CATEG","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_SUPPORTED_SERVICE_CATEG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_SUPPORTED_VC_RATES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_SUPPORTED_VC_RATES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_SUPPORTED_VC_RATES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ATM_XMIT_CELLS_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ATM_XMIT_CELLS_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ATM_XMIT_CELLS_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ENUMERATE_ADAPTER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ENUMERATE_ADAPTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ENUMERATE_ADAPTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_ENUMERATE_VC","package":"druntime","parentType":"","signature":"IID GUID_NDIS_ENUMERATE_VC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_ENUMERATE_VC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_ATTACHMENT_TYPE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_ATTACHMENT_TYPE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_ATTACHMENT_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_DOWNSTREAM_NODE_LONG","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_DOWNSTREAM_NODE_LONG","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_DOWNSTREAM_NODE_LONG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_FRAME_ERRORS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_FRAME_ERRORS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_FRAME_ERRORS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_FRAMES_LOST","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_FRAMES_LOST","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_FRAMES_LOST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LCONNECTION_STATE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LCONNECTION_STATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LCONNECTION_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LCT_FAILURES","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LCT_FAILURES","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LCT_FAILURES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LEM_REJECTS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LEM_REJECTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LEM_REJECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LONG_CURRENT_ADDR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LONG_CURRENT_ADDR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LONG_CURRENT_ADDR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LONG_MAX_LIST_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LONG_MAX_LIST_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LONG_MAX_LIST_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LONG_MULTICAST_LIST","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LONG_MULTICAST_LIST","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LONG_MULTICAST_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_LONG_PERMANENT_ADDR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_LONG_PERMANENT_ADDR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_LONG_PERMANENT_ADDR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_RING_MGT_STATE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_RING_MGT_STATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_RING_MGT_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_SHORT_CURRENT_ADDR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_SHORT_CURRENT_ADDR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_SHORT_CURRENT_ADDR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_SHORT_MAX_LIST_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_SHORT_MAX_LIST_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_SHORT_MAX_LIST_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_SHORT_MULTICAST_LIST","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_SHORT_MULTICAST_LIST","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_SHORT_MULTICAST_LIST"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_SHORT_PERMANENT_ADDR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_SHORT_PERMANENT_ADDR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_SHORT_PERMANENT_ADDR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_FDDI_UPSTREAM_NODE_LONG","package":"druntime","parentType":"","signature":"IID GUID_NDIS_FDDI_UPSTREAM_NODE_LONG","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_FDDI_UPSTREAM_NODE_LONG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_DRIVER_VERSION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_DRIVER_VERSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_DRIVER_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_HARDWARE_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_HARDWARE_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_HARDWARE_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_LINK_SPEED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_LINK_SPEED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_LINK_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_MAC_OPTIONS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_MAC_OPTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_MAC_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATU","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATU","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATU"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_MEDIA_IN_USE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_MEDIA_IN_USE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_MEDIA_IN_USE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_MEDIA_SUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_RCV_PDUS_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_RCV_PDUS_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_RCV_PDUS_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_RCV_PDUS_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSI","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSI","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_VENDOR_ID","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_VENDOR_ID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_VENDOR_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CO_XMIT_PDUS_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CO_XMIT_PDUS_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CO_XMIT_PDUS_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CURRENT_LOOKAHEAD","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CURRENT_LOOKAHEAD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CURRENT_LOOKAHEAD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_CURRENT_PACKET_FILTER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_CURRENT_PACKET_FILTER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_CURRENT_PACKET_FILTER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_DRIVER_VERSION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_DRIVER_VERSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_DRIVER_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_HARDWARE_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_HARDWARE_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_HARDWARE_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_LINK_SPEED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_LINK_SPEED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_LINK_SPEED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MAC_OPTIONS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MAC_OPTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MAC_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MEDIA_CONNECT_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MEDIA_IN_USE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MEDIA_IN_USE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MEDIA_IN_USE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_MEDIA_SUPPORTED","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_MEDIA_SUPPORTED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_MEDIA_SUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_PHYSICAL_MEDIUM","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_PHYSICAL_MEDIUM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_RCV_ERROR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_RCV_ERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_RCV_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_RCV_NO_BUFFER","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_RCV_NO_BUFFER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_RCV_NO_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_RCV_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_RCV_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_RCV_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_VENDOR_DESCRIPTION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_VENDOR_DESCRIPTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_VENDOR_DESCRIPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_VENDOR_DRIVER_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_VENDOR_ID","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_VENDOR_ID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_VENDOR_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_VLAN_ID","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_VLAN_ID","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_VLAN_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_XMIT_ERROR","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_XMIT_ERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_XMIT_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_GEN_XMIT_OK","package":"druntime","parentType":"","signature":"IID GUID_NDIS_GEN_XMIT_OK","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_GEN_XMIT_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_LAN_CLASS","package":"druntime","parentType":"","signature":"IID GUID_NDIS_LAN_CLASS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_LAN_CLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_ADAPTER_REMOVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_BIND","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_BIND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_BIND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_UNBIND","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_UNBIND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_UNBIND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_VC_ARRIVAL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_VC_ARRIVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_VC_ARRIVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_NOTIFY_VC_REMOVAL","package":"druntime","parentType":"","signature":"IID GUID_NDIS_NOTIFY_VC_REMOVAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_NOTIFY_VC_REMOVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_LINK_SPEED_CHANGE","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_LINK_SPEED_CHANGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_LINK_SPEED_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_MEDIA_CONNECT","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_MEDIA_CONNECT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_MEDIA_CONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_MEDIA_DISCONNECT","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_MEDIA_DISCONNECT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_MEDIA_DISCONNECT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDIC","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDIC","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDIC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_RESET_END","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_RESET_END","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_RESET_END"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_STATUS_RESET_START","package":"druntime","parentType":"","signature":"IID GUID_NDIS_STATUS_RESET_START","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_STATUS_RESET_START"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","package":"druntime","parentType":"","signature":"IID GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NETSHELL_PROPS","package":"druntime","parentType":"","signature":"IID GUID_NETSHELL_PROPS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NETSHELL_PROPS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NonLocalVidMemCaps","package":"druntime","parentType":"","signature":"IID GUID_NonLocalVidMemCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NonLocalVidMemCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NOTIFICATION_CHORD","package":"druntime","parentType":"","signature":"IID GUID_NOTIFICATION_CHORD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NOTIFICATION_CHORD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NOTIFICATION_COMMAND","package":"druntime","parentType":"","signature":"IID GUID_NOTIFICATION_COMMAND","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NOTIFICATION_COMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NOTIFICATION_MEASUREANDBEAT","package":"druntime","parentType":"","signature":"IID GUID_NOTIFICATION_MEASUREANDBEAT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NOTIFICATION_MEASUREANDBEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NOTIFICATION_PERFORMANCE","package":"druntime","parentType":"","signature":"IID GUID_NOTIFICATION_PERFORMANCE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NOTIFICATION_PERFORMANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NOTIFICATION_SEGMENT","package":"druntime","parentType":"","signature":"IID GUID_NOTIFICATION_SEGMENT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NOTIFICATION_SEGMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_NULL","package":"druntime","parentType":"","signature":"IID GUID_NULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_OPTIONVALUEEXCLUSIVE","package":"druntime","parentType":"","signature":"IID GUID_OPTIONVALUEEXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_OPTIONVALUEEXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_OptSurfaceKmodeInfo","package":"druntime","parentType":"","signature":"IID GUID_OptSurfaceKmodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_OptSurfaceKmodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_OptSurfaceUmodeInfo","package":"druntime","parentType":"","signature":"IID GUID_OptSurfaceUmodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_OptSurfaceUmodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PathProperty","package":"druntime","parentType":"","signature":"IID GUID_PathProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PathProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PCI_BUS_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_PCI_BUS_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PCI_BUS_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PCI_DEVICE_PRESENT_INTERFACE","package":"druntime","parentType":"","signature":"IID GUID_PCI_DEVICE_PRESENT_INTERFACE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PCI_DEVICE_PRESENT_INTERFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PCMCIA_BUS_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_PCMCIA_BUS_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PCMCIA_BUS_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PerfAutoDownload","package":"druntime","parentType":"","signature":"IID GUID_PerfAutoDownload","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PerfAutoDownload"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PerfMasterGrooveLevel","package":"druntime","parentType":"","signature":"IID GUID_PerfMasterGrooveLevel","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PerfMasterGrooveLevel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PerfMasterTempo","package":"druntime","parentType":"","signature":"IID GUID_PerfMasterTempo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PerfMasterTempo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PerfMasterVolume","package":"druntime","parentType":"","signature":"IID GUID_PerfMasterVolume","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PerfMasterVolume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PNP_CUSTOM_NOTIFICATION","package":"druntime","parentType":"","signature":"IID GUID_PNP_CUSTOM_NOTIFICATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PNP_CUSTOM_NOTIFICATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_PNP_POWER_NOTIFICATION","package":"druntime","parentType":"","signature":"IID GUID_PNP_POWER_NOTIFICATION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_PNP_POWER_NOTIFICATION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_POV","package":"druntime","parentType":"","signature":"IID GUID_POV","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_POV"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_POWER_DEVICE_ENABLE","package":"druntime","parentType":"","signature":"IID GUID_POWER_DEVICE_ENABLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_POWER_DEVICE_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_POWER_DEVICE_TIMEOUTS","package":"druntime","parentType":"","signature":"IID GUID_POWER_DEVICE_TIMEOUTS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_POWER_DEVICE_TIMEOUTS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_POWER_DEVICE_WAKE_ENABLE","package":"druntime","parentType":"","signature":"IID GUID_POWER_DEVICE_WAKE_ENABLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_POWER_DEVICE_WAKE_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_BESTEFFORT_BANDWIDTH","package":"druntime","parentType":"","signature":"IID GUID_QOS_BESTEFFORT_BANDWIDTH","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_BESTEFFORT_BANDWIDTH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_ENABLE_AVG_STATS","package":"druntime","parentType":"","signature":"IID GUID_QOS_ENABLE_AVG_STATS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_ENABLE_AVG_STATS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","package":"druntime","parentType":"","signature":"IID GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_ENABLE_WINDOW_ADJUSTMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_8021P_CONFORMING","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_8021P_CONFORMING","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_8021P_CONFORMING"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_8021P_NONCONFORMING","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_8021P_NONCONFORMING","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_8021P_NONCONFORMING"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_COUNT","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_COUNT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_COUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_IP_CONFORMING","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_IP_CONFORMING","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_IP_CONFORMING"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_IP_NONCONFORMING","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_IP_NONCONFORMING","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_IP_NONCONFORMING"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_FLOW_MODE","package":"druntime","parentType":"","signature":"IID GUID_QOS_FLOW_MODE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_FLOW_MODE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_ISSLOW_FLOW","package":"druntime","parentType":"","signature":"IID GUID_QOS_ISSLOW_FLOW","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_ISSLOW_FLOW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_LATENCY","package":"druntime","parentType":"","signature":"IID GUID_QOS_LATENCY","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_LATENCY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_MAX_OUTSTANDING_SENDS","package":"druntime","parentType":"","signature":"IID GUID_QOS_MAX_OUTSTANDING_SENDS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_MAX_OUTSTANDING_SENDS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_NON_BESTEFFORT_LIMIT","package":"druntime","parentType":"","signature":"IID GUID_QOS_NON_BESTEFFORT_LIMIT","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_NON_BESTEFFORT_LIMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_REMAINING_BANDWIDTH","package":"druntime","parentType":"","signature":"IID GUID_QOS_REMAINING_BANDWIDTH","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_REMAINING_BANDWIDTH"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_STATISTICS_BUFFER","package":"druntime","parentType":"","signature":"IID GUID_QOS_STATISTICS_BUFFER","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_STATISTICS_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_QOS_TIMER_RESOLUTION","package":"druntime","parentType":"","signature":"IID GUID_QOS_TIMER_RESOLUTION","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_QOS_TIMER_RESOLUTION"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_RampForce","package":"druntime","parentType":"","signature":"IID GUID_RampForce","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_RampForce"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_RhythmParam","package":"druntime","parentType":"","signature":"IID GUID_RhythmParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_RhythmParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_RxAxis","package":"druntime","parentType":"","signature":"IID GUID_RxAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_RxAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_RyAxis","package":"druntime","parentType":"","signature":"IID GUID_RyAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_RyAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_RzAxis","package":"druntime","parentType":"","signature":"IID GUID_RzAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_RzAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SawtoothDown","package":"druntime","parentType":"","signature":"IID GUID_SawtoothDown","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SawtoothDown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SawtoothUp","package":"druntime","parentType":"","signature":"IID GUID_SawtoothUp","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SawtoothUp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SeedVariations","package":"druntime","parentType":"","signature":"IID GUID_SeedVariations","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SeedVariations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Sine","package":"druntime","parentType":"","signature":"IID GUID_Sine","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Sine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Slider","package":"druntime","parentType":"","signature":"IID GUID_Slider","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Slider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Spring","package":"druntime","parentType":"","signature":"IID GUID_Spring","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Spring"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Square","package":"druntime","parentType":"","signature":"IID GUID_Square","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Square"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_StandardMIDIFile","package":"druntime","parentType":"","signature":"IID GUID_StandardMIDIFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_StandardMIDIFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysKeyboard","package":"druntime","parentType":"","signature":"IID GUID_SysKeyboard","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysKeyboard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysKeyboardEm","package":"druntime","parentType":"","signature":"IID GUID_SysKeyboardEm","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysKeyboardEm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysKeyboardEm2","package":"druntime","parentType":"","signature":"IID GUID_SysKeyboardEm2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysKeyboardEm2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysMouse","package":"druntime","parentType":"","signature":"IID GUID_SysMouse","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysMouse"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysMouseEm","package":"druntime","parentType":"","signature":"IID GUID_SysMouseEm","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysMouseEm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_SysMouseEm2","package":"druntime","parentType":"","signature":"IID GUID_SysMouseEm2","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_SysMouseEm2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TARGET_DEVICE_QUERY_REMOVE","package":"druntime","parentType":"","signature":"IID GUID_TARGET_DEVICE_QUERY_REMOVE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TARGET_DEVICE_QUERY_REMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TARGET_DEVICE_REMOVE_CANCELLED","package":"druntime","parentType":"","signature":"IID GUID_TARGET_DEVICE_REMOVE_CANCELLED","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TARGET_DEVICE_REMOVE_CANCELLED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TARGET_DEVICE_REMOVE_COMPLETE","package":"druntime","parentType":"","signature":"IID GUID_TARGET_DEVICE_REMOVE_COMPLETE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TARGET_DEVICE_REMOVE_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TempoParam","package":"druntime","parentType":"","signature":"IID GUID_TempoParam","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TempoParam"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TimeSignature","package":"druntime","parentType":"","signature":"IID GUID_TimeSignature","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TimeSignature"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TRANSLATOR_INTERFACE_STANDARD","package":"druntime","parentType":"","signature":"IID GUID_TRANSLATOR_INTERFACE_STANDARD","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TRANSLATOR_INTERFACE_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Triangle","package":"druntime","parentType":"","signature":"IID GUID_Triangle","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Triangle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_TRISTATE","package":"druntime","parentType":"","signature":"IID GUID_TRISTATE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_TRISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Unknown","package":"druntime","parentType":"","signature":"IID GUID_Unknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Unknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_Unload","package":"druntime","parentType":"","signature":"IID GUID_Unload","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_Unload"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_UserModeDriverInfo","package":"druntime","parentType":"","signature":"IID GUID_UserModeDriverInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_UserModeDriverInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_UserModeDriverPassword","package":"druntime","parentType":"","signature":"IID GUID_UserModeDriverPassword","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_UserModeDriverPassword"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_VideoPortCallbacks","package":"druntime","parentType":"","signature":"IID GUID_VideoPortCallbacks","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_VideoPortCallbacks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_VideoPortCaps","package":"druntime","parentType":"","signature":"IID GUID_VideoPortCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_VideoPortCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_XAxis","package":"druntime","parentType":"","signature":"IID GUID_XAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_XAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_XPOS","package":"druntime","parentType":"","signature":"IID GUID_XPOS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_XPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_XPOSPIXEL","package":"druntime","parentType":"","signature":"IID GUID_XPOSPIXEL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_XPOSPIXEL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_XSIZE","package":"druntime","parentType":"","signature":"IID GUID_XSIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_XSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_XSIZEPIXEL","package":"druntime","parentType":"","signature":"IID GUID_XSIZEPIXEL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_XSIZEPIXEL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_YAxis","package":"druntime","parentType":"","signature":"IID GUID_YAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_YAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_YPOS","package":"druntime","parentType":"","signature":"IID GUID_YPOS","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_YPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_YPOSPIXEL","package":"druntime","parentType":"","signature":"IID GUID_YPOSPIXEL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_YPOSPIXEL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_YSIZE","package":"druntime","parentType":"","signature":"IID GUID_YSIZE","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_YSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_YSIZEPIXEL","package":"druntime","parentType":"","signature":"IID GUID_YSIZEPIXEL","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_YSIZEPIXEL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ZAxis","package":"druntime","parentType":"","signature":"IID GUID_ZAxis","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ZAxis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"GUID_ZPixelFormats","package":"druntime","parentType":"","signature":"IID GUID_ZPixelFormats","url":"/ddoc/druntime/core/sys/windows/uuid.html#GUID_ZPixelFormats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIAdviseSink","package":"druntime","parentType":"","signature":"IID IID_AsyncIAdviseSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIAdviseSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIAdviseSink2","package":"druntime","parentType":"","signature":"IID IID_AsyncIAdviseSink2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIAdviseSink2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIBackgroundCopyCallback","package":"druntime","parentType":"","signature":"IID IID_AsyncIBackgroundCopyCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIBackgroundCopyCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgBaseCluster","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgBaseCluster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgBaseCluster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgCallback","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgClusterInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgClusterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgClusterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgCredentials","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgCredentials","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgCredentials"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgEvictCleanup","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgEvictCleanup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgEvictCleanup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgInitialize","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgInitialize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgInitialize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgIPAddressInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgIPAddressInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgIPAddressInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgManagedResourceInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgManagedResourceInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgManagedResourceInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgMemberSetChangeListe","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgMemberSetChangeListe","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgMemberSetChangeListe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgNetworkInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgNetworkInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgNetworkInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgNodeInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgNodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgNodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgPartitionInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgPartitionInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgPartitionInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgResourceTypeCreate","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgResourceTypeCreate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgResourceTypeCreate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgResourceTypeInfo","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgResourceTypeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgResourceTypeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgServer","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgStartupListener","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgStartupListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgStartupListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIClusCfgStartupNotify","package":"druntime","parentType":"","signature":"IID IID_AsyncIClusCfgStartupNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIClusCfgStartupNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIEnumClusCfgIPAddresses","package":"druntime","parentType":"","signature":"IID IID_AsyncIEnumClusCfgIPAddresses","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIEnumClusCfgIPAddresses"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIEnumClusCfgManagedResource","package":"druntime","parentType":"","signature":"IID IID_AsyncIEnumClusCfgManagedResource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIEnumClusCfgManagedResource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIEnumClusCfgNetworks","package":"druntime","parentType":"","signature":"IID IID_AsyncIEnumClusCfgNetworks","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIEnumClusCfgNetworks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIEnumClusCfgPartitions","package":"druntime","parentType":"","signature":"IID IID_AsyncIEnumClusCfgPartitions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIEnumClusCfgPartitions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIMultiQI","package":"druntime","parentType":"","signature":"IID IID_AsyncIMultiQI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIMultiQI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIPipeByte","package":"druntime","parentType":"","signature":"IID IID_AsyncIPipeByte","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIPipeByte"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIPipeDouble","package":"druntime","parentType":"","signature":"IID IID_AsyncIPipeDouble","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIPipeDouble"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIPipeLong","package":"druntime","parentType":"","signature":"IID IID_AsyncIPipeLong","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIPipeLong"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_AsyncIUnknown","package":"druntime","parentType":"","signature":"IID IID_AsyncIUnknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_AsyncIUnknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DFConstraint","package":"druntime","parentType":"","signature":"IID IID_DFConstraint","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DFConstraint"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIEnumWbemClassObject","package":"druntime","parentType":"","signature":"IID IID_DIEnumWbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIEnumWbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemCallResult","package":"druntime","parentType":"","signature":"IID IID_DIWbemCallResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemCallResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemClassObject","package":"druntime","parentType":"","signature":"IID IID_DIWbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemContext","package":"druntime","parentType":"","signature":"IID IID_DIWbemContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemLocator","package":"druntime","parentType":"","signature":"IID IID_DIWbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemObjectSink","package":"druntime","parentType":"","signature":"IID IID_DIWbemObjectSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemObjectSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemQualifierSet","package":"druntime","parentType":"","signature":"IID IID_DIWbemQualifierSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemQualifierSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_DIWbemServices","package":"druntime","parentType":"","signature":"IID IID_DIWbemServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_DIWbemServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_Folder","package":"druntime","parentType":"","signature":"IID IID_Folder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_Folder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_Folder2","package":"druntime","parentType":"","signature":"IID IID_Folder2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_Folder2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_Folder3","package":"druntime","parentType":"","signature":"IID IID_Folder3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_Folder3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItem","package":"druntime","parentType":"","signature":"IID IID_FolderItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItem2","package":"druntime","parentType":"","signature":"IID IID_FolderItem2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItem2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItems","package":"druntime","parentType":"","signature":"IID IID_FolderItems","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItems"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItems2","package":"druntime","parentType":"","signature":"IID IID_FolderItems2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItems2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItems3","package":"druntime","parentType":"","signature":"IID IID_FolderItems3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItems3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItemVerb","package":"druntime","parentType":"","signature":"IID IID_FolderItemVerb","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItemVerb"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_FolderItemVerbs","package":"druntime","parentType":"","signature":"IID IID_FolderItemVerbs","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_FolderItemVerbs"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccessControl","package":"druntime","parentType":"","signature":"IID IID_IAccessControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccessControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccessible","package":"druntime","parentType":"","signature":"IID IID_IAccessible","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccessible"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccessibleHandler","package":"druntime","parentType":"","signature":"IID IID_IAccessibleHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccessibleHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccessor","package":"druntime","parentType":"","signature":"IID IID_IAccessor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccessor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccIdentity","package":"druntime","parentType":"","signature":"IID IID_IAccIdentity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccIdentity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccountDiscovery","package":"druntime","parentType":"","signature":"IID IID_IAccountDiscovery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccountDiscovery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccPropServer","package":"druntime","parentType":"","signature":"IID IID_IAccPropServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccPropServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAccPropServices","package":"druntime","parentType":"","signature":"IID IID_IAccPropServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAccPropServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IACList","package":"druntime","parentType":"","signature":"IID IID_IACList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IACList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IACList2","package":"druntime","parentType":"","signature":"IID IID_IACList2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IACList2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActionProgress","package":"druntime","parentType":"","signature":"IID IID_IActionProgress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActionProgress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActionProgressDialog","package":"druntime","parentType":"","signature":"IID IID_IActionProgressDialog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActionProgressDialog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveDesktop","package":"druntime","parentType":"","signature":"IID IID_IActiveDesktop","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveDesktop"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIME","package":"druntime","parentType":"","signature":"IID IID_IActiveIME","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIME2","package":"druntime","parentType":"","signature":"IID IID_IActiveIME2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIME2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIMMApp","package":"druntime","parentType":"","signature":"IID IID_IActiveIMMApp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIMMApp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIMMIME","package":"druntime","parentType":"","signature":"IID IID_IActiveIMMIME","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIMMIME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIMMMessagePumpOwner","package":"druntime","parentType":"","signature":"IID IID_IActiveIMMMessagePumpOwner","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIMMMessagePumpOwner"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveIMMRegistrar","package":"druntime","parentType":"","signature":"IID IID_IActiveIMMRegistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveIMMRegistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScript","package":"druntime","parentType":"","signature":"IID IID_IActiveScript","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScript"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptAuthor","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptAuthor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptAuthor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptAuthorProcedure","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptAuthorProcedure","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptAuthorProcedure"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptDebug","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptDebug32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptDebug32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptDebug32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptDebug64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptDebug64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptDebug64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptEncode","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptEncode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptEncode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptError","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptError64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptError64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptError64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptErrorDebug","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptErrorDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptErrorDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptGarbageCollector","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptGarbageCollector","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptGarbageCollector"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptHostEncode","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptHostEncode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptHostEncode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParse","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParse","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParse"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParse32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParse32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParse32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParse64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParse64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParse64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedure","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedure","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedure"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedure2_32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedure2_32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedure2_32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedure2_64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedure2_64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedure2_64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedure32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedure32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedure32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedure64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedure64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedure64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedureOld","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedureOld","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedureOld"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedureOld32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedureOld32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedureOld32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptParseProcedureOld64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptParseProcedureOld64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptParseProcedureOld64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptProperty","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSIPInfo","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSIPInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSIPInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSite","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSiteDebug32","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSiteDebug32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSiteDebug32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSiteDebug64","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSiteDebug64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSiteDebug64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSiteInterruptPoll","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSiteInterruptPoll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSiteInterruptPoll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptSiteWindow","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptSiteWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptSiteWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveScriptStats","package":"druntime","parentType":"","signature":"IID IID_IActiveScriptStats","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveScriptStats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IActiveXSafetyProvider","package":"druntime","parentType":"","signature":"IID IID_IActiveXSafetyProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IActiveXSafetyProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAdapterInfo","package":"druntime","parentType":"","signature":"IID IID_IAdapterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAdapterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAdapterNotificationSink","package":"druntime","parentType":"","signature":"IID IID_IAdapterNotificationSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAdapterNotificationSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAddEvents","package":"druntime","parentType":"","signature":"IID IID_IAddEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAddEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAddressBarParser","package":"druntime","parentType":"","signature":"IID IID_IAddressBarParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAddressBarParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAddrExclusionControl","package":"druntime","parentType":"","signature":"IID IID_IAddrExclusionControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAddrExclusionControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAddrTrackingControl","package":"druntime","parentType":"","signature":"IID IID_IAddrTrackingControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAddrTrackingControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADs","package":"druntime","parentType":"","signature":"IID IID_IADs","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADs"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsAccessControlEntry","package":"druntime","parentType":"","signature":"IID IID_IADsAccessControlEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsAccessControlEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsAccessControlList","package":"druntime","parentType":"","signature":"IID IID_IADsAccessControlList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsAccessControlList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsAcePrivate","package":"druntime","parentType":"","signature":"IID IID_IADsAcePrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsAcePrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsAcl","package":"druntime","parentType":"","signature":"IID IID_IADsAcl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsAcl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsADSystemInfo","package":"druntime","parentType":"","signature":"IID IID_IADsADSystemInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsADSystemInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsBackLink","package":"druntime","parentType":"","signature":"IID IID_IADsBackLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsBackLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsCaseIgnoreList","package":"druntime","parentType":"","signature":"IID IID_IADsCaseIgnoreList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsCaseIgnoreList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsClass","package":"druntime","parentType":"","signature":"IID IID_IADsClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsCollection","package":"druntime","parentType":"","signature":"IID IID_IADsCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsComputer","package":"druntime","parentType":"","signature":"IID IID_IADsComputer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsComputer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsComputerOperations","package":"druntime","parentType":"","signature":"IID IID_IADsComputerOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsComputerOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsContainer","package":"druntime","parentType":"","signature":"IID IID_IADsContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsDeleteOps","package":"druntime","parentType":"","signature":"IID IID_IADsDeleteOps","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsDeleteOps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsDNWithBinary","package":"druntime","parentType":"","signature":"IID IID_IADsDNWithBinary","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsDNWithBinary"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsDNWithString","package":"druntime","parentType":"","signature":"IID IID_IADsDNWithString","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsDNWithString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsDomain","package":"druntime","parentType":"","signature":"IID IID_IADsDomain","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsDomain"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsEmail","package":"druntime","parentType":"","signature":"IID IID_IADsEmail","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsEmail"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsExtension","package":"druntime","parentType":"","signature":"IID IID_IADsExtension","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsExtension"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsFaxNumber","package":"druntime","parentType":"","signature":"IID IID_IADsFaxNumber","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsFaxNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsFileService","package":"druntime","parentType":"","signature":"IID IID_IADsFileService","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsFileService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsFileServiceOperations","package":"druntime","parentType":"","signature":"IID IID_IADsFileServiceOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsFileServiceOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsFileShare","package":"druntime","parentType":"","signature":"IID IID_IADsFileShare","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsFileShare"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsGroup","package":"druntime","parentType":"","signature":"IID IID_IADsGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsHold","package":"druntime","parentType":"","signature":"IID IID_IADsHold","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsHold"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsLargeInteger","package":"druntime","parentType":"","signature":"IID IID_IADsLargeInteger","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsLargeInteger"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsLocality","package":"druntime","parentType":"","signature":"IID IID_IADsLocality","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsLocality"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsMembers","package":"druntime","parentType":"","signature":"IID IID_IADsMembers","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsMembers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsNamespaces","package":"druntime","parentType":"","signature":"IID IID_IADsNamespaces","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsNamespaces"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsNameTranslate","package":"druntime","parentType":"","signature":"IID IID_IADsNameTranslate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsNameTranslate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsNetAddress","package":"druntime","parentType":"","signature":"IID IID_IADsNetAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsNetAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsO","package":"druntime","parentType":"","signature":"IID IID_IADsO","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsObjectOptions","package":"druntime","parentType":"","signature":"IID IID_IADsObjectOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsObjectOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsObjOptPrivate","package":"druntime","parentType":"","signature":"IID IID_IADsObjOptPrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsObjOptPrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsOctetList","package":"druntime","parentType":"","signature":"IID IID_IADsOctetList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsOctetList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsOpenDSObject","package":"druntime","parentType":"","signature":"IID IID_IADsOpenDSObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsOpenDSObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsOU","package":"druntime","parentType":"","signature":"IID IID_IADsOU","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsOU"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPath","package":"druntime","parentType":"","signature":"IID IID_IADsPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPathname","package":"druntime","parentType":"","signature":"IID IID_IADsPathname","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPathname"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPathnameProvider","package":"druntime","parentType":"","signature":"IID IID_IADsPathnameProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPathnameProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPostalAddress","package":"druntime","parentType":"","signature":"IID IID_IADsPostalAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPostalAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPrintJob","package":"druntime","parentType":"","signature":"IID IID_IADsPrintJob","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPrintJob"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPrintJobOperations","package":"druntime","parentType":"","signature":"IID IID_IADsPrintJobOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPrintJobOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPrintQueue","package":"druntime","parentType":"","signature":"IID IID_IADsPrintQueue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPrintQueue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPrintQueueOperations","package":"druntime","parentType":"","signature":"IID IID_IADsPrintQueueOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPrintQueueOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsProperty","package":"druntime","parentType":"","signature":"IID IID_IADsProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPropertyEntry","package":"druntime","parentType":"","signature":"IID IID_IADsPropertyEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPropertyEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPropertyList","package":"druntime","parentType":"","signature":"IID IID_IADsPropertyList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPropertyList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPropertyValue","package":"druntime","parentType":"","signature":"IID IID_IADsPropertyValue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPropertyValue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsPropertyValue2","package":"druntime","parentType":"","signature":"IID IID_IADsPropertyValue2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsPropertyValue2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsReplicaPointer","package":"druntime","parentType":"","signature":"IID IID_IADsReplicaPointer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsReplicaPointer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsResource","package":"druntime","parentType":"","signature":"IID IID_IADsResource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsResource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsSearch","package":"druntime","parentType":"","signature":"IID IID_IADsSearch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsSearch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsSecurityDescriptor","package":"druntime","parentType":"","signature":"IID IID_IADsSecurityDescriptor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsSecurityDescriptor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsSecurityUtility","package":"druntime","parentType":"","signature":"IID IID_IADsSecurityUtility","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsSecurityUtility"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsService","package":"druntime","parentType":"","signature":"IID IID_IADsService","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsServiceOperations","package":"druntime","parentType":"","signature":"IID IID_IADsServiceOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsServiceOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsSession","package":"druntime","parentType":"","signature":"IID IID_IADsSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsSyntax","package":"druntime","parentType":"","signature":"IID IID_IADsSyntax","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsSyntax"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsTimestamp","package":"druntime","parentType":"","signature":"IID IID_IADsTimestamp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsTimestamp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsTypedName","package":"druntime","parentType":"","signature":"IID IID_IADsTypedName","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsTypedName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsUmiHelperPrivate","package":"druntime","parentType":"","signature":"IID IID_IADsUmiHelperPrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsUmiHelperPrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsUser","package":"druntime","parentType":"","signature":"IID IID_IADsUser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsUser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsValue","package":"druntime","parentType":"","signature":"IID IID_IADsValue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsValue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IADsWinNTSystemInfo","package":"druntime","parentType":"","signature":"IID IID_IADsWinNTSystemInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IADsWinNTSystemInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAdviseSink","package":"druntime","parentType":"","signature":"IID IID_IAdviseSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAdviseSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAdviseSink2","package":"druntime","parentType":"","signature":"IID IID_IAdviseSink2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAdviseSink2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAdviseSinkEx","package":"druntime","parentType":"","signature":"IID IID_IAdviseSinkEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAdviseSinkEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAlertReport","package":"druntime","parentType":"","signature":"IID IID_IAlertReport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAlertReport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAlertTarget","package":"druntime","parentType":"","signature":"IID IID_IAlertTarget","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAlertTarget"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAlgSetup","package":"druntime","parentType":"","signature":"IID IID_IAlgSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAlgSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAlterIndex","package":"druntime","parentType":"","signature":"IID IID_IAlterIndex","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAlterIndex"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAlterTable","package":"druntime","parentType":"","signature":"IID IID_IAlterTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAlterTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnchorClick","package":"druntime","parentType":"","signature":"IID IID_IAnchorClick","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnchorClick"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposer","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposer2","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposer2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposer2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposerFactory","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposerFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposerFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposerSite","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposerSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposerSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposerSiteFactory","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposerSiteFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposerSiteFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationComposerSiteSink","package":"druntime","parentType":"","signature":"IID IID_IAnimationComposerSiteSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationComposerSiteSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationFragment","package":"druntime","parentType":"","signature":"IID IID_IAnimationFragment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationFragment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAnimationRoot","package":"druntime","parentType":"","signature":"IID IID_IAnimationRoot","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAnimationRoot"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IApplicationDebugger","package":"druntime","parentType":"","signature":"IID IID_IApplicationDebugger","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IApplicationDebugger"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IApplicationDebuggerUI","package":"druntime","parentType":"","signature":"IID IID_IApplicationDebuggerUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IApplicationDebuggerUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IApplicationGateway","package":"druntime","parentType":"","signature":"IID IID_IApplicationGateway","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IApplicationGateway"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IApplicationGatewayServices","package":"druntime","parentType":"","signature":"IID IID_IApplicationGatewayServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IApplicationGatewayServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAppPublisher","package":"druntime","parentType":"","signature":"IID IID_IAppPublisher","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAppPublisher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAsyncBindCtx","package":"druntime","parentType":"","signature":"IID IID_IAsyncBindCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAsyncBindCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAsyncManager","package":"druntime","parentType":"","signature":"IID IID_IAsyncManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAsyncManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAsyncMoniker","package":"druntime","parentType":"","signature":"IID IID_IAsyncMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAsyncMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAsyncOperation","package":"druntime","parentType":"","signature":"IID IID_IAsyncOperation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAsyncOperation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAsyncRpcChannelBuffer","package":"druntime","parentType":"","signature":"IID IID_IAsyncRpcChannelBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAsyncRpcChannelBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAttributesRaw","package":"druntime","parentType":"","signature":"IID IID_IAttributesRaw","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAttributesRaw"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAuditControl","package":"druntime","parentType":"","signature":"IID IID_IAuditControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAuditControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAuthenticate","package":"druntime","parentType":"","signature":"IID IID_IAuthenticate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAuthenticate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAutoComplete","package":"druntime","parentType":"","signature":"IID IID_IAutoComplete","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAutoComplete"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAutoComplete2","package":"druntime","parentType":"","signature":"IID IID_IAutoComplete2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAutoComplete2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAutoCompleteDropDown","package":"druntime","parentType":"","signature":"IID IID_IAutoCompleteDropDown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAutoCompleteDropDown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAutoCompList","package":"druntime","parentType":"","signature":"IID IID_IAutoCompList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAutoCompList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IAutoDiscoveryProvider","package":"druntime","parentType":"","signature":"IID IID_IAutoDiscoveryProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IAutoDiscoveryProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyCallback","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyCallback1","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyCallback1","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyCallback1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyError","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyFile","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyGroup","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyJob","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyJob","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyJob"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyJob1","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyJob1","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyJob1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyJob2","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyJob2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyJob2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyManager","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBackgroundCopyQMgr","package":"druntime","parentType":"","signature":"IID IID_IBackgroundCopyQMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBackgroundCopyQMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBidiRequestSpl","package":"druntime","parentType":"","signature":"IID IID_IBidiRequestSpl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBidiRequestSpl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindCtx","package":"druntime","parentType":"","signature":"IID IID_IBindCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindEventHandler","package":"druntime","parentType":"","signature":"IID IID_IBindEventHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindEventHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindHost","package":"druntime","parentType":"","signature":"IID IID_IBindHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBinding","package":"druntime","parentType":"","signature":"IID IID_IBinding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBinding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindProtocol","package":"druntime","parentType":"","signature":"IID IID_IBindProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindResource","package":"druntime","parentType":"","signature":"IID IID_IBindResource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindResource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindStatusCallback","package":"druntime","parentType":"","signature":"IID IID_IBindStatusCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindStatusCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindStatusCallbackHolder","package":"druntime","parentType":"","signature":"IID IID_IBindStatusCallbackHolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindStatusCallbackHolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBindStatusCallbackMsg","package":"druntime","parentType":"","signature":"IID IID_IBindStatusCallbackMsg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBindStatusCallbackMsg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBitsTest1","package":"druntime","parentType":"","signature":"IID IID_IBitsTest1","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBitsTest1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBlockFormats","package":"druntime","parentType":"","signature":"IID IID_IBlockFormats","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBlockFormats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBlockingLock","package":"druntime","parentType":"","signature":"IID IID_IBlockingLock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBlockingLock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBoundObject","package":"druntime","parentType":"","signature":"IID IID_IBoundObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBoundObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBoundObjectSite","package":"druntime","parentType":"","signature":"IID IID_IBoundObjectSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBoundObjectSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBriefcaseStg","package":"druntime","parentType":"","signature":"IID IID_IBriefcaseStg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBriefcaseStg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IBurnEngine","package":"druntime","parentType":"","signature":"IID IID_IBurnEngine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IBurnEngine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallFactory","package":"druntime","parentType":"","signature":"IID IID_ICallFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallFrame","package":"druntime","parentType":"","signature":"IID IID_ICallFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallFrameEvents","package":"druntime","parentType":"","signature":"IID IID_ICallFrameEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallFrameEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallFrameWalker","package":"druntime","parentType":"","signature":"IID IID_ICallFrameWalker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallFrameWalker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallIndirect","package":"druntime","parentType":"","signature":"IID IID_ICallIndirect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallIndirect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallInterceptor","package":"druntime","parentType":"","signature":"IID IID_ICallInterceptor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallInterceptor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICallUnmarshal","package":"druntime","parentType":"","signature":"IID IID_ICallUnmarshal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICallUnmarshal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICancelMethodCalls","package":"druntime","parentType":"","signature":"IID IID_ICancelMethodCalls","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICancelMethodCalls"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICatalogFileInfo","package":"druntime","parentType":"","signature":"IID IID_ICatalogFileInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICatalogFileInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICategorizer","package":"druntime","parentType":"","signature":"IID IID_ICategorizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICategorizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICategoryProvider","package":"druntime","parentType":"","signature":"IID IID_ICategoryProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICategoryProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICatInformation","package":"druntime","parentType":"","signature":"IID IID_ICatInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICatInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICatRegister","package":"druntime","parentType":"","signature":"IID IID_ICatRegister","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICatRegister"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICDBurn","package":"druntime","parentType":"","signature":"IID IID_ICDBurn","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICDBurn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICEnroll","package":"druntime","parentType":"","signature":"IID IID_ICEnroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICEnroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICEnroll2","package":"druntime","parentType":"","signature":"IID IID_ICEnroll2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICEnroll2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICEnroll3","package":"druntime","parentType":"","signature":"IID IID_ICEnroll3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICEnroll3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICEnroll4","package":"druntime","parentType":"","signature":"IID IID_ICEnroll4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICEnroll4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IChannelHook","package":"druntime","parentType":"","signature":"IID IID_IChannelHook","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IChannelHook"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IChannelMgr","package":"druntime","parentType":"","signature":"IID IID_IChannelMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IChannelMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IChapteredRowset","package":"druntime","parentType":"","signature":"IID IID_IChapteredRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IChapteredRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICheckBox","package":"druntime","parentType":"","signature":"IID IID_ICheckBox","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICheckBox"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiAdmin","package":"druntime","parentType":"","signature":"IID IID_ICiAdmin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiAdmin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiAdminParams","package":"druntime","parentType":"","signature":"IID IID_ICiAdminParams","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiAdminParams"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCAdviseStatus","package":"druntime","parentType":"","signature":"IID IID_ICiCAdviseStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCAdviseStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDeferredPropRetriever","package":"druntime","parentType":"","signature":"IID IID_ICiCDeferredPropRetriever","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDeferredPropRetriever"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocName","package":"druntime","parentType":"","signature":"IID IID_ICiCDocName","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocNameToWorkidTranslator","package":"druntime","parentType":"","signature":"IID IID_ICiCDocNameToWorkidTranslator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocNameToWorkidTranslator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocNameToWorkidTranslatorEx","package":"druntime","parentType":"","signature":"IID IID_ICiCDocNameToWorkidTranslatorEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocNameToWorkidTranslatorEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocStore","package":"druntime","parentType":"","signature":"IID IID_ICiCDocStore","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocStore"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocStoreEx","package":"druntime","parentType":"","signature":"IID IID_ICiCDocStoreEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocStoreEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCDocStoreLocator","package":"druntime","parentType":"","signature":"IID IID_ICiCDocStoreLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCDocStoreLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCEventLogItem","package":"druntime","parentType":"","signature":"IID IID_ICiCEventLogItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCEventLogItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCFilterClient","package":"druntime","parentType":"","signature":"IID IID_ICiCFilterClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCFilterClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCFilterStatus","package":"druntime","parentType":"","signature":"IID IID_ICiCFilterStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCFilterStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCIndexNotificationStatus","package":"druntime","parentType":"","signature":"IID IID_ICiCIndexNotificationStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCIndexNotificationStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCLangRes","package":"druntime","parentType":"","signature":"IID IID_ICiCLangRes","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCLangRes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiControl","package":"druntime","parentType":"","signature":"IID IID_ICiControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCOpenedDoc","package":"druntime","parentType":"","signature":"IID IID_ICiCOpenedDoc","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCOpenedDoc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCPropertyStorage","package":"druntime","parentType":"","signature":"IID IID_ICiCPropertyStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCPropertyStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCPropRetriever","package":"druntime","parentType":"","signature":"IID IID_ICiCPropRetriever","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCPropRetriever"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCQueryNotification","package":"druntime","parentType":"","signature":"IID IID_ICiCQueryNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCQueryNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCQuerySession","package":"druntime","parentType":"","signature":"IID IID_ICiCQuerySession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCQuerySession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCResourceMonitor","package":"druntime","parentType":"","signature":"IID IID_ICiCResourceMonitor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCResourceMonitor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCScope","package":"druntime","parentType":"","signature":"IID IID_ICiCScope","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCScope"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCScopeChecker","package":"druntime","parentType":"","signature":"IID IID_ICiCScopeChecker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCScopeChecker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCScopeEnumerator","package":"druntime","parentType":"","signature":"IID IID_ICiCScopeEnumerator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCScopeEnumerator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCSecurityChecker","package":"druntime","parentType":"","signature":"IID IID_ICiCSecurityChecker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCSecurityChecker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiCUserSecurity","package":"druntime","parentType":"","signature":"IID IID_ICiCUserSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiCUserSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiDocChangeNotifySink","package":"druntime","parentType":"","signature":"IID IID_ICiDocChangeNotifySink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiDocChangeNotifySink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiEnumWorkids","package":"druntime","parentType":"","signature":"IID IID_ICiEnumWorkids","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiEnumWorkids"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiFrameworkQuery","package":"druntime","parentType":"","signature":"IID IID_ICiFrameworkQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiFrameworkQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiIndexNotification","package":"druntime","parentType":"","signature":"IID IID_ICiIndexNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiIndexNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiIndexNotificationEntry","package":"druntime","parentType":"","signature":"IID IID_ICiIndexNotificationEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiIndexNotificationEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiISearchCreator","package":"druntime","parentType":"","signature":"IID IID_ICiISearchCreator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiISearchCreator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiManager","package":"druntime","parentType":"","signature":"IID IID_ICiManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiPersistIncrFile","package":"druntime","parentType":"","signature":"IID IID_ICiPersistIncrFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiPersistIncrFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiQueryPropertyMapper","package":"druntime","parentType":"","signature":"IID IID_ICiQueryPropertyMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiQueryPropertyMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICiStartup","package":"druntime","parentType":"","signature":"IID IID_ICiStartup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICiStartup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClassActivator","package":"druntime","parentType":"","signature":"IID IID_IClassActivator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClassActivator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClassFactory","package":"druntime","parentType":"","signature":"IID IID_IClassFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClassFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClassFactory2","package":"druntime","parentType":"","signature":"IID IID_IClassFactory2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClassFactory2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClassFactoryEx","package":"druntime","parentType":"","signature":"IID IID_IClassFactoryEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClassFactoryEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClientCaps","package":"druntime","parentType":"","signature":"IID IID_IClientCaps","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClientCaps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClientSecurity","package":"druntime","parentType":"","signature":"IID IID_IClientSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClientSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgAsyncEvictCleanup","package":"druntime","parentType":"","signature":"IID IID_IClusCfgAsyncEvictCleanup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgAsyncEvictCleanup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgBaseCluster","package":"druntime","parentType":"","signature":"IID IID_IClusCfgBaseCluster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgBaseCluster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgCallback","package":"druntime","parentType":"","signature":"IID IID_IClusCfgCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgCapabilities","package":"druntime","parentType":"","signature":"IID IID_IClusCfgCapabilities","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgCapabilities"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgClusterConnection","package":"druntime","parentType":"","signature":"IID IID_IClusCfgClusterConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgClusterConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgClusterInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgClusterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgClusterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgCredentials","package":"druntime","parentType":"","signature":"IID IID_IClusCfgCredentials","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgCredentials"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgEvictCleanup","package":"druntime","parentType":"","signature":"IID IID_IClusCfgEvictCleanup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgEvictCleanup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgGroupCfg","package":"druntime","parentType":"","signature":"IID IID_IClusCfgGroupCfg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgGroupCfg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgInitialize","package":"druntime","parentType":"","signature":"IID IID_IClusCfgInitialize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgInitialize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgIPAddressInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgIPAddressInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgIPAddressInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgManagedResourceCfg","package":"druntime","parentType":"","signature":"IID IID_IClusCfgManagedResourceCfg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgManagedResourceCfg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgManagedResourceInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgManagedResourceInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgManagedResourceInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgMemberSetChangeListener","package":"druntime","parentType":"","signature":"IID IID_IClusCfgMemberSetChangeListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgMemberSetChangeListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgNetworkInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgNetworkInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgNetworkInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgNodeInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgNodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgNodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgPartitionInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgPartitionInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgPartitionInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgPollingCallback","package":"druntime","parentType":"","signature":"IID IID_IClusCfgPollingCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgPollingCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgPollingCallbackInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgPollingCallbackInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgPollingCallbackInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResourceCreate","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResourceCreate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResourceCreate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResourcePostCreate","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResourcePostCreate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResourcePostCreate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResourcePreCreate","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResourcePreCreate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResourcePreCreate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResourceTypeCreate","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResourceTypeCreate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResourceTypeCreate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResourceTypeInfo","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResourceTypeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResourceTypeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgResTypeServicesInitializ","package":"druntime","parentType":"","signature":"IID IID_IClusCfgResTypeServicesInitializ","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgResTypeServicesInitializ"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgServer","package":"druntime","parentType":"","signature":"IID IID_IClusCfgServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgSetCredentials","package":"druntime","parentType":"","signature":"IID IID_IClusCfgSetCredentials","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgSetCredentials"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgStartupListener","package":"druntime","parentType":"","signature":"IID IID_IClusCfgStartupListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgStartupListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgStartupNotify","package":"druntime","parentType":"","signature":"IID IID_IClusCfgStartupNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgStartupNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgVerify","package":"druntime","parentType":"","signature":"IID IID_IClusCfgVerify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgVerify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusCfgWizard","package":"druntime","parentType":"","signature":"IID IID_IClusCfgWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusCfgWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IClusterApplicationWizard","package":"druntime","parentType":"","signature":"IID IID_IClusterApplicationWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IClusterApplicationWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICodeInstall","package":"druntime","parentType":"","signature":"IID IID_ICodeInstall","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICodeInstall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnMapper","package":"druntime","parentType":"","signature":"IID IID_IColumnMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnMapperCreator","package":"druntime","parentType":"","signature":"IID IID_IColumnMapperCreator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnMapperCreator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnProvider","package":"druntime","parentType":"","signature":"IID IID_IColumnProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnsInfo","package":"druntime","parentType":"","signature":"IID IID_IColumnsInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnsInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnsInfo2","package":"druntime","parentType":"","signature":"IID IID_IColumnsInfo2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnsInfo2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IColumnsRowset","package":"druntime","parentType":"","signature":"IID IID_IColumnsRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IColumnsRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICombobox","package":"druntime","parentType":"","signature":"IID IID_ICombobox","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICombobox"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommand","package":"druntime","parentType":"","signature":"IID IID_ICommand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandCost","package":"druntime","parentType":"","signature":"IID IID_ICommandCost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandCost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandPersist","package":"druntime","parentType":"","signature":"IID IID_ICommandPersist","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandPersist"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandPrepare","package":"druntime","parentType":"","signature":"IID IID_ICommandPrepare","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandPrepare"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandProperties","package":"druntime","parentType":"","signature":"IID IID_ICommandProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandStream","package":"druntime","parentType":"","signature":"IID IID_ICommandStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandText","package":"druntime","parentType":"","signature":"IID IID_ICommandText","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandText"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandTree","package":"druntime","parentType":"","signature":"IID IID_ICommandTree","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandTree"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandValidate","package":"druntime","parentType":"","signature":"IID IID_ICommandValidate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandValidate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommandWithParameters","package":"druntime","parentType":"","signature":"IID IID_ICommandWithParameters","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommandWithParameters"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommDlgBrowser","package":"druntime","parentType":"","signature":"IID IID_ICommDlgBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommDlgBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommDlgBrowser2","package":"druntime","parentType":"","signature":"IID IID_ICommDlgBrowser2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommDlgBrowser2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICommonQuery","package":"druntime","parentType":"","signature":"IID IID_ICommonQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICommonQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IComThreadingInfo","package":"druntime","parentType":"","signature":"IID IID_IComThreadingInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IComThreadingInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConfigurationConnection","package":"druntime","parentType":"","signature":"IID IID_IConfigurationConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConfigurationConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConnectionInfo","package":"druntime","parentType":"","signature":"IID IID_IConnectionInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConnectionInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConnectionManager","package":"druntime","parentType":"","signature":"IID IID_IConnectionManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConnectionManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConnectionPoint","package":"druntime","parentType":"","signature":"IID IID_IConnectionPoint","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConnectionPoint"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConnectionPointContainer","package":"druntime","parentType":"","signature":"IID IID_IConnectionPointContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConnectionPointContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContextCallback","package":"druntime","parentType":"","signature":"IID IID_IContextCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContextCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContextMenu","package":"druntime","parentType":"","signature":"IID IID_IContextMenu","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContextMenu"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContextMenu2","package":"druntime","parentType":"","signature":"IID IID_IContextMenu2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContextMenu2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContextMenu3","package":"druntime","parentType":"","signature":"IID IID_IContextMenu3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContextMenu3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContinue","package":"druntime","parentType":"","signature":"IID IID_IContinue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContinue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IContinueCallback","package":"druntime","parentType":"","signature":"IID IID_IContinueCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IContinueCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IConvertType","package":"druntime","parentType":"","signature":"IID IID_IConvertType","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IConvertType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrBarn","package":"druntime","parentType":"","signature":"IID IID_ICrBarn","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrBarn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrBarn2","package":"druntime","parentType":"","signature":"IID IID_ICrBarn2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrBarn2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrBlinds","package":"druntime","parentType":"","signature":"IID IID_ICrBlinds","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrBlinds"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrBlinds2","package":"druntime","parentType":"","signature":"IID IID_ICrBlinds2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrBlinds2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrBlur","package":"druntime","parentType":"","signature":"IID IID_ICrBlur","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrBlur"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateErrorInfo","package":"druntime","parentType":"","signature":"IID IID_ICreateErrorInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateErrorInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateRow","package":"druntime","parentType":"","signature":"IID IID_ICreateRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateTypeInfo","package":"druntime","parentType":"","signature":"IID IID_ICreateTypeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateTypeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateTypeInfo2","package":"druntime","parentType":"","signature":"IID IID_ICreateTypeInfo2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateTypeInfo2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateTypeLib","package":"druntime","parentType":"","signature":"IID IID_ICreateTypeLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateTypeLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICreateTypeLib2","package":"druntime","parentType":"","signature":"IID IID_ICreateTypeLib2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICreateTypeLib2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrEmboss","package":"druntime","parentType":"","signature":"IID IID_ICrEmboss","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrEmboss"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrEngrave","package":"druntime","parentType":"","signature":"IID IID_ICrEngrave","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrEngrave"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrInset","package":"druntime","parentType":"","signature":"IID IID_ICrInset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrInset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrIris","package":"druntime","parentType":"","signature":"IID IID_ICrIris","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrIris"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrIris2","package":"druntime","parentType":"","signature":"IID IID_ICrIris2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrIris2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrRadialWipe","package":"druntime","parentType":"","signature":"IID IID_ICrRadialWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrRadialWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrSlide","package":"druntime","parentType":"","signature":"IID IID_ICrSlide","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrSlide"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrSpiral","package":"druntime","parentType":"","signature":"IID IID_ICrSpiral","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrSpiral"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrStretch","package":"druntime","parentType":"","signature":"IID IID_ICrStretch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrStretch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrWheel","package":"druntime","parentType":"","signature":"IID IID_ICrWheel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrWheel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICrZigzag","package":"druntime","parentType":"","signature":"IID IID_ICrZigzag","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICrZigzag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICSSFilter","package":"druntime","parentType":"","signature":"IID IID_ICSSFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICSSFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICSSFilterDispatch","package":"druntime","parentType":"","signature":"IID IID_ICSSFilterDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICSSFilterDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICSSFilterSite","package":"druntime","parentType":"","signature":"IID IID_ICSSFilterSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICSSFilterSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICurrentWorkingDirectory","package":"druntime","parentType":"","signature":"IID IID_ICurrentWorkingDirectory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICurrentWorkingDirectory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICursor","package":"druntime","parentType":"","signature":"IID IID_ICursor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICursor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICursorFind","package":"druntime","parentType":"","signature":"IID IID_ICursorFind","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICursorFind"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICursorMove","package":"druntime","parentType":"","signature":"IID IID_ICursorMove","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICursorMove"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICursorScroll","package":"druntime","parentType":"","signature":"IID IID_ICursorScroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICursorScroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICursorUpdateARow","package":"druntime","parentType":"","signature":"IID IID_ICursorUpdateARow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICursorUpdateARow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICustomDoc","package":"druntime","parentType":"","signature":"IID IID_ICustomDoc","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICustomDoc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ICustomRatingHelper","package":"druntime","parentType":"","signature":"IID IID_ICustomRatingHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ICustomRatingHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Array","package":"druntime","parentType":"","signature":"IID IID_IDA2Array","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Array"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Behavior","package":"druntime","parentType":"","signature":"IID IID_IDA2Behavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Behavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Event","package":"druntime","parentType":"","signature":"IID IID_IDA2Event","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Event"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2FontStyle","package":"druntime","parentType":"","signature":"IID IID_IDA2FontStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2FontStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Geometry","package":"druntime","parentType":"","signature":"IID IID_IDA2Geometry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Geometry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Image","package":"druntime","parentType":"","signature":"IID IID_IDA2Image","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Image"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2LineStyle","package":"druntime","parentType":"","signature":"IID IID_IDA2LineStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2LineStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2Statics","package":"druntime","parentType":"","signature":"IID IID_IDA2Statics","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2Statics"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2View","package":"druntime","parentType":"","signature":"IID IID_IDA2View","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2View"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2ViewerControl","package":"druntime","parentType":"","signature":"IID IID_IDA2ViewerControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2ViewerControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDA2ViewerControlWindowed","package":"druntime","parentType":"","signature":"IID IID_IDA2ViewerControlWindowed","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDA2ViewerControlWindowed"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAArray","package":"druntime","parentType":"","signature":"IID IID_IDAArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDABbox2","package":"druntime","parentType":"","signature":"IID IID_IDABbox2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDABbox2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDABbox3","package":"druntime","parentType":"","signature":"IID IID_IDABbox3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDABbox3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDABehavior","package":"druntime","parentType":"","signature":"IID IID_IDABehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDABehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDABoolean","package":"druntime","parentType":"","signature":"IID IID_IDABoolean","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDABoolean"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDABvrHook","package":"druntime","parentType":"","signature":"IID IID_IDABvrHook","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDABvrHook"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDACamera","package":"druntime","parentType":"","signature":"IID IID_IDACamera","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDACamera"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAColor","package":"druntime","parentType":"","signature":"IID IID_IDAColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDADashStyle","package":"druntime","parentType":"","signature":"IID IID_IDADashStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDADashStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDADrawingSurface","package":"druntime","parentType":"","signature":"IID IID_IDADrawingSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDADrawingSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDADXTransformResult","package":"druntime","parentType":"","signature":"IID IID_IDADXTransformResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDADXTransformResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAEndStyle","package":"druntime","parentType":"","signature":"IID IID_IDAEndStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAEndStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAEvent","package":"druntime","parentType":"","signature":"IID IID_IDAEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAFontStyle","package":"druntime","parentType":"","signature":"IID IID_IDAFontStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAFontStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAGeometry","package":"druntime","parentType":"","signature":"IID IID_IDAGeometry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAGeometry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAImage","package":"druntime","parentType":"","signature":"IID IID_IDAImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAImport","package":"druntime","parentType":"","signature":"IID IID_IDAImport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAImport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAImportationResult","package":"druntime","parentType":"","signature":"IID IID_IDAImportationResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAImportationResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAJoinStyle","package":"druntime","parentType":"","signature":"IID IID_IDAJoinStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAJoinStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDALineStyle","package":"druntime","parentType":"","signature":"IID IID_IDALineStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDALineStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAMatte","package":"druntime","parentType":"","signature":"IID IID_IDAMatte","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAMatte"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAMicrophone","package":"druntime","parentType":"","signature":"IID IID_IDAMicrophone","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAMicrophone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAModifiableBehavior","package":"druntime","parentType":"","signature":"IID IID_IDAModifiableBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAModifiableBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAMontage","package":"druntime","parentType":"","signature":"IID IID_IDAMontage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAMontage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDANumber","package":"druntime","parentType":"","signature":"IID IID_IDANumber","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDANumber"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPair","package":"druntime","parentType":"","signature":"IID IID_IDAPair","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPair"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPath2","package":"druntime","parentType":"","signature":"IID IID_IDAPath2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPath2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPickableResult","package":"druntime","parentType":"","signature":"IID IID_IDAPickableResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPickableResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPoint2","package":"druntime","parentType":"","signature":"IID IID_IDAPoint2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPoint2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPoint3","package":"druntime","parentType":"","signature":"IID IID_IDAPoint3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPoint3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAPreferences","package":"druntime","parentType":"","signature":"IID IID_IDAPreferences","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAPreferences"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDASite","package":"druntime","parentType":"","signature":"IID IID_IDASite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDASite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDASound","package":"druntime","parentType":"","signature":"IID IID_IDASound","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDASound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAStatics","package":"druntime","parentType":"","signature":"IID IID_IDAStatics","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAStatics"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAString","package":"druntime","parentType":"","signature":"IID IID_IDAString","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDataAdviseHolder","package":"druntime","parentType":"","signature":"IID IID_IDataAdviseHolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDataAdviseHolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDataChannel","package":"druntime","parentType":"","signature":"IID IID_IDataChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDataChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDataConvert","package":"druntime","parentType":"","signature":"IID IID_IDataConvert","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDataConvert"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDataFilter","package":"druntime","parentType":"","signature":"IID IID_IDataFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDataFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDataObject","package":"druntime","parentType":"","signature":"IID IID_IDataObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDataObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDATransform2","package":"druntime","parentType":"","signature":"IID IID_IDATransform2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDATransform2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDATransform3","package":"druntime","parentType":"","signature":"IID IID_IDATransform3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDATransform3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDATuple","package":"druntime","parentType":"","signature":"IID IID_IDATuple","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDATuple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAUntilNotifier","package":"druntime","parentType":"","signature":"IID IID_IDAUntilNotifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAUntilNotifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAUserData","package":"druntime","parentType":"","signature":"IID IID_IDAUserData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAUserData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAVector2","package":"druntime","parentType":"","signature":"IID IID_IDAVector2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAVector2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAVector3","package":"druntime","parentType":"","signature":"IID IID_IDAVector3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAVector3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAView","package":"druntime","parentType":"","signature":"IID IID_IDAView","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAViewerControl","package":"druntime","parentType":"","signature":"IID IID_IDAViewerControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAViewerControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAViewerControlWindowed","package":"druntime","parentType":"","signature":"IID IID_IDAViewerControlWindowed","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAViewerControlWindowed"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDAViewSite","package":"druntime","parentType":"","signature":"IID IID_IDAViewSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDAViewSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBAsynchNotify","package":"druntime","parentType":"","signature":"IID IID_IDBAsynchNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBAsynchNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBAsynchStatus","package":"druntime","parentType":"","signature":"IID IID_IDBAsynchStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBAsynchStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBBinderProperties","package":"druntime","parentType":"","signature":"IID IID_IDBBinderProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBBinderProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBCreateCommand","package":"druntime","parentType":"","signature":"IID IID_IDBCreateCommand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBCreateCommand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBCreateSession","package":"druntime","parentType":"","signature":"IID IID_IDBCreateSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBCreateSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBDataSourceAdmin","package":"druntime","parentType":"","signature":"IID IID_IDBDataSourceAdmin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBDataSourceAdmin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBInfo","package":"druntime","parentType":"","signature":"IID IID_IDBInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBInitialize","package":"druntime","parentType":"","signature":"IID IID_IDBInitialize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBInitialize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBProperties","package":"druntime","parentType":"","signature":"IID IID_IDBProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBSchemaCommand","package":"druntime","parentType":"","signature":"IID IID_IDBSchemaCommand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBSchemaCommand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDBSchemaRowset","package":"druntime","parentType":"","signature":"IID IID_IDBSchemaRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDBSchemaRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDCInfo","package":"druntime","parentType":"","signature":"IID IID_IDCInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDCInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDDVideoAcceleratorContainer","package":"druntime","parentType":"","signature":"IID IID_IDDVideoAcceleratorContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDDVideoAcceleratorContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDDVideoPortContainer","package":"druntime","parentType":"","signature":"IID IID_IDDVideoPortContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDDVideoPortContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebug","package":"druntime","parentType":"","signature":"IID IID_IDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplication","package":"druntime","parentType":"","signature":"IID IID_IDebugApplication","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplication"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplication32","package":"druntime","parentType":"","signature":"IID IID_IDebugApplication32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplication32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplication64","package":"druntime","parentType":"","signature":"IID IID_IDebugApplication64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplication64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplicationEx","package":"druntime","parentType":"","signature":"IID IID_IDebugApplicationEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplicationEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplicationNode","package":"druntime","parentType":"","signature":"IID IID_IDebugApplicationNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplicationNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplicationNodeEvents","package":"druntime","parentType":"","signature":"IID IID_IDebugApplicationNodeEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplicationNodeEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplicationThread","package":"druntime","parentType":"","signature":"IID IID_IDebugApplicationThread","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplicationThread"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugApplicationThread64","package":"druntime","parentType":"","signature":"IID IID_IDebugApplicationThread64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugApplicationThread64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugAsyncOperation","package":"druntime","parentType":"","signature":"IID IID_IDebugAsyncOperation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugAsyncOperation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugAsyncOperationCallBack","package":"druntime","parentType":"","signature":"IID IID_IDebugAsyncOperationCallBack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugAsyncOperationCallBack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugCodeContext","package":"druntime","parentType":"","signature":"IID IID_IDebugCodeContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugCodeContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugCookie","package":"druntime","parentType":"","signature":"IID IID_IDebugCookie","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugCookie"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocument","package":"druntime","parentType":"","signature":"IID IID_IDebugDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentContext","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentHelper32","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentHelper32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentHelper32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentHelper64","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentHelper64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentHelper64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentHelperEx","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentHelperEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentHelperEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentHost","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentInfo","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentProvider","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentText","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentText","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentText"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentTextAuthor","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentTextAuthor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentTextAuthor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentTextEvents","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentTextEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentTextEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugDocumentTextExternalAuthor","package":"druntime","parentType":"","signature":"IID IID_IDebugDocumentTextExternalAuthor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugDocumentTextExternalAuthor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugExpression","package":"druntime","parentType":"","signature":"IID IID_IDebugExpression","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugExpression"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugExpressionCallBack","package":"druntime","parentType":"","signature":"IID IID_IDebugExpressionCallBack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugExpressionCallBack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugExpressionContext","package":"druntime","parentType":"","signature":"IID IID_IDebugExpressionContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugExpressionContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugExtendedProperty","package":"druntime","parentType":"","signature":"IID IID_IDebugExtendedProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugExtendedProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugFormatter","package":"druntime","parentType":"","signature":"IID IID_IDebugFormatter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugFormatter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugHelper","package":"druntime","parentType":"","signature":"IID IID_IDebugHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugHelperEx","package":"druntime","parentType":"","signature":"IID IID_IDebugHelperEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugHelperEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugOut","package":"druntime","parentType":"","signature":"IID IID_IDebugOut","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugOut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugProperty","package":"druntime","parentType":"","signature":"IID IID_IDebugProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugPropertyEnumType_All","package":"druntime","parentType":"","signature":"IID IID_IDebugPropertyEnumType_All","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugPropertyEnumType_All"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugPropertyEnumType_Arguments","package":"druntime","parentType":"","signature":"IID IID_IDebugPropertyEnumType_Arguments","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugPropertyEnumType_Arguments"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugPropertyEnumType_Locals","package":"druntime","parentType":"","signature":"IID IID_IDebugPropertyEnumType_Locals","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugPropertyEnumType_Locals"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugPropertyEnumType_LocalsPlus","package":"druntime","parentType":"","signature":"IID IID_IDebugPropertyEnumType_LocalsPlus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugPropertyEnumType_LocalsPlus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugPropertyEnumType_Registers","package":"druntime","parentType":"","signature":"IID IID_IDebugPropertyEnumType_Registers","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugPropertyEnumType_Registers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugRegister","package":"druntime","parentType":"","signature":"IID IID_IDebugRegister","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugRegister"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugSessionProvider","package":"druntime","parentType":"","signature":"IID IID_IDebugSessionProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugSessionProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugSessionProviderEx","package":"druntime","parentType":"","signature":"IID IID_IDebugSessionProviderEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugSessionProviderEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugSetValueCallback","package":"druntime","parentType":"","signature":"IID IID_IDebugSetValueCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugSetValueCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStackFrame","package":"druntime","parentType":"","signature":"IID IID_IDebugStackFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStackFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStackFrameSniffer","package":"druntime","parentType":"","signature":"IID IID_IDebugStackFrameSniffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStackFrameSniffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStackFrameSnifferEx","package":"druntime","parentType":"","signature":"IID IID_IDebugStackFrameSnifferEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStackFrameSnifferEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStackFrameSnifferEx32","package":"druntime","parentType":"","signature":"IID IID_IDebugStackFrameSnifferEx32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStackFrameSnifferEx32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStackFrameSnifferEx64","package":"druntime","parentType":"","signature":"IID IID_IDebugStackFrameSnifferEx64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStackFrameSnifferEx64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugStream","package":"druntime","parentType":"","signature":"IID IID_IDebugStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugSyncOperation","package":"druntime","parentType":"","signature":"IID IID_IDebugSyncOperation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugSyncOperation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugThreadCall","package":"druntime","parentType":"","signature":"IID IID_IDebugThreadCall","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugThreadCall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugThreadCall32","package":"druntime","parentType":"","signature":"IID IID_IDebugThreadCall32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugThreadCall32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDebugThreadCall64","package":"druntime","parentType":"","signature":"IID IID_IDebugThreadCall64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDebugThreadCall64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDelaydC","package":"druntime","parentType":"","signature":"IID IID_IDelaydC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDelaydC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDelayedRelease","package":"druntime","parentType":"","signature":"IID IID_IDelayedRelease","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDelayedRelease"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDelegateFolder","package":"druntime","parentType":"","signature":"IID IID_IDelegateFolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDelegateFolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDeskBand","package":"druntime","parentType":"","signature":"IID IID_IDeskBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDeskBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDeviceRect","package":"druntime","parentType":"","signature":"IID IID_IDeviceRect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDeviceRect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDfReserved1","package":"druntime","parentType":"","signature":"IID IID_IDfReserved1","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDfReserved1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDfReserved2","package":"druntime","parentType":"","signature":"IID IID_IDfReserved2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDfReserved2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDfReserved3","package":"druntime","parentType":"","signature":"IID IID_IDfReserved3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDfReserved3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDialBranding","package":"druntime","parentType":"","signature":"IID IID_IDialBranding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDialBranding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDialEngine","package":"druntime","parentType":"","signature":"IID IID_IDialEngine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDialEngine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDialEventSink","package":"druntime","parentType":"","signature":"IID IID_IDialEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDialEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDifferencing","package":"druntime","parentType":"","signature":"IID IID_IDifferencing","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDifferencing"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3D","package":"druntime","parentType":"","signature":"IID IID_IDirect3D","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3D"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3D2","package":"druntime","parentType":"","signature":"IID IID_IDirect3D2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3D2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3D3","package":"druntime","parentType":"","signature":"IID IID_IDirect3D3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3D3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3D7","package":"druntime","parentType":"","signature":"IID IID_IDirect3D7","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3D7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DDevice2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DDevice2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DDevice2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DDevice3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DDevice3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DDevice3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DDevice7","package":"druntime","parentType":"","signature":"IID IID_IDirect3DDevice7","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DDevice7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DExecuteBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirect3DExecuteBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DExecuteBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DHALDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DHALDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DHALDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DLight","package":"druntime","parentType":"","signature":"IID IID_IDirect3DLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DMaterial","package":"druntime","parentType":"","signature":"IID IID_IDirect3DMaterial","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DMaterial"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DMaterial2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DMaterial2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DMaterial2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DMaterial3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DMaterial3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DMaterial3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DMMXDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DMMXDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DMMXDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DNullDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DNullDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DNullDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRampDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRampDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRampDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRefDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRefDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRefDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRGBDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRGBDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRGBDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRM","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRM","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRM2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRM2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRM2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRM3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRM3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRM3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMAnimation","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMAnimation2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMAnimation2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMAnimation2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMAnimationArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMAnimationArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMAnimationArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMAnimationSet","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMAnimationSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMAnimationSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMAnimationSet2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMAnimationSet2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMAnimationSet2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMClippedVisual","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMClippedVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMClippedVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMDevice2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMDevice2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMDevice2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMDevice3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMDevice3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMDevice3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMDeviceArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMDeviceArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMDeviceArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFace","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFace2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFace2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFace2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFaceArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFaceArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFaceArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFrame","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFrame2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFrame2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFrame2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFrame3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFrame3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFrame3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMFrameArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMFrameArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMFrameArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMInterpolator","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMInterpolator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMInterpolator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMLight","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMLightArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMLightArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMLightArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMaterial","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMaterial","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMaterial"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMaterial2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMaterial2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMaterial2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMesh","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMeshBuilder","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMeshBuilder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMeshBuilder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMeshBuilder2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMeshBuilder2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMeshBuilder2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMMeshBuilder3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMMeshBuilder3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMMeshBuilder3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMObject","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMObject2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMObject2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMObject2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMObjectArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMObjectArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMObjectArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMPicked2Array","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMPicked2Array","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMPicked2Array"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMPickedArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMPickedArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMPickedArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMProgressiveMesh","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMProgressiveMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMProgressiveMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMShadow","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMShadow2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMShadow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMShadow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMTexture","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMTexture","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMTexture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMTexture2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMTexture2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMTexture2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMTexture3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMTexture3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMTexture3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMUserVisual","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMUserVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMUserVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMViewport","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMViewport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMViewport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMViewport2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMViewport2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMViewport2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMViewportArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMViewportArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMViewportArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMVisual","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMVisualArray","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMVisualArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMVisualArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMWinDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMWinDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMWinDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DRMWrap","package":"druntime","parentType":"","signature":"IID IID_IDirect3DRMWrap","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DRMWrap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DTexture","package":"druntime","parentType":"","signature":"IID IID_IDirect3DTexture","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DTexture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DTexture2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DTexture2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DTexture2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DTnLHalDevice","package":"druntime","parentType":"","signature":"IID IID_IDirect3DTnLHalDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DTnLHalDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DVertexBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirect3DVertexBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DVertexBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DVertexBuffer7","package":"druntime","parentType":"","signature":"IID IID_IDirect3DVertexBuffer7","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DVertexBuffer7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DViewport","package":"druntime","parentType":"","signature":"IID IID_IDirect3DViewport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DViewport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DViewport2","package":"druntime","parentType":"","signature":"IID IID_IDirect3DViewport2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DViewport2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirect3DViewport3","package":"druntime","parentType":"","signature":"IID IID_IDirect3DViewport3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirect3DViewport3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDraw","package":"druntime","parentType":"","signature":"IID IID_IDirectDraw","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDraw"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDraw2","package":"druntime","parentType":"","signature":"IID IID_IDirectDraw2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDraw2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDraw4","package":"druntime","parentType":"","signature":"IID IID_IDirectDraw4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDraw4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDraw7","package":"druntime","parentType":"","signature":"IID IID_IDirectDraw7","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDraw7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawClipper","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawClipper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawClipper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawColorControl","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawColorControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawColorControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawFactory2","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawFactory2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawFactory2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawGammaControl","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawGammaControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawGammaControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawKernel","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawKernel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawKernel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawOptSurface","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawOptSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawOptSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawPalette","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawPalette","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawPalette"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawPalette2","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawPalette2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawPalette2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurface","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurface2","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurface2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurface2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurface3","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurface3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurface3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurface4","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurface4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurface4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurface7","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurface7","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurface7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawSurfaceKernel","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawSurfaceKernel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawSurfaceKernel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawVideoAccelerator","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawVideoAccelerator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawVideoAccelerator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectDrawVideoPort","package":"druntime","parentType":"","signature":"IID IID_IDirectDrawVideoPort","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectDrawVideoPort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput2A","package":"druntime","parentType":"","signature":"IID IID_IDirectInput2A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput2A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput2W","package":"druntime","parentType":"","signature":"IID IID_IDirectInput2W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput2W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput7A","package":"druntime","parentType":"","signature":"IID IID_IDirectInput7A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput7A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput7W","package":"druntime","parentType":"","signature":"IID IID_IDirectInput7W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput7W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput8A","package":"druntime","parentType":"","signature":"IID IID_IDirectInput8A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput8A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInput8W","package":"druntime","parentType":"","signature":"IID IID_IDirectInput8W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInput8W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputA","package":"druntime","parentType":"","signature":"IID IID_IDirectInputA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice2A","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice2A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice2A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice2W","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice2W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice2W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice7A","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice7A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice7A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice7W","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice7W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice7W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice8A","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice8A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice8A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDevice8W","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDevice8W","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDevice8W"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDeviceA","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDeviceA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDeviceA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputDeviceW","package":"druntime","parentType":"","signature":"IID IID_IDirectInputDeviceW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputDeviceW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputEffect","package":"druntime","parentType":"","signature":"IID IID_IDirectInputEffect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputEffect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputEffectDriver","package":"druntime","parentType":"","signature":"IID IID_IDirectInputEffectDriver","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputEffectDriver"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputJoyConfig","package":"druntime","parentType":"","signature":"IID IID_IDirectInputJoyConfig","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputJoyConfig"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputPIDDriver","package":"druntime","parentType":"","signature":"IID IID_IDirectInputPIDDriver","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputPIDDriver"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectInputW","package":"druntime","parentType":"","signature":"IID IID_IDirectInputW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectInputW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusic","package":"druntime","parentType":"","signature":"IID IID_IDirectMusic","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusic"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusic2","package":"druntime","parentType":"","signature":"IID IID_IDirectMusic2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusic2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicBand","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicChordMap","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicChordMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicChordMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicCollection","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicComposer","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicComposer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicComposer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicDownload","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicDownload","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicDownload"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicDownloadedInstrument","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicDownloadedInstrument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicDownloadedInstrument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicGetLoader","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicGetLoader","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicGetLoader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicGraph","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicGraph","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicGraph"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicInstrument","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicInstrument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicInstrument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicLoader","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicLoader","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicLoader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicObject","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicPerformance","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicPerformance","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicPerformance"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicPerformance2","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicPerformance2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicPerformance2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicPort","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicPort","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicPort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicPortDownload","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicPortDownload","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicPortDownload"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicSegment","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicSegment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicSegment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicSegment2","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicSegment2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicSegment2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicSegmentState","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicSegmentState","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicSegmentState"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicStyle","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicThru","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicThru","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicThru"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicTool","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicTool","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicTool"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectMusicTrack","package":"druntime","parentType":"","signature":"IID IID_IDirectMusicTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectMusicTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectoryObject","package":"druntime","parentType":"","signature":"IID IID_IDirectoryObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectoryObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectorySchemaMgmt","package":"druntime","parentType":"","signature":"IID IID_IDirectorySchemaMgmt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectorySchemaMgmt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectorySearch","package":"druntime","parentType":"","signature":"IID IID_IDirectorySearch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectorySearch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay2","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay2A","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay2A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay2A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay3","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay3A","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay3A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay3A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay4","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlay4A","package":"druntime","parentType":"","signature":"IID IID_IDirectPlay4A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlay4A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobby","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobby","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobby"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobby2","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobby2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobby2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobby2A","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobby2A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobby2A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobby3","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobby3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobby3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobby3A","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobby3A","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobby3A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectPlayLobbyA","package":"druntime","parentType":"","signature":"IID IID_IDirectPlayLobbyA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectPlayLobbyA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSound","package":"druntime","parentType":"","signature":"IID IID_IDirectSound","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSound3DBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirectSound3DBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSound3DBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSound3DListener","package":"druntime","parentType":"","signature":"IID IID_IDirectSound3DListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSound3DListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSoundBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirectSoundBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSoundBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSoundBuffer8","package":"druntime","parentType":"","signature":"IID IID_IDirectSoundBuffer8","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSoundBuffer8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSoundCapture","package":"druntime","parentType":"","signature":"IID IID_IDirectSoundCapture","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSoundCapture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSoundCaptureBuffer","package":"druntime","parentType":"","signature":"IID IID_IDirectSoundCaptureBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSoundCaptureBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectSoundNotify","package":"druntime","parentType":"","signature":"IID IID_IDirectSoundNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectSoundNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectWriterLock","package":"druntime","parentType":"","signature":"IID IID_IDirectWriterLock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectWriterLock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFile","package":"druntime","parentType":"","signature":"IID IID_IDirectXFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileBinary","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileBinary","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileBinary"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileData","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileDataReference","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileDataReference","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileDataReference"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileEnumObject","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileEnumObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileEnumObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileObject","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDirectXFileSaveObject","package":"druntime","parentType":"","signature":"IID IID_IDirectXFileSaveObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDirectXFileSaveObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDiscardableBrowserProperty","package":"druntime","parentType":"","signature":"IID IID_IDiscardableBrowserProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDiscardableBrowserProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDiscMaster","package":"druntime","parentType":"","signature":"IID IID_IDiscMaster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDiscMaster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDiscMasterProgressEvents","package":"druntime","parentType":"","signature":"IID IID_IDiscMasterProgressEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDiscMasterProgressEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDiscRecorder","package":"druntime","parentType":"","signature":"IID IID_IDiscRecorder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDiscRecorder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDiscStash","package":"druntime","parentType":"","signature":"IID IID_IDiscStash","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDiscStash"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDispatch","package":"druntime","parentType":"","signature":"IID IID_IDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDispatchEx","package":"druntime","parentType":"","signature":"IID IID_IDispatchEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDispatchEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDispError","package":"druntime","parentType":"","signature":"IID IID_IDispError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDispError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDisplayPointer","package":"druntime","parentType":"","signature":"IID IID_IDisplayPointer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDisplayPointer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDisplayServices","package":"druntime","parentType":"","signature":"IID IID_IDisplayServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDisplayServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDithererImpl","package":"druntime","parentType":"","signature":"IID IID_IDithererImpl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDithererImpl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDocHostShowUI","package":"druntime","parentType":"","signature":"IID IID_IDocHostShowUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDocHostShowUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDocHostUIHandler","package":"druntime","parentType":"","signature":"IID IID_IDocHostUIHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDocHostUIHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDocHostUIHandler2","package":"druntime","parentType":"","signature":"IID IID_IDocHostUIHandler2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDocHostUIHandler2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDockingWindow","package":"druntime","parentType":"","signature":"IID IID_IDockingWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDockingWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDockingWindowFrame","package":"druntime","parentType":"","signature":"IID IID_IDockingWindowFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDockingWindowFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDockingWindowSite","package":"druntime","parentType":"","signature":"IID IID_IDockingWindowSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDockingWindowSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDoTask","package":"druntime","parentType":"","signature":"IID IID_IDoTask","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDoTask"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDownloadBehavior","package":"druntime","parentType":"","signature":"IID IID_IDownloadBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDownloadBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDownloadManager","package":"druntime","parentType":"","signature":"IID IID_IDownloadManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDownloadManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDownloadNotify","package":"druntime","parentType":"","signature":"IID IID_IDownloadNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDownloadNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDragSourceHelper","package":"druntime","parentType":"","signature":"IID IID_IDragSourceHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDragSourceHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDropSource","package":"druntime","parentType":"","signature":"IID IID_IDropSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDropSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDropTarget","package":"druntime","parentType":"","signature":"IID IID_IDropTarget","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDropTarget"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDropTargetHelper","package":"druntime","parentType":"","signature":"IID IID_IDropTargetHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDropTargetHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDsBrowseDomainTree","package":"druntime","parentType":"","signature":"IID IID_IDsBrowseDomainTree","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDsBrowseDomainTree"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDsQueryColumnHandler","package":"druntime","parentType":"","signature":"IID IID_IDsQueryColumnHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDsQueryColumnHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDummy","package":"druntime","parentType":"","signature":"IID IID_IDummy","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDummy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDummyHICONIncluder","package":"druntime","parentType":"","signature":"IID IID_IDummyHICONIncluder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDummyHICONIncluder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDX2D","package":"druntime","parentType":"","signature":"IID IID_IDX2D","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDX2D"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDX2DDebug","package":"druntime","parentType":"","signature":"IID IID_IDX2DDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDX2DDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXARGBReadPtr","package":"druntime","parentType":"","signature":"IID IID_IDXARGBReadPtr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXARGBReadPtr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXARGBReadWritePtr","package":"druntime","parentType":"","signature":"IID IID_IDXARGBReadWritePtr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXARGBReadWritePtr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXARGBSurfaceInit","package":"druntime","parentType":"","signature":"IID IID_IDXARGBSurfaceInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXARGBSurfaceInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXBaseObject","package":"druntime","parentType":"","signature":"IID IID_IDXBaseObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXBaseObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXBasicImage","package":"druntime","parentType":"","signature":"IID IID_IDXBasicImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXBasicImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXDCLock","package":"druntime","parentType":"","signature":"IID IID_IDXDCLock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXDCLock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXDLUTBuilder","package":"druntime","parentType":"","signature":"IID IID_IDXDLUTBuilder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXDLUTBuilder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXDMapper","package":"druntime","parentType":"","signature":"IID IID_IDXDMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXDMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXEffect","package":"druntime","parentType":"","signature":"IID IID_IDXEffect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXEffect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXGradient","package":"druntime","parentType":"","signature":"IID IID_IDXGradient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXGradient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXGradient2","package":"druntime","parentType":"","signature":"IID IID_IDXGradient2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXGradient2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXLookupTable","package":"druntime","parentType":"","signature":"IID IID_IDXLookupTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXLookupTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXLUTBuilder","package":"druntime","parentType":"","signature":"IID IID_IDXLUTBuilder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXLUTBuilder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXMapper","package":"druntime","parentType":"","signature":"IID IID_IDXMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXPixelate","package":"druntime","parentType":"","signature":"IID IID_IDXPixelate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXPixelate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXRasterizer","package":"druntime","parentType":"","signature":"IID IID_IDXRasterizer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXRasterizer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXRawSurface","package":"druntime","parentType":"","signature":"IID IID_IDXRawSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXRawSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXSurface","package":"druntime","parentType":"","signature":"IID IID_IDXSurface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXSurface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXSurfaceFactory","package":"druntime","parentType":"","signature":"IID IID_IDXSurfaceFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXSurfaceFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXSurfaceInit","package":"druntime","parentType":"","signature":"IID IID_IDXSurfaceInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXSurfaceInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXSurfaceModifier","package":"druntime","parentType":"","signature":"IID IID_IDXSurfaceModifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXSurfaceModifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXSurfacePick","package":"druntime","parentType":"","signature":"IID IID_IDXSurfacePick","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXSurfacePick"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTAlpha","package":"druntime","parentType":"","signature":"IID IID_IDXTAlpha","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTAlpha"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTAlphaImageLoader","package":"druntime","parentType":"","signature":"IID IID_IDXTAlphaImageLoader","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTAlphaImageLoader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTaskManager","package":"druntime","parentType":"","signature":"IID IID_IDXTaskManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTaskManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTBindHost","package":"druntime","parentType":"","signature":"IID IID_IDXTBindHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTBindHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTCheckerBoard","package":"druntime","parentType":"","signature":"IID IID_IDXTCheckerBoard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTCheckerBoard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTChroma","package":"druntime","parentType":"","signature":"IID IID_IDXTChroma","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTChroma"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTClipOrigin","package":"druntime","parentType":"","signature":"IID IID_IDXTClipOrigin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTClipOrigin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTComposite","package":"druntime","parentType":"","signature":"IID IID_IDXTComposite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTComposite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTConvolution","package":"druntime","parentType":"","signature":"IID IID_IDXTConvolution","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTConvolution"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTDropShadow","package":"druntime","parentType":"","signature":"IID IID_IDXTDropShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTDropShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFade","package":"druntime","parentType":"","signature":"IID IID_IDXTFade","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFade"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFilter","package":"druntime","parentType":"","signature":"IID IID_IDXTFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFilterBehavior","package":"druntime","parentType":"","signature":"IID IID_IDXTFilterBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFilterBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFilterBehaviorSite","package":"druntime","parentType":"","signature":"IID IID_IDXTFilterBehaviorSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFilterBehaviorSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFilterCollection","package":"druntime","parentType":"","signature":"IID IID_IDXTFilterCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFilterCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTFilterController","package":"druntime","parentType":"","signature":"IID IID_IDXTFilterController","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTFilterController"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTGlow","package":"druntime","parentType":"","signature":"IID IID_IDXTGlow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTGlow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTGradientD","package":"druntime","parentType":"","signature":"IID IID_IDXTGradientD","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTGradientD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTGridSize","package":"druntime","parentType":"","signature":"IID IID_IDXTGridSize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTGridSize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTICMFilter","package":"druntime","parentType":"","signature":"IID IID_IDXTICMFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTICMFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTLabel","package":"druntime","parentType":"","signature":"IID IID_IDXTLabel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTLabel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTLight","package":"druntime","parentType":"","signature":"IID IID_IDXTLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMask","package":"druntime","parentType":"","signature":"IID IID_IDXTMask","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMask"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMatrix","package":"druntime","parentType":"","signature":"IID IID_IDXTMatrix","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMatrix"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaBurnFilm","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaBurnFilm","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaBurnFilm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaCenterPeel","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaCenterPeel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaCenterPeel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaColorFade","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaColorFade","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaColorFade"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaFlowMotion","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaFlowMotion","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaFlowMotion"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaGriddler","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaGriddler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaGriddler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaGriddler2","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaGriddler2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaGriddler2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaJaws","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaJaws","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaJaws"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaLightWipe","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaLightWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaLightWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaLiquid","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaLiquid","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaLiquid"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaPageTurn","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaPageTurn","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaPageTurn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaPeelPiece","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaPeelPiece","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaPeelPiece"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaPeelSmall","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaPeelSmall","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaPeelSmall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaPeelSplit","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaPeelSplit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaPeelSplit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaRadialScaleWipe","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaRadialScaleWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaRadialScaleWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaRipple","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaRipple","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaRipple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaRoll","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaRoll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaRoll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaThreshold","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaThreshold","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaThreshold"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaTwister","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaTwister","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaTwister"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaVacuum","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaVacuum","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaVacuum"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaWater","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaWater","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaWater"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaWhiteOut","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaWhiteOut","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaWhiteOut"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMetaWormHole","package":"druntime","parentType":"","signature":"IID IID_IDXTMetaWormHole","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMetaWormHole"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTMotionBlur","package":"druntime","parentType":"","signature":"IID IID_IDXTMotionBlur","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTMotionBlur"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTRandomBars","package":"druntime","parentType":"","signature":"IID IID_IDXTRandomBars","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTRandomBars"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTransform","package":"druntime","parentType":"","signature":"IID IID_IDXTransform","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTransform"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTransformFactory","package":"druntime","parentType":"","signature":"IID IID_IDXTransformFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTransformFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTRedirect","package":"druntime","parentType":"","signature":"IID IID_IDXTRedirect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTRedirect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTRedirectFilterInit","package":"druntime","parentType":"","signature":"IID IID_IDXTRedirectFilterInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTRedirectFilterInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTRevealTrans","package":"druntime","parentType":"","signature":"IID IID_IDXTRevealTrans","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTRevealTrans"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTScale","package":"druntime","parentType":"","signature":"IID IID_IDXTScale","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTScale"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTScaleOutput","package":"druntime","parentType":"","signature":"IID IID_IDXTScaleOutput","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTScaleOutput"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTShadow","package":"druntime","parentType":"","signature":"IID IID_IDXTShadow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTShadow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTStrips","package":"druntime","parentType":"","signature":"IID IID_IDXTStrips","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTStrips"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTWave","package":"druntime","parentType":"","signature":"IID IID_IDXTWave","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTWave"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTWipe","package":"druntime","parentType":"","signature":"IID IID_IDXTWipe","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTWipe"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDXTWipe2","package":"druntime","parentType":"","signature":"IID IID_IDXTWipe2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDXTWipe2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDynamicPortMapping","package":"druntime","parentType":"","signature":"IID IID_IDynamicPortMapping","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDynamicPortMapping"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IDynamicPortMappingCollection","package":"druntime","parentType":"","signature":"IID IID_IDynamicPortMappingCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IDynamicPortMappingCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEditDebugServices","package":"druntime","parentType":"","signature":"IID IID_IEditDebugServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEditDebugServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementAdorner","package":"druntime","parentType":"","signature":"IID IID_IElementAdorner","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementAdorner"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehavior","package":"druntime","parentType":"","signature":"IID IID_IElementBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorCategory","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorCategory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorCategory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorFactory","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorFocus","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorFocus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorFocus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorLayout","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorLayout","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorLayout"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorLayout2","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorLayout2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorLayout2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorRender","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorRender","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorRender"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSite","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteCategory","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteCategory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteCategory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteLayout","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteLayout","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteLayout"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteLayout2","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteLayout2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteLayout2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteOM","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteOM","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteOM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteOM2","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteOM2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteOM2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSiteRender","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSiteRender","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSiteRender"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorSubmit","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorSubmit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorSubmit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementBehaviorUI","package":"druntime","parentType":"","signature":"IID IID_IElementBehaviorUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementBehaviorUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespace","package":"druntime","parentType":"","signature":"IID IID_IElementNamespace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespaceFactory","package":"druntime","parentType":"","signature":"IID IID_IElementNamespaceFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespaceFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespaceFactory2","package":"druntime","parentType":"","signature":"IID IID_IElementNamespaceFactory2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespaceFactory2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespaceFactoryCallback","package":"druntime","parentType":"","signature":"IID IID_IElementNamespaceFactoryCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespaceFactoryCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespacePrivate","package":"druntime","parentType":"","signature":"IID IID_IElementNamespacePrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespacePrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementNamespaceTable","package":"druntime","parentType":"","signature":"IID IID_IElementNamespaceTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementNamespaceTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IElementSegment","package":"druntime","parentType":"","signature":"IID IID_IElementSegment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IElementSegment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEmptyVolumeCache","package":"druntime","parentType":"","signature":"IID IID_IEmptyVolumeCache","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEmptyVolumeCache"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEmptyVolumeCache2","package":"druntime","parentType":"","signature":"IID IID_IEmptyVolumeCache2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEmptyVolumeCache2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEmptyVolumeCacheCallBack","package":"druntime","parentType":"","signature":"IID IID_IEmptyVolumeCacheCallBack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEmptyVolumeCacheCallBack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEncodingFilterFactory","package":"druntime","parentType":"","signature":"IID IID_IEncodingFilterFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEncodingFilterFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnroll","package":"druntime","parentType":"","signature":"IID IID_IEnroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnroll2","package":"druntime","parentType":"","signature":"IID IID_IEnroll2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnroll2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnroll4","package":"druntime","parentType":"","signature":"IID IID_IEnroll4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnroll4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEntryID","package":"druntime","parentType":"","signature":"IID IID_IEntryID","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEntryID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumACDGroup","package":"druntime","parentType":"","signature":"IID IID_IEnumACDGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumACDGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumACString","package":"druntime","parentType":"","signature":"IID IID_IEnumACString","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumACString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumAdapterInfo","package":"druntime","parentType":"","signature":"IID IID_IEnumAdapterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumAdapterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumAddress","package":"druntime","parentType":"","signature":"IID IID_IEnumAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumAgent","package":"druntime","parentType":"","signature":"IID IID_IEnumAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumAgentHandler","package":"druntime","parentType":"","signature":"IID IID_IEnumAgentHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumAgentHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumAgentSession","package":"druntime","parentType":"","signature":"IID IID_IEnumAgentSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumAgentSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumBackgroundCopyFiles","package":"druntime","parentType":"","signature":"IID IID_IEnumBackgroundCopyFiles","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumBackgroundCopyFiles"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumBackgroundCopyGroups","package":"druntime","parentType":"","signature":"IID IID_IEnumBackgroundCopyGroups","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumBackgroundCopyGroups"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumBackgroundCopyJobs","package":"druntime","parentType":"","signature":"IID IID_IEnumBackgroundCopyJobs","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumBackgroundCopyJobs"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumBackgroundCopyJobs1","package":"druntime","parentType":"","signature":"IID IID_IEnumBackgroundCopyJobs1","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumBackgroundCopyJobs1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumBstr","package":"druntime","parentType":"","signature":"IID IID_IEnumBstr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumBstr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCall","package":"druntime","parentType":"","signature":"IID IID_IEnumCall","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCall"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCallback","package":"druntime","parentType":"","signature":"IID IID_IEnumCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCallHub","package":"druntime","parentType":"","signature":"IID IID_IEnumCallHub","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCallHub"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCallingCard","package":"druntime","parentType":"","signature":"IID IID_IEnumCallingCard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCallingCard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCATEGORYINFO","package":"druntime","parentType":"","signature":"IID IID_IEnumCATEGORYINFO","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCATEGORYINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumChannels","package":"druntime","parentType":"","signature":"IID IID_IEnumChannels","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumChannels"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumClusCfgIPAddresses","package":"druntime","parentType":"","signature":"IID IID_IEnumClusCfgIPAddresses","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumClusCfgIPAddresses"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumClusCfgManagedResources","package":"druntime","parentType":"","signature":"IID IID_IEnumClusCfgManagedResources","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumClusCfgManagedResources"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumClusCfgNetworks","package":"druntime","parentType":"","signature":"IID IID_IEnumClusCfgNetworks","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumClusCfgNetworks"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumClusCfgPartitions","package":"druntime","parentType":"","signature":"IID IID_IEnumClusCfgPartitions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumClusCfgPartitions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCodePage","package":"druntime","parentType":"","signature":"IID IID_IEnumCodePage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCodePage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumConnectionPoints","package":"druntime","parentType":"","signature":"IID IID_IEnumConnectionPoints","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumConnectionPoints"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumConnections","package":"druntime","parentType":"","signature":"IID IID_IEnumConnections","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumConnections"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumCookies","package":"druntime","parentType":"","signature":"IID IID_IEnumCookies","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumCookies"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugApplicationNodes","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugApplicationNodes","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugApplicationNodes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugCodeContexts","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugCodeContexts","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugCodeContexts"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugExpressionContexts","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugExpressionContexts","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugExpressionContexts"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugExtendedPropertyInfo","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugExtendedPropertyInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugExtendedPropertyInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugPropertyInfo","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugPropertyInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugPropertyInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugStackFrames","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugStackFrames","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugStackFrames"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDebugStackFrames64","package":"druntime","parentType":"","signature":"IID IID_IEnumDebugStackFrames64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDebugStackFrames64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDialableAddrs","package":"druntime","parentType":"","signature":"IID IID_IEnumDialableAddrs","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDialableAddrs"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDirectory","package":"druntime","parentType":"","signature":"IID IID_IEnumDirectory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDirectory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDirectoryObject","package":"druntime","parentType":"","signature":"IID IID_IEnumDirectoryObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDirectoryObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDiscMasterFormats","package":"druntime","parentType":"","signature":"IID IID_IEnumDiscMasterFormats","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDiscMasterFormats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumDiscRecorders","package":"druntime","parentType":"","signature":"IID IID_IEnumDiscRecorders","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumDiscRecorders"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumExtraSearch","package":"druntime","parentType":"","signature":"IID IID_IEnumExtraSearch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumExtraSearch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumFORMATETC","package":"druntime","parentType":"","signature":"IID IID_IEnumFORMATETC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumFORMATETC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumGeneric","package":"druntime","parentType":"","signature":"IID IID_IEnumGeneric","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumGeneric"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumGUID","package":"druntime","parentType":"","signature":"IID IID_IEnumGUID","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumGUID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHLITEM","package":"druntime","parentType":"","signature":"IID IID_IEnumHLITEM","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHLITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetApplicationProtocols","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetApplicationProtocols","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetApplicationProtocols"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetBridgedConnections","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetBridgedConnections","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetBridgedConnections"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetBridges","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetBridges","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetBridges"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetFirewalledConnections","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetFirewalledConnections","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetFirewalledConnections"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetIcsPrivateConnections","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetIcsPrivateConnections","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetIcsPrivateConnections"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetIcsPublicConnections","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetIcsPublicConnections","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetIcsPublicConnections"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetPortMappingBindings","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetPortMappingBindings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetPortMappingBindings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHNetPortMappingProtocols","package":"druntime","parentType":"","signature":"IID IID_IEnumHNetPortMappingProtocols","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHNetPortMappingProtocols"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumHolder","package":"druntime","parentType":"","signature":"IID IID_IEnumHolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumHolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumIDList","package":"druntime","parentType":"","signature":"IID IID_IEnumIDList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumIDList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumInputContext","package":"druntime","parentType":"","signature":"IID IID_IEnumInputContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumInputContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumItemProperties","package":"druntime","parentType":"","signature":"IID IID_IEnumItemProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumItemProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumLocation","package":"druntime","parentType":"","signature":"IID IID_IEnumLocation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumLocation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumMcastScope","package":"druntime","parentType":"","signature":"IID IID_IEnumMcastScope","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumMcastScope"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumMedia","package":"druntime","parentType":"","signature":"IID IID_IEnumMedia","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumMedia"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumMoniker","package":"druntime","parentType":"","signature":"IID IID_IEnumMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetCfgBindingInterface","package":"druntime","parentType":"","signature":"IID IID_IEnumNetCfgBindingInterface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetCfgBindingInterface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetCfgBindingPath","package":"druntime","parentType":"","signature":"IID IID_IEnumNetCfgBindingPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetCfgBindingPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetCfgComponent","package":"druntime","parentType":"","signature":"IID IID_IEnumNetCfgComponent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetCfgComponent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetConnection","package":"druntime","parentType":"","signature":"IID IID_IEnumNetConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetSharingEveryConnection","package":"druntime","parentType":"","signature":"IID IID_IEnumNetSharingEveryConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetSharingEveryConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetSharingPortMapping","package":"druntime","parentType":"","signature":"IID IID_IEnumNetSharingPortMapping","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetSharingPortMapping"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetSharingPrivateConnection","package":"druntime","parentType":"","signature":"IID IID_IEnumNetSharingPrivateConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetSharingPrivateConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNetSharingPublicConnection","package":"druntime","parentType":"","signature":"IID IID_IEnumNetSharingPublicConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNetSharingPublicConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNodes","package":"druntime","parentType":"","signature":"IID IID_IEnumNodes","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNodes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNotification","package":"druntime","parentType":"","signature":"IID IID_IEnumNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumNotificationSinkItem","package":"druntime","parentType":"","signature":"IID IID_IEnumNotificationSinkItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumNotificationSinkItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumOleDocumentViews","package":"druntime","parentType":"","signature":"IID IID_IEnumOleDocumentViews","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumOleDocumentViews"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumOleUndoUnits","package":"druntime","parentType":"","signature":"IID IID_IEnumOleUndoUnits","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumOleUndoUnits"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumOLEVERB","package":"druntime","parentType":"","signature":"IID IID_IEnumOLEVERB","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumOLEVERB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumParticipant","package":"druntime","parentType":"","signature":"IID IID_IEnumParticipant","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumParticipant"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPhone","package":"druntime","parentType":"","signature":"IID IID_IEnumPhone","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPhone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPluggableSuperclassInfo","package":"druntime","parentType":"","signature":"IID IID_IEnumPluggableSuperclassInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPluggableSuperclassInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPluggableTerminalClassInfo","package":"druntime","parentType":"","signature":"IID IID_IEnumPluggableTerminalClassInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPluggableTerminalClassInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPrivacyRecords","package":"druntime","parentType":"","signature":"IID IID_IEnumPrivacyRecords","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPrivacyRecords"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPropertyMap","package":"druntime","parentType":"","signature":"IID IID_IEnumPropertyMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPropertyMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumPublishedApps","package":"druntime","parentType":"","signature":"IID IID_IEnumPublishedApps","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumPublishedApps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumQueue","package":"druntime","parentType":"","signature":"IID IID_IEnumQueue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumQueue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumRegisterWordA","package":"druntime","parentType":"","signature":"IID IID_IEnumRegisterWordA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumRegisterWordA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumRegisterWordW","package":"druntime","parentType":"","signature":"IID IID_IEnumRegisterWordW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumRegisterWordW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumRemoteDebugApplications","package":"druntime","parentType":"","signature":"IID IID_IEnumRemoteDebugApplications","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumRemoteDebugApplications"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumRemoteDebugApplicationThrea","package":"druntime","parentType":"","signature":"IID IID_IEnumRemoteDebugApplicationThrea","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumRemoteDebugApplicationThrea"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumRfc1766","package":"druntime","parentType":"","signature":"IID IID_IEnumRfc1766","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumRfc1766"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumScheduleGroup","package":"druntime","parentType":"","signature":"IID IID_IEnumScheduleGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumScheduleGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumScript","package":"druntime","parentType":"","signature":"IID IID_IEnumScript","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumScript"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATDATA","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATDATA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATPROPBAG","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATPROPBAG","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATPROPBAG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATPROPSETSTG","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATPROPSETSTG","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATPROPSETSTG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATPROPSTG","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATPROPSTG","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATPROPSTG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATSTG","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATSTG","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATSTG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSTATURL","package":"druntime","parentType":"","signature":"IID IID_IEnumSTATURL","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSTATURL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumStream","package":"druntime","parentType":"","signature":"IID IID_IEnumStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumString","package":"druntime","parentType":"","signature":"IID IID_IEnumString","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSubscription","package":"druntime","parentType":"","signature":"IID IID_IEnumSubscription","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSubscription"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSubStream","package":"druntime","parentType":"","signature":"IID IID_IEnumSubStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSubStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSyncItems","package":"druntime","parentType":"","signature":"IID IID_IEnumSyncItems","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSyncItems"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumSyncSchedules","package":"druntime","parentType":"","signature":"IID IID_IEnumSyncSchedules","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumSyncSchedules"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumTerminal","package":"druntime","parentType":"","signature":"IID IID_IEnumTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumTerminalClass","package":"druntime","parentType":"","signature":"IID IID_IEnumTerminalClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumTerminalClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumTime","package":"druntime","parentType":"","signature":"IID IID_IEnumTime","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumTime"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumTravelLogEntry","package":"druntime","parentType":"","signature":"IID IID_IEnumTravelLogEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumTravelLogEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumUnknown","package":"druntime","parentType":"","signature":"IID IID_IEnumUnknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumUnknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumVARIANT","package":"druntime","parentType":"","signature":"IID IID_IEnumVARIANT","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumVARIANT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IEnumWbemClassObject","package":"druntime","parentType":"","signature":"IID IID_IEnumWbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IEnumWbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IErrorInfo","package":"druntime","parentType":"","signature":"IID IID_IErrorInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IErrorInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IErrorLog","package":"druntime","parentType":"","signature":"IID IID_IErrorLog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IErrorLog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IErrorLookup","package":"druntime","parentType":"","signature":"IID IID_IErrorLookup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IErrorLookup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IErrorRecords","package":"druntime","parentType":"","signature":"IID IID_IErrorRecords","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IErrorRecords"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IESP","package":"druntime","parentType":"","signature":"IID IID_IESP","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IESP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtendObjectManager","package":"druntime","parentType":"","signature":"IID IID_IExtendObjectManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtendObjectManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtensionServices","package":"druntime","parentType":"","signature":"IID IID_IExtensionServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtensionServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExternalConnection","package":"druntime","parentType":"","signature":"IID IID_IExternalConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExternalConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtractIconA","package":"druntime","parentType":"","signature":"IID IID_IExtractIconA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtractIconA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtractIconW","package":"druntime","parentType":"","signature":"IID IID_IExtractIconW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtractIconW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtractImage","package":"druntime","parentType":"","signature":"IID IID_IExtractImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtractImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IExtractImage2","package":"druntime","parentType":"","signature":"IID IID_IExtractImage2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IExtractImage2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFileSearchBand","package":"druntime","parentType":"","signature":"IID IID_IFileSearchBand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFileSearchBand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFileSystemBindData","package":"druntime","parentType":"","signature":"IID IID_IFileSystemBindData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFileSystemBindData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFileViewerA","package":"druntime","parentType":"","signature":"IID IID_IFileViewerA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFileViewerA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFileViewerSite","package":"druntime","parentType":"","signature":"IID IID_IFileViewerSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFileViewerSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFileViewerW","package":"druntime","parentType":"","signature":"IID IID_IFileViewerW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFileViewerW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFillLockBytes","package":"druntime","parentType":"","signature":"IID IID_IFillLockBytes","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFillLockBytes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFilter","package":"druntime","parentType":"","signature":"IID IID_IFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFilterAnimationInfo","package":"druntime","parentType":"","signature":"IID IID_IFilterAnimationInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFilterAnimationInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFilterStatus","package":"druntime","parentType":"","signature":"IID IID_IFilterStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFilterStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFolderFilter","package":"druntime","parentType":"","signature":"IID IID_IFolderFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFolderFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFolderFilterSite","package":"druntime","parentType":"","signature":"IID IID_IFolderFilterSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFolderFilterSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFolderView","package":"druntime","parentType":"","signature":"IID IID_IFolderView","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFolderView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFolderViewHost","package":"druntime","parentType":"","signature":"IID IID_IFolderViewHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFolderViewHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFolderViewOC","package":"druntime","parentType":"","signature":"IID IID_IFolderViewOC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFolderViewOC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFont","package":"druntime","parentType":"","signature":"IID IID_IFont","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFont"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFontDisp","package":"druntime","parentType":"","signature":"IID IID_IFontDisp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFontDisp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFontEventsDisp","package":"druntime","parentType":"","signature":"IID IID_IFontEventsDisp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFontEventsDisp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFontNames","package":"druntime","parentType":"","signature":"IID IID_IFontNames","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFontNames"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IForegroundTransfer","package":"druntime","parentType":"","signature":"IID IID_IForegroundTransfer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IForegroundTransfer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IFsCiAdmin","package":"druntime","parentType":"","signature":"IID IID_IFsCiAdmin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IFsCiAdmin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGatherData","package":"druntime","parentType":"","signature":"IID IID_IGatherData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGatherData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterDataInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterDataInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterDataInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterGroupInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterGroupInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterGroupInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterNetInterfaceInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterNetInterfaceInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterNetInterfaceInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterNetworkInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterNetworkInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterNetworkInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterNodeInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterNodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterNodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterObjectInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterObjectInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterObjectInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterResourceInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterResourceInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterResourceInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetClusterUIInfo","package":"druntime","parentType":"","signature":"IID IID_IGetClusterUIInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetClusterUIInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetDataSource","package":"druntime","parentType":"","signature":"IID IID_IGetDataSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetDataSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetRow","package":"druntime","parentType":"","signature":"IID IID_IGetRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetSession","package":"druntime","parentType":"","signature":"IID IID_IGetSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGetSourceRow","package":"druntime","parentType":"","signature":"IID IID_IGetSourceRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGetSourceRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IGlobalInterfaceTable","package":"druntime","parentType":"","signature":"IID IID_IGlobalInterfaceTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IGlobalInterfaceTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH26XEncodeOptions","package":"druntime","parentType":"","signature":"IID IID_IH26XEncodeOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH26XEncodeOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH26XEncoderControl","package":"druntime","parentType":"","signature":"IID IID_IH26XEncoderControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH26XEncoderControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH26XRTPControl","package":"druntime","parentType":"","signature":"IID IID_IH26XRTPControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH26XRTPControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH26XSnapshot","package":"druntime","parentType":"","signature":"IID IID_IH26XSnapshot","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH26XSnapshot"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH26XVideoEffects","package":"druntime","parentType":"","signature":"IID IID_IH26XVideoEffects","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH26XVideoEffects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IH323LineEx","package":"druntime","parentType":"","signature":"IID IID_IH323LineEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IH323LineEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHeaderFooter","package":"druntime","parentType":"","signature":"IID IID_IHeaderFooter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHeaderFooter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHighlightRenderingServices","package":"druntime","parentType":"","signature":"IID IID_IHighlightRenderingServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHighlightRenderingServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHighlightSegment","package":"druntime","parentType":"","signature":"IID IID_IHighlightSegment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHighlightSegment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHlink","package":"druntime","parentType":"","signature":"IID IID_IHlink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHlink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHlinkBrowseContext","package":"druntime","parentType":"","signature":"IID IID_IHlinkBrowseContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHlinkBrowseContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHlinkFrame","package":"druntime","parentType":"","signature":"IID IID_IHlinkFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHlinkFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHlinkSite","package":"druntime","parentType":"","signature":"IID IID_IHlinkSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHlinkSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHlinkTarget","package":"druntime","parentType":"","signature":"IID IID_IHlinkTarget","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHlinkTarget"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetApplicationProtocol","package":"druntime","parentType":"","signature":"IID IID_IHNetApplicationProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetApplicationProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetBridge","package":"druntime","parentType":"","signature":"IID IID_IHNetBridge","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetBridge"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetBridgedConnection","package":"druntime","parentType":"","signature":"IID IID_IHNetBridgedConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetBridgedConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetBridgeSettings","package":"druntime","parentType":"","signature":"IID IID_IHNetBridgeSettings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetBridgeSettings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetCfgMgr","package":"druntime","parentType":"","signature":"IID IID_IHNetCfgMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetCfgMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetConnection","package":"druntime","parentType":"","signature":"IID IID_IHNetConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetFirewalledConnection","package":"druntime","parentType":"","signature":"IID IID_IHNetFirewalledConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetFirewalledConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetFirewallSettings","package":"druntime","parentType":"","signature":"IID IID_IHNetFirewallSettings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetFirewallSettings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetIcsPrivateConnection","package":"druntime","parentType":"","signature":"IID IID_IHNetIcsPrivateConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetIcsPrivateConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetIcsPublicConnection","package":"druntime","parentType":"","signature":"IID IID_IHNetIcsPublicConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetIcsPublicConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetIcsSettings","package":"druntime","parentType":"","signature":"IID IID_IHNetIcsSettings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetIcsSettings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetPortMappingBinding","package":"druntime","parentType":"","signature":"IID IID_IHNetPortMappingBinding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetPortMappingBinding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetPortMappingProtocol","package":"druntime","parentType":"","signature":"IID IID_IHNetPortMappingProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetPortMappingProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHNetProtocolSettings","package":"druntime","parentType":"","signature":"IID IID_IHNetProtocolSettings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHNetProtocolSettings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHomePage","package":"druntime","parentType":"","signature":"IID IID_IHomePage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHomePage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHostBehaviorInit","package":"druntime","parentType":"","signature":"IID IID_IHostBehaviorInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHostBehaviorInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHostDialogHelper","package":"druntime","parentType":"","signature":"IID IID_IHostDialogHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHostDialogHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCAttachBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTCAttachBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCAttachBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCAttachBehavior2","package":"druntime","parentType":"","signature":"IID IID_IHTCAttachBehavior2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCAttachBehavior2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCDefaultDispatch","package":"druntime","parentType":"","signature":"IID IID_IHTCDefaultDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCDefaultDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCDescBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTCDescBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCDescBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCEventBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTCEventBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCEventBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCMethodBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTCMethodBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCMethodBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTCPropertyBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTCPropertyBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTCPropertyBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAnchorElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLAnchorElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAnchorElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAnchorElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLAnchorElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAnchorElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAppBehavior","package":"druntime","parentType":"","signature":"IID IID_IHTMLAppBehavior","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAppBehavior"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAppBehavior2","package":"druntime","parentType":"","signature":"IID IID_IHTMLAppBehavior2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAppBehavior2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAppBehavior3","package":"druntime","parentType":"","signature":"IID IID_IHTMLAppBehavior3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAppBehavior3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHtmlArea","package":"druntime","parentType":"","signature":"IID IID_IHtmlArea","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHtmlArea"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAreaElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAreasCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLAreasCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAreasCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAreasCollection2","package":"druntime","parentType":"","signature":"IID IID_IHTMLAreasCollection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAreasCollection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAreasCollection3","package":"druntime","parentType":"","signature":"IID IID_IHTMLAreasCollection3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAreasCollection3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAttributeCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLAttributeCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAttributeCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLAttributeCollection2","package":"druntime","parentType":"","signature":"IID IID_IHTMLAttributeCollection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLAttributeCollection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBaseElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLBaseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBaseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBaseFontElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLBaseFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBaseFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBGsound","package":"druntime","parentType":"","signature":"IID IID_IHTMLBGsound","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBGsound"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBlockElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLBlockElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBlockElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBlockElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLBlockElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBlockElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBodyElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLBodyElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBodyElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBodyElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLBodyElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBodyElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBookmarkCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLBookmarkCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBookmarkCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLBRElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLBRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLBRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLButtonElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCaret","package":"druntime","parentType":"","signature":"IID IID_IHTMLCaret","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCaret"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLChangeLog","package":"druntime","parentType":"","signature":"IID IID_IHTMLChangeLog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLChangeLog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLChangePlayback","package":"druntime","parentType":"","signature":"IID IID_IHTMLChangePlayback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLChangePlayback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLChangeSink","package":"druntime","parentType":"","signature":"IID IID_IHTMLChangeSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLChangeSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCommentElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLCommentElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCommentElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCommentElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLCommentElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCommentElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLComputedStyle","package":"druntime","parentType":"","signature":"IID IID_IHTMLComputedStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLComputedStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLControlElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLControlElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLControlElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLControlRange","package":"druntime","parentType":"","signature":"IID IID_IHTMLControlRange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLControlRange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLControlRange2","package":"druntime","parentType":"","signature":"IID IID_IHTMLControlRange2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLControlRange2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCurrentStyle","package":"druntime","parentType":"","signature":"IID IID_IHTMLCurrentStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCurrentStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCurrentStyle2","package":"druntime","parentType":"","signature":"IID IID_IHTMLCurrentStyle2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCurrentStyle2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLCurrentStyle3","package":"druntime","parentType":"","signature":"IID IID_IHTMLCurrentStyle3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLCurrentStyle3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDatabinding","package":"druntime","parentType":"","signature":"IID IID_IHTMLDatabinding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDatabinding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDataTransfer","package":"druntime","parentType":"","signature":"IID IID_IHTMLDataTransfer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDataTransfer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDDElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLDDElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDDElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDialog","package":"druntime","parentType":"","signature":"IID IID_IHTMLDialog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDialog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDialog2","package":"druntime","parentType":"","signature":"IID IID_IHTMLDialog2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDialog2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDialog3","package":"druntime","parentType":"","signature":"IID IID_IHTMLDialog3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDialog3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDivElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLDivElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDivElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDivPosition","package":"druntime","parentType":"","signature":"IID IID_IHTMLDivPosition","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDivPosition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHtmlDlgSafeHelper","package":"druntime","parentType":"","signature":"IID IID_IHtmlDlgSafeHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHtmlDlgSafeHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDListElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLDListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDocument","package":"druntime","parentType":"","signature":"IID IID_IHTMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDocument2","package":"druntime","parentType":"","signature":"IID IID_IHTMLDocument2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDocument2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDocument3","package":"druntime","parentType":"","signature":"IID IID_IHTMLDocument3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDocument3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDocument4","package":"druntime","parentType":"","signature":"IID IID_IHTMLDocument4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDocument4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDocument5","package":"druntime","parentType":"","signature":"IID IID_IHTMLDocument5","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDocument5"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMAttribute","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMAttribute","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMAttribute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMAttribute2","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMAttribute2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMAttribute2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMChildrenCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMChildrenCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMChildrenCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMImplementation","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMImplementation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMImplementation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMNode","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMNode2","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMNode2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMNode2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMTextNode","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMTextNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMTextNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDOMTextNode2","package":"druntime","parentType":"","signature":"IID IID_IHTMLDOMTextNode2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDOMTextNode2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDTElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLDTElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDTElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLDXTransform","package":"druntime","parentType":"","signature":"IID IID_IHTMLDXTransform","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLDXTransform"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditDesigner","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditDesigner","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditDesigner"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditHost","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditHost2","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditHost2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditHost2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditingServices","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditingServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditingServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditor","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditServices","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEditServices2","package":"druntime","parentType":"","signature":"IID IID_IHTMLEditServices2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEditServices2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElement4","package":"druntime","parentType":"","signature":"IID IID_IHTMLElement4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElement4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElementCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElementCollection2","package":"druntime","parentType":"","signature":"IID IID_IHTMLElementCollection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElementCollection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElementCollection3","package":"druntime","parentType":"","signature":"IID IID_IHTMLElementCollection3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElementCollection3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElementDefaults","package":"druntime","parentType":"","signature":"IID IID_IHTMLElementDefaults","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElementDefaults"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLElementRender","package":"druntime","parentType":"","signature":"IID IID_IHTMLElementRender","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLElementRender"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEmbedElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLEmbedElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEmbedElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEventObj","package":"druntime","parentType":"","signature":"IID IID_IHTMLEventObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEventObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEventObj2","package":"druntime","parentType":"","signature":"IID IID_IHTMLEventObj2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEventObj2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEventObj3","package":"druntime","parentType":"","signature":"IID IID_IHTMLEventObj3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEventObj3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLEventObj4","package":"druntime","parentType":"","signature":"IID IID_IHTMLEventObj4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLEventObj4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFieldSetElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLFieldSetElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFieldSetElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFieldSetElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFieldSetElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFieldSetElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFilterPainter","package":"druntime","parentType":"","signature":"IID IID_IHTMLFilterPainter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFilterPainter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFilterPaintSite","package":"druntime","parentType":"","signature":"IID IID_IHTMLFilterPaintSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFilterPaintSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFiltersCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLFiltersCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFiltersCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFontElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLFontElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFontElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFontNamesCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLFontNamesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFontNamesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFontSizesCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLFontSizesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFontSizesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFormElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLFormElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFormElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFormElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFormElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFormElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFormElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLFormElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFormElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameBase","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameBase","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameBase"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameBase2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameBase2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameBase2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameBase3","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameBase3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameBase3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFramesCollection2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFramesCollection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFramesCollection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameSetElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameSetElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameSetElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLFrameSetElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLFrameSetElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLFrameSetElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLGenericElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLGenericElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLGenericElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLHeadElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLHeadElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLHeadElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLHeaderElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLHeaderElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLHeaderElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLHRElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLHRElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLHRElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLHtmlElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLHtmlElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLHtmlElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLIFrameElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLIFrameElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLIFrameElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLIFrameElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLIFrameElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLIFrameElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLImageElementFactory","package":"druntime","parentType":"","signature":"IID IID_IHTMLImageElementFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLImageElementFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLImgElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLImgElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLImgElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLImgElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLImgElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLImgElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputButtonElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputFileElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputFileElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputFileElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputHiddenElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputHiddenElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputHiddenElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputImage","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputImage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputImage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLInputTextElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLInputTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLInputTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLIPrintCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLIPrintCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLIPrintCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLIsIndexElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLIsIndexElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLIsIndexElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLIsIndexElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLIsIndexElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLIsIndexElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLabelElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLLabelElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLabelElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLabelElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLLabelElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLabelElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLegendElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLLegendElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLegendElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLegendElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLLegendElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLegendElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLIElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLLIElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLIElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLinkElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLLinkElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLinkElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLinkElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLLinkElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLinkElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLinkElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLLinkElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLinkElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLListElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLListElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLListElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLListElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHtmlLoadOptions","package":"druntime","parentType":"","signature":"IID IID_IHtmlLoadOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHtmlLoadOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLLocation","package":"druntime","parentType":"","signature":"IID IID_IHTMLLocation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLLocation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLMapElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLMapElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLMapElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLMarqueeElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLMarqueeElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLMarqueeElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLMetaElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLMetaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLMetaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLMetaElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLMetaElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLMetaElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLMimeTypesCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLMimeTypesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLMimeTypesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLModelessInit","package":"druntime","parentType":"","signature":"IID IID_IHTMLModelessInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLModelessInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLNamespace","package":"druntime","parentType":"","signature":"IID IID_IHTMLNamespace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLNamespace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLNamespaceCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLNamespaceCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLNamespaceCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLNextIdElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLNextIdElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLNextIdElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLNoShowElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLNoShowElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLNoShowElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLObjectElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLObjectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLObjectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLObjectElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLObjectElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLObjectElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLObjectElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLObjectElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLObjectElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOListElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLOListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOMWindowServices","package":"druntime","parentType":"","signature":"IID IID_IHTMLOMWindowServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOMWindowServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOpsProfile","package":"druntime","parentType":"","signature":"IID IID_IHTMLOpsProfile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOpsProfile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionButtonElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionButtonElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionButtonElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionElementFactory","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionElementFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionElementFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLOptionsHolder","package":"druntime","parentType":"","signature":"IID IID_IHTMLOptionsHolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLOptionsHolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPainter","package":"druntime","parentType":"","signature":"IID IID_IHTMLPainter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPainter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPainterEventInfo","package":"druntime","parentType":"","signature":"IID IID_IHTMLPainterEventInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPainterEventInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPainterOverlay","package":"druntime","parentType":"","signature":"IID IID_IHTMLPainterOverlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPainterOverlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPaintSite","package":"druntime","parentType":"","signature":"IID IID_IHTMLPaintSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPaintSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLParaElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLParaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLParaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLParamElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLParamElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLParamElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPersistData","package":"druntime","parentType":"","signature":"IID IID_IHTMLPersistData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPersistData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPersistDataOM","package":"druntime","parentType":"","signature":"IID IID_IHTMLPersistDataOM","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPersistDataOM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPhraseElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLPhraseElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPhraseElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPhraseElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLPhraseElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPhraseElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPluginsCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLPluginsCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPluginsCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPopup","package":"druntime","parentType":"","signature":"IID IID_IHTMLPopup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPopup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPrivateWindow","package":"druntime","parentType":"","signature":"IID IID_IHTMLPrivateWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPrivateWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPrivateWindow2","package":"druntime","parentType":"","signature":"IID IID_IHTMLPrivateWindow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPrivateWindow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLPrivateWindow3","package":"druntime","parentType":"","signature":"IID IID_IHTMLPrivateWindow3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLPrivateWindow3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRect","package":"druntime","parentType":"","signature":"IID IID_IHTMLRect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRectCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLRectCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRectCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRenderStyle","package":"druntime","parentType":"","signature":"IID IID_IHTMLRenderStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRenderStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRuleStyle","package":"druntime","parentType":"","signature":"IID IID_IHTMLRuleStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRuleStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRuleStyle2","package":"druntime","parentType":"","signature":"IID IID_IHTMLRuleStyle2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRuleStyle2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRuleStyle3","package":"druntime","parentType":"","signature":"IID IID_IHTMLRuleStyle3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRuleStyle3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLRuleStyle4","package":"druntime","parentType":"","signature":"IID IID_IHTMLRuleStyle4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLRuleStyle4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLScreen","package":"druntime","parentType":"","signature":"IID IID_IHTMLScreen","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLScreen"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLScreen2","package":"druntime","parentType":"","signature":"IID IID_IHTMLScreen2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLScreen2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLScriptElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLScriptElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLScriptElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLScriptElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLScriptElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLScriptElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectElement2","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectElement3","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectElement3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectElement3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectElement4","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectElement4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectElement4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectionObject","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectionObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectionObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSelectionObject2","package":"druntime","parentType":"","signature":"IID IID_IHTMLSelectionObject2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSelectionObject2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSpanElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLSpanElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSpanElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSpanFlow","package":"druntime","parentType":"","signature":"IID IID_IHTMLSpanFlow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSpanFlow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyle","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyle2","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyle2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyle2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyle3","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyle3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyle3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyle4","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyle4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyle4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleFontFace","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleFontFace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleFontFace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheet","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheet2","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheet2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheet2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheetPage","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheetPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheetPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheetPagesCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheetPagesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheetPagesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheetRule","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheetRule","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheetRule"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheetRulesCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheetRulesCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheetRulesCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLStyleSheetsCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLStyleSheetsCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLStyleSheetsCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLSubmitData","package":"druntime","parentType":"","signature":"IID IID_IHTMLSubmitData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLSubmitData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTable","package":"druntime","parentType":"","signature":"IID IID_IHTMLTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTable2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTable2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTable2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTable3","package":"druntime","parentType":"","signature":"IID IID_IHTMLTable3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTable3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableCaption","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableCaption","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableCaption"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableCell","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableCell","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableCell"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableCell2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableCell2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableCell2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableCol","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableCol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableCol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableCol2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableCol2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableCol2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableRow","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableRow2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableRow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableRow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableRow3","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableRow3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableRow3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableRowMetrics","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableRowMetrics","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableRowMetrics"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableSection","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableSection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableSection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableSection2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableSection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableSection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTableSection3","package":"druntime","parentType":"","signature":"IID IID_IHTMLTableSection3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTableSection3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTextAreaElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLTextAreaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTextAreaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTextContainer","package":"druntime","parentType":"","signature":"IID IID_IHTMLTextContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTextContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTextElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLTextElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTextElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTextRangeMetrics","package":"druntime","parentType":"","signature":"IID IID_IHTMLTextRangeMetrics","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTextRangeMetrics"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTextRangeMetrics2","package":"druntime","parentType":"","signature":"IID IID_IHTMLTextRangeMetrics2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTextRangeMetrics2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTitleElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLTitleElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTitleElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTxtRange","package":"druntime","parentType":"","signature":"IID IID_IHTMLTxtRange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTxtRange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLTxtRangeCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLTxtRangeCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLTxtRangeCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLUListElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLUListElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLUListElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLUniqueName","package":"druntime","parentType":"","signature":"IID IID_IHTMLUniqueName","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLUniqueName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLUnknownElement","package":"druntime","parentType":"","signature":"IID IID_IHTMLUnknownElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLUnknownElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLUrnCollection","package":"druntime","parentType":"","signature":"IID IID_IHTMLUrnCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLUrnCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLUserDataOM","package":"druntime","parentType":"","signature":"IID IID_IHTMLUserDataOM","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLUserDataOM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLViewFilter","package":"druntime","parentType":"","signature":"IID IID_IHTMLViewFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLViewFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLViewFilterSite","package":"druntime","parentType":"","signature":"IID IID_IHTMLViewFilterSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLViewFilterSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLWindow2","package":"druntime","parentType":"","signature":"IID IID_IHTMLWindow2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLWindow2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLWindow3","package":"druntime","parentType":"","signature":"IID IID_IHTMLWindow3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLWindow3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHTMLWindow4","package":"druntime","parentType":"","signature":"IID IID_IHTMLWindow4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHTMLWindow4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHttpNegotiate","package":"druntime","parentType":"","signature":"IID IID_IHttpNegotiate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHttpNegotiate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHttpNegotiate2","package":"druntime","parentType":"","signature":"IID IID_IHttpNegotiate2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHttpNegotiate2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHttpSecurity","package":"druntime","parentType":"","signature":"IID IID_IHttpSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHttpSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IHWEventHandler","package":"druntime","parentType":"","signature":"IID IID_IHWEventHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IHWEventHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IImageDecodeEventSink","package":"druntime","parentType":"","signature":"IID IID_IImageDecodeEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IImageDecodeEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IImageDecodeFilter","package":"druntime","parentType":"","signature":"IID IID_IImageDecodeFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IImageDecodeFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IImageList","package":"druntime","parentType":"","signature":"IID IID_IImageList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IImageList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IIMEServices","package":"druntime","parentType":"","signature":"IID IID_IIMEServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IIMEServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IImgCtx","package":"druntime","parentType":"","signature":"IID IID_IImgCtx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IImgCtx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IIndexDefinition","package":"druntime","parentType":"","signature":"IID IID_IIndexDefinition","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IIndexDefinition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInputObject","package":"druntime","parentType":"","signature":"IID IID_IInputObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInputObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInputObjectSite","package":"druntime","parentType":"","signature":"IID IID_IInputObjectSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInputObjectSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IIntDitherer","package":"druntime","parentType":"","signature":"IID IID_IIntDitherer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IIntDitherer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IIntelliForms","package":"druntime","parentType":"","signature":"IID IID_IIntelliForms","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IIntelliForms"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInterfaceRelated","package":"druntime","parentType":"","signature":"IID IID_IInterfaceRelated","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInterfaceRelated"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternalMoniker","package":"druntime","parentType":"","signature":"IID IID_IInternalMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternalMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternalUnknown","package":"druntime","parentType":"","signature":"IID IID_IInternalUnknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternalUnknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternet","package":"druntime","parentType":"","signature":"IID IID_IInternet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetBindInfo","package":"druntime","parentType":"","signature":"IID IID_IInternetBindInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetBindInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetConnectionDevice","package":"druntime","parentType":"","signature":"IID IID_IInternetConnectionDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetConnectionDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetConnectionDeviceClient","package":"druntime","parentType":"","signature":"IID IID_IInternetConnectionDeviceClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetConnectionDeviceClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetConnectionDeviceSharedCo","package":"druntime","parentType":"","signature":"IID IID_IInternetConnectionDeviceSharedCo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetConnectionDeviceSharedCo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetHostSecurityManager","package":"druntime","parentType":"","signature":"IID IID_IInternetHostSecurityManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetHostSecurityManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetPriority","package":"druntime","parentType":"","signature":"IID IID_IInternetPriority","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetPriority"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetProtocol","package":"druntime","parentType":"","signature":"IID IID_IInternetProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetProtocolInfo","package":"druntime","parentType":"","signature":"IID IID_IInternetProtocolInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetProtocolInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetProtocolRoot","package":"druntime","parentType":"","signature":"IID IID_IInternetProtocolRoot","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetProtocolRoot"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetProtocolSink","package":"druntime","parentType":"","signature":"IID IID_IInternetProtocolSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetProtocolSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetProtocolSinkStackable","package":"druntime","parentType":"","signature":"IID IID_IInternetProtocolSinkStackable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetProtocolSinkStackable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetSecurityManager","package":"druntime","parentType":"","signature":"IID IID_IInternetSecurityManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetSecurityManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetSecurityMgrSite","package":"druntime","parentType":"","signature":"IID IID_IInternetSecurityMgrSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetSecurityMgrSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetSession","package":"druntime","parentType":"","signature":"IID IID_IInternetSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetThreadSwitch","package":"druntime","parentType":"","signature":"IID IID_IInternetThreadSwitch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetThreadSwitch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IInternetZoneManager","package":"druntime","parentType":"","signature":"IID IID_IInternetZoneManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IInternetZoneManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IIpxAdapterInfo","package":"druntime","parentType":"","signature":"IID IID_IIpxAdapterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IIpxAdapterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IItemNameLimits","package":"druntime","parentType":"","signature":"IID IID_IItemNameLimits","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IItemNameLimits"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IJolietDiscMaster","package":"druntime","parentType":"","signature":"IID IID_IJolietDiscMaster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IJolietDiscMaster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IKeyFrameControl","package":"druntime","parentType":"","signature":"IID IID_IKeyFrameControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IKeyFrameControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IKsControl","package":"druntime","parentType":"","signature":"IID IID_IKsControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IKsControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IKsPropertySet","package":"druntime","parentType":"","signature":"IID IID_IKsPropertySet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IKsPropertySet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILayoutRect","package":"druntime","parentType":"","signature":"IID IID_ILayoutRect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILayoutRect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILayoutStorage","package":"druntime","parentType":"","signature":"IID IID_ILayoutStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILayoutStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILineInfo","package":"druntime","parentType":"","signature":"IID IID_ILineInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILineInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILocalMachine","package":"druntime","parentType":"","signature":"IID IID_ILocalMachine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILocalMachine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILockBytes","package":"druntime","parentType":"","signature":"IID IID_ILockBytes","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILockBytes"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILogger","package":"druntime","parentType":"","signature":"IID IID_ILogger","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILogger"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILogManager","package":"druntime","parentType":"","signature":"IID IID_ILogManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILogManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILogonEnumUsers","package":"druntime","parentType":"","signature":"IID IID_ILogonEnumUsers","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILogonEnumUsers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILogonStatusHost","package":"druntime","parentType":"","signature":"IID IID_ILogonStatusHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILogonStatusHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ILogonUser","package":"druntime","parentType":"","signature":"IID IID_ILogonUser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ILogonUser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMachineDebugManager","package":"druntime","parentType":"","signature":"IID IID_IMachineDebugManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMachineDebugManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMachineDebugManagerCookie","package":"druntime","parentType":"","signature":"IID IID_IMachineDebugManagerCookie","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMachineDebugManagerCookie"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMachineDebugManagerEvents","package":"druntime","parentType":"","signature":"IID IID_IMachineDebugManagerEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMachineDebugManagerEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMailAutoDiscovery","package":"druntime","parentType":"","signature":"IID IID_IMailAutoDiscovery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMailAutoDiscovery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMailProtocolADEntry","package":"druntime","parentType":"","signature":"IID IID_IMailProtocolADEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMailProtocolADEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMalloc","package":"druntime","parentType":"","signature":"IID IID_IMalloc","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMalloc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMallocSpy","package":"druntime","parentType":"","signature":"IID IID_IMallocSpy","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMallocSpy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMapMIMEToCLSID","package":"druntime","parentType":"","signature":"IID IID_IMapMIMEToCLSID","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMapMIMEToCLSID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupContainer","package":"druntime","parentType":"","signature":"IID IID_IMarkupContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupContainer2","package":"druntime","parentType":"","signature":"IID IID_IMarkupContainer2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupContainer2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupPointer","package":"druntime","parentType":"","signature":"IID IID_IMarkupPointer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupPointer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupPointer2","package":"druntime","parentType":"","signature":"IID IID_IMarkupPointer2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupPointer2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupServices","package":"druntime","parentType":"","signature":"IID IID_IMarkupServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupServices2","package":"druntime","parentType":"","signature":"IID IID_IMarkupServices2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupServices2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarkupTextFrags","package":"druntime","parentType":"","signature":"IID IID_IMarkupTextFrags","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarkupTextFrags"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarshal","package":"druntime","parentType":"","signature":"IID IID_IMarshal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarshal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMarshal2","package":"druntime","parentType":"","signature":"IID IID_IMarshal2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMarshal2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMcastAddressAllocation","package":"druntime","parentType":"","signature":"IID IID_IMcastAddressAllocation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMcastAddressAllocation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMcastLeaseInfo","package":"druntime","parentType":"","signature":"IID IID_IMcastLeaseInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMcastLeaseInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMcastScope","package":"druntime","parentType":"","signature":"IID IID_IMcastScope","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMcastScope"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMDDataset","package":"druntime","parentType":"","signature":"IID IID_IMDDataset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMDDataset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMDFind","package":"druntime","parentType":"","signature":"IID IID_IMDFind","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMDFind"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMDRangeRowset","package":"druntime","parentType":"","signature":"IID IID_IMDRangeRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMDRangeRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMessageFilter","package":"druntime","parentType":"","signature":"IID IID_IMessageFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMessageFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMigrationWizardAuto","package":"druntime","parentType":"","signature":"IID IID_IMigrationWizardAuto","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMigrationWizardAuto"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMimeInfo","package":"druntime","parentType":"","signature":"IID IID_IMimeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMimeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangCodePages","package":"druntime","parentType":"","signature":"IID IID_IMLangCodePages","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangCodePages"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangConvertCharset","package":"druntime","parentType":"","signature":"IID IID_IMLangConvertCharset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangConvertCharset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangFontLink","package":"druntime","parentType":"","signature":"IID IID_IMLangFontLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangFontLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangFontLink2","package":"druntime","parentType":"","signature":"IID IID_IMLangFontLink2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangFontLink2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangLineBreakConsole","package":"druntime","parentType":"","signature":"IID IID_IMLangLineBreakConsole","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangLineBreakConsole"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangString","package":"druntime","parentType":"","signature":"IID IID_IMLangString","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangString"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangStringAStr","package":"druntime","parentType":"","signature":"IID IID_IMLangStringAStr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangStringAStr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangStringBufA","package":"druntime","parentType":"","signature":"IID IID_IMLangStringBufA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangStringBufA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangStringBufW","package":"druntime","parentType":"","signature":"IID IID_IMLangStringBufW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangStringBufW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMLangStringWStr","package":"druntime","parentType":"","signature":"IID IID_IMLangStringWStr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMLangStringWStr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMofCompiler","package":"druntime","parentType":"","signature":"IID IID_IMofCompiler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMofCompiler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMoniker","package":"druntime","parentType":"","signature":"IID IID_IMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMonikerProp","package":"druntime","parentType":"","signature":"IID IID_IMonikerProp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMonikerProp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMountedVolume","package":"druntime","parentType":"","signature":"IID IID_IMountedVolume","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMountedVolume"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMulticastControl","package":"druntime","parentType":"","signature":"IID IID_IMulticastControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMulticastControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultiLanguage","package":"druntime","parentType":"","signature":"IID IID_IMultiLanguage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultiLanguage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultiLanguage2","package":"druntime","parentType":"","signature":"IID IID_IMultiLanguage2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultiLanguage2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultiLanguage3","package":"druntime","parentType":"","signature":"IID IID_IMultiLanguage3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultiLanguage3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultiplePropertyAccess","package":"druntime","parentType":"","signature":"IID IID_IMultiplePropertyAccess","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultiplePropertyAccess"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultipleResults","package":"druntime","parentType":"","signature":"IID IID_IMultipleResults","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultipleResults"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IMultiQI","package":"druntime","parentType":"","signature":"IID IID_IMultiQI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IMultiQI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INamedPropertyBag","package":"druntime","parentType":"","signature":"IID IID_INamedPropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INamedPropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INATEventManager","package":"druntime","parentType":"","signature":"IID IID_INATEventManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INATEventManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INATExternalIPAddressCallback","package":"druntime","parentType":"","signature":"IID IID_INATExternalIPAddressCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INATExternalIPAddressCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INATNumberOfEntriesCallback","package":"druntime","parentType":"","signature":"IID IID_INATNumberOfEntriesCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INATNumberOfEntriesCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfg","package":"druntime","parentType":"","signature":"IID IID_INetCfg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgBindingInterface","package":"druntime","parentType":"","signature":"IID IID_INetCfgBindingInterface","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgBindingInterface"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgBindingPath","package":"druntime","parentType":"","signature":"IID IID_INetCfgBindingPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgBindingPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgClass","package":"druntime","parentType":"","signature":"IID IID_INetCfgClass","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgClass"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgClassSetup","package":"druntime","parentType":"","signature":"IID IID_INetCfgClassSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgClassSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponent","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentBindings","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentBindings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentBindings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentControl","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentNotifyBinding","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentNotifyBinding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentNotifyBinding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentNotifyGlobal","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentNotifyGlobal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentNotifyGlobal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentPrivate","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentPrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentPrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentPropertyUi","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentPropertyUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentPropertyUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentSetup","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentSysPrep","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentSysPrep","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentSysPrep"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgComponentUpperEdge","package":"druntime","parentType":"","signature":"IID IID_INetCfgComponentUpperEdge","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgComponentUpperEdge"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgInternalSetup","package":"druntime","parentType":"","signature":"IID IID_INetCfgInternalSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgInternalSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgLock","package":"druntime","parentType":"","signature":"IID IID_INetCfgLock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgLock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgPnpReconfigCallback","package":"druntime","parentType":"","signature":"IID IID_INetCfgPnpReconfigCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgPnpReconfigCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgSpecialCase","package":"druntime","parentType":"","signature":"IID IID_INetCfgSpecialCase","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgSpecialCase"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCfgSysPrep","package":"druntime","parentType":"","signature":"IID IID_INetCfgSysPrep","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCfgSysPrep"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnection","package":"druntime","parentType":"","signature":"IID IID_INetConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnection2","package":"druntime","parentType":"","signature":"IID IID_INetConnection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionBrandingInfo","package":"druntime","parentType":"","signature":"IID IID_INetConnectionBrandingInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionBrandingInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionCMUtil","package":"druntime","parentType":"","signature":"IID IID_INetConnectionCMUtil","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionCMUtil"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionCommonUi","package":"druntime","parentType":"","signature":"IID IID_INetConnectionCommonUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionCommonUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionConnectUi","package":"druntime","parentType":"","signature":"IID IID_INetConnectionConnectUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionConnectUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionHNetUtil","package":"druntime","parentType":"","signature":"IID IID_INetConnectionHNetUtil","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionHNetUtil"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionManager","package":"druntime","parentType":"","signature":"IID IID_INetConnectionManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionManager2","package":"druntime","parentType":"","signature":"IID IID_INetConnectionManager2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionManager2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionManagerDebug","package":"druntime","parentType":"","signature":"IID IID_INetConnectionManagerDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionManagerDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionManagerEvents","package":"druntime","parentType":"","signature":"IID IID_INetConnectionManagerEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionManagerEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionNotifySink","package":"druntime","parentType":"","signature":"IID IID_INetConnectionNotifySink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionNotifySink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionPropertyUi","package":"druntime","parentType":"","signature":"IID IID_INetConnectionPropertyUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionPropertyUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionPropertyUi2","package":"druntime","parentType":"","signature":"IID IID_INetConnectionPropertyUi2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionPropertyUi2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionProps","package":"druntime","parentType":"","signature":"IID IID_INetConnectionProps","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionProps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionRefresh","package":"druntime","parentType":"","signature":"IID IID_INetConnectionRefresh","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionRefresh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionSysTray","package":"druntime","parentType":"","signature":"IID IID_INetConnectionSysTray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionSysTray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionUiLock","package":"druntime","parentType":"","signature":"IID IID_INetConnectionUiLock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionUiLock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionUiUtilities","package":"druntime","parentType":"","signature":"IID IID_INetConnectionUiUtilities","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionUiUtilities"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionWizardUi","package":"druntime","parentType":"","signature":"IID IID_INetConnectionWizardUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionWizardUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetConnectionWizardUiContext","package":"druntime","parentType":"","signature":"IID IID_INetConnectionWizardUiContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetConnectionWizardUiContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetCrawler","package":"druntime","parentType":"","signature":"IID IID_INetCrawler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetCrawler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetDefaultConnection","package":"druntime","parentType":"","signature":"IID IID_INetDefaultConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetDefaultConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetInboundConnection","package":"druntime","parentType":"","signature":"IID IID_INetInboundConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetInboundConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetInstallQueue","package":"druntime","parentType":"","signature":"IID IID_INetInstallQueue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetInstallQueue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetLanConnection","package":"druntime","parentType":"","signature":"IID IID_INetLanConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetLanConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetLanConnectionUiInfo","package":"druntime","parentType":"","signature":"IID IID_INetLanConnectionUiInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetLanConnectionUiInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetLanConnectionWizardUi","package":"druntime","parentType":"","signature":"IID IID_INetLanConnectionWizardUi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetLanConnectionWizardUi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetMachinePolicies","package":"druntime","parentType":"","signature":"IID IID_INetMachinePolicies","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetMachinePolicies"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetRasConnection","package":"druntime","parentType":"","signature":"IID IID_INetRasConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetRasConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetRasConnectionIpUiInfo","package":"druntime","parentType":"","signature":"IID IID_INetRasConnectionIpUiInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetRasConnectionIpUiInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharedAccessConnection","package":"druntime","parentType":"","signature":"IID IID_INetSharedAccessConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharedAccessConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingConfiguration","package":"druntime","parentType":"","signature":"IID IID_INetSharingConfiguration","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingConfiguration"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingEveryConnectionCollect","package":"druntime","parentType":"","signature":"IID IID_INetSharingEveryConnectionCollect","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingEveryConnectionCollect"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingManager","package":"druntime","parentType":"","signature":"IID IID_INetSharingManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingPortMapping","package":"druntime","parentType":"","signature":"IID IID_INetSharingPortMapping","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingPortMapping"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingPortMappingCollection","package":"druntime","parentType":"","signature":"IID IID_INetSharingPortMappingCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingPortMappingCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingPortMappingProps","package":"druntime","parentType":"","signature":"IID IID_INetSharingPortMappingProps","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingPortMappingProps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingPrivateConnectionColle","package":"druntime","parentType":"","signature":"IID IID_INetSharingPrivateConnectionColle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingPrivateConnectionColle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INetSharingPublicConnectionCollec","package":"druntime","parentType":"","signature":"IID IID_INetSharingPublicConnectionCollec","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INetSharingPublicConnectionCollec"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INewShortcutHookA","package":"druntime","parentType":"","signature":"IID IID_INewShortcutHookA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INewShortcutHookA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INewShortcutHookW","package":"druntime","parentType":"","signature":"IID IID_INewShortcutHookW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INewShortcutHookW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INewWDEvents","package":"druntime","parentType":"","signature":"IID IID_INewWDEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INewWDEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotification","package":"druntime","parentType":"","signature":"IID IID_INotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationHelper","package":"druntime","parentType":"","signature":"IID IID_INotificationHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationManager","package":"druntime","parentType":"","signature":"IID IID_INotificationManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationMgr","package":"druntime","parentType":"","signature":"IID IID_INotificationMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationPing","package":"druntime","parentType":"","signature":"IID IID_INotificationPing","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationPing"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationProcessMgr0","package":"druntime","parentType":"","signature":"IID IID_INotificationProcessMgr0","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationProcessMgr0"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationReport","package":"druntime","parentType":"","signature":"IID IID_INotificationReport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationReport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationRunning","package":"druntime","parentType":"","signature":"IID IID_INotificationRunning","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationRunning"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotificationSink","package":"druntime","parentType":"","signature":"IID IID_INotificationSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotificationSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotifyDBEvents","package":"druntime","parentType":"","signature":"IID IID_INotifyDBEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotifyDBEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotifyReplica","package":"druntime","parentType":"","signature":"IID IID_INotifyReplica","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotifyReplica"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_INotifyUI","package":"druntime","parentType":"","signature":"IID IID_INotifyUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_INotifyUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjectAccessControl","package":"druntime","parentType":"","signature":"IID IID_IObjectAccessControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjectAccessControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjectIdentity","package":"druntime","parentType":"","signature":"IID IID_IObjectIdentity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjectIdentity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjectManager","package":"druntime","parentType":"","signature":"IID IID_IObjectManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjectManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjectSafety","package":"druntime","parentType":"","signature":"IID IID_IObjectSafety","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjectSafety"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjectWithSite","package":"druntime","parentType":"","signature":"IID IID_IObjectWithSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjectWithSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IObjMgr","package":"druntime","parentType":"","signature":"IID IID_IObjMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IObjMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInet","package":"druntime","parentType":"","signature":"IID IID_IOInet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetBindClient","package":"druntime","parentType":"","signature":"IID IID_IOInetBindClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetBindClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetBindInfo","package":"druntime","parentType":"","signature":"IID IID_IOInetBindInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetBindInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetCache","package":"druntime","parentType":"","signature":"IID IID_IOInetCache","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetCache"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetPriority","package":"druntime","parentType":"","signature":"IID IID_IOInetPriority","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetPriority"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetProtocol","package":"druntime","parentType":"","signature":"IID IID_IOInetProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetProtocolInfo","package":"druntime","parentType":"","signature":"IID IID_IOInetProtocolInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetProtocolInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetProtocolRoot","package":"druntime","parentType":"","signature":"IID IID_IOInetProtocolRoot","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetProtocolRoot"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetProtocolSink","package":"druntime","parentType":"","signature":"IID IID_IOInetProtocolSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetProtocolSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetSession","package":"druntime","parentType":"","signature":"IID IID_IOInetSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOInetThreadSwitch","package":"druntime","parentType":"","signature":"IID IID_IOInetThreadSwitch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOInetThreadSwitch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOldSyncMgrRegister","package":"druntime","parentType":"","signature":"IID IID_IOldSyncMgrRegister","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOldSyncMgrRegister"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOldSyncMgrSynchronize","package":"druntime","parentType":"","signature":"IID IID_IOldSyncMgrSynchronize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOldSyncMgrSynchronize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOldSyncMgrSynchronizeCallback","package":"druntime","parentType":"","signature":"IID IID_IOldSyncMgrSynchronizeCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOldSyncMgrSynchronizeCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleAdviseHolder","package":"druntime","parentType":"","signature":"IID IID_IOleAdviseHolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleAdviseHolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleCache","package":"druntime","parentType":"","signature":"IID IID_IOleCache","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleCache"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleCache2","package":"druntime","parentType":"","signature":"IID IID_IOleCache2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleCache2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleCacheControl","package":"druntime","parentType":"","signature":"IID IID_IOleCacheControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleCacheControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleClientSite","package":"druntime","parentType":"","signature":"IID IID_IOleClientSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleClientSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleCommandTarget","package":"druntime","parentType":"","signature":"IID IID_IOleCommandTarget","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleCommandTarget"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleContainer","package":"druntime","parentType":"","signature":"IID IID_IOleContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleControl","package":"druntime","parentType":"","signature":"IID IID_IOleControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleControlSite","package":"druntime","parentType":"","signature":"IID IID_IOleControlSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleControlSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleDocument","package":"druntime","parentType":"","signature":"IID IID_IOleDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleDocumentSite","package":"druntime","parentType":"","signature":"IID IID_IOleDocumentSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleDocumentSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleDocumentView","package":"druntime","parentType":"","signature":"IID IID_IOleDocumentView","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleDocumentView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceActiveObject","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceActiveObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceActiveObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceFrame","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceObject","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceObjectWindowless","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceObjectWindowless","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceObjectWindowless"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceSite","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceSiteEx","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceSiteEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceSiteEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceSiteWindowless","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceSiteWindowless","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceSiteWindowless"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleInPlaceUIWindow","package":"druntime","parentType":"","signature":"IID IID_IOleInPlaceUIWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleInPlaceUIWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleItemContainer","package":"druntime","parentType":"","signature":"IID IID_IOleItemContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleItemContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleLink","package":"druntime","parentType":"","signature":"IID IID_IOleLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleManager","package":"druntime","parentType":"","signature":"IID IID_IOleManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleObject","package":"druntime","parentType":"","signature":"IID IID_IOleObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleParentUndoUnit","package":"druntime","parentType":"","signature":"IID IID_IOleParentUndoUnit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleParentUndoUnit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOlePresObj","package":"druntime","parentType":"","signature":"IID IID_IOlePresObj","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOlePresObj"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleUndoManager","package":"druntime","parentType":"","signature":"IID IID_IOleUndoManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleUndoManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleUndoUnit","package":"druntime","parentType":"","signature":"IID IID_IOleUndoUnit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleUndoUnit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOleWindow","package":"druntime","parentType":"","signature":"IID IID_IOleWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOleWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOmHistory","package":"druntime","parentType":"","signature":"IID IID_IOmHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOmHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOmNavigator","package":"druntime","parentType":"","signature":"IID IID_IOmNavigator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOmNavigator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOpaqueDataInfo","package":"druntime","parentType":"","signature":"IID IID_IOpaqueDataInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOpaqueDataInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOpenRowset","package":"druntime","parentType":"","signature":"IID IID_IOpenRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOpenRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOplockStorage","package":"druntime","parentType":"","signature":"IID IID_IOplockStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOplockStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOpsProfileSimple","package":"druntime","parentType":"","signature":"IID IID_IOpsProfileSimple","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOpsProfileSimple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOptionArray","package":"druntime","parentType":"","signature":"IID IID_IOptionArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOptionArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOverlappedCompletion","package":"druntime","parentType":"","signature":"IID IID_IOverlappedCompletion","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOverlappedCompletion"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IOverlappedStream","package":"druntime","parentType":"","signature":"IID IID_IOverlappedStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IOverlappedStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParentRowset","package":"druntime","parentType":"","signature":"IID IID_IParentRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParentRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParseDisplayName","package":"druntime","parentType":"","signature":"IID IID_IParseDisplayName","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParseDisplayName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParser","package":"druntime","parentType":"","signature":"IID IID_IParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParserSession","package":"druntime","parentType":"","signature":"IID IID_IParserSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParserSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParserTreeProperties","package":"druntime","parentType":"","signature":"IID IID_IParserTreeProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParserTreeProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IParserVerify","package":"druntime","parentType":"","signature":"IID IID_IParserVerify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IParserVerify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPassportClientServices","package":"druntime","parentType":"","signature":"IID IID_IPassportClientServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPassportClientServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPeerFactory","package":"druntime","parentType":"","signature":"IID IID_IPeerFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPeerFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPendingProxyConnection","package":"druntime","parentType":"","signature":"IID IID_IPendingProxyConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPendingProxyConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPerPropertyBrowsing","package":"druntime","parentType":"","signature":"IID IID_IPerPropertyBrowsing","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPerPropertyBrowsing"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPerPropertyBrowsing2","package":"druntime","parentType":"","signature":"IID IID_IPerPropertyBrowsing2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPerPropertyBrowsing2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersist","package":"druntime","parentType":"","signature":"IID IID_IPersist","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersist"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistentDataChannel","package":"druntime","parentType":"","signature":"IID IID_IPersistentDataChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistentDataChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistFile","package":"druntime","parentType":"","signature":"IID IID_IPersistFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistFolder","package":"druntime","parentType":"","signature":"IID IID_IPersistFolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistFolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistFolder2","package":"druntime","parentType":"","signature":"IID IID_IPersistFolder2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistFolder2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistFolder3","package":"druntime","parentType":"","signature":"IID IID_IPersistFolder3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistFolder3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistHistory","package":"druntime","parentType":"","signature":"IID IID_IPersistHistory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistHistory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistIDList","package":"druntime","parentType":"","signature":"IID IID_IPersistIDList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistIDList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistMemory","package":"druntime","parentType":"","signature":"IID IID_IPersistMemory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistMemory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistMoniker","package":"druntime","parentType":"","signature":"IID IID_IPersistMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistNetConnection","package":"druntime","parentType":"","signature":"IID IID_IPersistNetConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistNetConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistPropertyBag","package":"druntime","parentType":"","signature":"IID IID_IPersistPropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistPropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistPropertyBag2","package":"druntime","parentType":"","signature":"IID IID_IPersistPropertyBag2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistPropertyBag2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistQuery","package":"druntime","parentType":"","signature":"IID IID_IPersistQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistStorage","package":"druntime","parentType":"","signature":"IID IID_IPersistStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistStream","package":"druntime","parentType":"","signature":"IID IID_IPersistStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPersistStreamInit","package":"druntime","parentType":"","signature":"IID IID_IPersistStreamInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPersistStreamInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPhraseSink","package":"druntime","parentType":"","signature":"IID IID_IPhraseSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPhraseSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPicture","package":"druntime","parentType":"","signature":"IID IID_IPicture","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPicture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPictureDisp","package":"druntime","parentType":"","signature":"IID IID_IPictureDisp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPictureDisp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPipeByte","package":"druntime","parentType":"","signature":"IID IID_IPipeByte","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPipeByte"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPipeDouble","package":"druntime","parentType":"","signature":"IID IID_IPipeDouble","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPipeDouble"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPipeLong","package":"druntime","parentType":"","signature":"IID IID_IPipeLong","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPipeLong"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPointerInactive","package":"druntime","parentType":"","signature":"IID IID_IPointerInactive","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPointerInactive"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrimaryControlChannel","package":"druntime","parentType":"","signature":"IID IID_IPrimaryControlChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrimaryControlChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrint","package":"druntime","parentType":"","signature":"IID IID_IPrint","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrint"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrintDialogCallback","package":"druntime","parentType":"","signature":"IID IID_IPrintDialogCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrintDialogCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrintDialogServices","package":"druntime","parentType":"","signature":"IID IID_IPrintDialogServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrintDialogServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrivacyServices","package":"druntime","parentType":"","signature":"IID IID_IPrivacyServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrivacyServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrivateDispatch","package":"druntime","parentType":"","signature":"IID IID_IPrivateDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrivateDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrivateUnknown","package":"druntime","parentType":"","signature":"IID IID_IPrivateUnknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrivateUnknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPrivSyncMgrSynchronizeInvoke","package":"druntime","parentType":"","signature":"IID IID_IPrivSyncMgrSynchronizeInvoke","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPrivSyncMgrSynchronizeInvoke"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProcessDebugManager","package":"druntime","parentType":"","signature":"IID IID_IProcessDebugManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProcessDebugManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProcessDebugManager32","package":"druntime","parentType":"","signature":"IID IID_IProcessDebugManager32","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProcessDebugManager32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProcessDebugManager64","package":"druntime","parentType":"","signature":"IID IID_IProcessDebugManager64","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProcessDebugManager64"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProcessInitControl","package":"druntime","parentType":"","signature":"IID IID_IProcessInitControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProcessInitControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProfferService","package":"druntime","parentType":"","signature":"IID IID_IProfferService","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProfferService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProgressDialog","package":"druntime","parentType":"","signature":"IID IID_IProgressDialog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProgressDialog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProgressNotify","package":"druntime","parentType":"","signature":"IID IID_IProgressNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProgressNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProgSink","package":"druntime","parentType":"","signature":"IID IID_IProgSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProgSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyBag","package":"druntime","parentType":"","signature":"IID IID_IPropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyBag2","package":"druntime","parentType":"","signature":"IID IID_IPropertyBag2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyBag2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyBagEx","package":"druntime","parentType":"","signature":"IID IID_IPropertyBagEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyBagEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyFrame","package":"druntime","parentType":"","signature":"IID IID_IPropertyFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyMap","package":"druntime","parentType":"","signature":"IID IID_IPropertyMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyMapper","package":"druntime","parentType":"","signature":"IID IID_IPropertyMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyNotifySink","package":"druntime","parentType":"","signature":"IID IID_IPropertyNotifySink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyNotifySink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyPage","package":"druntime","parentType":"","signature":"IID IID_IPropertyPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyPage2","package":"druntime","parentType":"","signature":"IID IID_IPropertyPage2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyPage2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyPageSite","package":"druntime","parentType":"","signature":"IID IID_IPropertyPageSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyPageSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertySetContainer","package":"druntime","parentType":"","signature":"IID IID_IPropertySetContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertySetContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertySetStorage","package":"druntime","parentType":"","signature":"IID IID_IPropertySetStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertySetStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyStorage","package":"druntime","parentType":"","signature":"IID IID_IPropertyStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropertyUI","package":"druntime","parentType":"","signature":"IID IID_IPropertyUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropertyUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPropSheetPage","package":"druntime","parentType":"","signature":"IID IID_IPropSheetPage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPropSheetPage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProvideClassInfo","package":"druntime","parentType":"","signature":"IID IID_IProvideClassInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProvideClassInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProvideClassInfo2","package":"druntime","parentType":"","signature":"IID IID_IProvideClassInfo2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProvideClassInfo2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProvideExpressionContexts","package":"druntime","parentType":"","signature":"IID IID_IProvideExpressionContexts","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProvideExpressionContexts"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProvideMoniker","package":"druntime","parentType":"","signature":"IID IID_IProvideMoniker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProvideMoniker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProvideMultipleClassInfo","package":"druntime","parentType":"","signature":"IID IID_IProvideMultipleClassInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProvideMultipleClassInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProxy","package":"druntime","parentType":"","signature":"IID IID_IProxy","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProxy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IProxyManager","package":"druntime","parentType":"","signature":"IID IID_IProxyManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IProxyManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPSFactory","package":"druntime","parentType":"","signature":"IID IID_IPSFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPSFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPSFactoryBuffer","package":"druntime","parentType":"","signature":"IID IID_IPSFactoryBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPSFactoryBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPublishedApp","package":"druntime","parentType":"","signature":"IID IID_IPublishedApp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPublishedApp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IPublishingWizard","package":"druntime","parentType":"","signature":"IID IID_IPublishingWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IPublishingWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQualityControl","package":"druntime","parentType":"","signature":"IID IID_IQualityControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQualityControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQuery","package":"druntime","parentType":"","signature":"IID IID_IQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryAssociations","package":"druntime","parentType":"","signature":"IID IID_IQueryAssociations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryAssociations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryCancelAutoPlay","package":"druntime","parentType":"","signature":"IID IID_IQueryCancelAutoPlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryCancelAutoPlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryContinue","package":"druntime","parentType":"","signature":"IID IID_IQueryContinue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryContinue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryForm","package":"druntime","parentType":"","signature":"IID IID_IQueryForm","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryForm"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryFrame","package":"druntime","parentType":"","signature":"IID IID_IQueryFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryHandler","package":"druntime","parentType":"","signature":"IID IID_IQueryHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQueryInfo","package":"druntime","parentType":"","signature":"IID IID_IQueryInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQueryInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IQuickActivate","package":"druntime","parentType":"","signature":"IID IID_IQuickActivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IQuickActivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRadioButton","package":"druntime","parentType":"","signature":"IID IID_IRadioButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRadioButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRatingNotification","package":"druntime","parentType":"","signature":"IID IID_IRatingNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRatingNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReadData","package":"druntime","parentType":"","signature":"IID IID_IReadData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReadData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReadEvents","package":"druntime","parentType":"","signature":"IID IID_IReadEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReadEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRecalcEngine","package":"druntime","parentType":"","signature":"IID IID_IRecalcEngine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRecalcEngine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRecalcHost","package":"druntime","parentType":"","signature":"IID IID_IRecalcHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRecalcHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRecalcHostDebug","package":"druntime","parentType":"","signature":"IID IID_IRecalcHostDebug","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRecalcHostDebug"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRecalcProperty","package":"druntime","parentType":"","signature":"IID IID_IRecalcProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRecalcProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReconcilableObject","package":"druntime","parentType":"","signature":"IID IID_IReconcilableObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReconcilableObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReconcileInitiator","package":"druntime","parentType":"","signature":"IID IID_IReconcileInitiator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReconcileInitiator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRecordInfo","package":"druntime","parentType":"","signature":"IID IID_IRecordInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRecordInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRedbookDiscMaster","package":"druntime","parentType":"","signature":"IID IID_IRedbookDiscMaster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRedbookDiscMaster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReferenceClock","package":"druntime","parentType":"","signature":"IID IID_IReferenceClock","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReferenceClock"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRegisterProvider","package":"druntime","parentType":"","signature":"IID IID_IRegisterProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRegisterProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRegisterVirusScanEngine","package":"druntime","parentType":"","signature":"IID IID_IRegisterVirusScanEngine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRegisterVirusScanEngine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IReleaseMarshalBuffers","package":"druntime","parentType":"","signature":"IID IID_IReleaseMarshalBuffers","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IReleaseMarshalBuffers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteCallBack","package":"druntime","parentType":"","signature":"IID IID_IRemoteCallBack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteCallBack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteComputer","package":"druntime","parentType":"","signature":"IID IID_IRemoteComputer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteComputer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDebugApplication","package":"druntime","parentType":"","signature":"IID IID_IRemoteDebugApplication","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDebugApplication"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDebugApplicationEvents","package":"druntime","parentType":"","signature":"IID IID_IRemoteDebugApplicationEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDebugApplicationEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDebugApplicationEx","package":"druntime","parentType":"","signature":"IID IID_IRemoteDebugApplicationEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDebugApplicationEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDebugApplicationThread","package":"druntime","parentType":"","signature":"IID IID_IRemoteDebugApplicationThread","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDebugApplicationThread"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDebugApplicationThreadEx","package":"druntime","parentType":"","signature":"IID IID_IRemoteDebugApplicationThreadEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDebugApplicationThreadEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteDelaydC","package":"druntime","parentType":"","signature":"IID IID_IRemoteDelaydC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteDelaydC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteESP","package":"druntime","parentType":"","signature":"IID IID_IRemoteESP","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteESP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteFinder","package":"druntime","parentType":"","signature":"IID IID_IRemoteFinder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteFinder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRemoteStats","package":"druntime","parentType":"","signature":"IID IID_IRemoteStats","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRemoteStats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRequest","package":"druntime","parentType":"","signature":"IID IID_IRequest","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRequest"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRequestHandler","package":"druntime","parentType":"","signature":"IID IID_IRequestHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRequestHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRequestSource","package":"druntime","parentType":"","signature":"IID IID_IRequestSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRequestSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRequestState","package":"druntime","parentType":"","signature":"IID IID_IRequestState","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRequestState"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IResolveShellLink","package":"druntime","parentType":"","signature":"IID IID_IResolveShellLink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IResolveShellLink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRichEditOle","package":"druntime","parentType":"","signature":"IID IID_IRichEditOle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRichEditOle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRichEditOleCallback","package":"druntime","parentType":"","signature":"IID IID_IRichEditOleCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRichEditOleCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRootStorage","package":"druntime","parentType":"","signature":"IID IID_IRootStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRootStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IROTData","package":"druntime","parentType":"","signature":"IID IID_IROTData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IROTData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRow","package":"druntime","parentType":"","signature":"IID IID_IRow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowChange","package":"druntime","parentType":"","signature":"IID IID_IRowChange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowChange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowInfo","package":"druntime","parentType":"","signature":"IID IID_IRowInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowPosition","package":"druntime","parentType":"","signature":"IID IID_IRowPosition","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowPosition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowPositionChange","package":"druntime","parentType":"","signature":"IID IID_IRowPositionChange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowPositionChange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowSchemaChange","package":"druntime","parentType":"","signature":"IID IID_IRowSchemaChange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowSchemaChange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowset","package":"druntime","parentType":"","signature":"IID IID_IRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetAsynch","package":"druntime","parentType":"","signature":"IID IID_IRowsetAsynch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetAsynch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetBookmark","package":"druntime","parentType":"","signature":"IID IID_IRowsetBookmark","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetBookmark"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetChange","package":"druntime","parentType":"","signature":"IID IID_IRowsetChange","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetChange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetChapterMember","package":"druntime","parentType":"","signature":"IID IID_IRowsetChapterMember","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetChapterMember"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetCopyRows","package":"druntime","parentType":"","signature":"IID IID_IRowsetCopyRows","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetCopyRows"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetCurrentIndex","package":"druntime","parentType":"","signature":"IID IID_IRowsetCurrentIndex","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetCurrentIndex"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetExactScroll","package":"druntime","parentType":"","signature":"IID IID_IRowsetExactScroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetExactScroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetFind","package":"druntime","parentType":"","signature":"IID IID_IRowsetFind","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetFind"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetIdentity","package":"druntime","parentType":"","signature":"IID IID_IRowsetIdentity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetIdentity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetIndex","package":"druntime","parentType":"","signature":"IID IID_IRowsetIndex","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetIndex"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetInfo","package":"druntime","parentType":"","signature":"IID IID_IRowsetInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetKeys","package":"druntime","parentType":"","signature":"IID IID_IRowsetKeys","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetKeys"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetLocate","package":"druntime","parentType":"","signature":"IID IID_IRowsetLocate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetLocate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetNewRowAfter","package":"druntime","parentType":"","signature":"IID IID_IRowsetNewRowAfter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetNewRowAfter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetNextRowset","package":"druntime","parentType":"","signature":"IID IID_IRowsetNextRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetNextRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetNotify","package":"druntime","parentType":"","signature":"IID IID_IRowsetNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetQueryStatus","package":"druntime","parentType":"","signature":"IID IID_IRowsetQueryStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetQueryStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetRefresh","package":"druntime","parentType":"","signature":"IID IID_IRowsetRefresh","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetRefresh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetResynch","package":"druntime","parentType":"","signature":"IID IID_IRowsetResynch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetResynch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetScroll","package":"druntime","parentType":"","signature":"IID IID_IRowsetScroll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetScroll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetUpdate","package":"druntime","parentType":"","signature":"IID IID_IRowsetUpdate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetUpdate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetView","package":"druntime","parentType":"","signature":"IID IID_IRowsetView","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetWatchAll","package":"druntime","parentType":"","signature":"IID IID_IRowsetWatchAll","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetWatchAll"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetWatchNotify","package":"druntime","parentType":"","signature":"IID IID_IRowsetWatchNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetWatchNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetWatchRegion","package":"druntime","parentType":"","signature":"IID IID_IRowsetWatchRegion","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetWatchRegion"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRowsetWithParameters","package":"druntime","parentType":"","signature":"IID IID_IRowsetWithParameters","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRowsetWithParameters"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcChannel","package":"druntime","parentType":"","signature":"IID IID_IRpcChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcChannelBuffer","package":"druntime","parentType":"","signature":"IID IID_IRpcChannelBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcChannelBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcChannelBuffer2","package":"druntime","parentType":"","signature":"IID IID_IRpcChannelBuffer2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcChannelBuffer2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcChannelBuffer3","package":"druntime","parentType":"","signature":"IID IID_IRpcChannelBuffer3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcChannelBuffer3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcHelper","package":"druntime","parentType":"","signature":"IID IID_IRpcHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcOptions","package":"druntime","parentType":"","signature":"IID IID_IRpcOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcProxy","package":"druntime","parentType":"","signature":"IID IID_IRpcProxy","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcProxy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcProxyBuffer","package":"druntime","parentType":"","signature":"IID IID_IRpcProxyBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcProxyBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcStub","package":"druntime","parentType":"","signature":"IID IID_IRpcStub","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcStub"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcStubBuffer","package":"druntime","parentType":"","signature":"IID IID_IRpcStubBuffer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcStubBuffer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRpcSyntaxNegotiate","package":"druntime","parentType":"","signature":"IID IID_IRpcSyntaxNegotiate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRpcSyntaxNegotiate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTC","package":"druntime","parentType":"","signature":"IID IID_IRTC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCBuddy","package":"druntime","parentType":"","signature":"IID IID_IRTCBuddy","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCBuddy"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCBuddyEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCBuddyEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCBuddyEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCClient","package":"druntime","parentType":"","signature":"IID IID_IRTCClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCClientEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCClientEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCClientEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCClientPresence","package":"druntime","parentType":"","signature":"IID IID_IRTCClientPresence","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCClientPresence"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCClientProvisioning","package":"druntime","parentType":"","signature":"IID IID_IRTCClientProvisioning","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCClientProvisioning"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCCollection","package":"druntime","parentType":"","signature":"IID IID_IRTCCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCEnumBuddies","package":"druntime","parentType":"","signature":"IID IID_IRTCEnumBuddies","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCEnumBuddies"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCEnumParticipants","package":"druntime","parentType":"","signature":"IID IID_IRTCEnumParticipants","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCEnumParticipants"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCEnumProfiles","package":"druntime","parentType":"","signature":"IID IID_IRTCEnumProfiles","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCEnumProfiles"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCEnumWatchers","package":"druntime","parentType":"","signature":"IID IID_IRTCEnumWatchers","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCEnumWatchers"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCEventNotification","package":"druntime","parentType":"","signature":"IID IID_IRTCEventNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCEventNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCIntensityEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCIntensityEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCIntensityEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCMediaEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCMediaEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCMediaEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCMessagingEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCMessagingEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCMessagingEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCParticipant","package":"druntime","parentType":"","signature":"IID IID_IRTCParticipant","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCParticipant"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCParticipantStateChangeEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCParticipantStateChangeEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCParticipantStateChangeEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCPresenceContact","package":"druntime","parentType":"","signature":"IID IID_IRTCPresenceContact","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCPresenceContact"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCProfile","package":"druntime","parentType":"","signature":"IID IID_IRTCProfile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCProfile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCProfileEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCProfileEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCProfileEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCRegistrationStateChangeEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCRegistrationStateChangeEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCRegistrationStateChangeEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCSession","package":"druntime","parentType":"","signature":"IID IID_IRTCSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCSessionOperationCompleteEven","package":"druntime","parentType":"","signature":"IID IID_IRTCSessionOperationCompleteEven","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCSessionOperationCompleteEven"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCSessionStateChangeEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCSessionStateChangeEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCSessionStateChangeEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCWatcher","package":"druntime","parentType":"","signature":"IID IID_IRTCWatcher","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCWatcher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRTCWatcherEvent","package":"druntime","parentType":"","signature":"IID IID_IRTCWatcherEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRTCWatcherEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRunnableObject","package":"druntime","parentType":"","signature":"IID IID_IRunnableObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRunnableObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRunnableTask","package":"druntime","parentType":"","signature":"IID IID_IRunnableTask","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRunnableTask"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IRunningObjectTable","package":"druntime","parentType":"","signature":"IID IID_IRunningObjectTable","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IRunningObjectTable"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScheduleGroup","package":"druntime","parentType":"","signature":"IID IID_IScheduleGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScheduleGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScopedOperations","package":"druntime","parentType":"","signature":"IID IID_IScopedOperations","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScopedOperations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScriptEntry","package":"druntime","parentType":"","signature":"IID IID_IScriptEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScriptEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScriptErrorList","package":"druntime","parentType":"","signature":"IID IID_IScriptErrorList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScriptErrorList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScriptNode","package":"druntime","parentType":"","signature":"IID IID_IScriptNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScriptNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScriptScriptlet","package":"druntime","parentType":"","signature":"IID IID_IScriptScriptlet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScriptScriptlet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IScrollBar","package":"druntime","parentType":"","signature":"IID IID_IScrollBar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IScrollBar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISdo","package":"druntime","parentType":"","signature":"IID IID_ISdo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISdo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISdoCollection","package":"druntime","parentType":"","signature":"IID IID_ISdoCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISdoCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISdoDictionaryOld","package":"druntime","parentType":"","signature":"IID IID_ISdoDictionaryOld","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISdoDictionaryOld"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISdoMachine","package":"druntime","parentType":"","signature":"IID IID_ISdoMachine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISdoMachine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISdoServiceControl","package":"druntime","parentType":"","signature":"IID IID_ISdoServiceControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISdoServiceControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearch","package":"druntime","parentType":"","signature":"IID IID_ISearch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchAssistantOC","package":"druntime","parentType":"","signature":"IID IID_ISearchAssistantOC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchAssistantOC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchAssistantOC2","package":"druntime","parentType":"","signature":"IID IID_ISearchAssistantOC2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchAssistantOC2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchAssistantOC3","package":"druntime","parentType":"","signature":"IID IID_ISearchAssistantOC3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchAssistantOC3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchCommandExt","package":"druntime","parentType":"","signature":"IID IID_ISearchCommandExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchCommandExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchContext","package":"druntime","parentType":"","signature":"IID IID_ISearchContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearches","package":"druntime","parentType":"","signature":"IID IID_ISearches","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearches"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISearchQueryHits","package":"druntime","parentType":"","signature":"IID IID_ISearchQueryHits","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISearchQueryHits"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISecondaryControlChannel","package":"druntime","parentType":"","signature":"IID IID_ISecondaryControlChannel","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISecondaryControlChannel"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISecureUrlHost","package":"druntime","parentType":"","signature":"IID IID_ISecureUrlHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISecureUrlHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISecurityInfo","package":"druntime","parentType":"","signature":"IID IID_ISecurityInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISecurityInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISegment","package":"druntime","parentType":"","signature":"IID IID_ISegment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISegment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISegmentList","package":"druntime","parentType":"","signature":"IID IID_ISegmentList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISegmentList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISegmentListIterator","package":"druntime","parentType":"","signature":"IID IID_ISegmentListIterator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISegmentListIterator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISelectionObject2","package":"druntime","parentType":"","signature":"IID IID_ISelectionObject2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISelectionObject2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISelectionServices","package":"druntime","parentType":"","signature":"IID IID_ISelectionServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISelectionServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISelectionServicesListener","package":"druntime","parentType":"","signature":"IID IID_ISelectionServicesListener","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISelectionServicesListener"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISensLogon","package":"druntime","parentType":"","signature":"IID IID_ISensLogon","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISensLogon"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISensLogon2","package":"druntime","parentType":"","signature":"IID IID_ISensLogon2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISensLogon2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISensNetwork","package":"druntime","parentType":"","signature":"IID IID_ISensNetwork","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISensNetwork"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISensOnNow","package":"druntime","parentType":"","signature":"IID IID_ISensOnNow","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISensOnNow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISequenceNumber","package":"druntime","parentType":"","signature":"IID IID_ISequenceNumber","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISequenceNumber"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISequentialStream","package":"druntime","parentType":"","signature":"IID IID_ISequentialStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISequentialStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IServerSecurity","package":"druntime","parentType":"","signature":"IID IID_IServerSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IServerSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IServiceProvider","package":"druntime","parentType":"","signature":"IID IID_IServiceProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IServiceProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISessionProperties","package":"druntime","parentType":"","signature":"IID IID_ISessionProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISessionProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISetNextStatement","package":"druntime","parentType":"","signature":"IID IID_ISetNextStatement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISetNextStatement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISharedAccessBeacon","package":"druntime","parentType":"","signature":"IID IID_ISharedAccessBeacon","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISharedAccessBeacon"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISharedAccessBeaconFinder","package":"druntime","parentType":"","signature":"IID IID_ISharedAccessBeaconFinder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISharedAccessBeaconFinder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellApp","package":"druntime","parentType":"","signature":"IID IID_IShellApp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellApp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellBrowser","package":"druntime","parentType":"","signature":"IID IID_IShellBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellChangeNotify","package":"druntime","parentType":"","signature":"IID IID_IShellChangeNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellChangeNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellCopyHookA","package":"druntime","parentType":"","signature":"IID IID_IShellCopyHookA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellCopyHookA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellCopyHookW","package":"druntime","parentType":"","signature":"IID IID_IShellCopyHookW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellCopyHookW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDetails","package":"druntime","parentType":"","signature":"IID IID_IShellDetails","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDetails"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDetails3","package":"druntime","parentType":"","signature":"IID IID_IShellDetails3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDetails3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDispatch","package":"druntime","parentType":"","signature":"IID IID_IShellDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDispatch2","package":"druntime","parentType":"","signature":"IID IID_IShellDispatch2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDispatch2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDispatch3","package":"druntime","parentType":"","signature":"IID IID_IShellDispatch3","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDispatch3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellDispatch4","package":"druntime","parentType":"","signature":"IID IID_IShellDispatch4","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellDispatch4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellExecuteHookA","package":"druntime","parentType":"","signature":"IID IID_IShellExecuteHookA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellExecuteHookA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellExecuteHookW","package":"druntime","parentType":"","signature":"IID IID_IShellExecuteHookW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellExecuteHookW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellExtInit","package":"druntime","parentType":"","signature":"IID IID_IShellExtInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellExtInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFavoritesNameSpace","package":"druntime","parentType":"","signature":"IID IID_IShellFavoritesNameSpace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFavoritesNameSpace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFolder","package":"druntime","parentType":"","signature":"IID IID_IShellFolder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFolder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFolder2","package":"druntime","parentType":"","signature":"IID IID_IShellFolder2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFolder2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFolderViewCB","package":"druntime","parentType":"","signature":"IID IID_IShellFolderViewCB","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFolderViewCB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFolderViewDual","package":"druntime","parentType":"","signature":"IID IID_IShellFolderViewDual","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFolderViewDual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellFolderViewDual2","package":"druntime","parentType":"","signature":"IID IID_IShellFolderViewDual2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellFolderViewDual2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellIcon","package":"druntime","parentType":"","signature":"IID IID_IShellIcon","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellIcon"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellIconOverlay","package":"druntime","parentType":"","signature":"IID IID_IShellIconOverlay","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellIconOverlay"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellIconOverlayIdentifier","package":"druntime","parentType":"","signature":"IID IID_IShellIconOverlayIdentifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellIconOverlayIdentifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellImageData","package":"druntime","parentType":"","signature":"IID IID_IShellImageData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellImageData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellImageDataAbort","package":"druntime","parentType":"","signature":"IID IID_IShellImageDataAbort","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellImageDataAbort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellImageDataFactory","package":"druntime","parentType":"","signature":"IID IID_IShellImageDataFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellImageDataFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellLinkA","package":"druntime","parentType":"","signature":"IID IID_IShellLinkA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellLinkA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellLinkDataList","package":"druntime","parentType":"","signature":"IID IID_IShellLinkDataList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellLinkDataList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellLinkDual","package":"druntime","parentType":"","signature":"IID IID_IShellLinkDual","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellLinkDual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellLinkDual2","package":"druntime","parentType":"","signature":"IID IID_IShellLinkDual2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellLinkDual2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellLinkW","package":"druntime","parentType":"","signature":"IID IID_IShellLinkW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellLinkW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellNameSpace","package":"druntime","parentType":"","signature":"IID IID_IShellNameSpace","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellNameSpace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellPropSheetExt","package":"druntime","parentType":"","signature":"IID IID_IShellPropSheetExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellPropSheetExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellUIHelper","package":"druntime","parentType":"","signature":"IID IID_IShellUIHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellUIHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellView","package":"druntime","parentType":"","signature":"IID IID_IShellView","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellView"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellView2","package":"druntime","parentType":"","signature":"IID IID_IShellView2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellView2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IShellWindows","package":"druntime","parentType":"","signature":"IID IID_IShellWindows","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IShellWindows"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISimpleCommandCreator","package":"druntime","parentType":"","signature":"IID IID_ISimpleCommandCreator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISimpleCommandCreator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISimpleConnectionPoint","package":"druntime","parentType":"","signature":"IID IID_ISimpleConnectionPoint","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISimpleConnectionPoint"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISimpleFrameSite","package":"druntime","parentType":"","signature":"IID IID_ISimpleFrameSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISimpleFrameSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISliderBar","package":"druntime","parentType":"","signature":"IID IID_ISliderBar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISliderBar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISniffStream","package":"druntime","parentType":"","signature":"IID IID_ISniffStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISniffStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISOAPRequest","package":"druntime","parentType":"","signature":"IID IID_ISOAPRequest","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISOAPRequest"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISoftDistExt","package":"druntime","parentType":"","signature":"IID IID_ISoftDistExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISoftDistExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISourcesRowset","package":"druntime","parentType":"","signature":"IID IID_ISourcesRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISourcesRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISpecialSystemProperties","package":"druntime","parentType":"","signature":"IID IID_ISpecialSystemProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISpecialSystemProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISpecifyPropertyPages","package":"druntime","parentType":"","signature":"IID IID_ISpecifyPropertyPages","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISpecifyPropertyPages"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISpinButton","package":"druntime","parentType":"","signature":"IID IID_ISpinButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISpinButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISQLErrorInfo","package":"druntime","parentType":"","signature":"IID IID_ISQLErrorInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISQLErrorInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStandardActivator","package":"druntime","parentType":"","signature":"IID IID_IStandardActivator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStandardActivator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStandardInfo","package":"druntime","parentType":"","signature":"IID IID_IStandardInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStandardInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStaticPortMapping","package":"druntime","parentType":"","signature":"IID IID_IStaticPortMapping","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStaticPortMapping"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStaticPortMappingCollection","package":"druntime","parentType":"","signature":"IID IID_IStaticPortMappingCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStaticPortMappingCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStats","package":"druntime","parentType":"","signature":"IID IID_IStats","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStats"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStdMarshalInfo","package":"druntime","parentType":"","signature":"IID IID_IStdMarshalInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStdMarshalInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStemmer","package":"druntime","parentType":"","signature":"IID IID_IStemmer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStemmer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStemSink","package":"druntime","parentType":"","signature":"IID IID_IStemSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStemSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStorage","package":"druntime","parentType":"","signature":"IID IID_IStorage","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStorage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStream","package":"druntime","parentType":"","signature":"IID IID_IStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStub","package":"druntime","parentType":"","signature":"IID IID_IStub","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStub"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IStubManager","package":"druntime","parentType":"","signature":"IID IID_IStubManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IStubManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubDivisionProvider","package":"druntime","parentType":"","signature":"IID IID_ISubDivisionProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubDivisionProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionAgentControl","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionAgentControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionAgentControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionAgentEvents","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionAgentEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionAgentEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionAgentShellExt","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionAgentShellExt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionAgentShellExt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionItem","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionMgr","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionMgr2","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionMgr2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionMgr2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionMgrPriv","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionMgrPriv","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionMgrPriv"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISubscriptionThrottler","package":"druntime","parentType":"","signature":"IID IID_ISubscriptionThrottler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISubscriptionThrottler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISupportErrorInfo","package":"druntime","parentType":"","signature":"IID IID_ISupportErrorInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISupportErrorInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISurrogate","package":"druntime","parentType":"","signature":"IID IID_ISurrogate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISurrogate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemDateTime","package":"druntime","parentType":"","signature":"IID IID_ISWbemDateTime","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemDateTime"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemEventSource","package":"druntime","parentType":"","signature":"IID IID_ISWbemEventSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemEventSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemLastError","package":"druntime","parentType":"","signature":"IID IID_ISWbemLastError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemLastError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemLocator","package":"druntime","parentType":"","signature":"IID IID_ISWbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemMethod","package":"druntime","parentType":"","signature":"IID IID_ISWbemMethod","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemMethod"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemMethodSet","package":"druntime","parentType":"","signature":"IID IID_ISWbemMethodSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemMethodSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemNamedValue","package":"druntime","parentType":"","signature":"IID IID_ISWbemNamedValue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemNamedValue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemNamedValueSet","package":"druntime","parentType":"","signature":"IID IID_ISWbemNamedValueSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemNamedValueSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemObject","package":"druntime","parentType":"","signature":"IID IID_ISWbemObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemObjectEx","package":"druntime","parentType":"","signature":"IID IID_ISWbemObjectEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemObjectEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemObjectPath","package":"druntime","parentType":"","signature":"IID IID_ISWbemObjectPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemObjectPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemObjectSet","package":"druntime","parentType":"","signature":"IID IID_ISWbemObjectSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemObjectSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemPrivilege","package":"druntime","parentType":"","signature":"IID IID_ISWbemPrivilege","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemPrivilege"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemPrivilegeSet","package":"druntime","parentType":"","signature":"IID IID_ISWbemPrivilegeSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemPrivilegeSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemProperty","package":"druntime","parentType":"","signature":"IID IID_ISWbemProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemPropertySet","package":"druntime","parentType":"","signature":"IID IID_ISWbemPropertySet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemPropertySet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemQualifier","package":"druntime","parentType":"","signature":"IID IID_ISWbemQualifier","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemQualifier"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemQualifierSet","package":"druntime","parentType":"","signature":"IID IID_ISWbemQualifierSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemQualifierSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemRefreshableItem","package":"druntime","parentType":"","signature":"IID IID_ISWbemRefreshableItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemRefreshableItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemRefresher","package":"druntime","parentType":"","signature":"IID IID_ISWbemRefresher","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemRefresher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemSecurity","package":"druntime","parentType":"","signature":"IID IID_ISWbemSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemServices","package":"druntime","parentType":"","signature":"IID IID_ISWbemServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemServicesEx","package":"druntime","parentType":"","signature":"IID IID_ISWbemServicesEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemServicesEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISWbemSink","package":"druntime","parentType":"","signature":"IID IID_ISWbemSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISWbemSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronize","package":"druntime","parentType":"","signature":"IID IID_ISynchronize","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronize"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronizeContainer","package":"druntime","parentType":"","signature":"IID IID_ISynchronizeContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronizeContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronizedCallBack","package":"druntime","parentType":"","signature":"IID IID_ISynchronizedCallBack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronizedCallBack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronizeEvent","package":"druntime","parentType":"","signature":"IID IID_ISynchronizeEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronizeEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronizeHandle","package":"druntime","parentType":"","signature":"IID IID_ISynchronizeHandle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronizeHandle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISynchronizeMutex","package":"druntime","parentType":"","signature":"IID IID_ISynchronizeMutex","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISynchronizeMutex"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncMgrEnumItems","package":"druntime","parentType":"","signature":"IID IID_ISyncMgrEnumItems","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncMgrEnumItems"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncMgrRegisterCSC","package":"druntime","parentType":"","signature":"IID IID_ISyncMgrRegisterCSC","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncMgrRegisterCSC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncMgrSynchronizeInvoke","package":"druntime","parentType":"","signature":"IID IID_ISyncMgrSynchronizeInvoke","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncMgrSynchronizeInvoke"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncSchedule","package":"druntime","parentType":"","signature":"IID IID_ISyncSchedule","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncSchedule"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncScheduleMgr","package":"druntime","parentType":"","signature":"IID IID_ISyncScheduleMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncScheduleMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ISyncSchedulep","package":"druntime","parentType":"","signature":"IID IID_ISyncSchedulep","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ISyncSchedulep"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITableCreation","package":"druntime","parentType":"","signature":"IID IID_ITableCreation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITableCreation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITableDefinition","package":"druntime","parentType":"","signature":"IID IID_ITableDefinition","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITableDefinition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITableDefinitionWithConstraints","package":"druntime","parentType":"","signature":"IID IID_ITableDefinitionWithConstraints","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITableDefinitionWithConstraints"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITableRename","package":"druntime","parentType":"","signature":"IID IID_ITableRename","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITableRename"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITACDGroup","package":"druntime","parentType":"","signature":"IID IID_ITACDGroup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITACDGroup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITACDGroupEvent","package":"druntime","parentType":"","signature":"IID IID_ITACDGroupEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITACDGroupEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddress","package":"druntime","parentType":"","signature":"IID IID_ITAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddress2","package":"druntime","parentType":"","signature":"IID IID_ITAddress2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddress2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddressCapabilities","package":"druntime","parentType":"","signature":"IID IID_ITAddressCapabilities","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddressCapabilities"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddressDeviceSpecificEvent","package":"druntime","parentType":"","signature":"IID IID_ITAddressDeviceSpecificEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddressDeviceSpecificEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddressEvent","package":"druntime","parentType":"","signature":"IID IID_ITAddressEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddressEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddressTranslation","package":"druntime","parentType":"","signature":"IID IID_ITAddressTranslation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddressTranslation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAddressTranslationInfo","package":"druntime","parentType":"","signature":"IID IID_ITAddressTranslationInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAddressTranslationInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgent","package":"druntime","parentType":"","signature":"IID IID_ITAgent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgentEvent","package":"druntime","parentType":"","signature":"IID IID_ITAgentEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgentEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgentHandler","package":"druntime","parentType":"","signature":"IID IID_ITAgentHandler","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgentHandler"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgentHandlerEvent","package":"druntime","parentType":"","signature":"IID IID_ITAgentHandlerEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgentHandlerEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgentSession","package":"druntime","parentType":"","signature":"IID IID_ITAgentSession","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgentSession"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAgentSessionEvent","package":"druntime","parentType":"","signature":"IID IID_ITAgentSessionEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAgentSessionEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAllocatorProperties","package":"druntime","parentType":"","signature":"IID IID_ITAllocatorProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAllocatorProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAMMediaFormat","package":"druntime","parentType":"","signature":"IID IID_ITAMMediaFormat","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAMMediaFormat"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetContainer","package":"druntime","parentType":"","signature":"IID IID_ITargetContainer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetContainer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetEmbedding","package":"druntime","parentType":"","signature":"IID IID_ITargetEmbedding","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetEmbedding"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetFrame","package":"druntime","parentType":"","signature":"IID IID_ITargetFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetFrame2","package":"druntime","parentType":"","signature":"IID IID_ITargetFrame2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetFrame2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetFramePriv","package":"druntime","parentType":"","signature":"IID IID_ITargetFramePriv","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetFramePriv"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetNotify","package":"druntime","parentType":"","signature":"IID IID_ITargetNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITargetNotify2","package":"druntime","parentType":"","signature":"IID IID_ITargetNotify2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITargetNotify2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskAnalyzeCluster","package":"druntime","parentType":"","signature":"IID IID_ITaskAnalyzeCluster","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskAnalyzeCluster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskbarList","package":"druntime","parentType":"","signature":"IID IID_ITaskbarList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskbarList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskbarList2","package":"druntime","parentType":"","signature":"IID IID_ITaskbarList2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskbarList2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskCommitClusterChanges","package":"druntime","parentType":"","signature":"IID IID_ITaskCommitClusterChanges","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskCommitClusterChanges"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskCompareAndPushInformation","package":"druntime","parentType":"","signature":"IID IID_ITaskCompareAndPushInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskCompareAndPushInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskGatherClusterInfo","package":"druntime","parentType":"","signature":"IID IID_ITaskGatherClusterInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskGatherClusterInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskGatherInformation","package":"druntime","parentType":"","signature":"IID IID_ITaskGatherInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskGatherInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskGatherNodeInfo","package":"druntime","parentType":"","signature":"IID IID_ITaskGatherNodeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskGatherNodeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskGetDomains","package":"druntime","parentType":"","signature":"IID IID_ITaskGetDomains","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskGetDomains"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskGetDomainsCallback","package":"druntime","parentType":"","signature":"IID IID_ITaskGetDomainsCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskGetDomainsCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskLoginDomain","package":"druntime","parentType":"","signature":"IID IID_ITaskLoginDomain","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskLoginDomain"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskLoginDomainCallback","package":"druntime","parentType":"","signature":"IID IID_ITaskLoginDomainCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskLoginDomainCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskManager","package":"druntime","parentType":"","signature":"IID IID_ITaskManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskPollingCallback","package":"druntime","parentType":"","signature":"IID IID_ITaskPollingCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskPollingCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITaskVerifyIPAddress","package":"druntime","parentType":"","signature":"IID IID_ITaskVerifyIPAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITaskVerifyIPAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITASRTerminalEvent","package":"druntime","parentType":"","signature":"IID IID_ITASRTerminalEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITASRTerminalEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAttributeList","package":"druntime","parentType":"","signature":"IID IID_ITAttributeList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAttributeList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAudioDeviceControl","package":"druntime","parentType":"","signature":"IID IID_ITAudioDeviceControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAudioDeviceControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAudioSettings","package":"druntime","parentType":"","signature":"IID IID_ITAudioSettings","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAudioSettings"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITAutomatedPhoneControl","package":"druntime","parentType":"","signature":"IID IID_ITAutomatedPhoneControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITAutomatedPhoneControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITBasicAudioTerminal","package":"druntime","parentType":"","signature":"IID IID_ITBasicAudioTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITBasicAudioTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITBasicCallControl","package":"druntime","parentType":"","signature":"IID IID_ITBasicCallControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITBasicCallControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITBasicCallControl2","package":"druntime","parentType":"","signature":"IID IID_ITBasicCallControl2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITBasicCallControl2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallHub","package":"druntime","parentType":"","signature":"IID IID_ITCallHub","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallHub"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallHubEvent","package":"druntime","parentType":"","signature":"IID IID_ITCallHubEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallHubEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallInfo","package":"druntime","parentType":"","signature":"IID IID_ITCallInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallInfo2","package":"druntime","parentType":"","signature":"IID IID_ITCallInfo2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallInfo2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallInfoChangeEvent","package":"druntime","parentType":"","signature":"IID IID_ITCallInfoChangeEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallInfoChangeEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallingCard","package":"druntime","parentType":"","signature":"IID IID_ITCallingCard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallingCard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallMediaEvent","package":"druntime","parentType":"","signature":"IID IID_ITCallMediaEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallMediaEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallNotificationEvent","package":"druntime","parentType":"","signature":"IID IID_ITCallNotificationEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallNotificationEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallQualityControl","package":"druntime","parentType":"","signature":"IID IID_ITCallQualityControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallQualityControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCallStateEvent","package":"druntime","parentType":"","signature":"IID IID_ITCallStateEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCallStateEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCollection","package":"druntime","parentType":"","signature":"IID IID_ITCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCollection2","package":"druntime","parentType":"","signature":"IID IID_ITCollection2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCollection2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITConferenceBlob","package":"druntime","parentType":"","signature":"IID IID_ITConferenceBlob","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITConferenceBlob"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITConnection","package":"druntime","parentType":"","signature":"IID IID_ITConnection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITConnection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITcpipProperties","package":"druntime","parentType":"","signature":"IID IID_ITcpipProperties","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITcpipProperties"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITCustomTone","package":"druntime","parentType":"","signature":"IID IID_ITCustomTone","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITCustomTone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDetectTone","package":"druntime","parentType":"","signature":"IID IID_ITDetectTone","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDetectTone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDigitDetectionEvent","package":"druntime","parentType":"","signature":"IID IID_ITDigitDetectionEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDigitDetectionEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDigitGenerationEvent","package":"druntime","parentType":"","signature":"IID IID_ITDigitGenerationEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDigitGenerationEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDigitsGatheredEvent","package":"druntime","parentType":"","signature":"IID IID_ITDigitsGatheredEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDigitsGatheredEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDirectory","package":"druntime","parentType":"","signature":"IID IID_ITDirectory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDirectory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDirectoryObject","package":"druntime","parentType":"","signature":"IID IID_ITDirectoryObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDirectoryObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDirectoryObjectConference","package":"druntime","parentType":"","signature":"IID IID_ITDirectoryObjectConference","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDirectoryObjectConference"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDirectoryObjectUser","package":"druntime","parentType":"","signature":"IID IID_ITDirectoryObjectUser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDirectoryObjectUser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITDispatchMapper","package":"druntime","parentType":"","signature":"IID IID_ITDispatchMapper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITDispatchMapper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITemplatePrinter","package":"druntime","parentType":"","signature":"IID IID_ITemplatePrinter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITemplatePrinter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITemplatePrinter2","package":"druntime","parentType":"","signature":"IID IID_ITemplatePrinter2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITemplatePrinter2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITFileTerminalEvent","package":"druntime","parentType":"","signature":"IID IID_ITFileTerminalEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITFileTerminalEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITFileTrack","package":"druntime","parentType":"","signature":"IID IID_ITFileTrack","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITFileTrack"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITfLangBarAddIn","package":"druntime","parentType":"","signature":"IID IID_ITfLangBarAddIn","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITfLangBarAddIn"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITFormatControl","package":"druntime","parentType":"","signature":"IID IID_ITFormatControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITFormatControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITForwardInformation","package":"druntime","parentType":"","signature":"IID IID_ITForwardInformation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITForwardInformation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITForwardInformation2","package":"druntime","parentType":"","signature":"IID IID_ITForwardInformation2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITForwardInformation2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITfSpeechUIServer","package":"druntime","parentType":"","signature":"IID IID_ITfSpeechUIServer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITfSpeechUIServer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IThumbnailCapture","package":"druntime","parentType":"","signature":"IID IID_IThumbnailCapture","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IThumbnailCapture"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IThumbnailExtractor","package":"druntime","parentType":"","signature":"IID IID_IThumbnailExtractor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IThumbnailExtractor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITILSConfig","package":"druntime","parentType":"","signature":"IID IID_ITILSConfig","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITILSConfig"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEActiveElementCollection","package":"druntime","parentType":"","signature":"IID IID_ITIMEActiveElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEActiveElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITimeAndNoticeControl","package":"druntime","parentType":"","signature":"IID IID_ITimeAndNoticeControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITimeAndNoticeControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEAnimationElement","package":"druntime","parentType":"","signature":"IID IID_ITIMEAnimationElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEAnimationElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEAnimationElement2","package":"druntime","parentType":"","signature":"IID IID_ITIMEAnimationElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEAnimationElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEBodyElement","package":"druntime","parentType":"","signature":"IID IID_ITIMEBodyElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEBodyElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEDMusicPlayerObject","package":"druntime","parentType":"","signature":"IID IID_ITIMEDMusicPlayerObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEDMusicPlayerObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEDVDPlayerObject","package":"druntime","parentType":"","signature":"IID IID_ITIMEDVDPlayerObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEDVDPlayerObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEElement","package":"druntime","parentType":"","signature":"IID IID_ITIMEElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEElementCollection","package":"druntime","parentType":"","signature":"IID IID_ITIMEElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEFactory","package":"druntime","parentType":"","signature":"IID IID_ITIMEFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaElement","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaElement2","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaPlayer","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaPlayer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaPlayer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaPlayerAudio","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaPlayerAudio","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaPlayerAudio"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaPlayerControl","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaPlayerControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaPlayerControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaPlayerNetwork","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaPlayerNetwork","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaPlayerNetwork"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEMediaPlayerSite","package":"druntime","parentType":"","signature":"IID IID_ITIMEMediaPlayerSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEMediaPlayerSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEPlayItem","package":"druntime","parentType":"","signature":"IID IID_ITIMEPlayItem","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEPlayItem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEPlayItem2","package":"druntime","parentType":"","signature":"IID IID_ITIMEPlayItem2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEPlayItem2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEPlayList","package":"druntime","parentType":"","signature":"IID IID_ITIMEPlayList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEPlayList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITimer","package":"druntime","parentType":"","signature":"IID IID_ITimer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITimer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITimerService","package":"druntime","parentType":"","signature":"IID IID_ITimerService","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITimerService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITimerSink","package":"druntime","parentType":"","signature":"IID IID_ITimerSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITimerSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMEState","package":"druntime","parentType":"","signature":"IID IID_ITIMEState","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMEState"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITIMETransitionElement","package":"druntime","parentType":"","signature":"IID IID_ITIMETransitionElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITIMETransitionElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLegacyAddressMediaControl","package":"druntime","parentType":"","signature":"IID IID_ITLegacyAddressMediaControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLegacyAddressMediaControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLegacyAddressMediaControl2","package":"druntime","parentType":"","signature":"IID IID_ITLegacyAddressMediaControl2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLegacyAddressMediaControl2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLegacyCallMediaControl","package":"druntime","parentType":"","signature":"IID IID_ITLegacyCallMediaControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLegacyCallMediaControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLegacyCallMediaControl2","package":"druntime","parentType":"","signature":"IID IID_ITLegacyCallMediaControl2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLegacyCallMediaControl2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLegacyWaveSupport","package":"druntime","parentType":"","signature":"IID IID_ITLegacyWaveSupport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLegacyWaveSupport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLocalParticipant","package":"druntime","parentType":"","signature":"IID IID_ITLocalParticipant","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLocalParticipant"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITLocationInfo","package":"druntime","parentType":"","signature":"IID IID_ITLocationInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITLocationInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMedia","package":"druntime","parentType":"","signature":"IID IID_ITMedia","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMedia"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMediaCollection","package":"druntime","parentType":"","signature":"IID IID_ITMediaCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMediaCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMediaControl","package":"druntime","parentType":"","signature":"IID IID_ITMediaControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMediaControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMediaPlayback","package":"druntime","parentType":"","signature":"IID IID_ITMediaPlayback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMediaPlayback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMediaRecord","package":"druntime","parentType":"","signature":"IID IID_ITMediaRecord","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMediaRecord"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMediaSupport","package":"druntime","parentType":"","signature":"IID IID_ITMediaSupport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMediaSupport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMSPAddress","package":"druntime","parentType":"","signature":"IID IID_ITMSPAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMSPAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITMultiTrackTerminal","package":"druntime","parentType":"","signature":"IID IID_ITMultiTrackTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITMultiTrackTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITParticipant","package":"druntime","parentType":"","signature":"IID IID_ITParticipant","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITParticipant"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITParticipantControl","package":"druntime","parentType":"","signature":"IID IID_ITParticipantControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITParticipantControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITParticipantEvent","package":"druntime","parentType":"","signature":"IID IID_ITParticipantEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITParticipantEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITParticipantSubStreamControl","package":"druntime","parentType":"","signature":"IID IID_ITParticipantSubStreamControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITParticipantSubStreamControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPhone","package":"druntime","parentType":"","signature":"IID IID_ITPhone","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPhone"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPhoneDeviceSpecificEvent","package":"druntime","parentType":"","signature":"IID IID_ITPhoneDeviceSpecificEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPhoneDeviceSpecificEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPhoneEvent","package":"druntime","parentType":"","signature":"IID IID_ITPhoneEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPhoneEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalClassInfo","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalClassInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalClassInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalClassRegistrat","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalClassRegistrat","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalClassRegistrat"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalEventSink","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalEventSinkRegis","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalEventSinkRegis","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalEventSinkRegis"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalInitializatio","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalInitializatio","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalInitializatio"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalSuperclassInf","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalSuperclassInf","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalSuperclassInf"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPluggableTerminalSuperclassRegi","package":"druntime","parentType":"","signature":"IID IID_ITPluggableTerminalSuperclassRegi","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPluggableTerminalSuperclassRegi"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITPrivateEvent","package":"druntime","parentType":"","signature":"IID IID_ITPrivateEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITPrivateEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITQOSApplicationID","package":"druntime","parentType":"","signature":"IID IID_ITQOSApplicationID","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITQOSApplicationID"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITQOSEvent","package":"druntime","parentType":"","signature":"IID IID_ITQOSEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITQOSEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITQueue","package":"druntime","parentType":"","signature":"IID IID_ITQueue","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITQueue"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITQueueEvent","package":"druntime","parentType":"","signature":"IID IID_ITQueueEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITQueueEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrackFile","package":"druntime","parentType":"","signature":"IID IID_ITrackFile","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrackFile"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransaction","package":"druntime","parentType":"","signature":"IID IID_ITransaction","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransaction"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransaction2","package":"druntime","parentType":"","signature":"IID IID_ITransaction2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransaction2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionCloner","package":"druntime","parentType":"","signature":"IID IID_ITransactionCloner","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionCloner"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionDispenser","package":"druntime","parentType":"","signature":"IID IID_ITransactionDispenser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionDispenser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionJoin","package":"druntime","parentType":"","signature":"IID IID_ITransactionJoin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionJoin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionLocal","package":"druntime","parentType":"","signature":"IID IID_ITransactionLocal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionLocal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionObject","package":"druntime","parentType":"","signature":"IID IID_ITransactionObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionOptions","package":"druntime","parentType":"","signature":"IID IID_ITransactionOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransactionOutcomeEvents","package":"druntime","parentType":"","signature":"IID IID_ITransactionOutcomeEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransactionOutcomeEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITransmt","package":"druntime","parentType":"","signature":"IID IID_ITransmt","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITransmt"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelEntry","package":"druntime","parentType":"","signature":"IID IID_ITravelEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLog","package":"druntime","parentType":"","signature":"IID IID_ITravelLog","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLog"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLogClient","package":"druntime","parentType":"","signature":"IID IID_ITravelLogClient","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLogClient"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLogClient2","package":"druntime","parentType":"","signature":"IID IID_ITravelLogClient2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLogClient2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLogEntry","package":"druntime","parentType":"","signature":"IID IID_ITravelLogEntry","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLogEntry"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLogEx","package":"druntime","parentType":"","signature":"IID IID_ITravelLogEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLogEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITravelLogStg","package":"druntime","parentType":"","signature":"IID IID_ITravelLogStg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITravelLogStg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITRendezvous","package":"druntime","parentType":"","signature":"IID IID_ITRendezvous","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITRendezvous"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITRequest","package":"druntime","parentType":"","signature":"IID IID_ITRequest","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITRequest"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITRequestEvent","package":"druntime","parentType":"","signature":"IID IID_ITRequestEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITRequestEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITridentEventSink","package":"druntime","parentType":"","signature":"IID IID_ITridentEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITridentEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrkForceOwnership","package":"druntime","parentType":"","signature":"IID IID_ITrkForceOwnership","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrkForceOwnership"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrkRestoreNotify","package":"druntime","parentType":"","signature":"IID IID_ITrkRestoreNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrkRestoreNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrkRestoreParser","package":"druntime","parentType":"","signature":"IID IID_ITrkRestoreParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrkRestoreParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrusteeAdmin","package":"druntime","parentType":"","signature":"IID IID_ITrusteeAdmin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrusteeAdmin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITrusteeGroupAdmin","package":"druntime","parentType":"","signature":"IID IID_ITrusteeGroupAdmin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITrusteeGroupAdmin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITScriptableAudioFormat","package":"druntime","parentType":"","signature":"IID IID_ITScriptableAudioFormat","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITScriptableAudioFormat"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITSdp","package":"druntime","parentType":"","signature":"IID IID_ITSdp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITSdp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITStaticAudioTerminal","package":"druntime","parentType":"","signature":"IID IID_ITStaticAudioTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITStaticAudioTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITStream","package":"druntime","parentType":"","signature":"IID IID_ITStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITStreamControl","package":"druntime","parentType":"","signature":"IID IID_ITStreamControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITStreamControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITStreamQualityControl","package":"druntime","parentType":"","signature":"IID IID_ITStreamQualityControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITStreamQualityControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITSubStream","package":"druntime","parentType":"","signature":"IID IID_ITSubStream","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITSubStream"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITSubStreamControl","package":"druntime","parentType":"","signature":"IID IID_ITSubStreamControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITSubStreamControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPI","package":"druntime","parentType":"","signature":"IID IID_ITTAPI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPI2","package":"druntime","parentType":"","signature":"IID IID_ITTAPI2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPI2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPICallCenter","package":"druntime","parentType":"","signature":"IID IID_ITTAPICallCenter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPICallCenter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPIEventNotification","package":"druntime","parentType":"","signature":"IID IID_ITTAPIEventNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPIEventNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPIObjectEvent","package":"druntime","parentType":"","signature":"IID IID_ITTAPIObjectEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPIObjectEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTAPIObjectEvent2","package":"druntime","parentType":"","signature":"IID IID_ITTAPIObjectEvent2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTAPIObjectEvent2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminal","package":"druntime","parentType":"","signature":"IID IID_ITTerminal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminalControl","package":"druntime","parentType":"","signature":"IID IID_ITTerminalControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminalControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminalManager","package":"druntime","parentType":"","signature":"IID IID_ITTerminalManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminalManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminalManager2","package":"druntime","parentType":"","signature":"IID IID_ITTerminalManager2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminalManager2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminalSupport","package":"druntime","parentType":"","signature":"IID IID_ITTerminalSupport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminalSupport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTerminalSupport2","package":"druntime","parentType":"","signature":"IID IID_ITTerminalSupport2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTerminalSupport2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTime","package":"druntime","parentType":"","signature":"IID IID_ITTime","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTime"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTimeCollection","package":"druntime","parentType":"","signature":"IID IID_ITTimeCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTimeCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITToneDetectionEvent","package":"druntime","parentType":"","signature":"IID IID_ITToneDetectionEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITToneDetectionEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITToneTerminalEvent","package":"druntime","parentType":"","signature":"IID IID_ITToneTerminalEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITToneTerminalEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITTTSTerminalEvent","package":"druntime","parentType":"","signature":"IID IID_ITTTSTerminalEvent","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITTTSTerminalEvent"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeChangeEvents","package":"druntime","parentType":"","signature":"IID IID_ITypeChangeEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeChangeEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeComp","package":"druntime","parentType":"","signature":"IID IID_ITypeComp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeComp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeFactory","package":"druntime","parentType":"","signature":"IID IID_ITypeFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeInfo","package":"druntime","parentType":"","signature":"IID IID_ITypeInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeInfo2","package":"druntime","parentType":"","signature":"IID IID_ITypeInfo2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeInfo2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeLib","package":"druntime","parentType":"","signature":"IID IID_ITypeLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeLib2","package":"druntime","parentType":"","signature":"IID IID_ITypeLib2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeLib2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_ITypeMarshal","package":"druntime","parentType":"","signature":"IID IID_ITypeMarshal","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_ITypeMarshal"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUmiADSIPrivate","package":"druntime","parentType":"","signature":"IID IID_IUmiADSIPrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUmiADSIPrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUniformResourceLocatorA","package":"druntime","parentType":"","signature":"IID IID_IUniformResourceLocatorA","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUniformResourceLocatorA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUniformResourceLocatorW","package":"druntime","parentType":"","signature":"IID IID_IUniformResourceLocatorW","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUniformResourceLocatorW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUnknown","package":"druntime","parentType":"","signature":"IID IID_IUnknown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUnknown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUnsecuredApartment","package":"druntime","parentType":"","signature":"IID IID_IUnsecuredApartment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUnsecuredApartment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDescriptionDocument","package":"druntime","parentType":"","signature":"IID IID_IUPnPDescriptionDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDescriptionDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDescriptionDocumentCallback","package":"druntime","parentType":"","signature":"IID IID_IUPnPDescriptionDocumentCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDescriptionDocumentCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDevice","package":"druntime","parentType":"","signature":"IID IID_IUPnPDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceControl","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceDocumentAccess","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceDocumentAccess","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceDocumentAccess"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceFinder","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceFinder","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceFinder"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceFinderAddCallbackWithI","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceFinderAddCallbackWithI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceFinderAddCallbackWithI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceFinderCallback","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceFinderCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceFinderCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceHostICSSupport","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceHostICSSupport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceHostICSSupport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceHostSetup","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceHostSetup","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceHostSetup"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDeviceProvider","package":"druntime","parentType":"","signature":"IID IID_IUPnPDeviceProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDeviceProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPDevices","package":"druntime","parentType":"","signature":"IID IID_IUPnPDevices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPDevices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPEventSink","package":"druntime","parentType":"","signature":"IID IID_IUPnPEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPEventSource","package":"druntime","parentType":"","signature":"IID IID_IUPnPEventSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPEventSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPNAT","package":"druntime","parentType":"","signature":"IID IID_IUPnPNAT","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPNAT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPPrivateCallbackHelper","package":"druntime","parentType":"","signature":"IID IID_IUPnPPrivateCallbackHelper","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPPrivateCallbackHelper"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPPrivateDocumentCallbackHelp","package":"druntime","parentType":"","signature":"IID IID_IUPnPPrivateDocumentCallbackHelp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPPrivateDocumentCallbackHelp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPPrivateServiceHelper2","package":"druntime","parentType":"","signature":"IID IID_IUPnPPrivateServiceHelper2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPPrivateServiceHelper2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPRegistrar","package":"druntime","parentType":"","signature":"IID IID_IUPnPRegistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPRegistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPReregistrar","package":"druntime","parentType":"","signature":"IID IID_IUPnPReregistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPReregistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPService","package":"druntime","parentType":"","signature":"IID IID_IUPnPService","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPService"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPServiceCallback","package":"druntime","parentType":"","signature":"IID IID_IUPnPServiceCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPServiceCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPServiceCallbackPrivate","package":"druntime","parentType":"","signature":"IID IID_IUPnPServiceCallbackPrivate","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPServiceCallbackPrivate"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUPnPServices","package":"druntime","parentType":"","signature":"IID IID_IUPnPServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUPnPServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUrlHistoryNotify","package":"druntime","parentType":"","signature":"IID IID_IUrlHistoryNotify","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUrlHistoryNotify"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUrlHistoryStg","package":"druntime","parentType":"","signature":"IID IID_IUrlHistoryStg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUrlHistoryStg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUrlHistoryStg2","package":"druntime","parentType":"","signature":"IID IID_IUrlHistoryStg2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUrlHistoryStg2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUrlMon","package":"druntime","parentType":"","signature":"IID IID_IUrlMon","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUrlMon"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IURLSearchHook","package":"druntime","parentType":"","signature":"IID IID_IURLSearchHook","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IURLSearchHook"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IURLSearchHook2","package":"druntime","parentType":"","signature":"IID IID_IURLSearchHook2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IURLSearchHook2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUrlTrackingStg","package":"druntime","parentType":"","signature":"IID IID_IUrlTrackingStg","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUrlTrackingStg"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUserEventTimer","package":"druntime","parentType":"","signature":"IID IID_IUserEventTimer","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUserEventTimer"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUserEventTimerCallback","package":"druntime","parentType":"","signature":"IID IID_IUserEventTimerCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUserEventTimerCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUserNotification","package":"druntime","parentType":"","signature":"IID IID_IUserNotification","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUserNotification"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IUtilityButton","package":"druntime","parentType":"","signature":"IID IID_IUtilityButton","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IUtilityButton"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IVariantChangeType","package":"druntime","parentType":"","signature":"IID IID_IVariantChangeType","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IVariantChangeType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IVersionHost","package":"druntime","parentType":"","signature":"IID IID_IVersionHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IVersionHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IVersionVector","package":"druntime","parentType":"","signature":"IID IID_IVersionVector","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IVersionVector"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewChapter","package":"druntime","parentType":"","signature":"IID IID_IViewChapter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewChapter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewFilter","package":"druntime","parentType":"","signature":"IID IID_IViewFilter","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewFilter"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewObject","package":"druntime","parentType":"","signature":"IID IID_IViewObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewObject2","package":"druntime","parentType":"","signature":"IID IID_IViewObject2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewObject2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewObjectEx","package":"druntime","parentType":"","signature":"IID IID_IViewObjectEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewObjectEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewRowset","package":"druntime","parentType":"","signature":"IID IID_IViewRowset","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewRowset"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IViewSort","package":"druntime","parentType":"","signature":"IID IID_IViewSort","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IViewSort"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IVirusScanEngine","package":"druntime","parentType":"","signature":"IID IID_IVirusScanEngine","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IVirusScanEngine"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IVirusScanner","package":"druntime","parentType":"","signature":"IID IID_IVirusScanner","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IVirusScanner"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWaitMultiple","package":"druntime","parentType":"","signature":"IID IID_IWaitMultiple","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWaitMultiple"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemAddressResolution","package":"druntime","parentType":"","signature":"IID IID_IWbemAddressResolution","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemAddressResolution"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemBackupRestore","package":"druntime","parentType":"","signature":"IID IID_IWbemBackupRestore","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemBackupRestore"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemBackupRestoreEx","package":"druntime","parentType":"","signature":"IID IID_IWbemBackupRestoreEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemBackupRestoreEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemCallResult","package":"druntime","parentType":"","signature":"IID IID_IWbemCallResult","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemCallResult"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemCallStatus","package":"druntime","parentType":"","signature":"IID IID_IWbemCallStatus","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemCallStatus"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemClassObject","package":"druntime","parentType":"","signature":"IID IID_IWbemClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemClientConnectionTransport","package":"druntime","parentType":"","signature":"IID IID_IWbemClientConnectionTransport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemClientConnectionTransport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemClientTransport","package":"druntime","parentType":"","signature":"IID IID_IWbemClientTransport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemClientTransport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemConfigure","package":"druntime","parentType":"","signature":"IID IID_IWbemConfigure","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemConfigure"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemConfigureRefresher","package":"druntime","parentType":"","signature":"IID IID_IWbemConfigureRefresher","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemConfigureRefresher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemConnectorLogin","package":"druntime","parentType":"","signature":"IID IID_IWbemConnectorLogin","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemConnectorLogin"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemConstructClassObject","package":"druntime","parentType":"","signature":"IID IID_IWbemConstructClassObject","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemConstructClassObject"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemContext","package":"druntime","parentType":"","signature":"IID IID_IWbemContext","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemContext"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemDecoupledBasicEventProvider","package":"druntime","parentType":"","signature":"IID IID_IWbemDecoupledBasicEventProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemDecoupledBasicEventProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemDecoupledEventSink","package":"druntime","parentType":"","signature":"IID IID_IWbemDecoupledEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemDecoupledEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemDecoupledRegistrar","package":"druntime","parentType":"","signature":"IID IID_IWbemDecoupledRegistrar","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemDecoupledRegistrar"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventConsumerProvider","package":"druntime","parentType":"","signature":"IID IID_IWbemEventConsumerProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventConsumerProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventConsumerProviderEx","package":"druntime","parentType":"","signature":"IID IID_IWbemEventConsumerProviderEx","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventConsumerProviderEx"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventProvider","package":"druntime","parentType":"","signature":"IID IID_IWbemEventProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventProviderQuerySink","package":"druntime","parentType":"","signature":"IID IID_IWbemEventProviderQuerySink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventProviderQuerySink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventProviderSecurity","package":"druntime","parentType":"","signature":"IID IID_IWbemEventProviderSecurity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventProviderSecurity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemEventSink","package":"druntime","parentType":"","signature":"IID IID_IWbemEventSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemEventSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemHiPerfEnum","package":"druntime","parentType":"","signature":"IID IID_IWbemHiPerfEnum","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemHiPerfEnum"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemHiPerfProvider","package":"druntime","parentType":"","signature":"IID IID_IWbemHiPerfProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemHiPerfProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemLevel1Login","package":"druntime","parentType":"","signature":"IID IID_IWbemLevel1Login","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemLevel1Login"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemLocator","package":"druntime","parentType":"","signature":"IID IID_IWbemLocator","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemLocator"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemObjectAccess","package":"druntime","parentType":"","signature":"IID IID_IWbemObjectAccess","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemObjectAccess"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemObjectSink","package":"druntime","parentType":"","signature":"IID IID_IWbemObjectSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemObjectSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemObjectTextSrc","package":"druntime","parentType":"","signature":"IID IID_IWbemObjectTextSrc","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemObjectTextSrc"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemPath","package":"druntime","parentType":"","signature":"IID IID_IWbemPath","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemPath"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemPathKeyList","package":"druntime","parentType":"","signature":"IID IID_IWbemPathKeyList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemPathKeyList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemPropertyProvider","package":"druntime","parentType":"","signature":"IID IID_IWbemPropertyProvider","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemPropertyProvider"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemProviderIdentity","package":"druntime","parentType":"","signature":"IID IID_IWbemProviderIdentity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemProviderIdentity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemProviderInit","package":"druntime","parentType":"","signature":"IID IID_IWbemProviderInit","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemProviderInit"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemProviderInitSink","package":"druntime","parentType":"","signature":"IID IID_IWbemProviderInitSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemProviderInitSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemQualifierSet","package":"druntime","parentType":"","signature":"IID IID_IWbemQualifierSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemQualifierSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemQuery","package":"druntime","parentType":"","signature":"IID IID_IWbemQuery","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemQuery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemRawSdAccessor","package":"druntime","parentType":"","signature":"IID IID_IWbemRawSdAccessor","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemRawSdAccessor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemRefresher","package":"druntime","parentType":"","signature":"IID IID_IWbemRefresher","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemRefresher"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemServices","package":"druntime","parentType":"","signature":"IID IID_IWbemServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemShutdown","package":"druntime","parentType":"","signature":"IID IID_IWbemShutdown","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemShutdown"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemStatusCodeText","package":"druntime","parentType":"","signature":"IID IID_IWbemStatusCodeText","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemStatusCodeText"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemTransport","package":"druntime","parentType":"","signature":"IID IID_IWbemTransport","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemTransport"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWbemUnboundObjectSink","package":"druntime","parentType":"","signature":"IID IID_IWbemUnboundObjectSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWbemUnboundObjectSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWBScriptControl","package":"druntime","parentType":"","signature":"IID IID_IWBScriptControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWBScriptControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWCContextMenuCallback","package":"druntime","parentType":"","signature":"IID IID_IWCContextMenuCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWCContextMenuCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWCPropertySheetCallback","package":"druntime","parentType":"","signature":"IID IID_IWCPropertySheetCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWCPropertySheetCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWCWizard97Callback","package":"druntime","parentType":"","signature":"IID IID_IWCWizard97Callback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWCWizard97Callback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWCWizardCallback","package":"druntime","parentType":"","signature":"IID IID_IWCWizardCallback","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWCWizardCallback"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebBridge","package":"druntime","parentType":"","signature":"IID IID_IWebBridge","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebBridge"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebBrowser","package":"druntime","parentType":"","signature":"IID IID_IWebBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebBrowser2","package":"druntime","parentType":"","signature":"IID IID_IWebBrowser2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebBrowser2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebBrowserApp","package":"druntime","parentType":"","signature":"IID IID_IWebBrowserApp","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebBrowserApp"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebWizardExtension","package":"druntime","parentType":"","signature":"IID IID_IWebWizardExtension","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebWizardExtension"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWebWizardHost","package":"druntime","parentType":"","signature":"IID IID_IWebWizardHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWebWizardHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWEExtendContextMenu","package":"druntime","parentType":"","signature":"IID IID_IWEExtendContextMenu","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWEExtendContextMenu"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWEExtendPropertySheet","package":"druntime","parentType":"","signature":"IID IID_IWEExtendPropertySheet","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWEExtendPropertySheet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWEExtendWizard","package":"druntime","parentType":"","signature":"IID IID_IWEExtendWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWEExtendWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWEExtendWizard97","package":"druntime","parentType":"","signature":"IID IID_IWEExtendWizard97","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWEExtendWizard97"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWEInvokeCommand","package":"druntime","parentType":"","signature":"IID IID_IWEInvokeCommand","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWEInvokeCommand"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_Iwfolders","package":"druntime","parentType":"","signature":"IID IID_Iwfolders","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_Iwfolders"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWindowForBindingUI","package":"druntime","parentType":"","signature":"IID IID_IWindowForBindingUI","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWindowForBindingUI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWinInetHttpInfo","package":"druntime","parentType":"","signature":"IID IID_IWinInetHttpInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWinInetHttpInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWinInetInfo","package":"druntime","parentType":"","signature":"IID IID_IWinInetInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWinInetInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWizardExtension","package":"druntime","parentType":"","signature":"IID IID_IWizardExtension","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWizardExtension"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWizardSite","package":"druntime","parentType":"","signature":"IID IID_IWizardSite","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWizardSite"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWMIExtension","package":"druntime","parentType":"","signature":"IID IID_IWMIExtension","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWMIExtension"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWordBreaker","package":"druntime","parentType":"","signature":"IID IID_IWordBreaker","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWordBreaker"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWordSink","package":"druntime","parentType":"","signature":"IID IID_IWordSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWordSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IWrappedProtocol","package":"druntime","parentType":"","signature":"IID IID_IWrappedProtocol","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IWrappedProtocol"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLAttribute","package":"druntime","parentType":"","signature":"IID IID_IXMLAttribute","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLAttribute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDocument","package":"druntime","parentType":"","signature":"IID IID_IXMLDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDocument2","package":"druntime","parentType":"","signature":"IID IID_IXMLDocument2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDocument2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMAttribute","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMAttribute","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMAttribute"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMCDATASection","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMCDATASection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMCDATASection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMCharacterData","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMCharacterData","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMCharacterData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMComment","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMComment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMComment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMDocument","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMDocument","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMDocument"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMDocumentFragment","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMDocumentFragment","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMDocumentFragment"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMDocumentType","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMDocumentType","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMDocumentType"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMElement","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMEntity","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMEntity","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMEntity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMEntityReference","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMEntityReference","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMEntityReference"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMImplementation","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMImplementation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMImplementation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMNamedNodeMap","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMNamedNodeMap","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMNamedNodeMap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMNode","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMNode","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMNode"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMNodeList","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMNodeList","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMNodeList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMNotation","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMNotation","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMNotation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMParseError","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMParseError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMParseError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMProcessingInstruction","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMProcessingInstruction","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMProcessingInstruction"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDOMText","package":"druntime","parentType":"","signature":"IID IID_IXMLDOMText","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDOMText"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLDSOControl","package":"druntime","parentType":"","signature":"IID IID_IXMLDSOControl","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLDSOControl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLElement","package":"druntime","parentType":"","signature":"IID IID_IXMLElement","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLElement"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLElement2","package":"druntime","parentType":"","signature":"IID IID_IXMLElement2","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLElement2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLElementCollection","package":"druntime","parentType":"","signature":"IID IID_IXMLElementCollection","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLElementCollection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLError","package":"druntime","parentType":"","signature":"IID IID_IXMLError","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLError"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLGenericParse","package":"druntime","parentType":"","signature":"IID IID_IXMLGenericParse","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLGenericParse"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLHttpRequest","package":"druntime","parentType":"","signature":"IID IID_IXMLHttpRequest","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLHttpRequest"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLNodeFactory","package":"druntime","parentType":"","signature":"IID IID_IXMLNodeFactory","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLNodeFactory"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLNodeSource","package":"druntime","parentType":"","signature":"IID IID_IXMLNodeSource","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLNodeSource"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXMLParser","package":"druntime","parentType":"","signature":"IID IID_IXMLParser","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXMLParser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_IXTLRuntime","package":"druntime","parentType":"","signature":"IID IID_IXTLRuntime","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_IXTLRuntime"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"IID_StdOle","package":"druntime","parentType":"","signature":"IID IID_StdOle","url":"/ddoc/druntime/core/sys/windows/uuid.html#IID_StdOle"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"KSDATAFORMAT_SUBTYPE_DIRECTMUSIC","package":"druntime","parentType":"","signature":"IID KSDATAFORMAT_SUBTYPE_DIRECTMUSIC","url":"/ddoc/druntime/core/sys/windows/uuid.html#KSDATAFORMAT_SUBTYPE_DIRECTMUSIC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"KSDATAFORMAT_SUBTYPE_MIDI","package":"druntime","parentType":"","signature":"IID KSDATAFORMAT_SUBTYPE_MIDI","url":"/ddoc/druntime/core/sys/windows/uuid.html#KSDATAFORMAT_SUBTYPE_MIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_Accessibility","package":"druntime","parentType":"","signature":"IID LIBID_Accessibility","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_Accessibility"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ActiveIMM","package":"druntime","parentType":"","signature":"IID LIBID_ActiveIMM","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ActiveIMM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ADs","package":"druntime","parentType":"","signature":"IID LIBID_ADs","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ADs"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ALGLib","package":"druntime","parentType":"","signature":"IID LIBID_ALGLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ALGLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_AutoDiscovery","package":"druntime","parentType":"","signature":"IID LIBID_AutoDiscovery","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_AutoDiscovery"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_BackgroundCopyManager","package":"druntime","parentType":"","signature":"IID LIBID_BackgroundCopyManager","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_BackgroundCopyManager"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_BackgroundCopyManager1_5","package":"druntime","parentType":"","signature":"IID LIBID_BackgroundCopyManager1_5","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_BackgroundCopyManager1_5"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_BackgroundCopyQMgr","package":"druntime","parentType":"","signature":"IID LIBID_BackgroundCopyQMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_BackgroundCopyQMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_CHANNELMGR","package":"druntime","parentType":"","signature":"IID LIBID_CHANNELMGR","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_CHANNELMGR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_CLADMWIZLib","package":"druntime","parentType":"","signature":"IID LIBID_CLADMWIZLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_CLADMWIZLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ClusCfgWizard","package":"druntime","parentType":"","signature":"IID LIBID_ClusCfgWizard","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ClusCfgWizard"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_CommonControlObjects","package":"druntime","parentType":"","signature":"IID LIBID_CommonControlObjects","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_CommonControlObjects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_DirectAnimation","package":"druntime","parentType":"","signature":"IID LIBID_DirectAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_DirectAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_DWbemServices_v3","package":"druntime","parentType":"","signature":"IID LIBID_DWbemServices_v3","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_DWbemServices_v3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_DXTMSFTLib","package":"druntime","parentType":"","signature":"IID LIBID_DXTMSFTLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_DXTMSFTLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_DXTRANSLib","package":"druntime","parentType":"","signature":"IID LIBID_DXTRANSLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_DXTRANSLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_DXTRANSPLib","package":"druntime","parentType":"","signature":"IID LIBID_DXTRANSPLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_DXTRANSPLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_EventQLib","package":"druntime","parentType":"","signature":"IID LIBID_EventQLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_EventQLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_IASPolicyLib","package":"druntime","parentType":"","signature":"IID LIBID_IASPolicyLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_IASPolicyLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_IEXTagLib","package":"druntime","parentType":"","signature":"IID LIBID_IEXTagLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_IEXTagLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_IMAPILib","package":"druntime","parentType":"","signature":"IID LIBID_IMAPILib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_IMAPILib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ImgUtilLib","package":"druntime","parentType":"","signature":"IID LIBID_ImgUtilLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ImgUtilLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ITRKADMNLib","package":"druntime","parentType":"","signature":"IID LIBID_ITRKADMNLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ITRKADMNLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_McastLib","package":"druntime","parentType":"","signature":"IID LIBID_McastLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_McastLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_MSHTML","package":"druntime","parentType":"","signature":"IID LIBID_MSHTML","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_MSHTML"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_MSHTMLINTERNAL","package":"druntime","parentType":"","signature":"IID LIBID_MSHTMLINTERNAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_MSHTMLINTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_MSTIME","package":"druntime","parentType":"","signature":"IID LIBID_MSTIME","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_MSTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_MSXML","package":"druntime","parentType":"","signature":"IID LIBID_MSXML","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_MSXML"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_MultiLanguage","package":"druntime","parentType":"","signature":"IID LIBID_MultiLanguage","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_MultiLanguage"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_NATUPNPLib","package":"druntime","parentType":"","signature":"IID LIBID_NATUPNPLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_NATUPNPLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_NETCONLib","package":"druntime","parentType":"","signature":"IID LIBID_NETCONLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_NETCONLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_PassiveSink","package":"druntime","parentType":"","signature":"IID LIBID_PassiveSink","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_PassiveSink"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ProcessDebugManagerLib","package":"druntime","parentType":"","signature":"IID LIBID_ProcessDebugManagerLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ProcessDebugManagerLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_RENDLib","package":"druntime","parentType":"","signature":"IID LIBID_RENDLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_RENDLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_RTCCORELib","package":"druntime","parentType":"","signature":"IID LIBID_RTCCORELib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_RTCCORELib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SDOIASLib","package":"druntime","parentType":"","signature":"IID LIBID_SDOIASLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SDOIASLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SDPBLBLib","package":"druntime","parentType":"","signature":"IID LIBID_SDPBLBLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SDPBLBLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SensEvents","package":"druntime","parentType":"","signature":"IID LIBID_SensEvents","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SensEvents"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SHDocVw","package":"druntime","parentType":"","signature":"IID LIBID_SHDocVw","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SHDocVw"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_Shell32","package":"druntime","parentType":"","signature":"IID LIBID_Shell32","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_Shell32"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ShellImageData","package":"druntime","parentType":"","signature":"IID LIBID_ShellImageData","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ShellImageData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_ShellObjects","package":"druntime","parentType":"","signature":"IID LIBID_ShellObjects","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_ShellObjects"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SHGINALib","package":"druntime","parentType":"","signature":"IID LIBID_SHGINALib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SHGINALib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_SubscriptionMgr","package":"druntime","parentType":"","signature":"IID LIBID_SubscriptionMgr","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_SubscriptionMgr"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_TAPI3Lib","package":"druntime","parentType":"","signature":"IID LIBID_TAPI3Lib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_TAPI3Lib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_TERMMGRLib","package":"druntime","parentType":"","signature":"IID LIBID_TERMMGRLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_TERMMGRLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_UPnPHostLib","package":"druntime","parentType":"","signature":"IID LIBID_UPnPHostLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_UPnPHostLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_UPNPLib","package":"druntime","parentType":"","signature":"IID LIBID_UPNPLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_UPNPLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_VIRUSSCAN","package":"druntime","parentType":"","signature":"IID LIBID_VIRUSSCAN","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_VIRUSSCAN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WbemClient_v1","package":"druntime","parentType":"","signature":"IID LIBID_WbemClient_v1","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WbemClient_v1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WbemProviders_v1","package":"druntime","parentType":"","signature":"IID LIBID_WbemProviders_v1","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WbemProviders_v1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WbemScripting","package":"druntime","parentType":"","signature":"IID LIBID_WbemScripting","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WbemScripting"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WbemTransports_v1","package":"druntime","parentType":"","signature":"IID LIBID_WbemTransports_v1","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WbemTransports_v1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WbemUtilities_v1","package":"druntime","parentType":"","signature":"IID LIBID_WbemUtilities_v1","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WbemUtilities_v1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WebCheck","package":"druntime","parentType":"","signature":"IID LIBID_WebCheck","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WebCheck"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_WMIEXTENSIONLib","package":"druntime","parentType":"","signature":"IID LIBID_WMIEXTENSIONLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_WMIEXTENSIONLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_XENROLLLib","package":"druntime","parentType":"","signature":"IID LIBID_XENROLLLib","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_XENROLLLib"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"LIBID_XMLPSR","package":"druntime","parentType":"","signature":"IID LIBID_XMLPSR","url":"/ddoc/druntime/core/sys/windows/uuid.html#LIBID_XMLPSR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDGUID_MDX","package":"druntime","parentType":"","signature":"IID MDGUID_MDX","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDGUID_MDX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_ACTIONS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_ACTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_ACTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_COMMANDS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_COMMANDS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_COMMANDS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_CUBES","package":"druntime","parentType":"","signature":"IID MDSCHEMA_CUBES","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_CUBES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_DIMENSIONS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_DIMENSIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_DIMENSIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_FUNCTIONS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_FUNCTIONS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_FUNCTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_HIERARCHIES","package":"druntime","parentType":"","signature":"IID MDSCHEMA_HIERARCHIES","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_HIERARCHIES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_LEVELS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_LEVELS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_LEVELS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_MEASURES","package":"druntime","parentType":"","signature":"IID MDSCHEMA_MEASURES","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_MEASURES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_MEMBERS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_MEMBERS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_MEMBERS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_PROPERTIES","package":"druntime","parentType":"","signature":"IID MDSCHEMA_PROPERTIES","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_PROPERTIES"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"MDSCHEMA_SETS","package":"druntime","parentType":"","signature":"IID MDSCHEMA_SETS","url":"/ddoc/druntime/core/sys/windows/uuid.html#MDSCHEMA_SETS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NAMEDTIMER_DRAW","package":"druntime","parentType":"","signature":"IID NAMEDTIMER_DRAW","url":"/ddoc/druntime/core/sys/windows/uuid.html#NAMEDTIMER_DRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTFCOOKIE_SCHEDULE_GROUP_DAILY","package":"druntime","parentType":"","signature":"IID NOTFCOOKIE_SCHEDULE_GROUP_DAILY","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTFCOOKIE_SCHEDULE_GROUP_DAILY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTFCOOKIE_SCHEDULE_GROUP_MANUAL","package":"druntime","parentType":"","signature":"IID NOTFCOOKIE_SCHEDULE_GROUP_MANUAL","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTFCOOKIE_SCHEDULE_GROUP_MANUAL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTFCOOKIE_SCHEDULE_GROUP_MONTHLY","package":"druntime","parentType":"","signature":"IID NOTFCOOKIE_SCHEDULE_GROUP_MONTHLY","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTFCOOKIE_SCHEDULE_GROUP_MONTHLY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTFCOOKIE_SCHEDULE_GROUP_WEEKLY","package":"druntime","parentType":"","signature":"IID NOTFCOOKIE_SCHEDULE_GROUP_WEEKLY","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTFCOOKIE_SCHEDULE_GROUP_WEEKLY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_11","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_11","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_11"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_12","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_12","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_12"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_13","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_13","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_13"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_14","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_14","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_14"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_15","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_15","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_15"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_AGENT_INIT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_AGENT_INIT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_AGENT_INIT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_AGENT_START","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_AGENT_START","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_AGENT_START"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_ALERT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_ALERT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_ALERT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_ANOUNCMENT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_ANOUNCMENT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_ANOUNCMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_BEGIN_REPORT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_BEGIN_REPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_BEGIN_REPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_CONFIG_CHANGED","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_CONFIG_CHANGED","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_CONFIG_CHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_CONNECT_TO_INTERNET","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_CONNECT_TO_INTERNET","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_CONNECT_TO_INTERNET"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_d","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_d","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_d"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_DISCONNECT_FROM_INTE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_DISCONNECT_FROM_INTE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_DISCONNECT_FROM_INTE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_e","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_e","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_e"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_END_REPORT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_END_REPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_END_REPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_f","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_f","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_f"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_GROUP_DONE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_GROUP_DONE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_GROUP_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_GROUP_RESTART","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_GROUP_RESTART","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_GROUP_RESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_GROUP_START","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_GROUP_START","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_GROUP_START"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_i6","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_i6","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_i6"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_i7","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_i7","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_i7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_i8","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_i8","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_i8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_i9","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_i9","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_i9"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iA","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iA","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iB","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iB","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iC","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iC","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iC"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iD","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iD","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iD"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_iF","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_iF","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_iF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_INET_IDLE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_INET_IDLE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_INET_IDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_INET_OFFLINE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_INET_OFFLINE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_INET_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_INET_ONLINE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_INET_ONLINE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_INET_ONLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_ITEM_DONE","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_ITEM_DONE","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_ITEM_DONE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_ITEM_RESTART","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_ITEM_RESTART","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_ITEM_RESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_ITEM_START","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_ITEM_START","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_ITEM_START"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_NULL","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_NULL","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_PROGRESS_REPORT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_PROGRESS_REPORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_PROGRESS_REPORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_0","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_0","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_0"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_1","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_1","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_1"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_2","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_2","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_2"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_3","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_3","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_3"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_4","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_4","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_5","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_5","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_5"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_6","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_6","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_6"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_7","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_7","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_7"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_8","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_8","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_8"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_9","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_9","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_9"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_A","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_A","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_A"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_B","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_B","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_B"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_C","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_C","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_C"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_D","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_D","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_D"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_E","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_E","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_E"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_START_F","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_START_F","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_START_F"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASK","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASK","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_ABORT","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_ABORT","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_ABORT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_COMPLETED","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_COMPLETED","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_COMPLETED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_ERROR","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_ERROR","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_PROGRESS","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_PROGRESS","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_PROGRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_RESUME","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_RESUME","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_STARTED","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_STARTED","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_STARTED"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_TASKS_SUSPEND","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_TASKS_SUSPEND","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_TASKS_SUSPEND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_USER_IDLE_BEGIN","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_USER_IDLE_BEGIN","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_USER_IDLE_BEGIN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"NOTIFICATIONTYPE_USER_IDLE_END","package":"druntime","parentType":"","signature":"IID NOTIFICATIONTYPE_USER_IDLE_END","url":"/ddoc/druntime/core/sys/windows/uuid.html#NOTIFICATIONTYPE_USER_IDLE_END"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_ALLIMAGE","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_ALLIMAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_ALLIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_ALLMM","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_ALLMM","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_ALLMM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_ALLTEXT","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_ALLTEXT","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_ALLTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_ANSITEXT","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_ANSITEXT","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_ANSITEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_AVI","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_AVI","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_AVI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_BASICAUDIO","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_BASICAUDIO","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_BASICAUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_BIFF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_BIFF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_BIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_BMP","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_BMP","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_BMP"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_CGM","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_CGM","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_CGM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_COMMONIMAGE","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_COMMONIMAGE","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_COMMONIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_DIB","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_DIB","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_DIB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_DIF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_DIF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_DIF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_ENHMF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_ENHMF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_ENHMF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_EPS","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_EPS","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_EPS"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_GIF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_GIF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_GIF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_HTML","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_HTML","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_HTML"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_JPEG","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_JPEG","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_JPEG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_MIDI","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_MIDI","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_MIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_MPEG","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_MPEG","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_MPEG"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_PALETTE","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_PALETTE","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_PALETTE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_PCX","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_PCX","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_PCX"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_PENDATA","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_PENDATA","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_PENDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_PICT","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_PICT","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_PICT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_POSTSCRIPT","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_POSTSCRIPT","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_POSTSCRIPT"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_QUICKTIME","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_QUICKTIME","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_QUICKTIME"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_RIFF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_RIFF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_RIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_RTF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_RTF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_RTF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_SOUND","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_SOUND","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_SOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_SYLK","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_SYLK","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_SYLK"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_TIFF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_TIFF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_TIFF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_UNICODE","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_UNICODE","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_VIDEO","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_VIDEO","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_WAV","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_WAV","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_WAV"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_WMF","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_WMF","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_WMF"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLE_DATAPATH_XBM","package":"druntime","parentType":"","signature":"IID OLE_DATAPATH_XBM","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLE_DATAPATH_XBM"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"OLEDB_SVC_DSLPropertyPages","package":"druntime","parentType":"","signature":"IID OLEDB_SVC_DSLPropertyPages","url":"/ddoc/druntime/core/sys/windows/uuid.html#OLEDB_SVC_DSLPropertyPages"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"PSGUID_QUERY","package":"druntime","parentType":"","signature":"IID PSGUID_QUERY","url":"/ddoc/druntime/core/sys/windows/uuid.html#PSGUID_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESCLASSTYPE_IPAddress","package":"druntime","parentType":"","signature":"IID RESCLASSTYPE_IPAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESCLASSTYPE_IPAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESCLASSTYPE_NetworkName","package":"druntime","parentType":"","signature":"IID RESCLASSTYPE_NetworkName","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESCLASSTYPE_NetworkName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESCLASSTYPE_StorageDevice","package":"druntime","parentType":"","signature":"IID RESCLASSTYPE_StorageDevice","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESCLASSTYPE_StorageDevice"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_ClusterIPAddress","package":"druntime","parentType":"","signature":"IID RESTYPE_ClusterIPAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_ClusterIPAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_ClusterNetName","package":"druntime","parentType":"","signature":"IID RESTYPE_ClusterNetName","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_ClusterNetName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_ClusterQuorumDisk","package":"druntime","parentType":"","signature":"IID RESTYPE_ClusterQuorumDisk","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_ClusterQuorumDisk"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_GenericScript","package":"druntime","parentType":"","signature":"IID RESTYPE_GenericScript","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_GenericScript"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_IPAddress","package":"druntime","parentType":"","signature":"IID RESTYPE_IPAddress","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_IPAddress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_LocalQuorum","package":"druntime","parentType":"","signature":"IID RESTYPE_LocalQuorum","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_LocalQuorum"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_MajorityNodeSet","package":"druntime","parentType":"","signature":"IID RESTYPE_MajorityNodeSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_MajorityNodeSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_NetworkName","package":"druntime","parentType":"","signature":"IID RESTYPE_NetworkName","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_NetworkName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"RESTYPE_PhysicalDisk","package":"druntime","parentType":"","signature":"IID RESTYPE_PhysicalDisk","url":"/ddoc/druntime/core/sys/windows/uuid.html#RESTYPE_PhysicalDisk"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_CtxQueryAssociations","package":"druntime","parentType":"","signature":"IID SID_CtxQueryAssociations","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_CtxQueryAssociations"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_SContainerDispatch","package":"druntime","parentType":"","signature":"IID SID_SContainerDispatch","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_SContainerDispatch"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_SDataPathBrowser","package":"druntime","parentType":"","signature":"IID SID_SDataPathBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_SDataPathBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_SGetViewFromViewDual","package":"druntime","parentType":"","signature":"IID SID_SGetViewFromViewDual","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_SGetViewFromViewDual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_SHTMLEditServices","package":"druntime","parentType":"","signature":"IID SID_SHTMLEditServices","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_SHTMLEditServices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_STopLevelBrowser","package":"druntime","parentType":"","signature":"IID SID_STopLevelBrowser","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_STopLevelBrowser"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_STopWindow","package":"druntime","parentType":"","signature":"IID SID_STopWindow","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_STopWindow"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"SID_SVersionHost","package":"druntime","parentType":"","signature":"IID SID_SVersionHost","url":"/ddoc/druntime/core/sys/windows/uuid.html#SID_SVersionHost"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIMEDIATYPE_Audio","package":"druntime","parentType":"","signature":"IID TAPIMEDIATYPE_Audio","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIMEDIATYPE_Audio"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIMEDIATYPE_DataModem","package":"druntime","parentType":"","signature":"IID TAPIMEDIATYPE_DataModem","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIMEDIATYPE_DataModem"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIMEDIATYPE_G3Fax","package":"druntime","parentType":"","signature":"IID TAPIMEDIATYPE_G3Fax","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIMEDIATYPE_G3Fax"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIMEDIATYPE_Video","package":"druntime","parentType":"","signature":"IID TAPIMEDIATYPE_Video","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIMEDIATYPE_Video"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIPROTOCOL_H323","package":"druntime","parentType":"","signature":"IID TAPIPROTOCOL_H323","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIPROTOCOL_H323"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIPROTOCOL_Multicast","package":"druntime","parentType":"","signature":"IID TAPIPROTOCOL_Multicast","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIPROTOCOL_Multicast"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TAPIPROTOCOL_PSTN","package":"druntime","parentType":"","signature":"IID TAPIPROTOCOL_PSTN","url":"/ddoc/druntime/core/sys/windows/uuid.html#TAPIPROTOCOL_PSTN"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASK_AnalyzeCluster","package":"druntime","parentType":"","signature":"IID TASK_AnalyzeCluster","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASK_AnalyzeCluster"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASK_CommitClusterChanges","package":"druntime","parentType":"","signature":"IID TASK_CommitClusterChanges","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASK_CommitClusterChanges"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Check_Cluster_Feasibili","package":"druntime","parentType":"","signature":"IID TASKID_Major_Check_Cluster_Feasibili","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Check_Cluster_Feasibili"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Check_Node_Feasibility","package":"druntime","parentType":"","signature":"IID TASKID_Major_Check_Node_Feasibility","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Check_Node_Feasibility"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Checking_For_Existing_Cl","package":"druntime","parentType":"","signature":"IID TASKID_Major_Checking_For_Existing_Cl","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Checking_For_Existing_Cl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Client_And_Server_Log","package":"druntime","parentType":"","signature":"IID TASKID_Major_Client_And_Server_Log","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Client_And_Server_Log"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Client_Log","package":"druntime","parentType":"","signature":"IID TASKID_Major_Client_Log","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Client_Log"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Configure_Cluster_Servic","package":"druntime","parentType":"","signature":"IID TASKID_Major_Configure_Cluster_Servic","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Configure_Cluster_Servic"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Configure_Resource_Type","package":"druntime","parentType":"","signature":"IID TASKID_Major_Configure_Resource_Type","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Configure_Resource_Type"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Configure_Resources","package":"druntime","parentType":"","signature":"IID TASKID_Major_Configure_Resources","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Configure_Resources"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Establish_Connection","package":"druntime","parentType":"","signature":"IID TASKID_Major_Establish_Connection","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Establish_Connection"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Find_Devices","package":"druntime","parentType":"","signature":"IID TASKID_Major_Find_Devices","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Find_Devices"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Reanalyze","package":"druntime","parentType":"","signature":"IID TASKID_Major_Reanalyze","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Reanalyze"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Major_Server_Log","package":"druntime","parentType":"","signature":"IID TASKID_Major_Server_Log","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Major_Server_Log"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TASKID_Minor_Update_Progress","package":"druntime","parentType":"","signature":"IID TASKID_Minor_Update_Progress","url":"/ddoc/druntime/core/sys/windows/uuid.html#TASKID_Minor_Update_Progress"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMAnimation","package":"druntime","parentType":"","signature":"IID TID_D3DRMAnimation","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMAnimation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMAnimationKey","package":"druntime","parentType":"","signature":"IID TID_D3DRMAnimationKey","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMAnimationKey"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMAnimationOptions","package":"druntime","parentType":"","signature":"IID TID_D3DRMAnimationOptions","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMAnimationOptions"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMAnimationSet","package":"druntime","parentType":"","signature":"IID TID_D3DRMAnimationSet","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMAnimationSet"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMAppData","package":"druntime","parentType":"","signature":"IID TID_D3DRMAppData","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMAppData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMBoolean","package":"druntime","parentType":"","signature":"IID TID_D3DRMBoolean","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMBoolean"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMBoolean2d","package":"druntime","parentType":"","signature":"IID TID_D3DRMBoolean2d","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMBoolean2d"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMCamera","package":"druntime","parentType":"","signature":"IID TID_D3DRMCamera","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMCamera"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMColorRGB","package":"druntime","parentType":"","signature":"IID TID_D3DRMColorRGB","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMColorRGB"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMColorRGBA","package":"druntime","parentType":"","signature":"IID TID_D3DRMColorRGBA","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMColorRGBA"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMCoords2d","package":"druntime","parentType":"","signature":"IID TID_D3DRMCoords2d","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMCoords2d"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMExternalVisual","package":"druntime","parentType":"","signature":"IID TID_D3DRMExternalVisual","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMExternalVisual"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFloatKeys","package":"druntime","parentType":"","signature":"IID TID_D3DRMFloatKeys","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFloatKeys"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFrame","package":"druntime","parentType":"","signature":"IID TID_D3DRMFrame","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFrame"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFramePosition","package":"druntime","parentType":"","signature":"IID TID_D3DRMFramePosition","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFramePosition"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFrameRotation","package":"druntime","parentType":"","signature":"IID TID_D3DRMFrameRotation","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFrameRotation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFrameTransformMatrix","package":"druntime","parentType":"","signature":"IID TID_D3DRMFrameTransformMatrix","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFrameTransformMatrix"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMFrameVelocity","package":"druntime","parentType":"","signature":"IID TID_D3DRMFrameVelocity","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMFrameVelocity"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMGuid","package":"druntime","parentType":"","signature":"IID TID_D3DRMGuid","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMGuid"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMIndexedColor","package":"druntime","parentType":"","signature":"IID TID_D3DRMIndexedColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMIndexedColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMInfo","package":"druntime","parentType":"","signature":"IID TID_D3DRMInfo","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMInlineData","package":"druntime","parentType":"","signature":"IID TID_D3DRMInlineData","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMInlineData"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMLight","package":"druntime","parentType":"","signature":"IID TID_D3DRMLight","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMLight"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMLightAttenuation","package":"druntime","parentType":"","signature":"IID TID_D3DRMLightAttenuation","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMLightAttenuation"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMLightPenumbra","package":"druntime","parentType":"","signature":"IID TID_D3DRMLightPenumbra","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMLightPenumbra"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMLightRange","package":"druntime","parentType":"","signature":"IID TID_D3DRMLightRange","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMLightRange"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMLightUmbra","package":"druntime","parentType":"","signature":"IID TID_D3DRMLightUmbra","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMLightUmbra"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterial","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterial","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterial"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialAmbientColor","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialAmbientColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialAmbientColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialArray","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialArray","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialArray"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialDiffuseColor","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialDiffuseColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialDiffuseColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialEmissiveColor","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialEmissiveColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialEmissiveColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialPower","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialPower","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialPower"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialSpecularColor","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialSpecularColor","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialSpecularColor"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMaterialWrap","package":"druntime","parentType":"","signature":"IID TID_D3DRMMaterialWrap","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMaterialWrap"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMatrix4x4","package":"druntime","parentType":"","signature":"IID TID_D3DRMMatrix4x4","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMatrix4x4"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMesh","package":"druntime","parentType":"","signature":"IID TID_D3DRMMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshFace","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshFace","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshFace"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshFaceWraps","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshFaceWraps","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshFaceWraps"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshMaterialList","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshMaterialList","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshMaterialList"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshNormals","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshNormals","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshNormals"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshTextureCoords","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshTextureCoords","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshTextureCoords"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMMeshVertexColors","package":"druntime","parentType":"","signature":"IID TID_D3DRMMeshVertexColors","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMMeshVertexColors"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMProgressiveMesh","package":"druntime","parentType":"","signature":"IID TID_D3DRMProgressiveMesh","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMProgressiveMesh"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMPropertyBag","package":"druntime","parentType":"","signature":"IID TID_D3DRMPropertyBag","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMPropertyBag"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMRightHanded","package":"druntime","parentType":"","signature":"IID TID_D3DRMRightHanded","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMRightHanded"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMStringProperty","package":"druntime","parentType":"","signature":"IID TID_D3DRMStringProperty","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMStringProperty"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMTextureFilename","package":"druntime","parentType":"","signature":"IID TID_D3DRMTextureFilename","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMTextureFilename"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMTextureReference","package":"druntime","parentType":"","signature":"IID TID_D3DRMTextureReference","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMTextureReference"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMTimedFloatKeys","package":"druntime","parentType":"","signature":"IID TID_D3DRMTimedFloatKeys","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMTimedFloatKeys"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMUrl","package":"druntime","parentType":"","signature":"IID TID_D3DRMUrl","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMUrl"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_D3DRMVector","package":"druntime","parentType":"","signature":"IID TID_D3DRMVector","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_D3DRMVector"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"TID_DXFILEHeader","package":"druntime","parentType":"","signature":"IID TID_DXFILEHeader","url":"/ddoc/druntime/core/sys/windows/uuid.html#TID_DXFILEHeader"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"WKPDID_D3DDebugObjectName","package":"druntime","parentType":"","signature":"IID WKPDID_D3DDebugObjectName","url":"/ddoc/druntime/core/sys/windows/uuid.html#WKPDID_D3DDebugObjectName"},{"doc":"","kind":"variable","module":"core.sys.windows.uuid","name":"WKPDID_D3DDebugObjectNameW","package":"druntime","parentType":"","signature":"IID WKPDID_D3DDebugObjectNameW","url":"/ddoc/druntime/core/sys/windows/uuid.html#WKPDID_D3DDebugObjectNameW"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.vfw","name":"core.sys.windows.vfw","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/vfw.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"VideoForWindowsVersion","package":"druntime","parentType":"","signature":"DWORD VideoForWindowsVersion()","url":"/ddoc/druntime/core/sys/windows/vfw/VideoForWindowsVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"InitVFW","package":"druntime","parentType":"","signature":"LONG InitVFW()","url":"/ddoc/druntime/core/sys/windows/vfw/InitVFW.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"TermVFW","package":"druntime","parentType":"","signature":"LONG TermVFW()","url":"/ddoc/druntime/core/sys/windows/vfw/TermVFW.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MKFOURCC","package":"druntime","parentType":"","signature":"DWORD MKFOURCC(char  ch0,  char  ch1,  char  ch2,  char  ch3)","url":"/ddoc/druntime/core/sys/windows/vfw/MKFOURCC.html"},{"doc":"ICM function declarations","kind":"function","module":"core.sys.windows.vfw","name":"ICInfo","package":"druntime","parentType":"","signature":"BOOL ICInfo(DWORD fccType,  DWORD fccHandler,  ICINFO * lpicinfo)","url":"/ddoc/druntime/core/sys/windows/vfw/ICInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICInstall","package":"druntime","parentType":"","signature":"BOOL ICInstall(DWORD fccType,  DWORD fccHandler,  LPARAM lParam,  LPSTR szDesc,  UINT wFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/ICInstall.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICRemove","package":"druntime","parentType":"","signature":"BOOL ICRemove(DWORD fccType,  DWORD fccHandler,  UINT wFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/ICRemove.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetInfo","package":"druntime","parentType":"","signature":"LRESULT ICGetInfo(HIC hic,  ICINFO * picinfo,  DWORD cb)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICOpen","package":"druntime","parentType":"","signature":"HIC ICOpen(DWORD fccType,  DWORD fccHandler,  UINT wMode)","url":"/ddoc/druntime/core/sys/windows/vfw/ICOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICOpenFunction","package":"druntime","parentType":"","signature":"HIC ICOpenFunction(DWORD fccType,  DWORD fccHandler,  UINT wMode,  FARPROC lpfnHandler)","url":"/ddoc/druntime/core/sys/windows/vfw/ICOpenFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICClose","package":"druntime","parentType":"","signature":"LRESULT ICClose(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSendMessage","package":"druntime","parentType":"","signature":"LRESULT ICSendMessage(HIC hic,  UINT msg,  DWORD_PTR dw1,  DWORD_PTR dw2)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSendMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICQueryAbout","package":"druntime","parentType":"","signature":"DWORD ICQueryAbout(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICQueryAbout.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICAbout","package":"druntime","parentType":"","signature":"DWORD ICAbout(HIC hic,  HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/ICAbout.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICQueryConfigure","package":"druntime","parentType":"","signature":"DWORD ICQueryConfigure(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICQueryConfigure.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICConfigure","package":"druntime","parentType":"","signature":"DWORD ICConfigure(HIC hic,  HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/ICConfigure.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetState","package":"druntime","parentType":"","signature":"DWORD ICGetState(HIC hic,  LPVOID pv,  DWORD_PTR cb)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetState.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSetState","package":"druntime","parentType":"","signature":"DWORD ICSetState(HIC hic,  LPVOID pv,  DWORD_PTR cb)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSetState.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetStateSize","package":"druntime","parentType":"","signature":"DWORD ICGetStateSize(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetStateSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetDefaultQuality","package":"druntime","parentType":"","signature":"DWORD ICGetDefaultQuality(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetDefaultQuality.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetDefaultKeyFrameRate","package":"druntime","parentType":"","signature":"DWORD ICGetDefaultKeyFrameRate(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetDefaultKeyFrameRate.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawWindow","package":"druntime","parentType":"","signature":"DWORD ICDrawWindow(HIC hic,  LPVOID prc)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompress","package":"druntime","parentType":"","signature":"DWORD ICCompress(HIC hic,  DWORD dwFlags,  LPBITMAPINFOHEADER lpbiOutput,  LPVOID lpData,\n         LPBITMAPINFOHEADER lpbiInput,  LPVOID lpBits,  LPDWORD lpckid,  LPDWORD lpdwFlags,\n         LONG lFrameNum,  DWORD dwFrameSize,  DWORD dwQuality,  LPBITMAPINFOHEADER lpbiPrev,  LPVOID lpPrev)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompress.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressBegin","package":"druntime","parentType":"","signature":"LRESULT ICCompressBegin(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressQuery","package":"druntime","parentType":"","signature":"LRESULT ICCompressQuery(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressGetFormat","package":"druntime","parentType":"","signature":"LRESULT ICCompressGetFormat(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressGetFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressGetFormatSize","package":"druntime","parentType":"","signature":"DWORD ICCompressGetFormatSize(HIC hic,  LPVOID lpbi)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressGetFormatSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressGetSize","package":"druntime","parentType":"","signature":"DWORD ICCompressGetSize(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressGetSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressEnd","package":"druntime","parentType":"","signature":"LRESULT ICCompressEnd(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompress","package":"druntime","parentType":"","signature":"DWORD ICDecompress(HIC hic,  DWORD dwFlags,  LPBITMAPINFOHEADER lpbiFormat,  LPVOID lpData,  LPBITMAPINFOHEADER lpbi,  LPVOID lpBits)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompress.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressBegin","package":"druntime","parentType":"","signature":"LRESULT ICDecompressBegin(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressQuery","package":"druntime","parentType":"","signature":"LRESULT ICDecompressQuery(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressGetFormat","package":"druntime","parentType":"","signature":"LONG ICDecompressGetFormat(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressGetFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressGetFormatSize","package":"druntime","parentType":"","signature":"LONG ICDecompressGetFormatSize(HIC hic,  LPVOID lpbi)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressGetFormatSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressGetPalette","package":"druntime","parentType":"","signature":"LRESULT ICDecompressGetPalette(HIC hic,  LPVOID lpbiInput,  LPVOID lpbiOutput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressGetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressSetPalette","package":"druntime","parentType":"","signature":"LRESULT ICDecompressSetPalette(HIC hic,  LPVOID lpbiPalette)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressSetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressEnd","package":"druntime","parentType":"","signature":"LRESULT ICDecompressEnd(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressEx","package":"druntime","parentType":"","signature":"LRESULT ICDecompressEx(HIC hic,  DWORD dwFlags,  LPBITMAPINFOHEADER lpbiSrc,\n     LPVOID lpSrc,  int  xSrc,  int  ySrc,  int  dxSrc,  int  dySrc,  LPBITMAPINFOHEADER lpbiDst,\n     LPVOID lpDst,  int  xDst,  int  yDst,  int  dxDst,  int  dyDst)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressExBegin","package":"druntime","parentType":"","signature":"LRESULT ICDecompressExBegin(HIC hic,  DWORD dwFlags,  LPBITMAPINFOHEADER lpbiSrc,\n     LPVOID lpSrc,  int  xSrc,  int  ySrc,  int  dxSrc,  int  dySrc,  LPBITMAPINFOHEADER lpbiDst,\n     LPVOID lpDst,  int  xDst,  int  yDst,  int  dxDst,  int  dyDst)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressExBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressExQuery","package":"druntime","parentType":"","signature":"LRESULT ICDecompressExQuery(HIC hic,  DWORD dwFlags,  LPBITMAPINFOHEADER lpbiSrc,\n     LPVOID lpSrc,  int  xSrc,  int  ySrc,  int  dxSrc,  int  dySrc,  LPBITMAPINFOHEADER lpbiDst,\n     LPVOID lpDst,  int  xDst,  int  yDst,  int  dxDst,  int  dyDst)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressExQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressExEnd","package":"druntime","parentType":"","signature":"LRESULT ICDecompressExEnd(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressExEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawBegin","package":"druntime","parentType":"","signature":"DWORD ICDrawBegin(HIC hic,  DWORD dwFlags,  HPALETTE hpal,  HWND hwnd,  HDC hdc,\n         int  xDst,  int  yDst,  int  dxDst,  int  dyDst,  LPBITMAPINFOHEADER lpbi,\n         int  xSrc,  int  ySrc,  int  dxSrc,  int  dySrc,  DWORD dwRate,  DWORD dwScale)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDraw","package":"druntime","parentType":"","signature":"DWORD ICDraw(HIC hic,  DWORD dwFlags,  LPVOID lpFormat,  LPVOID lpData,  DWORD cbData,  LONG lTime)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDraw.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawSuggestFormat","package":"druntime","parentType":"","signature":"LRESULT ICDrawSuggestFormat(HIC hic,  LPBITMAPINFOHEADER lpbiIn,  LPBITMAPINFOHEADER lpbiOut,\n     int  dxSrc,  int  dySrc,  int  dxDst,  int  dyDst,  HIC hicDecomp)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawSuggestFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawQuery","package":"druntime","parentType":"","signature":"LRESULT ICDrawQuery(HIC hic,  LPVOID lpbiInput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawChangePalette","package":"druntime","parentType":"","signature":"LRESULT ICDrawChangePalette(HIC hic,  LPVOID lpbiInput)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawChangePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetBuffersWanted","package":"druntime","parentType":"","signature":"LRESULT ICGetBuffersWanted(HIC hic,  LPVOID lpdwBuffers)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetBuffersWanted.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawEnd","package":"druntime","parentType":"","signature":"LRESULT ICDrawEnd(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawStart","package":"druntime","parentType":"","signature":"LRESULT ICDrawStart(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawStartPlay","package":"druntime","parentType":"","signature":"LRESULT ICDrawStartPlay(HIC hic,  DWORD lFrom,  DWORD lTo)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawStartPlay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawStop","package":"druntime","parentType":"","signature":"LRESULT ICDrawStop(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawStopPlay","package":"druntime","parentType":"","signature":"LRESULT ICDrawStopPlay(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawStopPlay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawGetTime","package":"druntime","parentType":"","signature":"LRESULT ICDrawGetTime(HIC hic,  LPVOID lplTime)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawGetTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawSetTime","package":"druntime","parentType":"","signature":"LRESULT ICDrawSetTime(HIC hic,  DWORD lTime)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawSetTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawRealize","package":"druntime","parentType":"","signature":"LRESULT ICDrawRealize(HIC hic,  HDC hdc,  BOOL fBackground)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawRealize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawFlush","package":"druntime","parentType":"","signature":"LRESULT ICDrawFlush(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawFlush.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawRenderBuffer","package":"druntime","parentType":"","signature":"LRESULT ICDrawRenderBuffer(HIC hic)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawRenderBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSetStatusProc","package":"druntime","parentType":"","signature":"LRESULT ICSetStatusProc(HIC hic,  DWORD dwFlags,  LRESULT lParam,  LONG function(LPARAM,  UINT,  LONG)  fpfnStatus)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSetStatusProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDecompressOpen","package":"druntime","parentType":"","signature":"HIC ICDecompressOpen(DWORD fccType,  DWORD fccHandler,  LPBITMAPINFOHEADER lpbiIn,  LPBITMAPINFOHEADER lpbiOut)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDecompressOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICDrawOpen","package":"druntime","parentType":"","signature":"HIC ICDrawOpen(DWORD fccType,  DWORD fccHandler,  LPBITMAPINFOHEADER lpbiIn)","url":"/ddoc/druntime/core/sys/windows/vfw/ICDrawOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICLocate","package":"druntime","parentType":"","signature":"HIC ICLocate(DWORD fccType,  DWORD fccHandler,  LPBITMAPINFOHEADER lpbiIn,  LPBITMAPINFOHEADER lpbiOut,  WORD wFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/ICLocate.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICGetDisplayFormat","package":"druntime","parentType":"","signature":"HIC ICGetDisplayFormat(HIC hic,  LPBITMAPINFOHEADER lpbiIn,  LPBITMAPINFOHEADER lpbiOut,  int  BitDepth,  int  dx,  int  dy)","url":"/ddoc/druntime/core/sys/windows/vfw/ICGetDisplayFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICImageCompress","package":"druntime","parentType":"","signature":"HANDLE ICImageCompress(HIC hic,  UINT uiFlags,  LPBITMAPINFO lpbiIn,  LPVOID lpBits,  LPBITMAPINFO lpbiOut,  LONG lQuality,  LONG *  plSize)","url":"/ddoc/druntime/core/sys/windows/vfw/ICImageCompress.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICImageDecompress","package":"druntime","parentType":"","signature":"HANDLE ICImageDecompress(HIC hic,  UINT uiFlags,  LPBITMAPINFO lpbiIn,  LPVOID lpBits,  LPBITMAPINFO lpbiOut)","url":"/ddoc/druntime/core/sys/windows/vfw/ICImageDecompress.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressorChoose","package":"druntime","parentType":"","signature":"BOOL ICCompressorChoose(HWND hwnd,  UINT uiFlags,  LPVOID pvIn,  LPVOID lpData,  PCOMPVARS pc,  LPSTR lpszTitle)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressorChoose.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSeqCompressFrameStart","package":"druntime","parentType":"","signature":"BOOL ICSeqCompressFrameStart(PCOMPVARS pc,  LPBITMAPINFO lpbiIn)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSeqCompressFrameStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSeqCompressFrameEnd","package":"druntime","parentType":"","signature":"void ICSeqCompressFrameEnd(PCOMPVARS pc)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSeqCompressFrameEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICSeqCompressFrame","package":"druntime","parentType":"","signature":"LPVOID ICSeqCompressFrame(PCOMPVARS pc,  UINT uiFlags,  LPVOID lpBits,  BOOL *  pfKey,  LONG *  plSize)","url":"/ddoc/druntime/core/sys/windows/vfw/ICSeqCompressFrame.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ICCompressorFree","package":"druntime","parentType":"","signature":"void ICCompressorFree(PCOMPVARS pc)","url":"/ddoc/druntime/core/sys/windows/vfw/ICCompressorFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibInit","package":"druntime","parentType":"","signature":"BOOL DrawDibInit()","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibInit.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibOpen","package":"druntime","parentType":"","signature":"HDRAWDIB DrawDibOpen()","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibClose","package":"druntime","parentType":"","signature":"BOOL DrawDibClose(HDRAWDIB hdd)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibGetBuffer","package":"druntime","parentType":"","signature":"LPVOID DrawDibGetBuffer(HDRAWDIB hdd,  LPBITMAPINFOHEADER lpbi,  DWORD dwSize,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibGetBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibError","package":"druntime","parentType":"","signature":"UINT DrawDibError(HDRAWDIB hdd)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibError.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibGetPalette","package":"druntime","parentType":"","signature":"HPALETTE DrawDibGetPalette(HDRAWDIB hdd)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibGetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibSetPalette","package":"druntime","parentType":"","signature":"BOOL DrawDibSetPalette(HDRAWDIB hdd,  HPALETTE hpal)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibSetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibChangePalette","package":"druntime","parentType":"","signature":"BOOL DrawDibChangePalette(HDRAWDIB hdd,  int  iStart,  int  iLen,  LPPALETTEENTRY lppe)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibChangePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibRealize","package":"druntime","parentType":"","signature":"UINT DrawDibRealize(HDRAWDIB hdd,  HDC hdc,  BOOL fBackground)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibRealize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibStart","package":"druntime","parentType":"","signature":"BOOL DrawDibStart(HDRAWDIB hdd,  DWORD rate)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibStop","package":"druntime","parentType":"","signature":"BOOL DrawDibStop(HDRAWDIB hdd)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibBegin","package":"druntime","parentType":"","signature":"BOOL DrawDibBegin(HDRAWDIB hdd,  HDC hdc,  int  dxDst,  int  dyDst,  LPBITMAPINFOHEADER lpbi,  int  dxSrc,  int  dySrc,  UINT wFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibBegin.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibDraw","package":"druntime","parentType":"","signature":"BOOL DrawDibDraw(HDRAWDIB hdd,  HDC hdc,  int  xDst,  int  yDst,  int  dxDst,  int  dyDst,  LPBITMAPINFOHEADER lpbi,\n         LPVOID lpBits,  int  xSrc,  int  ySrc,  int  dxSrc,  int  dySrc,  UINT wFlags)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibDraw.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibUpdate","package":"druntime","parentType":"","signature":"BOOL DrawDibUpdate(HDRAWDIB hdd,  HDC hdc,  int  x,  int  y)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibUpdate.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibEnd","package":"druntime","parentType":"","signature":"BOOL DrawDibEnd(HDRAWDIB hdd)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibTime","package":"druntime","parentType":"","signature":"BOOL DrawDibTime(HDRAWDIB hdd,  LPDRAWDIBTIME lpddtime)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"DrawDibProfileDisplay","package":"druntime","parentType":"","signature":"LRESULT DrawDibProfileDisplay(LPBITMAPINFOHEADER lpbi)","url":"/ddoc/druntime/core/sys/windows/vfw/DrawDibProfileDisplay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"StretchDIB","package":"druntime","parentType":"","signature":"void StretchDIB(LPBITMAPINFOHEADER biDst,  LPVOID lpDst,  int  DstX,  int  DstY,\n         int  DstXE,  int  DstYE,  LPBITMAPINFOHEADER biSrc,  LPVOID lpSrc,\n         int  SrcX,  int  SrcY,  int  SrcXE,  int  SrcYE)","url":"/ddoc/druntime/core/sys/windows/vfw/StretchDIB.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"FromHex","package":"druntime","parentType":"","signature":"DWORD FromHex(char  n)","url":"/ddoc/druntime/core/sys/windows/vfw/FromHex.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"StreamFromFOURCC","package":"druntime","parentType":"","signature":"WORD StreamFromFOURCC(DWORD fcc)","url":"/ddoc/druntime/core/sys/windows/vfw/StreamFromFOURCC.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"TWOCCFromFOURCC","package":"druntime","parentType":"","signature":"WORD TWOCCFromFOURCC(DWORD fcc)","url":"/ddoc/druntime/core/sys/windows/vfw/TWOCCFromFOURCC.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"ToHex","package":"druntime","parentType":"","signature":"BYTE ToHex(DWORD n)","url":"/ddoc/druntime/core/sys/windows/vfw/ToHex.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MAKEAVICKID","package":"druntime","parentType":"","signature":"DWORD MAKEAVICKID(WORD tcc,  WORD stream)","url":"/ddoc/druntime/core/sys/windows/vfw/MAKEAVICKID.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MAKE_AVIERR","package":"druntime","parentType":"","signature":"SCODE MAKE_AVIERR(DWORD error)","url":"/ddoc/druntime/core/sys/windows/vfw/MAKE_AVIERR.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCreateA","package":"druntime","parentType":"","signature":"HWND MCIWndCreateA(HWND hwndParent,  HINSTANCE hInstance,  DWORD dwStyle,  LPCSTR szFile)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCreateA.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCreateW","package":"druntime","parentType":"","signature":"HWND MCIWndCreateW(HWND hwndParent,  HINSTANCE hInstance,  DWORD dwStyle,  LPCWSTR szFile)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCreateW.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndRegisterClass","package":"druntime","parentType":"","signature":"BOOL MCIWndRegisterClass()","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndRegisterClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanPlay","package":"druntime","parentType":"","signature":"BOOL MCIWndCanPlay(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanPlay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanRecord","package":"druntime","parentType":"","signature":"BOOL MCIWndCanRecord(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanRecord.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanSave","package":"druntime","parentType":"","signature":"BOOL MCIWndCanSave(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanSave.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanWindow","package":"druntime","parentType":"","signature":"BOOL MCIWndCanWindow(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanEject","package":"druntime","parentType":"","signature":"BOOL MCIWndCanEject(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanEject.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndCanConfig","package":"druntime","parentType":"","signature":"BOOL MCIWndCanConfig(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndCanConfig.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPaletteKick","package":"druntime","parentType":"","signature":"BOOL MCIWndPaletteKick(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPaletteKick.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSave","package":"druntime","parentType":"","signature":"LONG MCIWndSave(HWND hwnd,  LPVOID szFile)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSave.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSaveDialog","package":"druntime","parentType":"","signature":"LONG MCIWndSaveDialog(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSaveDialog.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndNew","package":"druntime","parentType":"","signature":"LONG MCIWndNew(HWND hwnd,  LPVOID lp)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndNew.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndRecord","package":"druntime","parentType":"","signature":"LONG MCIWndRecord(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndRecord.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndOpen","package":"druntime","parentType":"","signature":"LONG MCIWndOpen(HWND hwnd,  LPVOID sz,  UINT f)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndOpenDialog","package":"druntime","parentType":"","signature":"LONG MCIWndOpenDialog(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndOpenDialog.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndClose","package":"druntime","parentType":"","signature":"LONG MCIWndClose(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPlay","package":"druntime","parentType":"","signature":"LONG MCIWndPlay(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPlay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndStop","package":"druntime","parentType":"","signature":"LONG MCIWndStop(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPause","package":"druntime","parentType":"","signature":"LONG MCIWndPause(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPause.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndResume","package":"druntime","parentType":"","signature":"LONG MCIWndResume(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndResume.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSeek","package":"druntime","parentType":"","signature":"LONG MCIWndSeek(HWND hwnd,  LONG lPos)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSeek.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndHome","package":"druntime","parentType":"","signature":"LONG MCIWndHome(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndHome.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndEnd","package":"druntime","parentType":"","signature":"LONG MCIWndEnd(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndEject","package":"druntime","parentType":"","signature":"LONG MCIWndEject(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndEject.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetSource","package":"druntime","parentType":"","signature":"LONG MCIWndGetSource(HWND hwnd,  LPRECT prc)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPutSource","package":"druntime","parentType":"","signature":"LONG MCIWndPutSource(HWND hwnd,  LPRECT prc)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPutSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetDest","package":"druntime","parentType":"","signature":"LONG MCIWndGetDest(HWND hwnd,  LPRECT prc)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetDest.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPutDest","package":"druntime","parentType":"","signature":"LONG MCIWndPutDest(HWND hwnd,  LPRECT prc)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPutDest.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPlayReverse","package":"druntime","parentType":"","signature":"LONG MCIWndPlayReverse(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPlayReverse.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPlayFrom","package":"druntime","parentType":"","signature":"LONG MCIWndPlayFrom(HWND hwnd,  LONG lPos)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPlayFrom.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPlayTo","package":"druntime","parentType":"","signature":"LONG MCIWndPlayTo(HWND hwnd,  LONG lPos)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPlayTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndPlayFromTo","package":"druntime","parentType":"","signature":"LONG MCIWndPlayFromTo(HWND hwnd,  LONG lStart,  LONG lEnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndPlayFromTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetDeviceID","package":"druntime","parentType":"","signature":"UINT MCIWndGetDeviceID(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetDeviceID.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetAlias","package":"druntime","parentType":"","signature":"UINT MCIWndGetAlias(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetAlias.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetMode","package":"druntime","parentType":"","signature":"LONG MCIWndGetMode(HWND hwnd,  LPTSTR lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetPosition","package":"druntime","parentType":"","signature":"LONG MCIWndGetPosition(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetPositionString","package":"druntime","parentType":"","signature":"LONG MCIWndGetPositionString(HWND hwnd,  LPTSTR lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetPositionString.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetStart","package":"druntime","parentType":"","signature":"LONG MCIWndGetStart(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetStart.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetLength","package":"druntime","parentType":"","signature":"LONG MCIWndGetLength(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetLength.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetEnd","package":"druntime","parentType":"","signature":"LONG MCIWndGetEnd(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetEnd.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndStep","package":"druntime","parentType":"","signature":"LONG MCIWndStep(HWND hwnd,  LONG n)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndStep.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndDestroy","package":"druntime","parentType":"","signature":"void MCIWndDestroy(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndDestroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetZoom","package":"druntime","parentType":"","signature":"void MCIWndSetZoom(HWND hwnd,  UINT iZoom)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetZoom.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetZoom","package":"druntime","parentType":"","signature":"UINT MCIWndGetZoom(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetZoom.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetVolume","package":"druntime","parentType":"","signature":"LONG MCIWndSetVolume(HWND hwnd,  UINT iVol)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetVolume","package":"druntime","parentType":"","signature":"LONG MCIWndGetVolume(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetVolume.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetSpeed","package":"druntime","parentType":"","signature":"LONG MCIWndSetSpeed(HWND hwnd,  UINT iSpeed)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetSpeed.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetSpeed","package":"druntime","parentType":"","signature":"LONG MCIWndGetSpeed(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetSpeed.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetTimeFormat","package":"druntime","parentType":"","signature":"LONG MCIWndSetTimeFormat(HWND hwnd,  LPTSTR lp)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetTimeFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndUseFrames","package":"druntime","parentType":"","signature":"LONG MCIWndUseFrames(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndUseFrames.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndUseTime","package":"druntime","parentType":"","signature":"LONG MCIWndUseTime(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndUseTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetTimeFormat","package":"druntime","parentType":"","signature":"LONG MCIWndGetTimeFormat(HWND hwnd,  LPTSTR lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetTimeFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndValidateMedia","package":"druntime","parentType":"","signature":"void MCIWndValidateMedia(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndValidateMedia.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetRepeat","package":"druntime","parentType":"","signature":"void MCIWndSetRepeat(HWND hwnd,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetRepeat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetRepeat","package":"druntime","parentType":"","signature":"BOOL MCIWndGetRepeat(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetRepeat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetActiveTimer","package":"druntime","parentType":"","signature":"void MCIWndSetActiveTimer(HWND hwnd,  UINT active)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetActiveTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetInactiveTimer","package":"druntime","parentType":"","signature":"void MCIWndSetInactiveTimer(HWND hwnd,  UINT inactive)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetInactiveTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetTimers","package":"druntime","parentType":"","signature":"void MCIWndSetTimers(HWND hwnd,  UINT active,  UINT inactive)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetTimers.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetActiveTimer","package":"druntime","parentType":"","signature":"UINT MCIWndGetActiveTimer(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetActiveTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetInactiveTimer","package":"druntime","parentType":"","signature":"UINT MCIWndGetInactiveTimer(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetInactiveTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndRealize","package":"druntime","parentType":"","signature":"LONG MCIWndRealize(HWND hwnd,  BOOL fBkgnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndRealize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSendString","package":"druntime","parentType":"","signature":"LONG MCIWndSendString(HWND hwnd,  LPTSTR sz)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSendString.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndReturnString","package":"druntime","parentType":"","signature":"LONG MCIWndReturnString(HWND hwnd,  LPVOID lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndReturnString.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetError","package":"druntime","parentType":"","signature":"LONG MCIWndGetError(HWND hwnd,  LPVOID lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetError.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetPalette","package":"druntime","parentType":"","signature":"HPALETTE MCIWndGetPalette(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetPalette","package":"druntime","parentType":"","signature":"LONG MCIWndSetPalette(HWND hwnd,  HPALETTE hpal)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetFileName","package":"druntime","parentType":"","signature":"LONG MCIWndGetFileName(HWND hwnd,  LPVOID lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetFileName.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetDevice","package":"druntime","parentType":"","signature":"LONG MCIWndGetDevice(HWND hwnd,  LPVOID lp,  UINT len)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndGetStyles","package":"druntime","parentType":"","signature":"UINT MCIWndGetStyles(HWND hwnd)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndGetStyles.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndChangeStyles","package":"druntime","parentType":"","signature":"LONG MCIWndChangeStyles(HWND hwnd,  UINT mask,  LONG value)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndChangeStyles.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndOpenInterface","package":"druntime","parentType":"","signature":"LONG MCIWndOpenInterface(HWND hwnd,  LPUNKNOWN pUnk)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndOpenInterface.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"MCIWndSetOwner","package":"druntime","parentType":"","signature":"LONG MCIWndSetOwner(HWND hwnd,  HWND hwndP)","url":"/ddoc/druntime/core/sys/windows/vfw/MCIWndSetOwner.html"},{"doc":"AVICap window class","kind":"function","module":"core.sys.windows.vfw","name":"AVICapSM","package":"druntime","parentType":"","signature":"LRESULT AVICapSM(HWND hWnd,  UINT msg,  WPARAM wParam,  LPARAM lParam)","url":"/ddoc/druntime/core/sys/windows/vfw/AVICapSM.html"},{"doc":"message wrapper","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnError","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnError()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnError.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnStatus","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnStatus()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnYield","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnYield()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnYield.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnFrame","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnFrame()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnFrame.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnVideoStream","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnVideoStream()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnVideoStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnWaveStream","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnWaveStream()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnWaveStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetCallbackOnCapControl","package":"druntime","parentType":"","signature":"BOOL capSetCallbackOnCapControl()(HWND hWnd,  LPVOID fpProc)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetCallbackOnCapControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetUserData","package":"druntime","parentType":"","signature":"BOOL capSetUserData()(HWND hWnd,  LPARAM lUser)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetUserData.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetUserData","package":"druntime","parentType":"","signature":"BOOL capGetUserData()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetUserData.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDriverConnect","package":"druntime","parentType":"","signature":"BOOL capDriverConnect()(HWND hWnd,  WPARAM i)","url":"/ddoc/druntime/core/sys/windows/vfw/capDriverConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDriverDisconnect","package":"druntime","parentType":"","signature":"BOOL capDriverDisconnect()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capDriverDisconnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDriverGetName","package":"druntime","parentType":"","signature":"BOOL capDriverGetName()(HWND hWnd,  LPTSTR szName,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capDriverGetName.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDriverGetVersion","package":"druntime","parentType":"","signature":"BOOL capDriverGetVersion()(HWND hWnd,  LPTSTR szVer,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capDriverGetVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDriverGetCaps","package":"druntime","parentType":"","signature":"BOOL capDriverGetCaps()(HWND hWnd,  LPCAPDRIVERCAPS s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capDriverGetCaps.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileSetCaptureFile","package":"druntime","parentType":"","signature":"BOOL capFileSetCaptureFile()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileSetCaptureFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileGetCaptureFile","package":"druntime","parentType":"","signature":"BOOL capFileGetCaptureFile()(HWND hWnd,  LPTSTR szName,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileGetCaptureFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileAlloc","package":"druntime","parentType":"","signature":"BOOL capFileAlloc()(HWND hWnd,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileSaveAs","package":"druntime","parentType":"","signature":"BOOL capFileSaveAs()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileSaveAs.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileSetInfoChunk","package":"druntime","parentType":"","signature":"BOOL capFileSetInfoChunk()(HWND hWnd,  LPCAPINFOCHUNK lpInfoChunk)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileSetInfoChunk.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capFileSaveDIB","package":"druntime","parentType":"","signature":"BOOL capFileSaveDIB()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capFileSaveDIB.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capEditCopy","package":"druntime","parentType":"","signature":"BOOL capEditCopy()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capEditCopy.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetAudioFormat","package":"druntime","parentType":"","signature":"BOOL capSetAudioFormat()(HWND hWnd,  LPWAVEFORMATEX s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetAudioFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetAudioFormat","package":"druntime","parentType":"","signature":"DWORD capGetAudioFormat()(HWND hWnd,  LPWAVEFORMATEX s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetAudioFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetAudioFormatSize","package":"druntime","parentType":"","signature":"DWORD capGetAudioFormatSize()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetAudioFormatSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDlgVideoFormat","package":"druntime","parentType":"","signature":"BOOL capDlgVideoFormat()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capDlgVideoFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDlgVideoSource","package":"druntime","parentType":"","signature":"BOOL capDlgVideoSource()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capDlgVideoSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDlgVideoDisplay","package":"druntime","parentType":"","signature":"BOOL capDlgVideoDisplay()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capDlgVideoDisplay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capDlgVideoCompression","package":"druntime","parentType":"","signature":"BOOL capDlgVideoCompression()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capDlgVideoCompression.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetVideoFormat","package":"druntime","parentType":"","signature":"DWORD capGetVideoFormat()(HWND hWnd,  void *  s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetVideoFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetVideoFormatSize","package":"druntime","parentType":"","signature":"DWORD capGetVideoFormatSize()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetVideoFormatSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetVideoFormat","package":"druntime","parentType":"","signature":"BOOL capSetVideoFormat()(HWND hWnd,  void *  s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetVideoFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPreview","package":"druntime","parentType":"","signature":"BOOL capPreview()(HWND hWnd,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/vfw/capPreview.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPreviewRate","package":"druntime","parentType":"","signature":"BOOL capPreviewRate()(HWND hWnd,  WPARAM wMS)","url":"/ddoc/druntime/core/sys/windows/vfw/capPreviewRate.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capOverlay","package":"druntime","parentType":"","signature":"BOOL capOverlay()(HWND hWnd,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/vfw/capOverlay.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPreviewScale","package":"druntime","parentType":"","signature":"BOOL capPreviewScale()(HWND hWnd,  BOOL f)","url":"/ddoc/druntime/core/sys/windows/vfw/capPreviewScale.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetStatus","package":"druntime","parentType":"","signature":"BOOL capGetStatus()(HWND hWnd,  LPCAPSTATUS s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetScrollPos","package":"druntime","parentType":"","signature":"BOOL capSetScrollPos()(HWND hWnd,  LPPOINT lpP)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetScrollPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGrabFrame","package":"druntime","parentType":"","signature":"BOOL capGrabFrame()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capGrabFrame.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGrabFrameNoStop","package":"druntime","parentType":"","signature":"BOOL capGrabFrameNoStop()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capGrabFrameNoStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSequence","package":"druntime","parentType":"","signature":"BOOL capCaptureSequence()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSequence.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSequenceNoFile","package":"druntime","parentType":"","signature":"BOOL capCaptureSequenceNoFile()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSequenceNoFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureStop","package":"druntime","parentType":"","signature":"BOOL capCaptureStop()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureStop.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureAbort","package":"druntime","parentType":"","signature":"BOOL capCaptureAbort()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureAbort.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSingleFrameOpen","package":"druntime","parentType":"","signature":"BOOL capCaptureSingleFrameOpen()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSingleFrameOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSingleFrameClose","package":"druntime","parentType":"","signature":"BOOL capCaptureSingleFrameClose()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSingleFrameClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSingleFrame","package":"druntime","parentType":"","signature":"BOOL capCaptureSingleFrame()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSingleFrame.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureGetSetup","package":"druntime","parentType":"","signature":"BOOL capCaptureGetSetup()(HWND hWnd,  LPCAPTUREPARMS s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureGetSetup.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCaptureSetSetup","package":"druntime","parentType":"","signature":"BOOL capCaptureSetSetup()(HWND hWnd,  LPCAPTUREPARMS s,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capCaptureSetSetup.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capSetMCIDeviceName","package":"druntime","parentType":"","signature":"BOOL capSetMCIDeviceName()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capSetMCIDeviceName.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetMCIDeviceName","package":"druntime","parentType":"","signature":"BOOL capGetMCIDeviceName()(HWND hWnd,  LPTSTR szName,  WPARAM wSize)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetMCIDeviceName.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPaletteOpen","package":"druntime","parentType":"","signature":"BOOL capPaletteOpen()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capPaletteOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPaletteSave","package":"druntime","parentType":"","signature":"BOOL capPaletteSave()(HWND hWnd,  LPTSTR szName)","url":"/ddoc/druntime/core/sys/windows/vfw/capPaletteSave.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPalettePaste","package":"druntime","parentType":"","signature":"BOOL capPalettePaste()(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw/capPalettePaste.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPaletteAuto","package":"druntime","parentType":"","signature":"BOOL capPaletteAuto()(HWND hWnd,  WPARAM iFrames,  LPARAM iColors)","url":"/ddoc/druntime/core/sys/windows/vfw/capPaletteAuto.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capPaletteManual","package":"druntime","parentType":"","signature":"BOOL capPaletteManual()(HWND hWnd,  WPARAM fGrab,  LPARAM iColors)","url":"/ddoc/druntime/core/sys/windows/vfw/capPaletteManual.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCreateCaptureWindowA","package":"druntime","parentType":"","signature":"HWND capCreateCaptureWindowA(LPCSTR lpszWindowName,  DWORD dwStyle,  int  x,  int  y,  int  nWidth,  int  nHeight,  HWND hwndParent,  int  nID)","url":"/ddoc/druntime/core/sys/windows/vfw/capCreateCaptureWindowA.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetDriverDescriptionA","package":"druntime","parentType":"","signature":"BOOL capGetDriverDescriptionA(UINT wDriverIndex,  LPSTR lpszName,  int  cbName,  LPSTR lpszVer,  int  cbVer)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetDriverDescriptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capCreateCaptureWindowW","package":"druntime","parentType":"","signature":"HWND capCreateCaptureWindowW(LPCWSTR lpszWindowName,  DWORD dwStyle,  int  x,  int  y,  int  nWidth,  int  nHeight,  HWND hwndParent,  int  nID)","url":"/ddoc/druntime/core/sys/windows/vfw/capCreateCaptureWindowW.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"capGetDriverDescriptionW","package":"druntime","parentType":"","signature":"BOOL capGetDriverDescriptionW(UINT wDriverIndex,  LPWSTR lpszName,  int  cbName,  LPWSTR lpszVer,  int  cbVer)","url":"/ddoc/druntime/core/sys/windows/vfw/capGetDriverDescriptionW.html"},{"doc":"FilePreview dialog.","kind":"function","module":"core.sys.windows.vfw","name":"GetOpenFileNamePreviewA","package":"druntime","parentType":"","signature":"BOOL GetOpenFileNamePreviewA(LPOPENFILENAMEA lpofn)","url":"/ddoc/druntime/core/sys/windows/vfw/GetOpenFileNamePreviewA.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"GetSaveFileNamePreviewA","package":"druntime","parentType":"","signature":"BOOL GetSaveFileNamePreviewA(LPOPENFILENAMEA lpofn)","url":"/ddoc/druntime/core/sys/windows/vfw/GetSaveFileNamePreviewA.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"GetOpenFileNamePreviewW","package":"druntime","parentType":"","signature":"BOOL GetOpenFileNamePreviewW(LPOPENFILENAMEW lpofn)","url":"/ddoc/druntime/core/sys/windows/vfw/GetOpenFileNamePreviewW.html"},{"doc":"","kind":"function","module":"core.sys.windows.vfw","name":"GetSaveFileNamePreviewW","package":"druntime","parentType":"","signature":"BOOL GetSaveFileNamePreviewW(LPOPENFILENAMEW lpofn)","url":"/ddoc/druntime/core/sys/windows/vfw/GetSaveFileNamePreviewW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"HIC","package":"druntime","parentType":"","signature":"HIC = HANDLE","url":"/ddoc/druntime/core/sys/windows/vfw.html#HIC"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICOPEN","package":"druntime","parentType":"","signature":"ICOPEN","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICOPEN"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICINFO","package":"druntime","parentType":"","signature":"ICINFO","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICCOMPRESS","package":"druntime","parentType":"","signature":"ICCOMPRESS","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICCOMPRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICCOMPRESSFRAMES","package":"druntime","parentType":"","signature":"ICCOMPRESSFRAMES","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICCOMPRESSFRAMES"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICSETSTATUSPROC","package":"druntime","parentType":"","signature":"ICSETSTATUSPROC","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICSETSTATUSPROC"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICDECOMPRESS","package":"druntime","parentType":"","signature":"ICDECOMPRESS","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICDECOMPRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICDECOMPRESSEX","package":"druntime","parentType":"","signature":"ICDECOMPRESSEX","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICDECOMPRESSEX"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICDRAWBEGIN","package":"druntime","parentType":"","signature":"ICDRAWBEGIN","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICDRAWBEGIN"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICDRAW","package":"druntime","parentType":"","signature":"ICDRAW","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICDRAW"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICDRAWSUGGEST","package":"druntime","parentType":"","signature":"ICDRAWSUGGEST","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICDRAWSUGGEST"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"ICPALETTE","package":"druntime","parentType":"","signature":"ICPALETTE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"COMPVARS","package":"druntime","parentType":"","signature":"COMPVARS","url":"/ddoc/druntime/core/sys/windows/vfw.html#COMPVARS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCOMPVARS","package":"druntime","parentType":"","signature":"PCOMPVARS = COMPVARS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCOMPVARS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"HDRAWDIB","package":"druntime","parentType":"","signature":"HDRAWDIB = HANDLE","url":"/ddoc/druntime/core/sys/windows/vfw.html#HDRAWDIB"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"DRAWDIBTIME","package":"druntime","parentType":"","signature":"DRAWDIBTIME","url":"/ddoc/druntime/core/sys/windows/vfw.html#DRAWDIBTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPDRAWDIBTIME","package":"druntime","parentType":"","signature":"LPDRAWDIBTIME = DRAWDIBTIME *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPDRAWDIBTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"FOURCC","package":"druntime","parentType":"","signature":"FOURCC = DWORD","url":"/ddoc/druntime/core/sys/windows/vfw.html#FOURCC"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"TWOCC","package":"druntime","parentType":"","signature":"TWOCC = WORD","url":"/ddoc/druntime/core/sys/windows/vfw.html#TWOCC"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"MainAVIHeader","package":"druntime","parentType":"","signature":"MainAVIHeader","url":"/ddoc/druntime/core/sys/windows/vfw.html#MainAVIHeader"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVIStreamHeader","package":"druntime","parentType":"","signature":"AVIStreamHeader","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIStreamHeader"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVIINDEXENTRY","package":"druntime","parentType":"","signature":"AVIINDEXENTRY","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIINDEXENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVIPALCHANGE","package":"druntime","parentType":"","signature":"AVIPALCHANGE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIPALCHANGE"},{"doc":"","kind":"method","module":"core.sys.windows.vfw","name":"peNew","package":"druntime","parentType":"AVIPALCHANGE","signature":"PALETTEENTRY * peNew()","url":"/ddoc/druntime/core/sys/windows/vfw/AVIPALCHANGE.peNew.html"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVISTREAMINFOW","package":"druntime","parentType":"","signature":"AVISTREAMINFOW","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISTREAMINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPAVISTREAMINFOW","package":"druntime","parentType":"","signature":"LPAVISTREAMINFOW = AVISTREAMINFOW *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPAVISTREAMINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVISTREAMINFOA","package":"druntime","parentType":"","signature":"AVISTREAMINFOA","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISTREAMINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPAVISTREAMINFOA","package":"druntime","parentType":"","signature":"LPAVISTREAMINFOA = AVISTREAMINFOA *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPAVISTREAMINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVIFILEINFOW","package":"druntime","parentType":"","signature":"AVIFILEINFOW","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIFILEINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPAVIFILEINFOW","package":"druntime","parentType":"","signature":"LPAVIFILEINFOW = AVIFILEINFOW *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPAVIFILEINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVIFILEINFOA","package":"druntime","parentType":"","signature":"AVIFILEINFOA","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIFILEINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPAVIFILEINFOA","package":"druntime","parentType":"","signature":"LPAVIFILEINFOA = AVIFILEINFOA *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPAVIFILEINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"AVISAVECALLBACK","package":"druntime","parentType":"","signature":"AVISAVECALLBACK = BOOL function(int)","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISAVECALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"AVICOMPRESSOPTIONS","package":"druntime","parentType":"","signature":"AVICOMPRESSOPTIONS","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVICOMPRESSOPTIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPAVICOMPRESSOPTIONS","package":"druntime","parentType":"","signature":"LPAVICOMPRESSOPTIONS = AVICOMPRESSOPTIONS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPAVICOMPRESSOPTIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"HVIDEO","package":"druntime","parentType":"","signature":"HVIDEO = HANDLE","url":"/ddoc/druntime/core/sys/windows/vfw.html#HVIDEO"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"LPHVIDEO","package":"druntime","parentType":"","signature":"LPHVIDEO = HVIDEO *","url":"/ddoc/druntime/core/sys/windows/vfw.html#LPHVIDEO"},{"doc":"Structures","kind":"struct","module":"core.sys.windows.vfw","name":"VIDEOHDR","package":"druntime","parentType":"","signature":"VIDEOHDR","url":"/ddoc/druntime/core/sys/windows/vfw.html#VIDEOHDR"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PVIDEOHDR","package":"druntime","parentType":"","signature":"PVIDEOHDR = VIDEOHDR *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PVIDEOHDR"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"CHANNEL_CAPS","package":"druntime","parentType":"","signature":"CHANNEL_CAPS","url":"/ddoc/druntime/core/sys/windows/vfw.html#CHANNEL_CAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCHANNEL_CAPS","package":"druntime","parentType":"","signature":"PCHANNEL_CAPS = CHANNEL_CAPS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCHANNEL_CAPS"},{"doc":"structs","kind":"struct","module":"core.sys.windows.vfw","name":"CAPDRIVERCAPS","package":"druntime","parentType":"","signature":"CAPDRIVERCAPS","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPDRIVERCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCAPDRIVERCAPS","package":"druntime","parentType":"","signature":"PCAPDRIVERCAPS = CAPDRIVERCAPS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCAPDRIVERCAPS"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"CAPSTATUS","package":"druntime","parentType":"","signature":"CAPSTATUS","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPSTATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCAPSTATUS","package":"druntime","parentType":"","signature":"PCAPSTATUS = CAPSTATUS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCAPSTATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"CAPTUREPARMS","package":"druntime","parentType":"","signature":"CAPTUREPARMS","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPTUREPARMS"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCAPTUREPARMS","package":"druntime","parentType":"","signature":"PCAPTUREPARMS = CAPTUREPARMS *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCAPTUREPARMS"},{"doc":"","kind":"struct","module":"core.sys.windows.vfw","name":"CAPINFOCHUNK","package":"druntime","parentType":"","signature":"CAPINFOCHUNK","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPINFOCHUNK"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"PCAPINFOCHUNK","package":"druntime","parentType":"","signature":"PCAPINFOCHUNK = CAPINFOCHUNK *","url":"/ddoc/druntime/core/sys/windows/vfw.html#PCAPINFOCHUNK"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPYIELDCALLBACK","package":"druntime","parentType":"","signature":"CAPYIELDCALLBACK = LRESULT function(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPYIELDCALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPSTATUSCALLBACKW","package":"druntime","parentType":"","signature":"CAPSTATUSCALLBACKW = LRESULT function(HWND hWnd,  int  nID,  LPCWSTR lpsz)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPSTATUSCALLBACKW"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPERRORCALLBACKW","package":"druntime","parentType":"","signature":"CAPERRORCALLBACKW = LRESULT function(HWND hWnd,  int  nID,  LPCWSTR lpsz)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPERRORCALLBACKW"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPSTATUSCALLBACKA","package":"druntime","parentType":"","signature":"CAPSTATUSCALLBACKA = LRESULT function(HWND hWnd,  int  nID,  LPCSTR lpsz)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPSTATUSCALLBACKA"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPERRORCALLBACKA","package":"druntime","parentType":"","signature":"CAPERRORCALLBACKA = LRESULT function(HWND hWnd,  int  nID,  LPCSTR lpsz)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPERRORCALLBACKA"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPVIDEOCALLBACK","package":"druntime","parentType":"","signature":"CAPVIDEOCALLBACK = LRESULT function(HWND hWnd,  LPVIDEOHDR lpVHdr)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPVIDEOCALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPWAVECALLBACK","package":"druntime","parentType":"","signature":"CAPWAVECALLBACK = LRESULT function(HWND hWnd,  LPWAVEHDR lpWHdr)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPWAVECALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.vfw","name":"CAPCONTROLCALLBACK","package":"druntime","parentType":"","signature":"CAPCONTROLCALLBACK = LRESULT function(HWND hWnd,  int  nState)","url":"/ddoc/druntime/core/sys/windows/vfw.html#CAPCONTROLCALLBACK"},{"doc":"","kind":"template","module":"core.sys.windows.vfw","name":"aviTWOCC","package":"druntime","parentType":"","signature":"aviTWOCC(char  c0,  char  c1)","url":"/ddoc/druntime/core/sys/windows/vfw.html#aviTWOCC"},{"doc":"COMPMAN - Installable Compression Manager.","kind":"variable","module":"core.sys.windows.vfw","name":"ICVERSION","package":"druntime","parentType":"","signature":"ICVERSION","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"BI_1632","package":"druntime","parentType":"","signature":"BI_1632","url":"/ddoc/druntime/core/sys/windows/vfw.html#BI_1632"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICTYPE_VIDEO","package":"druntime","parentType":"","signature":"ICTYPE_VIDEO","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICTYPE_VIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICTYPE_AUDIO","package":"druntime","parentType":"","signature":"ICTYPE_AUDIO","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICTYPE_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_UNSUPPORTED","package":"druntime","parentType":"","signature":"ICERR_UNSUPPORTED","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_UNSUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADFORMAT","package":"druntime","parentType":"","signature":"ICERR_BADFORMAT","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_MEMORY","package":"druntime","parentType":"","signature":"ICERR_MEMORY","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_INTERNAL","package":"druntime","parentType":"","signature":"ICERR_INTERNAL","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADFLAGS","package":"druntime","parentType":"","signature":"ICERR_BADFLAGS","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADFLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADPARAM","package":"druntime","parentType":"","signature":"ICERR_BADPARAM","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADPARAM"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADSIZE","package":"druntime","parentType":"","signature":"ICERR_BADSIZE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADHANDLE","package":"druntime","parentType":"","signature":"ICERR_BADHANDLE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADHANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_CANTUPDATE","package":"druntime","parentType":"","signature":"ICERR_CANTUPDATE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_CANTUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_ABORT","package":"druntime","parentType":"","signature":"ICERR_ABORT","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_ABORT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_ERROR","package":"druntime","parentType":"","signature":"ICERR_ERROR","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADBITDEPTH","package":"druntime","parentType":"","signature":"ICERR_BADBITDEPTH","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADBITDEPTH"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_BADIMAGESIZE","package":"druntime","parentType":"","signature":"ICERR_BADIMAGESIZE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_BADIMAGESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICERR_CUSTOM","package":"druntime","parentType":"","signature":"ICERR_CUSTOM","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICERR_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICMODE_INTERNALF_FUNCTION32","package":"druntime","parentType":"","signature":"ICMODE_INTERNALF_FUNCTION32","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICMODE_INTERNALF_FUNCTION32"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICMODE_INTERNALF_MASK","package":"druntime","parentType":"","signature":"ICMODE_INTERNALF_MASK","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICMODE_INTERNALF_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICQUALITY_LOW","package":"druntime","parentType":"","signature":"ICQUALITY_LOW","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICQUALITY_LOW"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICQUALITY_HIGH","package":"druntime","parentType":"","signature":"ICQUALITY_HIGH","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICQUALITY_HIGH"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICQUALITY_DEFAULT","package":"druntime","parentType":"","signature":"ICQUALITY_DEFAULT","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICQUALITY_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICM_FRAMERATE","package":"druntime","parentType":"","signature":"ICM_FRAMERATE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICM_FRAMERATE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICM_KEYFRAMERATE","package":"druntime","parentType":"","signature":"ICM_KEYFRAMERATE","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICM_KEYFRAMERATE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICCOMPRESS_KEYFRAME","package":"druntime","parentType":"","signature":"ICCOMPRESS_KEYFRAME","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICCOMPRESS_KEYFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICCOMPRESSFRAMES_PADDING","package":"druntime","parentType":"","signature":"ICCOMPRESSFRAMES_PADDING","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICCOMPRESSFRAMES_PADDING"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICMF_CONFIGURE_QUERY","package":"druntime","parentType":"","signature":"ICMF_CONFIGURE_QUERY","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICMF_CONFIGURE_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICMF_ABOUT_QUERY","package":"druntime","parentType":"","signature":"ICMF_ABOUT_QUERY","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICMF_ABOUT_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"dwICValue","package":"druntime","parentType":"","signature":"DWORD dwICValue","url":"/ddoc/druntime/core/sys/windows/vfw.html#dwICValue"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ICMF_COMPVARS_VALID","package":"druntime","parentType":"","signature":"ICMF_COMPVARS_VALID","url":"/ddoc/druntime/core/sys/windows/vfw.html#ICMF_COMPVARS_VALID"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"formtypeAVI","package":"druntime","parentType":"","signature":"formtypeAVI","url":"/ddoc/druntime/core/sys/windows/vfw.html#formtypeAVI"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"listtypeAVIHEADER","package":"druntime","parentType":"","signature":"listtypeAVIHEADER","url":"/ddoc/druntime/core/sys/windows/vfw.html#listtypeAVIHEADER"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidAVIMAINHDR","package":"druntime","parentType":"","signature":"ckidAVIMAINHDR","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidAVIMAINHDR"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"listtypeSTREAMHEADER","package":"druntime","parentType":"","signature":"listtypeSTREAMHEADER","url":"/ddoc/druntime/core/sys/windows/vfw.html#listtypeSTREAMHEADER"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidSTREAMHEADER","package":"druntime","parentType":"","signature":"ckidSTREAMHEADER","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidSTREAMHEADER"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidSTREAMFORMAT","package":"druntime","parentType":"","signature":"ckidSTREAMFORMAT","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidSTREAMFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidSTREAMHANDLERDATA","package":"druntime","parentType":"","signature":"ckidSTREAMHANDLERDATA","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidSTREAMHANDLERDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidSTREAMNAME","package":"druntime","parentType":"","signature":"ckidSTREAMNAME","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidSTREAMNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"listtypeAVIMOVIE","package":"druntime","parentType":"","signature":"listtypeAVIMOVIE","url":"/ddoc/druntime/core/sys/windows/vfw.html#listtypeAVIMOVIE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"listtypeAVIRECORD","package":"druntime","parentType":"","signature":"listtypeAVIRECORD","url":"/ddoc/druntime/core/sys/windows/vfw.html#listtypeAVIRECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidAVINEWINDEX","package":"druntime","parentType":"","signature":"ckidAVINEWINDEX","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidAVINEWINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"streamtypeVIDEO","package":"druntime","parentType":"","signature":"streamtypeVIDEO","url":"/ddoc/druntime/core/sys/windows/vfw.html#streamtypeVIDEO"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"streamtypeAUDIO","package":"druntime","parentType":"","signature":"streamtypeAUDIO","url":"/ddoc/druntime/core/sys/windows/vfw.html#streamtypeAUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"streamtypeMIDI","package":"druntime","parentType":"","signature":"streamtypeMIDI","url":"/ddoc/druntime/core/sys/windows/vfw.html#streamtypeMIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"streamtypeTEXT","package":"druntime","parentType":"","signature":"streamtypeTEXT","url":"/ddoc/druntime/core/sys/windows/vfw.html#streamtypeTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"cktypeDIBbits","package":"druntime","parentType":"","signature":"cktypeDIBbits","url":"/ddoc/druntime/core/sys/windows/vfw.html#cktypeDIBbits"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"cktypeDIBcompressed","package":"druntime","parentType":"","signature":"cktypeDIBcompressed","url":"/ddoc/druntime/core/sys/windows/vfw.html#cktypeDIBcompressed"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"cktypePALchange","package":"druntime","parentType":"","signature":"cktypePALchange","url":"/ddoc/druntime/core/sys/windows/vfw.html#cktypePALchange"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"cktypeWAVEbytes","package":"druntime","parentType":"","signature":"cktypeWAVEbytes","url":"/ddoc/druntime/core/sys/windows/vfw.html#cktypeWAVEbytes"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"ckidAVIPADDING","package":"druntime","parentType":"","signature":"ckidAVIPADDING","url":"/ddoc/druntime/core/sys/windows/vfw.html#ckidAVIPADDING"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVI_HEADERSIZE","package":"druntime","parentType":"","signature":"AVI_HEADERSIZE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVI_HEADERSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVISF_DISABLED","package":"druntime","parentType":"","signature":"AVISF_DISABLED","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISF_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVISF_VIDEO_PALCHANGES","package":"druntime","parentType":"","signature":"AVISF_VIDEO_PALCHANGES","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISF_VIDEO_PALCHANGES"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIGETFRAMEF_BESTDISPLAYFMT","package":"druntime","parentType":"","signature":"AVIGETFRAMEF_BESTDISPLAYFMT","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIGETFRAMEF_BESTDISPLAYFMT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVISTREAMINFO_DISABLED","package":"druntime","parentType":"","signature":"AVISTREAMINFO_DISABLED","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISTREAMINFO_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVISTREAMINFO_FORMATCHANGES","package":"druntime","parentType":"","signature":"AVISTREAMINFO_FORMATCHANGES","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVISTREAMINFO_FORMATCHANGES"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_OK","package":"druntime","parentType":"","signature":"AVIERR_OK","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_UNSUPPORTED","package":"druntime","parentType":"","signature":"AVIERR_UNSUPPORTED","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_UNSUPPORTED"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BADFORMAT","package":"druntime","parentType":"","signature":"AVIERR_BADFORMAT","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BADFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_MEMORY","package":"druntime","parentType":"","signature":"AVIERR_MEMORY","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_INTERNAL","package":"druntime","parentType":"","signature":"AVIERR_INTERNAL","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BADFLAGS","package":"druntime","parentType":"","signature":"AVIERR_BADFLAGS","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BADFLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BADPARAM","package":"druntime","parentType":"","signature":"AVIERR_BADPARAM","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BADPARAM"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BADSIZE","package":"druntime","parentType":"","signature":"AVIERR_BADSIZE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BADSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BADHANDLE","package":"druntime","parentType":"","signature":"AVIERR_BADHANDLE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BADHANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_FILEREAD","package":"druntime","parentType":"","signature":"AVIERR_FILEREAD","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_FILEREAD"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_FILEWRITE","package":"druntime","parentType":"","signature":"AVIERR_FILEWRITE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_FILEWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_FILEOPEN","package":"druntime","parentType":"","signature":"AVIERR_FILEOPEN","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_FILEOPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_COMPRESSOR","package":"druntime","parentType":"","signature":"AVIERR_COMPRESSOR","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_COMPRESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_NOCOMPRESSOR","package":"druntime","parentType":"","signature":"AVIERR_NOCOMPRESSOR","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_NOCOMPRESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_READONLY","package":"druntime","parentType":"","signature":"AVIERR_READONLY","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_NODATA","package":"druntime","parentType":"","signature":"AVIERR_NODATA","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_NODATA"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_BUFFERTOOSMALL","package":"druntime","parentType":"","signature":"AVIERR_BUFFERTOOSMALL","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_BUFFERTOOSMALL"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_CANTCOMPRESS","package":"druntime","parentType":"","signature":"AVIERR_CANTCOMPRESS","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_CANTCOMPRESS"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_USERABORT","package":"druntime","parentType":"","signature":"AVIERR_USERABORT","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_USERABORT"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVIERR_ERROR","package":"druntime","parentType":"","signature":"AVIERR_ERROR","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVIERR_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"MCIWND_WINDOW_CLASS","package":"druntime","parentType":"","signature":"TCHAR[] MCIWND_WINDOW_CLASS","url":"/ddoc/druntime/core/sys/windows/vfw.html#MCIWND_WINDOW_CLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"MCIWND_START","package":"druntime","parentType":"","signature":"MCIWND_START","url":"/ddoc/druntime/core/sys/windows/vfw.html#MCIWND_START"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"MCIWND_END","package":"druntime","parentType":"","signature":"MCIWND_END","url":"/ddoc/druntime/core/sys/windows/vfw.html#MCIWND_END"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVSTREAMMASTER_AUDIO","package":"druntime","parentType":"","signature":"AVSTREAMMASTER_AUDIO","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVSTREAMMASTER_AUDIO"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"AVSTREAMMASTER_NONE","package":"druntime","parentType":"","signature":"AVSTREAMMASTER_NONE","url":"/ddoc/druntime/core/sys/windows/vfw.html#AVSTREAMMASTER_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"CONTROLCALLBACK_PREROLL","package":"druntime","parentType":"","signature":"CONTROLCALLBACK_PREROLL","url":"/ddoc/druntime/core/sys/windows/vfw.html#CONTROLCALLBACK_PREROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"CONTROLCALLBACK_CAPTURING","package":"druntime","parentType":"","signature":"CONTROLCALLBACK_CAPTURING","url":"/ddoc/druntime/core/sys/windows/vfw.html#CONTROLCALLBACK_CAPTURING"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"infotypeDIGITIZATION_TIME","package":"druntime","parentType":"","signature":"infotypeDIGITIZATION_TIME","url":"/ddoc/druntime/core/sys/windows/vfw.html#infotypeDIGITIZATION_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.vfw","name":"infotypeSMPTE_TIME","package":"druntime","parentType":"","signature":"infotypeSMPTE_TIME","url":"/ddoc/druntime/core/sys/windows/vfw.html#infotypeSMPTE_TIME"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.w32api","name":"core.sys.windows.w32api","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/w32api.html"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"__W32API_VERSION","package":"druntime","parentType":"","signature":"__W32API_VERSION","url":"/ddoc/druntime/core/sys/windows/w32api.html#__W32API_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"__W32API_MAJOR_VERSION","package":"druntime","parentType":"","signature":"__W32API_MAJOR_VERSION","url":"/ddoc/druntime/core/sys/windows/w32api.html#__W32API_MAJOR_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"__W32API_MINOR_VERSION","package":"druntime","parentType":"","signature":"__W32API_MINOR_VERSION","url":"/ddoc/druntime/core/sys/windows/w32api.html#__W32API_MINOR_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows95","package":"druntime","parentType":"","signature":"Windows95","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows95"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows98","package":"druntime","parentType":"","signature":"Windows98","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows98"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"WindowsME","package":"druntime","parentType":"","signature":"WindowsME","url":"/ddoc/druntime/core/sys/windows/w32api.html#WindowsME"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"WindowsNT4","package":"druntime","parentType":"","signature":"WindowsNT4","url":"/ddoc/druntime/core/sys/windows/w32api.html#WindowsNT4"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows2000","package":"druntime","parentType":"","signature":"Windows2000","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows2000"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"WindowsXP","package":"druntime","parentType":"","signature":"WindowsXP","url":"/ddoc/druntime/core/sys/windows/w32api.html#WindowsXP"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows2003","package":"druntime","parentType":"","signature":"Windows2003","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows2003"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"WindowsVista","package":"druntime","parentType":"","signature":"WindowsVista","url":"/ddoc/druntime/core/sys/windows/w32api.html#WindowsVista"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows7","package":"druntime","parentType":"","signature":"Windows7","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows7"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"Windows8","package":"druntime","parentType":"","signature":"Windows8","url":"/ddoc/druntime/core/sys/windows/w32api.html#Windows8"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE3","package":"druntime","parentType":"","signature":"IE3","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE3"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE301","package":"druntime","parentType":"","signature":"IE301","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE301"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE302","package":"druntime","parentType":"","signature":"IE302","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE302"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE4","package":"druntime","parentType":"","signature":"IE4","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE4"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE401","package":"druntime","parentType":"","signature":"IE401","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE401"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE5","package":"druntime","parentType":"","signature":"IE5","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE5"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE5a","package":"druntime","parentType":"","signature":"IE5a","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE5a"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE5b","package":"druntime","parentType":"","signature":"IE5b","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE5b"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE501","package":"druntime","parentType":"","signature":"IE501","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE501"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE55","package":"druntime","parentType":"","signature":"IE55","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE55"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE56","package":"druntime","parentType":"","signature":"IE56","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE56"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE6","package":"druntime","parentType":"","signature":"IE6","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE6"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE601","package":"druntime","parentType":"","signature":"IE601","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE601"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE602","package":"druntime","parentType":"","signature":"IE602","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE602"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE7","package":"druntime","parentType":"","signature":"IE7","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE7"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE8","package":"druntime","parentType":"","signature":"IE8","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE8"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE9","package":"druntime","parentType":"","signature":"IE9","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE9"},{"doc":"","kind":"variable","module":"core.sys.windows.w32api","name":"IE10","package":"druntime","parentType":"","signature":"IE10","url":"/ddoc/druntime/core/sys/windows/w32api.html#IE10"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winbase","name":"core.sys.windows.winbase","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winbase.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MAKEINTATOM","package":"druntime","parentType":"","signature":"LPTSTR MAKEINTATOM()(ushort  i)","url":"/ddoc/druntime/core/sys/windows/winbase/MAKEINTATOM.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_hread","package":"druntime","parentType":"","signature":"int _hread(HFILE,  LPVOID,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/_hread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_hwrite","package":"druntime","parentType":"","signature":"int _hwrite(HFILE,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/_hwrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_lclose","package":"druntime","parentType":"","signature":"HFILE _lclose(HFILE)","url":"/ddoc/druntime/core/sys/windows/winbase/_lclose.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_lcreat","package":"druntime","parentType":"","signature":"HFILE _lcreat(LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/_lcreat.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_llseek","package":"druntime","parentType":"","signature":"LONG _llseek(HFILE,  LONG,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/_llseek.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_lopen","package":"druntime","parentType":"","signature":"HFILE _lopen(LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/_lopen.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_lread","package":"druntime","parentType":"","signature":"UINT _lread(HFILE,  LPVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/_lread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"_lwrite","package":"druntime","parentType":"","signature":"UINT _lwrite(HFILE,  LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/_lwrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalCompact","package":"druntime","parentType":"","signature":"SIZE_T GlobalCompact(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalCompact.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalFix","package":"druntime","parentType":"","signature":"VOID GlobalFix(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalFix.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalFlags","package":"druntime","parentType":"","signature":"UINT GlobalFlags(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalFlags.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalUnfix","package":"druntime","parentType":"","signature":"VOID GlobalUnfix(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalUnfix.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalUnWire","package":"druntime","parentType":"","signature":"BOOL GlobalUnWire(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalUnWire.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalWire","package":"druntime","parentType":"","signature":"PVOID GlobalWire(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalWire.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalCompact","package":"druntime","parentType":"","signature":"SIZE_T LocalCompact(UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalCompact.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalFlags","package":"druntime","parentType":"","signature":"UINT LocalFlags(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalFlags.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalShrink","package":"druntime","parentType":"","signature":"SIZE_T LocalShrink(HLOCAL,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalShrink.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InterlockedIncrement","package":"druntime","parentType":"","signature":"LONG InterlockedIncrement(LPLONG lpAddend)","url":"/ddoc/druntime/core/sys/windows/winbase/InterlockedIncrement.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InterlockedDecrement","package":"druntime","parentType":"","signature":"LONG InterlockedDecrement(LPLONG lpAddend)","url":"/ddoc/druntime/core/sys/windows/winbase/InterlockedDecrement.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InterlockedExchange","package":"druntime","parentType":"","signature":"LONG InterlockedExchange(LPLONG Target,  LONG Value)","url":"/ddoc/druntime/core/sys/windows/winbase/InterlockedExchange.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InterlockedExchangeAdd","package":"druntime","parentType":"","signature":"LONG InterlockedExchangeAdd(LPLONG Addend,  LONG Value)","url":"/ddoc/druntime/core/sys/windows/winbase/InterlockedExchangeAdd.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InterlockedCompareExchange","package":"druntime","parentType":"","signature":"LONG InterlockedCompareExchange(LONG * Destination,  LONG Exchange,  LONG Comperand)","url":"/ddoc/druntime/core/sys/windows/winbase/InterlockedCompareExchange.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAtomA","package":"druntime","parentType":"","signature":"ATOM AddAtomA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAtomA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAtomW","package":"druntime","parentType":"","signature":"ATOM AddAtomW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAtomW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AreFileApisANSI","package":"druntime","parentType":"","signature":"BOOL AreFileApisANSI()","url":"/ddoc/druntime/core/sys/windows/winbase/AreFileApisANSI.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"Beep","package":"druntime","parentType":"","signature":"BOOL Beep(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/Beep.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BeginUpdateResourceA","package":"druntime","parentType":"","signature":"HANDLE BeginUpdateResourceA(LPCSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/BeginUpdateResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BeginUpdateResourceW","package":"druntime","parentType":"","signature":"HANDLE BeginUpdateResourceW(LPCWSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/BeginUpdateResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BuildCommDCBA","package":"druntime","parentType":"","signature":"BOOL BuildCommDCBA(LPCSTR,  LPDCB)","url":"/ddoc/druntime/core/sys/windows/winbase/BuildCommDCBA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BuildCommDCBW","package":"druntime","parentType":"","signature":"BOOL BuildCommDCBW(LPCWSTR,  LPDCB)","url":"/ddoc/druntime/core/sys/windows/winbase/BuildCommDCBW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BuildCommDCBAndTimeoutsA","package":"druntime","parentType":"","signature":"BOOL BuildCommDCBAndTimeoutsA(LPCSTR,  LPDCB,  LPCOMMTIMEOUTS)","url":"/ddoc/druntime/core/sys/windows/winbase/BuildCommDCBAndTimeoutsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BuildCommDCBAndTimeoutsW","package":"druntime","parentType":"","signature":"BOOL BuildCommDCBAndTimeoutsW(LPCWSTR,  LPDCB,  LPCOMMTIMEOUTS)","url":"/ddoc/druntime/core/sys/windows/winbase/BuildCommDCBAndTimeoutsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CallNamedPipeA","package":"druntime","parentType":"","signature":"BOOL CallNamedPipeA(LPCSTR,  PVOID,  DWORD,  PVOID,  DWORD,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CallNamedPipeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CallNamedPipeW","package":"druntime","parentType":"","signature":"BOOL CallNamedPipeW(LPCWSTR,  PVOID,  DWORD,  PVOID,  DWORD,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CallNamedPipeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CancelDeviceWakeupRequest","package":"druntime","parentType":"","signature":"BOOL CancelDeviceWakeupRequest(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CancelDeviceWakeupRequest.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CheckTokenMembership","package":"druntime","parentType":"","signature":"BOOL CheckTokenMembership(HANDLE,  PSID,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/CheckTokenMembership.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ClearCommBreak","package":"druntime","parentType":"","signature":"BOOL ClearCommBreak(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ClearCommBreak.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ClearCommError","package":"druntime","parentType":"","signature":"BOOL ClearCommError(HANDLE,  PDWORD,  LPCOMSTAT)","url":"/ddoc/druntime/core/sys/windows/winbase/ClearCommError.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CloseHandle","package":"druntime","parentType":"","signature":"BOOL CloseHandle(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CloseHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CommConfigDialogA","package":"druntime","parentType":"","signature":"BOOL CommConfigDialogA(LPCSTR,  HWND,  LPCOMMCONFIG)","url":"/ddoc/druntime/core/sys/windows/winbase/CommConfigDialogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CommConfigDialogW","package":"druntime","parentType":"","signature":"BOOL CommConfigDialogW(LPCWSTR,  HWND,  LPCOMMCONFIG)","url":"/ddoc/druntime/core/sys/windows/winbase/CommConfigDialogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CompareFileTime","package":"druntime","parentType":"","signature":"LONG CompareFileTime(const(FILETIME) *,  const(FILETIME) *)","url":"/ddoc/druntime/core/sys/windows/winbase/CompareFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ContinueDebugEvent","package":"druntime","parentType":"","signature":"BOOL ContinueDebugEvent(DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/ContinueDebugEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CopyFileA","package":"druntime","parentType":"","signature":"BOOL CopyFileA(LPCSTR,  LPCSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/CopyFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CopyFileW","package":"druntime","parentType":"","signature":"BOOL CopyFileW(LPCWSTR,  LPCWSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/CopyFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CopyFileExA","package":"druntime","parentType":"","signature":"BOOL CopyFileExA(LPCSTR,  LPCSTR,  LPPROGRESS_ROUTINE,  LPVOID,  LPBOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CopyFileExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CopyFileExW","package":"druntime","parentType":"","signature":"BOOL CopyFileExW(LPCWSTR,  LPCWSTR,  LPPROGRESS_ROUTINE,  LPVOID,  LPBOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CopyFileExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RtlFillMemory","package":"druntime","parentType":"","signature":"void RtlFillMemory(PVOID Destination,  SIZE_T Length,  BYTE Fill)","url":"/ddoc/druntime/core/sys/windows/winbase/RtlFillMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RtlZeroMemory","package":"druntime","parentType":"","signature":"void RtlZeroMemory(PVOID Destination,  SIZE_T Length)","url":"/ddoc/druntime/core/sys/windows/winbase/RtlZeroMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateDirectoryA","package":"druntime","parentType":"","signature":"BOOL CreateDirectoryA(LPCSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateDirectoryW","package":"druntime","parentType":"","signature":"BOOL CreateDirectoryW(LPCWSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateDirectoryExA","package":"druntime","parentType":"","signature":"BOOL CreateDirectoryExA(LPCSTR,  LPCSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateDirectoryExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateDirectoryExW","package":"druntime","parentType":"","signature":"BOOL CreateDirectoryExW(LPCWSTR,  LPCWSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateDirectoryExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateEventA","package":"druntime","parentType":"","signature":"HANDLE CreateEventA(LPSECURITY_ATTRIBUTES,  BOOL,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateEventA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateEventW","package":"druntime","parentType":"","signature":"HANDLE CreateEventW(LPSECURITY_ATTRIBUTES,  BOOL,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateEventW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateFileA","package":"druntime","parentType":"","signature":"HANDLE CreateFileA(LPCSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES,  DWORD,  DWORD,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateFileW","package":"druntime","parentType":"","signature":"HANDLE CreateFileW(LPCWSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES,  DWORD,  DWORD,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateIoCompletionPort","package":"druntime","parentType":"","signature":"HANDLE CreateIoCompletionPort(HANDLE,  HANDLE,  ULONG_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateIoCompletionPort.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateMailslotA","package":"druntime","parentType":"","signature":"HANDLE CreateMailslotA(LPCSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateMailslotA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateMailslotW","package":"druntime","parentType":"","signature":"HANDLE CreateMailslotW(LPCWSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateMailslotW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateMutexA","package":"druntime","parentType":"","signature":"HANDLE CreateMutexA(LPSECURITY_ATTRIBUTES,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateMutexA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateMutexW","package":"druntime","parentType":"","signature":"HANDLE CreateMutexW(LPSECURITY_ATTRIBUTES,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateMutexW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreatePipe","package":"druntime","parentType":"","signature":"BOOL CreatePipe(PHANDLE,  PHANDLE,  LPSECURITY_ATTRIBUTES,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreatePipe.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateProcessA","package":"druntime","parentType":"","signature":"BOOL CreateProcessA(LPCSTR,  LPSTR,  LPSECURITY_ATTRIBUTES,  LPSECURITY_ATTRIBUTES,  BOOL,  DWORD,  PVOID,  LPCSTR,  LPSTARTUPINFOA,  LPPROCESS_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateProcessA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateProcessW","package":"druntime","parentType":"","signature":"BOOL CreateProcessW(LPCWSTR,  LPWSTR,  LPSECURITY_ATTRIBUTES,  LPSECURITY_ATTRIBUTES,  BOOL,  DWORD,  PVOID,  LPCWSTR,  LPSTARTUPINFOW,  LPPROCESS_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateProcessW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateSemaphoreA","package":"druntime","parentType":"","signature":"HANDLE CreateSemaphoreA(LPSECURITY_ATTRIBUTES,  LONG,  LONG,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateSemaphoreA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateSemaphoreW","package":"druntime","parentType":"","signature":"HANDLE CreateSemaphoreW(LPSECURITY_ATTRIBUTES,  LONG,  LONG,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateSemaphoreW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateThread","package":"druntime","parentType":"","signature":"HANDLE CreateThread(LPSECURITY_ATTRIBUTES,  SIZE_T,  LPTHREAD_START_ROUTINE,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DebugActiveProcess","package":"druntime","parentType":"","signature":"BOOL DebugActiveProcess(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/DebugActiveProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DebugBreak","package":"druntime","parentType":"","signature":"void DebugBreak()","url":"/ddoc/druntime/core/sys/windows/winbase/DebugBreak.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteAtom","package":"druntime","parentType":"","signature":"ATOM DeleteAtom(ATOM)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteAtom.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteCriticalSection","package":"druntime","parentType":"","signature":"void DeleteCriticalSection(PCRITICAL_SECTION)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteFileA","package":"druntime","parentType":"","signature":"BOOL DeleteFileA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteFileW","package":"druntime","parentType":"","signature":"BOOL DeleteFileW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DisableThreadLibraryCalls","package":"druntime","parentType":"","signature":"BOOL DisableThreadLibraryCalls(HMODULE)","url":"/ddoc/druntime/core/sys/windows/winbase/DisableThreadLibraryCalls.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DosDateTimeToFileTime","package":"druntime","parentType":"","signature":"BOOL DosDateTimeToFileTime(WORD,  WORD,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/DosDateTimeToFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DuplicateHandle","package":"druntime","parentType":"","signature":"BOOL DuplicateHandle(HANDLE,  HANDLE,  HANDLE,  PHANDLE,  DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/DuplicateHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EndUpdateResourceA","package":"druntime","parentType":"","signature":"BOOL EndUpdateResourceA(HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/EndUpdateResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EndUpdateResourceW","package":"druntime","parentType":"","signature":"BOOL EndUpdateResourceW(HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/EndUpdateResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnterCriticalSection","package":"druntime","parentType":"","signature":"void EnterCriticalSection(LPCRITICAL_SECTION)","url":"/ddoc/druntime/core/sys/windows/winbase/EnterCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnterCriticalSection","package":"druntime","parentType":"","signature":"void EnterCriticalSection(shared(CRITICAL_SECTION) *)","url":"/ddoc/druntime/core/sys/windows/winbase/EnterCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceLanguagesA","package":"druntime","parentType":"","signature":"BOOL EnumResourceLanguagesA(HMODULE,  LPCSTR,  LPCSTR,  ENUMRESLANGPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceLanguagesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceLanguagesW","package":"druntime","parentType":"","signature":"BOOL EnumResourceLanguagesW(HMODULE,  LPCWSTR,  LPCWSTR,  ENUMRESLANGPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceLanguagesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceNamesA","package":"druntime","parentType":"","signature":"BOOL EnumResourceNamesA(HMODULE,  LPCSTR,  ENUMRESNAMEPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceNamesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceNamesW","package":"druntime","parentType":"","signature":"BOOL EnumResourceNamesW(HMODULE,  LPCWSTR,  ENUMRESNAMEPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceNamesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceTypesA","package":"druntime","parentType":"","signature":"BOOL EnumResourceTypesA(HMODULE,  ENUMRESTYPEPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceTypesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EnumResourceTypesW","package":"druntime","parentType":"","signature":"BOOL EnumResourceTypesW(HMODULE,  ENUMRESTYPEPROC,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/EnumResourceTypesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EscapeCommFunction","package":"druntime","parentType":"","signature":"BOOL EscapeCommFunction(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/EscapeCommFunction.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ExitProcess","package":"druntime","parentType":"","signature":"void ExitProcess(UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/ExitProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ExitThread","package":"druntime","parentType":"","signature":"void ExitThread(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/ExitThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ExpandEnvironmentStringsA","package":"druntime","parentType":"","signature":"DWORD ExpandEnvironmentStringsA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/ExpandEnvironmentStringsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ExpandEnvironmentStringsW","package":"druntime","parentType":"","signature":"DWORD ExpandEnvironmentStringsW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/ExpandEnvironmentStringsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FatalAppExitA","package":"druntime","parentType":"","signature":"void FatalAppExitA(UINT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FatalAppExitA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FatalAppExitW","package":"druntime","parentType":"","signature":"void FatalAppExitW(UINT,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FatalAppExitW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FatalExit","package":"druntime","parentType":"","signature":"void FatalExit(int)","url":"/ddoc/druntime/core/sys/windows/winbase/FatalExit.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FileTimeToDosDateTime","package":"druntime","parentType":"","signature":"BOOL FileTimeToDosDateTime(const(FILETIME) *,  LPWORD,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FileTimeToDosDateTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FileTimeToLocalFileTime","package":"druntime","parentType":"","signature":"BOOL FileTimeToLocalFileTime(const(FILETIME) *,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/FileTimeToLocalFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FileTimeToSystemTime","package":"druntime","parentType":"","signature":"BOOL FileTimeToSystemTime(const(FILETIME) *,  LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/winbase/FileTimeToSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindAtomA","package":"druntime","parentType":"","signature":"ATOM FindAtomA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FindAtomA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindAtomW","package":"druntime","parentType":"","signature":"ATOM FindAtomW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FindAtomW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindClose","package":"druntime","parentType":"","signature":"BOOL FindClose(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/FindClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindCloseChangeNotification","package":"druntime","parentType":"","signature":"BOOL FindCloseChangeNotification(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/FindCloseChangeNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstChangeNotificationA","package":"druntime","parentType":"","signature":"HANDLE FindFirstChangeNotificationA(LPCSTR,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstChangeNotificationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstChangeNotificationW","package":"druntime","parentType":"","signature":"HANDLE FindFirstChangeNotificationW(LPCWSTR,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstChangeNotificationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstFileA","package":"druntime","parentType":"","signature":"HANDLE FindFirstFileA(LPCSTR,  LPWIN32_FIND_DATAA)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstFileW","package":"druntime","parentType":"","signature":"HANDLE FindFirstFileW(LPCWSTR,  LPWIN32_FIND_DATAW)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindNextChangeNotification","package":"druntime","parentType":"","signature":"BOOL FindNextChangeNotification(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/FindNextChangeNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindNextFileA","package":"druntime","parentType":"","signature":"BOOL FindNextFileA(HANDLE,  LPWIN32_FIND_DATAA)","url":"/ddoc/druntime/core/sys/windows/winbase/FindNextFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindNextFileW","package":"druntime","parentType":"","signature":"BOOL FindNextFileW(HANDLE,  LPWIN32_FIND_DATAW)","url":"/ddoc/druntime/core/sys/windows/winbase/FindNextFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindResourceA","package":"druntime","parentType":"","signature":"HRSRC FindResourceA(HMODULE,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FindResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindResourceW","package":"druntime","parentType":"","signature":"HRSRC FindResourceW(HINSTANCE,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FindResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindResourceExA","package":"druntime","parentType":"","signature":"HRSRC FindResourceExA(HINSTANCE,  LPCSTR,  LPCSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindResourceExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindResourceExW","package":"druntime","parentType":"","signature":"HRSRC FindResourceExW(HINSTANCE,  LPCWSTR,  LPCWSTR,  WORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindResourceExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FlushFileBuffers","package":"druntime","parentType":"","signature":"BOOL FlushFileBuffers(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/FlushFileBuffers.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FlushInstructionCache","package":"druntime","parentType":"","signature":"BOOL FlushInstructionCache(HANDLE,  PCVOID,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/FlushInstructionCache.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FormatMessageA","package":"druntime","parentType":"","signature":"DWORD FormatMessageA(DWORD,  PCVOID,  DWORD,  DWORD,  LPSTR,  DWORD,  va_list *)","url":"/ddoc/druntime/core/sys/windows/winbase/FormatMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FormatMessageW","package":"druntime","parentType":"","signature":"DWORD FormatMessageW(DWORD,  PCVOID,  DWORD,  DWORD,  LPWSTR,  DWORD,  va_list *)","url":"/ddoc/druntime/core/sys/windows/winbase/FormatMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeEnvironmentStringsA","package":"druntime","parentType":"","signature":"BOOL FreeEnvironmentStringsA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeEnvironmentStringsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeEnvironmentStringsW","package":"druntime","parentType":"","signature":"BOOL FreeEnvironmentStringsW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeEnvironmentStringsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeLibrary","package":"druntime","parentType":"","signature":"BOOL FreeLibrary(HMODULE)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeLibrary.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeLibraryAndExitThread","package":"druntime","parentType":"","signature":"void FreeLibraryAndExitThread(HMODULE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeLibraryAndExitThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeResource","package":"druntime","parentType":"","signature":"BOOL FreeResource(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeResource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetAtomNameA","package":"druntime","parentType":"","signature":"UINT GetAtomNameA(ATOM,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/GetAtomNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetAtomNameW","package":"druntime","parentType":"","signature":"UINT GetAtomNameW(ATOM,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/GetAtomNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommandLineA","package":"druntime","parentType":"","signature":"LPSTR GetCommandLineA()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommandLineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommandLineW","package":"druntime","parentType":"","signature":"LPWSTR GetCommandLineW()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommandLineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommConfig","package":"druntime","parentType":"","signature":"BOOL GetCommConfig(HANDLE,  LPCOMMCONFIG,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommConfig.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommMask","package":"druntime","parentType":"","signature":"BOOL GetCommMask(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommModemStatus","package":"druntime","parentType":"","signature":"BOOL GetCommModemStatus(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommModemStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommProperties","package":"druntime","parentType":"","signature":"BOOL GetCommProperties(HANDLE,  LPCOMMPROP)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommProperties.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommState","package":"druntime","parentType":"","signature":"BOOL GetCommState(HANDLE,  LPDCB)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCommTimeouts","package":"druntime","parentType":"","signature":"BOOL GetCommTimeouts(HANDLE,  LPCOMMTIMEOUTS)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCommTimeouts.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetComputerNameA","package":"druntime","parentType":"","signature":"BOOL GetComputerNameA(LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetComputerNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetComputerNameW","package":"druntime","parentType":"","signature":"BOOL GetComputerNameW(LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetComputerNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentDirectoryA","package":"druntime","parentType":"","signature":"DWORD GetCurrentDirectoryA(DWORD,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentDirectoryW","package":"druntime","parentType":"","signature":"DWORD GetCurrentDirectoryW(DWORD,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentProcess","package":"druntime","parentType":"","signature":"HANDLE GetCurrentProcess()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentProcessId","package":"druntime","parentType":"","signature":"DWORD GetCurrentProcessId()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentProcessId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentThread","package":"druntime","parentType":"","signature":"HANDLE GetCurrentThread()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentThreadId","package":"druntime","parentType":"","signature":"DWORD GetCurrentThreadId()","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentThreadId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDefaultCommConfigA","package":"druntime","parentType":"","signature":"BOOL GetDefaultCommConfigA(LPCSTR,  LPCOMMCONFIG,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDefaultCommConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDefaultCommConfigW","package":"druntime","parentType":"","signature":"BOOL GetDefaultCommConfigW(LPCWSTR,  LPCOMMCONFIG,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDefaultCommConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDiskFreeSpaceA","package":"druntime","parentType":"","signature":"BOOL GetDiskFreeSpaceA(LPCSTR,  PDWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDiskFreeSpaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDiskFreeSpaceW","package":"druntime","parentType":"","signature":"BOOL GetDiskFreeSpaceW(LPCWSTR,  PDWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDiskFreeSpaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDiskFreeSpaceExA","package":"druntime","parentType":"","signature":"BOOL GetDiskFreeSpaceExA(LPCSTR,  PULARGE_INTEGER,  PULARGE_INTEGER,  PULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDiskFreeSpaceExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDiskFreeSpaceExW","package":"druntime","parentType":"","signature":"BOOL GetDiskFreeSpaceExW(LPCWSTR,  PULARGE_INTEGER,  PULARGE_INTEGER,  PULARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDiskFreeSpaceExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDriveTypeA","package":"druntime","parentType":"","signature":"UINT GetDriveTypeA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDriveTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetDriveTypeW","package":"druntime","parentType":"","signature":"UINT GetDriveTypeW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetDriveTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetEnvironmentStringsA","package":"druntime","parentType":"","signature":"LPSTR GetEnvironmentStringsA()","url":"/ddoc/druntime/core/sys/windows/winbase/GetEnvironmentStringsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetEnvironmentStringsW","package":"druntime","parentType":"","signature":"LPWSTR GetEnvironmentStringsW()","url":"/ddoc/druntime/core/sys/windows/winbase/GetEnvironmentStringsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetEnvironmentVariableA","package":"druntime","parentType":"","signature":"DWORD GetEnvironmentVariableA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetEnvironmentVariableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetEnvironmentVariableW","package":"druntime","parentType":"","signature":"DWORD GetEnvironmentVariableW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetEnvironmentVariableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetExitCodeProcess","package":"druntime","parentType":"","signature":"BOOL GetExitCodeProcess(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetExitCodeProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetExitCodeThread","package":"druntime","parentType":"","signature":"BOOL GetExitCodeThread(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetExitCodeThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileAttributesA","package":"druntime","parentType":"","signature":"DWORD GetFileAttributesA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileAttributesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileAttributesW","package":"druntime","parentType":"","signature":"DWORD GetFileAttributesW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileAttributesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileInformationByHandle","package":"druntime","parentType":"","signature":"BOOL GetFileInformationByHandle(HANDLE,  LPBY_HANDLE_FILE_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileInformationByHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileSize","package":"druntime","parentType":"","signature":"DWORD GetFileSize(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileTime","package":"druntime","parentType":"","signature":"BOOL GetFileTime(HANDLE,  LPFILETIME,  LPFILETIME,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileType","package":"druntime","parentType":"","signature":"DWORD GetFileType(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileType.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFinalPathNameByHandleA","package":"druntime","parentType":"","signature":"DWORD GetFinalPathNameByHandleA(HANDLE,  LPSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFinalPathNameByHandleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFinalPathNameByHandleW","package":"druntime","parentType":"","signature":"DWORD GetFinalPathNameByHandleW(HANDLE,  LPWSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFinalPathNameByHandleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFullPathNameA","package":"druntime","parentType":"","signature":"DWORD GetFullPathNameA(LPCSTR,  DWORD,  LPSTR,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFullPathNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFullPathNameW","package":"druntime","parentType":"","signature":"DWORD GetFullPathNameW(LPCWSTR,  DWORD,  LPWSTR,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFullPathNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLastError","package":"druntime","parentType":"","signature":"DWORD GetLastError()","url":"/ddoc/druntime/core/sys/windows/winbase/GetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLocalTime","package":"druntime","parentType":"","signature":"void GetLocalTime(LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLocalTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLogicalDrives","package":"druntime","parentType":"","signature":"DWORD GetLogicalDrives()","url":"/ddoc/druntime/core/sys/windows/winbase/GetLogicalDrives.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLogicalDriveStringsA","package":"druntime","parentType":"","signature":"DWORD GetLogicalDriveStringsA(DWORD,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLogicalDriveStringsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLogicalDriveStringsW","package":"druntime","parentType":"","signature":"DWORD GetLogicalDriveStringsW(DWORD,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLogicalDriveStringsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetMailslotInfo","package":"druntime","parentType":"","signature":"BOOL GetMailslotInfo(HANDLE,  PDWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetMailslotInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetModuleFileNameA","package":"druntime","parentType":"","signature":"DWORD GetModuleFileNameA(HINSTANCE,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetModuleFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetModuleFileNameW","package":"druntime","parentType":"","signature":"DWORD GetModuleFileNameW(HINSTANCE,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetModuleFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetModuleHandleA","package":"druntime","parentType":"","signature":"HMODULE GetModuleHandleA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetModuleHandleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetModuleHandleW","package":"druntime","parentType":"","signature":"HMODULE GetModuleHandleW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetModuleHandleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetNamedPipeHandleStateA","package":"druntime","parentType":"","signature":"BOOL GetNamedPipeHandleStateA(HANDLE,  PDWORD,  PDWORD,  PDWORD,  PDWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetNamedPipeHandleStateA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetNamedPipeHandleStateW","package":"druntime","parentType":"","signature":"BOOL GetNamedPipeHandleStateW(HANDLE,  PDWORD,  PDWORD,  PDWORD,  PDWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetNamedPipeHandleStateW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetNamedPipeInfo","package":"druntime","parentType":"","signature":"BOOL GetNamedPipeInfo(HANDLE,  PDWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetNamedPipeInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetOverlappedResult","package":"druntime","parentType":"","signature":"BOOL GetOverlappedResult(HANDLE,  LPOVERLAPPED,  PDWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetOverlappedResult.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPriorityClass","package":"druntime","parentType":"","signature":"DWORD GetPriorityClass(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPriorityClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileIntA","package":"druntime","parentType":"","signature":"UINT GetPrivateProfileIntA(LPCSTR,  LPCSTR,  INT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileIntA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileIntW","package":"druntime","parentType":"","signature":"UINT GetPrivateProfileIntW(LPCWSTR,  LPCWSTR,  INT,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileIntW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileSectionA","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileSectionA(LPCSTR,  LPSTR,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileSectionW","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileSectionW(LPCWSTR,  LPWSTR,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileSectionNamesA","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileSectionNamesA(LPSTR,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileSectionNamesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileSectionNamesW","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileSectionNamesW(LPWSTR,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileSectionNamesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileStringA","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileStringA(LPCSTR,  LPCSTR,  LPCSTR,  LPSTR,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileStringW","package":"druntime","parentType":"","signature":"DWORD GetPrivateProfileStringW(LPCWSTR,  LPCWSTR,  LPCWSTR,  LPWSTR,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileStructA","package":"druntime","parentType":"","signature":"BOOL GetPrivateProfileStructA(LPCSTR,  LPCSTR,  LPVOID,  UINT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileStructA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateProfileStructW","package":"druntime","parentType":"","signature":"BOOL GetPrivateProfileStructW(LPCWSTR,  LPCWSTR,  LPVOID,  UINT,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateProfileStructW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcAddress","package":"druntime","parentType":"","signature":"FARPROC GetProcAddress(HMODULE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessAffinityMask","package":"druntime","parentType":"","signature":"BOOL GetProcessAffinityMask(HANDLE,  PDWORD_PTR,  PDWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessAffinityMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessVersion","package":"druntime","parentType":"","signature":"DWORD GetProcessVersion(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileIntA","package":"druntime","parentType":"","signature":"UINT GetProfileIntA(LPCSTR,  LPCSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileIntA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileIntW","package":"druntime","parentType":"","signature":"UINT GetProfileIntW(LPCWSTR,  LPCWSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileIntW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileSectionA","package":"druntime","parentType":"","signature":"DWORD GetProfileSectionA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileSectionW","package":"druntime","parentType":"","signature":"DWORD GetProfileSectionW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileStringA","package":"druntime","parentType":"","signature":"DWORD GetProfileStringA(LPCSTR,  LPCSTR,  LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProfileStringW","package":"druntime","parentType":"","signature":"DWORD GetProfileStringW(LPCWSTR,  LPCWSTR,  LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProfileStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetShortPathNameA","package":"druntime","parentType":"","signature":"DWORD GetShortPathNameA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetShortPathNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetShortPathNameW","package":"druntime","parentType":"","signature":"DWORD GetShortPathNameW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetShortPathNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetStartupInfoA","package":"druntime","parentType":"","signature":"VOID GetStartupInfoA(LPSTARTUPINFOA)","url":"/ddoc/druntime/core/sys/windows/winbase/GetStartupInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetStartupInfoW","package":"druntime","parentType":"","signature":"VOID GetStartupInfoW(LPSTARTUPINFOW)","url":"/ddoc/druntime/core/sys/windows/winbase/GetStartupInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetStdHandle","package":"druntime","parentType":"","signature":"HANDLE GetStdHandle(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetStdHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemDirectoryA","package":"druntime","parentType":"","signature":"UINT GetSystemDirectoryA(LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemDirectoryW","package":"druntime","parentType":"","signature":"UINT GetSystemDirectoryW(LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemInfo","package":"druntime","parentType":"","signature":"VOID GetSystemInfo(LPSYSTEM_INFO)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemTime","package":"druntime","parentType":"","signature":"VOID GetSystemTime(LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemTimeAdjustment","package":"druntime","parentType":"","signature":"BOOL GetSystemTimeAdjustment(PDWORD,  PDWORD,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemTimeAdjustment.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSystemTimeAsFileTime","package":"druntime","parentType":"","signature":"void GetSystemTimeAsFileTime(LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSystemTimeAsFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTempFileNameA","package":"druntime","parentType":"","signature":"UINT GetTempFileNameA(LPCSTR,  LPCSTR,  UINT,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTempFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTempFileNameW","package":"druntime","parentType":"","signature":"UINT GetTempFileNameW(LPCWSTR,  LPCWSTR,  UINT,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTempFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTempPathA","package":"druntime","parentType":"","signature":"DWORD GetTempPathA(DWORD,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTempPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTempPathW","package":"druntime","parentType":"","signature":"DWORD GetTempPathW(DWORD,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTempPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetThreadContext","package":"druntime","parentType":"","signature":"BOOL GetThreadContext(HANDLE,  LPCONTEXT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetThreadContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetThreadPriority","package":"druntime","parentType":"","signature":"int GetThreadPriority(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/GetThreadPriority.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetThreadSelectorEntry","package":"druntime","parentType":"","signature":"BOOL GetThreadSelectorEntry(HANDLE,  DWORD,  LPLDT_ENTRY)","url":"/ddoc/druntime/core/sys/windows/winbase/GetThreadSelectorEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTickCount","package":"druntime","parentType":"","signature":"DWORD GetTickCount()","url":"/ddoc/druntime/core/sys/windows/winbase/GetTickCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTimeZoneInformation","package":"druntime","parentType":"","signature":"DWORD GetTimeZoneInformation(LPTIME_ZONE_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTimeZoneInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetUserNameA","package":"druntime","parentType":"","signature":"BOOL GetUserNameA(LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetUserNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetUserNameW","package":"druntime","parentType":"","signature":"BOOL GetUserNameW(LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetUserNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetVersion","package":"druntime","parentType":"","signature":"DWORD GetVersion()","url":"/ddoc/druntime/core/sys/windows/winbase/GetVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetVersionExA","package":"druntime","parentType":"","signature":"BOOL GetVersionExA(LPOSVERSIONINFOA)","url":"/ddoc/druntime/core/sys/windows/winbase/GetVersionExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetVersionExW","package":"druntime","parentType":"","signature":"BOOL GetVersionExW(LPOSVERSIONINFOW)","url":"/ddoc/druntime/core/sys/windows/winbase/GetVersionExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetVolumeInformationA","package":"druntime","parentType":"","signature":"BOOL GetVolumeInformationA(LPCSTR,  LPSTR,  DWORD,  PDWORD,  PDWORD,  PDWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetVolumeInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetVolumeInformationW","package":"druntime","parentType":"","signature":"BOOL GetVolumeInformationW(LPCWSTR,  LPWSTR,  DWORD,  PDWORD,  PDWORD,  PDWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetVolumeInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetWindowsDirectoryA","package":"druntime","parentType":"","signature":"UINT GetWindowsDirectoryA(LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetWindowsDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetWindowsDirectoryW","package":"druntime","parentType":"","signature":"UINT GetWindowsDirectoryW(LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/GetWindowsDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetWindowThreadProcessId","package":"druntime","parentType":"","signature":"DWORD GetWindowThreadProcessId(HWND,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetWindowThreadProcessId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalAddAtomA","package":"druntime","parentType":"","signature":"ATOM GlobalAddAtomA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalAddAtomA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalAddAtomW","package":"druntime","parentType":"","signature":"ATOM GlobalAddAtomW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalAddAtomW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalDeleteAtom","package":"druntime","parentType":"","signature":"ATOM GlobalDeleteAtom(ATOM)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalDeleteAtom.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalFindAtomA","package":"druntime","parentType":"","signature":"ATOM GlobalFindAtomA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalFindAtomA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalFindAtomW","package":"druntime","parentType":"","signature":"ATOM GlobalFindAtomW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalFindAtomW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalGetAtomNameA","package":"druntime","parentType":"","signature":"UINT GlobalGetAtomNameA(ATOM,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalGetAtomNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalGetAtomNameW","package":"druntime","parentType":"","signature":"UINT GlobalGetAtomNameW(ATOM,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalGetAtomNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HasOverlappedIoCompleted","package":"druntime","parentType":"","signature":"bool HasOverlappedIoCompleted(LPOVERLAPPED lpOverlapped)","url":"/ddoc/druntime/core/sys/windows/winbase/HasOverlappedIoCompleted.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitAtomTable","package":"druntime","parentType":"","signature":"BOOL InitAtomTable(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/InitAtomTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitializeCriticalSection","package":"druntime","parentType":"","signature":"VOID InitializeCriticalSection(LPCRITICAL_SECTION)","url":"/ddoc/druntime/core/sys/windows/winbase/InitializeCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadHugeReadPtr","package":"druntime","parentType":"","signature":"BOOL IsBadHugeReadPtr(PCVOID,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadHugeReadPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadHugeWritePtr","package":"druntime","parentType":"","signature":"BOOL IsBadHugeWritePtr(PVOID,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadHugeWritePtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadReadPtr","package":"druntime","parentType":"","signature":"BOOL IsBadReadPtr(PCVOID,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadReadPtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadStringPtrA","package":"druntime","parentType":"","signature":"BOOL IsBadStringPtrA(LPCSTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadStringPtrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadStringPtrW","package":"druntime","parentType":"","signature":"BOOL IsBadStringPtrW(LPCWSTR,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadStringPtrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsBadWritePtr","package":"druntime","parentType":"","signature":"BOOL IsBadWritePtr(PVOID,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsBadWritePtr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LeaveCriticalSection","package":"druntime","parentType":"","signature":"void LeaveCriticalSection(LPCRITICAL_SECTION)","url":"/ddoc/druntime/core/sys/windows/winbase/LeaveCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LeaveCriticalSection","package":"druntime","parentType":"","signature":"void LeaveCriticalSection(shared(CRITICAL_SECTION) *)","url":"/ddoc/druntime/core/sys/windows/winbase/LeaveCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadLibraryA","package":"druntime","parentType":"","signature":"HINSTANCE LoadLibraryA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadLibraryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadLibraryW","package":"druntime","parentType":"","signature":"HINSTANCE LoadLibraryW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadLibraryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadLibraryExA","package":"druntime","parentType":"","signature":"HINSTANCE LoadLibraryExA(LPCSTR,  HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadLibraryExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadLibraryExW","package":"druntime","parentType":"","signature":"HINSTANCE LoadLibraryExW(LPCWSTR,  HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadLibraryExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadModule","package":"druntime","parentType":"","signature":"DWORD LoadModule(LPCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadModule.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LoadResource","package":"druntime","parentType":"","signature":"HGLOBAL LoadResource(HINSTANCE,  HRSRC)","url":"/ddoc/druntime/core/sys/windows/winbase/LoadResource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalFileTimeToFileTime","package":"druntime","parentType":"","signature":"BOOL LocalFileTimeToFileTime(const(FILETIME) *,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalFileTimeToFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LockFile","package":"druntime","parentType":"","signature":"BOOL LockFile(HANDLE,  DWORD,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LockFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LockResource","package":"druntime","parentType":"","signature":"PVOID LockResource(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LockResource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcatA","package":"druntime","parentType":"","signature":"LPSTR lstrcatA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcatW","package":"druntime","parentType":"","signature":"LPWSTR lstrcatW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcmpA","package":"druntime","parentType":"","signature":"int lstrcmpA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcmpA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcmpiA","package":"druntime","parentType":"","signature":"int lstrcmpiA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcmpiA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcmpiW","package":"druntime","parentType":"","signature":"int lstrcmpiW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcmpiW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcmpW","package":"druntime","parentType":"","signature":"int lstrcmpW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcmpW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcpyA","package":"druntime","parentType":"","signature":"LPSTR lstrcpyA(LPSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcpyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcpynA","package":"druntime","parentType":"","signature":"LPSTR lstrcpynA(LPSTR,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcpynA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcpynW","package":"druntime","parentType":"","signature":"LPWSTR lstrcpynW(LPWSTR,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcpynW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrcpyW","package":"druntime","parentType":"","signature":"LPWSTR lstrcpyW(LPWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrcpyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrlenA","package":"druntime","parentType":"","signature":"int lstrlenA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrlenA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"lstrlenW","package":"druntime","parentType":"","signature":"int lstrlenW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/lstrlenW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MoveFileA","package":"druntime","parentType":"","signature":"BOOL MoveFileA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/MoveFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MoveFileW","package":"druntime","parentType":"","signature":"BOOL MoveFileW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/MoveFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MulDiv","package":"druntime","parentType":"","signature":"int MulDiv(int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/MulDiv.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenEventA","package":"druntime","parentType":"","signature":"HANDLE OpenEventA(DWORD,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenEventA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenEventW","package":"druntime","parentType":"","signature":"HANDLE OpenEventW(DWORD,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenEventW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenFile","package":"druntime","parentType":"","signature":"HFILE OpenFile(LPCSTR,  LPOFSTRUCT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenMutexA","package":"druntime","parentType":"","signature":"HANDLE OpenMutexA(DWORD,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenMutexA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenMutexW","package":"druntime","parentType":"","signature":"HANDLE OpenMutexW(DWORD,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenMutexW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenProcess","package":"druntime","parentType":"","signature":"HANDLE OpenProcess(DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenSemaphoreA","package":"druntime","parentType":"","signature":"HANDLE OpenSemaphoreA(DWORD,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenSemaphoreA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenSemaphoreW","package":"druntime","parentType":"","signature":"HANDLE OpenSemaphoreW(DWORD,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenSemaphoreW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OutputDebugStringA","package":"druntime","parentType":"","signature":"void OutputDebugStringA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OutputDebugStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OutputDebugStringW","package":"druntime","parentType":"","signature":"void OutputDebugStringW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OutputDebugStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PeekNamedPipe","package":"druntime","parentType":"","signature":"BOOL PeekNamedPipe(HANDLE,  PVOID,  DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/PeekNamedPipe.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PulseEvent","package":"druntime","parentType":"","signature":"BOOL PulseEvent(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/PulseEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PurgeComm","package":"druntime","parentType":"","signature":"BOOL PurgeComm(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/PurgeComm.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"QueryPerformanceCounter","package":"druntime","parentType":"","signature":"BOOL QueryPerformanceCounter(PLARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/winbase/QueryPerformanceCounter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"QueryPerformanceFrequency","package":"druntime","parentType":"","signature":"BOOL QueryPerformanceFrequency(PLARGE_INTEGER)","url":"/ddoc/druntime/core/sys/windows/winbase/QueryPerformanceFrequency.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"QueueUserAPC","package":"druntime","parentType":"","signature":"DWORD QueueUserAPC(PAPCFUNC,  HANDLE,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/QueueUserAPC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RaiseException","package":"druntime","parentType":"","signature":"void RaiseException(DWORD,  DWORD,  DWORD,  const(ULONG_PTR) *)","url":"/ddoc/druntime/core/sys/windows/winbase/RaiseException.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadFile","package":"druntime","parentType":"","signature":"BOOL ReadFile(HANDLE,  PVOID,  DWORD,  PDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadFileEx","package":"druntime","parentType":"","signature":"BOOL ReadFileEx(HANDLE,  PVOID,  DWORD,  LPOVERLAPPED,  LPOVERLAPPED_COMPLETION_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadProcessMemory","package":"druntime","parentType":"","signature":"BOOL ReadProcessMemory(HANDLE,  PCVOID,  PVOID,  SIZE_T,  SIZE_T *)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadProcessMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReleaseMutex","package":"druntime","parentType":"","signature":"BOOL ReleaseMutex(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ReleaseMutex.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReleaseSemaphore","package":"druntime","parentType":"","signature":"BOOL ReleaseSemaphore(HANDLE,  LONG,  LPLONG)","url":"/ddoc/druntime/core/sys/windows/winbase/ReleaseSemaphore.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RemoveDirectoryA","package":"druntime","parentType":"","signature":"BOOL RemoveDirectoryA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/RemoveDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RemoveDirectoryW","package":"druntime","parentType":"","signature":"BOOL RemoveDirectoryW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/RemoveDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ResetEvent","package":"druntime","parentType":"","signature":"BOOL ResetEvent(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ResetEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ResumeThread","package":"druntime","parentType":"","signature":"DWORD ResumeThread(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ResumeThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SearchPathA","package":"druntime","parentType":"","signature":"DWORD SearchPathA(LPCSTR,  LPCSTR,  LPCSTR,  DWORD,  LPSTR,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/winbase/SearchPathA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SearchPathW","package":"druntime","parentType":"","signature":"DWORD SearchPathW(LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD,  LPWSTR,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/winbase/SearchPathW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCommBreak","package":"druntime","parentType":"","signature":"BOOL SetCommBreak(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCommBreak.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCommConfig","package":"druntime","parentType":"","signature":"BOOL SetCommConfig(HANDLE,  LPCOMMCONFIG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCommConfig.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCommMask","package":"druntime","parentType":"","signature":"BOOL SetCommMask(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCommMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCommState","package":"druntime","parentType":"","signature":"BOOL SetCommState(HANDLE,  LPDCB)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCommState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCommTimeouts","package":"druntime","parentType":"","signature":"BOOL SetCommTimeouts(HANDLE,  LPCOMMTIMEOUTS)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCommTimeouts.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetComputerNameA","package":"druntime","parentType":"","signature":"BOOL SetComputerNameA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetComputerNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetComputerNameW","package":"druntime","parentType":"","signature":"BOOL SetComputerNameW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetComputerNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCurrentDirectoryA","package":"druntime","parentType":"","signature":"BOOL SetCurrentDirectoryA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCurrentDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCurrentDirectoryW","package":"druntime","parentType":"","signature":"BOOL SetCurrentDirectoryW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCurrentDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetDefaultCommConfigA","package":"druntime","parentType":"","signature":"BOOL SetDefaultCommConfigA(LPCSTR,  LPCOMMCONFIG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetDefaultCommConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetDefaultCommConfigW","package":"druntime","parentType":"","signature":"BOOL SetDefaultCommConfigW(LPCWSTR,  LPCOMMCONFIG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetDefaultCommConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetEndOfFile","package":"druntime","parentType":"","signature":"BOOL SetEndOfFile(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetEndOfFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetEnvironmentVariableA","package":"druntime","parentType":"","signature":"BOOL SetEnvironmentVariableA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetEnvironmentVariableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetEnvironmentVariableW","package":"druntime","parentType":"","signature":"BOOL SetEnvironmentVariableW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetEnvironmentVariableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetErrorMode","package":"druntime","parentType":"","signature":"UINT SetErrorMode(UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/SetErrorMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetEvent","package":"druntime","parentType":"","signature":"BOOL SetEvent(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileApisToANSI","package":"druntime","parentType":"","signature":"VOID SetFileApisToANSI()","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileApisToANSI.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileApisToOEM","package":"druntime","parentType":"","signature":"VOID SetFileApisToOEM()","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileApisToOEM.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileAttributesA","package":"druntime","parentType":"","signature":"BOOL SetFileAttributesA(LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileAttributesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileAttributesW","package":"druntime","parentType":"","signature":"BOOL SetFileAttributesW(LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileAttributesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFilePointer","package":"druntime","parentType":"","signature":"DWORD SetFilePointer(HANDLE,  LONG,  PLONG,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFilePointer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileTime","package":"druntime","parentType":"","signature":"BOOL SetFileTime(HANDLE,  const(FILETIME) *,  const(FILETIME) *,  const(FILETIME) *)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetHandleCount","package":"druntime","parentType":"","signature":"UINT SetHandleCount(UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/SetHandleCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetLastError","package":"druntime","parentType":"","signature":"void SetLastError(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetLastErrorEx","package":"druntime","parentType":"","signature":"void SetLastErrorEx(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetLastErrorEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetLocalTime","package":"druntime","parentType":"","signature":"BOOL SetLocalTime(const(SYSTEMTIME) *)","url":"/ddoc/druntime/core/sys/windows/winbase/SetLocalTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetMailslotInfo","package":"druntime","parentType":"","signature":"BOOL SetMailslotInfo(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetMailslotInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetNamedPipeHandleState","package":"druntime","parentType":"","signature":"BOOL SetNamedPipeHandleState(HANDLE,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetNamedPipeHandleState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetPriorityClass","package":"druntime","parentType":"","signature":"BOOL SetPriorityClass(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetPriorityClass.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetStdHandle","package":"druntime","parentType":"","signature":"BOOL SetStdHandle(DWORD,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetStdHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSystemTime","package":"druntime","parentType":"","signature":"BOOL SetSystemTime(const(SYSTEMTIME) *)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetThreadAffinityMask","package":"druntime","parentType":"","signature":"DWORD_PTR SetThreadAffinityMask(HANDLE,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetThreadAffinityMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetThreadContext","package":"druntime","parentType":"","signature":"BOOL SetThreadContext(HANDLE,  const(CONTEXT) *)","url":"/ddoc/druntime/core/sys/windows/winbase/SetThreadContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetThreadPriority","package":"druntime","parentType":"","signature":"BOOL SetThreadPriority(HANDLE,  int)","url":"/ddoc/druntime/core/sys/windows/winbase/SetThreadPriority.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetTimeZoneInformation","package":"druntime","parentType":"","signature":"BOOL SetTimeZoneInformation(const(TIME_ZONE_INFORMATION) *)","url":"/ddoc/druntime/core/sys/windows/winbase/SetTimeZoneInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetUnhandledExceptionFilter","package":"druntime","parentType":"","signature":"LPTOP_LEVEL_EXCEPTION_FILTER SetUnhandledExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER)","url":"/ddoc/druntime/core/sys/windows/winbase/SetUnhandledExceptionFilter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetupComm","package":"druntime","parentType":"","signature":"BOOL SetupComm(HANDLE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetupComm.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetVolumeLabelA","package":"druntime","parentType":"","signature":"BOOL SetVolumeLabelA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetVolumeLabelA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetVolumeLabelW","package":"druntime","parentType":"","signature":"BOOL SetVolumeLabelW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetVolumeLabelW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SizeofResource","package":"druntime","parentType":"","signature":"DWORD SizeofResource(HINSTANCE,  HRSRC)","url":"/ddoc/druntime/core/sys/windows/winbase/SizeofResource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"Sleep","package":"druntime","parentType":"","signature":"void Sleep(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/Sleep.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SleepEx","package":"druntime","parentType":"","signature":"DWORD SleepEx(DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SleepEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SuspendThread","package":"druntime","parentType":"","signature":"DWORD SuspendThread(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SuspendThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SystemTimeToFileTime","package":"druntime","parentType":"","signature":"BOOL SystemTimeToFileTime(const(SYSTEMTIME) *,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/SystemTimeToFileTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TerminateProcess","package":"druntime","parentType":"","signature":"BOOL TerminateProcess(HANDLE,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/TerminateProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TerminateThread","package":"druntime","parentType":"","signature":"BOOL TerminateThread(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/TerminateThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TlsAlloc","package":"druntime","parentType":"","signature":"DWORD TlsAlloc()","url":"/ddoc/druntime/core/sys/windows/winbase/TlsAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TlsFree","package":"druntime","parentType":"","signature":"BOOL TlsFree(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/TlsFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TlsGetValue","package":"druntime","parentType":"","signature":"PVOID TlsGetValue(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/TlsGetValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TlsSetValue","package":"druntime","parentType":"","signature":"BOOL TlsSetValue(DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/TlsSetValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TransactNamedPipe","package":"druntime","parentType":"","signature":"BOOL TransactNamedPipe(HANDLE,  PVOID,  DWORD,  PVOID,  DWORD,  PDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/TransactNamedPipe.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TransmitCommChar","package":"druntime","parentType":"","signature":"BOOL TransmitCommChar(HANDLE,  char)","url":"/ddoc/druntime/core/sys/windows/winbase/TransmitCommChar.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"UnhandledExceptionFilter","package":"druntime","parentType":"","signature":"LONG UnhandledExceptionFilter(LPEXCEPTION_POINTERS)","url":"/ddoc/druntime/core/sys/windows/winbase/UnhandledExceptionFilter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"UnlockFile","package":"druntime","parentType":"","signature":"BOOL UnlockFile(HANDLE,  DWORD,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/UnlockFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitCommEvent","package":"druntime","parentType":"","signature":"BOOL WaitCommEvent(HANDLE,  PDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitCommEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitForDebugEvent","package":"druntime","parentType":"","signature":"BOOL WaitForDebugEvent(LPDEBUG_EVENT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitForDebugEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitForMultipleObjects","package":"druntime","parentType":"","signature":"DWORD WaitForMultipleObjects(DWORD,  const(HANDLE) *,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitForMultipleObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitForMultipleObjectsEx","package":"druntime","parentType":"","signature":"DWORD WaitForMultipleObjectsEx(DWORD,  const(HANDLE) *,  BOOL,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitForMultipleObjectsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitForSingleObject","package":"druntime","parentType":"","signature":"DWORD WaitForSingleObject(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitForSingleObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitForSingleObjectEx","package":"druntime","parentType":"","signature":"DWORD WaitForSingleObjectEx(HANDLE,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitForSingleObjectEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitNamedPipeA","package":"druntime","parentType":"","signature":"BOOL WaitNamedPipeA(LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitNamedPipeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WaitNamedPipeW","package":"druntime","parentType":"","signature":"BOOL WaitNamedPipeW(LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/WaitNamedPipeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WinLoadTrustProvider","package":"druntime","parentType":"","signature":"BOOL WinLoadTrustProvider(GUID *)","url":"/ddoc/druntime/core/sys/windows/winbase/WinLoadTrustProvider.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteFile","package":"druntime","parentType":"","signature":"BOOL WriteFile(HANDLE,  PCVOID,  DWORD,  PDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteFileEx","package":"druntime","parentType":"","signature":"BOOL WriteFileEx(HANDLE,  PCVOID,  DWORD,  LPOVERLAPPED,  LPOVERLAPPED_COMPLETION_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileSectionA","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileSectionA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileSectionW","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileSectionW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileStringA","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileStringA(LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileStringW","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileStringW(LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileStructA","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileStructA(LPCSTR,  LPCSTR,  LPVOID,  UINT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileStructA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WritePrivateProfileStructW","package":"druntime","parentType":"","signature":"BOOL WritePrivateProfileStructW(LPCWSTR,  LPCWSTR,  LPVOID,  UINT,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WritePrivateProfileStructW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteProcessMemory","package":"druntime","parentType":"","signature":"BOOL WriteProcessMemory(HANDLE,  LPVOID,  LPCVOID,  SIZE_T,  SIZE_T *)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteProcessMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteProfileSectionA","package":"druntime","parentType":"","signature":"BOOL WriteProfileSectionA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteProfileSectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteProfileSectionW","package":"druntime","parentType":"","signature":"BOOL WriteProfileSectionW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteProfileSectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteProfileStringA","package":"druntime","parentType":"","signature":"BOOL WriteProfileStringA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteProfileStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteProfileStringW","package":"druntime","parentType":"","signature":"BOOL WriteProfileStringW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteProfileStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalAlloc","package":"druntime","parentType":"","signature":"HGLOBAL GlobalAlloc(UINT,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalDiscard","package":"druntime","parentType":"","signature":"HGLOBAL GlobalDiscard(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalDiscard.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalFree","package":"druntime","parentType":"","signature":"HGLOBAL GlobalFree(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalHandle","package":"druntime","parentType":"","signature":"HGLOBAL GlobalHandle(PCVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalLock","package":"druntime","parentType":"","signature":"LPVOID GlobalLock(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalMemoryStatus","package":"druntime","parentType":"","signature":"VOID GlobalMemoryStatus(LPMEMORYSTATUS)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalMemoryStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalReAlloc","package":"druntime","parentType":"","signature":"HGLOBAL GlobalReAlloc(HGLOBAL,  SIZE_T,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalReAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalSize","package":"druntime","parentType":"","signature":"SIZE_T GlobalSize(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GlobalUnlock","package":"druntime","parentType":"","signature":"BOOL GlobalUnlock(HGLOBAL)","url":"/ddoc/druntime/core/sys/windows/winbase/GlobalUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapAlloc","package":"druntime","parentType":"","signature":"PVOID HeapAlloc(HANDLE,  DWORD,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapCompact","package":"druntime","parentType":"","signature":"SIZE_T HeapCompact(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapCompact.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapCreate","package":"druntime","parentType":"","signature":"HANDLE HeapCreate(DWORD,  SIZE_T,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapCreate.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapDestroy","package":"druntime","parentType":"","signature":"BOOL HeapDestroy(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapDestroy.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapFree","package":"druntime","parentType":"","signature":"BOOL HeapFree(HANDLE,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapLock","package":"druntime","parentType":"","signature":"BOOL HeapLock(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapReAlloc","package":"druntime","parentType":"","signature":"PVOID HeapReAlloc(HANDLE,  DWORD,  PVOID,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapReAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapSize","package":"druntime","parentType":"","signature":"SIZE_T HeapSize(HANDLE,  DWORD,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapUnlock","package":"druntime","parentType":"","signature":"BOOL HeapUnlock(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapValidate","package":"druntime","parentType":"","signature":"BOOL HeapValidate(HANDLE,  DWORD,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapValidate.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"HeapWalk","package":"druntime","parentType":"","signature":"BOOL HeapWalk(HANDLE,  LPPROCESS_HEAP_ENTRY)","url":"/ddoc/druntime/core/sys/windows/winbase/HeapWalk.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalAlloc","package":"druntime","parentType":"","signature":"HLOCAL LocalAlloc(UINT,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalDiscard","package":"druntime","parentType":"","signature":"HLOCAL LocalDiscard(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalDiscard.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalFree","package":"druntime","parentType":"","signature":"HLOCAL LocalFree(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalHandle","package":"druntime","parentType":"","signature":"HLOCAL LocalHandle(LPCVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalLock","package":"druntime","parentType":"","signature":"PVOID LocalLock(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalReAlloc","package":"druntime","parentType":"","signature":"HLOCAL LocalReAlloc(HLOCAL,  SIZE_T,  UINT)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalReAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalSize","package":"druntime","parentType":"","signature":"SIZE_T LocalSize(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LocalUnlock","package":"druntime","parentType":"","signature":"BOOL LocalUnlock(HLOCAL)","url":"/ddoc/druntime/core/sys/windows/winbase/LocalUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualAlloc","package":"druntime","parentType":"","signature":"PVOID VirtualAlloc(PVOID,  SIZE_T,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualAlloc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualAllocEx","package":"druntime","parentType":"","signature":"PVOID VirtualAllocEx(HANDLE,  PVOID,  SIZE_T,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualAllocEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualFree","package":"druntime","parentType":"","signature":"BOOL VirtualFree(PVOID,  SIZE_T,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualFree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualFreeEx","package":"druntime","parentType":"","signature":"BOOL VirtualFreeEx(HANDLE,  PVOID,  SIZE_T,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualFreeEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualLock","package":"druntime","parentType":"","signature":"BOOL VirtualLock(PVOID,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualLock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualProtect","package":"druntime","parentType":"","signature":"BOOL VirtualProtect(PVOID,  SIZE_T,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualProtect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualProtectEx","package":"druntime","parentType":"","signature":"BOOL VirtualProtectEx(HANDLE,  PVOID,  SIZE_T,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualProtectEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualQuery","package":"druntime","parentType":"","signature":"SIZE_T VirtualQuery(LPCVOID,  PMEMORY_BASIC_INFORMATION,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualQueryEx","package":"druntime","parentType":"","signature":"SIZE_T VirtualQueryEx(HANDLE,  LPCVOID,  PMEMORY_BASIC_INFORMATION,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualQueryEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"VirtualUnlock","package":"druntime","parentType":"","signature":"BOOL VirtualUnlock(PVOID,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/VirtualUnlock.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CancelIo","package":"druntime","parentType":"","signature":"BOOL CancelIo(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CancelIo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CancelWaitableTimer","package":"druntime","parentType":"","signature":"BOOL CancelWaitableTimer(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CancelWaitableTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ConvertThreadToFiber","package":"druntime","parentType":"","signature":"PVOID ConvertThreadToFiber(PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/ConvertThreadToFiber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateFiber","package":"druntime","parentType":"","signature":"LPVOID CreateFiber(SIZE_T,  LPFIBER_START_ROUTINE,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateFiber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateWaitableTimerA","package":"druntime","parentType":"","signature":"HANDLE CreateWaitableTimerA(LPSECURITY_ATTRIBUTES,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateWaitableTimerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateWaitableTimerW","package":"druntime","parentType":"","signature":"HANDLE CreateWaitableTimerW(LPSECURITY_ATTRIBUTES,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateWaitableTimerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteFiber","package":"druntime","parentType":"","signature":"void DeleteFiber(PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteFiber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileAttributesExA","package":"druntime","parentType":"","signature":"BOOL GetFileAttributesExA(LPCSTR,  GET_FILEEX_INFO_LEVELS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileAttributesExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileAttributesExW","package":"druntime","parentType":"","signature":"BOOL GetFileAttributesExW(LPCWSTR,  GET_FILEEX_INFO_LEVELS,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileAttributesExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLongPathNameA","package":"druntime","parentType":"","signature":"DWORD GetLongPathNameA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLongPathNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLongPathNameW","package":"druntime","parentType":"","signature":"DWORD GetLongPathNameW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLongPathNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitializeCriticalSectionAndSpinCount","package":"druntime","parentType":"","signature":"BOOL InitializeCriticalSectionAndSpinCount(LPCRITICAL_SECTION,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/InitializeCriticalSectionAndSpinCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsDebuggerPresent","package":"druntime","parentType":"","signature":"BOOL IsDebuggerPresent()","url":"/ddoc/druntime/core/sys/windows/winbase/IsDebuggerPresent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenWaitableTimerA","package":"druntime","parentType":"","signature":"HANDLE OpenWaitableTimerA(DWORD,  BOOL,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenWaitableTimerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenWaitableTimerW","package":"druntime","parentType":"","signature":"HANDLE OpenWaitableTimerW(DWORD,  BOOL,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenWaitableTimerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"QueryDosDeviceA","package":"druntime","parentType":"","signature":"DWORD QueryDosDeviceA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/QueryDosDeviceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"QueryDosDeviceW","package":"druntime","parentType":"","signature":"DWORD QueryDosDeviceW(LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/QueryDosDeviceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetWaitableTimer","package":"druntime","parentType":"","signature":"BOOL SetWaitableTimer(HANDLE,  const(LARGE_INTEGER) *,  LONG,  PTIMERAPCROUTINE,  PVOID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetWaitableTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SwitchToFiber","package":"druntime","parentType":"","signature":"void SwitchToFiber(PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/SwitchToFiber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AccessCheck","package":"druntime","parentType":"","signature":"BOOL AccessCheck(PSECURITY_DESCRIPTOR,  HANDLE,  DWORD,  PGENERIC_MAPPING,  PPRIVILEGE_SET,  PDWORD,  PDWORD,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/AccessCheck.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AccessCheckAndAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL AccessCheckAndAuditAlarmA(LPCSTR,  LPVOID,  LPSTR,  LPSTR,  PSECURITY_DESCRIPTOR,  DWORD,  PGENERIC_MAPPING,  BOOL,  PDWORD,  PBOOL,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/AccessCheckAndAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AccessCheckAndAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL AccessCheckAndAuditAlarmW(LPCWSTR,  LPVOID,  LPWSTR,  LPWSTR,  PSECURITY_DESCRIPTOR,  DWORD,  PGENERIC_MAPPING,  BOOL,  PDWORD,  PBOOL,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/AccessCheckAndAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAccessAllowedAce","package":"druntime","parentType":"","signature":"BOOL AddAccessAllowedAce(PACL,  DWORD,  DWORD,  PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAccessAllowedAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAccessDeniedAce","package":"druntime","parentType":"","signature":"BOOL AddAccessDeniedAce(PACL,  DWORD,  DWORD,  PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAccessDeniedAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAce","package":"druntime","parentType":"","signature":"BOOL AddAce(PACL,  DWORD,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AddAuditAccessAce","package":"druntime","parentType":"","signature":"BOOL AddAuditAccessAce(PACL,  DWORD,  DWORD,  PSID,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/AddAuditAccessAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AdjustTokenGroups","package":"druntime","parentType":"","signature":"BOOL AdjustTokenGroups(HANDLE,  BOOL,  PTOKEN_GROUPS,  DWORD,  PTOKEN_GROUPS,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/AdjustTokenGroups.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AdjustTokenPrivileges","package":"druntime","parentType":"","signature":"BOOL AdjustTokenPrivileges(HANDLE,  BOOL,  PTOKEN_PRIVILEGES,  DWORD,  PTOKEN_PRIVILEGES,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/AdjustTokenPrivileges.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AllocateAndInitializeSid","package":"druntime","parentType":"","signature":"BOOL AllocateAndInitializeSid(PSID_IDENTIFIER_AUTHORITY,  BYTE,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  PSID *)","url":"/ddoc/druntime/core/sys/windows/winbase/AllocateAndInitializeSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AllocateLocallyUniqueId","package":"druntime","parentType":"","signature":"BOOL AllocateLocallyUniqueId(PLUID)","url":"/ddoc/druntime/core/sys/windows/winbase/AllocateLocallyUniqueId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AreAllAccessesGranted","package":"druntime","parentType":"","signature":"BOOL AreAllAccessesGranted(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/AreAllAccessesGranted.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"AreAnyAccessesGranted","package":"druntime","parentType":"","signature":"BOOL AreAnyAccessesGranted(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/AreAnyAccessesGranted.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BackupEventLogA","package":"druntime","parentType":"","signature":"BOOL BackupEventLogA(HANDLE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/BackupEventLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BackupEventLogW","package":"druntime","parentType":"","signature":"BOOL BackupEventLogW(HANDLE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/BackupEventLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BackupRead","package":"druntime","parentType":"","signature":"BOOL BackupRead(HANDLE,  LPBYTE,  DWORD,  LPDWORD,  BOOL,  BOOL,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/winbase/BackupRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BackupSeek","package":"druntime","parentType":"","signature":"BOOL BackupSeek(HANDLE,  DWORD,  DWORD,  LPDWORD,  LPDWORD,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/winbase/BackupSeek.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"BackupWrite","package":"druntime","parentType":"","signature":"BOOL BackupWrite(HANDLE,  LPBYTE,  DWORD,  LPDWORD,  BOOL,  BOOL,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/winbase/BackupWrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ClearEventLogA","package":"druntime","parentType":"","signature":"BOOL ClearEventLogA(HANDLE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/ClearEventLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ClearEventLogW","package":"druntime","parentType":"","signature":"BOOL ClearEventLogW(HANDLE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/ClearEventLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CloseEventLog","package":"druntime","parentType":"","signature":"BOOL CloseEventLog(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/CloseEventLog.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ConnectNamedPipe","package":"druntime","parentType":"","signature":"BOOL ConnectNamedPipe(HANDLE,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/ConnectNamedPipe.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CopySid","package":"druntime","parentType":"","signature":"BOOL CopySid(DWORD,  PSID,  PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/CopySid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateNamedPipeA","package":"druntime","parentType":"","signature":"HANDLE CreateNamedPipeA(LPCSTR,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateNamedPipeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateNamedPipeW","package":"druntime","parentType":"","signature":"HANDLE CreateNamedPipeW(LPCWSTR,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateNamedPipeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreatePrivateObjectSecurity","package":"druntime","parentType":"","signature":"BOOL CreatePrivateObjectSecurity(PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR *,  BOOL,  HANDLE,  PGENERIC_MAPPING)","url":"/ddoc/druntime/core/sys/windows/winbase/CreatePrivateObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateProcessAsUserA","package":"druntime","parentType":"","signature":"BOOL CreateProcessAsUserA(HANDLE,  LPCSTR,  LPSTR,  LPSECURITY_ATTRIBUTES,  LPSECURITY_ATTRIBUTES,  BOOL,  DWORD,  PVOID,  LPCSTR,  LPSTARTUPINFOA,  LPPROCESS_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateProcessAsUserA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateProcessAsUserW","package":"druntime","parentType":"","signature":"BOOL CreateProcessAsUserW(HANDLE,  LPCWSTR,  LPWSTR,  LPSECURITY_ATTRIBUTES,  LPSECURITY_ATTRIBUTES,  BOOL,  DWORD,  PVOID,  LPCWSTR,  LPSTARTUPINFOW,  LPPROCESS_INFORMATION)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateProcessAsUserW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateRemoteThread","package":"druntime","parentType":"","signature":"HANDLE CreateRemoteThread(HANDLE,  LPSECURITY_ATTRIBUTES,  SIZE_T,  LPTHREAD_START_ROUTINE,  LPVOID,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateRemoteThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateTapePartition","package":"druntime","parentType":"","signature":"DWORD CreateTapePartition(HANDLE,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateTapePartition.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DefineDosDeviceA","package":"druntime","parentType":"","signature":"BOOL DefineDosDeviceA(DWORD,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/DefineDosDeviceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DefineDosDeviceW","package":"druntime","parentType":"","signature":"BOOL DefineDosDeviceW(DWORD,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/DefineDosDeviceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeleteAce","package":"druntime","parentType":"","signature":"BOOL DeleteAce(PACL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/DeleteAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeregisterEventSource","package":"druntime","parentType":"","signature":"BOOL DeregisterEventSource(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/DeregisterEventSource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DestroyPrivateObjectSecurity","package":"druntime","parentType":"","signature":"BOOL DestroyPrivateObjectSecurity(PSECURITY_DESCRIPTOR *)","url":"/ddoc/druntime/core/sys/windows/winbase/DestroyPrivateObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DeviceIoControl","package":"druntime","parentType":"","signature":"BOOL DeviceIoControl(HANDLE,  DWORD,  PVOID,  DWORD,  PVOID,  DWORD,  PDWORD,  POVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/DeviceIoControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DisconnectNamedPipe","package":"druntime","parentType":"","signature":"BOOL DisconnectNamedPipe(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/DisconnectNamedPipe.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DuplicateToken","package":"druntime","parentType":"","signature":"BOOL DuplicateToken(HANDLE,  SECURITY_IMPERSONATION_LEVEL,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/DuplicateToken.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"DuplicateTokenEx","package":"druntime","parentType":"","signature":"BOOL DuplicateTokenEx(HANDLE,  DWORD,  LPSECURITY_ATTRIBUTES,  SECURITY_IMPERSONATION_LEVEL,  TOKEN_TYPE,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/DuplicateTokenEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EqualPrefixSid","package":"druntime","parentType":"","signature":"BOOL EqualPrefixSid(PSID,  PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/EqualPrefixSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EqualSid","package":"druntime","parentType":"","signature":"BOOL EqualSid(PSID,  PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/EqualSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"EraseTape","package":"druntime","parentType":"","signature":"DWORD EraseTape(HANDLE,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/EraseTape.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstFileExA","package":"druntime","parentType":"","signature":"HANDLE FindFirstFileExA(LPCSTR,  FINDEX_INFO_LEVELS,  PVOID,  FINDEX_SEARCH_OPS,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstFileExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstFileExW","package":"druntime","parentType":"","signature":"HANDLE FindFirstFileExW(LPCWSTR,  FINDEX_INFO_LEVELS,  PVOID,  FINDEX_SEARCH_OPS,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstFileExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FindFirstFreeAce","package":"druntime","parentType":"","signature":"BOOL FindFirstFreeAce(PACL,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/winbase/FindFirstFreeAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"FreeSid","package":"druntime","parentType":"","signature":"PVOID FreeSid(PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/FreeSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetAce","package":"druntime","parentType":"","signature":"BOOL GetAce(PACL,  DWORD,  LPVOID *)","url":"/ddoc/druntime/core/sys/windows/winbase/GetAce.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetAclInformation","package":"druntime","parentType":"","signature":"BOOL GetAclInformation(PACL,  PVOID,  DWORD,  ACL_INFORMATION_CLASS)","url":"/ddoc/druntime/core/sys/windows/winbase/GetAclInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetBinaryTypeA","package":"druntime","parentType":"","signature":"BOOL GetBinaryTypeA(LPCSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetBinaryTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetBinaryTypeW","package":"druntime","parentType":"","signature":"BOOL GetBinaryTypeW(LPCWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetBinaryTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCompressedFileSizeA","package":"druntime","parentType":"","signature":"DWORD GetCompressedFileSizeA(LPCSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCompressedFileSizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCompressedFileSizeW","package":"druntime","parentType":"","signature":"DWORD GetCompressedFileSizeW(LPCWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCompressedFileSizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentHwProfileA","package":"druntime","parentType":"","signature":"BOOL GetCurrentHwProfileA(LPHW_PROFILE_INFOA)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentHwProfileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetCurrentHwProfileW","package":"druntime","parentType":"","signature":"BOOL GetCurrentHwProfileW(LPHW_PROFILE_INFOW)","url":"/ddoc/druntime/core/sys/windows/winbase/GetCurrentHwProfileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileSecurityA","package":"druntime","parentType":"","signature":"BOOL GetFileSecurityA(LPCSTR,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileSecurityA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetFileSecurityW","package":"druntime","parentType":"","signature":"BOOL GetFileSecurityW(LPCWSTR,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetFileSecurityW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetHandleInformation","package":"druntime","parentType":"","signature":"BOOL GetHandleInformation(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetHandleInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetKernelObjectSecurity","package":"druntime","parentType":"","signature":"BOOL GetKernelObjectSecurity(HANDLE,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetKernelObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetLengthSid","package":"druntime","parentType":"","signature":"DWORD GetLengthSid(PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetLengthSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetNumberOfEventLogRecords","package":"druntime","parentType":"","signature":"BOOL GetNumberOfEventLogRecords(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetNumberOfEventLogRecords.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetOldestEventLogRecord","package":"druntime","parentType":"","signature":"BOOL GetOldestEventLogRecord(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetOldestEventLogRecord.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetPrivateObjectSecurity","package":"druntime","parentType":"","signature":"BOOL GetPrivateObjectSecurity(PSECURITY_DESCRIPTOR,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetPrivateObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessPriorityBoost","package":"druntime","parentType":"","signature":"BOOL GetProcessPriorityBoost(HANDLE,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessPriorityBoost.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessShutdownParameters","package":"druntime","parentType":"","signature":"BOOL GetProcessShutdownParameters(PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessShutdownParameters.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessTimes","package":"druntime","parentType":"","signature":"BOOL GetProcessTimes(HANDLE,  LPFILETIME,  LPFILETIME,  LPFILETIME,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessTimes.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessWindowStation","package":"druntime","parentType":"","signature":"HWINSTA GetProcessWindowStation()","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessWindowStation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetProcessWorkingSetSize","package":"druntime","parentType":"","signature":"BOOL GetProcessWorkingSetSize(HANDLE,  PSIZE_T,  PSIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/GetProcessWorkingSetSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetQueuedCompletionStatus","package":"druntime","parentType":"","signature":"BOOL GetQueuedCompletionStatus(HANDLE,  PDWORD,  PULONG_PTR,  LPOVERLAPPED *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetQueuedCompletionStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorControl","package":"druntime","parentType":"","signature":"BOOL GetSecurityDescriptorControl(PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR_CONTROL,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorDacl","package":"druntime","parentType":"","signature":"BOOL GetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR,  LPBOOL,  PACL *,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorDacl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorGroup","package":"druntime","parentType":"","signature":"BOOL GetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR,  PSID *,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorLength","package":"druntime","parentType":"","signature":"DWORD GetSecurityDescriptorLength(PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorLength.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorOwner","package":"druntime","parentType":"","signature":"BOOL GetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR,  PSID *,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorOwner.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSecurityDescriptorSacl","package":"druntime","parentType":"","signature":"BOOL GetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR,  LPBOOL,  PACL *,  LPBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSecurityDescriptorSacl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSidIdentifierAuthority","package":"druntime","parentType":"","signature":"PSID_IDENTIFIER_AUTHORITY GetSidIdentifierAuthority(PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSidIdentifierAuthority.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSidLengthRequired","package":"druntime","parentType":"","signature":"DWORD GetSidLengthRequired(UCHAR)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSidLengthRequired.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSidSubAuthority","package":"druntime","parentType":"","signature":"PDWORD GetSidSubAuthority(PSID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSidSubAuthority.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetSidSubAuthorityCount","package":"druntime","parentType":"","signature":"PUCHAR GetSidSubAuthorityCount(PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetSidSubAuthorityCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTapeParameters","package":"druntime","parentType":"","signature":"DWORD GetTapeParameters(HANDLE,  DWORD,  PDWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTapeParameters.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTapePosition","package":"druntime","parentType":"","signature":"DWORD GetTapePosition(HANDLE,  DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTapePosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTapeStatus","package":"druntime","parentType":"","signature":"DWORD GetTapeStatus(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTapeStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetThreadPriorityBoost","package":"druntime","parentType":"","signature":"BOOL GetThreadPriorityBoost(HANDLE,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/GetThreadPriorityBoost.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetThreadTimes","package":"druntime","parentType":"","signature":"BOOL GetThreadTimes(HANDLE,  LPFILETIME,  LPFILETIME,  LPFILETIME,  LPFILETIME)","url":"/ddoc/druntime/core/sys/windows/winbase/GetThreadTimes.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"GetTokenInformation","package":"druntime","parentType":"","signature":"BOOL GetTokenInformation(HANDLE,  TOKEN_INFORMATION_CLASS,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/GetTokenInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ImpersonateLoggedOnUser","package":"druntime","parentType":"","signature":"BOOL ImpersonateLoggedOnUser(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ImpersonateLoggedOnUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ImpersonateNamedPipeClient","package":"druntime","parentType":"","signature":"BOOL ImpersonateNamedPipeClient(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/ImpersonateNamedPipeClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ImpersonateSelf","package":"druntime","parentType":"","signature":"BOOL ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL)","url":"/ddoc/druntime/core/sys/windows/winbase/ImpersonateSelf.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitializeAcl","package":"druntime","parentType":"","signature":"BOOL InitializeAcl(PACL,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/InitializeAcl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetCriticalSectionSpinCount","package":"druntime","parentType":"","signature":"DWORD SetCriticalSectionSpinCount(LPCRITICAL_SECTION,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetCriticalSectionSpinCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitializeSecurityDescriptor","package":"druntime","parentType":"","signature":"BOOL InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/InitializeSecurityDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"InitializeSid","package":"druntime","parentType":"","signature":"BOOL InitializeSid(PSID,  PSID_IDENTIFIER_AUTHORITY,  BYTE)","url":"/ddoc/druntime/core/sys/windows/winbase/InitializeSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsProcessorFeaturePresent","package":"druntime","parentType":"","signature":"BOOL IsProcessorFeaturePresent(DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/IsProcessorFeaturePresent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsTextUnicode","package":"druntime","parentType":"","signature":"BOOL IsTextUnicode(PCVOID,  int,  LPINT)","url":"/ddoc/druntime/core/sys/windows/winbase/IsTextUnicode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsValidAcl","package":"druntime","parentType":"","signature":"BOOL IsValidAcl(PACL)","url":"/ddoc/druntime/core/sys/windows/winbase/IsValidAcl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsValidSecurityDescriptor","package":"druntime","parentType":"","signature":"BOOL IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winbase/IsValidSecurityDescriptor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"IsValidSid","package":"druntime","parentType":"","signature":"BOOL IsValidSid(PSID)","url":"/ddoc/druntime/core/sys/windows/winbase/IsValidSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"CreateWellKnownSid","package":"druntime","parentType":"","signature":"BOOL CreateWellKnownSid(WELL_KNOWN_SID_TYPE,  PSID,  PSID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/CreateWellKnownSid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LockFileEx","package":"druntime","parentType":"","signature":"BOOL LockFileEx(HANDLE,  DWORD,  DWORD,  DWORD,  DWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/LockFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LogonUserA","package":"druntime","parentType":"","signature":"BOOL LogonUserA(LPSTR,  LPSTR,  LPSTR,  DWORD,  DWORD,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/LogonUserA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LogonUserW","package":"druntime","parentType":"","signature":"BOOL LogonUserW(LPWSTR,  LPWSTR,  LPWSTR,  DWORD,  DWORD,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/LogonUserW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupAccountNameA","package":"druntime","parentType":"","signature":"BOOL LookupAccountNameA(LPCSTR,  LPCSTR,  PSID,  PDWORD,  LPSTR,  PDWORD,  PSID_NAME_USE)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupAccountNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupAccountNameW","package":"druntime","parentType":"","signature":"BOOL LookupAccountNameW(LPCWSTR,  LPCWSTR,  PSID,  PDWORD,  LPWSTR,  PDWORD,  PSID_NAME_USE)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupAccountNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupAccountSidA","package":"druntime","parentType":"","signature":"BOOL LookupAccountSidA(LPCSTR,  PSID,  LPSTR,  PDWORD,  LPSTR,  PDWORD,  PSID_NAME_USE)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupAccountSidA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupAccountSidW","package":"druntime","parentType":"","signature":"BOOL LookupAccountSidW(LPCWSTR,  PSID,  LPWSTR,  PDWORD,  LPWSTR,  PDWORD,  PSID_NAME_USE)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupAccountSidW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeDisplayNameA","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeDisplayNameA(LPCSTR,  LPCSTR,  LPSTR,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeDisplayNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeDisplayNameW","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeDisplayNameW(LPCWSTR,  LPCWSTR,  LPWSTR,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeDisplayNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeNameA","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeNameA(LPCSTR,  PLUID,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeNameW","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeNameW(LPCWSTR,  PLUID,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeValueA","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeValueA(LPCSTR,  LPCSTR,  PLUID)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"LookupPrivilegeValueW","package":"druntime","parentType":"","signature":"BOOL LookupPrivilegeValueW(LPCWSTR,  LPCWSTR,  PLUID)","url":"/ddoc/druntime/core/sys/windows/winbase/LookupPrivilegeValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MakeAbsoluteSD","package":"druntime","parentType":"","signature":"BOOL MakeAbsoluteSD(PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR,  PDWORD,  PACL,  PDWORD,  PACL,  PDWORD,  PSID,  PDWORD,  PSID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/MakeAbsoluteSD.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MakeSelfRelativeSD","package":"druntime","parentType":"","signature":"BOOL MakeSelfRelativeSD(PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/MakeSelfRelativeSD.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MapGenericMask","package":"druntime","parentType":"","signature":"VOID MapGenericMask(PDWORD,  PGENERIC_MAPPING)","url":"/ddoc/druntime/core/sys/windows/winbase/MapGenericMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MoveFileExA","package":"druntime","parentType":"","signature":"BOOL MoveFileExA(LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/MoveFileExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"MoveFileExW","package":"druntime","parentType":"","signature":"BOOL MoveFileExW(LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/MoveFileExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"NotifyChangeEventLog","package":"druntime","parentType":"","signature":"BOOL NotifyChangeEventLog(HANDLE,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/NotifyChangeEventLog.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectCloseAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL ObjectCloseAuditAlarmA(LPCSTR,  PVOID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectCloseAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectCloseAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL ObjectCloseAuditAlarmW(LPCWSTR,  PVOID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectCloseAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectDeleteAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL ObjectDeleteAuditAlarmA(LPCSTR,  PVOID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectDeleteAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectDeleteAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL ObjectDeleteAuditAlarmW(LPCWSTR,  PVOID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectDeleteAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectOpenAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL ObjectOpenAuditAlarmA(LPCSTR,  PVOID,  LPSTR,  LPSTR,  PSECURITY_DESCRIPTOR,  HANDLE,  DWORD,  DWORD,  PPRIVILEGE_SET,  BOOL,  BOOL,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectOpenAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectOpenAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL ObjectOpenAuditAlarmW(LPCWSTR,  PVOID,  LPWSTR,  LPWSTR,  PSECURITY_DESCRIPTOR,  HANDLE,  DWORD,  DWORD,  PPRIVILEGE_SET,  BOOL,  BOOL,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectOpenAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectPrivilegeAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL ObjectPrivilegeAuditAlarmA(LPCSTR,  PVOID,  HANDLE,  DWORD,  PPRIVILEGE_SET,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectPrivilegeAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ObjectPrivilegeAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL ObjectPrivilegeAuditAlarmW(LPCWSTR,  PVOID,  HANDLE,  DWORD,  PPRIVILEGE_SET,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/ObjectPrivilegeAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenBackupEventLogA","package":"druntime","parentType":"","signature":"HANDLE OpenBackupEventLogA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenBackupEventLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenBackupEventLogW","package":"druntime","parentType":"","signature":"HANDLE OpenBackupEventLogW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenBackupEventLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenEventLogA","package":"druntime","parentType":"","signature":"HANDLE OpenEventLogA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenEventLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenEventLogW","package":"druntime","parentType":"","signature":"HANDLE OpenEventLogW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenEventLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenProcessToken","package":"druntime","parentType":"","signature":"BOOL OpenProcessToken(HANDLE,  DWORD,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenProcessToken.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"OpenThreadToken","package":"druntime","parentType":"","signature":"BOOL OpenThreadToken(HANDLE,  DWORD,  BOOL,  PHANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/OpenThreadToken.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PostQueuedCompletionStatus","package":"druntime","parentType":"","signature":"BOOL PostQueuedCompletionStatus(HANDLE,  DWORD,  ULONG_PTR,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/PostQueuedCompletionStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PrepareTape","package":"druntime","parentType":"","signature":"DWORD PrepareTape(HANDLE,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/PrepareTape.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PrivilegeCheck","package":"druntime","parentType":"","signature":"BOOL PrivilegeCheck(HANDLE,  PPRIVILEGE_SET,  PBOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/PrivilegeCheck.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PrivilegedServiceAuditAlarmA","package":"druntime","parentType":"","signature":"BOOL PrivilegedServiceAuditAlarmA(LPCSTR,  LPCSTR,  HANDLE,  PPRIVILEGE_SET,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/PrivilegedServiceAuditAlarmA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"PrivilegedServiceAuditAlarmW","package":"druntime","parentType":"","signature":"BOOL PrivilegedServiceAuditAlarmW(LPCWSTR,  LPCWSTR,  HANDLE,  PPRIVILEGE_SET,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/PrivilegedServiceAuditAlarmW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadDirectoryChangesW","package":"druntime","parentType":"","signature":"BOOL ReadDirectoryChangesW(HANDLE,  PVOID,  DWORD,  BOOL,  DWORD,  PDWORD,  LPOVERLAPPED,  LPOVERLAPPED_COMPLETION_ROUTINE)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadDirectoryChangesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadEventLogA","package":"druntime","parentType":"","signature":"BOOL ReadEventLogA(HANDLE,  DWORD,  DWORD,  PVOID,  DWORD,  DWORD *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadEventLogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadEventLogW","package":"druntime","parentType":"","signature":"BOOL ReadEventLogW(HANDLE,  DWORD,  DWORD,  PVOID,  DWORD,  DWORD *,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadEventLogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReadFileScatter","package":"druntime","parentType":"","signature":"BOOL ReadFileScatter(HANDLE,  FILE_SEGMENT_ELEMENT *,  DWORD,  LPDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/ReadFileScatter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RegisterEventSourceA","package":"druntime","parentType":"","signature":"HANDLE RegisterEventSourceA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/RegisterEventSourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RegisterEventSourceW","package":"druntime","parentType":"","signature":"HANDLE RegisterEventSourceW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winbase/RegisterEventSourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReportEventA","package":"druntime","parentType":"","signature":"BOOL ReportEventA(HANDLE,  WORD,  WORD,  DWORD,  PSID,  WORD,  DWORD,  LPCSTR *,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/ReportEventA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"ReportEventW","package":"druntime","parentType":"","signature":"BOOL ReportEventW(HANDLE,  WORD,  WORD,  DWORD,  PSID,  WORD,  DWORD,  LPCWSTR *,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/ReportEventW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"RevertToSelf","package":"druntime","parentType":"","signature":"BOOL RevertToSelf()","url":"/ddoc/druntime/core/sys/windows/winbase/RevertToSelf.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetAclInformation","package":"druntime","parentType":"","signature":"BOOL SetAclInformation(PACL,  PVOID,  DWORD,  ACL_INFORMATION_CLASS)","url":"/ddoc/druntime/core/sys/windows/winbase/SetAclInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileSecurityA","package":"druntime","parentType":"","signature":"BOOL SetFileSecurityA(LPCSTR,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileSecurityA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetFileSecurityW","package":"druntime","parentType":"","signature":"BOOL SetFileSecurityW(LPCWSTR,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetFileSecurityW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetHandleInformation","package":"druntime","parentType":"","signature":"BOOL SetHandleInformation(HANDLE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetHandleInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetKernelObjectSecurity","package":"druntime","parentType":"","signature":"BOOL SetKernelObjectSecurity(HANDLE,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetKernelObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetPrivateObjectSecurity","package":"druntime","parentType":"","signature":"BOOL SetPrivateObjectSecurity(SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  PSECURITY_DESCRIPTOR *,  PGENERIC_MAPPING,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetPrivateObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetProcessAffinityMask","package":"druntime","parentType":"","signature":"BOOL SetProcessAffinityMask(HANDLE,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase/SetProcessAffinityMask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetProcessPriorityBoost","package":"druntime","parentType":"","signature":"BOOL SetProcessPriorityBoost(HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetProcessPriorityBoost.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetProcessShutdownParameters","package":"druntime","parentType":"","signature":"BOOL SetProcessShutdownParameters(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetProcessShutdownParameters.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetProcessWorkingSetSize","package":"druntime","parentType":"","signature":"BOOL SetProcessWorkingSetSize(HANDLE,  SIZE_T,  SIZE_T)","url":"/ddoc/druntime/core/sys/windows/winbase/SetProcessWorkingSetSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSecurityDescriptorDacl","package":"druntime","parentType":"","signature":"BOOL SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR,  BOOL,  PACL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSecurityDescriptorDacl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSecurityDescriptorGroup","package":"druntime","parentType":"","signature":"BOOL SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR,  PSID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSecurityDescriptorGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSecurityDescriptorOwner","package":"druntime","parentType":"","signature":"BOOL SetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR,  PSID,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSecurityDescriptorOwner.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSecurityDescriptorSacl","package":"druntime","parentType":"","signature":"BOOL SetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR,  BOOL,  PACL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSecurityDescriptorSacl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetSystemTimeAdjustment","package":"druntime","parentType":"","signature":"BOOL SetSystemTimeAdjustment(DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetSystemTimeAdjustment.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetTapeParameters","package":"druntime","parentType":"","signature":"DWORD SetTapeParameters(HANDLE,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase/SetTapeParameters.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetTapePosition","package":"druntime","parentType":"","signature":"DWORD SetTapePosition(HANDLE,  DWORD,  DWORD,  DWORD,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetTapePosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetThreadPriorityBoost","package":"druntime","parentType":"","signature":"BOOL SetThreadPriorityBoost(HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SetThreadPriorityBoost.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetThreadToken","package":"druntime","parentType":"","signature":"BOOL SetThreadToken(PHANDLE,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winbase/SetThreadToken.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SetTokenInformation","package":"druntime","parentType":"","signature":"BOOL SetTokenInformation(HANDLE,  TOKEN_INFORMATION_CLASS,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/SetTokenInformation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SignalObjectAndWait","package":"druntime","parentType":"","signature":"DWORD SignalObjectAndWait(HANDLE,  HANDLE,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/SignalObjectAndWait.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SwitchToThread","package":"druntime","parentType":"","signature":"BOOL SwitchToThread()","url":"/ddoc/druntime/core/sys/windows/winbase/SwitchToThread.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"SystemTimeToTzSpecificLocalTime","package":"druntime","parentType":"","signature":"BOOL SystemTimeToTzSpecificLocalTime(LPTIME_ZONE_INFORMATION,  LPSYSTEMTIME,  LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/winbase/SystemTimeToTzSpecificLocalTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TzSpecificLocalTimeToSystemTime","package":"druntime","parentType":"","signature":"BOOL TzSpecificLocalTimeToSystemTime(LPTIME_ZONE_INFORMATION,  LPSYSTEMTIME,  LPSYSTEMTIME)","url":"/ddoc/druntime/core/sys/windows/winbase/TzSpecificLocalTimeToSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TryEnterCriticalSection","package":"druntime","parentType":"","signature":"BOOL TryEnterCriticalSection(LPCRITICAL_SECTION)","url":"/ddoc/druntime/core/sys/windows/winbase/TryEnterCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"TryEnterCriticalSection","package":"druntime","parentType":"","signature":"BOOL TryEnterCriticalSection(shared(CRITICAL_SECTION) *)","url":"/ddoc/druntime/core/sys/windows/winbase/TryEnterCriticalSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"UnlockFileEx","package":"druntime","parentType":"","signature":"BOOL UnlockFileEx(HANDLE,  DWORD,  DWORD,  DWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/UnlockFileEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"UpdateResourceA","package":"druntime","parentType":"","signature":"BOOL UpdateResourceA(HANDLE,  LPCSTR,  LPCSTR,  WORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/UpdateResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"UpdateResourceW","package":"druntime","parentType":"","signature":"BOOL UpdateResourceW(HANDLE,  LPCWSTR,  LPCWSTR,  WORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase/UpdateResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteFileGather","package":"druntime","parentType":"","signature":"BOOL WriteFileGather(HANDLE,  FILE_SEGMENT_ELEMENT *,  DWORD,  LPDWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteFileGather.html"},{"doc":"","kind":"function","module":"core.sys.windows.winbase","name":"WriteTapemark","package":"druntime","parentType":"","signature":"DWORD WriteTapemark(HANDLE,  DWORD,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winbase/WriteTapemark.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"COMMPROP","package":"druntime","parentType":"","signature":"COMMPROP","url":"/ddoc/druntime/core/sys/windows/winbase.html#COMMPROP"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"wcProvChar","package":"druntime","parentType":"COMMPROP","signature":"WCHAR * wcProvChar()","url":"/ddoc/druntime/core/sys/windows/winbase/COMMPROP.wcProvChar.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCOMMPROP","package":"druntime","parentType":"","signature":"LPCOMMPROP = COMMPROP *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCOMMPROP"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"FILETIME","package":"druntime","parentType":"","signature":"FILETIME","url":"/ddoc/druntime/core/sys/windows/winbase.html#FILETIME"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PFILETIME","package":"druntime","parentType":"","signature":"PFILETIME = FILETIME *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PFILETIME"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"BY_HANDLE_FILE_INFORMATION","package":"druntime","parentType":"","signature":"BY_HANDLE_FILE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winbase.html#BY_HANDLE_FILE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPBY_HANDLE_FILE_INFORMATION","package":"druntime","parentType":"","signature":"LPBY_HANDLE_FILE_INFORMATION = BY_HANDLE_FILE_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPBY_HANDLE_FILE_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"DCB","package":"druntime","parentType":"","signature":"DCB","url":"/ddoc/druntime/core/sys/windows/winbase.html#DCB"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fBinary","package":"druntime","parentType":"DCB","signature":"bool fBinary(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fBinary.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fParity","package":"druntime","parentType":"DCB","signature":"bool fParity(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fParity.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutxCtsFlow","package":"druntime","parentType":"DCB","signature":"bool fOutxCtsFlow(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutxCtsFlow.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutxDsrFlow","package":"druntime","parentType":"DCB","signature":"bool fOutxDsrFlow(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutxDsrFlow.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDtrControl","package":"druntime","parentType":"DCB","signature":"byte fDtrControl(byte  x)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fDtrControl.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDsrSensitivity","package":"druntime","parentType":"DCB","signature":"bool fDsrSensitivity(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fDsrSensitivity.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fTXContinueOnXoff","package":"druntime","parentType":"DCB","signature":"bool fTXContinueOnXoff(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fTXContinueOnXoff.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutX","package":"druntime","parentType":"DCB","signature":"bool fOutX(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutX.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fInX","package":"druntime","parentType":"DCB","signature":"bool fInX(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fInX.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fErrorChar","package":"druntime","parentType":"DCB","signature":"bool fErrorChar(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fErrorChar.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fNull","package":"druntime","parentType":"DCB","signature":"bool fNull(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fNull.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fRtsControl","package":"druntime","parentType":"DCB","signature":"byte fRtsControl(byte  x)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fRtsControl.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fAbortOnError","package":"druntime","parentType":"DCB","signature":"bool fAbortOnError(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fAbortOnError.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fBinary","package":"druntime","parentType":"DCB","signature":"bool fBinary()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fBinary.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fParity","package":"druntime","parentType":"DCB","signature":"bool fParity()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fParity.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutxCtsFlow","package":"druntime","parentType":"DCB","signature":"bool fOutxCtsFlow()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutxCtsFlow.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutxDsrFlow","package":"druntime","parentType":"DCB","signature":"bool fOutxDsrFlow()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutxDsrFlow.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDtrControl","package":"druntime","parentType":"DCB","signature":"byte fDtrControl()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fDtrControl.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDsrSensitivity","package":"druntime","parentType":"DCB","signature":"bool fDsrSensitivity()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fDsrSensitivity.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fTXContinueOnXoff","package":"druntime","parentType":"DCB","signature":"bool fTXContinueOnXoff()()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fTXContinueOnXoff.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fOutX","package":"druntime","parentType":"DCB","signature":"bool fOutX()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fOutX.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fInX","package":"druntime","parentType":"DCB","signature":"bool fInX()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fInX.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fErrorChar","package":"druntime","parentType":"DCB","signature":"bool fErrorChar()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fErrorChar.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fNull","package":"druntime","parentType":"DCB","signature":"bool fNull()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fNull.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fRtsControl","package":"druntime","parentType":"DCB","signature":"byte fRtsControl()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fRtsControl.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fAbortOnError","package":"druntime","parentType":"DCB","signature":"bool fAbortOnError()","url":"/ddoc/druntime/core/sys/windows/winbase/DCB.fAbortOnError.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPDCB","package":"druntime","parentType":"","signature":"LPDCB = DCB *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPDCB"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"COMMCONFIG","package":"druntime","parentType":"","signature":"COMMCONFIG","url":"/ddoc/druntime/core/sys/windows/winbase.html#COMMCONFIG"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"wcProviderData","package":"druntime","parentType":"COMMCONFIG","signature":"WCHAR * wcProviderData()","url":"/ddoc/druntime/core/sys/windows/winbase/COMMCONFIG.wcProviderData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCOMMCONFIG","package":"druntime","parentType":"","signature":"LPCOMMCONFIG = COMMCONFIG *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCOMMCONFIG"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"COMMTIMEOUTS","package":"druntime","parentType":"","signature":"COMMTIMEOUTS","url":"/ddoc/druntime/core/sys/windows/winbase.html#COMMTIMEOUTS"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCOMMTIMEOUTS","package":"druntime","parentType":"","signature":"LPCOMMTIMEOUTS = COMMTIMEOUTS *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCOMMTIMEOUTS"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"COMSTAT","package":"druntime","parentType":"","signature":"COMSTAT","url":"/ddoc/druntime/core/sys/windows/winbase.html#COMSTAT"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fCtsHold","package":"druntime","parentType":"COMSTAT","signature":"bool fCtsHold(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fCtsHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDsrHold","package":"druntime","parentType":"COMSTAT","signature":"bool fDsrHold(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fDsrHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fRlsdHold","package":"druntime","parentType":"COMSTAT","signature":"bool fRlsdHold(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fRlsdHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fXoffHold","package":"druntime","parentType":"COMSTAT","signature":"bool fXoffHold(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fXoffHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fXoffSent","package":"druntime","parentType":"COMSTAT","signature":"bool fXoffSent(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fXoffSent.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fEof","package":"druntime","parentType":"COMSTAT","signature":"bool fEof(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fEof.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fTxim","package":"druntime","parentType":"COMSTAT","signature":"bool fTxim(bool  f)","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fTxim.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fCtsHold","package":"druntime","parentType":"COMSTAT","signature":"bool fCtsHold()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fCtsHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fDsrHold","package":"druntime","parentType":"COMSTAT","signature":"bool fDsrHold()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fDsrHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fRlsdHold","package":"druntime","parentType":"COMSTAT","signature":"bool fRlsdHold()()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fRlsdHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fXoffHold","package":"druntime","parentType":"COMSTAT","signature":"bool fXoffHold()()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fXoffHold.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fXoffSent","package":"druntime","parentType":"COMSTAT","signature":"bool fXoffSent()()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fXoffSent.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fEof","package":"druntime","parentType":"COMSTAT","signature":"bool fEof()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fEof.html"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"fTxim","package":"druntime","parentType":"COMSTAT","signature":"bool fTxim()","url":"/ddoc/druntime/core/sys/windows/winbase/COMSTAT.fTxim.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCOMSTAT","package":"druntime","parentType":"","signature":"LPCOMSTAT = COMSTAT *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCOMSTAT"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"CREATE_PROCESS_DEBUG_INFO","package":"druntime","parentType":"","signature":"CREATE_PROCESS_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#CREATE_PROCESS_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCREATE_PROCESS_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPCREATE_PROCESS_DEBUG_INFO = CREATE_PROCESS_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCREATE_PROCESS_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"CREATE_THREAD_DEBUG_INFO","package":"druntime","parentType":"","signature":"CREATE_THREAD_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#CREATE_THREAD_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPCREATE_THREAD_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPCREATE_THREAD_DEBUG_INFO = CREATE_THREAD_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPCREATE_THREAD_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"EXCEPTION_DEBUG_INFO","package":"druntime","parentType":"","signature":"EXCEPTION_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#EXCEPTION_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPEXCEPTION_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPEXCEPTION_DEBUG_INFO = EXCEPTION_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPEXCEPTION_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"EXIT_THREAD_DEBUG_INFO","package":"druntime","parentType":"","signature":"EXIT_THREAD_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#EXIT_THREAD_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPEXIT_THREAD_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPEXIT_THREAD_DEBUG_INFO = EXIT_THREAD_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPEXIT_THREAD_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"EXIT_PROCESS_DEBUG_INFO","package":"druntime","parentType":"","signature":"EXIT_PROCESS_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#EXIT_PROCESS_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPEXIT_PROCESS_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPEXIT_PROCESS_DEBUG_INFO = EXIT_PROCESS_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPEXIT_PROCESS_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"LOAD_DLL_DEBUG_INFO","package":"druntime","parentType":"","signature":"LOAD_DLL_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#LOAD_DLL_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPLOAD_DLL_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPLOAD_DLL_DEBUG_INFO = LOAD_DLL_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPLOAD_DLL_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"UNLOAD_DLL_DEBUG_INFO","package":"druntime","parentType":"","signature":"UNLOAD_DLL_DEBUG_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#UNLOAD_DLL_DEBUG_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPUNLOAD_DLL_DEBUG_INFO","package":"druntime","parentType":"","signature":"LPUNLOAD_DLL_DEBUG_INFO = UNLOAD_DLL_DEBUG_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPUNLOAD_DLL_DEBUG_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"OUTPUT_DEBUG_STRING_INFO","package":"druntime","parentType":"","signature":"OUTPUT_DEBUG_STRING_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#OUTPUT_DEBUG_STRING_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPOUTPUT_DEBUG_STRING_INFO","package":"druntime","parentType":"","signature":"LPOUTPUT_DEBUG_STRING_INFO = OUTPUT_DEBUG_STRING_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPOUTPUT_DEBUG_STRING_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"RIP_INFO","package":"druntime","parentType":"","signature":"RIP_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#RIP_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPRIP_INFO","package":"druntime","parentType":"","signature":"LPRIP_INFO = RIP_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPRIP_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"DEBUG_EVENT","package":"druntime","parentType":"","signature":"DEBUG_EVENT","url":"/ddoc/druntime/core/sys/windows/winbase.html#DEBUG_EVENT"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPDEBUG_EVENT","package":"druntime","parentType":"","signature":"LPDEBUG_EVENT = DEBUG_EVENT *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPDEBUG_EVENT"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"OVERLAPPED","package":"druntime","parentType":"","signature":"OVERLAPPED","url":"/ddoc/druntime/core/sys/windows/winbase.html#OVERLAPPED"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"POVERLAPPED","package":"druntime","parentType":"","signature":"POVERLAPPED = OVERLAPPED *","url":"/ddoc/druntime/core/sys/windows/winbase.html#POVERLAPPED"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"STARTUPINFOA","package":"druntime","parentType":"","signature":"STARTUPINFOA","url":"/ddoc/druntime/core/sys/windows/winbase.html#STARTUPINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPSTARTUPINFOA","package":"druntime","parentType":"","signature":"LPSTARTUPINFOA = STARTUPINFOA *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPSTARTUPINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"STARTUPINFOW","package":"druntime","parentType":"","signature":"STARTUPINFOW","url":"/ddoc/druntime/core/sys/windows/winbase.html#STARTUPINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"STARTUPINFO_W","package":"druntime","parentType":"","signature":"STARTUPINFO_W = STARTUPINFOW","url":"/ddoc/druntime/core/sys/windows/winbase.html#STARTUPINFO_W"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPSTARTUPINFOW","package":"druntime","parentType":"","signature":"LPSTARTUPINFOW = STARTUPINFOW *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPSTARTUPINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"PROCESS_INFORMATION","package":"druntime","parentType":"","signature":"PROCESS_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winbase.html#PROCESS_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PPROCESS_INFORMATION","package":"druntime","parentType":"","signature":"PPROCESS_INFORMATION = PROCESS_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PPROCESS_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"CRITICAL_SECTION_DEBUG","package":"druntime","parentType":"","signature":"CRITICAL_SECTION_DEBUG = RTL_CRITICAL_SECTION_DEBUG","url":"/ddoc/druntime/core/sys/windows/winbase.html#CRITICAL_SECTION_DEBUG"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PCRITICAL_SECTION_DEBUG","package":"druntime","parentType":"","signature":"PCRITICAL_SECTION_DEBUG = CRITICAL_SECTION_DEBUG *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PCRITICAL_SECTION_DEBUG"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"CRITICAL_SECTION","package":"druntime","parentType":"","signature":"CRITICAL_SECTION = RTL_CRITICAL_SECTION","url":"/ddoc/druntime/core/sys/windows/winbase.html#CRITICAL_SECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PCRITICAL_SECTION","package":"druntime","parentType":"","signature":"PCRITICAL_SECTION = CRITICAL_SECTION *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PCRITICAL_SECTION"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"SYSTEMTIME","package":"druntime","parentType":"","signature":"SYSTEMTIME","url":"/ddoc/druntime/core/sys/windows/winbase.html#SYSTEMTIME"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPSYSTEMTIME","package":"druntime","parentType":"","signature":"LPSYSTEMTIME = SYSTEMTIME *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPSYSTEMTIME"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"WIN32_FILE_ATTRIBUTE_DATA","package":"druntime","parentType":"","signature":"WIN32_FILE_ATTRIBUTE_DATA","url":"/ddoc/druntime/core/sys/windows/winbase.html#WIN32_FILE_ATTRIBUTE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPWIN32_FILE_ATTRIBUTE_DATA","package":"druntime","parentType":"","signature":"LPWIN32_FILE_ATTRIBUTE_DATA = WIN32_FILE_ATTRIBUTE_DATA *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPWIN32_FILE_ATTRIBUTE_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"WIN32_FIND_DATAA","package":"druntime","parentType":"","signature":"WIN32_FIND_DATAA","url":"/ddoc/druntime/core/sys/windows/winbase.html#WIN32_FIND_DATAA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PWIN32_FIND_DATAA","package":"druntime","parentType":"","signature":"PWIN32_FIND_DATAA = WIN32_FIND_DATAA *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PWIN32_FIND_DATAA"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"WIN32_FIND_DATAW","package":"druntime","parentType":"","signature":"WIN32_FIND_DATAW","url":"/ddoc/druntime/core/sys/windows/winbase.html#WIN32_FIND_DATAW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PWIN32_FIND_DATAW","package":"druntime","parentType":"","signature":"PWIN32_FIND_DATAW = WIN32_FIND_DATAW *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PWIN32_FIND_DATAW"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"WIN32_STREAM_ID","package":"druntime","parentType":"","signature":"WIN32_STREAM_ID","url":"/ddoc/druntime/core/sys/windows/winbase.html#WIN32_STREAM_ID"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"cStreamName","package":"druntime","parentType":"WIN32_STREAM_ID","signature":"WCHAR * cStreamName()","url":"/ddoc/druntime/core/sys/windows/winbase/WIN32_STREAM_ID.cStreamName.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPWIN32_STREAM_ID","package":"druntime","parentType":"","signature":"LPWIN32_STREAM_ID = WIN32_STREAM_ID *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPWIN32_STREAM_ID"},{"doc":"","kind":"enum","module":"core.sys.windows.winbase","name":"FINDEX_SEARCH_OPS","package":"druntime","parentType":"","signature":"FINDEX_SEARCH_OPS","url":"/ddoc/druntime/core/sys/windows/winbase.html#FINDEX_SEARCH_OPS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"FindExSearchNameMatch","package":"druntime","parentType":"","signature":"FindExSearchNameMatch = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#FINDEX_SEARCH_OPS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"FindExSearchLimitToDirectories","package":"druntime","parentType":"","signature":"FindExSearchLimitToDirectories = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#FINDEX_SEARCH_OPS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"FindExSearchLimitToDevices","package":"druntime","parentType":"","signature":"FindExSearchLimitToDevices = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#FINDEX_SEARCH_OPS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"FindExSearchMaxSearchOp","package":"druntime","parentType":"","signature":"FindExSearchMaxSearchOp = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#FINDEX_SEARCH_OPS"},{"doc":"","kind":"enum","module":"core.sys.windows.winbase","name":"ACL_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"ACL_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/winbase.html#ACL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"AclRevisionInformation","package":"druntime","parentType":"","signature":"AclRevisionInformation = 1","url":"/ddoc/druntime/core/sys/windows/winbase.html#ACL_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"AclSizeInformation","package":"druntime","parentType":"","signature":"AclSizeInformation = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#ACL_INFORMATION_CLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"HW_PROFILE_INFOA","package":"druntime","parentType":"","signature":"HW_PROFILE_INFOA","url":"/ddoc/druntime/core/sys/windows/winbase.html#HW_PROFILE_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPHW_PROFILE_INFOA","package":"druntime","parentType":"","signature":"LPHW_PROFILE_INFOA = HW_PROFILE_INFOA *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPHW_PROFILE_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"HW_PROFILE_INFOW","package":"druntime","parentType":"","signature":"HW_PROFILE_INFOW","url":"/ddoc/druntime/core/sys/windows/winbase.html#HW_PROFILE_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPHW_PROFILE_INFOW","package":"druntime","parentType":"","signature":"LPHW_PROFILE_INFOW = HW_PROFILE_INFOW *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPHW_PROFILE_INFOW"},{"doc":"","kind":"enum","module":"core.sys.windows.winbase","name":"GET_FILEEX_INFO_LEVELS","package":"druntime","parentType":"","signature":"GET_FILEEX_INFO_LEVELS","url":"/ddoc/druntime/core/sys/windows/winbase.html#GET_FILEEX_INFO_LEVELS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"GetFileExInfoStandard","package":"druntime","parentType":"","signature":"GetFileExInfoStandard = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#GET_FILEEX_INFO_LEVELS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winbase","name":"GetFileExMaxInfoLevel","package":"druntime","parentType":"","signature":"GetFileExMaxInfoLevel = ","url":"/ddoc/druntime/core/sys/windows/winbase.html#GET_FILEEX_INFO_LEVELS"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"SYSTEM_INFO","package":"druntime","parentType":"","signature":"SYSTEM_INFO","url":"/ddoc/druntime/core/sys/windows/winbase.html#SYSTEM_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPSYSTEM_INFO","package":"druntime","parentType":"","signature":"LPSYSTEM_INFO = SYSTEM_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPSYSTEM_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"TIME_ZONE_INFORMATION","package":"druntime","parentType":"","signature":"TIME_ZONE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winbase.html#TIME_ZONE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPTIME_ZONE_INFORMATION","package":"druntime","parentType":"","signature":"LPTIME_ZONE_INFORMATION = TIME_ZONE_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPTIME_ZONE_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"REG_TZI_FORMAT","package":"druntime","parentType":"","signature":"REG_TZI_FORMAT","url":"/ddoc/druntime/core/sys/windows/winbase.html#REG_TZI_FORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"MEMORYSTATUS","package":"druntime","parentType":"","signature":"MEMORYSTATUS","url":"/ddoc/druntime/core/sys/windows/winbase.html#MEMORYSTATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPMEMORYSTATUS","package":"druntime","parentType":"","signature":"LPMEMORYSTATUS = MEMORYSTATUS *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPMEMORYSTATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"LDT_ENTRY","package":"druntime","parentType":"","signature":"LDT_ENTRY","url":"/ddoc/druntime/core/sys/windows/winbase.html#LDT_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PLDT_ENTRY","package":"druntime","parentType":"","signature":"PLDT_ENTRY = LDT_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winbase.html#PLDT_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"PROCESS_HEAP_ENTRY","package":"druntime","parentType":"","signature":"PROCESS_HEAP_ENTRY","url":"/ddoc/druntime/core/sys/windows/winbase.html#PROCESS_HEAP_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPPROCESS_HEAP_ENTRY","package":"druntime","parentType":"","signature":"LPPROCESS_HEAP_ENTRY = PROCESS_HEAP_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPPROCESS_HEAP_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"OFSTRUCT","package":"druntime","parentType":"","signature":"OFSTRUCT","url":"/ddoc/druntime/core/sys/windows/winbase.html#OFSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPOFSTRUCT","package":"druntime","parentType":"","signature":"LPOFSTRUCT = OFSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPOFSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winbase","name":"WIN_CERTIFICATE","package":"druntime","parentType":"","signature":"WIN_CERTIFICATE","url":"/ddoc/druntime/core/sys/windows/winbase.html#WIN_CERTIFICATE"},{"doc":"","kind":"method","module":"core.sys.windows.winbase","name":"bCertificate","package":"druntime","parentType":"WIN_CERTIFICATE","signature":"BYTE * bCertificate()","url":"/ddoc/druntime/core/sys/windows/winbase/WIN_CERTIFICATE.bCertificate.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPWIN_CERTIFICATE","package":"druntime","parentType":"","signature":"LPWIN_CERTIFICATE = WIN_CERTIFICATE *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPWIN_CERTIFICATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPTHREAD_START_ROUTINE","package":"druntime","parentType":"","signature":"LPTHREAD_START_ROUTINE = DWORD function(LPVOID)","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPTHREAD_START_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPPROGRESS_ROUTINE","package":"druntime","parentType":"","signature":"LPPROGRESS_ROUTINE = DWORD function(LARGE_INTEGER,  LARGE_INTEGER,  LARGE_INTEGER,  LARGE_INTEGER,\n         DWORD,  DWORD,  HANDLE,  HANDLE,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPPROGRESS_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPFIBER_START_ROUTINE","package":"druntime","parentType":"","signature":"LPFIBER_START_ROUTINE = void  function(PVOID)","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPFIBER_START_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESLANGPROCA","package":"druntime","parentType":"","signature":"ENUMRESLANGPROCA = BOOL function(HMODULE,  LPCSTR,  LPCSTR,  WORD,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESLANGPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESLANGPROCW","package":"druntime","parentType":"","signature":"ENUMRESLANGPROCW = BOOL function(HMODULE,  LPCWSTR,  LPCWSTR,  WORD,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESLANGPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESNAMEPROCA","package":"druntime","parentType":"","signature":"ENUMRESNAMEPROCA = BOOL function(HMODULE,  LPCSTR,  LPSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESNAMEPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESNAMEPROCW","package":"druntime","parentType":"","signature":"ENUMRESNAMEPROCW = BOOL function(HMODULE,  LPCWSTR,  LPWSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESNAMEPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESTYPEPROCA","package":"druntime","parentType":"","signature":"ENUMRESTYPEPROCA = BOOL function(HMODULE,  LPSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESTYPEPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ENUMRESTYPEPROCW","package":"druntime","parentType":"","signature":"ENUMRESTYPEPROCW = BOOL function(HMODULE,  LPWSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#ENUMRESTYPEPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPOVERLAPPED_COMPLETION_ROUTINE","package":"druntime","parentType":"","signature":"LPOVERLAPPED_COMPLETION_ROUTINE = void  function(DWORD,  DWORD,  LPOVERLAPPED)","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPOVERLAPPED_COMPLETION_ROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PTOP_LEVEL_EXCEPTION_FILTER","package":"druntime","parentType":"","signature":"PTOP_LEVEL_EXCEPTION_FILTER = LONG function(LPEXCEPTION_POINTERS)","url":"/ddoc/druntime/core/sys/windows/winbase.html#PTOP_LEVEL_EXCEPTION_FILTER"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPTOP_LEVEL_EXCEPTION_FILTER","package":"druntime","parentType":"","signature":"LPTOP_LEVEL_EXCEPTION_FILTER = PTOP_LEVEL_EXCEPTION_FILTER","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPTOP_LEVEL_EXCEPTION_FILTER"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PAPCFUNC","package":"druntime","parentType":"","signature":"PAPCFUNC = void  function(ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winbase.html#PAPCFUNC"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"PTIMERAPCROUTINE","package":"druntime","parentType":"","signature":"PTIMERAPCROUTINE = void  function(PVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winbase.html#PTIMERAPCROUTINE"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"RtlMoveMemory","package":"druntime","parentType":"","signature":"RtlMoveMemory = memmove","url":"/ddoc/druntime/core/sys/windows/winbase.html#RtlMoveMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"RtlCopyMemory","package":"druntime","parentType":"","signature":"RtlCopyMemory = memcpy","url":"/ddoc/druntime/core/sys/windows/winbase.html#RtlCopyMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"MoveMemory","package":"druntime","parentType":"","signature":"MoveMemory = RtlMoveMemory","url":"/ddoc/druntime/core/sys/windows/winbase.html#MoveMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"CopyMemory","package":"druntime","parentType":"","signature":"CopyMemory = RtlCopyMemory","url":"/ddoc/druntime/core/sys/windows/winbase.html#CopyMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"FillMemory","package":"druntime","parentType":"","signature":"FillMemory = RtlFillMemory","url":"/ddoc/druntime/core/sys/windows/winbase.html#FillMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"ZeroMemory","package":"druntime","parentType":"","signature":"ZeroMemory = RtlZeroMemory","url":"/ddoc/druntime/core/sys/windows/winbase.html#ZeroMemory"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"GetCurrentTime","package":"druntime","parentType":"","signature":"GetCurrentTime = GetTickCount","url":"/ddoc/druntime/core/sys/windows/winbase.html#GetCurrentTime"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPSTARTUPINFO","package":"druntime","parentType":"","signature":"LPSTARTUPINFO = STARTUPINFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPSTARTUPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPWIN32_FIND_DATA","package":"druntime","parentType":"","signature":"LPWIN32_FIND_DATA = WIN32_FIND_DATA *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPWIN32_FIND_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winbase","name":"LPHW_PROFILE_INFO","package":"druntime","parentType":"","signature":"LPHW_PROFILE_INFO = HW_PROFILE_INFO *","url":"/ddoc/druntime/core/sys/windows/winbase.html#LPHW_PROFILE_INFO"},{"doc":"Translation Notes: The following macros are obsolete, and have no effect.","kind":"variable","module":"core.sys.windows.winbase","name":"SP_SERIALCOMM","package":"druntime","parentType":"","signature":"SP_SERIALCOMM","url":"/ddoc/druntime/core/sys/windows/winbase.html#SP_SERIALCOMM"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"HFILE_ERROR","package":"druntime","parentType":"","signature":"HFILE HFILE_ERROR","url":"/ddoc/druntime/core/sys/windows/winbase.html#HFILE_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"INVALID_SET_FILE_POINTER","package":"druntime","parentType":"","signature":"DWORD INVALID_SET_FILE_POINTER","url":"/ddoc/druntime/core/sys/windows/winbase.html#INVALID_SET_FILE_POINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"CE_RXOVER","package":"druntime","parentType":"","signature":"DWORD CE_RXOVER","url":"/ddoc/druntime/core/sys/windows/winbase.html#CE_RXOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"PIPE_TYPE_BYTE","package":"druntime","parentType":"","signature":"DWORD PIPE_TYPE_BYTE","url":"/ddoc/druntime/core/sys/windows/winbase.html#PIPE_TYPE_BYTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"PIPE_CLIENT_END","package":"druntime","parentType":"","signature":"DWORD PIPE_CLIENT_END","url":"/ddoc/druntime/core/sys/windows/winbase.html#PIPE_CLIENT_END"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"PIPE_UNLIMITED_INSTANCES","package":"druntime","parentType":"","signature":"DWORD PIPE_UNLIMITED_INSTANCES","url":"/ddoc/druntime/core/sys/windows/winbase.html#PIPE_UNLIMITED_INSTANCES"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"CONSOLE_TEXTMODE_BUFFER","package":"druntime","parentType":"","signature":"DWORD CONSOLE_TEXTMODE_BUFFER","url":"/ddoc/druntime/core/sys/windows/winbase.html#CONSOLE_TEXTMODE_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"FILE_FLAG_WRITE_THROUGH","package":"druntime","parentType":"","signature":"DWORD FILE_FLAG_WRITE_THROUGH","url":"/ddoc/druntime/core/sys/windows/winbase.html#FILE_FLAG_WRITE_THROUGH"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"SECURITY_ANONYMOUS","package":"druntime","parentType":"","signature":"DWORD SECURITY_ANONYMOUS","url":"/ddoc/druntime/core/sys/windows/winbase.html#SECURITY_ANONYMOUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"VOLUME_NAME_DOS","package":"druntime","parentType":"","signature":"DWORD VOLUME_NAME_DOS","url":"/ddoc/druntime/core/sys/windows/winbase.html#VOLUME_NAME_DOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"STILL_ACTIVE","package":"druntime","parentType":"","signature":"DWORD STILL_ACTIVE","url":"/ddoc/druntime/core/sys/windows/winbase.html#STILL_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"FIND_FIRST_EX_CASE_SENSITIVE","package":"druntime","parentType":"","signature":"DWORD FIND_FIRST_EX_CASE_SENSITIVE","url":"/ddoc/druntime/core/sys/windows/winbase.html#FIND_FIRST_EX_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"MAX_COMPUTERNAME_LENGTH","package":"druntime","parentType":"","signature":"size_t MAX_COMPUTERNAME_LENGTH","url":"/ddoc/druntime/core/sys/windows/winbase.html#MAX_COMPUTERNAME_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"DOCKINFO_UNDOCKED","package":"druntime","parentType":"","signature":"DWORD DOCKINFO_UNDOCKED","url":"/ddoc/druntime/core/sys/windows/winbase.html#DOCKINFO_UNDOCKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"HANDLE_FLAG_INHERIT","package":"druntime","parentType":"","signature":"DWORD HANDLE_FLAG_INHERIT","url":"/ddoc/druntime/core/sys/windows/winbase.html#HANDLE_FLAG_INHERIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"INVALID_HANDLE_VALUE","package":"druntime","parentType":"","signature":"HANDLE INVALID_HANDLE_VALUE","url":"/ddoc/druntime/core/sys/windows/winbase.html#INVALID_HANDLE_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"FS_CASE_SENSITIVE","package":"druntime","parentType":"","signature":"DWORD FS_CASE_SENSITIVE","url":"/ddoc/druntime/core/sys/windows/winbase.html#FS_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"GMEM_FIXED","package":"druntime","parentType":"","signature":"UINT GMEM_FIXED","url":"/ddoc/druntime/core/sys/windows/winbase.html#GMEM_FIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"LMEM_FIXED","package":"druntime","parentType":"","signature":"UINT LMEM_FIXED","url":"/ddoc/druntime/core/sys/windows/winbase.html#LMEM_FIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"PROCESS_HEAP_REGION","package":"druntime","parentType":"","signature":"WORD PROCESS_HEAP_REGION","url":"/ddoc/druntime/core/sys/windows/winbase.html#PROCESS_HEAP_REGION"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"DONT_RESOLVE_DLL_REFERENCES","package":"druntime","parentType":"","signature":"DWORD DONT_RESOLVE_DLL_REFERENCES","url":"/ddoc/druntime/core/sys/windows/winbase.html#DONT_RESOLVE_DLL_REFERENCES"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"LOCKFILE_FAIL_IMMEDIATELY","package":"druntime","parentType":"","signature":"DWORD LOCKFILE_FAIL_IMMEDIATELY","url":"/ddoc/druntime/core/sys/windows/winbase.html#LOCKFILE_FAIL_IMMEDIATELY"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"MAXIMUM_WAIT_OBJECTS","package":"druntime","parentType":"","signature":"MAXIMUM_WAIT_OBJECTS","url":"/ddoc/druntime/core/sys/windows/winbase.html#MAXIMUM_WAIT_OBJECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"MAXIMUM_SUSPEND_COUNT","package":"druntime","parentType":"","signature":"MAXIMUM_SUSPEND_COUNT","url":"/ddoc/druntime/core/sys/windows/winbase.html#MAXIMUM_SUSPEND_COUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"WAIT_OBJECT_0","package":"druntime","parentType":"","signature":"WAIT_OBJECT_0","url":"/ddoc/druntime/core/sys/windows/winbase.html#WAIT_OBJECT_0"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"WAIT_ABANDONED_0","package":"druntime","parentType":"","signature":"WAIT_ABANDONED_0","url":"/ddoc/druntime/core/sys/windows/winbase.html#WAIT_ABANDONED_0"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"PURGE_TXABORT","package":"druntime","parentType":"","signature":"DWORD PURGE_TXABORT","url":"/ddoc/druntime/core/sys/windows/winbase.html#PURGE_TXABORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"EVENTLOG_SEQUENTIAL_READ","package":"druntime","parentType":"","signature":"DWORD EVENTLOG_SEQUENTIAL_READ","url":"/ddoc/druntime/core/sys/windows/winbase.html#EVENTLOG_SEQUENTIAL_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"FORMAT_MESSAGE_ALLOCATE_BUFFER","package":"druntime","parentType":"","signature":"DWORD FORMAT_MESSAGE_ALLOCATE_BUFFER","url":"/ddoc/druntime/core/sys/windows/winbase.html#FORMAT_MESSAGE_ALLOCATE_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"FORMAT_MESSAGE_MAX_WIDTH_MASK","package":"druntime","parentType":"","signature":"DWORD FORMAT_MESSAGE_MAX_WIDTH_MASK","url":"/ddoc/druntime/core/sys/windows/winbase.html#FORMAT_MESSAGE_MAX_WIDTH_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"SHUTDOWN_NORETRY","package":"druntime","parentType":"","signature":"SHUTDOWN_NORETRY","url":"/ddoc/druntime/core/sys/windows/winbase.html#SHUTDOWN_NORETRY"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"IGNORE","package":"druntime","parentType":"","signature":"IGNORE","url":"/ddoc/druntime/core/sys/windows/winbase.html#IGNORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"INFINITE","package":"druntime","parentType":"","signature":"INFINITE","url":"/ddoc/druntime/core/sys/windows/winbase.html#INFINITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"EV_RXCHAR","package":"druntime","parentType":"","signature":"DWORD EV_RXCHAR","url":"/ddoc/druntime/core/sys/windows/winbase.html#EV_RXCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"MS_CTS_ON","package":"druntime","parentType":"","signature":"DWORD MS_CTS_ON","url":"/ddoc/druntime/core/sys/windows/winbase.html#MS_CTS_ON"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"STARTF_USESHOWWINDOW","package":"druntime","parentType":"","signature":"DWORD STARTF_USESHOWWINDOW","url":"/ddoc/druntime/core/sys/windows/winbase.html#STARTF_USESHOWWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"HINSTANCE_ERROR","package":"druntime","parentType":"","signature":"HINSTANCE_ERROR","url":"/ddoc/druntime/core/sys/windows/winbase.html#HINSTANCE_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"INVALID_FILE_SIZE","package":"druntime","parentType":"","signature":"DWORD INVALID_FILE_SIZE","url":"/ddoc/druntime/core/sys/windows/winbase.html#INVALID_FILE_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"TLS_OUT_OF_INDEXES","package":"druntime","parentType":"","signature":"DWORD TLS_OUT_OF_INDEXES","url":"/ddoc/druntime/core/sys/windows/winbase.html#TLS_OUT_OF_INDEXES"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"WRITE_WATCH_FLAG_RESET","package":"druntime","parentType":"","signature":"DWORD WRITE_WATCH_FLAG_RESET","url":"/ddoc/druntime/core/sys/windows/winbase.html#WRITE_WATCH_FLAG_RESET"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"MOVEFILE_REPLACE_EXISTING","package":"druntime","parentType":"","signature":"DWORD MOVEFILE_REPLACE_EXISTING","url":"/ddoc/druntime/core/sys/windows/winbase.html#MOVEFILE_REPLACE_EXISTING"},{"doc":"","kind":"variable","module":"core.sys.windows.winbase","name":"DDD_RAW_TARGET_PATH","package":"druntime","parentType":"","signature":"DWORD DDD_RAW_TARGET_PATH","url":"/ddoc/druntime/core/sys/windows/winbase.html#DDD_RAW_TARGET_PATH"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winber","name":"core.sys.windows.winber","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_init","package":"druntime","parentType":"","signature":"BerElement * ber_init(const(BerValue) *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_init.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_printf","package":"druntime","parentType":"","signature":"int ber_printf(BerElement *,  const(char) *, ...)","url":"/ddoc/druntime/core/sys/windows/winber/ber_printf.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_flatten","package":"druntime","parentType":"","signature":"int ber_flatten(BerElement *,  BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_flatten.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_scanf","package":"druntime","parentType":"","signature":"ber_tag_t ber_scanf(BerElement *,  const(char) *, ...)","url":"/ddoc/druntime/core/sys/windows/winber/ber_scanf.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_peek_tag","package":"druntime","parentType":"","signature":"ber_tag_t ber_peek_tag(BerElement *,  ber_len_t *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_peek_tag.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_skip_tag","package":"druntime","parentType":"","signature":"ber_tag_t ber_skip_tag(BerElement *,  ber_len_t *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_skip_tag.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_first_element","package":"druntime","parentType":"","signature":"ber_tag_t ber_first_element(BerElement *,  ber_len_t *,  char * *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_first_element.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_next_element","package":"druntime","parentType":"","signature":"ber_tag_t ber_next_element(BerElement *,  ber_len_t *,  char *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_next_element.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_bvfree","package":"druntime","parentType":"","signature":"void ber_bvfree(BerValue *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_bvfree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_bvecfree","package":"druntime","parentType":"","signature":"void ber_bvecfree(BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_bvecfree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_free","package":"druntime","parentType":"","signature":"void ber_free(BerElement *,  int)","url":"/ddoc/druntime/core/sys/windows/winber/ber_free.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_bvdup","package":"druntime","parentType":"","signature":"BerValue * ber_bvdup(BerValue *)","url":"/ddoc/druntime/core/sys/windows/winber/ber_bvdup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winber","name":"ber_alloc_t","package":"druntime","parentType":"","signature":"BerElement * ber_alloc_t(int)","url":"/ddoc/druntime/core/sys/windows/winber/ber_alloc_t.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winber","name":"BerElement","package":"druntime","parentType":"","signature":"BerElement","url":"/ddoc/druntime/core/sys/windows/winber.html#BerElement"},{"doc":"","kind":"alias","module":"core.sys.windows.winber","name":"ber_int_t","package":"druntime","parentType":"","signature":"ber_int_t = int","url":"/ddoc/druntime/core/sys/windows/winber.html#ber_int_t"},{"doc":"","kind":"alias","module":"core.sys.windows.winber","name":"ber_uint_t","package":"druntime","parentType":"","signature":"ber_uint_t = uint","url":"/ddoc/druntime/core/sys/windows/winber.html#ber_uint_t"},{"doc":"","kind":"struct","module":"core.sys.windows.winber","name":"BerValue","package":"druntime","parentType":"","signature":"BerValue","url":"/ddoc/druntime/core/sys/windows/winber.html#BerValue"},{"doc":"","kind":"alias","module":"core.sys.windows.winber","name":"LDAP_BERVAL","package":"druntime","parentType":"","signature":"LDAP_BERVAL = BerValue","url":"/ddoc/druntime/core/sys/windows/winber.html#LDAP_BERVAL"},{"doc":"","kind":"alias","module":"core.sys.windows.winber","name":"PLDAP_BERVAL","package":"druntime","parentType":"","signature":"PLDAP_BERVAL = BerValue *","url":"/ddoc/druntime/core/sys/windows/winber.html#PLDAP_BERVAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winber","name":"LBER_ERROR","package":"druntime","parentType":"","signature":"ber_tag_t LBER_ERROR","url":"/ddoc/druntime/core/sys/windows/winber.html#LBER_ERROR"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wincon","name":"core.sys.windows.wincon","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wincon.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"AllocConsole","package":"druntime","parentType":"","signature":"BOOL AllocConsole()","url":"/ddoc/druntime/core/sys/windows/wincon/AllocConsole.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"CreateConsoleScreenBuffer","package":"druntime","parentType":"","signature":"HANDLE CreateConsoleScreenBuffer(DWORD,  DWORD,  const(SECURITY_ATTRIBUTES) *,  DWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wincon/CreateConsoleScreenBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"FillConsoleOutputAttribute","package":"druntime","parentType":"","signature":"BOOL FillConsoleOutputAttribute(HANDLE,  WORD,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/FillConsoleOutputAttribute.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"FillConsoleOutputCharacterA","package":"druntime","parentType":"","signature":"BOOL FillConsoleOutputCharacterA(HANDLE,  CHAR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/FillConsoleOutputCharacterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"FillConsoleOutputCharacterW","package":"druntime","parentType":"","signature":"BOOL FillConsoleOutputCharacterW(HANDLE,  WCHAR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/FillConsoleOutputCharacterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"FlushConsoleInputBuffer","package":"druntime","parentType":"","signature":"BOOL FlushConsoleInputBuffer(HANDLE)","url":"/ddoc/druntime/core/sys/windows/wincon/FlushConsoleInputBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"FreeConsole","package":"druntime","parentType":"","signature":"BOOL FreeConsole()","url":"/ddoc/druntime/core/sys/windows/wincon/FreeConsole.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GenerateConsoleCtrlEvent","package":"druntime","parentType":"","signature":"BOOL GenerateConsoleCtrlEvent(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GenerateConsoleCtrlEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleCP","package":"druntime","parentType":"","signature":"UINT GetConsoleCP()","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleCP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleCursorInfo","package":"druntime","parentType":"","signature":"BOOL GetConsoleCursorInfo(HANDLE,  PCONSOLE_CURSOR_INFO)","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleCursorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleMode","package":"druntime","parentType":"","signature":"BOOL GetConsoleMode(HANDLE, PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleOutputCP","package":"druntime","parentType":"","signature":"UINT GetConsoleOutputCP()","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleOutputCP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleScreenBufferInfo","package":"druntime","parentType":"","signature":"BOOL GetConsoleScreenBufferInfo(HANDLE,  PCONSOLE_SCREEN_BUFFER_INFO)","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleScreenBufferInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleTitleA","package":"druntime","parentType":"","signature":"DWORD GetConsoleTitleA(LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleTitleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetConsoleTitleW","package":"druntime","parentType":"","signature":"DWORD GetConsoleTitleW(LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GetConsoleTitleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetLargestConsoleWindowSize","package":"druntime","parentType":"","signature":"COORD GetLargestConsoleWindowSize(HANDLE)","url":"/ddoc/druntime/core/sys/windows/wincon/GetLargestConsoleWindowSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetNumberOfConsoleInputEvents","package":"druntime","parentType":"","signature":"BOOL GetNumberOfConsoleInputEvents(HANDLE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GetNumberOfConsoleInputEvents.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"GetNumberOfConsoleMouseButtons","package":"druntime","parentType":"","signature":"BOOL GetNumberOfConsoleMouseButtons(PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/GetNumberOfConsoleMouseButtons.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"PeekConsoleInputA","package":"druntime","parentType":"","signature":"BOOL PeekConsoleInputA(HANDLE,  PINPUT_RECORD,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/PeekConsoleInputA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"PeekConsoleInputW","package":"druntime","parentType":"","signature":"BOOL PeekConsoleInputW(HANDLE,  PINPUT_RECORD,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/PeekConsoleInputW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleA","package":"druntime","parentType":"","signature":"BOOL ReadConsoleA(HANDLE,  PVOID,  DWORD,  PDWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleW","package":"druntime","parentType":"","signature":"BOOL ReadConsoleW(HANDLE,  PVOID,  DWORD,  PDWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleInputA","package":"druntime","parentType":"","signature":"BOOL ReadConsoleInputA(HANDLE,  PINPUT_RECORD,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleInputA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleInputW","package":"druntime","parentType":"","signature":"BOOL ReadConsoleInputW(HANDLE,  PINPUT_RECORD,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleInputW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleOutputAttribute","package":"druntime","parentType":"","signature":"BOOL ReadConsoleOutputAttribute(HANDLE,  LPWORD,  DWORD,  COORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleOutputAttribute.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleOutputCharacterA","package":"druntime","parentType":"","signature":"BOOL ReadConsoleOutputCharacterA(HANDLE,  LPSTR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleOutputCharacterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleOutputCharacterW","package":"druntime","parentType":"","signature":"BOOL ReadConsoleOutputCharacterW(HANDLE,  LPWSTR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleOutputCharacterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleOutputA","package":"druntime","parentType":"","signature":"BOOL ReadConsoleOutputA(HANDLE,  PCHAR_INFO,  COORD,  COORD,  PSMALL_RECT)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleOutputA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ReadConsoleOutputW","package":"druntime","parentType":"","signature":"BOOL ReadConsoleOutputW(HANDLE,  PCHAR_INFO,  COORD,  COORD,  PSMALL_RECT)","url":"/ddoc/druntime/core/sys/windows/wincon/ReadConsoleOutputW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ScrollConsoleScreenBufferA","package":"druntime","parentType":"","signature":"BOOL ScrollConsoleScreenBufferA(HANDLE,  const(SMALL_RECT) *,  const(SMALL_RECT) *,  COORD,  const(CHAR_INFO) *)","url":"/ddoc/druntime/core/sys/windows/wincon/ScrollConsoleScreenBufferA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"ScrollConsoleScreenBufferW","package":"druntime","parentType":"","signature":"BOOL ScrollConsoleScreenBufferW(HANDLE,  const(SMALL_RECT) *,  const(SMALL_RECT) *,  COORD,  const(CHAR_INFO) *)","url":"/ddoc/druntime/core/sys/windows/wincon/ScrollConsoleScreenBufferW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleActiveScreenBuffer","package":"druntime","parentType":"","signature":"BOOL SetConsoleActiveScreenBuffer(HANDLE)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleActiveScreenBuffer.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleCP","package":"druntime","parentType":"","signature":"BOOL SetConsoleCP(UINT)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleCP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleCtrlHandler","package":"druntime","parentType":"","signature":"BOOL SetConsoleCtrlHandler(PHANDLER_ROUTINE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleCtrlHandler.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleCursorInfo","package":"druntime","parentType":"","signature":"BOOL SetConsoleCursorInfo(HANDLE,  const(CONSOLE_CURSOR_INFO) *)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleCursorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleCursorPosition","package":"druntime","parentType":"","signature":"BOOL SetConsoleCursorPosition(HANDLE,  COORD)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleCursorPosition.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleMode","package":"druntime","parentType":"","signature":"BOOL SetConsoleMode(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleOutputCP","package":"druntime","parentType":"","signature":"BOOL SetConsoleOutputCP(UINT)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleOutputCP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleScreenBufferSize","package":"druntime","parentType":"","signature":"BOOL SetConsoleScreenBufferSize(HANDLE,  COORD)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleScreenBufferSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleTextAttribute","package":"druntime","parentType":"","signature":"BOOL SetConsoleTextAttribute(HANDLE,  WORD)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleTextAttribute.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleTitleA","package":"druntime","parentType":"","signature":"BOOL SetConsoleTitleA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleTitleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleTitleW","package":"druntime","parentType":"","signature":"BOOL SetConsoleTitleW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleTitleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"SetConsoleWindowInfo","package":"druntime","parentType":"","signature":"BOOL SetConsoleWindowInfo(HANDLE,  BOOL,  const(SMALL_RECT) *)","url":"/ddoc/druntime/core/sys/windows/wincon/SetConsoleWindowInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleA","package":"druntime","parentType":"","signature":"BOOL WriteConsoleA(HANDLE,  PCVOID,  DWORD,  PDWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleW","package":"druntime","parentType":"","signature":"BOOL WriteConsoleW(HANDLE,  PCVOID,  DWORD,  PDWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleInputA","package":"druntime","parentType":"","signature":"BOOL WriteConsoleInputA(HANDLE,  const(INPUT_RECORD) *,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleInputA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleInputW","package":"druntime","parentType":"","signature":"BOOL WriteConsoleInputW(HANDLE,  const(INPUT_RECORD) *,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleInputW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleOutputA","package":"druntime","parentType":"","signature":"BOOL WriteConsoleOutputA(HANDLE,  const(CHAR_INFO) *,  COORD,  COORD,  PSMALL_RECT)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleOutputA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleOutputW","package":"druntime","parentType":"","signature":"BOOL WriteConsoleOutputW(HANDLE,  const(CHAR_INFO) *,  COORD,  COORD,  PSMALL_RECT)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleOutputW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleOutputAttribute","package":"druntime","parentType":"","signature":"BOOL WriteConsoleOutputAttribute(HANDLE,  const(WORD) *,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleOutputAttribute.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleOutputCharacterA","package":"druntime","parentType":"","signature":"BOOL WriteConsoleOutputCharacterA(HANDLE,  LPCSTR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleOutputCharacterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincon","name":"WriteConsoleOutputCharacterW","package":"druntime","parentType":"","signature":"BOOL WriteConsoleOutputCharacterW(HANDLE,  LPCWSTR,  DWORD,  COORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincon/WriteConsoleOutputCharacterW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"CHAR_INFO","package":"druntime","parentType":"","signature":"CHAR_INFO","url":"/ddoc/druntime/core/sys/windows/wincon.html#CHAR_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PCHAR_INFO","package":"druntime","parentType":"","signature":"PCHAR_INFO = CHAR_INFO *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PCHAR_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"SMALL_RECT","package":"druntime","parentType":"","signature":"SMALL_RECT","url":"/ddoc/druntime/core/sys/windows/wincon.html#SMALL_RECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PSMALL_RECT","package":"druntime","parentType":"","signature":"PSMALL_RECT = SMALL_RECT *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PSMALL_RECT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"CONSOLE_CURSOR_INFO","package":"druntime","parentType":"","signature":"CONSOLE_CURSOR_INFO","url":"/ddoc/druntime/core/sys/windows/wincon.html#CONSOLE_CURSOR_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PCONSOLE_CURSOR_INFO","package":"druntime","parentType":"","signature":"PCONSOLE_CURSOR_INFO = CONSOLE_CURSOR_INFO *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PCONSOLE_CURSOR_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"COORD","package":"druntime","parentType":"","signature":"COORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#COORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PCOORD","package":"druntime","parentType":"","signature":"PCOORD = COORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PCOORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"CONSOLE_FONT_INFO","package":"druntime","parentType":"","signature":"CONSOLE_FONT_INFO","url":"/ddoc/druntime/core/sys/windows/wincon.html#CONSOLE_FONT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PCONSOLE_FONT_INFO","package":"druntime","parentType":"","signature":"PCONSOLE_FONT_INFO = CONSOLE_FONT_INFO *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PCONSOLE_FONT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"CONSOLE_SCREEN_BUFFER_INFO","package":"druntime","parentType":"","signature":"CONSOLE_SCREEN_BUFFER_INFO","url":"/ddoc/druntime/core/sys/windows/wincon.html#CONSOLE_SCREEN_BUFFER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PCONSOLE_SCREEN_BUFFER_INFO","package":"druntime","parentType":"","signature":"PCONSOLE_SCREEN_BUFFER_INFO = CONSOLE_SCREEN_BUFFER_INFO *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PCONSOLE_SCREEN_BUFFER_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PHANDLER_ROUTINE","package":"druntime","parentType":"","signature":"PHANDLER_ROUTINE = BOOL function(DWORD)  nothrow","url":"/ddoc/druntime/core/sys/windows/wincon.html#PHANDLER_ROUTINE"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"KEY_EVENT_RECORD","package":"druntime","parentType":"","signature":"KEY_EVENT_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#KEY_EVENT_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PKEY_EVENT_RECORD","package":"druntime","parentType":"","signature":"PKEY_EVENT_RECORD = KEY_EVENT_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PKEY_EVENT_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"MOUSE_EVENT_RECORD","package":"druntime","parentType":"","signature":"MOUSE_EVENT_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#MOUSE_EVENT_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PMOUSE_EVENT_RECORD","package":"druntime","parentType":"","signature":"PMOUSE_EVENT_RECORD = MOUSE_EVENT_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PMOUSE_EVENT_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"WINDOW_BUFFER_SIZE_RECORD","package":"druntime","parentType":"","signature":"WINDOW_BUFFER_SIZE_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#WINDOW_BUFFER_SIZE_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PWINDOW_BUFFER_SIZE_RECORD","package":"druntime","parentType":"","signature":"PWINDOW_BUFFER_SIZE_RECORD = WINDOW_BUFFER_SIZE_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PWINDOW_BUFFER_SIZE_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"MENU_EVENT_RECORD","package":"druntime","parentType":"","signature":"MENU_EVENT_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#MENU_EVENT_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PMENU_EVENT_RECORD","package":"druntime","parentType":"","signature":"PMENU_EVENT_RECORD = MENU_EVENT_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PMENU_EVENT_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"FOCUS_EVENT_RECORD","package":"druntime","parentType":"","signature":"FOCUS_EVENT_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#FOCUS_EVENT_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PFOCUS_EVENT_RECORD","package":"druntime","parentType":"","signature":"PFOCUS_EVENT_RECORD = FOCUS_EVENT_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PFOCUS_EVENT_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wincon","name":"INPUT_RECORD","package":"druntime","parentType":"","signature":"INPUT_RECORD","url":"/ddoc/druntime/core/sys/windows/wincon.html#INPUT_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wincon","name":"PINPUT_RECORD","package":"druntime","parentType":"","signature":"PINPUT_RECORD = INPUT_RECORD *","url":"/ddoc/druntime/core/sys/windows/wincon.html#PINPUT_RECORD"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wincrypt","name":"core.sys.windows.wincrypt","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wincrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"GET_ALG_CLASS","package":"druntime","parentType":"","signature":"ALG_ID GET_ALG_CLASS()(ALG_ID x)","url":"/ddoc/druntime/core/sys/windows/wincrypt/GET_ALG_CLASS.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"GET_ALG_TYPE","package":"druntime","parentType":"","signature":"ALG_ID GET_ALG_TYPE()(ALG_ID x)","url":"/ddoc/druntime/core/sys/windows/wincrypt/GET_ALG_TYPE.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"GET_ALG_SID","package":"druntime","parentType":"","signature":"ALG_ID GET_ALG_SID()(ALG_ID x)","url":"/ddoc/druntime/core/sys/windows/wincrypt/GET_ALG_SID.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"RCRYPT_SUCCEEDED","package":"druntime","parentType":"","signature":"bool RCRYPT_SUCCEEDED()(BOOL r)","url":"/ddoc/druntime/core/sys/windows/wincrypt/RCRYPT_SUCCEEDED.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"RCRYPT_FAILED","package":"druntime","parentType":"","signature":"bool RCRYPT_FAILED()(BOOL r)","url":"/ddoc/druntime/core/sys/windows/wincrypt/RCRYPT_FAILED.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertCloseStore","package":"druntime","parentType":"","signature":"BOOL CertCloseStore(HCERTSTORE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertCloseStore.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertGetCertificateChain","package":"druntime","parentType":"","signature":"BOOL CertGetCertificateChain(HCERTCHAINENGINE,  PCCERT_CONTEXT,  LPFILETIME,\n       HCERTSTORE,  PCERT_CHAIN_PARA,  DWORD,  LPVOID,  PCCERT_CHAIN_CONTEXT *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertGetCertificateChain.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertVerifyCertificateChainPolicy","package":"druntime","parentType":"","signature":"BOOL CertVerifyCertificateChainPolicy(LPCSTR,  PCCERT_CHAIN_CONTEXT,\n       PCERT_CHAIN_POLICY_PARA,  PCERT_CHAIN_POLICY_STATUS)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertVerifyCertificateChainPolicy.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertFreeCertificateChain","package":"druntime","parentType":"","signature":"void CertFreeCertificateChain(PCCERT_CHAIN_CONTEXT)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertFreeCertificateChain.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertNameToStrA","package":"druntime","parentType":"","signature":"DWORD CertNameToStrA(DWORD,  PCERT_NAME_BLOB,  DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertNameToStrA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertNameToStrW","package":"druntime","parentType":"","signature":"DWORD CertNameToStrW(DWORD,  PCERT_NAME_BLOB,  DWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertNameToStrW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertOpenSystemStoreA","package":"druntime","parentType":"","signature":"HCERTSTORE CertOpenSystemStoreA(HCRYPTPROV,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertOpenSystemStoreA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertOpenSystemStoreW","package":"druntime","parentType":"","signature":"HCERTSTORE CertOpenSystemStoreW(HCRYPTPROV,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertOpenSystemStoreW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertOpenStore","package":"druntime","parentType":"","signature":"HCERTSTORE CertOpenStore(LPCSTR,  DWORD,  HCRYPTPROV,  DWORD,  const(void) *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertOpenStore.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertFindCertificateInStore","package":"druntime","parentType":"","signature":"PCCERT_CONTEXT CertFindCertificateInStore(HCERTSTORE,  DWORD,  DWORD,  DWORD,\n const(void) *,  PCCERT_CONTEXT)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertFindCertificateInStore.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertFreeCertificateContext","package":"druntime","parentType":"","signature":"BOOL CertFreeCertificateContext(PCCERT_CONTEXT)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertFreeCertificateContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertGetIssuerCertificateFromStore","package":"druntime","parentType":"","signature":"PCCERT_CONTEXT CertGetIssuerCertificateFromStore(HCERTSTORE,\n       PCCERT_CONTEXT,  PCCERT_CONTEXT,  DWORD *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertGetIssuerCertificateFromStore.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CertFindChainInStore","package":"druntime","parentType":"","signature":"PCCERT_CHAIN_CONTEXT CertFindChainInStore(HCERTSTORE,  DWORD,  DWORD,  DWORD,\n const(void) *,  PCCERT_CHAIN_CONTEXT)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CertFindChainInStore.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptAcquireContextA","package":"druntime","parentType":"","signature":"BOOL CryptAcquireContextA(HCRYPTPROV *,  LPCSTR,  LPCSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptAcquireContextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptAcquireContextW","package":"druntime","parentType":"","signature":"BOOL CryptAcquireContextW(HCRYPTPROV *,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptAcquireContextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptContextAddRef","package":"druntime","parentType":"","signature":"BOOL CryptContextAddRef(HCRYPTPROV,  DWORD *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptContextAddRef.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptReleaseContext","package":"druntime","parentType":"","signature":"BOOL CryptReleaseContext(HCRYPTPROV,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptReleaseContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGenKey","package":"druntime","parentType":"","signature":"BOOL CryptGenKey(HCRYPTPROV,  ALG_ID,  DWORD,  HCRYPTKEY *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGenKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptDeriveKey","package":"druntime","parentType":"","signature":"BOOL CryptDeriveKey(HCRYPTPROV,  ALG_ID,  HCRYPTHASH,  DWORD,  HCRYPTKEY *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptDeriveKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptDestroyKey","package":"druntime","parentType":"","signature":"BOOL CryptDestroyKey(HCRYPTKEY)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptDestroyKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSetKeyParam","package":"druntime","parentType":"","signature":"BOOL CryptSetKeyParam(HCRYPTKEY,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSetKeyParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGetKeyParam","package":"druntime","parentType":"","signature":"BOOL CryptGetKeyParam(HCRYPTKEY,  DWORD,  PBYTE,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGetKeyParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSetHashParam","package":"druntime","parentType":"","signature":"BOOL CryptSetHashParam(HCRYPTHASH,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSetHashParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGetHashParam","package":"druntime","parentType":"","signature":"BOOL CryptGetHashParam(HCRYPTHASH,  DWORD,  PBYTE,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGetHashParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSetProvParam","package":"druntime","parentType":"","signature":"BOOL CryptSetProvParam(HCRYPTPROV,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSetProvParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGetProvParam","package":"druntime","parentType":"","signature":"BOOL CryptGetProvParam(HCRYPTPROV,  DWORD,  PBYTE,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGetProvParam.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGenRandom","package":"druntime","parentType":"","signature":"BOOL CryptGenRandom(HCRYPTPROV,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGenRandom.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGetUserKey","package":"druntime","parentType":"","signature":"BOOL CryptGetUserKey(HCRYPTPROV,  DWORD,  HCRYPTKEY *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGetUserKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptExportKey","package":"druntime","parentType":"","signature":"BOOL CryptExportKey(HCRYPTKEY,  HCRYPTKEY,  DWORD,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptExportKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptImportKey","package":"druntime","parentType":"","signature":"BOOL CryptImportKey(HCRYPTPROV,  PBYTE,  DWORD,  HCRYPTKEY,  DWORD,\n       HCRYPTKEY *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptImportKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptEncrypt","package":"druntime","parentType":"","signature":"BOOL CryptEncrypt(HCRYPTKEY,  HCRYPTHASH,  BOOL,  DWORD,  PBYTE,  PDWORD,\n       DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptEncrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptDecrypt","package":"druntime","parentType":"","signature":"BOOL CryptDecrypt(HCRYPTKEY,  HCRYPTHASH,  BOOL,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptDecrypt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptCreateHash","package":"druntime","parentType":"","signature":"BOOL CryptCreateHash(HCRYPTPROV,  ALG_ID,  HCRYPTKEY,  DWORD,  HCRYPTHASH *)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptCreateHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptHashData","package":"druntime","parentType":"","signature":"BOOL CryptHashData(HCRYPTHASH,  PBYTE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptHashData.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptHashSessionKey","package":"druntime","parentType":"","signature":"BOOL CryptHashSessionKey(HCRYPTHASH,  HCRYPTKEY,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptHashSessionKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptGetHashValue","package":"druntime","parentType":"","signature":"BOOL CryptGetHashValue(HCRYPTHASH,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptGetHashValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptDestroyHash","package":"druntime","parentType":"","signature":"BOOL CryptDestroyHash(HCRYPTHASH)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptDestroyHash.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSignHashA","package":"druntime","parentType":"","signature":"BOOL CryptSignHashA(HCRYPTHASH,  DWORD,  LPCSTR,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSignHashA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSignHashW","package":"druntime","parentType":"","signature":"BOOL CryptSignHashW(HCRYPTHASH,  DWORD,  LPCWSTR,  DWORD,  PBYTE,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSignHashW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptVerifySignatureA","package":"druntime","parentType":"","signature":"BOOL CryptVerifySignatureA(HCRYPTHASH,  PBYTE,  DWORD,  HCRYPTKEY,  LPCSTR,\n       DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptVerifySignatureA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptVerifySignatureW","package":"druntime","parentType":"","signature":"BOOL CryptVerifySignatureW(HCRYPTHASH,  PBYTE,  DWORD,  HCRYPTKEY,  LPCWSTR,\n       DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptVerifySignatureW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSetProviderA","package":"druntime","parentType":"","signature":"BOOL CryptSetProviderA(LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSetProviderA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wincrypt","name":"CryptSetProviderW","package":"druntime","parentType":"","signature":"BOOL CryptSetProviderW(LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wincrypt/CryptSetProviderW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"ALG_ID","package":"druntime","parentType":"","signature":"ALG_ID = UINT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#ALG_ID"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"HCRYPTPROV","package":"druntime","parentType":"","signature":"HCRYPTPROV = ULONG_PTR","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#HCRYPTPROV"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"HCERTSTORE","package":"druntime","parentType":"","signature":"HCERTSTORE = PVOID","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#HCERTSTORE"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"VTableProvStruc","package":"druntime","parentType":"","signature":"VTableProvStruc","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#VTableProvStruc"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PVTableProvStruc","package":"druntime","parentType":"","signature":"PVTableProvStruc = VTableProvStruc *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PVTableProvStruc"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"_CRYPTOAPI_BLOB","package":"druntime","parentType":"","signature":"_CRYPTOAPI_BLOB","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#_CRYPTOAPI_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"CRYPT_INTEGER_BLOB","package":"druntime","parentType":"","signature":"CRYPT_INTEGER_BLOB = _CRYPTOAPI_BLOB","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRYPT_INTEGER_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRYPT_INTEGER_BLOB","package":"druntime","parentType":"","signature":"PCRYPT_INTEGER_BLOB = _CRYPTOAPI_BLOB *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRYPT_INTEGER_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"SSL_EXTRA_CERT_CHAIN_POLICY_PARA","package":"druntime","parentType":"","signature":"SSL_EXTRA_CERT_CHAIN_POLICY_PARA","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#SSL_EXTRA_CERT_CHAIN_POLICY_PARA"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"HTTPSPolicyCallbackData","package":"druntime","parentType":"","signature":"HTTPSPolicyCallbackData = SSL_EXTRA_CERT_CHAIN_POLICY_PARA","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#HTTPSPolicyCallbackData"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PSSL_EXTRA_CERT_CHAIN_POLICY_PARA","package":"druntime","parentType":"","signature":"PSSL_EXTRA_CERT_CHAIN_POLICY_PARA = SSL_EXTRA_CERT_CHAIN_POLICY_PARA *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PSSL_EXTRA_CERT_CHAIN_POLICY_PARA"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_POLICY_PARA","package":"druntime","parentType":"","signature":"CERT_CHAIN_POLICY_PARA","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_POLICY_PARA"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_POLICY_PARA","package":"druntime","parentType":"","signature":"PCERT_CHAIN_POLICY_PARA = CERT_CHAIN_POLICY_PARA *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_POLICY_PARA"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_POLICY_STATUS","package":"druntime","parentType":"","signature":"CERT_CHAIN_POLICY_STATUS","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_POLICY_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_POLICY_STATUS","package":"druntime","parentType":"","signature":"PCERT_CHAIN_POLICY_STATUS = CERT_CHAIN_POLICY_STATUS *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_POLICY_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRYPT_ALGORITHM_IDENTIFIER","package":"druntime","parentType":"","signature":"CRYPT_ALGORITHM_IDENTIFIER","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRYPT_ALGORITHM_IDENTIFIER"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRYPT_ALGORITHM_IDENTIFIER","package":"druntime","parentType":"","signature":"PCRYPT_ALGORITHM_IDENTIFIER = CRYPT_ALGORITHM_IDENTIFIER *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRYPT_ALGORITHM_IDENTIFIER"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRYPT_BIT_BLOB","package":"druntime","parentType":"","signature":"CRYPT_BIT_BLOB","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRYPT_BIT_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRYPT_BIT_BLOB","package":"druntime","parentType":"","signature":"PCRYPT_BIT_BLOB = CRYPT_BIT_BLOB *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRYPT_BIT_BLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_PUBLIC_KEY_INFO","package":"druntime","parentType":"","signature":"CERT_PUBLIC_KEY_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_PUBLIC_KEY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_PUBLIC_KEY_INFO","package":"druntime","parentType":"","signature":"PCERT_PUBLIC_KEY_INFO = CERT_PUBLIC_KEY_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_PUBLIC_KEY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_EXTENSION","package":"druntime","parentType":"","signature":"CERT_EXTENSION","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_EXTENSION"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_EXTENSION","package":"druntime","parentType":"","signature":"PCERT_EXTENSION = CERT_EXTENSION *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_EXTENSION"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_INFO","package":"druntime","parentType":"","signature":"CERT_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_INFO","package":"druntime","parentType":"","signature":"PCERT_INFO = CERT_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CONTEXT","package":"druntime","parentType":"","signature":"CERT_CONTEXT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CONTEXT","package":"druntime","parentType":"","signature":"PCERT_CONTEXT = CERT_CONTEXT *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCCERT_CONTEXT","package":"druntime","parentType":"","signature":"PCCERT_CONTEXT = const(CERT_CONTEXT) *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCCERT_CONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CTL_USAGE","package":"druntime","parentType":"","signature":"CTL_USAGE","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CTL_USAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"CERT_ENHKEY_USAGE","package":"druntime","parentType":"","signature":"CERT_ENHKEY_USAGE = CTL_USAGE","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_ENHKEY_USAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCTRL_USAGE","package":"druntime","parentType":"","signature":"PCTRL_USAGE = CTL_USAGE *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCTRL_USAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_USAGE_MATCH","package":"druntime","parentType":"","signature":"CERT_USAGE_MATCH","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_USAGE_MATCH"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_USAGE_MATCH","package":"druntime","parentType":"","signature":"PCERT_USAGE_MATCH = CERT_USAGE_MATCH *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_USAGE_MATCH"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_PARA","package":"druntime","parentType":"","signature":"CERT_CHAIN_PARA","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_PARA"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_PARA","package":"druntime","parentType":"","signature":"PCERT_CHAIN_PARA = CERT_CHAIN_PARA *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_PARA"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK","package":"druntime","parentType":"","signature":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK = BOOL function(PCCERT_CONTEXT,  void *)","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_FIND_BY_ISSUER_PARA","package":"druntime","parentType":"","signature":"CERT_CHAIN_FIND_BY_ISSUER_PARA","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_FIND_BY_ISSUER_PARA"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_FIND_BY_ISSUER_PARA","package":"druntime","parentType":"","signature":"PCERT_CHAIN_FIND_BY_ISSUER_PARA = CERT_CHAIN_FIND_BY_ISSUER_PARA *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_FIND_BY_ISSUER_PARA"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_TRUST_STATUS","package":"druntime","parentType":"","signature":"CERT_TRUST_STATUS","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_TRUST_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_TRUST_STATUS","package":"druntime","parentType":"","signature":"PCERT_TRUST_STATUS = CERT_TRUST_STATUS *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_TRUST_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRL_ENTRY","package":"druntime","parentType":"","signature":"CRL_ENTRY","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRL_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRL_ENTRY","package":"druntime","parentType":"","signature":"PCRL_ENTRY = CRL_ENTRY *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRL_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRL_INFO","package":"druntime","parentType":"","signature":"CRL_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRL_INFO","package":"druntime","parentType":"","signature":"PCRL_INFO = CRL_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRL_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRL_CONTEXT","package":"druntime","parentType":"","signature":"CRL_CONTEXT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRL_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRL_CONTEXT","package":"druntime","parentType":"","signature":"PCRL_CONTEXT = CRL_CONTEXT *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRL_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCCRL_CONTEXT","package":"druntime","parentType":"","signature":"PCCRL_CONTEXT = const(CRL_CONTEXT) *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCCRL_CONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_REVOCATION_CRL_INFO","package":"druntime","parentType":"","signature":"CERT_REVOCATION_CRL_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_REVOCATION_CRL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_REVOCATION_CRL_INFO","package":"druntime","parentType":"","signature":"PCERT_REVOCATION_CRL_INFO = CERT_REVOCATION_CRL_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_REVOCATION_CRL_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_REVOCATION_INFO","package":"druntime","parentType":"","signature":"CERT_REVOCATION_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_REVOCATION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_REVOCATION_INFO","package":"druntime","parentType":"","signature":"PCERT_REVOCATION_INFO = CERT_REVOCATION_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_REVOCATION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_ELEMENT","package":"druntime","parentType":"","signature":"CERT_CHAIN_ELEMENT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_ELEMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_ELEMENT","package":"druntime","parentType":"","signature":"PCERT_CHAIN_ELEMENT = CERT_CHAIN_ELEMENT *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_ELEMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CRYPT_ATTRIBUTE","package":"druntime","parentType":"","signature":"CRYPT_ATTRIBUTE","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CRYPT_ATTRIBUTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCRYPT_ATTRIBUTE","package":"druntime","parentType":"","signature":"PCRYPT_ATTRIBUTE = CRYPT_ATTRIBUTE *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCRYPT_ATTRIBUTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CTL_ENTRY","package":"druntime","parentType":"","signature":"CTL_ENTRY","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CTL_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCTL_ENTRY","package":"druntime","parentType":"","signature":"PCTL_ENTRY = CTL_ENTRY *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCTL_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CTL_INFO","package":"druntime","parentType":"","signature":"CTL_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CTL_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCTL_INFO","package":"druntime","parentType":"","signature":"PCTL_INFO = CTL_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCTL_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CTL_CONTEXT","package":"druntime","parentType":"","signature":"CTL_CONTEXT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CTL_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCTL_CONTEXT","package":"druntime","parentType":"","signature":"PCTL_CONTEXT = CTL_CONTEXT *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCTL_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCCTL_CONTEXT","package":"druntime","parentType":"","signature":"PCCTL_CONTEXT = const(CTL_CONTEXT) *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCCTL_CONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_TRUST_LIST_INFO","package":"druntime","parentType":"","signature":"CERT_TRUST_LIST_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_TRUST_LIST_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_TRUST_LIST_INFO","package":"druntime","parentType":"","signature":"PCERT_TRUST_LIST_INFO = CERT_TRUST_LIST_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_TRUST_LIST_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_SIMPLE_CHAIN","package":"druntime","parentType":"","signature":"CERT_SIMPLE_CHAIN","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_SIMPLE_CHAIN"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_SIMPLE_CHAIN","package":"druntime","parentType":"","signature":"PCERT_SIMPLE_CHAIN = CERT_SIMPLE_CHAIN *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_SIMPLE_CHAIN"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCCERT_CHAIN_CONTEXT","package":"druntime","parentType":"","signature":"PCCERT_CHAIN_CONTEXT = const(CERT_CHAIN_CONTEXT) *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCCERT_CHAIN_CONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"CERT_CHAIN_CONTEXT","package":"druntime","parentType":"","signature":"CERT_CHAIN_CONTEXT","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#CERT_CHAIN_CONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PCERT_CHAIN_CONTEXT","package":"druntime","parentType":"","signature":"PCERT_CHAIN_CONTEXT = CERT_CHAIN_CONTEXT *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PCERT_CHAIN_CONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"PROV_ENUMALGS","package":"druntime","parentType":"","signature":"PROV_ENUMALGS","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PROV_ENUMALGS"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"PUBLICKEYSTRUC","package":"druntime","parentType":"","signature":"PUBLICKEYSTRUC","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PUBLICKEYSTRUC"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"BLOBHEADER","package":"druntime","parentType":"","signature":"BLOBHEADER = PUBLICKEYSTRUC","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#BLOBHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"RSAPUBKEY","package":"druntime","parentType":"","signature":"RSAPUBKEY","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#RSAPUBKEY"},{"doc":"","kind":"struct","module":"core.sys.windows.wincrypt","name":"HMAC_INFO","package":"druntime","parentType":"","signature":"HMAC_INFO","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#HMAC_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wincrypt","name":"PHMAC_INFO","package":"druntime","parentType":"","signature":"PHMAC_INFO = HMAC_INFO *","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#PHMAC_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.wincrypt","name":"MS_DEF_PROV","package":"druntime","parentType":"","signature":"TCHAR[] MS_DEF_PROV","url":"/ddoc/druntime/core/sys/windows/wincrypt.html#MS_DEF_PROV"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.windef","name":"core.sys.windows.windef","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/windef.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"MAKEWORD","package":"druntime","parentType":"","signature":"ushort MAKEWORD(ubyte  a,  ubyte  b)","url":"/ddoc/druntime/core/sys/windows/windef/MAKEWORD.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"MAKEWORD","package":"druntime","parentType":"","signature":"ushort MAKEWORD(ushort  a,  ushort  b)","url":"/ddoc/druntime/core/sys/windows/windef/MAKEWORD.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"MAKELONG","package":"druntime","parentType":"","signature":"uint MAKELONG(ushort  a,  ushort  b)","url":"/ddoc/druntime/core/sys/windows/windef/MAKELONG.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"MAKELONG","package":"druntime","parentType":"","signature":"uint MAKELONG(uint  a,  uint  b)","url":"/ddoc/druntime/core/sys/windows/windef/MAKELONG.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"LOWORD","package":"druntime","parentType":"","signature":"ushort LOWORD(ulong  l)","url":"/ddoc/druntime/core/sys/windows/windef/LOWORD.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"HIWORD","package":"druntime","parentType":"","signature":"ushort HIWORD(ulong  l)","url":"/ddoc/druntime/core/sys/windows/windef/HIWORD.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"LOBYTE","package":"druntime","parentType":"","signature":"ubyte LOBYTE(ushort  w)","url":"/ddoc/druntime/core/sys/windows/windef/LOBYTE.html"},{"doc":"","kind":"function","module":"core.sys.windows.windef","name":"HIBYTE","package":"druntime","parentType":"","signature":"ubyte HIBYTE(ushort  w)","url":"/ddoc/druntime/core/sys/windows/windef/HIBYTE.html"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"BYTE","package":"druntime","parentType":"","signature":"BYTE = ubyte","url":"/ddoc/druntime/core/sys/windows/windef.html#BYTE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PBYTE","package":"druntime","parentType":"","signature":"PBYTE = ubyte *","url":"/ddoc/druntime/core/sys/windows/windef.html#PBYTE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"USHORT","package":"druntime","parentType":"","signature":"USHORT = ushort","url":"/ddoc/druntime/core/sys/windows/windef.html#USHORT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PUSHORT","package":"druntime","parentType":"","signature":"PUSHORT = ushort *","url":"/ddoc/druntime/core/sys/windows/windef.html#PUSHORT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"ULONG","package":"druntime","parentType":"","signature":"ULONG = uint","url":"/ddoc/druntime/core/sys/windows/windef.html#ULONG"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PULONG","package":"druntime","parentType":"","signature":"PULONG = uint *","url":"/ddoc/druntime/core/sys/windows/windef.html#PULONG"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"WINBOOL","package":"druntime","parentType":"","signature":"WINBOOL = int","url":"/ddoc/druntime/core/sys/windows/windef.html#WINBOOL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PWINBOOL","package":"druntime","parentType":"","signature":"PWINBOOL = int *","url":"/ddoc/druntime/core/sys/windows/windef.html#PWINBOOL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"FLOAT","package":"druntime","parentType":"","signature":"FLOAT = float","url":"/ddoc/druntime/core/sys/windows/windef.html#FLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PFLOAT","package":"druntime","parentType":"","signature":"PFLOAT = float *","url":"/ddoc/druntime/core/sys/windows/windef.html#PFLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PCVOID","package":"druntime","parentType":"","signature":"PCVOID = const(void) *","url":"/ddoc/druntime/core/sys/windows/windef.html#PCVOID"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"WPARAM","package":"druntime","parentType":"","signature":"WPARAM = UINT_PTR","url":"/ddoc/druntime/core/sys/windows/windef.html#WPARAM"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"LPARAM","package":"druntime","parentType":"","signature":"LPARAM = LONG_PTR","url":"/ddoc/druntime/core/sys/windows/windef.html#LPARAM"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HHOOK","package":"druntime","parentType":"","signature":"HHOOK = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HHOOK"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HGLOBAL","package":"druntime","parentType":"","signature":"HGLOBAL = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HGLOBAL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HLOCAL","package":"druntime","parentType":"","signature":"HLOCAL = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HLOCAL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"GLOBALHANDLE","package":"druntime","parentType":"","signature":"GLOBALHANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#GLOBALHANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"LOCALHANDLE","package":"druntime","parentType":"","signature":"LOCALHANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#LOCALHANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HGDIOBJ","package":"druntime","parentType":"","signature":"HGDIOBJ = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HGDIOBJ"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HACCEL","package":"druntime","parentType":"","signature":"HACCEL = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HACCEL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HBITMAP","package":"druntime","parentType":"","signature":"HBITMAP = HGDIOBJ","url":"/ddoc/druntime/core/sys/windows/windef.html#HBITMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HBRUSH","package":"druntime","parentType":"","signature":"HBRUSH = HGDIOBJ","url":"/ddoc/druntime/core/sys/windows/windef.html#HBRUSH"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HCOLORSPACE","package":"druntime","parentType":"","signature":"HCOLORSPACE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HDC","package":"druntime","parentType":"","signature":"HDC = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HDC"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HGLRC","package":"druntime","parentType":"","signature":"HGLRC = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HGLRC"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HDESK","package":"druntime","parentType":"","signature":"HDESK = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HDESK"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HENHMETAFILE","package":"druntime","parentType":"","signature":"HENHMETAFILE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HENHMETAFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HFONT","package":"druntime","parentType":"","signature":"HFONT = HGDIOBJ","url":"/ddoc/druntime/core/sys/windows/windef.html#HFONT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HICON","package":"druntime","parentType":"","signature":"HICON = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HICON"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HINSTANCE","package":"druntime","parentType":"","signature":"HINSTANCE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HINSTANCE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HKEY","package":"druntime","parentType":"","signature":"HKEY = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HKEY"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HMENU","package":"druntime","parentType":"","signature":"HMENU = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HMENU"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HMETAFILE","package":"druntime","parentType":"","signature":"HMETAFILE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HMETAFILE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HMODULE","package":"druntime","parentType":"","signature":"HMODULE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HMODULE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HMONITOR","package":"druntime","parentType":"","signature":"HMONITOR = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HMONITOR"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HPALETTE","package":"druntime","parentType":"","signature":"HPALETTE = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HPEN","package":"druntime","parentType":"","signature":"HPEN = HGDIOBJ","url":"/ddoc/druntime/core/sys/windows/windef.html#HPEN"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HRGN","package":"druntime","parentType":"","signature":"HRGN = HGDIOBJ","url":"/ddoc/druntime/core/sys/windows/windef.html#HRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HRSRC","package":"druntime","parentType":"","signature":"HRSRC = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HRSRC"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HSTR","package":"druntime","parentType":"","signature":"HSTR = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HTASK","package":"druntime","parentType":"","signature":"HTASK = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HTASK"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HWND","package":"druntime","parentType":"","signature":"HWND = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HWND"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HWINSTA","package":"druntime","parentType":"","signature":"HWINSTA = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HWINSTA"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HKL","package":"druntime","parentType":"","signature":"HKL = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HKL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"HCURSOR","package":"druntime","parentType":"","signature":"HCURSOR = HANDLE","url":"/ddoc/druntime/core/sys/windows/windef.html#HCURSOR"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PHKEY","package":"druntime","parentType":"","signature":"PHKEY = HKEY *","url":"/ddoc/druntime/core/sys/windows/windef.html#PHKEY"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"FARPROC","package":"druntime","parentType":"","signature":"FARPROC = INT_PTR function()  nothrow","url":"/ddoc/druntime/core/sys/windows/windef.html#FARPROC"},{"doc":"","kind":"struct","module":"core.sys.windows.windef","name":"RECT","package":"druntime","parentType":"","signature":"RECT","url":"/ddoc/druntime/core/sys/windows/windef.html#RECT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"RECTL","package":"druntime","parentType":"","signature":"RECTL = RECT","url":"/ddoc/druntime/core/sys/windows/windef.html#RECTL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PRECT","package":"druntime","parentType":"","signature":"PRECT = RECT *","url":"/ddoc/druntime/core/sys/windows/windef.html#PRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"LPCRECT","package":"druntime","parentType":"","signature":"LPCRECT = const(RECT) *","url":"/ddoc/druntime/core/sys/windows/windef.html#LPCRECT"},{"doc":"","kind":"struct","module":"core.sys.windows.windef","name":"POINT","package":"druntime","parentType":"","signature":"POINT","url":"/ddoc/druntime/core/sys/windows/windef.html#POINT"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"POINTL","package":"druntime","parentType":"","signature":"POINTL = POINT","url":"/ddoc/druntime/core/sys/windows/windef.html#POINTL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PPOINT","package":"druntime","parentType":"","signature":"PPOINT = POINT *","url":"/ddoc/druntime/core/sys/windows/windef.html#PPOINT"},{"doc":"","kind":"struct","module":"core.sys.windows.windef","name":"SIZE","package":"druntime","parentType":"","signature":"SIZE","url":"/ddoc/druntime/core/sys/windows/windef.html#SIZE"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"SIZEL","package":"druntime","parentType":"","signature":"SIZEL = SIZE","url":"/ddoc/druntime/core/sys/windows/windef.html#SIZEL"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PSIZE","package":"druntime","parentType":"","signature":"PSIZE = SIZE *","url":"/ddoc/druntime/core/sys/windows/windef.html#PSIZE"},{"doc":"","kind":"struct","module":"core.sys.windows.windef","name":"POINTS","package":"druntime","parentType":"","signature":"POINTS","url":"/ddoc/druntime/core/sys/windows/windef.html#POINTS"},{"doc":"","kind":"alias","module":"core.sys.windows.windef","name":"PPOINTS","package":"druntime","parentType":"","signature":"PPOINTS = POINTS *","url":"/ddoc/druntime/core/sys/windows/windef.html#PPOINTS"},{"doc":"","kind":"variable","module":"core.sys.windows.windef","name":"MAX_PATH","package":"druntime","parentType":"","signature":"size_t MAX_PATH","url":"/ddoc/druntime/core/sys/windows/windef.html#MAX_PATH"},{"doc":"","kind":"variable","module":"core.sys.windows.windef","name":"NULL","package":"druntime","parentType":"","signature":"NULL","url":"/ddoc/druntime/core/sys/windows/windef.html#NULL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.windows","name":"core.sys.windows.windows","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/windows.html"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winerror","name":"core.sys.windows.winerror","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winerror.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"SUCCEEDED","package":"druntime","parentType":"","signature":"bool SUCCEEDED(HRESULT Status)","url":"/ddoc/druntime/core/sys/windows/winerror/SUCCEEDED.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"FAILED","package":"druntime","parentType":"","signature":"bool FAILED(HRESULT Status)","url":"/ddoc/druntime/core/sys/windows/winerror/FAILED.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"IS_ERROR","package":"druntime","parentType":"","signature":"bool IS_ERROR(HRESULT Status)","url":"/ddoc/druntime/core/sys/windows/winerror/IS_ERROR.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"HRESULT_CODE","package":"druntime","parentType":"","signature":"ushort HRESULT_CODE(HRESULT r)","url":"/ddoc/druntime/core/sys/windows/winerror/HRESULT_CODE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"SCODE_CODE","package":"druntime","parentType":"","signature":"ushort SCODE_CODE(SCODE r)","url":"/ddoc/druntime/core/sys/windows/winerror/SCODE_CODE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"HRESULT_FACILITY","package":"druntime","parentType":"","signature":"ushort HRESULT_FACILITY(HRESULT r)","url":"/ddoc/druntime/core/sys/windows/winerror/HRESULT_FACILITY.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"SCODE_FACILITY","package":"druntime","parentType":"","signature":"ushort SCODE_FACILITY(SCODE r)","url":"/ddoc/druntime/core/sys/windows/winerror/SCODE_FACILITY.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"HRESULT_SEVERITY","package":"druntime","parentType":"","signature":"ushort HRESULT_SEVERITY(HRESULT r)","url":"/ddoc/druntime/core/sys/windows/winerror/HRESULT_SEVERITY.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"SCODE_SEVERITY","package":"druntime","parentType":"","signature":"ushort SCODE_SEVERITY(SCODE r)","url":"/ddoc/druntime/core/sys/windows/winerror/SCODE_SEVERITY.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"MAKE_HRESULT","package":"druntime","parentType":"","signature":"HRESULT MAKE_HRESULT(bool  s,  uint  f,  uint  c)","url":"/ddoc/druntime/core/sys/windows/winerror/MAKE_HRESULT.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"MAKE_SCODE","package":"druntime","parentType":"","signature":"SCODE MAKE_SCODE(bool  s,  uint  f,  uint  c)","url":"/ddoc/druntime/core/sys/windows/winerror/MAKE_SCODE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"GetScode","package":"druntime","parentType":"","signature":"SCODE GetScode(HRESULT hr)","url":"/ddoc/druntime/core/sys/windows/winerror/GetScode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"ResultFromScode","package":"druntime","parentType":"","signature":"HRESULT ResultFromScode(SCODE c)","url":"/ddoc/druntime/core/sys/windows/winerror/ResultFromScode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"HRESULT_FROM_NT","package":"druntime","parentType":"","signature":"HRESULT HRESULT_FROM_NT(HRESULT x)","url":"/ddoc/druntime/core/sys/windows/winerror/HRESULT_FROM_NT.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"HRESULT_FROM_WIN32","package":"druntime","parentType":"","signature":"HRESULT HRESULT_FROM_WIN32(HRESULT x)","url":"/ddoc/druntime/core/sys/windows/winerror/HRESULT_FROM_WIN32.html"},{"doc":"","kind":"function","module":"core.sys.windows.winerror","name":"PropagateResult","package":"druntime","parentType":"","signature":"HRESULT PropagateResult(HRESULT hrPrevious,  SCODE scBase)","url":"/ddoc/druntime/core/sys/windows/winerror/PropagateResult.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winerror","name":"SCODE","package":"druntime","parentType":"","signature":"SCODE = int","url":"/ddoc/druntime/core/sys/windows/winerror.html#SCODE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wingdi","name":"core.sys.windows.wingdi","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wingdi.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"MAKEROP4","package":"druntime","parentType":"","signature":"DWORD MAKEROP4(DWORD fore,  DWORD back)","url":"/ddoc/druntime/core/sys/windows/wingdi/MAKEROP4.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CMYK","package":"druntime","parentType":"","signature":"COLORREF CMYK(BYTE c,  BYTE m,  BYTE y,  BYTE k)","url":"/ddoc/druntime/core/sys/windows/wingdi/CMYK.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCValue","package":"druntime","parentType":"","signature":"BYTE GetCValue(COLORREF cmyk)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMValue","package":"druntime","parentType":"","signature":"BYTE GetMValue(COLORREF cmyk)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetYValue","package":"druntime","parentType":"","signature":"BYTE GetYValue(COLORREF cmyk)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetYValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetKValue","package":"druntime","parentType":"","signature":"BYTE GetKValue(COLORREF cmyk)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetKValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RGB","package":"druntime","parentType":"","signature":"COLORREF RGB(/*BYTE*/ uint  r, /*BYTE*/ uint  g, /*BYTE*/ uint  b)","url":"/ddoc/druntime/core/sys/windows/wingdi/RGB.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetRValue","package":"druntime","parentType":"","signature":"BYTE GetRValue(COLORREF c)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetRValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetGValue","package":"druntime","parentType":"","signature":"BYTE GetGValue(COLORREF c)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetGValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBValue","package":"druntime","parentType":"","signature":"BYTE GetBValue(COLORREF c)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PALETTEINDEX","package":"druntime","parentType":"","signature":"COLORREF PALETTEINDEX(WORD i)","url":"/ddoc/druntime/core/sys/windows/wingdi/PALETTEINDEX.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PALETTERGB","package":"druntime","parentType":"","signature":"COLORREF PALETTERGB(BYTE r,  BYTE g,  BYTE b)","url":"/ddoc/druntime/core/sys/windows/wingdi/PALETTERGB.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AbortDoc","package":"druntime","parentType":"","signature":"int AbortDoc(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/AbortDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AbortPath","package":"druntime","parentType":"","signature":"BOOL AbortPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/AbortPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AddFontResourceA","package":"druntime","parentType":"","signature":"int AddFontResourceA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/AddFontResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AddFontResourceW","package":"druntime","parentType":"","signature":"int AddFontResourceW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/AddFontResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AngleArc","package":"druntime","parentType":"","signature":"BOOL AngleArc(HDC,  int,  int,  DWORD,  FLOAT,  FLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/AngleArc.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"AnimatePalette","package":"druntime","parentType":"","signature":"BOOL AnimatePalette(HPALETTE,  UINT,  UINT,  const(PALETTEENTRY) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/AnimatePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Arc","package":"druntime","parentType":"","signature":"BOOL Arc(HDC,  int,  int,  int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Arc.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ArcTo","package":"druntime","parentType":"","signature":"BOOL ArcTo(HDC,  int,  int,  int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/ArcTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"BeginPath","package":"druntime","parentType":"","signature":"BOOL BeginPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/BeginPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"BitBlt","package":"druntime","parentType":"","signature":"BOOL BitBlt(HDC,  int,  int,  int,  int,  HDC,  int,  int,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/BitBlt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CancelDC","package":"druntime","parentType":"","signature":"BOOL CancelDC(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CancelDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CheckColorsInGamut","package":"druntime","parentType":"","signature":"BOOL CheckColorsInGamut(HDC,  PVOID,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/CheckColorsInGamut.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Chord","package":"druntime","parentType":"","signature":"BOOL Chord(HDC,  int,  int,  int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Chord.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ChoosePixelFormat","package":"druntime","parentType":"","signature":"int ChoosePixelFormat(HDC,  const(PIXELFORMATDESCRIPTOR) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ChoosePixelFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CloseEnhMetaFile","package":"druntime","parentType":"","signature":"HENHMETAFILE CloseEnhMetaFile(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CloseEnhMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CloseFigure","package":"druntime","parentType":"","signature":"BOOL CloseFigure(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CloseFigure.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CloseMetaFile","package":"druntime","parentType":"","signature":"HMETAFILE CloseMetaFile(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CloseMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ColorMatchToTarget","package":"druntime","parentType":"","signature":"BOOL ColorMatchToTarget(HDC,  HDC,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/ColorMatchToTarget.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ColorCorrectPalette","package":"druntime","parentType":"","signature":"BOOL ColorCorrectPalette(HDC,  HPALETTE,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/ColorCorrectPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CombineRgn","package":"druntime","parentType":"","signature":"int CombineRgn(HRGN,  HRGN,  HRGN,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CombineRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CombineTransform","package":"druntime","parentType":"","signature":"BOOL CombineTransform(LPXFORM,  const(XFORM) *,  const(XFORM) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CombineTransform.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CopyEnhMetaFileA","package":"druntime","parentType":"","signature":"HENHMETAFILE CopyEnhMetaFileA(HENHMETAFILE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CopyEnhMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CopyEnhMetaFileW","package":"druntime","parentType":"","signature":"HENHMETAFILE CopyEnhMetaFileW(HENHMETAFILE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CopyEnhMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CopyMetaFileA","package":"druntime","parentType":"","signature":"HMETAFILE CopyMetaFileA(HMETAFILE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CopyMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CopyMetaFileW","package":"druntime","parentType":"","signature":"HMETAFILE CopyMetaFileW(HMETAFILE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CopyMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateBitmap","package":"druntime","parentType":"","signature":"HBITMAP CreateBitmap(int,  int,  UINT,  UINT,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateBitmapIndirect","package":"druntime","parentType":"","signature":"HBITMAP CreateBitmapIndirect(const(BITMAP) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateBitmapIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateBrushIndirect","package":"druntime","parentType":"","signature":"HBRUSH CreateBrushIndirect(const(LOGBRUSH) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateBrushIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateColorSpaceA","package":"druntime","parentType":"","signature":"HCOLORSPACE CreateColorSpaceA(LPLOGCOLORSPACEA)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateColorSpaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateColorSpaceW","package":"druntime","parentType":"","signature":"HCOLORSPACE CreateColorSpaceW(LPLOGCOLORSPACEW)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateColorSpaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateCompatibleBitmap","package":"druntime","parentType":"","signature":"HBITMAP CreateCompatibleBitmap(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateCompatibleBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateCompatibleDC","package":"druntime","parentType":"","signature":"HDC CreateCompatibleDC(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateCompatibleDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDCA","package":"druntime","parentType":"","signature":"HDC CreateDCA(LPCSTR,  LPCSTR,  LPCSTR,  const(DEVMODEA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDCA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDCW","package":"druntime","parentType":"","signature":"HDC CreateDCW(LPCWSTR,  LPCWSTR,  LPCWSTR,  const(DEVMODEW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDCW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDIBitmap","package":"druntime","parentType":"","signature":"HBITMAP CreateDIBitmap(HDC,  const(BITMAPINFOHEADER) *,  DWORD,  PCVOID,  const(BITMAPINFO) *,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDIBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDIBPatternBrush","package":"druntime","parentType":"","signature":"HBRUSH CreateDIBPatternBrush(HGLOBAL,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDIBPatternBrush.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDIBPatternBrushPt","package":"druntime","parentType":"","signature":"HBRUSH CreateDIBPatternBrushPt(PCVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDIBPatternBrushPt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDIBSection","package":"druntime","parentType":"","signature":"HBITMAP CreateDIBSection(HDC,  const(BITMAPINFO) *,  UINT,  void * *,  HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDIBSection.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateDiscardableBitmap","package":"druntime","parentType":"","signature":"HBITMAP CreateDiscardableBitmap(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateDiscardableBitmap.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateEllipticRgn","package":"druntime","parentType":"","signature":"HRGN CreateEllipticRgn(int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateEllipticRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateEllipticRgnIndirect","package":"druntime","parentType":"","signature":"HRGN CreateEllipticRgnIndirect(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateEllipticRgnIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateEnhMetaFileA","package":"druntime","parentType":"","signature":"HDC CreateEnhMetaFileA(HDC,  LPCSTR,  LPCRECT,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateEnhMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateEnhMetaFileW","package":"druntime","parentType":"","signature":"HDC CreateEnhMetaFileW(HDC,  LPCWSTR,  LPCRECT,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateEnhMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateFontA","package":"druntime","parentType":"","signature":"HFONT CreateFontA(int,  int,  int,  int,  int,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateFontA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateFontW","package":"druntime","parentType":"","signature":"HFONT CreateFontW(int,  int,  int,  int,  int,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  DWORD,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateFontW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateFontIndirectA","package":"druntime","parentType":"","signature":"HFONT CreateFontIndirectA(const(LOGFONTA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateFontIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateFontIndirectW","package":"druntime","parentType":"","signature":"HFONT CreateFontIndirectW(const(LOGFONTW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateFontIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateHalftonePalette","package":"druntime","parentType":"","signature":"HPALETTE CreateHalftonePalette(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateHalftonePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateHatchBrush","package":"druntime","parentType":"","signature":"HBRUSH CreateHatchBrush(int,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateHatchBrush.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateICA","package":"druntime","parentType":"","signature":"HDC CreateICA(LPCSTR,  LPCSTR,  LPCSTR,  const(DEVMODEA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateICA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateICW","package":"druntime","parentType":"","signature":"HDC CreateICW(LPCWSTR,  LPCWSTR,  LPCWSTR,  const(DEVMODEW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateICW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateMetaFileA","package":"druntime","parentType":"","signature":"HDC CreateMetaFileA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateMetaFileW","package":"druntime","parentType":"","signature":"HDC CreateMetaFileW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePalette","package":"druntime","parentType":"","signature":"HPALETTE CreatePalette(const(LOGPALETTE) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePatternBrush","package":"druntime","parentType":"","signature":"HBRUSH CreatePatternBrush(HBITMAP)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePatternBrush.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePen","package":"druntime","parentType":"","signature":"HPEN CreatePen(int,  int,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePen.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePenIndirect","package":"druntime","parentType":"","signature":"HPEN CreatePenIndirect(const(LOGPEN) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePenIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePolygonRgn","package":"druntime","parentType":"","signature":"HRGN CreatePolygonRgn(const(POINT) *,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePolygonRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreatePolyPolygonRgn","package":"druntime","parentType":"","signature":"HRGN CreatePolyPolygonRgn(const(POINT) *,  const(INT) *,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreatePolyPolygonRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateRectRgn","package":"druntime","parentType":"","signature":"HRGN CreateRectRgn(int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateRectRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateRectRgnIndirect","package":"druntime","parentType":"","signature":"HRGN CreateRectRgnIndirect(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateRectRgnIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateRoundRectRgn","package":"druntime","parentType":"","signature":"HRGN CreateRoundRectRgn(int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateRoundRectRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateScalableFontResourceA","package":"druntime","parentType":"","signature":"BOOL CreateScalableFontResourceA(DWORD,  LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateScalableFontResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateScalableFontResourceW","package":"druntime","parentType":"","signature":"BOOL CreateScalableFontResourceW(DWORD,  LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateScalableFontResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"CreateSolidBrush","package":"druntime","parentType":"","signature":"HBRUSH CreateSolidBrush(COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/CreateSolidBrush.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeleteColorSpace","package":"druntime","parentType":"","signature":"BOOL DeleteColorSpace(HCOLORSPACE)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeleteColorSpace.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeleteDC","package":"druntime","parentType":"","signature":"BOOL DeleteDC(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeleteDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeleteEnhMetaFile","package":"druntime","parentType":"","signature":"BOOL DeleteEnhMetaFile(HENHMETAFILE)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeleteEnhMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeleteMetaFile","package":"druntime","parentType":"","signature":"BOOL DeleteMetaFile(HMETAFILE)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeleteMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeleteObject","package":"druntime","parentType":"","signature":"BOOL DeleteObject(HGDIOBJ)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeleteObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DescribePixelFormat","package":"druntime","parentType":"","signature":"int DescribePixelFormat(HDC,  int,  UINT,  LPPIXELFORMATDESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/wingdi/DescribePixelFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeviceCapabilitiesA","package":"druntime","parentType":"","signature":"DWORD DeviceCapabilitiesA(LPCSTR,  LPCSTR,  WORD,  LPSTR,  const(DEVMODEA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeviceCapabilitiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DeviceCapabilitiesW","package":"druntime","parentType":"","signature":"DWORD DeviceCapabilitiesW(LPCWSTR,  LPCWSTR,  WORD,  LPWSTR,  const(DEVMODEW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/DeviceCapabilitiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DPtoLP","package":"druntime","parentType":"","signature":"BOOL DPtoLP(HDC,  LPPOINT,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/DPtoLP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"DrawEscape","package":"druntime","parentType":"","signature":"int DrawEscape(HDC,  int,  int,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/DrawEscape.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Ellipse","package":"druntime","parentType":"","signature":"BOOL Ellipse(HDC,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Ellipse.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EndDoc","package":"druntime","parentType":"","signature":"int EndDoc(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/EndDoc.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EndPage","package":"druntime","parentType":"","signature":"int EndPage(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/EndPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EndPath","package":"druntime","parentType":"","signature":"BOOL EndPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/EndPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumEnhMetaFile","package":"druntime","parentType":"","signature":"BOOL EnumEnhMetaFile(HDC,  HENHMETAFILE,  ENHMFENUMPROC,  PVOID,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumEnhMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontFamiliesA","package":"druntime","parentType":"","signature":"int EnumFontFamiliesA(HDC,  LPCSTR,  FONTENUMPROCA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontFamiliesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontFamiliesW","package":"druntime","parentType":"","signature":"int EnumFontFamiliesW(HDC,  LPCWSTR,  FONTENUMPROCW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontFamiliesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontFamiliesExA","package":"druntime","parentType":"","signature":"int EnumFontFamiliesExA(HDC,  PLOGFONTA,  FONTENUMPROCA,  LPARAM,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontFamiliesExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontFamiliesExW","package":"druntime","parentType":"","signature":"int EnumFontFamiliesExW(HDC,  PLOGFONTW,  FONTENUMPROCW,  LPARAM,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontFamiliesExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontsA","package":"druntime","parentType":"","signature":"int EnumFontsA(HDC,  LPCSTR,  FONTENUMPROCA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumFontsW","package":"druntime","parentType":"","signature":"int EnumFontsW(HDC,  LPCWSTR,  FONTENUMPROCW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumFontsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumICMProfilesA","package":"druntime","parentType":"","signature":"int EnumICMProfilesA(HDC,  ICMENUMPROCA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumICMProfilesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumICMProfilesW","package":"druntime","parentType":"","signature":"int EnumICMProfilesW(HDC,  ICMENUMPROCW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumICMProfilesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumMetaFile","package":"druntime","parentType":"","signature":"BOOL EnumMetaFile(HDC,  HMETAFILE,  MFENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EnumObjects","package":"druntime","parentType":"","signature":"int EnumObjects(HDC,  int,  GOBJENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/EnumObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"EqualRgn","package":"druntime","parentType":"","signature":"BOOL EqualRgn(HRGN,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/EqualRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Escape","package":"druntime","parentType":"","signature":"int Escape(HDC,  int,  int,  LPCSTR,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/Escape.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExcludeClipRect","package":"druntime","parentType":"","signature":"int ExcludeClipRect(HDC,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExcludeClipRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExcludeUpdateRgn","package":"druntime","parentType":"","signature":"int ExcludeUpdateRgn(HDC,  HWND)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExcludeUpdateRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtCreatePen","package":"druntime","parentType":"","signature":"HPEN ExtCreatePen(DWORD,  DWORD,  const(LOGBRUSH) *,  DWORD,  const(DWORD) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtCreatePen.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtCreateRegion","package":"druntime","parentType":"","signature":"HRGN ExtCreateRegion(const(XFORM) *,  DWORD,  const(RGNDATA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtCreateRegion.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtEscape","package":"druntime","parentType":"","signature":"int ExtEscape(HDC,  int,  int,  LPCSTR,  int,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtEscape.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtFloodFill","package":"druntime","parentType":"","signature":"BOOL ExtFloodFill(HDC,  int,  int,  COLORREF,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtFloodFill.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtSelectClipRgn","package":"druntime","parentType":"","signature":"int ExtSelectClipRgn(HDC,  HRGN,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtSelectClipRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtTextOutA","package":"druntime","parentType":"","signature":"BOOL ExtTextOutA(HDC,  int,  int,  UINT,  LPCRECT,  LPCSTR,  UINT,  const(INT) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtTextOutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ExtTextOutW","package":"druntime","parentType":"","signature":"BOOL ExtTextOutW(HDC,  int,  int,  UINT,  LPCRECT,  LPCWSTR,  UINT,  const(INT) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ExtTextOutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FillPath","package":"druntime","parentType":"","signature":"BOOL FillPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/FillPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FillRect","package":"druntime","parentType":"","signature":"int FillRect(HDC,  LPCRECT,  HBRUSH)","url":"/ddoc/druntime/core/sys/windows/wingdi/FillRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FillRgn","package":"druntime","parentType":"","signature":"int FillRgn(HDC,  HRGN,  HBRUSH)","url":"/ddoc/druntime/core/sys/windows/wingdi/FillRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FixBrushOrgEx","package":"druntime","parentType":"","signature":"BOOL FixBrushOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/FixBrushOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FlattenPath","package":"druntime","parentType":"","signature":"BOOL FlattenPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/FlattenPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FloodFill","package":"druntime","parentType":"","signature":"BOOL FloodFill(HDC,  int,  int,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/FloodFill.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"FrameRgn","package":"druntime","parentType":"","signature":"BOOL FrameRgn(HDC,  HRGN,  HBRUSH,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/FrameRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GdiComment","package":"druntime","parentType":"","signature":"BOOL GdiComment(HDC,  UINT,  const(BYTE) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/GdiComment.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GdiFlush","package":"druntime","parentType":"","signature":"BOOL GdiFlush()","url":"/ddoc/druntime/core/sys/windows/wingdi/GdiFlush.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GdiGetBatchLimit","package":"druntime","parentType":"","signature":"DWORD GdiGetBatchLimit()","url":"/ddoc/druntime/core/sys/windows/wingdi/GdiGetBatchLimit.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GdiSetBatchLimit","package":"druntime","parentType":"","signature":"DWORD GdiSetBatchLimit(DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GdiSetBatchLimit.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetArcDirection","package":"druntime","parentType":"","signature":"int GetArcDirection(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetArcDirection.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetAspectRatioFilterEx","package":"druntime","parentType":"","signature":"BOOL GetAspectRatioFilterEx(HDC,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetAspectRatioFilterEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBitmapBits","package":"druntime","parentType":"","signature":"LONG GetBitmapBits(HBITMAP,  LONG,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBitmapBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBitmapDimensionEx","package":"druntime","parentType":"","signature":"BOOL GetBitmapDimensionEx(HBITMAP,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBitmapDimensionEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBkColor","package":"druntime","parentType":"","signature":"COLORREF GetBkColor(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBkMode","package":"druntime","parentType":"","signature":"int GetBkMode(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBkMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBoundsRect","package":"druntime","parentType":"","signature":"UINT GetBoundsRect(HDC,  LPRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBoundsRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetBrushOrgEx","package":"druntime","parentType":"","signature":"BOOL GetBrushOrgEx(HDC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetBrushOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharABCWidthsA","package":"druntime","parentType":"","signature":"BOOL GetCharABCWidthsA(HDC,  UINT,  UINT,  LPABC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharABCWidthsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharABCWidthsW","package":"druntime","parentType":"","signature":"BOOL GetCharABCWidthsW(HDC,  UINT,  UINT,  LPABC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharABCWidthsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharABCWidthsFloatA","package":"druntime","parentType":"","signature":"BOOL GetCharABCWidthsFloatA(HDC,  UINT,  UINT,  LPABCFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharABCWidthsFloatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharABCWidthsFloatW","package":"druntime","parentType":"","signature":"BOOL GetCharABCWidthsFloatW(HDC,  UINT,  UINT,  LPABCFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharABCWidthsFloatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharacterPlacementA","package":"druntime","parentType":"","signature":"DWORD GetCharacterPlacementA(HDC,  LPCSTR,  int,  int,  LPGCP_RESULTSA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharacterPlacementA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharacterPlacementW","package":"druntime","parentType":"","signature":"DWORD GetCharacterPlacementW(HDC,  LPCWSTR,  int,  int,  LPGCP_RESULTSW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharacterPlacementW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidth32A","package":"druntime","parentType":"","signature":"BOOL GetCharWidth32A(HDC,  UINT,  UINT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidth32A.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidth32W","package":"druntime","parentType":"","signature":"BOOL GetCharWidth32W(HDC,  UINT,  UINT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidth32W.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidthA","package":"druntime","parentType":"","signature":"BOOL GetCharWidthA(HDC,  UINT,  UINT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidthA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidthW","package":"druntime","parentType":"","signature":"BOOL GetCharWidthW(HDC,  UINT,  UINT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidthW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidthFloatA","package":"druntime","parentType":"","signature":"BOOL GetCharWidthFloatA(HDC,  UINT,  UINT,  PFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidthFloatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCharWidthFloatW","package":"druntime","parentType":"","signature":"BOOL GetCharWidthFloatW(HDC,  UINT,  UINT,  PFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCharWidthFloatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetClipBox","package":"druntime","parentType":"","signature":"int GetClipBox(HDC,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetClipBox.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetClipRgn","package":"druntime","parentType":"","signature":"int GetClipRgn(HDC,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetClipRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetColorAdjustment","package":"druntime","parentType":"","signature":"BOOL GetColorAdjustment(HDC,  LPCOLORADJUSTMENT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetColorAdjustment.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetColorSpace","package":"druntime","parentType":"","signature":"HANDLE GetColorSpace(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetColorSpace.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCurrentObject","package":"druntime","parentType":"","signature":"HGDIOBJ GetCurrentObject(HDC,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCurrentObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCurrentPositionEx","package":"druntime","parentType":"","signature":"BOOL GetCurrentPositionEx(HDC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCurrentPositionEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetCursor","package":"druntime","parentType":"","signature":"HCURSOR GetCursor()","url":"/ddoc/druntime/core/sys/windows/wingdi/GetCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetDCOrgEx","package":"druntime","parentType":"","signature":"BOOL GetDCOrgEx(HDC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetDCOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetDeviceCaps","package":"druntime","parentType":"","signature":"int GetDeviceCaps(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetDeviceCaps.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetDeviceGammaRamp","package":"druntime","parentType":"","signature":"BOOL GetDeviceGammaRamp(HDC,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetDeviceGammaRamp.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetDIBColorTable","package":"druntime","parentType":"","signature":"UINT GetDIBColorTable(HDC,  UINT,  UINT,  RGBQUAD *)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetDIBColorTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetDIBits","package":"druntime","parentType":"","signature":"int GetDIBits(HDC,  HBITMAP,  UINT,  UINT,  PVOID,  LPBITMAPINFO,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetDIBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileA","package":"druntime","parentType":"","signature":"HENHMETAFILE GetEnhMetaFileA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileW","package":"druntime","parentType":"","signature":"HENHMETAFILE GetEnhMetaFileW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileBits","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFileBits(HENHMETAFILE,  UINT,  LPBYTE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileDescriptionA","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFileDescriptionA(HENHMETAFILE,  UINT,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileDescriptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileDescriptionW","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFileDescriptionW(HENHMETAFILE,  UINT,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileDescriptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFileHeader","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFileHeader(HENHMETAFILE,  UINT,  LPENHMETAHEADER)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFileHeader.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFilePaletteEntries","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFilePaletteEntries(HENHMETAFILE,  UINT,  LPPALETTEENTRY)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFilePaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetEnhMetaFilePixelFormat","package":"druntime","parentType":"","signature":"UINT GetEnhMetaFilePixelFormat(HENHMETAFILE,  DWORD,  const(PIXELFORMATDESCRIPTOR) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetEnhMetaFilePixelFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetFontData","package":"druntime","parentType":"","signature":"DWORD GetFontData(HDC,  DWORD,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetFontData.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetFontLanguageInfo","package":"druntime","parentType":"","signature":"DWORD GetFontLanguageInfo(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetFontLanguageInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetGlyphOutlineA","package":"druntime","parentType":"","signature":"DWORD GetGlyphOutlineA(HDC,  UINT,  UINT,  LPGLYPHMETRICS,  DWORD,  PVOID,  const(MAT2) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetGlyphOutlineA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetGlyphOutlineW","package":"druntime","parentType":"","signature":"DWORD GetGlyphOutlineW(HDC,  UINT,  UINT,  LPGLYPHMETRICS,  DWORD,  PVOID,  const(MAT2) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetGlyphOutlineW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetGraphicsMode","package":"druntime","parentType":"","signature":"int GetGraphicsMode(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetGraphicsMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetICMProfileA","package":"druntime","parentType":"","signature":"BOOL GetICMProfileA(HDC,  LPDWORD,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetICMProfileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetICMProfileW","package":"druntime","parentType":"","signature":"BOOL GetICMProfileW(HDC,  LPDWORD,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetICMProfileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetKerningPairsA","package":"druntime","parentType":"","signature":"DWORD GetKerningPairsA(HDC,  DWORD,  LPKERNINGPAIR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetKerningPairsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetKerningPairsW","package":"druntime","parentType":"","signature":"DWORD GetKerningPairsW(HDC,  DWORD,  LPKERNINGPAIR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetKerningPairsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetLogColorSpaceA","package":"druntime","parentType":"","signature":"BOOL GetLogColorSpaceA(HCOLORSPACE,  LPLOGCOLORSPACEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetLogColorSpaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetLogColorSpaceW","package":"druntime","parentType":"","signature":"BOOL GetLogColorSpaceW(HCOLORSPACE,  LPLOGCOLORSPACEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetLogColorSpaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMapMode","package":"druntime","parentType":"","signature":"int GetMapMode(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMapMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMetaFileA","package":"druntime","parentType":"","signature":"HMETAFILE GetMetaFileA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMetaFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMetaFileW","package":"druntime","parentType":"","signature":"HMETAFILE GetMetaFileW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMetaFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMetaFileBitsEx","package":"druntime","parentType":"","signature":"UINT GetMetaFileBitsEx(HMETAFILE,  UINT,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMetaFileBitsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMetaRgn","package":"druntime","parentType":"","signature":"int GetMetaRgn(HDC,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMetaRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetMiterLimit","package":"druntime","parentType":"","signature":"BOOL GetMiterLimit(HDC,  PFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetMiterLimit.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetNearestColor","package":"druntime","parentType":"","signature":"COLORREF GetNearestColor(HDC,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetNearestColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetNearestPaletteIndex","package":"druntime","parentType":"","signature":"UINT GetNearestPaletteIndex(HPALETTE,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetNearestPaletteIndex.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetObjectA","package":"druntime","parentType":"","signature":"int GetObjectA(HGDIOBJ,  int,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetObjectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetObjectW","package":"druntime","parentType":"","signature":"int GetObjectW(HGDIOBJ,  int,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetObjectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetObjectType","package":"druntime","parentType":"","signature":"DWORD GetObjectType(HGDIOBJ)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetObjectType.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetOutlineTextMetricsA","package":"druntime","parentType":"","signature":"UINT GetOutlineTextMetricsA(HDC,  UINT,  LPOUTLINETEXTMETRICA)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetOutlineTextMetricsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetOutlineTextMetricsW","package":"druntime","parentType":"","signature":"UINT GetOutlineTextMetricsW(HDC,  UINT,  LPOUTLINETEXTMETRICW)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetOutlineTextMetricsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetPaletteEntries","package":"druntime","parentType":"","signature":"UINT GetPaletteEntries(HPALETTE,  UINT,  UINT,  LPPALETTEENTRY)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetPaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetPath","package":"druntime","parentType":"","signature":"int GetPath(HDC,  LPPOINT,  PBYTE,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetPixel","package":"druntime","parentType":"","signature":"COLORREF GetPixel(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetPixel.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetPixelFormat","package":"druntime","parentType":"","signature":"int GetPixelFormat(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetPixelFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetPolyFillMode","package":"druntime","parentType":"","signature":"int GetPolyFillMode(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetPolyFillMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetRasterizerCaps","package":"druntime","parentType":"","signature":"BOOL GetRasterizerCaps(LPRASTERIZER_STATUS,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetRasterizerCaps.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetRandomRgn","package":"druntime","parentType":"","signature":"int GetRandomRgn(HDC,  HRGN,  INT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetRandomRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetRegionData","package":"druntime","parentType":"","signature":"DWORD GetRegionData(HRGN,  DWORD,  LPRGNDATA)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetRegionData.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetRgnBox","package":"druntime","parentType":"","signature":"int GetRgnBox(HRGN,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetRgnBox.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetROP2","package":"druntime","parentType":"","signature":"int GetROP2(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetROP2.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetStockObject","package":"druntime","parentType":"","signature":"HGDIOBJ GetStockObject(int)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetStockObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetStretchBltMode","package":"druntime","parentType":"","signature":"int GetStretchBltMode(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetStretchBltMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetSystemPaletteEntries","package":"druntime","parentType":"","signature":"UINT GetSystemPaletteEntries(HDC,  UINT,  UINT,  LPPALETTEENTRY)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetSystemPaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetSystemPaletteUse","package":"druntime","parentType":"","signature":"UINT GetSystemPaletteUse(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetSystemPaletteUse.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextAlign","package":"druntime","parentType":"","signature":"UINT GetTextAlign(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextAlign.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextCharacterExtra","package":"druntime","parentType":"","signature":"int GetTextCharacterExtra(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextCharacterExtra.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextCharset","package":"druntime","parentType":"","signature":"int GetTextCharset(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextCharset.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextCharsetInfo","package":"druntime","parentType":"","signature":"int GetTextCharsetInfo(HDC,  LPFONTSIGNATURE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextCharsetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextColor","package":"druntime","parentType":"","signature":"COLORREF GetTextColor(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentExPointA","package":"druntime","parentType":"","signature":"BOOL GetTextExtentExPointA(HDC,  LPCSTR,  int,  int,  LPINT,  LPINT,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentExPointA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentExPointW","package":"druntime","parentType":"","signature":"BOOL GetTextExtentExPointW(HDC,  LPCWSTR,  int,  int,  LPINT,  LPINT,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentExPointW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentPointA","package":"druntime","parentType":"","signature":"BOOL GetTextExtentPointA(HDC,  LPCSTR,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentPointA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentPointW","package":"druntime","parentType":"","signature":"BOOL GetTextExtentPointW(HDC,  LPCWSTR,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentPointW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentPoint32A","package":"druntime","parentType":"","signature":"BOOL GetTextExtentPoint32A(HDC,  LPCSTR,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentPoint32A.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextExtentPoint32W","package":"druntime","parentType":"","signature":"BOOL GetTextExtentPoint32W(HDC,  LPCWSTR,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextExtentPoint32W.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextFaceA","package":"druntime","parentType":"","signature":"int GetTextFaceA(HDC,  int,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextFaceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextFaceW","package":"druntime","parentType":"","signature":"int GetTextFaceW(HDC,  int,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextFaceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextMetricsA","package":"druntime","parentType":"","signature":"BOOL GetTextMetricsA(HDC,  LPTEXTMETRICA)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextMetricsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetTextMetricsW","package":"druntime","parentType":"","signature":"BOOL GetTextMetricsW(HDC,  LPTEXTMETRICW)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetTextMetricsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetViewportExtEx","package":"druntime","parentType":"","signature":"BOOL GetViewportExtEx(HDC,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetViewportExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetViewportOrgEx","package":"druntime","parentType":"","signature":"BOOL GetViewportOrgEx(HDC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetViewportOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetWindowExtEx","package":"druntime","parentType":"","signature":"BOOL GetWindowExtEx(HDC,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetWindowExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetWindowOrgEx","package":"druntime","parentType":"","signature":"BOOL GetWindowOrgEx(HDC,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetWindowOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetWinMetaFileBits","package":"druntime","parentType":"","signature":"UINT GetWinMetaFileBits(HENHMETAFILE,  UINT,  LPBYTE,  INT,  HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetWinMetaFileBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"GetWorldTransform","package":"druntime","parentType":"","signature":"BOOL GetWorldTransform(HDC,  LPXFORM)","url":"/ddoc/druntime/core/sys/windows/wingdi/GetWorldTransform.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"IntersectClipRect","package":"druntime","parentType":"","signature":"int IntersectClipRect(HDC,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/IntersectClipRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"InvertRgn","package":"druntime","parentType":"","signature":"BOOL InvertRgn(HDC,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/InvertRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"LineDDA","package":"druntime","parentType":"","signature":"BOOL LineDDA(int,  int,  int,  int,  LINEDDAPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi/LineDDA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"LineTo","package":"druntime","parentType":"","signature":"BOOL LineTo(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/LineTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"LPtoDP","package":"druntime","parentType":"","signature":"BOOL LPtoDP(HDC,  LPPOINT,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/LPtoDP.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"MaskBlt","package":"druntime","parentType":"","signature":"BOOL MaskBlt(HDC,  int,  int,  int,  int,  HDC,  int,  int,  HBITMAP,  int,  int,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/MaskBlt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ModifyWorldTransform","package":"druntime","parentType":"","signature":"BOOL ModifyWorldTransform(HDC,  const(XFORM) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/ModifyWorldTransform.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"MoveToEx","package":"druntime","parentType":"","signature":"BOOL MoveToEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/MoveToEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"OffsetClipRgn","package":"druntime","parentType":"","signature":"int OffsetClipRgn(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/OffsetClipRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"OffsetRgn","package":"druntime","parentType":"","signature":"int OffsetRgn(HRGN,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/OffsetRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"OffsetViewportOrgEx","package":"druntime","parentType":"","signature":"BOOL OffsetViewportOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/OffsetViewportOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"OffsetWindowOrgEx","package":"druntime","parentType":"","signature":"BOOL OffsetWindowOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/OffsetWindowOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PaintRgn","package":"druntime","parentType":"","signature":"BOOL PaintRgn(HDC,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/PaintRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PatBlt","package":"druntime","parentType":"","signature":"BOOL PatBlt(HDC,  int,  int,  int,  int,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/PatBlt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PathToRegion","package":"druntime","parentType":"","signature":"HRGN PathToRegion(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/PathToRegion.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Pie","package":"druntime","parentType":"","signature":"BOOL Pie(HDC,  int,  int,  int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Pie.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PlayEnhMetaFile","package":"druntime","parentType":"","signature":"BOOL PlayEnhMetaFile(HDC,  HENHMETAFILE,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/PlayEnhMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PlayEnhMetaFileRecord","package":"druntime","parentType":"","signature":"BOOL PlayEnhMetaFileRecord(HDC,  LPHANDLETABLE,  const(ENHMETARECORD) *,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/PlayEnhMetaFileRecord.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PlayMetaFile","package":"druntime","parentType":"","signature":"BOOL PlayMetaFile(HDC,  HMETAFILE)","url":"/ddoc/druntime/core/sys/windows/wingdi/PlayMetaFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PlayMetaFileRecord","package":"druntime","parentType":"","signature":"BOOL PlayMetaFileRecord(HDC,  LPHANDLETABLE,  LPMETARECORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/PlayMetaFileRecord.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PlgBlt","package":"druntime","parentType":"","signature":"BOOL PlgBlt(HDC,  const(POINT) *,  HDC,  int,  int,  int,  int,  HBITMAP,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PlgBlt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyBezier","package":"druntime","parentType":"","signature":"BOOL PolyBezier(HDC,  const(POINT) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyBezier.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyBezierTo","package":"druntime","parentType":"","signature":"BOOL PolyBezierTo(HDC,  const(POINT) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyBezierTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyDraw","package":"druntime","parentType":"","signature":"BOOL PolyDraw(HDC,  const(POINT) *,  const(BYTE) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyDraw.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Polygon","package":"druntime","parentType":"","signature":"BOOL Polygon(HDC,  const(POINT) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Polygon.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Polyline","package":"druntime","parentType":"","signature":"BOOL Polyline(HDC,  const(POINT) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Polyline.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolylineTo","package":"druntime","parentType":"","signature":"BOOL PolylineTo(HDC,  const(POINT) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolylineTo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyPolygon","package":"druntime","parentType":"","signature":"BOOL PolyPolygon(HDC,  const(POINT) *,  const(INT) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyPolygon.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyPolyline","package":"druntime","parentType":"","signature":"BOOL PolyPolyline(HDC,  const(POINT) *,  const(DWORD) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyPolyline.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyTextOutA","package":"druntime","parentType":"","signature":"BOOL PolyTextOutA(HDC,  const(POLYTEXTA) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyTextOutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PolyTextOutW","package":"druntime","parentType":"","signature":"BOOL PolyTextOutW(HDC,  const(POLYTEXTW) *,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PolyTextOutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PtInRegion","package":"druntime","parentType":"","signature":"BOOL PtInRegion(HRGN,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PtInRegion.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"PtVisible","package":"druntime","parentType":"","signature":"BOOL PtVisible(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/PtVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RealizePalette","package":"druntime","parentType":"","signature":"UINT RealizePalette(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/RealizePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"Rectangle","package":"druntime","parentType":"","signature":"BOOL Rectangle(HDC,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/Rectangle.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RectInRegion","package":"druntime","parentType":"","signature":"BOOL RectInRegion(HRGN,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/RectInRegion.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RectVisible","package":"druntime","parentType":"","signature":"BOOL RectVisible(HDC,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/wingdi/RectVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RemoveFontResourceA","package":"druntime","parentType":"","signature":"BOOL RemoveFontResourceA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/RemoveFontResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RemoveFontResourceW","package":"druntime","parentType":"","signature":"BOOL RemoveFontResourceW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/RemoveFontResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ResetDCA","package":"druntime","parentType":"","signature":"HDC ResetDCA(HDC,  const(DEVMODEA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ResetDCA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ResetDCW","package":"druntime","parentType":"","signature":"HDC ResetDCW(HDC,  const(DEVMODEW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/ResetDCW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ResizePalette","package":"druntime","parentType":"","signature":"BOOL ResizePalette(HPALETTE,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/ResizePalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RestoreDC","package":"druntime","parentType":"","signature":"BOOL RestoreDC(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/RestoreDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"RoundRect","package":"druntime","parentType":"","signature":"BOOL RoundRect(HDC,  int,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/RoundRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SaveDC","package":"druntime","parentType":"","signature":"int SaveDC(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/SaveDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ScaleViewportExtEx","package":"druntime","parentType":"","signature":"BOOL ScaleViewportExtEx(HDC,  int,  int,  int,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/ScaleViewportExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"ScaleWindowExtEx","package":"druntime","parentType":"","signature":"BOOL ScaleWindowExtEx(HDC,  int,  int,  int,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/ScaleWindowExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SelectClipPath","package":"druntime","parentType":"","signature":"BOOL SelectClipPath(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SelectClipPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SelectClipRgn","package":"druntime","parentType":"","signature":"int SelectClipRgn(HDC,  HRGN)","url":"/ddoc/druntime/core/sys/windows/wingdi/SelectClipRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SelectObject","package":"druntime","parentType":"","signature":"HGDIOBJ SelectObject(HDC,  HGDIOBJ)","url":"/ddoc/druntime/core/sys/windows/wingdi/SelectObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SelectPalette","package":"druntime","parentType":"","signature":"HPALETTE SelectPalette(HDC,  HPALETTE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/wingdi/SelectPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetAbortProc","package":"druntime","parentType":"","signature":"int SetAbortProc(HDC,  ABORTPROC)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetAbortProc.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetArcDirection","package":"druntime","parentType":"","signature":"int SetArcDirection(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetArcDirection.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBitmapBits","package":"druntime","parentType":"","signature":"LONG SetBitmapBits(HBITMAP,  DWORD,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBitmapBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBitmapDimensionEx","package":"druntime","parentType":"","signature":"BOOL SetBitmapDimensionEx(HBITMAP,  int,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBitmapDimensionEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBkColor","package":"druntime","parentType":"","signature":"COLORREF SetBkColor(HDC,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBkColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBkMode","package":"druntime","parentType":"","signature":"int SetBkMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBkMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBoundsRect","package":"druntime","parentType":"","signature":"UINT SetBoundsRect(HDC,  LPCRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBoundsRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetBrushOrgEx","package":"druntime","parentType":"","signature":"BOOL SetBrushOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetBrushOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetColorAdjustment","package":"druntime","parentType":"","signature":"BOOL SetColorAdjustment(HDC,  const(COLORADJUSTMENT) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetColorAdjustment.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetColorSpace","package":"druntime","parentType":"","signature":"BOOL SetColorSpace(HDC,  HCOLORSPACE)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetColorSpace.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetDeviceGammaRamp","package":"druntime","parentType":"","signature":"BOOL SetDeviceGammaRamp(HDC,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetDeviceGammaRamp.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetDIBColorTable","package":"druntime","parentType":"","signature":"UINT SetDIBColorTable(HDC,  UINT,  UINT,  const(RGBQUAD) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetDIBColorTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetDIBits","package":"druntime","parentType":"","signature":"int SetDIBits(HDC,  HBITMAP,  UINT,  UINT,  PCVOID,  const(BITMAPINFO) *,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetDIBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetDIBitsToDevice","package":"druntime","parentType":"","signature":"int SetDIBitsToDevice(HDC,  int,  int,  DWORD,  DWORD,  int,  int,  UINT,  UINT,  PCVOID,  const(BITMAPINFO) *,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetDIBitsToDevice.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetEnhMetaFileBits","package":"druntime","parentType":"","signature":"HENHMETAFILE SetEnhMetaFileBits(UINT,  const(BYTE) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetEnhMetaFileBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetGraphicsMode","package":"druntime","parentType":"","signature":"int SetGraphicsMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetGraphicsMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetICMMode","package":"druntime","parentType":"","signature":"int SetICMMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetICMMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetICMProfileA","package":"druntime","parentType":"","signature":"BOOL SetICMProfileA(HDC,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetICMProfileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetICMProfileW","package":"druntime","parentType":"","signature":"BOOL SetICMProfileW(HDC,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetICMProfileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetMapMode","package":"druntime","parentType":"","signature":"int SetMapMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetMapMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetMapperFlags","package":"druntime","parentType":"","signature":"DWORD SetMapperFlags(HDC,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetMapperFlags.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetMetaFileBitsEx","package":"druntime","parentType":"","signature":"HMETAFILE SetMetaFileBitsEx(UINT,  const(BYTE) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetMetaFileBitsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetMetaRgn","package":"druntime","parentType":"","signature":"int SetMetaRgn(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetMetaRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetMiterLimit","package":"druntime","parentType":"","signature":"BOOL SetMiterLimit(HDC,  FLOAT,  PFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetMiterLimit.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetPaletteEntries","package":"druntime","parentType":"","signature":"UINT SetPaletteEntries(HPALETTE,  UINT,  UINT,  const(PALETTEENTRY) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetPaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetPixel","package":"druntime","parentType":"","signature":"COLORREF SetPixel(HDC,  int,  int,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetPixel.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetPixelFormat","package":"druntime","parentType":"","signature":"BOOL SetPixelFormat(HDC,  int,  const(PIXELFORMATDESCRIPTOR) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetPixelFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetPixelV","package":"druntime","parentType":"","signature":"BOOL SetPixelV(HDC,  int,  int,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetPixelV.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetPolyFillMode","package":"druntime","parentType":"","signature":"int SetPolyFillMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetPolyFillMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetRectRgn","package":"druntime","parentType":"","signature":"BOOL SetRectRgn(HRGN,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetRectRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetROP2","package":"druntime","parentType":"","signature":"int SetROP2(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetROP2.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetStretchBltMode","package":"druntime","parentType":"","signature":"int SetStretchBltMode(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetStretchBltMode.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetSystemPaletteUse","package":"druntime","parentType":"","signature":"UINT SetSystemPaletteUse(HDC,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetSystemPaletteUse.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetTextAlign","package":"druntime","parentType":"","signature":"UINT SetTextAlign(HDC,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetTextAlign.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetTextCharacterExtra","package":"druntime","parentType":"","signature":"int SetTextCharacterExtra(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetTextCharacterExtra.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetTextColor","package":"druntime","parentType":"","signature":"COLORREF SetTextColor(HDC,  COLORREF)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetTextColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetTextJustification","package":"druntime","parentType":"","signature":"BOOL SetTextJustification(HDC,  int,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetTextJustification.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetViewportExtEx","package":"druntime","parentType":"","signature":"BOOL SetViewportExtEx(HDC,  int,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetViewportExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetViewportOrgEx","package":"druntime","parentType":"","signature":"BOOL SetViewportOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetViewportOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetWindowExtEx","package":"druntime","parentType":"","signature":"BOOL SetWindowExtEx(HDC,  int,  int,  LPSIZE)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetWindowExtEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetWindowOrgEx","package":"druntime","parentType":"","signature":"BOOL SetWindowOrgEx(HDC,  int,  int,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetWindowOrgEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetWinMetaFileBits","package":"druntime","parentType":"","signature":"HENHMETAFILE SetWinMetaFileBits(UINT,  const(BYTE) *,  HDC,  const(METAFILEPICT) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetWinMetaFileBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SetWorldTransform","package":"druntime","parentType":"","signature":"BOOL SetWorldTransform(HDC,  const(XFORM) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/SetWorldTransform.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StartDocA","package":"druntime","parentType":"","signature":"int StartDocA(HDC,  const(DOCINFOA) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/StartDocA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StartDocW","package":"druntime","parentType":"","signature":"int StartDocW(HDC,  const(DOCINFOW) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/StartDocW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StartPage","package":"druntime","parentType":"","signature":"int StartPage(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/StartPage.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StretchBlt","package":"druntime","parentType":"","signature":"BOOL StretchBlt(HDC,  int,  int,  int,  int,  HDC,  int,  int,  int,  int,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/StretchBlt.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StretchDIBits","package":"druntime","parentType":"","signature":"int StretchDIBits(HDC,  int,  int,  int,  int,  int,  int,  int,  int,  const(VOID) * ,  const(BITMAPINFO) * ,  UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/StretchDIBits.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StrokeAndFillPath","package":"druntime","parentType":"","signature":"BOOL StrokeAndFillPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/StrokeAndFillPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"StrokePath","package":"druntime","parentType":"","signature":"BOOL StrokePath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/StrokePath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"SwapBuffers","package":"druntime","parentType":"","signature":"BOOL SwapBuffers(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/SwapBuffers.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"TextOutA","package":"druntime","parentType":"","signature":"BOOL TextOutA(HDC,  int,  int,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/TextOutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"TextOutW","package":"druntime","parentType":"","signature":"BOOL TextOutW(HDC,  int,  int,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/TextOutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"TranslateCharsetInfo","package":"druntime","parentType":"","signature":"BOOL TranslateCharsetInfo(PDWORD,  LPCHARSETINFO,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/TranslateCharsetInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"UnrealizeObject","package":"druntime","parentType":"","signature":"BOOL UnrealizeObject(HGDIOBJ)","url":"/ddoc/druntime/core/sys/windows/wingdi/UnrealizeObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"UpdateColors","package":"druntime","parentType":"","signature":"BOOL UpdateColors(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/UpdateColors.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"UpdateICMRegKeyA","package":"druntime","parentType":"","signature":"BOOL UpdateICMRegKeyA(DWORD,  DWORD,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/UpdateICMRegKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"UpdateICMRegKeyW","package":"druntime","parentType":"","signature":"BOOL UpdateICMRegKeyW(DWORD,  DWORD,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/UpdateICMRegKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"WidenPath","package":"druntime","parentType":"","signature":"BOOL WidenPath(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/WidenPath.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglCopyContext","package":"druntime","parentType":"","signature":"BOOL wglCopyContext(HGLRC,  HGLRC,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglCopyContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglCreateContext","package":"druntime","parentType":"","signature":"HGLRC wglCreateContext(HDC)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglCreateContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglCreateLayerContext","package":"druntime","parentType":"","signature":"HGLRC wglCreateLayerContext(HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglCreateLayerContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglDeleteContext","package":"druntime","parentType":"","signature":"BOOL wglDeleteContext(HGLRC)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglDeleteContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglDescribeLayerPlane","package":"druntime","parentType":"","signature":"BOOL wglDescribeLayerPlane(HDC,  int,  int,  UINT,  LPLAYERPLANEDESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglDescribeLayerPlane.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglGetCurrentContext","package":"druntime","parentType":"","signature":"HGLRC wglGetCurrentContext()","url":"/ddoc/druntime/core/sys/windows/wingdi/wglGetCurrentContext.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglGetCurrentDC","package":"druntime","parentType":"","signature":"HDC wglGetCurrentDC()","url":"/ddoc/druntime/core/sys/windows/wingdi/wglGetCurrentDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglGetLayerPaletteEntries","package":"druntime","parentType":"","signature":"int wglGetLayerPaletteEntries(HDC,  int,  int,  int,  COLORREF *)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglGetLayerPaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglGetProcAddress","package":"druntime","parentType":"","signature":"PROC wglGetProcAddress(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglGetProcAddress.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglMakeCurrent","package":"druntime","parentType":"","signature":"BOOL wglMakeCurrent(HDC,  HGLRC)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglMakeCurrent.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglRealizeLayerPalette","package":"druntime","parentType":"","signature":"BOOL wglRealizeLayerPalette(HDC,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglRealizeLayerPalette.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglSetLayerPaletteEntries","package":"druntime","parentType":"","signature":"int wglSetLayerPaletteEntries(HDC,  int,  int,  int,  const(COLORREF) *)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglSetLayerPaletteEntries.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglShareLists","package":"druntime","parentType":"","signature":"BOOL wglShareLists(HGLRC,  HGLRC)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglShareLists.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglSwapLayerBuffers","package":"druntime","parentType":"","signature":"BOOL wglSwapLayerBuffers(HDC,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglSwapLayerBuffers.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglUseFontBitmapsA","package":"druntime","parentType":"","signature":"BOOL wglUseFontBitmapsA(HDC,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglUseFontBitmapsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglUseFontBitmapsW","package":"druntime","parentType":"","signature":"BOOL wglUseFontBitmapsW(HDC,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglUseFontBitmapsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglUseFontOutlinesA","package":"druntime","parentType":"","signature":"BOOL wglUseFontOutlinesA(HDC,  DWORD,  DWORD,  DWORD,  FLOAT,  FLOAT,  int,  LPGLYPHMETRICSFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglUseFontOutlinesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wingdi","name":"wglUseFontOutlinesW","package":"druntime","parentType":"","signature":"BOOL wglUseFontOutlinesW(HDC,  DWORD,  DWORD,  DWORD,  FLOAT,  FLOAT,  int,  LPGLYPHMETRICSFLOAT)","url":"/ddoc/druntime/core/sys/windows/wingdi/wglUseFontOutlinesW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"RGN_ERROR","package":"druntime","parentType":"","signature":"RGN_ERROR = ERROR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGN_ERROR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PSINJECTDATA","package":"druntime","parentType":"","signature":"PSINJECTDATA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSINJECTDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPSINJECTDATA","package":"druntime","parentType":"","signature":"PPSINJECTDATA = PSINJECTDATA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPSINJECTDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ABC","package":"druntime","parentType":"","signature":"ABC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ABC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PABC","package":"druntime","parentType":"","signature":"PABC = ABC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PABC"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ABCFLOAT","package":"druntime","parentType":"","signature":"ABCFLOAT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ABCFLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PABCFLOAT","package":"druntime","parentType":"","signature":"PABCFLOAT = ABCFLOAT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PABCFLOAT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAP","package":"druntime","parentType":"","signature":"BITMAP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAP"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PBITMAP","package":"druntime","parentType":"","signature":"PBITMAP = BITMAP *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PBITMAP"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPCOREHEADER","package":"druntime","parentType":"","signature":"BITMAPCOREHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPCOREHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PBITMAPCOREHEADER","package":"druntime","parentType":"","signature":"PBITMAPCOREHEADER = BITMAPCOREHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PBITMAPCOREHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"RGBTRIPLE","package":"druntime","parentType":"","signature":"RGBTRIPLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGBTRIPLE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPRGBTRIPLE","package":"druntime","parentType":"","signature":"LPRGBTRIPLE = RGBTRIPLE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPRGBTRIPLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPFILEHEADER","package":"druntime","parentType":"","signature":"BITMAPFILEHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPFILEHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPBITMAPFILEHEADER","package":"druntime","parentType":"","signature":"LPBITMAPFILEHEADER = BITMAPFILEHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPBITMAPFILEHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPCOREINFO","package":"druntime","parentType":"","signature":"BITMAPCOREINFO","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPCOREINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPBITMAPCOREINFO","package":"druntime","parentType":"","signature":"LPBITMAPCOREINFO = BITMAPCOREINFO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPBITMAPCOREINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPINFOHEADER","package":"druntime","parentType":"","signature":"BITMAPINFOHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPINFOHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPBITMAPINFOHEADER","package":"druntime","parentType":"","signature":"LPBITMAPINFOHEADER = BITMAPINFOHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPBITMAPINFOHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"RGBQUAD","package":"druntime","parentType":"","signature":"RGBQUAD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGBQUAD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPRGBQUAD","package":"druntime","parentType":"","signature":"LPRGBQUAD = RGBQUAD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPRGBQUAD"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPINFO","package":"druntime","parentType":"","signature":"BITMAPINFO","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PBITMAPINFO","package":"druntime","parentType":"","signature":"PBITMAPINFO = BITMAPINFO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PBITMAPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"FXPT16DOT16","package":"druntime","parentType":"","signature":"FXPT16DOT16 = int","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FXPT16DOT16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPFXPT16DOT16","package":"druntime","parentType":"","signature":"LPFXPT16DOT16 = int *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPFXPT16DOT16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"FXPT2DOT30","package":"druntime","parentType":"","signature":"FXPT2DOT30 = int","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FXPT2DOT30"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPFXPT2DOT30","package":"druntime","parentType":"","signature":"LPFXPT2DOT30 = int *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPFXPT2DOT30"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"CIEXYZ","package":"druntime","parentType":"","signature":"CIEXYZ","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CIEXYZ"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPCIEXYZ","package":"druntime","parentType":"","signature":"LPCIEXYZ = CIEXYZ *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPCIEXYZ"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"CIEXYZTRIPLE","package":"druntime","parentType":"","signature":"CIEXYZTRIPLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CIEXYZTRIPLE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPCIEXYZTRIPLE","package":"druntime","parentType":"","signature":"LPCIEXYZTRIPLE = CIEXYZTRIPLE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPCIEXYZTRIPLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPV4HEADER","package":"druntime","parentType":"","signature":"BITMAPV4HEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPV4HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPBITMAPV4HEADER","package":"druntime","parentType":"","signature":"LPBITMAPV4HEADER = BITMAPV4HEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPBITMAPV4HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BITMAPV5HEADER","package":"druntime","parentType":"","signature":"BITMAPV5HEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BITMAPV5HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPBITMAPV5HEADER","package":"druntime","parentType":"","signature":"LPBITMAPV5HEADER = BITMAPV5HEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPBITMAPV5HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"FONTSIGNATURE","package":"druntime","parentType":"","signature":"FONTSIGNATURE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FONTSIGNATURE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PFONTSIGNATURE","package":"druntime","parentType":"","signature":"PFONTSIGNATURE = FONTSIGNATURE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PFONTSIGNATURE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"CHARSETINFO","package":"druntime","parentType":"","signature":"CHARSETINFO","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CHARSETINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PCHARSETINFO","package":"druntime","parentType":"","signature":"PCHARSETINFO = CHARSETINFO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PCHARSETINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"COLORADJUSTMENT","package":"druntime","parentType":"","signature":"COLORADJUSTMENT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#COLORADJUSTMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PCOLORADJUSTMENT","package":"druntime","parentType":"","signature":"PCOLORADJUSTMENT = COLORADJUSTMENT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PCOLORADJUSTMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DEVMODEA","package":"druntime","parentType":"","signature":"DEVMODEA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DEVMODEA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDEVMODEA","package":"druntime","parentType":"","signature":"PDEVMODEA = DEVMODEA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDEVMODEA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DEVMODEW","package":"druntime","parentType":"","signature":"DEVMODEW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DEVMODEW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDEVMODEW","package":"druntime","parentType":"","signature":"PDEVMODEW = DEVMODEW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDEVMODEW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PSFEATURE_OUTPUT","package":"druntime","parentType":"","signature":"PSFEATURE_OUTPUT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSFEATURE_OUTPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPSFEATURE_OUTPUT","package":"druntime","parentType":"","signature":"PPSFEATURE_OUTPUT = PSFEATURE_OUTPUT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPSFEATURE_OUTPUT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PSFEATURE_CUSTPAPER","package":"druntime","parentType":"","signature":"PSFEATURE_CUSTPAPER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSFEATURE_CUSTPAPER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPSFEATURE_CUSTPAPER","package":"druntime","parentType":"","signature":"PPSFEATURE_CUSTPAPER = PSFEATURE_CUSTPAPER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPSFEATURE_CUSTPAPER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DIBSECTION","package":"druntime","parentType":"","signature":"DIBSECTION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DIBSECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDIBSECTION","package":"druntime","parentType":"","signature":"PDIBSECTION = DIBSECTION *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDIBSECTION"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DOCINFOA","package":"druntime","parentType":"","signature":"DOCINFOA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DOCINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPDOCINFOA","package":"druntime","parentType":"","signature":"LPDOCINFOA = DOCINFOA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPDOCINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DOCINFOW","package":"druntime","parentType":"","signature":"DOCINFOW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DOCINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPDOCINFOW","package":"druntime","parentType":"","signature":"LPDOCINFOW = DOCINFOW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPDOCINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PANOSE","package":"druntime","parentType":"","signature":"PANOSE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PANOSE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPPANOSE","package":"druntime","parentType":"","signature":"LPPANOSE = PANOSE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPPANOSE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGFONTA","package":"druntime","parentType":"","signature":"LOGFONTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGFONTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGFONTA","package":"druntime","parentType":"","signature":"PLOGFONTA = LOGFONTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGFONTA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGFONTW","package":"druntime","parentType":"","signature":"LOGFONTW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGFONTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGFONTW","package":"druntime","parentType":"","signature":"PLOGFONTW = LOGFONTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGFONTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EXTLOGFONTA","package":"druntime","parentType":"","signature":"EXTLOGFONTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EXTLOGFONTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEXTLOGFONTA","package":"druntime","parentType":"","signature":"PEXTLOGFONTA = EXTLOGFONTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEXTLOGFONTA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EXTLOGFONTW","package":"druntime","parentType":"","signature":"EXTLOGFONTW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EXTLOGFONTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEXTLOGFONTW","package":"druntime","parentType":"","signature":"PEXTLOGFONTW = EXTLOGFONTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEXTLOGFONTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGPEN","package":"druntime","parentType":"","signature":"LOGPEN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGPEN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGPEN","package":"druntime","parentType":"","signature":"PLOGPEN = LOGPEN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGPEN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMR","package":"druntime","parentType":"","signature":"EMR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMR","package":"druntime","parentType":"","signature":"PEMR = EMR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRANGLEARC","package":"druntime","parentType":"","signature":"EMRANGLEARC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRANGLEARC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRANGLEARC","package":"druntime","parentType":"","signature":"PEMRANGLEARC = EMRANGLEARC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRANGLEARC"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRARC","package":"druntime","parentType":"","signature":"EMRARC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRARC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRARC","package":"druntime","parentType":"","signature":"PEMRARC = EMRARC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRARC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRARCTO","package":"druntime","parentType":"","signature":"EMRARCTO = EMRARC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRARCTO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRARCTO","package":"druntime","parentType":"","signature":"PEMRARCTO = EMRARCTO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRARCTO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRCHORD","package":"druntime","parentType":"","signature":"EMRCHORD = EMRARC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCHORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCHORD","package":"druntime","parentType":"","signature":"PEMRCHORD = EMRCHORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCHORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPIE","package":"druntime","parentType":"","signature":"EMRPIE = EMRARC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPIE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPIE","package":"druntime","parentType":"","signature":"PEMRPIE = EMRPIE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPIE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"XFORM","package":"druntime","parentType":"","signature":"XFORM","url":"/ddoc/druntime/core/sys/windows/wingdi.html#XFORM"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PXFORM","package":"druntime","parentType":"","signature":"PXFORM = XFORM *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PXFORM"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRBITBLT","package":"druntime","parentType":"","signature":"EMRBITBLT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRBITBLT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRBITBLT","package":"druntime","parentType":"","signature":"PEMRBITBLT = EMRBITBLT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRBITBLT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGBRUSH","package":"druntime","parentType":"","signature":"LOGBRUSH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGBRUSH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PATTERN","package":"druntime","parentType":"","signature":"PATTERN = LOGBRUSH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PATTERN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGBRUSH","package":"druntime","parentType":"","signature":"PLOGBRUSH = LOGBRUSH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGBRUSH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPATTERN","package":"druntime","parentType":"","signature":"PPATTERN = PATTERN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPATTERN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGBRUSH32","package":"druntime","parentType":"","signature":"LOGBRUSH32","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGBRUSH32"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGBRUSH32","package":"druntime","parentType":"","signature":"PLOGBRUSH32 = LOGBRUSH32 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGBRUSH32"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATEBRUSHINDIRECT","package":"druntime","parentType":"","signature":"EMRCREATEBRUSHINDIRECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATEBRUSHINDIRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATEBRUSHINDIRECT","package":"druntime","parentType":"","signature":"PEMRCREATEBRUSHINDIRECT = EMRCREATEBRUSHINDIRECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATEBRUSHINDIRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LCSCSTYPE","package":"druntime","parentType":"","signature":"LCSCSTYPE = LONG","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LCSCSTYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGCOLORSPACEA","package":"druntime","parentType":"","signature":"LOGCOLORSPACEA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGCOLORSPACEA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPLOGCOLORSPACEA","package":"druntime","parentType":"","signature":"LPLOGCOLORSPACEA = LOGCOLORSPACEA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPLOGCOLORSPACEA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGCOLORSPACEW","package":"druntime","parentType":"","signature":"LOGCOLORSPACEW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGCOLORSPACEW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPLOGCOLORSPACEW","package":"druntime","parentType":"","signature":"LPLOGCOLORSPACEW = LOGCOLORSPACEW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPLOGCOLORSPACEW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"COLOR16","package":"druntime","parentType":"","signature":"COLOR16 = USHORT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#COLOR16"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"TRIVERTEX","package":"druntime","parentType":"","signature":"TRIVERTEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TRIVERTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PTRIVERTEX","package":"druntime","parentType":"","signature":"PTRIVERTEX = TRIVERTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PTRIVERTEX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRGLSRECORD","package":"druntime","parentType":"","signature":"EMRGLSRECORD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRGLSRECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRGLSRECORD","package":"druntime","parentType":"","signature":"PEMRGLSRECORD = EMRGLSRECORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRGLSRECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRGLSBOUNDEDRECORD","package":"druntime","parentType":"","signature":"EMRGLSBOUNDEDRECORD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRGLSBOUNDEDRECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRGLSBOUNDEDRECORD","package":"druntime","parentType":"","signature":"PEMRGLSBOUNDEDRECORD = EMRGLSBOUNDEDRECORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRGLSBOUNDEDRECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPIXELFORMAT","package":"druntime","parentType":"","signature":"EMRPIXELFORMAT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPIXELFORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPIXELFORMAT","package":"druntime","parentType":"","signature":"PEMRPIXELFORMAT = EMRPIXELFORMAT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPIXELFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATECOLORSPACE","package":"druntime","parentType":"","signature":"EMRCREATECOLORSPACE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATECOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATECOLORSPACE","package":"druntime","parentType":"","signature":"PEMRCREATECOLORSPACE = EMRCREATECOLORSPACE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATECOLORSPACE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETCOLORSPACE","package":"druntime","parentType":"","signature":"EMRSETCOLORSPACE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETCOLORSPACE","package":"druntime","parentType":"","signature":"PEMRSETCOLORSPACE = EMRSETCOLORSPACE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSELECTCOLORSPACE","package":"druntime","parentType":"","signature":"EMRSELECTCOLORSPACE = EMRSETCOLORSPACE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSELECTCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSELECTCOLORSPACE","package":"druntime","parentType":"","signature":"PEMRSELECTCOLORSPACE = EMRSELECTCOLORSPACE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSELECTCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRDELETECOLORSPACE","package":"druntime","parentType":"","signature":"EMRDELETECOLORSPACE = EMRSETCOLORSPACE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRDELETECOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRDELETECOLORSPACE","package":"druntime","parentType":"","signature":"PEMRDELETECOLORSPACE = EMRDELETECOLORSPACE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRDELETECOLORSPACE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATEDIBPATTERNBRUSHPT","package":"druntime","parentType":"","signature":"EMRCREATEDIBPATTERNBRUSHPT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATEDIBPATTERNBRUSHPT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATEDIBPATTERNBRUSHPT","package":"druntime","parentType":"","signature":"PEMRCREATEDIBPATTERNBRUSHPT = EMRCREATEDIBPATTERNBRUSHPT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATEDIBPATTERNBRUSHPT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATEMONOBRUSH","package":"druntime","parentType":"","signature":"EMRCREATEMONOBRUSH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATEMONOBRUSH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATEMONOBRUSH","package":"druntime","parentType":"","signature":"PEMRCREATEMONOBRUSH = EMRCREATEMONOBRUSH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATEMONOBRUSH"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PALETTEENTRY","package":"druntime","parentType":"","signature":"PALETTEENTRY","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PALETTEENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPALETTEENTRY","package":"druntime","parentType":"","signature":"PPALETTEENTRY = PALETTEENTRY *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPALETTEENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOGPALETTE","package":"druntime","parentType":"","signature":"LOGPALETTE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOGPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGPALETTE","package":"druntime","parentType":"","signature":"PLOGPALETTE = LOGPALETTE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATEPALETTE","package":"druntime","parentType":"","signature":"EMRCREATEPALETTE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATEPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATEPALETTE","package":"druntime","parentType":"","signature":"PEMRCREATEPALETTE = EMRCREATEPALETTE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATEPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRCREATEPEN","package":"druntime","parentType":"","signature":"EMRCREATEPEN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCREATEPEN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCREATEPEN","package":"druntime","parentType":"","signature":"PEMRCREATEPEN = EMRCREATEPEN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCREATEPEN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRELLIPSE","package":"druntime","parentType":"","signature":"EMRELLIPSE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRELLIPSE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRELLIPSE","package":"druntime","parentType":"","signature":"PEMRELLIPSE = EMRELLIPSE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRELLIPSE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRRECTANGLE","package":"druntime","parentType":"","signature":"EMRRECTANGLE = EMRELLIPSE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRRECTANGLE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRRECTANGLE","package":"druntime","parentType":"","signature":"PEMRRECTANGLE = EMRRECTANGLE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRRECTANGLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREOF","package":"druntime","parentType":"","signature":"EMREOF","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREOF"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREOF","package":"druntime","parentType":"","signature":"PEMREOF = EMREOF *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREOF"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXCLUDECLIPRECT","package":"druntime","parentType":"","signature":"EMREXCLUDECLIPRECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXCLUDECLIPRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXCLUDECLIPRECT","package":"druntime","parentType":"","signature":"PEMREXCLUDECLIPRECT = EMREXCLUDECLIPRECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXCLUDECLIPRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRINTERSECTCLIPRECT","package":"druntime","parentType":"","signature":"EMRINTERSECTCLIPRECT = EMREXCLUDECLIPRECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRINTERSECTCLIPRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRINTERSECTCLIPRECT","package":"druntime","parentType":"","signature":"PEMRINTERSECTCLIPRECT = EMRINTERSECTCLIPRECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRINTERSECTCLIPRECT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXTCREATEFONTINDIRECTW","package":"druntime","parentType":"","signature":"EMREXTCREATEFONTINDIRECTW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTCREATEFONTINDIRECTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTCREATEFONTINDIRECTW","package":"druntime","parentType":"","signature":"PEMREXTCREATEFONTINDIRECTW = EMREXTCREATEFONTINDIRECTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTCREATEFONTINDIRECTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EXTLOGPEN","package":"druntime","parentType":"","signature":"EXTLOGPEN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EXTLOGPEN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEXTLOGPEN","package":"druntime","parentType":"","signature":"PEXTLOGPEN = EXTLOGPEN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEXTLOGPEN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EXTLOGPEN32","package":"druntime","parentType":"","signature":"EXTLOGPEN32","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EXTLOGPEN32"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEXTLOGPEN32","package":"druntime","parentType":"","signature":"PEXTLOGPEN32 = EXTLOGPEN32 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEXTLOGPEN32"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXTCREATEPEN","package":"druntime","parentType":"","signature":"EMREXTCREATEPEN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTCREATEPEN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTCREATEPEN","package":"druntime","parentType":"","signature":"PEMREXTCREATEPEN = EMREXTCREATEPEN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTCREATEPEN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXTFLOODFILL","package":"druntime","parentType":"","signature":"EMREXTFLOODFILL","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTFLOODFILL"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTFLOODFILL","package":"druntime","parentType":"","signature":"PEMREXTFLOODFILL = EMREXTFLOODFILL *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTFLOODFILL"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXTSELECTCLIPRGN","package":"druntime","parentType":"","signature":"EMREXTSELECTCLIPRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTSELECTCLIPRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTSELECTCLIPRGN","package":"druntime","parentType":"","signature":"PEMREXTSELECTCLIPRGN = EMREXTSELECTCLIPRGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTSELECTCLIPRGN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRTEXT","package":"druntime","parentType":"","signature":"EMRTEXT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRTEXT","package":"druntime","parentType":"","signature":"PEMRTEXT = EMRTEXT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMREXTTEXTOUTA","package":"druntime","parentType":"","signature":"EMREXTTEXTOUTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTTEXTOUTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTTEXTOUTA","package":"druntime","parentType":"","signature":"PEMREXTTEXTOUTA = EMREXTTEXTOUTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTTEXTOUTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMREXTTEXTOUTW","package":"druntime","parentType":"","signature":"EMREXTTEXTOUTW = EMREXTTEXTOUTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMREXTTEXTOUTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMREXTTEXTOUTW","package":"druntime","parentType":"","signature":"PEMREXTTEXTOUTW = EMREXTTEXTOUTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMREXTTEXTOUTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRFILLPATH","package":"druntime","parentType":"","signature":"EMRFILLPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRFILLPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRFILLPATH","package":"druntime","parentType":"","signature":"PEMRFILLPATH = EMRFILLPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRFILLPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSTROKEANDFILLPATH","package":"druntime","parentType":"","signature":"EMRSTROKEANDFILLPATH = EMRFILLPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSTROKEANDFILLPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSTROKEANDFILLPATH","package":"druntime","parentType":"","signature":"PEMRSTROKEANDFILLPATH = EMRSTROKEANDFILLPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSTROKEANDFILLPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSTROKEPATH","package":"druntime","parentType":"","signature":"EMRSTROKEPATH = EMRFILLPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSTROKEPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSTROKEPATH","package":"druntime","parentType":"","signature":"PEMRSTROKEPATH = EMRSTROKEPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSTROKEPATH"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRFILLRGN","package":"druntime","parentType":"","signature":"EMRFILLRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRFILLRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRFILLRGN","package":"druntime","parentType":"","signature":"PEMRFILLRGN = EMRFILLRGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRFILLRGN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRFORMAT","package":"druntime","parentType":"","signature":"EMRFORMAT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRFORMAT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRFORMAT","package":"druntime","parentType":"","signature":"PEMRFORMAT = EMRFORMAT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRFORMAT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRFRAMERGN","package":"druntime","parentType":"","signature":"EMRFRAMERGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRFRAMERGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRFRAMERGN","package":"druntime","parentType":"","signature":"PEMRFRAMERGN = EMRFRAMERGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRFRAMERGN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRGDICOMMENT","package":"druntime","parentType":"","signature":"EMRGDICOMMENT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRGDICOMMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRGDICOMMENT","package":"druntime","parentType":"","signature":"PEMRGDICOMMENT = EMRGDICOMMENT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRGDICOMMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRINVERTRGN","package":"druntime","parentType":"","signature":"EMRINVERTRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRINVERTRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRINVERTRGN","package":"druntime","parentType":"","signature":"PEMRINVERTRGN = EMRINVERTRGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRINVERTRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPAINTRGN","package":"druntime","parentType":"","signature":"EMRPAINTRGN = EMRINVERTRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPAINTRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPAINTRGN","package":"druntime","parentType":"","signature":"PEMRPAINTRGN = EMRPAINTRGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPAINTRGN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRLINETO","package":"druntime","parentType":"","signature":"EMRLINETO","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRLINETO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRLINETO","package":"druntime","parentType":"","signature":"PEMRLINETO = EMRLINETO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRLINETO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRMOVETOEX","package":"druntime","parentType":"","signature":"EMRMOVETOEX = EMRLINETO","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRMOVETOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRMOVETOEX","package":"druntime","parentType":"","signature":"PEMRMOVETOEX = EMRMOVETOEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRMOVETOEX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRMASKBLT","package":"druntime","parentType":"","signature":"EMRMASKBLT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRMASKBLT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRMASKBLT","package":"druntime","parentType":"","signature":"PEMRMASKBLT = EMRMASKBLT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRMASKBLT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRMODIFYWORLDTRANSFORM","package":"druntime","parentType":"","signature":"EMRMODIFYWORLDTRANSFORM","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRMODIFYWORLDTRANSFORM"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRMODIFYWORLDTRANSFORM","package":"druntime","parentType":"","signature":"PEMRMODIFYWORLDTRANSFORM = EMRMODIFYWORLDTRANSFORM *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRMODIFYWORLDTRANSFORM"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMROFFSETCLIPRGN","package":"druntime","parentType":"","signature":"EMROFFSETCLIPRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMROFFSETCLIPRGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMROFFSETCLIPRGN","package":"druntime","parentType":"","signature":"PEMROFFSETCLIPRGN = EMROFFSETCLIPRGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMROFFSETCLIPRGN"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPLGBLT","package":"druntime","parentType":"","signature":"EMRPLGBLT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPLGBLT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPLGBLT","package":"druntime","parentType":"","signature":"PEMRPLGBLT = EMRPLGBLT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPLGBLT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYDRAW","package":"druntime","parentType":"","signature":"EMRPOLYDRAW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYDRAW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYDRAW","package":"druntime","parentType":"","signature":"PEMRPOLYDRAW = EMRPOLYDRAW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYDRAW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYDRAW16","package":"druntime","parentType":"","signature":"EMRPOLYDRAW16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYDRAW16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYDRAW16","package":"druntime","parentType":"","signature":"PEMRPOLYDRAW16 = EMRPOLYDRAW16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYDRAW16"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYLINE","package":"druntime","parentType":"","signature":"EMRPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYLINE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYLINE","package":"druntime","parentType":"","signature":"PEMRPOLYLINE = EMRPOLYLINE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYLINE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYBEZIER","package":"druntime","parentType":"","signature":"EMRPOLYBEZIER = EMRPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYBEZIER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYBEZIER","package":"druntime","parentType":"","signature":"PEMRPOLYBEZIER = EMRPOLYBEZIER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYBEZIER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYGON","package":"druntime","parentType":"","signature":"EMRPOLYGON = EMRPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYGON"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYGON","package":"druntime","parentType":"","signature":"PEMRPOLYGON = EMRPOLYGON *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYGON"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYBEZIERTO","package":"druntime","parentType":"","signature":"EMRPOLYBEZIERTO = EMRPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYBEZIERTO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYBEZIERTO","package":"druntime","parentType":"","signature":"PEMRPOLYBEZIERTO = EMRPOLYBEZIERTO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYBEZIERTO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYLINETO","package":"druntime","parentType":"","signature":"EMRPOLYLINETO = EMRPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYLINETO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYLINETO","package":"druntime","parentType":"","signature":"PEMRPOLYLINETO = EMRPOLYLINETO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYLINETO"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYLINE16","package":"druntime","parentType":"","signature":"EMRPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYLINE16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYLINE16","package":"druntime","parentType":"","signature":"PEMRPOLYLINE16 = EMRPOLYLINE16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYLINE16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYBEZIER16","package":"druntime","parentType":"","signature":"EMRPOLYBEZIER16 = EMRPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYBEZIER16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYBEZIER16","package":"druntime","parentType":"","signature":"PEMRPOLYBEZIER16 = EMRPOLYBEZIER16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYBEZIER16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYGON16","package":"druntime","parentType":"","signature":"EMRPOLYGON16 = EMRPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYGON16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYGON16","package":"druntime","parentType":"","signature":"PEMRPOLYGON16 = EMRPOLYGON16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYGON16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYBEZIERTO16","package":"druntime","parentType":"","signature":"EMRPOLYBEZIERTO16 = EMRPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYBEZIERTO16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYBEZIERTO16","package":"druntime","parentType":"","signature":"PEMRPOLYBEZIERTO16 = EMRPOLYBEZIERTO16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYBEZIERTO16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYLINETO16","package":"druntime","parentType":"","signature":"EMRPOLYLINETO16 = EMRPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYLINETO16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYLINETO16","package":"druntime","parentType":"","signature":"PEMRPOLYLINETO16 = EMRPOLYLINETO16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYLINETO16"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYPOLYLINE","package":"druntime","parentType":"","signature":"EMRPOLYPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYPOLYLINE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYPOLYLINE","package":"druntime","parentType":"","signature":"PEMRPOLYPOLYLINE = EMRPOLYPOLYLINE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYPOLYLINE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYPOLYGON","package":"druntime","parentType":"","signature":"EMRPOLYPOLYGON = EMRPOLYPOLYLINE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYPOLYGON"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYPOLYGON","package":"druntime","parentType":"","signature":"PEMRPOLYPOLYGON = EMRPOLYPOLYGON *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYPOLYGON"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYPOLYLINE16","package":"druntime","parentType":"","signature":"EMRPOLYPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYPOLYLINE16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYPOLYLINE16","package":"druntime","parentType":"","signature":"PEMRPOLYPOLYLINE16 = EMRPOLYPOLYLINE16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYPOLYLINE16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYPOLYGON16","package":"druntime","parentType":"","signature":"EMRPOLYPOLYGON16 = EMRPOLYPOLYLINE16","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYPOLYGON16"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYPOLYGON16","package":"druntime","parentType":"","signature":"PEMRPOLYPOLYGON16 = EMRPOLYPOLYGON16 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYPOLYGON16"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRPOLYTEXTOUTA","package":"druntime","parentType":"","signature":"EMRPOLYTEXTOUTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYTEXTOUTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYTEXTOUTA","package":"druntime","parentType":"","signature":"PEMRPOLYTEXTOUTA = EMRPOLYTEXTOUTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYTEXTOUTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRPOLYTEXTOUTW","package":"druntime","parentType":"","signature":"EMRPOLYTEXTOUTW = EMRPOLYTEXTOUTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRPOLYTEXTOUTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRPOLYTEXTOUTW","package":"druntime","parentType":"","signature":"PEMRPOLYTEXTOUTW = EMRPOLYTEXTOUTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRPOLYTEXTOUTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRRESIZEPALETTE","package":"druntime","parentType":"","signature":"EMRRESIZEPALETTE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRRESIZEPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRRESIZEPALETTE","package":"druntime","parentType":"","signature":"PEMRRESIZEPALETTE = EMRRESIZEPALETTE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRRESIZEPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRRESTOREDC","package":"druntime","parentType":"","signature":"EMRRESTOREDC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRRESTOREDC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRRESTOREDC","package":"druntime","parentType":"","signature":"PEMRRESTOREDC = EMRRESTOREDC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRRESTOREDC"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRROUNDRECT","package":"druntime","parentType":"","signature":"EMRROUNDRECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRROUNDRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRROUNDRECT","package":"druntime","parentType":"","signature":"PEMRROUNDRECT = EMRROUNDRECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRROUNDRECT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSCALEVIEWPORTEXTEX","package":"druntime","parentType":"","signature":"EMRSCALEVIEWPORTEXTEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSCALEVIEWPORTEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSCALEVIEWPORTEXTEX","package":"druntime","parentType":"","signature":"PEMRSCALEVIEWPORTEXTEX = EMRSCALEVIEWPORTEXTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSCALEVIEWPORTEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSCALEWINDOWEXTEX","package":"druntime","parentType":"","signature":"EMRSCALEWINDOWEXTEX = EMRSCALEVIEWPORTEXTEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSCALEWINDOWEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSCALEWINDOWEXTEX","package":"druntime","parentType":"","signature":"PEMRSCALEWINDOWEXTEX = EMRSCALEWINDOWEXTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSCALEWINDOWEXTEX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSELECTOBJECT","package":"druntime","parentType":"","signature":"EMRSELECTOBJECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSELECTOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSELECTOBJECT","package":"druntime","parentType":"","signature":"PEMRSELECTOBJECT = EMRSELECTOBJECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSELECTOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRDELETEOBJECT","package":"druntime","parentType":"","signature":"EMRDELETEOBJECT = EMRSELECTOBJECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRDELETEOBJECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRDELETEOBJECT","package":"druntime","parentType":"","signature":"PEMRDELETEOBJECT = EMRDELETEOBJECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRDELETEOBJECT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSELECTPALETTE","package":"druntime","parentType":"","signature":"EMRSELECTPALETTE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSELECTPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSELECTPALETTE","package":"druntime","parentType":"","signature":"PEMRSELECTPALETTE = EMRSELECTPALETTE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSELECTPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETARCDIRECTION","package":"druntime","parentType":"","signature":"EMRSETARCDIRECTION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETARCDIRECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETARCDIRECTION","package":"druntime","parentType":"","signature":"PEMRSETARCDIRECTION = EMRSETARCDIRECTION *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETARCDIRECTION"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETTEXTCOLOR","package":"druntime","parentType":"","signature":"EMRSETTEXTCOLOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETTEXTCOLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETTEXTCOLOR","package":"druntime","parentType":"","signature":"PEMRSETTEXTCOLOR = EMRSETTEXTCOLOR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETTEXTCOLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETBKCOLOR","package":"druntime","parentType":"","signature":"EMRSETBKCOLOR = EMRSETTEXTCOLOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETBKCOLOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETBKCOLOR","package":"druntime","parentType":"","signature":"PEMRSETBKCOLOR = EMRSETBKCOLOR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETBKCOLOR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETCOLORADJUSTMENT","package":"druntime","parentType":"","signature":"EMRSETCOLORADJUSTMENT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETCOLORADJUSTMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETCOLORADJUSTMENT","package":"druntime","parentType":"","signature":"PEMRSETCOLORADJUSTMENT = EMRSETCOLORADJUSTMENT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETCOLORADJUSTMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETDIBITSTODEVICE","package":"druntime","parentType":"","signature":"EMRSETDIBITSTODEVICE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETDIBITSTODEVICE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETDIBITSTODEVICE","package":"druntime","parentType":"","signature":"PEMRSETDIBITSTODEVICE = EMRSETDIBITSTODEVICE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETDIBITSTODEVICE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETMAPPERFLAGS","package":"druntime","parentType":"","signature":"EMRSETMAPPERFLAGS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETMAPPERFLAGS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETMAPPERFLAGS","package":"druntime","parentType":"","signature":"PEMRSETMAPPERFLAGS = EMRSETMAPPERFLAGS *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETMAPPERFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETMITERLIMIT","package":"druntime","parentType":"","signature":"EMRSETMITERLIMIT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETMITERLIMIT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETMITERLIMIT","package":"druntime","parentType":"","signature":"PEMRSETMITERLIMIT = EMRSETMITERLIMIT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETMITERLIMIT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETPALETTEENTRIES","package":"druntime","parentType":"","signature":"EMRSETPALETTEENTRIES","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETPALETTEENTRIES"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETPALETTEENTRIES","package":"druntime","parentType":"","signature":"PEMRSETPALETTEENTRIES = EMRSETPALETTEENTRIES *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETPALETTEENTRIES"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETPIXELV","package":"druntime","parentType":"","signature":"EMRSETPIXELV","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETPIXELV"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETPIXELV","package":"druntime","parentType":"","signature":"PEMRSETPIXELV = EMRSETPIXELV *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETPIXELV"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETVIEWPORTEXTEX","package":"druntime","parentType":"","signature":"EMRSETVIEWPORTEXTEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETVIEWPORTEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETVIEWPORTEXTEX","package":"druntime","parentType":"","signature":"PEMRSETVIEWPORTEXTEX = EMRSETVIEWPORTEXTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETVIEWPORTEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETWINDOWEXTEX","package":"druntime","parentType":"","signature":"EMRSETWINDOWEXTEX = EMRSETVIEWPORTEXTEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETWINDOWEXTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETWINDOWEXTEX","package":"druntime","parentType":"","signature":"PEMRSETWINDOWEXTEX = EMRSETWINDOWEXTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETWINDOWEXTEX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETVIEWPORTORGEX","package":"druntime","parentType":"","signature":"EMRSETVIEWPORTORGEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETVIEWPORTORGEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETVIEWPORTORGEX","package":"druntime","parentType":"","signature":"PEMRSETVIEWPORTORGEX = EMRSETVIEWPORTORGEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETVIEWPORTORGEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETWINDOWORGEX","package":"druntime","parentType":"","signature":"EMRSETWINDOWORGEX = EMRSETVIEWPORTORGEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETWINDOWORGEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETWINDOWORGEX","package":"druntime","parentType":"","signature":"PEMRSETWINDOWORGEX = EMRSETWINDOWORGEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETWINDOWORGEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETBRUSHORGEX","package":"druntime","parentType":"","signature":"EMRSETBRUSHORGEX = EMRSETVIEWPORTORGEX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETBRUSHORGEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETBRUSHORGEX","package":"druntime","parentType":"","signature":"PEMRSETBRUSHORGEX = EMRSETBRUSHORGEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETBRUSHORGEX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSETWORLDTRANSFORM","package":"druntime","parentType":"","signature":"EMRSETWORLDTRANSFORM","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETWORLDTRANSFORM"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETWORLDTRANSFORM","package":"druntime","parentType":"","signature":"PEMRSETWORLDTRANSFORM = EMRSETWORLDTRANSFORM *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETWORLDTRANSFORM"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSTRETCHBLT","package":"druntime","parentType":"","signature":"EMRSTRETCHBLT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSTRETCHBLT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSTRETCHBLT","package":"druntime","parentType":"","signature":"PEMRSTRETCHBLT = EMRSTRETCHBLT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSTRETCHBLT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSTRETCHDIBITS","package":"druntime","parentType":"","signature":"EMRSTRETCHDIBITS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSTRETCHDIBITS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSTRETCHDIBITS","package":"druntime","parentType":"","signature":"PEMRSTRETCHDIBITS = EMRSTRETCHDIBITS *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSTRETCHDIBITS"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRABORTPATH","package":"druntime","parentType":"","signature":"EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRABORTPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRABORTPATH","package":"druntime","parentType":"","signature":"PEMRABORTPATH = EMRABORTPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRABORTPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRBEGINPATH","package":"druntime","parentType":"","signature":"EMRBEGINPATH = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRBEGINPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRBEGINPATH","package":"druntime","parentType":"","signature":"PEMRBEGINPATH = EMRBEGINPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRBEGINPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRENDPATH","package":"druntime","parentType":"","signature":"EMRENDPATH = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRENDPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRENDPATH","package":"druntime","parentType":"","signature":"PEMRENDPATH = EMRENDPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRENDPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRCLOSEFIGURE","package":"druntime","parentType":"","signature":"EMRCLOSEFIGURE = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRCLOSEFIGURE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRCLOSEFIGURE","package":"druntime","parentType":"","signature":"PEMRCLOSEFIGURE = EMRCLOSEFIGURE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRCLOSEFIGURE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRFLATTENPATH","package":"druntime","parentType":"","signature":"EMRFLATTENPATH = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRFLATTENPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRFLATTENPATH","package":"druntime","parentType":"","signature":"PEMRFLATTENPATH = EMRFLATTENPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRFLATTENPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRWIDENPATH","package":"druntime","parentType":"","signature":"EMRWIDENPATH = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRWIDENPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRWIDENPATH","package":"druntime","parentType":"","signature":"PEMRWIDENPATH = EMRWIDENPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRWIDENPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETMETARGN","package":"druntime","parentType":"","signature":"EMRSETMETARGN = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETMETARGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETMETARGN","package":"druntime","parentType":"","signature":"PEMRSETMETARGN = EMRSETMETARGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETMETARGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSAVEDC","package":"druntime","parentType":"","signature":"EMRSAVEDC = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSAVEDC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSAVEDC","package":"druntime","parentType":"","signature":"PEMRSAVEDC = EMRSAVEDC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSAVEDC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRREALIZEPALETTE","package":"druntime","parentType":"","signature":"EMRREALIZEPALETTE = EMRABORTPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRREALIZEPALETTE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRREALIZEPALETTE","package":"druntime","parentType":"","signature":"PEMRREALIZEPALETTE = EMRREALIZEPALETTE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRREALIZEPALETTE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"EMRSELECTCLIPPATH","package":"druntime","parentType":"","signature":"EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSELECTCLIPPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSELECTCLIPPATH","package":"druntime","parentType":"","signature":"PEMRSELECTCLIPPATH = EMRSELECTCLIPPATH *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSELECTCLIPPATH"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETBKMODE","package":"druntime","parentType":"","signature":"EMRSETBKMODE = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETBKMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETBKMODE","package":"druntime","parentType":"","signature":"PEMRSETBKMODE = EMRSETBKMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETBKMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETMAPMODE","package":"druntime","parentType":"","signature":"EMRSETMAPMODE = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETMAPMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETMAPMODE","package":"druntime","parentType":"","signature":"PEMRSETMAPMODE = EMRSETMAPMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETMAPMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETPOLYFILLMODE","package":"druntime","parentType":"","signature":"EMRSETPOLYFILLMODE = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETPOLYFILLMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETPOLYFILLMODE","package":"druntime","parentType":"","signature":"PEMRSETPOLYFILLMODE = EMRSETPOLYFILLMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETPOLYFILLMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETROP2","package":"druntime","parentType":"","signature":"EMRSETROP2 = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETROP2"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETROP2","package":"druntime","parentType":"","signature":"PEMRSETROP2 = EMRSETROP2 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETROP2"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETSTRETCHBLTMODE","package":"druntime","parentType":"","signature":"EMRSETSTRETCHBLTMODE = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETSTRETCHBLTMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETSTRETCHBLTMODE","package":"druntime","parentType":"","signature":"PEMRSETSTRETCHBLTMODE = EMRSETSTRETCHBLTMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETSTRETCHBLTMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETICMMODE","package":"druntime","parentType":"","signature":"EMRSETICMMODE = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETICMMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETICMMODE","package":"druntime","parentType":"","signature":"PEMRSETICMMODE = EMRSETICMMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETICMMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRSETTEXTALIGN","package":"druntime","parentType":"","signature":"EMRSETTEXTALIGN = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRSETTEXTALIGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRSETTEXTALIGN","package":"druntime","parentType":"","signature":"PEMRSETTEXTALIGN = EMRSETTEXTALIGN *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRSETTEXTALIGN"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"EMRENABLEICM","package":"druntime","parentType":"","signature":"EMRENABLEICM = EMRSELECTCLIPPATH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMRENABLEICM"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEMRENABLEICM","package":"druntime","parentType":"","signature":"PEMRENABLEICM = EMRENABLEICM *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEMRENABLEICM"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"METAHEADER","package":"druntime","parentType":"","signature":"METAHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#METAHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PMETAHEADER","package":"druntime","parentType":"","signature":"PMETAHEADER = METAHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PMETAHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPMETAHEADER","package":"druntime","parentType":"","signature":"LPMETAHEADER = METAHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPMETAHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENHMETAHEADER","package":"druntime","parentType":"","signature":"ENHMETAHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENHMETAHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PENHMETAHEADER","package":"druntime","parentType":"","signature":"PENHMETAHEADER = ENHMETAHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PENHMETAHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"METARECORD","package":"druntime","parentType":"","signature":"METARECORD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#METARECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PMETARECORD","package":"druntime","parentType":"","signature":"PMETARECORD = METARECORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PMETARECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPMETARECORD","package":"druntime","parentType":"","signature":"LPMETARECORD = METARECORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPMETARECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENHMETARECORD","package":"druntime","parentType":"","signature":"ENHMETARECORD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENHMETARECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PENHMETARECORD","package":"druntime","parentType":"","signature":"PENHMETARECORD = ENHMETARECORD *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PENHMETARECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"HANDLETABLE","package":"druntime","parentType":"","signature":"HANDLETABLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#HANDLETABLE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PHANDLETABLE","package":"druntime","parentType":"","signature":"PHANDLETABLE = HANDLETABLE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PHANDLETABLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"TEXTMETRICA","package":"druntime","parentType":"","signature":"TEXTMETRICA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TEXTMETRICA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PTEXTMETRICA","package":"druntime","parentType":"","signature":"PTEXTMETRICA = TEXTMETRICA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PTEXTMETRICA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"TEXTMETRICW","package":"druntime","parentType":"","signature":"TEXTMETRICW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TEXTMETRICW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PTEXTMETRICW","package":"druntime","parentType":"","signature":"PTEXTMETRICW = TEXTMETRICW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PTEXTMETRICW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"RGNDATAHEADER","package":"druntime","parentType":"","signature":"RGNDATAHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGNDATAHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PRGNDATAHEADER","package":"druntime","parentType":"","signature":"PRGNDATAHEADER = RGNDATAHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PRGNDATAHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"RGNDATA","package":"druntime","parentType":"","signature":"RGNDATA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGNDATA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PRGNDATA","package":"druntime","parentType":"","signature":"PRGNDATA = RGNDATA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PRGNDATA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GCP_RESULTSA","package":"druntime","parentType":"","signature":"GCP_RESULTSA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GCP_RESULTSA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPGCP_RESULTSA","package":"druntime","parentType":"","signature":"LPGCP_RESULTSA = GCP_RESULTSA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPGCP_RESULTSA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GCP_RESULTSW","package":"druntime","parentType":"","signature":"GCP_RESULTSW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GCP_RESULTSW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPGCP_RESULTSW","package":"druntime","parentType":"","signature":"LPGCP_RESULTSW = GCP_RESULTSW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPGCP_RESULTSW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GLYPHMETRICS","package":"druntime","parentType":"","signature":"GLYPHMETRICS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GLYPHMETRICS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPGLYPHMETRICS","package":"druntime","parentType":"","signature":"LPGLYPHMETRICS = GLYPHMETRICS *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPGLYPHMETRICS"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"KERNINGPAIR","package":"druntime","parentType":"","signature":"KERNINGPAIR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#KERNINGPAIR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPKERNINGPAIR","package":"druntime","parentType":"","signature":"LPKERNINGPAIR = KERNINGPAIR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPKERNINGPAIR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"FIXED","package":"druntime","parentType":"","signature":"FIXED","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FIXED"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"MAT2","package":"druntime","parentType":"","signature":"MAT2","url":"/ddoc/druntime/core/sys/windows/wingdi.html#MAT2"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPMAT2","package":"druntime","parentType":"","signature":"LPMAT2 = MAT2 *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPMAT2"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"OUTLINETEXTMETRICA","package":"druntime","parentType":"","signature":"OUTLINETEXTMETRICA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#OUTLINETEXTMETRICA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"POUTLINETEXTMETRICA","package":"druntime","parentType":"","signature":"POUTLINETEXTMETRICA = OUTLINETEXTMETRICA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POUTLINETEXTMETRICA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"OUTLINETEXTMETRICW","package":"druntime","parentType":"","signature":"OUTLINETEXTMETRICW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#OUTLINETEXTMETRICW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"POUTLINETEXTMETRICW","package":"druntime","parentType":"","signature":"POUTLINETEXTMETRICW = OUTLINETEXTMETRICW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POUTLINETEXTMETRICW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"RASTERIZER_STATUS","package":"druntime","parentType":"","signature":"RASTERIZER_STATUS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RASTERIZER_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPRASTERIZER_STATUS","package":"druntime","parentType":"","signature":"LPRASTERIZER_STATUS = RASTERIZER_STATUS *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPRASTERIZER_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"POLYTEXTA","package":"druntime","parentType":"","signature":"POLYTEXTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POLYTEXTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPOLYTEXTA","package":"druntime","parentType":"","signature":"PPOLYTEXTA = POLYTEXTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPOLYTEXTA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"POLYTEXTW","package":"druntime","parentType":"","signature":"POLYTEXTW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POLYTEXTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPOLYTEXTW","package":"druntime","parentType":"","signature":"PPOLYTEXTW = POLYTEXTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPOLYTEXTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PIXELFORMATDESCRIPTOR","package":"druntime","parentType":"","signature":"PIXELFORMATDESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PIXELFORMATDESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPIXELFORMATDESCRIPTOR","package":"druntime","parentType":"","signature":"PPIXELFORMATDESCRIPTOR = PIXELFORMATDESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPIXELFORMATDESCRIPTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"METAFILEPICT","package":"druntime","parentType":"","signature":"METAFILEPICT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#METAFILEPICT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPMETAFILEPICT","package":"druntime","parentType":"","signature":"LPMETAFILEPICT = METAFILEPICT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPMETAFILEPICT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LOCALESIGNATURE","package":"druntime","parentType":"","signature":"LOCALESIGNATURE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LOCALESIGNATURE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOCALESIGNATURE","package":"druntime","parentType":"","signature":"PLOCALESIGNATURE = LOCALESIGNATURE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOCALESIGNATURE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LCSTYPE","package":"druntime","parentType":"","signature":"LCSTYPE = LONG","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LCSTYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"NEWTEXTMETRICA","package":"druntime","parentType":"","signature":"NEWTEXTMETRICA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#NEWTEXTMETRICA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PNEWTEXTMETRICA","package":"druntime","parentType":"","signature":"PNEWTEXTMETRICA = NEWTEXTMETRICA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PNEWTEXTMETRICA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"NEWTEXTMETRICW","package":"druntime","parentType":"","signature":"NEWTEXTMETRICW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#NEWTEXTMETRICW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PNEWTEXTMETRICW","package":"druntime","parentType":"","signature":"PNEWTEXTMETRICW = NEWTEXTMETRICW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PNEWTEXTMETRICW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"NEWTEXTMETRICEXA","package":"druntime","parentType":"","signature":"NEWTEXTMETRICEXA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#NEWTEXTMETRICEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"NEWTEXTMETRICEXW","package":"druntime","parentType":"","signature":"NEWTEXTMETRICEXW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#NEWTEXTMETRICEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"PELARRAY","package":"druntime","parentType":"","signature":"PELARRAY","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PELARRAY"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPELARRAY","package":"druntime","parentType":"","signature":"PPELARRAY = PELARRAY *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPELARRAY"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENUMLOGFONTA","package":"druntime","parentType":"","signature":"ENUMLOGFONTA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENUMLOGFONTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONTA","package":"druntime","parentType":"","signature":"LPENUMLOGFONTA = ENUMLOGFONTA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONTA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENUMLOGFONTW","package":"druntime","parentType":"","signature":"ENUMLOGFONTW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENUMLOGFONTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONTW","package":"druntime","parentType":"","signature":"LPENUMLOGFONTW = ENUMLOGFONTW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENUMLOGFONTEXA","package":"druntime","parentType":"","signature":"ENUMLOGFONTEXA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENUMLOGFONTEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONTEXA","package":"druntime","parentType":"","signature":"LPENUMLOGFONTEXA = ENUMLOGFONTEXA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONTEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"ENUMLOGFONTEXW","package":"druntime","parentType":"","signature":"ENUMLOGFONTEXW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENUMLOGFONTEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONTEXW","package":"druntime","parentType":"","signature":"LPENUMLOGFONTEXW = ENUMLOGFONTEXW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONTEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"POINTFX","package":"druntime","parentType":"","signature":"POINTFX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POINTFX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPPOINTFX","package":"druntime","parentType":"","signature":"LPPOINTFX = POINTFX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPPOINTFX"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"TTPOLYCURVE","package":"druntime","parentType":"","signature":"TTPOLYCURVE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TTPOLYCURVE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPTTPOLYCURVE","package":"druntime","parentType":"","signature":"LPTTPOLYCURVE = TTPOLYCURVE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPTTPOLYCURVE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"TTPOLYGONHEADER","package":"druntime","parentType":"","signature":"TTPOLYGONHEADER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TTPOLYGONHEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPTTPOLYGONHEADER","package":"druntime","parentType":"","signature":"LPTTPOLYGONHEADER = TTPOLYGONHEADER *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPTTPOLYGONHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"POINTFLOAT","package":"druntime","parentType":"","signature":"POINTFLOAT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POINTFLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPOINTFLOAT","package":"druntime","parentType":"","signature":"PPOINTFLOAT = POINTFLOAT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPOINTFLOAT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GLYPHMETRICSFLOAT","package":"druntime","parentType":"","signature":"GLYPHMETRICSFLOAT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GLYPHMETRICSFLOAT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PGLYPHMETRICSFLOAT","package":"druntime","parentType":"","signature":"PGLYPHMETRICSFLOAT = GLYPHMETRICSFLOAT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PGLYPHMETRICSFLOAT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"LAYERPLANEDESCRIPTOR","package":"druntime","parentType":"","signature":"LAYERPLANEDESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LAYERPLANEDESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLAYERPLANEDESCRIPTOR","package":"druntime","parentType":"","signature":"PLAYERPLANEDESCRIPTOR = LAYERPLANEDESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLAYERPLANEDESCRIPTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"BLENDFUNCTION","package":"druntime","parentType":"","signature":"BLENDFUNCTION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BLENDFUNCTION"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PBLENDFUNCTION","package":"druntime","parentType":"","signature":"PBLENDFUNCTION = BLENDFUNCTION *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PBLENDFUNCTION"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DESIGNVECTOR","package":"druntime","parentType":"","signature":"DESIGNVECTOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DESIGNVECTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDESIGNVECTOR","package":"druntime","parentType":"","signature":"PDESIGNVECTOR = DESIGNVECTOR *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDESIGNVECTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GRADIENT_TRIANGLE","package":"druntime","parentType":"","signature":"GRADIENT_TRIANGLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GRADIENT_TRIANGLE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PGRADIENT_TRIANGLE","package":"druntime","parentType":"","signature":"PGRADIENT_TRIANGLE = GRADIENT_TRIANGLE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PGRADIENT_TRIANGLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"GRADIENT_RECT","package":"druntime","parentType":"","signature":"GRADIENT_RECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GRADIENT_RECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PGRADIENT_RECT","package":"druntime","parentType":"","signature":"PGRADIENT_RECT = GRADIENT_RECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PGRADIENT_RECT"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DISPLAY_DEVICEA","package":"druntime","parentType":"","signature":"DISPLAY_DEVICEA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DISPLAY_DEVICEA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDISPLAY_DEVICEA","package":"druntime","parentType":"","signature":"PDISPLAY_DEVICEA = DISPLAY_DEVICEA *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDISPLAY_DEVICEA"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DISPLAY_DEVICEW","package":"druntime","parentType":"","signature":"DISPLAY_DEVICEW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DISPLAY_DEVICEW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDISPLAY_DEVICEW","package":"druntime","parentType":"","signature":"PDISPLAY_DEVICEW = DISPLAY_DEVICEW *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDISPLAY_DEVICEW"},{"doc":"","kind":"struct","module":"core.sys.windows.wingdi","name":"DRAWPATRECT","package":"druntime","parentType":"","signature":"DRAWPATRECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DRAWPATRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDRAWPATRECT","package":"druntime","parentType":"","signature":"PDRAWPATRECT = DRAWPATRECT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDRAWPATRECT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"ABORTPROC","package":"druntime","parentType":"","signature":"ABORTPROC = BOOL function (HDC,  int)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ABORTPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"MFENUMPROC","package":"druntime","parentType":"","signature":"MFENUMPROC = int  function (HDC,  HANDLETABLE *,  METARECORD *,  int,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#MFENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"ENHMFENUMPROC","package":"druntime","parentType":"","signature":"ENHMFENUMPROC = int  function (HDC,  HANDLETABLE *,  const(ENHMETARECORD) *,  int,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENHMFENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"FONTENUMPROCA","package":"druntime","parentType":"","signature":"FONTENUMPROCA = int  function (const(LOGFONTA) *,  const(TEXTMETRICA) *,  DWORD,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FONTENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"FONTENUMPROCW","package":"druntime","parentType":"","signature":"FONTENUMPROCW = int  function (const(LOGFONTW) *,  const(TEXTMETRICW) *,  DWORD,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FONTENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"ICMENUMPROCA","package":"druntime","parentType":"","signature":"ICMENUMPROCA = int  function (LPSTR,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ICMENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"ICMENUMPROCW","package":"druntime","parentType":"","signature":"ICMENUMPROCW = int  function (LPWSTR,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ICMENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"GOBJENUMPROC","package":"druntime","parentType":"","signature":"GOBJENUMPROC = void  function (LPVOID,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GOBJENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LINEDDAPROC","package":"druntime","parentType":"","signature":"LINEDDAPROC = void  function (int,  int,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LINEDDAPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPFNDEVMODE","package":"druntime","parentType":"","signature":"LPFNDEVMODE = UINT function (HWND,  HMODULE,  LPDEVMODEA,  LPSTR,  LPSTR,  LPDEVMODEA,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPFNDEVMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPFNDEVCAPS","package":"druntime","parentType":"","signature":"LPFNDEVCAPS = DWORD function (LPSTR,  LPSTR,  UINT,  LPSTR,  LPDEVMODEA)","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPFNDEVCAPS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPDOCINFO","package":"druntime","parentType":"","signature":"LPDOCINFO = DOCINFO *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPDOCINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PLOGFONT","package":"druntime","parentType":"","signature":"PLOGFONT = LOGFONT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PLOGFONT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PTEXTMETRIC","package":"druntime","parentType":"","signature":"PTEXTMETRIC = TEXTMETRIC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PTEXTMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDEVMODE","package":"druntime","parentType":"","signature":"PDEVMODE = DEVMODE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDEVMODE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PEXTLOGFONT","package":"druntime","parentType":"","signature":"PEXTLOGFONT = EXTLOGFONT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PEXTLOGFONT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPGCP_RESULTS","package":"druntime","parentType":"","signature":"LPGCP_RESULTS = GCP_RESULTS *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPGCP_RESULTS"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"POUTLINETEXTMETRIC","package":"druntime","parentType":"","signature":"POUTLINETEXTMETRIC = OUTLINETEXTMETRIC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POUTLINETEXTMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PPOLYTEXT","package":"druntime","parentType":"","signature":"PPOLYTEXT = POLYTEXT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PPOLYTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPLOGCOLORSPACE","package":"druntime","parentType":"","signature":"LPLOGCOLORSPACE = LOGCOLORSPACE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPLOGCOLORSPACE"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PNEWTEXTMETRIC","package":"druntime","parentType":"","signature":"PNEWTEXTMETRIC = NEWTEXTMETRIC *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PNEWTEXTMETRIC"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONT","package":"druntime","parentType":"","signature":"LPENUMLOGFONT = ENUMLOGFONT *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONT"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"LPENUMLOGFONTEX","package":"druntime","parentType":"","signature":"LPENUMLOGFONTEX = ENUMLOGFONTEX *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPENUMLOGFONTEX"},{"doc":"","kind":"alias","module":"core.sys.windows.wingdi","name":"PDISPLAY_DEVICE","package":"druntime","parentType":"","signature":"PDISPLAY_DEVICE = DISPLAY_DEVICE *","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PDISPLAY_DEVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CA_NEGATIVE","package":"druntime","parentType":"","signature":"WORD CA_NEGATIVE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CA_NEGATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"EMR_MIN","package":"druntime","parentType":"","signature":"EMR_MIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#EMR_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PFD_MAIN_PLANE","package":"druntime","parentType":"","signature":"byte PFD_MAIN_PLANE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PFD_MAIN_PLANE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PFD_DOUBLEBUFFER","package":"druntime","parentType":"","signature":"DWORD PFD_DOUBLEBUFFER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PFD_DOUBLEBUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"BLACKNESS","package":"druntime","parentType":"","signature":"DWORD BLACKNESS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#BLACKNESS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"R2_LAST","package":"druntime","parentType":"","signature":"R2_LAST","url":"/ddoc/druntime/core/sys/windows/wingdi.html#R2_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CM_IN_GAMUT","package":"druntime","parentType":"","signature":"ubyte CM_IN_GAMUT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CM_IN_GAMUT"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ICM_ADDPROFILE","package":"druntime","parentType":"","signature":"int ICM_ADDPROFILE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ICM_ADDPROFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RGN_MIN","package":"druntime","parentType":"","signature":"RGN_MIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGN_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RGN_MAX","package":"druntime","parentType":"","signature":"RGN_MAX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RGN_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ERROR","package":"druntime","parentType":"","signature":"ERROR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CBM_INIT","package":"druntime","parentType":"","signature":"DWORD CBM_INIT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CBM_INIT"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LF_FACESIZE","package":"druntime","parentType":"","signature":"LF_FACESIZE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LF_FACESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LF_FULLFACESIZE","package":"druntime","parentType":"","signature":"LF_FULLFACESIZE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LF_FULLFACESIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ELF_VENDOR_SIZE","package":"druntime","parentType":"","signature":"ELF_VENDOR_SIZE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ELF_VENDOR_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ELF_VERSION","package":"druntime","parentType":"","signature":"ELF_VERSION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ELF_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ELF_CULTURE_LATIN","package":"druntime","parentType":"","signature":"ELF_CULTURE_LATIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ELF_CULTURE_LATIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FW_DONTCARE","package":"druntime","parentType":"","signature":"LONG FW_DONTCARE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FW_DONTCARE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DEFAULT_PITCH","package":"druntime","parentType":"","signature":"BYTE DEFAULT_PITCH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DEFAULT_PITCH"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PANOSE_COUNT","package":"druntime","parentType":"","signature":"PANOSE_COUNT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PANOSE_COUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PAN_CULTURE_LATIN","package":"druntime","parentType":"","signature":"PAN_CULTURE_LATIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PAN_CULTURE_LATIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_LATIN1","package":"druntime","parentType":"","signature":"FS_LATIN1","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_LATIN1"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_LATIN2","package":"druntime","parentType":"","signature":"FS_LATIN2","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_LATIN2"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_CYRILLIC","package":"druntime","parentType":"","signature":"FS_CYRILLIC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_CYRILLIC"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_GREEK","package":"druntime","parentType":"","signature":"FS_GREEK","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_GREEK"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_TURKISH","package":"druntime","parentType":"","signature":"FS_TURKISH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_TURKISH"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_HEBREW","package":"druntime","parentType":"","signature":"FS_HEBREW","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_HEBREW"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_ARABIC","package":"druntime","parentType":"","signature":"FS_ARABIC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_ARABIC"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_BALTIC","package":"druntime","parentType":"","signature":"FS_BALTIC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_BALTIC"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_VIETNAMESE","package":"druntime","parentType":"","signature":"FS_VIETNAMESE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_VIETNAMESE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_THAI","package":"druntime","parentType":"","signature":"FS_THAI","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_THAI"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_JISJAPAN","package":"druntime","parentType":"","signature":"FS_JISJAPAN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_JISJAPAN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_CHINESESIMP","package":"druntime","parentType":"","signature":"FS_CHINESESIMP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_CHINESESIMP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_WANSUNG","package":"druntime","parentType":"","signature":"FS_WANSUNG","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_WANSUNG"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_CHINESETRAD","package":"druntime","parentType":"","signature":"FS_CHINESETRAD","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_CHINESETRAD"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_JOHAB","package":"druntime","parentType":"","signature":"FS_JOHAB","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_JOHAB"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FS_SYMBOL","package":"druntime","parentType":"","signature":"FS_SYMBOL","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FS_SYMBOL"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"POLYFILL_LAST","package":"druntime","parentType":"","signature":"int POLYFILL_LAST","url":"/ddoc/druntime/core/sys/windows/wingdi.html#POLYFILL_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DCTT_BITMAP","package":"druntime","parentType":"","signature":"DWORD DCTT_BITMAP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DCTT_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FLOODFILLBORDER","package":"druntime","parentType":"","signature":"FLOODFILLBORDER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FLOODFILLBORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FLOODFILLSURFACE","package":"druntime","parentType":"","signature":"FLOODFILLSURFACE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FLOODFILLSURFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ETO_OPAQUE","package":"druntime","parentType":"","signature":"UINT ETO_OPAQUE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ETO_OPAQUE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RDH_RECTANGLES","package":"druntime","parentType":"","signature":"RDH_RECTANGLES","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RDH_RECTANGLES"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DCB_RESET","package":"druntime","parentType":"","signature":"UINT DCB_RESET","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DCB_RESET"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RC_NONE","package":"druntime","parentType":"","signature":"int RC_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CC_NONE","package":"druntime","parentType":"","signature":"int CC_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LC_NONE","package":"druntime","parentType":"","signature":"int LC_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PC_NONE","package":"druntime","parentType":"","signature":"int PC_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PC_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CP_NONE","package":"druntime","parentType":"","signature":"int CP_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CP_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"TC_OP_CHARACTER","package":"druntime","parentType":"","signature":"int TC_OP_CHARACTER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TC_OP_CHARACTER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"GCP_DBCS","package":"druntime","parentType":"","signature":"DWORD GCP_DBCS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GCP_DBCS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"GM_LAST","package":"druntime","parentType":"","signature":"GM_LAST","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GM_LAST"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"MM_MIN","package":"druntime","parentType":"","signature":"int MM_MIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#MM_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ABSOLUTE","package":"druntime","parentType":"","signature":"ABSOLUTE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ABSOLUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RELATIVE","package":"druntime","parentType":"","signature":"RELATIVE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RELATIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CLR_NONE","package":"druntime","parentType":"","signature":"COLORREF CLR_NONE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CLR_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"TT_AVAILABLE","package":"druntime","parentType":"","signature":"short TT_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TT_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"TA_TOP","package":"druntime","parentType":"","signature":"UINT TA_TOP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TA_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"MWT_MIN","package":"druntime","parentType":"","signature":"DWORD MWT_MIN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#MWT_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PSPROTOCOL_ASCII","package":"druntime","parentType":"","signature":"PSPROTOCOL_ASCII","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSPROTOCOL_ASCII"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PSPROTOCOL_BCP","package":"druntime","parentType":"","signature":"PSPROTOCOL_BCP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSPROTOCOL_BCP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PSPROTOCOL_TBCP","package":"druntime","parentType":"","signature":"PSPROTOCOL_TBCP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSPROTOCOL_TBCP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PSPROTOCOL_BINARY","package":"druntime","parentType":"","signature":"PSPROTOCOL_BINARY","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PSPROTOCOL_BINARY"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"PR_JOBSTATUS","package":"druntime","parentType":"","signature":"WPARAM PR_JOBSTATUS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#PR_JOBSTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"QDI_SETDIBITS","package":"druntime","parentType":"","signature":"QDI_SETDIBITS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#QDI_SETDIBITS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"QDI_GETDIBITS","package":"druntime","parentType":"","signature":"QDI_GETDIBITS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#QDI_GETDIBITS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"QDI_DIBTOSCREEN","package":"druntime","parentType":"","signature":"QDI_DIBTOSCREEN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#QDI_DIBTOSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"QDI_STRETCHDIB","package":"druntime","parentType":"","signature":"QDI_STRETCHDIB","url":"/ddoc/druntime/core/sys/windows/wingdi.html#QDI_STRETCHDIB"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ASPECT_FILTERING","package":"druntime","parentType":"","signature":"ASPECT_FILTERING","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ASPECT_FILTERING"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"RASTER_FONTTYPE","package":"druntime","parentType":"","signature":"DWORD RASTER_FONTTYPE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#RASTER_FONTTYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CCHDEVICENAME","package":"druntime","parentType":"","signature":"CCHDEVICENAME","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CCHDEVICENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CCHFORMNAME","package":"druntime","parentType":"","signature":"CCHFORMNAME","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CCHFORMNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DM_SPECVERSION","package":"druntime","parentType":"","signature":"WORD DM_SPECVERSION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DM_SPECVERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DMPAPER_FIRST","package":"druntime","parentType":"","signature":"short DMPAPER_FIRST","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DMPAPER_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DMPAPER_USER","package":"druntime","parentType":"","signature":"short DMPAPER_USER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DMPAPER_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DM_GRAYSCALE","package":"druntime","parentType":"","signature":"DWORD DM_GRAYSCALE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DM_GRAYSCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DMDISPLAYFLAGS_TEXTMODE","package":"druntime","parentType":"","signature":"DWORD DMDISPLAYFLAGS_TEXTMODE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DMDISPLAYFLAGS_TEXTMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DMNUP_SYSTEM","package":"druntime","parentType":"","signature":"DWORD DMNUP_SYSTEM","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DMNUP_SYSTEM"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DM_ORIENTATION","package":"druntime","parentType":"","signature":"DWORD DM_ORIENTATION","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DM_ORIENTATION"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DM_COPIES","package":"druntime","parentType":"","signature":"DWORD DM_COPIES","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DM_COPIES"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DM_UPDATE","package":"druntime","parentType":"","signature":"DWORD DM_UPDATE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DM_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"GDI_ERROR","package":"druntime","parentType":"","signature":"GDI_ERROR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#GDI_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"HGDI_ERROR","package":"druntime","parentType":"","signature":"HGDI_ERROR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#HGDI_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"TMPF_FIXED_PITCH","package":"druntime","parentType":"","signature":"BYTE TMPF_FIXED_PITCH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TMPF_FIXED_PITCH"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"NTM_ITALIC","package":"druntime","parentType":"","signature":"DWORD NTM_ITALIC","url":"/ddoc/druntime/core/sys/windows/wingdi.html#NTM_ITALIC"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"TT_POLYGON_TYPE","package":"druntime","parentType":"","signature":"DWORD TT_POLYGON_TYPE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#TT_POLYGON_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"FONTMAPPER_MAX","package":"druntime","parentType":"","signature":"FONTMAPPER_MAX","url":"/ddoc/druntime/core/sys/windows/wingdi.html#FONTMAPPER_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"ENHMETA_STOCK_OBJECT","package":"druntime","parentType":"","signature":"ENHMETA_STOCK_OBJECT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#ENHMETA_STOCK_OBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"WGL_FONT_LINES","package":"druntime","parentType":"","signature":"WGL_FONT_LINES","url":"/ddoc/druntime/core/sys/windows/wingdi.html#WGL_FONT_LINES"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"WGL_FONT_POLYGONS","package":"druntime","parentType":"","signature":"WGL_FONT_POLYGONS","url":"/ddoc/druntime/core/sys/windows/wingdi.html#WGL_FONT_POLYGONS"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LPD_DOUBLEBUFFER","package":"druntime","parentType":"","signature":"DWORD LPD_DOUBLEBUFFER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LPD_DOUBLEBUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"WGL_SWAP_MAIN_PLANE","package":"druntime","parentType":"","signature":"UINT WGL_SWAP_MAIN_PLANE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#WGL_SWAP_MAIN_PLANE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_SRC_OVER","package":"druntime","parentType":"","signature":"AC_SRC_OVER","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_SRC_OVER"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_SRC_ALPHA","package":"druntime","parentType":"","signature":"AC_SRC_ALPHA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_SRC_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_SRC_NO_PREMULT_ALPHA","package":"druntime","parentType":"","signature":"AC_SRC_NO_PREMULT_ALPHA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_SRC_NO_PREMULT_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_SRC_NO_ALPHA","package":"druntime","parentType":"","signature":"AC_SRC_NO_ALPHA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_SRC_NO_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_DST_NO_PREMULT_ALPHA","package":"druntime","parentType":"","signature":"AC_DST_NO_PREMULT_ALPHA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_DST_NO_PREMULT_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"AC_DST_NO_ALPHA","package":"druntime","parentType":"","signature":"AC_DST_NO_ALPHA","url":"/ddoc/druntime/core/sys/windows/wingdi.html#AC_DST_NO_ALPHA"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LAYOUT_RTL","package":"druntime","parentType":"","signature":"LAYOUT_RTL","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LAYOUT_RTL"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LAYOUT_BTT","package":"druntime","parentType":"","signature":"LAYOUT_BTT","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LAYOUT_BTT"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LAYOUT_VBH","package":"druntime","parentType":"","signature":"LAYOUT_VBH","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LAYOUT_VBH"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"LAYOUT_BITMAPORIENTATIONPRESERVED","package":"druntime","parentType":"","signature":"LAYOUT_BITMAPORIENTATIONPRESERVED","url":"/ddoc/druntime/core/sys/windows/wingdi.html#LAYOUT_BITMAPORIENTATIONPRESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CS_ENABLE","package":"druntime","parentType":"","signature":"CS_ENABLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CS_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CS_DISABLE","package":"druntime","parentType":"","signature":"CS_DISABLE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CS_DISABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"CS_DELETE_TRANSFORM","package":"druntime","parentType":"","signature":"CS_DELETE_TRANSFORM","url":"/ddoc/druntime/core/sys/windows/wingdi.html#CS_DELETE_TRANSFORM"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","package":"druntime","parentType":"","signature":"DWORD DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DISPLAY_DEVICE_ATTACHED_TO_DESKTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"DISPLAY_DEVICE_ACTIVE","package":"druntime","parentType":"","signature":"DWORD DISPLAY_DEVICE_ACTIVE","url":"/ddoc/druntime/core/sys/windows/wingdi.html#DISPLAY_DEVICE_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"SYSRGN","package":"druntime","parentType":"","signature":"SYSRGN","url":"/ddoc/druntime/core/sys/windows/wingdi.html#SYSRGN"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"MM_MAX_NUMAXES","package":"druntime","parentType":"","signature":"MM_MAX_NUMAXES","url":"/ddoc/druntime/core/sys/windows/wingdi.html#MM_MAX_NUMAXES"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"STAMP_DESIGNVECTOR","package":"druntime","parentType":"","signature":"STAMP_DESIGNVECTOR","url":"/ddoc/druntime/core/sys/windows/wingdi.html#STAMP_DESIGNVECTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.wingdi","name":"STAMP_AXESLIST","package":"druntime","parentType":"","signature":"STAMP_AXESLIST","url":"/ddoc/druntime/core/sys/windows/wingdi.html#STAMP_AXESLIST"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winhttp","name":"core.sys.windows.winhttp","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winhttp.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpAddRequestHeaders","package":"druntime","parentType":"","signature":"BOOL WinHttpAddRequestHeaders(HINTERNET hRequest,  LPCWSTR pwszHeaders,  DWORD dwHeadersLength,  DWORD dwModifiers)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpAddRequestHeaders.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpCheckPlatform","package":"druntime","parentType":"","signature":"BOOL WinHttpCheckPlatform()","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpCheckPlatform.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpCloseHandle","package":"druntime","parentType":"","signature":"BOOL WinHttpCloseHandle(HINTERNET hInternet)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpCloseHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpConnect","package":"druntime","parentType":"","signature":"HINTERNET WinHttpConnect(HINTERNET hSession,  LPCWSTR pswzServerName,  INTERNET_PORT nServerPort,  DWORD dwReserved)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpCrackUrl","package":"druntime","parentType":"","signature":"BOOL WinHttpCrackUrl(LPCWSTR pwszUrl,  DWORD dwUrlLength,  DWORD dwFlags,  LPURL_COMPONENTS lpUrlComponents)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpCrackUrl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpCreateUrl","package":"druntime","parentType":"","signature":"BOOL WinHttpCreateUrl(LPURL_COMPONENTS lpUrlComponents,  DWORD dwFlags,  LPWSTR pwszUrl,  LPDWORD lpdwUrlLength)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpCreateUrl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpDetectAutoProxyConfigUrl","package":"druntime","parentType":"","signature":"BOOL WinHttpDetectAutoProxyConfigUrl(DWORD dwAutoDetectFlags,  LPWSTR * ppwszAutoConfigUrl)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpDetectAutoProxyConfigUrl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpGetDefaultProxyConfiguration","package":"druntime","parentType":"","signature":"BOOL WinHttpGetDefaultProxyConfiguration(WINHTTP_PROXY_INFO * pProxyInfo)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpGetDefaultProxyConfiguration.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpGetIEProxyConfigForCurrentUser","package":"druntime","parentType":"","signature":"BOOL WinHttpGetIEProxyConfigForCurrentUser(WINHTTP_CURRENT_USER_IE_PROXY_CONFIG * pProxyConfig)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpGetIEProxyConfigForCurrentUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpGetProxyForUrl","package":"druntime","parentType":"","signature":"BOOL WinHttpGetProxyForUrl(HINTERNET hSession,   LPCWSTR lpcwszUrl,\n                                WINHTTP_AUTOPROXY_OPTIONS * pAutoProxyOptions,  WINHTTP_PROXY_INFO * pProxyInfo)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpGetProxyForUrl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpOpen","package":"druntime","parentType":"","signature":"HINTERNET WinHttpOpen(LPCWSTR pwszUserAgent,  DWORD dwAccessType,  LPCWSTR pwszProxyName,\n                           LPCWSTR pwszProxyBypass,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpOpenRequest","package":"druntime","parentType":"","signature":"HINTERNET WinHttpOpenRequest(HINTERNET hConnect,  LPCWSTR pwszVerb,  LPCWSTR pwszObjectName,\n                                  LPCWSTR pwszVersion,  LPCWSTR pwszReferrer,\n                                  LPCWSTR * ppwszAcceptTypes,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpOpenRequest.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpQueryAuthSchemes","package":"druntime","parentType":"","signature":"BOOL WinHttpQueryAuthSchemes(HINTERNET hRequest,  LPDWORD lpdwSupportedSchemes,\n                                  LPDWORD lpdwFirstScheme,  LPDWORD pdwAuthTarget)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpQueryAuthSchemes.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpQueryDataAvailable","package":"druntime","parentType":"","signature":"BOOL WinHttpQueryDataAvailable(HINTERNET hRequest,  LPDWORD lpdwNumberOfBytesAvailable)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpQueryDataAvailable.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpQueryHeaders","package":"druntime","parentType":"","signature":"BOOL WinHttpQueryHeaders(HINTERNET hRequest,  DWORD dwInfoLevel,  LPCWSTR pwszName,\n                              LPVOID lpBuffer,  LPDWORD lpdwBufferLength,  LPDWORD lpdwIndex)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpQueryHeaders.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpQueryOption","package":"druntime","parentType":"","signature":"BOOL WinHttpQueryOption(HINTERNET hInternet,  DWORD dwOption,  LPVOID lpBuffer,\n                             LPDWORD lpdwBufferLength)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpQueryOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpReadData","package":"druntime","parentType":"","signature":"BOOL WinHttpReadData(HINTERNET hRequest,  LPVOID lpBuffer,  DWORD dwNumberOfBytesToRead,\n                          LPDWORD lpdwNumberOfBytesRead)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpReadData.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpReceiveResponse","package":"druntime","parentType":"","signature":"BOOL WinHttpReceiveResponse(HINTERNET hRequest,  LPVOID lpReserved)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpReceiveResponse.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSendRequest","package":"druntime","parentType":"","signature":"BOOL WinHttpSendRequest(HINTERNET hRequest,  LPCWSTR pwszHeaders,  DWORD dwHeadersLength,\n                             LPVOID lpOptional,  DWORD dwOptionalLength,  DWORD dwTotalLength,  DWORD_PTR dwContext)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSendRequest.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSetCredentials","package":"druntime","parentType":"","signature":"BOOL WinHttpSetCredentials(HINTERNET hRequest,  DWORD AuthTargets,  DWORD AuthScheme,\n                                LPCWSTR pwszUserName,  LPCWSTR pwszPassword,  LPVOID pAuthParams)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSetCredentials.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSetDefaultProxyConfiguration","package":"druntime","parentType":"","signature":"BOOL WinHttpSetDefaultProxyConfiguration(WINHTTP_PROXY_INFO * pProxyInfo)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSetDefaultProxyConfiguration.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSetOption","package":"druntime","parentType":"","signature":"BOOL WinHttpSetOption(HINTERNET hInternet,  DWORD dwOption,  LPVOID lpBuffer,  DWORD dwBufferLength)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSetOption.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSetStatusCallback","package":"druntime","parentType":"","signature":"WINHTTP_STATUS_CALLBACK WinHttpSetStatusCallback(HINTERNET hInternet,\n                                                      WINHTTP_STATUS_CALLBACK lpfnInternetCallback,\n                                                      DWORD dwNotificationFlags,  DWORD_PTR dwReserved)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSetStatusCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpSetTimeouts","package":"druntime","parentType":"","signature":"BOOL WinHttpSetTimeouts(HINTERNET hInternet,  int  dwResolveTimeout,  int  dwConnectTimeout,\n                             int  dwSendTimeout,  int  dwReceiveTimeout)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpSetTimeouts.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpTimeFromSystemTime","package":"druntime","parentType":"","signature":"BOOL WinHttpTimeFromSystemTime(const  SYSTEMTIME * pst,  LPWSTR pwszTime)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpTimeFromSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpTimeToSystemTime","package":"druntime","parentType":"","signature":"BOOL WinHttpTimeToSystemTime(LPCWSTR pwszTime,  SYSTEMTIME * pst)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpTimeToSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winhttp","name":"WinHttpWriteData","package":"druntime","parentType":"","signature":"BOOL WinHttpWriteData(HINTERNET hRequest,  LPCVOID lpBuffer,  DWORD dwNumberOfBytesToWrite,\n                           LPDWORD lpdwNumberOfBytesWritten)","url":"/ddoc/druntime/core/sys/windows/winhttp/WinHttpWriteData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"HINTERNET","package":"druntime","parentType":"","signature":"HINTERNET = void *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#HINTERNET"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPHINTERNET","package":"druntime","parentType":"","signature":"LPHINTERNET = HINTERNET *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPHINTERNET"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"INTERNET_PORT","package":"druntime","parentType":"","signature":"INTERNET_PORT = WORD","url":"/ddoc/druntime/core/sys/windows/winhttp.html#INTERNET_PORT"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPINTERNET_PORT","package":"druntime","parentType":"","signature":"LPINTERNET_PORT = INTERNET_PORT *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPINTERNET_PORT"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"INTERNET_SCHEME","package":"druntime","parentType":"","signature":"INTERNET_SCHEME = int","url":"/ddoc/druntime/core/sys/windows/winhttp.html#INTERNET_SCHEME"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPINTERNET_SCHEME","package":"druntime","parentType":"","signature":"LPINTERNET_SCHEME = INTERNET_SCHEME *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPINTERNET_SCHEME"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_ASYNC_RESULT","package":"druntime","parentType":"","signature":"WINHTTP_ASYNC_RESULT","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_ASYNC_RESULT"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPWINHTTP_ASYNC_RESULT","package":"druntime","parentType":"","signature":"LPWINHTTP_ASYNC_RESULT = WINHTTP_ASYNC_RESULT *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPWINHTTP_ASYNC_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"HTTP_VERSION_INFO","package":"druntime","parentType":"","signature":"HTTP_VERSION_INFO","url":"/ddoc/druntime/core/sys/windows/winhttp.html#HTTP_VERSION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPHTTP_VERSION_INFO","package":"druntime","parentType":"","signature":"LPHTTP_VERSION_INFO = HTTP_VERSION_INFO *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPHTTP_VERSION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"URL_COMPONENTS","package":"druntime","parentType":"","signature":"URL_COMPONENTS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#URL_COMPONENTS"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPURL_COMPONENTS","package":"druntime","parentType":"","signature":"LPURL_COMPONENTS = URL_COMPONENTS *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPURL_COMPONENTS"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"URL_COMPONENTSW","package":"druntime","parentType":"","signature":"URL_COMPONENTSW = URL_COMPONENTS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#URL_COMPONENTSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPURL_COMPONENTSW","package":"druntime","parentType":"","signature":"LPURL_COMPONENTSW = URL_COMPONENTS *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPURL_COMPONENTSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_PROXY_INFO","package":"druntime","parentType":"","signature":"WINHTTP_PROXY_INFO","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_PROXY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPWINHTTP_PROXY_INFO","package":"druntime","parentType":"","signature":"LPWINHTTP_PROXY_INFO = WINHTTP_PROXY_INFO *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPWINHTTP_PROXY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"WINHTTP_PROXY_INFOW","package":"druntime","parentType":"","signature":"WINHTTP_PROXY_INFOW = WINHTTP_PROXY_INFO","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_PROXY_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPWINHTTP_PROXY_INFOW","package":"druntime","parentType":"","signature":"LPWINHTTP_PROXY_INFOW = WINHTTP_PROXY_INFO *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPWINHTTP_PROXY_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_AUTOPROXY_OPTIONS","package":"druntime","parentType":"","signature":"WINHTTP_AUTOPROXY_OPTIONS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_AUTOPROXY_OPTIONS"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_CERTIFICATE_INFO","package":"druntime","parentType":"","signature":"WINHTTP_CERTIFICATE_INFO","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CERTIFICATE_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_CONNECTION_INFO","package":"druntime","parentType":"","signature":"WINHTTP_CONNECTION_INFO","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CONNECTION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_CREDS","package":"druntime","parentType":"","signature":"WINHTTP_CREDS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CREDS"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"PWINHTTP_CREDS","package":"druntime","parentType":"","signature":"PWINHTTP_CREDS = WINHTTP_CREDS *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#PWINHTTP_CREDS"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_CREDS_EX","package":"druntime","parentType":"","signature":"WINHTTP_CREDS_EX","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CREDS_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"PWINHTTP_CREDS_EX","package":"druntime","parentType":"","signature":"PWINHTTP_CREDS_EX = WINHTTP_CREDS_EX *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#PWINHTTP_CREDS_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"fnWINHTTP_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"fnWINHTTP_STATUS_CALLBACK = int","url":"/ddoc/druntime/core/sys/windows/winhttp.html#fnWINHTTP_STATUS_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"WINHTTP_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"WINHTTP_STATUS_CALLBACK = fnWINHTTP_STATUS_CALLBACK *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_STATUS_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.winhttp","name":"LPWINHTTP_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"LPWINHTTP_STATUS_CALLBACK = WINHTTP_STATUS_CALLBACK *","url":"/ddoc/druntime/core/sys/windows/winhttp.html#LPWINHTTP_STATUS_CALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.winhttp","name":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","package":"druntime","parentType":"","signature":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CURRENT_USER_IE_PROXY_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_FLAG_ASYNC","package":"druntime","parentType":"","signature":"DWORD WINHTTP_FLAG_ASYNC","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_FLAG_ASYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_TIME_FORMAT_BUFSIZE","package":"druntime","parentType":"","signature":"DWORD WINHTTP_TIME_FORMAT_BUFSIZE","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_TIME_FORMAT_BUFSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_PROXY_NAME","package":"druntime","parentType":"","signature":"LPCWSTR WINHTTP_NO_PROXY_NAME","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_PROXY_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_PROXY_BYPASS","package":"druntime","parentType":"","signature":"LPCWSTR WINHTTP_NO_PROXY_BYPASS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_PROXY_BYPASS"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_CLIENT_CERT_CONTEXT","package":"druntime","parentType":"","signature":"LPVOID WINHTTP_NO_CLIENT_CERT_CONTEXT","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_CLIENT_CERT_CONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","package":"druntime","parentType":"","signature":"DWORD WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","package":"druntime","parentType":"","signature":"DWORD WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_INVALID_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"WINHTTP_INVALID_STATUS_CALLBACK","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_INVALID_STATUS_CALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_REFERER","package":"druntime","parentType":"","signature":"LPCWSTR WINHTTP_NO_REFERER","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_REFERER"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_DEFAULT_ACCEPT_TYPES","package":"druntime","parentType":"","signature":"LPCWSTR * WINHTTP_DEFAULT_ACCEPT_TYPES","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_DEFAULT_ACCEPT_TYPES"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_ADDITIONAL_HEADERS","package":"druntime","parentType":"","signature":"LPCWSTR WINHTTP_NO_ADDITIONAL_HEADERS","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_ADDITIONAL_HEADERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_REQUEST_DATA","package":"druntime","parentType":"","signature":"LPVOID WINHTTP_NO_REQUEST_DATA","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_REQUEST_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_HEADER_NAME_BY_INDEX","package":"druntime","parentType":"","signature":"LPCWSTR WINHTTP_HEADER_NAME_BY_INDEX","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_HEADER_NAME_BY_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_OUTPUT_BUFFER","package":"druntime","parentType":"","signature":"LPVOID WINHTTP_NO_OUTPUT_BUFFER","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_OUTPUT_BUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.winhttp","name":"WINHTTP_NO_HEADER_INDEX","package":"druntime","parentType":"","signature":"LPDWORD WINHTTP_NO_HEADER_INDEX","url":"/ddoc/druntime/core/sys/windows/winhttp.html#WINHTTP_NO_HEADER_INDEX"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wininet","name":"core.sys.windows.wininet","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wininet.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_FILE","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_FILE(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_FILE.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_DIRECTORY","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_DIRECTORY(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_DIRECTORY.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_PHONE_SERVER","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_PHONE_SERVER(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_PHONE_SERVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_ERROR","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_ERROR(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_ERROR.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_INDEX_SERVER","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_INDEX_SERVER(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_INDEX_SERVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_TELNET_SESSION","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_TELNET_SESSION(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_TELNET_SESSION.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_BACKUP_SERVER","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_BACKUP_SERVER(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_BACKUP_SERVER.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_TN3270_SESSION","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_TN3270_SESSION(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_TN3270_SESSION.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_ASK","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_ASK(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_ASK.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_PLUS","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_PLUS(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_PLUS.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"IS_GOPHER_TYPE_KNOWN","package":"druntime","parentType":"","signature":"BOOL IS_GOPHER_TYPE_KNOWN(DWORD t)","url":"/ddoc/druntime/core/sys/windows/wininet/IS_GOPHER_TYPE_KNOWN.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetTimeFromSystemTime","package":"druntime","parentType":"","signature":"BOOL InternetTimeFromSystemTime(SYSTEMTIME *,  DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetTimeFromSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetTimeToSystemTime","package":"druntime","parentType":"","signature":"BOOL InternetTimeToSystemTime(LPCSTR,  SYSTEMTIME *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetTimeToSystemTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetDebugGetLocalTime","package":"druntime","parentType":"","signature":"BOOL InternetDebugGetLocalTime(SYSTEMTIME *,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetDebugGetLocalTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCrackUrlA","package":"druntime","parentType":"","signature":"BOOL InternetCrackUrlA(LPCSTR,  DWORD,  DWORD,  LPURL_COMPONENTSA)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCrackUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCrackUrlW","package":"druntime","parentType":"","signature":"BOOL InternetCrackUrlW(LPCWSTR,  DWORD,  DWORD,  LPURL_COMPONENTSW)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCrackUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCreateUrlA","package":"druntime","parentType":"","signature":"BOOL InternetCreateUrlA(LPURL_COMPONENTSA,  DWORD,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCreateUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCreateUrlW","package":"druntime","parentType":"","signature":"BOOL InternetCreateUrlW(LPURL_COMPONENTSW,  DWORD,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCreateUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCanonicalizeUrlA","package":"druntime","parentType":"","signature":"BOOL InternetCanonicalizeUrlA(LPCSTR,  LPSTR,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCanonicalizeUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCanonicalizeUrlW","package":"druntime","parentType":"","signature":"BOOL InternetCanonicalizeUrlW(LPCWSTR,  LPWSTR,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCanonicalizeUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCheckConnectionA","package":"druntime","parentType":"","signature":"BOOL InternetCheckConnectionA(LPCSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCheckConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCheckConnectionW","package":"druntime","parentType":"","signature":"BOOL InternetCheckConnectionW(LPCWSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCheckConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCombineUrlA","package":"druntime","parentType":"","signature":"BOOL InternetCombineUrlA(LPCSTR,  LPCSTR,  LPSTR,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCombineUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCombineUrlW","package":"druntime","parentType":"","signature":"BOOL InternetCombineUrlW(LPCWSTR,  LPCWSTR,  LPWSTR,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCombineUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetOpenA","package":"druntime","parentType":"","signature":"HINTERNET InternetOpenA(LPCSTR,  DWORD,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetOpenA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetOpenW","package":"druntime","parentType":"","signature":"HINTERNET InternetOpenW(LPCWSTR,  DWORD,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetOpenW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetCloseHandle","package":"druntime","parentType":"","signature":"BOOL InternetCloseHandle(HINTERNET)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetCloseHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetConnectA","package":"druntime","parentType":"","signature":"HINTERNET InternetConnectA(HINTERNET,  LPCSTR,  INTERNET_PORT,  LPCSTR,\n       LPCSTR,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetConnectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetConnectW","package":"druntime","parentType":"","signature":"HINTERNET InternetConnectW(HINTERNET,  LPCWSTR,  INTERNET_PORT,  LPCWSTR,\n       LPCWSTR,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetConnectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetOpenUrlA","package":"druntime","parentType":"","signature":"HINTERNET InternetOpenUrlA(HINTERNET,  LPCSTR,  LPCSTR,  DWORD,  DWORD,\n       DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetOpenUrlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetOpenUrlW","package":"druntime","parentType":"","signature":"HINTERNET InternetOpenUrlW(HINTERNET,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD,\n       DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetOpenUrlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetReadFile","package":"druntime","parentType":"","signature":"BOOL InternetReadFile(HINTERNET,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetReadFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetFilePointer","package":"druntime","parentType":"","signature":"DWORD InternetSetFilePointer(HINTERNET,  LONG,  PVOID,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetFilePointer.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetWriteFile","package":"druntime","parentType":"","signature":"BOOL InternetWriteFile(HINTERNET,  LPCVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetWriteFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetQueryDataAvailable","package":"druntime","parentType":"","signature":"BOOL InternetQueryDataAvailable(HINTERNET,  PDWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetQueryDataAvailable.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetFindNextFileA","package":"druntime","parentType":"","signature":"BOOL InternetFindNextFileA(HINTERNET,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetFindNextFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetFindNextFileW","package":"druntime","parentType":"","signature":"BOOL InternetFindNextFileW(HINTERNET,  PVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetFindNextFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetQueryOptionA","package":"druntime","parentType":"","signature":"BOOL InternetQueryOptionA(HINTERNET,  DWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetQueryOptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetQueryOptionW","package":"druntime","parentType":"","signature":"BOOL InternetQueryOptionW(HINTERNET,  DWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetQueryOptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetOptionA","package":"druntime","parentType":"","signature":"BOOL InternetSetOptionA(HINTERNET,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetOptionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetOptionW","package":"druntime","parentType":"","signature":"BOOL InternetSetOptionW(HINTERNET,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetOptionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetOptionExA","package":"druntime","parentType":"","signature":"BOOL InternetSetOptionExA(HINTERNET,  DWORD,  PVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetOptionExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetOptionExW","package":"druntime","parentType":"","signature":"BOOL InternetSetOptionExW(HINTERNET,  DWORD,  PVOID,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetOptionExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGetLastResponseInfoA","package":"druntime","parentType":"","signature":"BOOL InternetGetLastResponseInfoA(PDWORD,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGetLastResponseInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGetLastResponseInfoW","package":"druntime","parentType":"","signature":"BOOL InternetGetLastResponseInfoW(PDWORD,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGetLastResponseInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetStatusCallback","package":"druntime","parentType":"","signature":"INTERNET_STATUS_CALLBACK InternetSetStatusCallback(HINTERNET,\n       INTERNET_STATUS_CALLBACK)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetStatusCallback.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpGetFileSize","package":"druntime","parentType":"","signature":"DWORD FtpGetFileSize(HINTERNET,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpGetFileSize.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpFindFirstFileA","package":"druntime","parentType":"","signature":"HINTERNET FtpFindFirstFileA(HINTERNET,  LPCSTR,  LPWIN32_FIND_DATAA,  DWORD,\n       DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpFindFirstFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpFindFirstFileW","package":"druntime","parentType":"","signature":"HINTERNET FtpFindFirstFileW(HINTERNET,  LPCWSTR,  LPWIN32_FIND_DATAW,  DWORD,\n       DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpFindFirstFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpGetFileA","package":"druntime","parentType":"","signature":"BOOL FtpGetFileA(HINTERNET,  LPCSTR,  LPCSTR,  BOOL,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpGetFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpGetFileW","package":"druntime","parentType":"","signature":"BOOL FtpGetFileW(HINTERNET,  LPCWSTR,  LPCWSTR,  BOOL,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpGetFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpPutFileA","package":"druntime","parentType":"","signature":"BOOL FtpPutFileA(HINTERNET,  LPCSTR,  LPCSTR,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpPutFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpPutFileW","package":"druntime","parentType":"","signature":"BOOL FtpPutFileW(HINTERNET,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpPutFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpDeleteFileA","package":"druntime","parentType":"","signature":"BOOL FtpDeleteFileA(HINTERNET,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpDeleteFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpDeleteFileW","package":"druntime","parentType":"","signature":"BOOL FtpDeleteFileW(HINTERNET,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpDeleteFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpRenameFileA","package":"druntime","parentType":"","signature":"BOOL FtpRenameFileA(HINTERNET,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpRenameFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpRenameFileW","package":"druntime","parentType":"","signature":"BOOL FtpRenameFileW(HINTERNET,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpRenameFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpOpenFileA","package":"druntime","parentType":"","signature":"HINTERNET FtpOpenFileA(HINTERNET,  LPCSTR,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpOpenFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpOpenFileW","package":"druntime","parentType":"","signature":"HINTERNET FtpOpenFileW(HINTERNET,  LPCWSTR,  DWORD,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpOpenFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpCreateDirectoryA","package":"druntime","parentType":"","signature":"BOOL FtpCreateDirectoryA(HINTERNET,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpCreateDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpCreateDirectoryW","package":"druntime","parentType":"","signature":"BOOL FtpCreateDirectoryW(HINTERNET,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpCreateDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpRemoveDirectoryA","package":"druntime","parentType":"","signature":"BOOL FtpRemoveDirectoryA(HINTERNET,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpRemoveDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpRemoveDirectoryW","package":"druntime","parentType":"","signature":"BOOL FtpRemoveDirectoryW(HINTERNET,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpRemoveDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpSetCurrentDirectoryA","package":"druntime","parentType":"","signature":"BOOL FtpSetCurrentDirectoryA(HINTERNET,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpSetCurrentDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpSetCurrentDirectoryW","package":"druntime","parentType":"","signature":"BOOL FtpSetCurrentDirectoryW(HINTERNET,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpSetCurrentDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpGetCurrentDirectoryA","package":"druntime","parentType":"","signature":"BOOL FtpGetCurrentDirectoryA(HINTERNET,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpGetCurrentDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpGetCurrentDirectoryW","package":"druntime","parentType":"","signature":"BOOL FtpGetCurrentDirectoryW(HINTERNET,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpGetCurrentDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpCommandA","package":"druntime","parentType":"","signature":"BOOL FtpCommandA(HINTERNET,  BOOL,  DWORD,  LPCSTR,  DWORD_PTR,  HINTERNET *)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpCommandA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FtpCommandW","package":"druntime","parentType":"","signature":"BOOL FtpCommandW(HINTERNET,  BOOL,  DWORD,  LPCWSTR,  DWORD_PTR,  HINTERNET *)","url":"/ddoc/druntime/core/sys/windows/wininet/FtpCommandW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherCreateLocatorA","package":"druntime","parentType":"","signature":"BOOL GopherCreateLocatorA(LPCSTR,  INTERNET_PORT,  LPCSTR,  LPCSTR,  DWORD,\n       LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherCreateLocatorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherCreateLocatorW","package":"druntime","parentType":"","signature":"BOOL GopherCreateLocatorW(LPCWSTR,  INTERNET_PORT,  LPCWSTR,  LPCWSTR,  DWORD,\n       LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherCreateLocatorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherGetLocatorTypeA","package":"druntime","parentType":"","signature":"BOOL GopherGetLocatorTypeA(LPCSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherGetLocatorTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherGetLocatorTypeW","package":"druntime","parentType":"","signature":"BOOL GopherGetLocatorTypeW(LPCWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherGetLocatorTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherFindFirstFileA","package":"druntime","parentType":"","signature":"HINTERNET GopherFindFirstFileA(HINTERNET,  LPCSTR,  LPCSTR,\n       LPGOPHER_FIND_DATAA,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherFindFirstFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherFindFirstFileW","package":"druntime","parentType":"","signature":"HINTERNET GopherFindFirstFileW(HINTERNET,  LPCWSTR,  LPCWSTR,\n       LPGOPHER_FIND_DATAW,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherFindFirstFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherOpenFileA","package":"druntime","parentType":"","signature":"HINTERNET GopherOpenFileA(HINTERNET,  LPCSTR,  LPCSTR,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherOpenFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherOpenFileW","package":"druntime","parentType":"","signature":"HINTERNET GopherOpenFileW(HINTERNET,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherOpenFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherGetAttributeA","package":"druntime","parentType":"","signature":"BOOL GopherGetAttributeA(HINTERNET,  LPCSTR,  LPCSTR,  LPBYTE,  DWORD,\n       PDWORD,  GOPHER_ATTRIBUTE_ENUMERATOR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherGetAttributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GopherGetAttributeW","package":"druntime","parentType":"","signature":"BOOL GopherGetAttributeW(HINTERNET,  LPCWSTR,  LPCWSTR,  LPBYTE,  DWORD,\n       PDWORD,  GOPHER_ATTRIBUTE_ENUMERATOR,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/GopherGetAttributeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpOpenRequestA","package":"druntime","parentType":"","signature":"HINTERNET HttpOpenRequestA(HINTERNET,  LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR,\n       LPCSTR *,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpOpenRequestA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpOpenRequestW","package":"druntime","parentType":"","signature":"HINTERNET HttpOpenRequestW(HINTERNET,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR,\n       LPCWSTR *,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpOpenRequestW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpAddRequestHeadersA","package":"druntime","parentType":"","signature":"BOOL HttpAddRequestHeadersA(HINTERNET,  LPCSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpAddRequestHeadersA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpAddRequestHeadersW","package":"druntime","parentType":"","signature":"BOOL HttpAddRequestHeadersW(HINTERNET,  LPCWSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpAddRequestHeadersW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpSendRequestA","package":"druntime","parentType":"","signature":"BOOL HttpSendRequestA(HINTERNET,  LPCSTR,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpSendRequestA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpSendRequestW","package":"druntime","parentType":"","signature":"BOOL HttpSendRequestW(HINTERNET,  LPCWSTR,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpSendRequestW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpQueryInfoA","package":"druntime","parentType":"","signature":"BOOL HttpQueryInfoA(HINTERNET,  DWORD,  PVOID,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpQueryInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpQueryInfoW","package":"druntime","parentType":"","signature":"BOOL HttpQueryInfoW(HINTERNET,  DWORD,  PVOID,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpQueryInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetCookieA","package":"druntime","parentType":"","signature":"BOOL InternetSetCookieA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetCookieA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetCookieW","package":"druntime","parentType":"","signature":"BOOL InternetSetCookieW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetCookieW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGetCookieA","package":"druntime","parentType":"","signature":"BOOL InternetGetCookieA(LPCSTR,  LPCSTR,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGetCookieA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGetCookieW","package":"druntime","parentType":"","signature":"BOOL InternetGetCookieW(LPCWSTR,  LPCWSTR,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGetCookieW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetAttemptConnect","package":"druntime","parentType":"","signature":"DWORD InternetAttemptConnect(DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetAttemptConnect.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetErrorDlg","package":"druntime","parentType":"","signature":"DWORD InternetErrorDlg(HWND,  HINTERNET,  DWORD,  DWORD,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetErrorDlg.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetConfirmZoneCrossing","package":"druntime","parentType":"","signature":"DWORD InternetConfirmZoneCrossing(HWND,  LPSTR,  LPSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetConfirmZoneCrossing.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"CreateUrlCacheEntryA","package":"druntime","parentType":"","signature":"BOOL CreateUrlCacheEntryA(LPCSTR,  DWORD,  LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/CreateUrlCacheEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"CreateUrlCacheEntryW","package":"druntime","parentType":"","signature":"BOOL CreateUrlCacheEntryW(LPCWSTR,  DWORD,  LPCWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/CreateUrlCacheEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"CommitUrlCacheEntryA","package":"druntime","parentType":"","signature":"BOOL CommitUrlCacheEntryA(LPCSTR,  LPCSTR,  FILETIME,  FILETIME,  DWORD,\n       LPBYTE,  DWORD,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/CommitUrlCacheEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"CommitUrlCacheEntryW","package":"druntime","parentType":"","signature":"BOOL CommitUrlCacheEntryW(LPCWSTR,  LPCWSTR,  FILETIME,  FILETIME,  DWORD,\n       LPBYTE,  DWORD,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/CommitUrlCacheEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"RetrieveUrlCacheEntryFileA","package":"druntime","parentType":"","signature":"BOOL RetrieveUrlCacheEntryFileA(LPCSTR,  LPINTERNET_CACHE_ENTRY_INFOA,\n       PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/RetrieveUrlCacheEntryFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"RetrieveUrlCacheEntryFileW","package":"druntime","parentType":"","signature":"BOOL RetrieveUrlCacheEntryFileW(LPCWSTR,  LPINTERNET_CACHE_ENTRY_INFOW,\n       PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/RetrieveUrlCacheEntryFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"UnlockUrlCacheEntryFile","package":"druntime","parentType":"","signature":"BOOL UnlockUrlCacheEntryFile(LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/UnlockUrlCacheEntryFile.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"RetrieveUrlCacheEntryStreamA","package":"druntime","parentType":"","signature":"HANDLE RetrieveUrlCacheEntryStreamA(LPCSTR,  LPINTERNET_CACHE_ENTRY_INFOA,\n       PDWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/RetrieveUrlCacheEntryStreamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"RetrieveUrlCacheEntryStreamW","package":"druntime","parentType":"","signature":"HANDLE RetrieveUrlCacheEntryStreamW(LPCWSTR,  LPINTERNET_CACHE_ENTRY_INFOW,\n       PDWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/RetrieveUrlCacheEntryStreamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"ReadUrlCacheEntryStream","package":"druntime","parentType":"","signature":"BOOL ReadUrlCacheEntryStream(HANDLE,  DWORD,  PVOID,  PDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/ReadUrlCacheEntryStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"UnlockUrlCacheEntryStream","package":"druntime","parentType":"","signature":"BOOL UnlockUrlCacheEntryStream(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/UnlockUrlCacheEntryStream.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GetUrlCacheEntryInfoA","package":"druntime","parentType":"","signature":"BOOL GetUrlCacheEntryInfoA(LPCSTR,  LPINTERNET_CACHE_ENTRY_INFOA,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GetUrlCacheEntryInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GetUrlCacheEntryInfoW","package":"druntime","parentType":"","signature":"BOOL GetUrlCacheEntryInfoW(LPCWSTR,  LPINTERNET_CACHE_ENTRY_INFOW,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/GetUrlCacheEntryInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"SetUrlCacheEntryInfoA","package":"druntime","parentType":"","signature":"BOOL SetUrlCacheEntryInfoA(LPCSTR,  LPINTERNET_CACHE_ENTRY_INFOA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/SetUrlCacheEntryInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"SetUrlCacheEntryInfoW","package":"druntime","parentType":"","signature":"BOOL SetUrlCacheEntryInfoW(LPCWSTR,  LPINTERNET_CACHE_ENTRY_INFOW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/SetUrlCacheEntryInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindFirstUrlCacheEntryA","package":"druntime","parentType":"","signature":"HANDLE FindFirstUrlCacheEntryA(LPCSTR,  LPINTERNET_CACHE_ENTRY_INFOA,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FindFirstUrlCacheEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindFirstUrlCacheEntryW","package":"druntime","parentType":"","signature":"HANDLE FindFirstUrlCacheEntryW(LPCWSTR,  LPINTERNET_CACHE_ENTRY_INFOW,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FindFirstUrlCacheEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindNextUrlCacheEntryA","package":"druntime","parentType":"","signature":"BOOL FindNextUrlCacheEntryA(HANDLE,  LPINTERNET_CACHE_ENTRY_INFOA,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FindNextUrlCacheEntryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindNextUrlCacheEntryW","package":"druntime","parentType":"","signature":"BOOL FindNextUrlCacheEntryW(HANDLE,  LPINTERNET_CACHE_ENTRY_INFOW,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/FindNextUrlCacheEntryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindCloseUrlCache","package":"druntime","parentType":"","signature":"BOOL FindCloseUrlCache(HANDLE)","url":"/ddoc/druntime/core/sys/windows/wininet/FindCloseUrlCache.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"DeleteUrlCacheEntry","package":"druntime","parentType":"","signature":"BOOL DeleteUrlCacheEntry(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/DeleteUrlCacheEntry.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"AuthenticateUser","package":"druntime","parentType":"","signature":"DWORD AuthenticateUser(PVOID *,  LPSTR,  LPSTR,  DWORD,  LPSTR,  DWORD,  LPSTR,\n       LPSTR)","url":"/ddoc/druntime/core/sys/windows/wininet/AuthenticateUser.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpSendRequestExA","package":"druntime","parentType":"","signature":"BOOL HttpSendRequestExA(HINTERNET,  LPINTERNET_BUFFERSA,\n       LPINTERNET_BUFFERSA,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpSendRequestExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpSendRequestExW","package":"druntime","parentType":"","signature":"BOOL HttpSendRequestExW(HINTERNET,  LPINTERNET_BUFFERSW,\n       LPINTERNET_BUFFERSW,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpSendRequestExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpEndRequestA","package":"druntime","parentType":"","signature":"BOOL HttpEndRequestA(HINTERNET,  LPINTERNET_BUFFERSA,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpEndRequestA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"HttpEndRequestW","package":"druntime","parentType":"","signature":"BOOL HttpEndRequestW(HINTERNET,  LPINTERNET_BUFFERSW,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/HttpEndRequestW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetDial","package":"druntime","parentType":"","signature":"DWORD InternetDial(HWND,  LPTSTR,  DWORD,  LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetDial.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetHangUp","package":"druntime","parentType":"","signature":"DWORD InternetHangUp(DWORD_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetHangUp.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGoOnline","package":"druntime","parentType":"","signature":"BOOL InternetGoOnline(LPTSTR,  HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGoOnline.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetAutodial","package":"druntime","parentType":"","signature":"BOOL InternetAutodial(DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetAutodial.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetAutodialHangup","package":"druntime","parentType":"","signature":"BOOL InternetAutodialHangup(DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetAutodialHangup.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetGetConnectedState","package":"druntime","parentType":"","signature":"BOOL InternetGetConnectedState(LPDWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetGetConnectedState.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetSetDialState","package":"druntime","parentType":"","signature":"BOOL InternetSetDialState(LPCTSTR,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetSetDialState.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetReadFileExA","package":"druntime","parentType":"","signature":"BOOL InternetReadFileExA(HINTERNET,  LPINTERNET_BUFFERSA,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetReadFileExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"InternetReadFileExW","package":"druntime","parentType":"","signature":"BOOL InternetReadFileExW(HINTERNET,  LPINTERNET_BUFFERSW,  DWORD,  DWORD_PTR)","url":"/ddoc/druntime/core/sys/windows/wininet/InternetReadFileExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"CreateUrlCacheGroup","package":"druntime","parentType":"","signature":"GROUPID CreateUrlCacheGroup(DWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/CreateUrlCacheGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"DeleteUrlCacheGroup","package":"druntime","parentType":"","signature":"BOOL DeleteUrlCacheGroup(GROUPID,  DWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/DeleteUrlCacheGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindFirstUrlCacheGroup","package":"druntime","parentType":"","signature":"HANDLE FindFirstUrlCacheGroup(DWORD,  DWORD,  LPVOID,  DWORD,  GROUPID *,\n       LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/FindFirstUrlCacheGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"FindNextUrlCacheGroup","package":"druntime","parentType":"","signature":"BOOL FindNextUrlCacheGroup(HANDLE,  GROUPID *,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/FindNextUrlCacheGroup.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GetUrlCacheGroupAttributeA","package":"druntime","parentType":"","signature":"BOOL GetUrlCacheGroupAttributeA(GROUPID,  DWORD,  DWORD,\n       LPINTERNET_CACHE_GROUP_INFOA,  LPDWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/GetUrlCacheGroupAttributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"GetUrlCacheGroupAttributeW","package":"druntime","parentType":"","signature":"BOOL GetUrlCacheGroupAttributeW(GROUPID,  DWORD,  DWORD,\n       LPINTERNET_CACHE_GROUP_INFOW,  LPDWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/GetUrlCacheGroupAttributeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"SetUrlCacheGroupAttributeA","package":"druntime","parentType":"","signature":"BOOL SetUrlCacheGroupAttributeA(GROUPID,  DWORD,  DWORD,\n       LPINTERNET_CACHE_GROUP_INFOA,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/SetUrlCacheGroupAttributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wininet","name":"SetUrlCacheGroupAttributeW","package":"druntime","parentType":"","signature":"BOOL SetUrlCacheGroupAttributeW(GROUPID,  DWORD,  DWORD,\n       LPINTERNET_CACHE_GROUP_INFOW,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/wininet/SetUrlCacheGroupAttributeW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"HINTERNET","package":"druntime","parentType":"","signature":"HINTERNET = HANDLE","url":"/ddoc/druntime/core/sys/windows/wininet.html#HINTERNET"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPHINTERNET","package":"druntime","parentType":"","signature":"LPHINTERNET = HINTERNET *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPHINTERNET"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"GROUPID","package":"druntime","parentType":"","signature":"GROUPID = LONGLONG","url":"/ddoc/druntime/core/sys/windows/wininet.html#GROUPID"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"INTERNET_PORT","package":"druntime","parentType":"","signature":"INTERNET_PORT = WORD","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PORT"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PORT","package":"druntime","parentType":"","signature":"LPINTERNET_PORT = WORD *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PORT"},{"doc":"","kind":"enum","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME","package":"druntime","parentType":"","signature":"INTERNET_SCHEME","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_PARTIAL","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_PARTIAL = - 2","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_UNKNOWN","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_UNKNOWN = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_DEFAULT","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_DEFAULT = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_FTP","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_FTP = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_GOPHER","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_GOPHER = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_HTTP","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_HTTP = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_HTTPS","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_HTTPS = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_FILE","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_FILE = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_NEWS","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_NEWS = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_MAILTO","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_MAILTO = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_SOCKS","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_SOCKS = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_JAVASCRIPT","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_JAVASCRIPT = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_VBSCRIPT","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_VBSCRIPT = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_RES","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_RES = ","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_FIRST","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_FIRST = INTERNET_SCHEME_FTP","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wininet","name":"INTERNET_SCHEME_LAST","package":"druntime","parentType":"","signature":"INTERNET_SCHEME_LAST = INTERNET_SCHEME_RES","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_SCHEME"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_SCHEME","package":"druntime","parentType":"","signature":"LPINTERNET_SCHEME = INTERNET_SCHEME *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_SCHEME"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_ASYNC_RESULT","package":"druntime","parentType":"","signature":"INTERNET_ASYNC_RESULT","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_ASYNC_RESULT"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_ASYNC_RESULT","package":"druntime","parentType":"","signature":"LPINTERNET_ASYNC_RESULT = INTERNET_ASYNC_RESULT *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_ASYNC_RESULT"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_DIAGNOSTIC_SOCKET_INFO","package":"druntime","parentType":"","signature":"INTERNET_DIAGNOSTIC_SOCKET_INFO","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_DIAGNOSTIC_SOCKET_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_DIAGNOSTIC_SOCKET_INFO","package":"druntime","parentType":"","signature":"LPINTERNET_DIAGNOSTIC_SOCKET_INFO = INTERNET_DIAGNOSTIC_SOCKET_INFO *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_DIAGNOSTIC_SOCKET_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PREFETCH_STATUS","package":"druntime","parentType":"","signature":"INTERNET_PREFETCH_STATUS","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PREFETCH_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PREFETCH_STATUS","package":"druntime","parentType":"","signature":"LPINTERNET_PREFETCH_STATUS = INTERNET_PREFETCH_STATUS *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PREFETCH_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PROXY_INFO","package":"druntime","parentType":"","signature":"INTERNET_PROXY_INFO","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PROXY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PROXY_INFO","package":"druntime","parentType":"","signature":"LPINTERNET_PROXY_INFO = INTERNET_PROXY_INFO *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PROXY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PER_CONN_OPTIONA","package":"druntime","parentType":"","signature":"INTERNET_PER_CONN_OPTIONA","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PER_CONN_OPTIONA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PER_CONN_OPTIONA","package":"druntime","parentType":"","signature":"LPINTERNET_PER_CONN_OPTIONA = INTERNET_PER_CONN_OPTIONA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PER_CONN_OPTIONA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PER_CONN_OPTIONW","package":"druntime","parentType":"","signature":"INTERNET_PER_CONN_OPTIONW","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PER_CONN_OPTIONW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PER_CONN_OPTIONW","package":"druntime","parentType":"","signature":"LPINTERNET_PER_CONN_OPTIONW = INTERNET_PER_CONN_OPTIONW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PER_CONN_OPTIONW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PER_CONN_OPTION_LISTA","package":"druntime","parentType":"","signature":"INTERNET_PER_CONN_OPTION_LISTA","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PER_CONN_OPTION_LISTA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PER_CONN_OPTION_LISTA","package":"druntime","parentType":"","signature":"LPINTERNET_PER_CONN_OPTION_LISTA = INTERNET_PER_CONN_OPTION_LISTA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PER_CONN_OPTION_LISTA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_PER_CONN_OPTION_LISTW","package":"druntime","parentType":"","signature":"INTERNET_PER_CONN_OPTION_LISTW","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PER_CONN_OPTION_LISTW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_PER_CONN_OPTION_LISTW","package":"druntime","parentType":"","signature":"LPINTERNET_PER_CONN_OPTION_LISTW = INTERNET_PER_CONN_OPTION_LISTW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_PER_CONN_OPTION_LISTW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_VERSION_INFO","package":"druntime","parentType":"","signature":"INTERNET_VERSION_INFO","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_VERSION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_VERSION_INFO","package":"druntime","parentType":"","signature":"LPINTERNET_VERSION_INFO = INTERNET_VERSION_INFO *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_VERSION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"URL_COMPONENTSA","package":"druntime","parentType":"","signature":"URL_COMPONENTSA","url":"/ddoc/druntime/core/sys/windows/wininet.html#URL_COMPONENTSA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPURL_COMPONENTSA","package":"druntime","parentType":"","signature":"LPURL_COMPONENTSA = URL_COMPONENTSA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPURL_COMPONENTSA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"URL_COMPONENTSW","package":"druntime","parentType":"","signature":"URL_COMPONENTSW","url":"/ddoc/druntime/core/sys/windows/wininet.html#URL_COMPONENTSW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPURL_COMPONENTSW","package":"druntime","parentType":"","signature":"LPURL_COMPONENTSW = URL_COMPONENTSW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPURL_COMPONENTSW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_CERTIFICATE_INFO","package":"druntime","parentType":"","signature":"INTERNET_CERTIFICATE_INFO","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CERTIFICATE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_CERTIFICATE_INFO","package":"druntime","parentType":"","signature":"LPINTERNET_CERTIFICATE_INFO = INTERNET_CERTIFICATE_INFO *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_CERTIFICATE_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"INTERNET_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"INTERNET_STATUS_CALLBACK = void  function(HINTERNET,  DWORD_PTR,  DWORD,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_STATUS_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"LPINTERNET_STATUS_CALLBACK = INTERNET_STATUS_CALLBACK *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_STATUS_CALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_FIND_DATAA","package":"druntime","parentType":"","signature":"GOPHER_FIND_DATAA","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_FIND_DATAA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_FIND_DATAA","package":"druntime","parentType":"","signature":"LPGOPHER_FIND_DATAA = GOPHER_FIND_DATAA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_FIND_DATAA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_FIND_DATAW","package":"druntime","parentType":"","signature":"GOPHER_FIND_DATAW","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_FIND_DATAW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_FIND_DATAW","package":"druntime","parentType":"","signature":"LPGOPHER_FIND_DATAW = GOPHER_FIND_DATAW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_FIND_DATAW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_ADMIN_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_ADMIN_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ADMIN_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_ADMIN_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_ADMIN_ATTRIBUTE_TYPE = GOPHER_ADMIN_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_ADMIN_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_MOD_DATE_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_MOD_DATE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_MOD_DATE_ATTRIBUTE_TYPE = GOPHER_MOD_DATE_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_MOD_DATE_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_TTL_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_TTL_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_TTL_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_TTL_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_TTL_ATTRIBUTE_TYPE = GOPHER_TTL_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_TTL_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_SCORE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_SCORE_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_SCORE_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_SCORE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_SCORE_ATTRIBUTE_TYPE = GOPHER_SCORE_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_SCORE_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_SCORE_RANGE_ATTRIBUTE_TYPE = GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_SCORE_RANGE_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_SITE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_SITE_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_SITE_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_SITE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_SITE_ATTRIBUTE_TYPE = GOPHER_SITE_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_SITE_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ORGANIZATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_ORGANIZATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_ORGANIZATION_ATTRIBUTE_TYPE = GOPHER_ORGANIZATION_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_ORGANIZATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_LOCATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_LOCATION_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_LOCATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_LOCATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_LOCATION_ATTRIBUTE_TYPE = GOPHER_LOCATION_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_LOCATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE = GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_TIMEZONE_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_TIMEZONE_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_TIMEZONE_ATTRIBUTE_TYPE = GOPHER_TIMEZONE_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_TIMEZONE_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_PROVIDER_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_PROVIDER_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_PROVIDER_ATTRIBUTE_TYPE = GOPHER_PROVIDER_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_PROVIDER_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_VERSION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_VERSION_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_VERSION_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_VERSION_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_VERSION_ATTRIBUTE_TYPE = GOPHER_VERSION_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_VERSION_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ABSTRACT_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_ABSTRACT_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_ABSTRACT_ATTRIBUTE_TYPE = GOPHER_ABSTRACT_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_ABSTRACT_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_VIEW_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_VIEW_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_VIEW_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_VIEW_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_VIEW_ATTRIBUTE_TYPE = GOPHER_VIEW_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_VIEW_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_VERONICA_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_VERONICA_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_VERONICA_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_VERONICA_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_VERONICA_ATTRIBUTE_TYPE = GOPHER_VERONICA_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_VERONICA_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_ASK_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_ASK_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ASK_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_ASK_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_ASK_ATTRIBUTE_TYPE = GOPHER_ASK_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_ASK_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_UNKNOWN_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_UNKNOWN_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_UNKNOWN_ATTRIBUTE_TYPE = GOPHER_UNKNOWN_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_UNKNOWN_ATTRIBUTE_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"GOPHER_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"GOPHER_ATTRIBUTE_TYPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPGOPHER_ATTRIBUTE_TYPE","package":"druntime","parentType":"","signature":"LPGOPHER_ATTRIBUTE_TYPE = GOPHER_ATTRIBUTE_TYPE *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPGOPHER_ATTRIBUTE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"GOPHER_ATTRIBUTE_ENUMERATOR","package":"druntime","parentType":"","signature":"GOPHER_ATTRIBUTE_ENUMERATOR = BOOL function(LPGOPHER_ATTRIBUTE_TYPE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_ATTRIBUTE_ENUMERATOR"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_CACHE_ENTRY_INFOA","package":"druntime","parentType":"","signature":"INTERNET_CACHE_ENTRY_INFOA","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CACHE_ENTRY_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_CACHE_ENTRY_INFOA","package":"druntime","parentType":"","signature":"LPINTERNET_CACHE_ENTRY_INFOA = INTERNET_CACHE_ENTRY_INFOA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_CACHE_ENTRY_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_CACHE_ENTRY_INFOW","package":"druntime","parentType":"","signature":"INTERNET_CACHE_ENTRY_INFOW","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CACHE_ENTRY_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_CACHE_ENTRY_INFOW","package":"druntime","parentType":"","signature":"LPINTERNET_CACHE_ENTRY_INFOW = INTERNET_CACHE_ENTRY_INFOW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_CACHE_ENTRY_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_BUFFERSA","package":"druntime","parentType":"","signature":"INTERNET_BUFFERSA","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_BUFFERSA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_BUFFERSA","package":"druntime","parentType":"","signature":"LPINTERNET_BUFFERSA = INTERNET_BUFFERSA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_BUFFERSA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_BUFFERSW","package":"druntime","parentType":"","signature":"INTERNET_BUFFERSW","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_BUFFERSW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_BUFFERSW","package":"druntime","parentType":"","signature":"LPINTERNET_BUFFERSW = INTERNET_BUFFERSW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_BUFFERSW"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_CACHE_GROUP_INFOA","package":"druntime","parentType":"","signature":"INTERNET_CACHE_GROUP_INFOA","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CACHE_GROUP_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_CACHE_GROUP_INFOA","package":"druntime","parentType":"","signature":"LPINTERNET_CACHE_GROUP_INFOA = INTERNET_CACHE_GROUP_INFOA *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_CACHE_GROUP_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.wininet","name":"INTERNET_CACHE_GROUP_INFOW","package":"druntime","parentType":"","signature":"INTERNET_CACHE_GROUP_INFOW","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CACHE_GROUP_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_CACHE_GROUP_INFOW","package":"druntime","parentType":"","signature":"LPINTERNET_CACHE_GROUP_INFOW = INTERNET_CACHE_GROUP_INFOW *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_CACHE_GROUP_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wininet","name":"LPINTERNET_BUFFERS","package":"druntime","parentType":"","signature":"LPINTERNET_BUFFERS = INTERNET_BUFFERS *","url":"/ddoc/druntime/core/sys/windows/wininet.html#LPINTERNET_BUFFERS"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"MAX_CACHE_ENTRY_INFO_SIZE","package":"druntime","parentType":"","signature":"size_t MAX_CACHE_ENTRY_INFO_SIZE","url":"/ddoc/druntime/core/sys/windows/wininet.html#MAX_CACHE_ENTRY_INFO_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_FLAG_RELOAD","package":"druntime","parentType":"","signature":"DWORD INTERNET_FLAG_RELOAD","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_FLAG_RELOAD"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_NO_CALLBACK","package":"druntime","parentType":"","signature":"INTERNET_NO_CALLBACK","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_NO_CALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_RFC1123_FORMAT","package":"druntime","parentType":"","signature":"INTERNET_RFC1123_FORMAT","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_RFC1123_FORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_RFC1123_BUFSIZE","package":"druntime","parentType":"","signature":"size_t INTERNET_RFC1123_BUFSIZE","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_RFC1123_BUFSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"ICU_ESCAPE","package":"druntime","parentType":"","signature":"DWORD ICU_ESCAPE","url":"/ddoc/druntime/core/sys/windows/wininet.html#ICU_ESCAPE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"ISO_GLOBAL","package":"druntime","parentType":"","signature":"ISO_GLOBAL","url":"/ddoc/druntime/core/sys/windows/wininet.html#ISO_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"ISO_REGISTRY","package":"druntime","parentType":"","signature":"ISO_REGISTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#ISO_REGISTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"ISO_VALID_FLAGS","package":"druntime","parentType":"","signature":"ISO_VALID_FLAGS","url":"/ddoc/druntime/core/sys/windows/wininet.html#ISO_VALID_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_PRIORITY_FOREGROUND","package":"druntime","parentType":"","signature":"INTERNET_PRIORITY_FOREGROUND","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_PRIORITY_FOREGROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"SECURITY_FLAG_SECURE","package":"druntime","parentType":"","signature":"DWORD SECURITY_FLAG_SECURE","url":"/ddoc/druntime/core/sys/windows/wininet.html#SECURITY_FLAG_SECURE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"MAX_GOPHER_DISPLAY_TEXT","package":"druntime","parentType":"","signature":"size_t MAX_GOPHER_DISPLAY_TEXT","url":"/ddoc/druntime/core/sys/windows/wininet.html#MAX_GOPHER_DISPLAY_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"GOPHER_TYPE_TEXT_FILE","package":"druntime","parentType":"","signature":"DWORD GOPHER_TYPE_TEXT_FILE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_TYPE_TEXT_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"MAX_GOPHER_CATEGORY_NAME","package":"druntime","parentType":"","signature":"size_t MAX_GOPHER_CATEGORY_NAME","url":"/ddoc/druntime/core/sys/windows/wininet.html#MAX_GOPHER_CATEGORY_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"GOPHER_INFO_CATEGORY","package":"druntime","parentType":"","signature":"TCHAR[] GOPHER_INFO_CATEGORY","url":"/ddoc/druntime/core/sys/windows/wininet.html#GOPHER_INFO_CATEGORY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HTTP_MAJOR_VERSION","package":"druntime","parentType":"","signature":"HTTP_MAJOR_VERSION","url":"/ddoc/druntime/core/sys/windows/wininet.html#HTTP_MAJOR_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HTTP_MINOR_VERSION","package":"druntime","parentType":"","signature":"HTTP_MINOR_VERSION","url":"/ddoc/druntime/core/sys/windows/wininet.html#HTTP_MINOR_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HTTP_VERSION","package":"druntime","parentType":"","signature":"TCHAR[] HTTP_VERSION","url":"/ddoc/druntime/core/sys/windows/wininet.html#HTTP_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HTTP_QUERY_FLAG_REQUEST_HEADERS","package":"druntime","parentType":"","signature":"DWORD HTTP_QUERY_FLAG_REQUEST_HEADERS","url":"/ddoc/druntime/core/sys/windows/wininet.html#HTTP_QUERY_FLAG_REQUEST_HEADERS"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","package":"druntime","parentType":"","signature":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","url":"/ddoc/druntime/core/sys/windows/wininet.html#FLAGS_ERROR_UI_FILTER_FOR_ERRORS"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","package":"druntime","parentType":"","signature":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","url":"/ddoc/druntime/core/sys/windows/wininet.html#FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","package":"druntime","parentType":"","signature":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","url":"/ddoc/druntime/core/sys/windows/wininet.html#FLAGS_ERROR_UI_FLAGS_GENERATE_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"FLAGS_ERROR_UI_FLAGS_NO_UI","package":"druntime","parentType":"","signature":"FLAGS_ERROR_UI_FLAGS_NO_UI","url":"/ddoc/druntime/core/sys/windows/wininet.html#FLAGS_ERROR_UI_FLAGS_NO_UI"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HTTP_ADDREQ_INDEX_MASK","package":"druntime","parentType":"","signature":"DWORD HTTP_ADDREQ_INDEX_MASK","url":"/ddoc/druntime/core/sys/windows/wininet.html#HTTP_ADDREQ_INDEX_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"NORMAL_CACHE_ENTRY","package":"druntime","parentType":"","signature":"NORMAL_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#NORMAL_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"STABLE_CACHE_ENTRY","package":"druntime","parentType":"","signature":"STABLE_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#STABLE_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"STICKY_CACHE_ENTRY","package":"druntime","parentType":"","signature":"STICKY_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#STICKY_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"SPARSE_CACHE_ENTRY","package":"druntime","parentType":"","signature":"SPARSE_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#SPARSE_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"OCX_CACHE_ENTRY","package":"druntime","parentType":"","signature":"OCX_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#OCX_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"COOKIE_CACHE_ENTRY","package":"druntime","parentType":"","signature":"COOKIE_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#COOKIE_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"URLHISTORY_CACHE_ENTRY","package":"druntime","parentType":"","signature":"URLHISTORY_CACHE_ENTRY","url":"/ddoc/druntime/core/sys/windows/wininet.html#URLHISTORY_CACHE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_ATTRIBUTE_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_ATTRIBUTE_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_ATTRIBUTE_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_HITRATE_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_HITRATE_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_HITRATE_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_MODTIME_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_MODTIME_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_MODTIME_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_EXPTIME_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_EXPTIME_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_EXPTIME_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_ACCTIME_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_ACCTIME_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_ACCTIME_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_SYNCTIME_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_SYNCTIME_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_SYNCTIME_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"CACHE_ENTRY_HEADERINFO_FC","package":"druntime","parentType":"","signature":"CACHE_ENTRY_HEADERINFO_FC","url":"/ddoc/druntime/core/sys/windows/wininet.html#CACHE_ENTRY_HEADERINFO_FC"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"IRF_NO_WAIT","package":"druntime","parentType":"","signature":"IRF_NO_WAIT","url":"/ddoc/druntime/core/sys/windows/wininet.html#IRF_NO_WAIT"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HSR_INITIATE","package":"druntime","parentType":"","signature":"HSR_INITIATE","url":"/ddoc/druntime/core/sys/windows/wininet.html#HSR_INITIATE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HSR_DOWNLOAD","package":"druntime","parentType":"","signature":"HSR_DOWNLOAD","url":"/ddoc/druntime/core/sys/windows/wininet.html#HSR_DOWNLOAD"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"HSR_CHUNKED","package":"druntime","parentType":"","signature":"HSR_CHUNKED","url":"/ddoc/druntime/core/sys/windows/wininet.html#HSR_CHUNKED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_DIAL_UNATTENDED","package":"druntime","parentType":"","signature":"INTERNET_DIAL_UNATTENDED","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_DIAL_UNATTENDED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_DIALSTATE_DISCONNECTED","package":"druntime","parentType":"","signature":"INTERNET_DIALSTATE_DISCONNECTED","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_DIALSTATE_DISCONNECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERENT_GOONLINE_REFRESH","package":"druntime","parentType":"","signature":"INTERENT_GOONLINE_REFRESH","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERENT_GOONLINE_REFRESH"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERENT_GOONLINE_MASK","package":"druntime","parentType":"","signature":"INTERENT_GOONLINE_MASK","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERENT_GOONLINE_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_AUTODIAL_FORCE_ONLINE","package":"druntime","parentType":"","signature":"INTERNET_AUTODIAL_FORCE_ONLINE","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_AUTODIAL_FORCE_ONLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_AUTODIAL_FORCE_UNATTENDED","package":"druntime","parentType":"","signature":"INTERNET_AUTODIAL_FORCE_UNATTENDED","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_AUTODIAL_FORCE_UNATTENDED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","package":"druntime","parentType":"","signature":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_AUTODIAL_FAILIFSECURITYCHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_MODEM","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_MODEM","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_MODEM"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_LAN","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_LAN","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_LAN"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_PROXY","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_PROXY","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_PROXY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_MODEM_BUSY","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_MODEM_BUSY","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_MODEM_BUSY"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_RAS_INSTALLED","package":"druntime","parentType":"","signature":"INTERNET_RAS_INSTALLED","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_RAS_INSTALLED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_OFFLINE","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_OFFLINE","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_CONNECTION_CONFIGURED","package":"druntime","parentType":"","signature":"INTERNET_CONNECTION_CONFIGURED","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_CONNECTION_CONFIGURED"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"INTERNET_INVALID_STATUS_CALLBACK","package":"druntime","parentType":"","signature":"INTERNET_INVALID_STATUS_CALLBACK","url":"/ddoc/druntime/core/sys/windows/wininet.html#INTERNET_INVALID_STATUS_CALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.wininet","name":"GROUP_OWNER_STORAGE_SIZE","package":"druntime","parentType":"","signature":"size_t GROUP_OWNER_STORAGE_SIZE","url":"/ddoc/druntime/core/sys/windows/wininet.html#GROUP_OWNER_STORAGE_SIZE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winioctl","name":"core.sys.windows.winioctl","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winioctl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winioctl","name":"DEVICE_TYPE_FROM_CTL_CODE","package":"druntime","parentType":"","signature":"DEVICE_TYPE DEVICE_TYPE_FROM_CTL_CODE(DWORD c)","url":"/ddoc/druntime/core/sys/windows/winioctl/DEVICE_TYPE_FROM_CTL_CODE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winioctl","name":"IsRecognizedPartition","package":"druntime","parentType":"","signature":"bool IsRecognizedPartition(BYTE t)","url":"/ddoc/druntime/core/sys/windows/winioctl/IsRecognizedPartition.html"},{"doc":"","kind":"function","module":"core.sys.windows.winioctl","name":"IsContainerPartition","package":"druntime","parentType":"","signature":"bool IsContainerPartition(BYTE t)","url":"/ddoc/druntime/core/sys/windows/winioctl/IsContainerPartition.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"DEVICE_TYPE","package":"druntime","parentType":"","signature":"DEVICE_TYPE = DWORD","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DEVICE_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"BAD_TRACK_NUMBER","package":"druntime","parentType":"","signature":"BAD_TRACK_NUMBER = WORD","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BAD_TRACK_NUMBER"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PBAD_TRACK_NUMBER","package":"druntime","parentType":"","signature":"PBAD_TRACK_NUMBER = WORD *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PBAD_TRACK_NUMBER"},{"doc":"","kind":"enum","module":"core.sys.windows.winioctl","name":"BIN_TYPES","package":"druntime","parentType":"","signature":"BIN_TYPES","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_TYPES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"RequestSize","package":"druntime","parentType":"","signature":"RequestSize = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_TYPES"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"RequestLocation","package":"druntime","parentType":"","signature":"RequestLocation = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_TYPES"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"BIN_RANGE","package":"druntime","parentType":"","signature":"BIN_RANGE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_RANGE"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PBIN_RANGE","package":"druntime","parentType":"","signature":"PBIN_RANGE = BIN_RANGE *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PBIN_RANGE"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"BIN_COUNT","package":"druntime","parentType":"","signature":"BIN_COUNT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_COUNT"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PBIN_COUNT","package":"druntime","parentType":"","signature":"PBIN_COUNT = BIN_COUNT *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PBIN_COUNT"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"BIN_RESULTS","package":"druntime","parentType":"","signature":"BIN_RESULTS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#BIN_RESULTS"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"BinCounts","package":"druntime","parentType":"BIN_RESULTS","signature":"BIN_COUNT * BinCounts()","url":"/ddoc/druntime/core/sys/windows/winioctl/BIN_RESULTS.BinCounts.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PBIN_RESULTS","package":"druntime","parentType":"","signature":"PBIN_RESULTS = BIN_RESULTS *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PBIN_RESULTS"},{"doc":"","kind":"enum","module":"core.sys.windows.winioctl","name":"PARTITION_STYLE","package":"druntime","parentType":"","signature":"PARTITION_STYLE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_STYLE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"PARTITION_STYLE_MBR","package":"druntime","parentType":"","signature":"PARTITION_STYLE_MBR = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_STYLE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"PARTITION_STYLE_GPT","package":"druntime","parentType":"","signature":"PARTITION_STYLE_GPT = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_STYLE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"PARTITION_STYLE_RAW","package":"druntime","parentType":"","signature":"PARTITION_STYLE_RAW = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_STYLE"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"CREATE_DISK_GPT","package":"druntime","parentType":"","signature":"CREATE_DISK_GPT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#CREATE_DISK_GPT"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PCREATE_DISK_GPT","package":"druntime","parentType":"","signature":"PCREATE_DISK_GPT = CREATE_DISK_GPT *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PCREATE_DISK_GPT"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"CREATE_DISK_MBR","package":"druntime","parentType":"","signature":"CREATE_DISK_MBR","url":"/ddoc/druntime/core/sys/windows/winioctl.html#CREATE_DISK_MBR"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PCREATE_DISK_MBR","package":"druntime","parentType":"","signature":"PCREATE_DISK_MBR = CREATE_DISK_MBR *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PCREATE_DISK_MBR"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"CREATE_DISK","package":"druntime","parentType":"","signature":"CREATE_DISK","url":"/ddoc/druntime/core/sys/windows/winioctl.html#CREATE_DISK"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PCREATE_DISK","package":"druntime","parentType":"","signature":"PCREATE_DISK = CREATE_DISK *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PCREATE_DISK"},{"doc":"","kind":"enum","module":"core.sys.windows.winioctl","name":"DISK_CACHE_RETENTION_PRIORITY","package":"druntime","parentType":"","signature":"DISK_CACHE_RETENTION_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_CACHE_RETENTION_PRIORITY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"EqualPriority","package":"druntime","parentType":"","signature":"EqualPriority = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_CACHE_RETENTION_PRIORITY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"KeepPrefetchedData","package":"druntime","parentType":"","signature":"KeepPrefetchedData = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_CACHE_RETENTION_PRIORITY"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"KeepReadData","package":"druntime","parentType":"","signature":"KeepReadData = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_CACHE_RETENTION_PRIORITY"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_CACHE_INFORMATION","package":"druntime","parentType":"","signature":"DISK_CACHE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_CACHE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_CACHE_INFORMATION","package":"druntime","parentType":"","signature":"PDISK_CACHE_INFORMATION = DISK_CACHE_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_CACHE_INFORMATION"},{"doc":"","kind":"enum","module":"core.sys.windows.winioctl","name":"DETECTION_TYPE","package":"druntime","parentType":"","signature":"DETECTION_TYPE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DETECTION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"DetectNone","package":"druntime","parentType":"","signature":"DetectNone = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DETECTION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"DetectInt13","package":"druntime","parentType":"","signature":"DetectInt13 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DETECTION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"DetectExInt13","package":"druntime","parentType":"","signature":"DetectExInt13 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DETECTION_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_INT13_INFO","package":"druntime","parentType":"","signature":"DISK_INT13_INFO","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_INT13_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_INT13_INFO","package":"druntime","parentType":"","signature":"PDISK_INT13_INFO = DISK_INT13_INFO *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_INT13_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_EX_INT13_INFO","package":"druntime","parentType":"","signature":"DISK_EX_INT13_INFO","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_EX_INT13_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_EX_INT13_INFO","package":"druntime","parentType":"","signature":"PDISK_EX_INT13_INFO = DISK_EX_INT13_INFO *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_EX_INT13_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_DETECTION_INFO","package":"druntime","parentType":"","signature":"DISK_DETECTION_INFO","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_DETECTION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_DETECTION_INFO","package":"druntime","parentType":"","signature":"PDISK_DETECTION_INFO = DISK_DETECTION_INFO *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_DETECTION_INFO"},{"doc":"","kind":"enum","module":"core.sys.windows.winioctl","name":"MEDIA_TYPE","package":"druntime","parentType":"","signature":"MEDIA_TYPE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"Unknown","package":"druntime","parentType":"","signature":"Unknown = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_1Pt2_512","package":"druntime","parentType":"","signature":"F5_1Pt2_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_1Pt44_512","package":"druntime","parentType":"","signature":"F3_1Pt44_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_2Pt88_512","package":"druntime","parentType":"","signature":"F3_2Pt88_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_20Pt8_512","package":"druntime","parentType":"","signature":"F3_20Pt8_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_720_512","package":"druntime","parentType":"","signature":"F3_720_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_360_512","package":"druntime","parentType":"","signature":"F5_360_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_320_512","package":"druntime","parentType":"","signature":"F5_320_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_320_1024","package":"druntime","parentType":"","signature":"F5_320_1024 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_180_512","package":"druntime","parentType":"","signature":"F5_180_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_160_512","package":"druntime","parentType":"","signature":"F5_160_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"RemovableMedia","package":"druntime","parentType":"","signature":"RemovableMedia = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"FixedMedia","package":"druntime","parentType":"","signature":"FixedMedia = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_120M_512","package":"druntime","parentType":"","signature":"F3_120M_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_640_512","package":"druntime","parentType":"","signature":"F3_640_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_640_512","package":"druntime","parentType":"","signature":"F5_640_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_720_512","package":"druntime","parentType":"","signature":"F5_720_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_1Pt2_512","package":"druntime","parentType":"","signature":"F3_1Pt2_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_1Pt23_1024","package":"druntime","parentType":"","signature":"F3_1Pt23_1024 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F5_1Pt23_1024","package":"druntime","parentType":"","signature":"F5_1Pt23_1024 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_128Mb_512","package":"druntime","parentType":"","signature":"F3_128Mb_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_230Mb_512","package":"druntime","parentType":"","signature":"F3_230Mb_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F8_256_128","package":"druntime","parentType":"","signature":"F8_256_128 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_200Mb_512","package":"druntime","parentType":"","signature":"F3_200Mb_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_240M_512","package":"druntime","parentType":"","signature":"F3_240M_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winioctl","name":"F3_32M_512","package":"druntime","parentType":"","signature":"F3_32M_512 = ","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MEDIA_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PMEDIA_TYPE","package":"druntime","parentType":"","signature":"PMEDIA_TYPE = MEDIA_TYPE *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PMEDIA_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_GEOMETRY","package":"druntime","parentType":"","signature":"DISK_GEOMETRY","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_GEOMETRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_GEOMETRY","package":"druntime","parentType":"","signature":"PDISK_GEOMETRY = DISK_GEOMETRY *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_GEOMETRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_GEOMETRY_EX","package":"druntime","parentType":"","signature":"DISK_GEOMETRY_EX","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_GEOMETRY_EX"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"Data","package":"druntime","parentType":"DISK_GEOMETRY_EX","signature":"BYTE * Data()","url":"/ddoc/druntime/core/sys/windows/winioctl/DISK_GEOMETRY_EX.Data.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_GEOMETRY_EX","package":"druntime","parentType":"","signature":"PDISK_GEOMETRY_EX = DISK_GEOMETRY_EX *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_GEOMETRY_EX"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_GROW_PARTITION","package":"druntime","parentType":"","signature":"DISK_GROW_PARTITION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_GROW_PARTITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_GROW_PARTITION","package":"druntime","parentType":"","signature":"PDISK_GROW_PARTITION = DISK_GROW_PARTITION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_GROW_PARTITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_PARTITION_INFO","package":"druntime","parentType":"","signature":"DISK_PARTITION_INFO","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_PARTITION_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_PARTITION_INFO","package":"druntime","parentType":"","signature":"PDISK_PARTITION_INFO = DISK_PARTITION_INFO *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_PARTITION_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_PERFORMANCE","package":"druntime","parentType":"","signature":"DISK_PERFORMANCE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_PERFORMANCE"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_PERFORMANCE","package":"druntime","parentType":"","signature":"PDISK_PERFORMANCE = DISK_PERFORMANCE *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_PERFORMANCE"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_RECORD","package":"druntime","parentType":"","signature":"DISK_RECORD","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_RECORD","package":"druntime","parentType":"","signature":"PDISK_RECORD = DISK_RECORD *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_LOGGING","package":"druntime","parentType":"","signature":"DISK_LOGGING","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_LOGGING"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_LOGGING","package":"druntime","parentType":"","signature":"PDISK_LOGGING = DISK_LOGGING *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_LOGGING"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISKQUOTA_USER_INFORMATION","package":"druntime","parentType":"","signature":"DISKQUOTA_USER_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISKQUOTA_USER_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISKQUOTA_USER_INFORMATION","package":"druntime","parentType":"","signature":"PDISKQUOTA_USER_INFORMATION = DISKQUOTA_USER_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISKQUOTA_USER_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"FORMAT_PARAMETERS","package":"druntime","parentType":"","signature":"FORMAT_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#FORMAT_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PFORMAT_PARAMETERS","package":"druntime","parentType":"","signature":"PFORMAT_PARAMETERS = FORMAT_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PFORMAT_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"FORMAT_EX_PARAMETERS","package":"druntime","parentType":"","signature":"FORMAT_EX_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#FORMAT_EX_PARAMETERS"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"SectorNumber","package":"druntime","parentType":"FORMAT_EX_PARAMETERS","signature":"WORD * SectorNumber()","url":"/ddoc/druntime/core/sys/windows/winioctl/FORMAT_EX_PARAMETERS.SectorNumber.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PFORMAT_EX_PARAMETERS","package":"druntime","parentType":"","signature":"PFORMAT_EX_PARAMETERS = FORMAT_EX_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PFORMAT_EX_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"GET_LENGTH_INFORMATION","package":"druntime","parentType":"","signature":"GET_LENGTH_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#GET_LENGTH_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"HISTOGRAM_BUCKET","package":"druntime","parentType":"","signature":"HISTOGRAM_BUCKET","url":"/ddoc/druntime/core/sys/windows/winioctl.html#HISTOGRAM_BUCKET"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PHISTOGRAM_BUCKET","package":"druntime","parentType":"","signature":"PHISTOGRAM_BUCKET = HISTOGRAM_BUCKET *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PHISTOGRAM_BUCKET"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_HISTOGRAM","package":"druntime","parentType":"","signature":"DISK_HISTOGRAM","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_HISTOGRAM"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_HISTOGRAM","package":"druntime","parentType":"","signature":"PDISK_HISTOGRAM = DISK_HISTOGRAM *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_HISTOGRAM"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DISK_EXTENT","package":"druntime","parentType":"","signature":"DISK_EXTENT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DISK_EXTENT"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDISK_EXTENT","package":"druntime","parentType":"","signature":"PDISK_EXTENT = DISK_EXTENT *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDISK_EXTENT"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"VOLUME_DISK_EXTENTS","package":"druntime","parentType":"","signature":"VOLUME_DISK_EXTENTS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#VOLUME_DISK_EXTENTS"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"Extents","package":"druntime","parentType":"VOLUME_DISK_EXTENTS","signature":"DISK_EXTENT * Extents()","url":"/ddoc/druntime/core/sys/windows/winioctl/VOLUME_DISK_EXTENTS.Extents.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PVOLUME_DISK_EXTENTS","package":"druntime","parentType":"","signature":"PVOLUME_DISK_EXTENTS = VOLUME_DISK_EXTENTS *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PVOLUME_DISK_EXTENTS"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PARTITION_INFORMATION","package":"druntime","parentType":"","signature":"PARTITION_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PPARTITION_INFORMATION","package":"druntime","parentType":"","signature":"PPARTITION_INFORMATION = PARTITION_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PPARTITION_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DRIVE_LAYOUT_INFORMATION","package":"druntime","parentType":"","signature":"DRIVE_LAYOUT_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DRIVE_LAYOUT_INFORMATION"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"PartitionEntry","package":"druntime","parentType":"DRIVE_LAYOUT_INFORMATION","signature":"PARTITION_INFORMATION * PartitionEntry()","url":"/ddoc/druntime/core/sys/windows/winioctl/DRIVE_LAYOUT_INFORMATION.PartitionEntry.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDRIVE_LAYOUT_INFORMATION","package":"druntime","parentType":"","signature":"PDRIVE_LAYOUT_INFORMATION = DRIVE_LAYOUT_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDRIVE_LAYOUT_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DRIVE_LAYOUT_INFORMATION_GPT","package":"druntime","parentType":"","signature":"DRIVE_LAYOUT_INFORMATION_GPT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DRIVE_LAYOUT_INFORMATION_GPT"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDRIVE_LAYOUT_INFORMATION_GPT","package":"druntime","parentType":"","signature":"PDRIVE_LAYOUT_INFORMATION_GPT = DRIVE_LAYOUT_INFORMATION_GPT *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDRIVE_LAYOUT_INFORMATION_GPT"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DRIVE_LAYOUT_INFORMATION_MBR","package":"druntime","parentType":"","signature":"DRIVE_LAYOUT_INFORMATION_MBR","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DRIVE_LAYOUT_INFORMATION_MBR"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDRIVE_LAYOUT_INFORMATION_MBR","package":"druntime","parentType":"","signature":"PDRIVE_LAYOUT_INFORMATION_MBR = DRIVE_LAYOUT_INFORMATION_MBR *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDRIVE_LAYOUT_INFORMATION_MBR"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PARTITION_INFORMATION_MBR","package":"druntime","parentType":"","signature":"PARTITION_INFORMATION_MBR","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_INFORMATION_MBR"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PARTITION_INFORMATION_GPT","package":"druntime","parentType":"","signature":"PARTITION_INFORMATION_GPT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_INFORMATION_GPT"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PARTITION_INFORMATION_EX","package":"druntime","parentType":"","signature":"PARTITION_INFORMATION_EX","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_INFORMATION_EX"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"DRIVE_LAYOUT_INFORMATION_EX","package":"druntime","parentType":"","signature":"DRIVE_LAYOUT_INFORMATION_EX","url":"/ddoc/druntime/core/sys/windows/winioctl.html#DRIVE_LAYOUT_INFORMATION_EX"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"PartitionEntry","package":"druntime","parentType":"DRIVE_LAYOUT_INFORMATION_EX","signature":"PARTITION_INFORMATION_EX * PartitionEntry()","url":"/ddoc/druntime/core/sys/windows/winioctl/DRIVE_LAYOUT_INFORMATION_EX.PartitionEntry.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PDRIVE_LAYOUT_INFORMATION_EX","package":"druntime","parentType":"","signature":"PDRIVE_LAYOUT_INFORMATION_EX = DRIVE_LAYOUT_INFORMATION_EX *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PDRIVE_LAYOUT_INFORMATION_EX"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"MOVE_FILE_DATA","package":"druntime","parentType":"","signature":"MOVE_FILE_DATA","url":"/ddoc/druntime/core/sys/windows/winioctl.html#MOVE_FILE_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PMOVE_FILE_DATA","package":"druntime","parentType":"","signature":"PMOVE_FILE_DATA = MOVE_FILE_DATA *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PMOVE_FILE_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PERF_BIN","package":"druntime","parentType":"","signature":"PERF_BIN","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PERF_BIN"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"BinsRanges","package":"druntime","parentType":"PERF_BIN","signature":"BIN_RANGE * BinsRanges()","url":"/ddoc/druntime/core/sys/windows/winioctl/PERF_BIN.BinsRanges.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PPERF_BIN","package":"druntime","parentType":"","signature":"PPERF_BIN = PERF_BIN *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PPERF_BIN"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"PREVENT_MEDIA_REMOVAL","package":"druntime","parentType":"","signature":"PREVENT_MEDIA_REMOVAL","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PREVENT_MEDIA_REMOVAL"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PPREVENT_MEDIA_REMOVAL","package":"druntime","parentType":"","signature":"PPREVENT_MEDIA_REMOVAL = PREVENT_MEDIA_REMOVAL *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PPREVENT_MEDIA_REMOVAL"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"RETRIEVAL_POINTERS_BUFFER","package":"druntime","parentType":"","signature":"RETRIEVAL_POINTERS_BUFFER","url":"/ddoc/druntime/core/sys/windows/winioctl.html#RETRIEVAL_POINTERS_BUFFER"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"Extents","package":"druntime","parentType":"RETRIEVAL_POINTERS_BUFFER","signature":"Extent * Extents()","url":"/ddoc/druntime/core/sys/windows/winioctl/RETRIEVAL_POINTERS_BUFFER.Extents.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PRETRIEVAL_POINTERS_BUFFER","package":"druntime","parentType":"","signature":"PRETRIEVAL_POINTERS_BUFFER = RETRIEVAL_POINTERS_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PRETRIEVAL_POINTERS_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"REASSIGN_BLOCKS","package":"druntime","parentType":"","signature":"REASSIGN_BLOCKS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#REASSIGN_BLOCKS"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"BlockNumber","package":"druntime","parentType":"REASSIGN_BLOCKS","signature":"DWORD * BlockNumber()","url":"/ddoc/druntime/core/sys/windows/winioctl/REASSIGN_BLOCKS.BlockNumber.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PREASSIGN_BLOCKS","package":"druntime","parentType":"","signature":"PREASSIGN_BLOCKS = REASSIGN_BLOCKS *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PREASSIGN_BLOCKS"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"SET_PARTITION_INFORMATION","package":"druntime","parentType":"","signature":"SET_PARTITION_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#SET_PARTITION_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PSET_PARTITION_INFORMATION","package":"druntime","parentType":"","signature":"PSET_PARTITION_INFORMATION = SET_PARTITION_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PSET_PARTITION_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"STARTING_LCN_INPUT_BUFFER","package":"druntime","parentType":"","signature":"STARTING_LCN_INPUT_BUFFER","url":"/ddoc/druntime/core/sys/windows/winioctl.html#STARTING_LCN_INPUT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PSTARTING_LCN_INPUT_BUFFER","package":"druntime","parentType":"","signature":"PSTARTING_LCN_INPUT_BUFFER = STARTING_LCN_INPUT_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PSTARTING_LCN_INPUT_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"STARTING_VCN_INPUT_BUFFER","package":"druntime","parentType":"","signature":"STARTING_VCN_INPUT_BUFFER","url":"/ddoc/druntime/core/sys/windows/winioctl.html#STARTING_VCN_INPUT_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PSTARTING_VCN_INPUT_BUFFER","package":"druntime","parentType":"","signature":"PSTARTING_VCN_INPUT_BUFFER = STARTING_VCN_INPUT_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PSTARTING_VCN_INPUT_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"VERIFY_INFORMATION","package":"druntime","parentType":"","signature":"VERIFY_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winioctl.html#VERIFY_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PVERIFY_INFORMATION","package":"druntime","parentType":"","signature":"PVERIFY_INFORMATION = VERIFY_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PVERIFY_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"VOLUME_BITMAP_BUFFER","package":"druntime","parentType":"","signature":"VOLUME_BITMAP_BUFFER","url":"/ddoc/druntime/core/sys/windows/winioctl.html#VOLUME_BITMAP_BUFFER"},{"doc":"","kind":"method","module":"core.sys.windows.winioctl","name":"Buffer","package":"druntime","parentType":"VOLUME_BITMAP_BUFFER","signature":"BYTE * Buffer()","url":"/ddoc/druntime/core/sys/windows/winioctl/VOLUME_BITMAP_BUFFER.Buffer.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PVOLUME_BITMAP_BUFFER","package":"druntime","parentType":"","signature":"PVOLUME_BITMAP_BUFFER = VOLUME_BITMAP_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PVOLUME_BITMAP_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winioctl","name":"NTFS_VOLUME_DATA_BUFFER","package":"druntime","parentType":"","signature":"NTFS_VOLUME_DATA_BUFFER","url":"/ddoc/druntime/core/sys/windows/winioctl.html#NTFS_VOLUME_DATA_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.winioctl","name":"PNTFS_VOLUME_DATA_BUFFER","package":"druntime","parentType":"","signature":"PNTFS_VOLUME_DATA_BUFFER = NTFS_VOLUME_DATA_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PNTFS_VOLUME_DATA_BUFFER"},{"doc":"","kind":"template","module":"core.sys.windows.winioctl","name":"CTL_CODE_T","package":"druntime","parentType":"","signature":"CTL_CODE_T(DEVICE_TYPE t,  uint  f,  uint  m,  uint  a)","url":"/ddoc/druntime/core/sys/windows/winioctl.html#CTL_CODE_T"},{"doc":"","kind":"variable","module":"core.sys.windows.winioctl","name":"HIST_NO_OF_BUCKETS","package":"druntime","parentType":"","signature":"size_t HIST_NO_OF_BUCKETS","url":"/ddoc/druntime/core/sys/windows/winioctl.html#HIST_NO_OF_BUCKETS"},{"doc":"","kind":"variable","module":"core.sys.windows.winioctl","name":"IOCTL_STORAGE_BASE","package":"druntime","parentType":"","signature":"DEVICE_TYPE IOCTL_STORAGE_BASE","url":"/ddoc/druntime/core/sys/windows/winioctl.html#IOCTL_STORAGE_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winioctl","name":"PARTITION_NTFT","package":"druntime","parentType":"","signature":"BYTE PARTITION_NTFT","url":"/ddoc/druntime/core/sys/windows/winioctl.html#PARTITION_NTFT"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winldap","name":"core.sys.windows.winldap","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winldap.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"printf","package":"druntime","parentType":"","signature":"int printf(const  scope  char *  format, ...)","url":"/ddoc/druntime/core/sys/windows/winldap/printf.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_perror","package":"druntime","parentType":"","signature":"int ldap_perror(LDAP *  handle,  char *  message)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_perror.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_initA","package":"druntime","parentType":"","signature":"PLDAP ldap_initA(PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_initA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_initW","package":"druntime","parentType":"","signature":"PLDAP ldap_initW(PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_initW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_openA","package":"druntime","parentType":"","signature":"PLDAP ldap_openA(PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_openA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_openW","package":"druntime","parentType":"","signature":"PLDAP ldap_openW(PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_openW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"cldap_openA","package":"druntime","parentType":"","signature":"PLDAP cldap_openA(PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/cldap_openA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"cldap_openW","package":"druntime","parentType":"","signature":"PLDAP cldap_openW(PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/cldap_openW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_connect","package":"druntime","parentType":"","signature":"ULONG ldap_connect(LDAP *,  LDAP_TIMEVAL *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_connect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sslinitA","package":"druntime","parentType":"","signature":"PLDAP ldap_sslinitA(PCHAR,  ULONG,  int)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sslinitA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sslinitW","package":"druntime","parentType":"","signature":"PLDAP ldap_sslinitW(PWCHAR,  ULONG,  int)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sslinitW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_start_tls_sA","package":"druntime","parentType":"","signature":"ULONG ldap_start_tls_sA(LDAP *,  PLDAPControlA *,  PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_start_tls_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_start_tls_sW","package":"druntime","parentType":"","signature":"ULONG ldap_start_tls_sW(LDAP *,  PLDAPControlW *,  PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_start_tls_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_stop_tls_s","package":"druntime","parentType":"","signature":"BOOLEAN ldap_stop_tls_s(LDAP *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_stop_tls_s.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_optionA","package":"druntime","parentType":"","signature":"ULONG ldap_get_optionA(LDAP *,  int,  void *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_optionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_optionW","package":"druntime","parentType":"","signature":"ULONG ldap_get_optionW(LDAP *,  int,  void *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_optionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_set_optionA","package":"druntime","parentType":"","signature":"ULONG ldap_set_optionA(LDAP *,  int,  void *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_set_optionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_set_optionW","package":"druntime","parentType":"","signature":"ULONG ldap_set_optionW(LDAP *,  int,  void *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_set_optionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_control_freeA","package":"druntime","parentType":"","signature":"ULONG ldap_control_freeA(LDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_control_freeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_control_freeW","package":"druntime","parentType":"","signature":"ULONG ldap_control_freeW(LDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_control_freeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_controls_freeA","package":"druntime","parentType":"","signature":"ULONG ldap_controls_freeA(LDAPControlA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_controls_freeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_controls_freeW","package":"druntime","parentType":"","signature":"ULONG ldap_controls_freeW(LDAPControlW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_controls_freeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_free_controlsA","package":"druntime","parentType":"","signature":"ULONG ldap_free_controlsA(LDAPControlA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_free_controlsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_free_controlsW","package":"druntime","parentType":"","signature":"ULONG ldap_free_controlsW(LDAPControlW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_free_controlsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sasl_bindA","package":"druntime","parentType":"","signature":"ULONG ldap_sasl_bindA(LDAP *,  PCSTR,  PCSTR,  BERVAL *,  PLDAPControlA *,\n       PLDAPControlA *,  int *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sasl_bindA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sasl_bindW","package":"druntime","parentType":"","signature":"ULONG ldap_sasl_bindW(LDAP *,  PCWSTR,  PCWSTR,  BERVAL *,  PLDAPControlW *,\n       PLDAPControlW *,  int *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sasl_bindW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sasl_bind_sA","package":"druntime","parentType":"","signature":"ULONG ldap_sasl_bind_sA(LDAP *,  PCSTR,  PCSTR,  BERVAL *,  PLDAPControlA *,\n       PLDAPControlA *,  PBERVAL *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sasl_bind_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_sasl_bind_sW","package":"druntime","parentType":"","signature":"ULONG ldap_sasl_bind_sW(LDAP *,  PCWSTR,  PCWSTR,  BERVAL *,  PLDAPControlW *,\n       PLDAPControlW *,  PBERVAL *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_sasl_bind_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_simple_bindA","package":"druntime","parentType":"","signature":"ULONG ldap_simple_bindA(LDAP *,  PSTR,  PSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_simple_bindA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_simple_bindW","package":"druntime","parentType":"","signature":"ULONG ldap_simple_bindW(LDAP *,  PWSTR,  PWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_simple_bindW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_simple_bind_sA","package":"druntime","parentType":"","signature":"ULONG ldap_simple_bind_sA(LDAP *,  PSTR,  PSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_simple_bind_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_simple_bind_sW","package":"druntime","parentType":"","signature":"ULONG ldap_simple_bind_sW(LDAP *,  PWSTR,  PWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_simple_bind_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_unbind","package":"druntime","parentType":"","signature":"ULONG ldap_unbind(LDAP *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_unbind.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_unbind_s","package":"druntime","parentType":"","signature":"ULONG ldap_unbind_s(LDAP *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_unbind_s.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_extA","package":"druntime","parentType":"","signature":"ULONG ldap_search_extA(LDAP *,  PCSTR,  ULONG,  PCSTR,  PZPSTR,  ULONG,\n       PLDAPControlA *,  PLDAPControlA *,  ULONG,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_extW","package":"druntime","parentType":"","signature":"ULONG ldap_search_extW(LDAP *,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,  ULONG,\n       PLDAPControlW *,  PLDAPControlW *,  ULONG,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_search_ext_sA(LDAP *,  PCSTR,  ULONG,  PCSTR,  PZPSTR,  ULONG,\n       PLDAPControlA *,  PLDAPControlA *,  LDAP_TIMEVAL *,  ULONG,  PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_search_ext_sW(LDAP *,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,  ULONG,\n       PLDAPControlW *,  PLDAPControlW *,  LDAP_TIMEVAL *,  ULONG,  PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_searchA","package":"druntime","parentType":"","signature":"ULONG ldap_searchA(LDAP *,  PCSTR,  ULONG,  PCSTR,  PZPSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_searchA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_searchW","package":"druntime","parentType":"","signature":"ULONG ldap_searchW(LDAP *,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_searchW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_sA","package":"druntime","parentType":"","signature":"ULONG ldap_search_sA(LDAP *,  PCSTR,  ULONG,  PCSTR,  PZPSTR,  ULONG,\n       PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_sW","package":"druntime","parentType":"","signature":"ULONG ldap_search_sW(LDAP *,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,  ULONG,\n       PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_stA","package":"druntime","parentType":"","signature":"ULONG ldap_search_stA(LDAP *,  PCSTR,  ULONG,  PCSTR,  PZPSTR,  ULONG,\n       LDAP_TIMEVAL *,  PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_stA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_stW","package":"druntime","parentType":"","signature":"ULONG ldap_search_stW(LDAP *,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,  ULONG,\n       LDAP_TIMEVAL *,  PLDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_stW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_extA","package":"druntime","parentType":"","signature":"ULONG ldap_compare_extA(LDAP *,  PCSTR,  PCSTR,  PCSTR,  BerValue *,\n       PLDAPControlA *,  PLDAPControlA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_extW","package":"druntime","parentType":"","signature":"ULONG ldap_compare_extW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR,  BerValue *,\n       PLDAPControlW *,  PLDAPControlW *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_compare_ext_sA(LDAP *,  PCSTR,  PCSTR,  PCSTR,  BerValue *,\n       PLDAPControlA *,  PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_compare_ext_sW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR,  BerValue *,\n       PLDAPControlW *,  PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compareA","package":"druntime","parentType":"","signature":"ULONG ldap_compareA(LDAP *,  PCSTR,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compareA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compareW","package":"druntime","parentType":"","signature":"ULONG ldap_compareW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compareW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_sA","package":"druntime","parentType":"","signature":"ULONG ldap_compare_sA(LDAP *,  PCSTR,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_compare_sW","package":"druntime","parentType":"","signature":"ULONG ldap_compare_sW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_compare_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_extA","package":"druntime","parentType":"","signature":"ULONG ldap_modify_extA(LDAP *,  PCSTR,  LDAPModA * *,  PLDAPControlA *,\n       PLDAPControlA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_extW","package":"druntime","parentType":"","signature":"ULONG ldap_modify_extW(LDAP *,  PCWSTR,  LDAPModW * *,  PLDAPControlW *,\n       PLDAPControlW *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_modify_ext_sA(LDAP *,  PCSTR,  LDAPModA * *,  PLDAPControlA *,\n       PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_modify_ext_sW(LDAP *,  PCWSTR,  LDAPModW * *,  PLDAPControlW *,\n       PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modifyA","package":"druntime","parentType":"","signature":"ULONG ldap_modifyA(LDAP *,  PSTR,  LDAPModA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modifyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modifyW","package":"druntime","parentType":"","signature":"ULONG ldap_modifyW(LDAP *,  PWSTR,  LDAPModW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modifyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_sA","package":"druntime","parentType":"","signature":"ULONG ldap_modify_sA(LDAP *,  PSTR,  LDAPModA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modify_sW","package":"druntime","parentType":"","signature":"ULONG ldap_modify_sW(LDAP *,  PWSTR,  LDAPModW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modify_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_rename_extA","package":"druntime","parentType":"","signature":"ULONG ldap_rename_extA(LDAP *,  PCSTR,  PCSTR,  PCSTR,  INT,  PLDAPControlA *,\n       PLDAPControlA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_rename_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_rename_extW","package":"druntime","parentType":"","signature":"ULONG ldap_rename_extW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR,  INT,  PLDAPControlW *,\n       PLDAPControlW *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_rename_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_rename_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_rename_ext_sA(LDAP *,  PCSTR,  PCSTR,  PCSTR,  INT,\n       PLDAPControlA *,  PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_rename_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_rename_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_rename_ext_sW(LDAP *,  PCWSTR,  PCWSTR,  PCWSTR,  INT,\n       PLDAPControlW *,  PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_rename_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_extA","package":"druntime","parentType":"","signature":"ULONG ldap_add_extA(LDAP *,  PCSTR,  LDAPModA * *,  PLDAPControlA *,\n       PLDAPControlA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_extW","package":"druntime","parentType":"","signature":"ULONG ldap_add_extW(LDAP *,  PCWSTR,  LDAPModW * *,  PLDAPControlW *,\n       PLDAPControlW *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_add_ext_sA(LDAP *,  PCSTR,  LDAPModA * *,  PLDAPControlA *,\n       PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_add_ext_sW(LDAP *,  PCWSTR,  LDAPModW * *,  PLDAPControlW *,\n       PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_addA","package":"druntime","parentType":"","signature":"ULONG ldap_addA(LDAP *,  PSTR,  LDAPModA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_addA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_addW","package":"druntime","parentType":"","signature":"ULONG ldap_addW(LDAP *,  PWSTR,  LDAPModW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_addW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_sA","package":"druntime","parentType":"","signature":"ULONG ldap_add_sA(LDAP *,  PSTR,  LDAPModA * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_add_sW","package":"druntime","parentType":"","signature":"ULONG ldap_add_sW(LDAP *,  PWSTR,  LDAPModW * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_add_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_extA","package":"druntime","parentType":"","signature":"ULONG ldap_delete_extA(LDAP *,  PCSTR,  PLDAPControlA *,  PLDAPControlA *,\n       ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_extA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_extW","package":"druntime","parentType":"","signature":"ULONG ldap_delete_extW(LDAP *,  PCWSTR,  PLDAPControlW *,  PLDAPControlW *,\n       ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_extW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_ext_sA","package":"druntime","parentType":"","signature":"ULONG ldap_delete_ext_sA(LDAP *,  PCSTR,  PLDAPControlA *,  PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_ext_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_ext_sW","package":"druntime","parentType":"","signature":"ULONG ldap_delete_ext_sW(LDAP *,  PCWSTR,  PLDAPControlW *,  PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_ext_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_deleteA","package":"druntime","parentType":"","signature":"ULONG ldap_deleteA(LDAP *,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_deleteA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_deleteW","package":"druntime","parentType":"","signature":"ULONG ldap_deleteW(LDAP *,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_deleteW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_sA","package":"druntime","parentType":"","signature":"ULONG ldap_delete_sA(LDAP *,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_delete_sW","package":"druntime","parentType":"","signature":"ULONG ldap_delete_sW(LDAP *,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_delete_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_extended_operationA","package":"druntime","parentType":"","signature":"ULONG ldap_extended_operationA(LDAP *,  PCSTR,  BerValue *,  PLDAPControlA *,\n       PLDAPControlA *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_extended_operationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_extended_operationW","package":"druntime","parentType":"","signature":"ULONG ldap_extended_operationW(LDAP *,  PCWSTR,  BerValue *,  PLDAPControlW *,\n       PLDAPControlW *,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_extended_operationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_extended_operation_sA","package":"druntime","parentType":"","signature":"ULONG ldap_extended_operation_sA(LDAP *,  PSTR,  BerValue *,  PLDAPControlA *,\n       PLDAPControlA *,  PCHAR *,  BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_extended_operation_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_extended_operation_sW","package":"druntime","parentType":"","signature":"ULONG ldap_extended_operation_sW(LDAP *,  PWSTR,  BerValue *,  PLDAPControlW *,\n       PLDAPControlW *,  PWCHAR *,  BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_extended_operation_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_close_extended_op","package":"druntime","parentType":"","signature":"ULONG ldap_close_extended_op(LDAP *,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_close_extended_op.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_abandon","package":"druntime","parentType":"","signature":"ULONG ldap_abandon(LDAP *,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_abandon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_result","package":"druntime","parentType":"","signature":"ULONG ldap_result(LDAP *,  ULONG,  ULONG,  LDAP_TIMEVAL *,  LDAPMessage * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_result.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_msgfree","package":"druntime","parentType":"","signature":"ULONG ldap_msgfree(LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_msgfree.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_resultA","package":"druntime","parentType":"","signature":"ULONG ldap_parse_resultA(LDAP *,  LDAPMessage *,  ULONG *,  PSTR *,  PSTR *,\n       PZPSTR *,  PLDAPControlA * *,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_resultA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_resultW","package":"druntime","parentType":"","signature":"ULONG ldap_parse_resultW(LDAP *,  LDAPMessage *,  ULONG *,  PWSTR *,  PWSTR *,\n       PZPWSTR *,  PLDAPControlW * *,  BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_resultW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_extended_resultA","package":"druntime","parentType":"","signature":"ULONG ldap_parse_extended_resultA(LDAP,  LDAPMessage *,  PSTR *,  BerValue * *,\n       BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_extended_resultA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_extended_resultW","package":"druntime","parentType":"","signature":"ULONG ldap_parse_extended_resultW(LDAP,  LDAPMessage *,  PWSTR *,  BerValue * *,\n       BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_extended_resultW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_err2stringA","package":"druntime","parentType":"","signature":"PCHAR ldap_err2stringA(ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_err2stringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_err2stringW","package":"druntime","parentType":"","signature":"PWCHAR ldap_err2stringW(ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_err2stringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"LdapGetLastError","package":"druntime","parentType":"","signature":"ULONG LdapGetLastError()","url":"/ddoc/druntime/core/sys/windows/winldap/LdapGetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"LdapMapErrorToWin32","package":"druntime","parentType":"","signature":"ULONG LdapMapErrorToWin32(ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/LdapMapErrorToWin32.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_result2error","package":"druntime","parentType":"","signature":"ULONG ldap_result2error(LDAP *,  LDAPMessage *,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_result2error.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_first_entry","package":"druntime","parentType":"","signature":"PLDAPMessage ldap_first_entry(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_first_entry.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_next_entry","package":"druntime","parentType":"","signature":"PLDAPMessage ldap_next_entry(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_next_entry.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_first_reference","package":"druntime","parentType":"","signature":"PLDAPMessage ldap_first_reference(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_first_reference.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_next_reference","package":"druntime","parentType":"","signature":"PLDAPMessage ldap_next_reference(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_next_reference.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_count_entries","package":"druntime","parentType":"","signature":"ULONG ldap_count_entries(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_count_entries.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_count_references","package":"druntime","parentType":"","signature":"ULONG ldap_count_references(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_count_references.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_first_attributeA","package":"druntime","parentType":"","signature":"PCHAR ldap_first_attributeA(LDAP *,  LDAPMessage *,  BerElement * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_first_attributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_first_attributeW","package":"druntime","parentType":"","signature":"PWCHAR ldap_first_attributeW(LDAP *,  LDAPMessage *,  BerElement * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_first_attributeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_next_attributeA","package":"druntime","parentType":"","signature":"PCHAR ldap_next_attributeA(LDAP *,  LDAPMessage *,  BerElement *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_next_attributeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_next_attributeW","package":"druntime","parentType":"","signature":"PWCHAR ldap_next_attributeW(LDAP *,  LDAPMessage *,  BerElement *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_next_attributeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_memfreeA","package":"druntime","parentType":"","signature":"VOID ldap_memfreeA(PCHAR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_memfreeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_memfreeW","package":"druntime","parentType":"","signature":"VOID ldap_memfreeW(PWCHAR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_memfreeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_valuesA","package":"druntime","parentType":"","signature":"PCHAR * ldap_get_valuesA(LDAP *,  LDAPMessage *,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_valuesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_valuesW","package":"druntime","parentType":"","signature":"PWCHAR * ldap_get_valuesW(LDAP *,  LDAPMessage *,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_valuesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_values_lenA","package":"druntime","parentType":"","signature":"BerValue * * ldap_get_values_lenA(LDAP *,  LDAPMessage *,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_values_lenA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_values_lenW","package":"druntime","parentType":"","signature":"BerValue * * ldap_get_values_lenW(LDAP *,  LDAPMessage *,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_values_lenW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_count_valuesA","package":"druntime","parentType":"","signature":"ULONG ldap_count_valuesA(PCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_count_valuesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_count_valuesW","package":"druntime","parentType":"","signature":"ULONG ldap_count_valuesW(PWCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_count_valuesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_count_values_len","package":"druntime","parentType":"","signature":"ULONG ldap_count_values_len(BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_count_values_len.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_value_freeA","package":"druntime","parentType":"","signature":"ULONG ldap_value_freeA(PCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_value_freeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_value_freeW","package":"druntime","parentType":"","signature":"ULONG ldap_value_freeW(PWCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_value_freeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_value_free_len","package":"druntime","parentType":"","signature":"ULONG ldap_value_free_len(BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_value_free_len.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_dnA","package":"druntime","parentType":"","signature":"PCHAR ldap_get_dnA(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_dnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_dnW","package":"druntime","parentType":"","signature":"PWCHAR ldap_get_dnW(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_dnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_explode_dnA","package":"druntime","parentType":"","signature":"PCHAR ldap_explode_dnA(PCSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_explode_dnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_explode_dnW","package":"druntime","parentType":"","signature":"PWCHAR ldap_explode_dnW(PCWSTR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_explode_dnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_dn2ufnA","package":"druntime","parentType":"","signature":"PCHAR ldap_dn2ufnA(PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_dn2ufnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_dn2ufnW","package":"druntime","parentType":"","signature":"PWCHAR ldap_dn2ufnW(PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_dn2ufnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_ufn2dnA","package":"druntime","parentType":"","signature":"ULONG ldap_ufn2dnA(PCSTR,  PSTR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_ufn2dnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_ufn2dnW","package":"druntime","parentType":"","signature":"ULONG ldap_ufn2dnW(PCWSTR,  PWSTR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_ufn2dnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_referenceA","package":"druntime","parentType":"","signature":"ULONG ldap_parse_referenceA(LDAP *,  LDAPMessage *,  PCHAR * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_referenceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_referenceW","package":"druntime","parentType":"","signature":"ULONG ldap_parse_referenceW(LDAP *,  LDAPMessage *,  PWCHAR * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_referenceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_check_filterA","package":"druntime","parentType":"","signature":"ULONG ldap_check_filterA(LDAP *,  PSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_check_filterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_check_filterW","package":"druntime","parentType":"","signature":"ULONG ldap_check_filterW(LDAP *,  PWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_check_filterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_page_controlA","package":"druntime","parentType":"","signature":"ULONG ldap_create_page_controlA(PLDAP,  ULONG,  BerValue *,  UCHAR,\n       PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_page_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_page_controlW","package":"druntime","parentType":"","signature":"ULONG ldap_create_page_controlW(PLDAP,  ULONG,  BerValue *,  UCHAR,\n       PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_page_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_sort_controlA","package":"druntime","parentType":"","signature":"ULONG ldap_create_sort_controlA(PLDAP,  PLDAPSortKeyA *,  UCHAR,\n       PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_sort_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_sort_controlW","package":"druntime","parentType":"","signature":"ULONG ldap_create_sort_controlW(PLDAP,  PLDAPSortKeyW *,  UCHAR,\n     PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_sort_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_vlv_controlA","package":"druntime","parentType":"","signature":"INT ldap_create_vlv_controlA(LDAP *,  LDAPVLVInfo *,  UCHAR,  PLDAPControlA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_vlv_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_create_vlv_controlW","package":"druntime","parentType":"","signature":"INT ldap_create_vlv_controlW(LDAP *,  LDAPVLVInfo *,  UCHAR,  PLDAPControlW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_create_vlv_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_encode_sort_controlA","package":"druntime","parentType":"","signature":"ULONG ldap_encode_sort_controlA(PLDAP,  PLDAPSortKeyA *,  PLDAPControlA,\n       BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_encode_sort_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_encode_sort_controlW","package":"druntime","parentType":"","signature":"ULONG ldap_encode_sort_controlW(PLDAP,  PLDAPSortKeyW *,  PLDAPControlW,\n       BOOLEAN)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_encode_sort_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_escape_filter_elementA","package":"druntime","parentType":"","signature":"ULONG ldap_escape_filter_elementA(PCHAR,  ULONG,  PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_escape_filter_elementA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_escape_filter_elementW","package":"druntime","parentType":"","signature":"ULONG ldap_escape_filter_elementW(PWCHAR,  ULONG,  PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_escape_filter_elementW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_next_page","package":"druntime","parentType":"","signature":"ULONG ldap_get_next_page(PLDAP,  PLDAPSearch,  ULONG,  ULONG *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_next_page.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_next_page_s","package":"druntime","parentType":"","signature":"ULONG ldap_get_next_page_s(PLDAP,  PLDAPSearch,  LDAP_TIMEVAL *,  ULONG,\n       ULONG *,  LDAPMessage * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_next_page_s.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_get_paged_count","package":"druntime","parentType":"","signature":"ULONG ldap_get_paged_count(PLDAP,  PLDAPSearch,  ULONG *,  PLDAPMessage)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_get_paged_count.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_page_controlA","package":"druntime","parentType":"","signature":"ULONG ldap_parse_page_controlA(PLDAP,  PLDAPControlA *,  ULONG *,  BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_page_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_page_controlW","package":"druntime","parentType":"","signature":"ULONG ldap_parse_page_controlW(PLDAP,  PLDAPControlW *,  ULONG *,  BerValue * *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_page_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_sort_controlA","package":"druntime","parentType":"","signature":"ULONG ldap_parse_sort_controlA(PLDAP,  PLDAPControlA *,  ULONG *,  PCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_sort_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_sort_controlW","package":"druntime","parentType":"","signature":"ULONG ldap_parse_sort_controlW(PLDAP,  PLDAPControlW *,  ULONG *,  PWCHAR *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_sort_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_vlv_controlA","package":"druntime","parentType":"","signature":"INT ldap_parse_vlv_controlA(PLDAP,  PLDAPControlA *,  PULONG,  PULONG,\n       BerValue * *,  PINT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_vlv_controlA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_parse_vlv_controlW","package":"druntime","parentType":"","signature":"INT ldap_parse_vlv_controlW(PLDAP,  PLDAPControlW *,  PULONG,  PULONG,\n       BerValue * *,  PINT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_parse_vlv_controlW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_init_pageA","package":"druntime","parentType":"","signature":"PLDAPSearch ldap_search_init_pageA(PLDAP,  PCSTR,  ULONG,  PCSTR,  PZPSTR,\n       ULONG,  PLDAPControlA *,  PLDAPControlA *,  ULONG,  ULONG,  PLDAPSortKeyA *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_init_pageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_init_pageW","package":"druntime","parentType":"","signature":"PLDAPSearch ldap_search_init_pageW(PLDAP,  PCWSTR,  ULONG,  PCWSTR,  PZPWSTR,\n       ULONG,  PLDAPControlW *,  PLDAPControlW *,  ULONG,  ULONG,  PLDAPSortKeyW *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_init_pageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_search_abandon_page","package":"druntime","parentType":"","signature":"ULONG ldap_search_abandon_page(PLDAP,  PLDAPSearch)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_search_abandon_page.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_conn_from_msg","package":"druntime","parentType":"","signature":"LDAP ldap_conn_from_msg(LDAP *,  LDAPMessage *)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_conn_from_msg.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"LdapUnicodeToUTF8","package":"druntime","parentType":"","signature":"INT LdapUnicodeToUTF8(LPCWSTR,  int,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winldap/LdapUnicodeToUTF8.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"LdapUTF8ToUnicode","package":"druntime","parentType":"","signature":"INT LdapUTF8ToUnicode(LPCSTR,  int,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winldap/LdapUTF8ToUnicode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_bindA","package":"druntime","parentType":"","signature":"ULONG ldap_bindA(LDAP *,  PSTR,  PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_bindA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_bindW","package":"druntime","parentType":"","signature":"ULONG ldap_bindW(LDAP *,  PWSTR,  PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_bindW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_bind_sA","package":"druntime","parentType":"","signature":"ULONG ldap_bind_sA(LDAP *,  PSTR,  PCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_bind_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_bind_sW","package":"druntime","parentType":"","signature":"ULONG ldap_bind_sW(LDAP *,  PWSTR,  PWCHAR,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_bind_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdnA","package":"druntime","parentType":"","signature":"ULONG ldap_modrdnA(LDAP *,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdnA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdnW","package":"druntime","parentType":"","signature":"ULONG ldap_modrdnW(LDAP *,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdnW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn_sA","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn_sA(LDAP *,  PCSTR,  PCSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn_sW","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn_sW(LDAP *,  PCWSTR,  PCWSTR)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn_sW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn2A","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn2A(LDAP *,  PCSTR,  PCSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn2A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn2W","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn2W(LDAP *,  PCWSTR,  PCWSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn2W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn2_sA","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn2_sA(LDAP *,  PCSTR,  PCSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn2_sA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winldap","name":"ldap_modrdn2_sW","package":"druntime","parentType":"","signature":"ULONG ldap_modrdn2_sW(LDAP *,  PCWSTR,  PCWSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winldap/ldap_modrdn2_sW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAP","package":"druntime","parentType":"","signature":"LDAP","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAP","package":"druntime","parentType":"","signature":"PLDAP = LDAP *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAP"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPMessage","package":"druntime","parentType":"","signature":"LDAPMessage","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPMessage"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPMessage","package":"druntime","parentType":"","signature":"PLDAPMessage = LDAPMessage *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPMessage"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAP_TIMEVAL","package":"druntime","parentType":"","signature":"LDAP_TIMEVAL","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_TIMEVAL"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAP_TIMEVAL","package":"druntime","parentType":"","signature":"PLDAP_TIMEVAL = LDAP_TIMEVAL *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAP_TIMEVAL"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPAPIInfoA","package":"druntime","parentType":"","signature":"LDAPAPIInfoA","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPAPIInfoA"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPAPIInfoA","package":"druntime","parentType":"","signature":"PLDAPAPIInfoA = LDAPAPIInfoA *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPAPIInfoA"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPAPIInfoW","package":"druntime","parentType":"","signature":"LDAPAPIInfoW","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPAPIInfoW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPAPIInfoW","package":"druntime","parentType":"","signature":"PLDAPAPIInfoW = LDAPAPIInfoW *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPAPIInfoW"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPAPIFeatureInfoA","package":"druntime","parentType":"","signature":"LDAPAPIFeatureInfoA","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPAPIFeatureInfoA"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPAPIFeatureInfoA","package":"druntime","parentType":"","signature":"PLDAPAPIFeatureInfoA = LDAPAPIFeatureInfoA *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPAPIFeatureInfoA"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPAPIFeatureInfoW","package":"druntime","parentType":"","signature":"LDAPAPIFeatureInfoW","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPAPIFeatureInfoW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPAPIFeatureInfoW","package":"druntime","parentType":"","signature":"PLDAPAPIFeatureInfoW = LDAPAPIFeatureInfoW *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPAPIFeatureInfoW"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPControlA","package":"druntime","parentType":"","signature":"LDAPControlA","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPControlA"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPControlA","package":"druntime","parentType":"","signature":"PLDAPControlA = LDAPControlA *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPControlA"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPControlW","package":"druntime","parentType":"","signature":"LDAPControlW","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPControlW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPControlW","package":"druntime","parentType":"","signature":"PLDAPControlW = LDAPControlW *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPControlW"},{"doc":"","kind":"union","module":"core.sys.windows.winldap","name":"mod_vals_u_tA","package":"druntime","parentType":"","signature":"mod_vals_u_tA","url":"/ddoc/druntime/core/sys/windows/winldap.html#mod_vals_u_tA"},{"doc":"","kind":"union","module":"core.sys.windows.winldap","name":"mod_vals_u_tW","package":"druntime","parentType":"","signature":"mod_vals_u_tW","url":"/ddoc/druntime/core/sys/windows/winldap.html#mod_vals_u_tW"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPModA","package":"druntime","parentType":"","signature":"LDAPModA","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPModA"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPModA","package":"druntime","parentType":"","signature":"PLDAPModA = LDAPModA *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPModA"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPModW","package":"druntime","parentType":"","signature":"LDAPModW","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPModW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPModW","package":"druntime","parentType":"","signature":"PLDAPModW = LDAPModW *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPModW"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPSearch","package":"druntime","parentType":"","signature":"LDAPSearch","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPSearch"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPSearch","package":"druntime","parentType":"","signature":"PLDAPSearch = LDAPSearch *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPSearch"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPSortKeyA","package":"druntime","parentType":"","signature":"LDAPSortKeyA","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPSortKeyA"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPSortKeyA","package":"druntime","parentType":"","signature":"PLDAPSortKeyA = LDAPSortKeyA *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPSortKeyA"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPSortKeyW","package":"druntime","parentType":"","signature":"LDAPSortKeyW","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPSortKeyW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAPSortKeyW","package":"druntime","parentType":"","signature":"PLDAPSortKeyW = LDAPSortKeyW *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAPSortKeyW"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"QUERYFORCONNECTION","package":"druntime","parentType":"","signature":"QUERYFORCONNECTION = ULONG function(PLDAP,  PLDAP,  PWCHAR,  PCHAR,  ULONG,  PVOID,  PVOID,\n       PLDAP *)","url":"/ddoc/druntime/core/sys/windows/winldap.html#QUERYFORCONNECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"NOTIFYOFNEWCONNECTION","package":"druntime","parentType":"","signature":"NOTIFYOFNEWCONNECTION = BOOLEAN function(PLDAP,  PLDAP,  PWCHAR,  PCHAR,  PLDAP,  ULONG,  PVOID,\n       PVOID,  ULONG)","url":"/ddoc/druntime/core/sys/windows/winldap.html#NOTIFYOFNEWCONNECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"DEREFERENCECONNECTION","package":"druntime","parentType":"","signature":"DEREFERENCECONNECTION = ULONG function(PLDAP,  PLDAP)","url":"/ddoc/druntime/core/sys/windows/winldap.html#DEREFERENCECONNECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"QUERYCLIENTCERT","package":"druntime","parentType":"","signature":"QUERYCLIENTCERT = BOOLEAN function(PLDAP,  PSecPkgContext_IssuerListInfoEx,\n       PCCERT_CONTEXT *)","url":"/ddoc/druntime/core/sys/windows/winldap.html#QUERYCLIENTCERT"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAP_REFERRAL_CALLBACK","package":"druntime","parentType":"","signature":"LDAP_REFERRAL_CALLBACK","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_REFERRAL_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.winldap","name":"PLDAP_REFERRAL_CALLBACK","package":"druntime","parentType":"","signature":"PLDAP_REFERRAL_CALLBACK = LDAP_REFERRAL_CALLBACK *","url":"/ddoc/druntime/core/sys/windows/winldap.html#PLDAP_REFERRAL_CALLBACK"},{"doc":"","kind":"struct","module":"core.sys.windows.winldap","name":"LDAPVLVInfo","package":"druntime","parentType":"","signature":"LDAPVLVInfo","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAPVLVInfo"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_VENDOR_NAME","package":"druntime","parentType":"","signature":"TCHAR[] LDAP_VENDOR_NAME","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_VENDOR_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_API_VERSION","package":"druntime","parentType":"","signature":"LDAP_API_VERSION","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_API_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_VENDOR_VERSION","package":"druntime","parentType":"","signature":"LDAP_VENDOR_VERSION","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_VENDOR_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_API_INFO_VERSION","package":"druntime","parentType":"","signature":"LDAP_API_INFO_VERSION","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_API_INFO_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_FEATURE_INFO_VERSION","package":"druntime","parentType":"","signature":"LDAP_FEATURE_INFO_VERSION","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_FEATURE_INFO_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_OPT_OFF","package":"druntime","parentType":"","signature":"void * LDAP_OPT_OFF","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_OPT_OFF"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_NO_LIMIT","package":"druntime","parentType":"","signature":"LDAP_NO_LIMIT","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_NO_LIMIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_CONTROL_REFERRALS","package":"druntime","parentType":"","signature":"TCHAR[] LDAP_CONTROL_REFERRALS","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_CONTROL_REFERRALS"},{"doc":"","kind":"variable","module":"core.sys.windows.winldap","name":"LDAP_SERVER_SORT_OID","package":"druntime","parentType":"","signature":"TCHAR[] LDAP_SERVER_SORT_OID","url":"/ddoc/druntime/core/sys/windows/winldap.html#LDAP_SERVER_SORT_OID"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winnetwk","name":"core.sys.windows.winnetwk","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winnetwk.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnection2A","package":"druntime","parentType":"","signature":"DWORD WNetAddConnection2A(LPNETRESOURCEA,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnection2A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnection2W","package":"druntime","parentType":"","signature":"DWORD WNetAddConnection2W(LPNETRESOURCEW,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnection2W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnection3A","package":"druntime","parentType":"","signature":"DWORD WNetAddConnection3A(HWND,  LPNETRESOURCEA,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnection3A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnection3W","package":"druntime","parentType":"","signature":"DWORD WNetAddConnection3W(HWND,  LPNETRESOURCEW,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnection3W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetCancelConnection2A","package":"druntime","parentType":"","signature":"DWORD WNetCancelConnection2A(LPCSTR,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetCancelConnection2A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetCancelConnection2W","package":"druntime","parentType":"","signature":"DWORD WNetCancelConnection2W(LPCWSTR,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetCancelConnection2W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetConnectionA","package":"druntime","parentType":"","signature":"DWORD WNetGetConnectionA(LPCSTR,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetConnectionW","package":"druntime","parentType":"","signature":"DWORD WNetGetConnectionW(LPCWSTR,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetUseConnectionA","package":"druntime","parentType":"","signature":"DWORD WNetUseConnectionA(HWND,  LPNETRESOURCEA,  LPCSTR,  LPCSTR,  DWORD,\n       LPSTR,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetUseConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetUseConnectionW","package":"druntime","parentType":"","signature":"DWORD WNetUseConnectionW(HWND,  LPNETRESOURCEW,  LPCWSTR,  LPCWSTR,  DWORD,\n       LPWSTR,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetUseConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetSetConnectionA","package":"druntime","parentType":"","signature":"DWORD WNetSetConnectionA(LPCSTR,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetSetConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetSetConnectionW","package":"druntime","parentType":"","signature":"DWORD WNetSetConnectionW(LPCWSTR,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetSetConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetConnectionDialog","package":"druntime","parentType":"","signature":"DWORD WNetConnectionDialog(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetConnectionDialog.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetDisconnectDialog","package":"druntime","parentType":"","signature":"DWORD WNetDisconnectDialog(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetDisconnectDialog.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetConnectionDialog1A","package":"druntime","parentType":"","signature":"DWORD WNetConnectionDialog1A(LPCONNECTDLGSTRUCTA)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetConnectionDialog1A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetConnectionDialog1W","package":"druntime","parentType":"","signature":"DWORD WNetConnectionDialog1W(LPCONNECTDLGSTRUCTW)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetConnectionDialog1W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetDisconnectDialog1A","package":"druntime","parentType":"","signature":"DWORD WNetDisconnectDialog1A(LPDISCDLGSTRUCTA)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetDisconnectDialog1A.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetDisconnectDialog1W","package":"druntime","parentType":"","signature":"DWORD WNetDisconnectDialog1W(LPDISCDLGSTRUCTW)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetDisconnectDialog1W.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetOpenEnumA","package":"druntime","parentType":"","signature":"DWORD WNetOpenEnumA(DWORD,  DWORD,  DWORD,  LPNETRESOURCEA,  LPHANDLE)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetOpenEnumA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetOpenEnumW","package":"druntime","parentType":"","signature":"DWORD WNetOpenEnumW(DWORD,  DWORD,  DWORD,  LPNETRESOURCEW,  LPHANDLE)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetOpenEnumW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetEnumResourceA","package":"druntime","parentType":"","signature":"DWORD WNetEnumResourceA(HANDLE,  PDWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetEnumResourceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetEnumResourceW","package":"druntime","parentType":"","signature":"DWORD WNetEnumResourceW(HANDLE,  PDWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetEnumResourceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetCloseEnum","package":"druntime","parentType":"","signature":"DWORD WNetCloseEnum(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetCloseEnum.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetUniversalNameA","package":"druntime","parentType":"","signature":"DWORD WNetGetUniversalNameA(LPCSTR,  DWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetUniversalNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetUniversalNameW","package":"druntime","parentType":"","signature":"DWORD WNetGetUniversalNameW(LPCWSTR,  DWORD,  PVOID,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetUniversalNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetUserA","package":"druntime","parentType":"","signature":"DWORD WNetGetUserA(LPCSTR,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetUserA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetUserW","package":"druntime","parentType":"","signature":"DWORD WNetGetUserW(LPCWSTR,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetUserW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetProviderNameA","package":"druntime","parentType":"","signature":"DWORD WNetGetProviderNameA(DWORD,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetProviderNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetProviderNameW","package":"druntime","parentType":"","signature":"DWORD WNetGetProviderNameW(DWORD,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetProviderNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetNetworkInformationA","package":"druntime","parentType":"","signature":"DWORD WNetGetNetworkInformationA(LPCSTR,  LPNETINFOSTRUCT)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetNetworkInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetNetworkInformationW","package":"druntime","parentType":"","signature":"DWORD WNetGetNetworkInformationW(LPCWSTR,  LPNETINFOSTRUCT)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetNetworkInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetResourceInformationA","package":"druntime","parentType":"","signature":"DWORD WNetGetResourceInformationA(LPNETRESOURCEA,  LPVOID,  LPDWORD,\n       LPSTR *)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetResourceInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetResourceInformationW","package":"druntime","parentType":"","signature":"DWORD WNetGetResourceInformationW(LPNETRESOURCEA,  LPVOID,  LPDWORD,\n       LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetResourceInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetResourceParentA","package":"druntime","parentType":"","signature":"DWORD WNetGetResourceParentA(LPNETRESOURCEA,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetResourceParentA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetResourceParentW","package":"druntime","parentType":"","signature":"DWORD WNetGetResourceParentW(LPNETRESOURCEW,  LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetResourceParentW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetLastErrorA","package":"druntime","parentType":"","signature":"DWORD WNetGetLastErrorA(PDWORD,  LPSTR,  DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetLastErrorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetGetLastErrorW","package":"druntime","parentType":"","signature":"DWORD WNetGetLastErrorW(PDWORD,  LPWSTR,  DWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetGetLastErrorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"MultinetGetConnectionPerformanceA","package":"druntime","parentType":"","signature":"DWORD MultinetGetConnectionPerformanceA(LPNETRESOURCEA,\n       LPNETCONNECTINFOSTRUCT)","url":"/ddoc/druntime/core/sys/windows/winnetwk/MultinetGetConnectionPerformanceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"MultinetGetConnectionPerformanceW","package":"druntime","parentType":"","signature":"DWORD MultinetGetConnectionPerformanceW(LPNETRESOURCEW,\n       LPNETCONNECTINFOSTRUCT)","url":"/ddoc/druntime/core/sys/windows/winnetwk/MultinetGetConnectionPerformanceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnectionA","package":"druntime","parentType":"","signature":"DWORD WNetAddConnectionA(LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetAddConnectionW","package":"druntime","parentType":"","signature":"DWORD WNetAddConnectionW(LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetAddConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetCancelConnectionA","package":"druntime","parentType":"","signature":"DWORD WNetCancelConnectionA(LPCSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetCancelConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnetwk","name":"WNetCancelConnectionW","package":"druntime","parentType":"","signature":"DWORD WNetCancelConnectionW(LPCWSTR,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winnetwk/WNetCancelConnectionW.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"NETRESOURCEA","package":"druntime","parentType":"","signature":"NETRESOURCEA","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETRESOURCEA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPNETRESOURCEA","package":"druntime","parentType":"","signature":"LPNETRESOURCEA = NETRESOURCEA *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPNETRESOURCEA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"NETRESOURCEW","package":"druntime","parentType":"","signature":"NETRESOURCEW","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETRESOURCEW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPNETRESOURCEW","package":"druntime","parentType":"","signature":"LPNETRESOURCEW = NETRESOURCEW *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPNETRESOURCEW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"CONNECTDLGSTRUCTA","package":"druntime","parentType":"","signature":"CONNECTDLGSTRUCTA","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#CONNECTDLGSTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPCONNECTDLGSTRUCTA","package":"druntime","parentType":"","signature":"LPCONNECTDLGSTRUCTA = CONNECTDLGSTRUCTA *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPCONNECTDLGSTRUCTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"CONNECTDLGSTRUCTW","package":"druntime","parentType":"","signature":"CONNECTDLGSTRUCTW","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#CONNECTDLGSTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPCONNECTDLGSTRUCTW","package":"druntime","parentType":"","signature":"LPCONNECTDLGSTRUCTW = CONNECTDLGSTRUCTW *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPCONNECTDLGSTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"DISCDLGSTRUCTA","package":"druntime","parentType":"","signature":"DISCDLGSTRUCTA","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#DISCDLGSTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPDISCDLGSTRUCTA","package":"druntime","parentType":"","signature":"LPDISCDLGSTRUCTA = DISCDLGSTRUCTA *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPDISCDLGSTRUCTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"DISCDLGSTRUCTW","package":"druntime","parentType":"","signature":"DISCDLGSTRUCTW","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#DISCDLGSTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPDISCDLGSTRUCTW","package":"druntime","parentType":"","signature":"LPDISCDLGSTRUCTW = DISCDLGSTRUCTW *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPDISCDLGSTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"UNIVERSAL_NAME_INFOA","package":"druntime","parentType":"","signature":"UNIVERSAL_NAME_INFOA","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#UNIVERSAL_NAME_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPUNIVERSAL_NAME_INFOA","package":"druntime","parentType":"","signature":"LPUNIVERSAL_NAME_INFOA = UNIVERSAL_NAME_INFOA *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPUNIVERSAL_NAME_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"UNIVERSAL_NAME_INFOW","package":"druntime","parentType":"","signature":"UNIVERSAL_NAME_INFOW","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#UNIVERSAL_NAME_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPUNIVERSAL_NAME_INFOW","package":"druntime","parentType":"","signature":"LPUNIVERSAL_NAME_INFOW = UNIVERSAL_NAME_INFOW *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPUNIVERSAL_NAME_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"REMOTE_NAME_INFOA","package":"druntime","parentType":"","signature":"REMOTE_NAME_INFOA","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#REMOTE_NAME_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPREMOTE_NAME_INFOA","package":"druntime","parentType":"","signature":"LPREMOTE_NAME_INFOA = REMOTE_NAME_INFOA *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPREMOTE_NAME_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"REMOTE_NAME_INFOW","package":"druntime","parentType":"","signature":"REMOTE_NAME_INFOW","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#REMOTE_NAME_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPREMOTE_NAME_INFOW","package":"druntime","parentType":"","signature":"LPREMOTE_NAME_INFOW = REMOTE_NAME_INFOW *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPREMOTE_NAME_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"NETINFOSTRUCT","package":"druntime","parentType":"","signature":"NETINFOSTRUCT","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETINFOSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPNETINFOSTRUCT","package":"druntime","parentType":"","signature":"LPNETINFOSTRUCT = NETINFOSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPNETINFOSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNGETPROFILEPATHA","package":"druntime","parentType":"","signature":"PFNGETPROFILEPATHA = UINT function(LPCSTR,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNGETPROFILEPATHA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNGETPROFILEPATHW","package":"druntime","parentType":"","signature":"PFNGETPROFILEPATHW = UINT function(LPCWSTR,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNGETPROFILEPATHW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNRECONCILEPROFILEA","package":"druntime","parentType":"","signature":"PFNRECONCILEPROFILEA = UINT function(LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNRECONCILEPROFILEA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNRECONCILEPROFILEW","package":"druntime","parentType":"","signature":"PFNRECONCILEPROFILEW = UINT function(LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNRECONCILEPROFILEW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNPROCESSPOLICIESA","package":"druntime","parentType":"","signature":"PFNPROCESSPOLICIESA = BOOL function(HWND,  LPCSTR,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNPROCESSPOLICIESA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"PFNPROCESSPOLICIESW","package":"druntime","parentType":"","signature":"PFNPROCESSPOLICIESW = BOOL function(HWND,  LPCWSTR,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PFNPROCESSPOLICIESW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnetwk","name":"NETCONNECTINFOSTRUCT","package":"druntime","parentType":"","signature":"NETCONNECTINFOSTRUCT","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETCONNECTINFOSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPNETCONNECTINFOSTRUCT","package":"druntime","parentType":"","signature":"LPNETCONNECTINFOSTRUCT = NETCONNECTINFOSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPNETCONNECTINFOSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPNETRESOURCE","package":"druntime","parentType":"","signature":"LPNETRESOURCE = NETRESOURCE *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPNETRESOURCE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPCONNECTDLGSTRUCT","package":"druntime","parentType":"","signature":"LPCONNECTDLGSTRUCT = CONNECTDLGSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPCONNECTDLGSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPDISCDLGSTRUCT","package":"druntime","parentType":"","signature":"LPDISCDLGSTRUCT = DISCDLGSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPDISCDLGSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPREMOTE_NAME_INFO","package":"druntime","parentType":"","signature":"LPREMOTE_NAME_INFO = REMOTE_NAME_INFO *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPREMOTE_NAME_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winnetwk","name":"LPUNIVERSAL_NAME_INFO","package":"druntime","parentType":"","signature":"LPUNIVERSAL_NAME_INFO = UNIVERSAL_NAME_INFO *","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#LPUNIVERSAL_NAME_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"RESOURCETYPE_ANY","package":"druntime","parentType":"","signature":"DWORD RESOURCETYPE_ANY","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#RESOURCETYPE_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"RESOURCEUSAGE_CONNECTABLE","package":"druntime","parentType":"","signature":"DWORD RESOURCEUSAGE_CONNECTABLE","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#RESOURCEUSAGE_CONNECTABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"NETPROPERTY_PERSISTENT","package":"druntime","parentType":"","signature":"NETPROPERTY_PERSISTENT","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETPROPERTY_PERSISTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"CONNECT_UPDATE_PROFILE","package":"druntime","parentType":"","signature":"DWORD CONNECT_UPDATE_PROFILE","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#CONNECT_UPDATE_PROFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"CONNDLG_RO_PATH","package":"druntime","parentType":"","signature":"DWORD CONNDLG_RO_PATH","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#CONNDLG_RO_PATH"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"DISC_UPDATE_PROFILE","package":"druntime","parentType":"","signature":"DWORD DISC_UPDATE_PROFILE","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#DISC_UPDATE_PROFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"WNFMT_MULTILINE","package":"druntime","parentType":"","signature":"DWORD WNFMT_MULTILINE","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#WNFMT_MULTILINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"NETINFO_DLL16","package":"druntime","parentType":"","signature":"DWORD NETINFO_DLL16","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#NETINFO_DLL16"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"RP_LOGON","package":"druntime","parentType":"","signature":"DWORD RP_LOGON","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#RP_LOGON"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"PP_DISPLAYERRORS","package":"druntime","parentType":"","signature":"DWORD PP_DISPLAYERRORS","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#PP_DISPLAYERRORS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnetwk","name":"WNCON_FORNETCARD","package":"druntime","parentType":"","signature":"DWORD WNCON_FORNETCARD","url":"/ddoc/druntime/core/sys/windows/winnetwk.html#WNCON_FORNETCARD"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winnls","name":"core.sys.windows.winnls","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winnls.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"CompareStringA","package":"druntime","parentType":"","signature":"int CompareStringA(LCID,  DWORD,  LPCSTR,  int,  LPCSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/CompareStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"CompareStringW","package":"druntime","parentType":"","signature":"int CompareStringW(LCID,  DWORD,  LPCWSTR,  int,  LPCWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/CompareStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"ConvertDefaultLocale","package":"druntime","parentType":"","signature":"LCID ConvertDefaultLocale(LCID)","url":"/ddoc/druntime/core/sys/windows/winnls/ConvertDefaultLocale.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumCalendarInfoA","package":"druntime","parentType":"","signature":"BOOL EnumCalendarInfoA(CALINFO_ENUMPROCA,  LCID,  CALID,  CALTYPE)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumCalendarInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumCalendarInfoW","package":"druntime","parentType":"","signature":"BOOL EnumCalendarInfoW(CALINFO_ENUMPROCW,  LCID,  CALID,  CALTYPE)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumCalendarInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumDateFormatsA","package":"druntime","parentType":"","signature":"BOOL EnumDateFormatsA(DATEFMT_ENUMPROCA,  LCID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumDateFormatsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumDateFormatsW","package":"druntime","parentType":"","signature":"BOOL EnumDateFormatsW(DATEFMT_ENUMPROCW,  LCID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumDateFormatsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumSystemCodePagesA","package":"druntime","parentType":"","signature":"BOOL EnumSystemCodePagesA(CODEPAGE_ENUMPROCA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumSystemCodePagesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumSystemCodePagesW","package":"druntime","parentType":"","signature":"BOOL EnumSystemCodePagesW(CODEPAGE_ENUMPROCW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumSystemCodePagesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumSystemGeoID","package":"druntime","parentType":"","signature":"BOOL EnumSystemGeoID(GEOCLASS,  GEOID,  GEO_ENUMPROC)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumSystemGeoID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumSystemLocalesA","package":"druntime","parentType":"","signature":"BOOL EnumSystemLocalesA(LOCALE_ENUMPROCA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumSystemLocalesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumSystemLocalesW","package":"druntime","parentType":"","signature":"BOOL EnumSystemLocalesW(LOCALE_ENUMPROCW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumSystemLocalesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumTimeFormatsA","package":"druntime","parentType":"","signature":"BOOL EnumTimeFormatsA(TIMEFMT_ENUMPROCA,  LCID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumTimeFormatsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"EnumTimeFormatsW","package":"druntime","parentType":"","signature":"BOOL EnumTimeFormatsW(TIMEFMT_ENUMPROCW,  LCID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/EnumTimeFormatsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"FoldStringA","package":"druntime","parentType":"","signature":"int FoldStringA(DWORD,  LPCSTR,  int,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/FoldStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"FoldStringW","package":"druntime","parentType":"","signature":"int FoldStringW(DWORD,  LPCWSTR,  int,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/FoldStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetACP","package":"druntime","parentType":"","signature":"UINT GetACP()","url":"/ddoc/druntime/core/sys/windows/winnls/GetACP.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCalendarInfoA","package":"druntime","parentType":"","signature":"int GetCalendarInfoA(LCID,  CALID,  CALTYPE,  LPSTR,  int,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCalendarInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCalendarInfoW","package":"druntime","parentType":"","signature":"int GetCalendarInfoW(LCID,  CALID,  CALTYPE,  LPWSTR,  int,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCalendarInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCPInfo","package":"druntime","parentType":"","signature":"BOOL GetCPInfo(UINT,  LPCPINFO)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCPInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCPInfoExA","package":"druntime","parentType":"","signature":"BOOL GetCPInfoExA(UINT,  DWORD,  LPCPINFOEXA)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCPInfoExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCPInfoExW","package":"druntime","parentType":"","signature":"BOOL GetCPInfoExW(UINT,  DWORD,  LPCPINFOEXW)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCPInfoExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCurrencyFormatA","package":"druntime","parentType":"","signature":"int GetCurrencyFormatA(LCID,  DWORD,  LPCSTR,   const(CURRENCYFMTA) *,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCurrencyFormatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetCurrencyFormatW","package":"druntime","parentType":"","signature":"int GetCurrencyFormatW(LCID,  DWORD,  LPCWSTR,   const(CURRENCYFMTW) *,  LPWSTR,\n       int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetCurrencyFormatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetDateFormatA","package":"druntime","parentType":"","signature":"int GetDateFormatA(LCID,  DWORD,   const(SYSTEMTIME) *,  LPCSTR,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetDateFormatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetDateFormatW","package":"druntime","parentType":"","signature":"int GetDateFormatW(LCID,  DWORD,   const(SYSTEMTIME) *,  LPCWSTR,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetDateFormatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetGeoInfoA","package":"druntime","parentType":"","signature":"int GetGeoInfoA(GEOID,  GEOTYPE,  LPSTR,  int,  LANGID)","url":"/ddoc/druntime/core/sys/windows/winnls/GetGeoInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetGeoInfoW","package":"druntime","parentType":"","signature":"int GetGeoInfoW(GEOID,  GEOTYPE,  LPWSTR,  int,  LANGID)","url":"/ddoc/druntime/core/sys/windows/winnls/GetGeoInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetLocaleInfoA","package":"druntime","parentType":"","signature":"int GetLocaleInfoA(LCID,  LCTYPE,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetLocaleInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetLocaleInfoW","package":"druntime","parentType":"","signature":"int GetLocaleInfoW(LCID,  LCTYPE,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetLocaleInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetNLSVersion","package":"druntime","parentType":"","signature":"BOOL GetNLSVersion(NLS_FUNCTION,  LCID,  LPNLSVERSIONINFO)","url":"/ddoc/druntime/core/sys/windows/winnls/GetNLSVersion.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetNumberFormatA","package":"druntime","parentType":"","signature":"int GetNumberFormatA(LCID,  DWORD,  LPCSTR,   const(NUMBERFMTA) *,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetNumberFormatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetNumberFormatW","package":"druntime","parentType":"","signature":"int GetNumberFormatW(LCID,  DWORD,  LPCWSTR,   const(NUMBERFMTW) *,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetNumberFormatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetOEMCP","package":"druntime","parentType":"","signature":"UINT GetOEMCP()","url":"/ddoc/druntime/core/sys/windows/winnls/GetOEMCP.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetStringTypeA","package":"druntime","parentType":"","signature":"BOOL GetStringTypeA(LCID,  DWORD,  LPCSTR,  int,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetStringTypeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetStringTypeW","package":"druntime","parentType":"","signature":"BOOL GetStringTypeW(DWORD,  LPCWSTR,  int,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetStringTypeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetStringTypeExA","package":"druntime","parentType":"","signature":"BOOL GetStringTypeExA(LCID,  DWORD,  LPCSTR,  int,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetStringTypeExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetStringTypeExW","package":"druntime","parentType":"","signature":"BOOL GetStringTypeExW(LCID,  DWORD,  LPCWSTR,  int,  LPWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/GetStringTypeExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetSystemDefaultLangID","package":"druntime","parentType":"","signature":"LANGID GetSystemDefaultLangID()","url":"/ddoc/druntime/core/sys/windows/winnls/GetSystemDefaultLangID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetSystemDefaultLCID","package":"druntime","parentType":"","signature":"LCID GetSystemDefaultLCID()","url":"/ddoc/druntime/core/sys/windows/winnls/GetSystemDefaultLCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetThreadLocale","package":"druntime","parentType":"","signature":"LCID GetThreadLocale()","url":"/ddoc/druntime/core/sys/windows/winnls/GetThreadLocale.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetTimeFormatA","package":"druntime","parentType":"","signature":"int GetTimeFormatA(LCID,  DWORD,   const(SYSTEMTIME) *,  LPCSTR,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetTimeFormatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetTimeFormatW","package":"druntime","parentType":"","signature":"int GetTimeFormatW(LCID,  DWORD,   const(SYSTEMTIME) *,  LPCWSTR,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/GetTimeFormatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetUserDefaultLangID","package":"druntime","parentType":"","signature":"LANGID GetUserDefaultLangID()","url":"/ddoc/druntime/core/sys/windows/winnls/GetUserDefaultLangID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetUserDefaultLCID","package":"druntime","parentType":"","signature":"LCID GetUserDefaultLCID()","url":"/ddoc/druntime/core/sys/windows/winnls/GetUserDefaultLCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"GetUserGeoID","package":"druntime","parentType":"","signature":"GEOID GetUserGeoID(GEOCLASS)","url":"/ddoc/druntime/core/sys/windows/winnls/GetUserGeoID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"IsDBCSLeadByte","package":"druntime","parentType":"","signature":"BOOL IsDBCSLeadByte(BYTE)","url":"/ddoc/druntime/core/sys/windows/winnls/IsDBCSLeadByte.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"IsDBCSLeadByteEx","package":"druntime","parentType":"","signature":"BOOL IsDBCSLeadByteEx(UINT,  BYTE)","url":"/ddoc/druntime/core/sys/windows/winnls/IsDBCSLeadByteEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"IsNLSDefinedString","package":"druntime","parentType":"","signature":"BOOL IsNLSDefinedString(NLS_FUNCTION,  DWORD,  LPNLSVERSIONINFO,  LPCWSTR,\n       int)","url":"/ddoc/druntime/core/sys/windows/winnls/IsNLSDefinedString.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"IsValidCodePage","package":"druntime","parentType":"","signature":"BOOL IsValidCodePage(UINT)","url":"/ddoc/druntime/core/sys/windows/winnls/IsValidCodePage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"IsValidLocale","package":"druntime","parentType":"","signature":"BOOL IsValidLocale(LCID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winnls/IsValidLocale.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"LCMapStringA","package":"druntime","parentType":"","signature":"int LCMapStringA(LCID,  DWORD,  LPCSTR,  int,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/LCMapStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"LCMapStringW","package":"druntime","parentType":"","signature":"int LCMapStringW(LCID,  DWORD,  LPCWSTR,  int,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/LCMapStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"MultiByteToWideChar","package":"druntime","parentType":"","signature":"int MultiByteToWideChar(UINT,  DWORD,  LPCSTR,  int,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winnls/MultiByteToWideChar.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetCalendarInfoA","package":"druntime","parentType":"","signature":"int SetCalendarInfoA(LCID,  CALID,  CALTYPE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winnls/SetCalendarInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetCalendarInfoW","package":"druntime","parentType":"","signature":"int SetCalendarInfoW(LCID,  CALID,  CALTYPE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls/SetCalendarInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetLocaleInfoA","package":"druntime","parentType":"","signature":"BOOL SetLocaleInfoA(LCID,  LCTYPE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winnls/SetLocaleInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetLocaleInfoW","package":"druntime","parentType":"","signature":"BOOL SetLocaleInfoW(LCID,  LCTYPE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls/SetLocaleInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetThreadLocale","package":"druntime","parentType":"","signature":"BOOL SetThreadLocale(LCID)","url":"/ddoc/druntime/core/sys/windows/winnls/SetThreadLocale.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"SetUserGeoID","package":"druntime","parentType":"","signature":"BOOL SetUserGeoID(GEOID)","url":"/ddoc/druntime/core/sys/windows/winnls/SetUserGeoID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnls","name":"WideCharToMultiByte","package":"druntime","parentType":"","signature":"int WideCharToMultiByte(UINT,  DWORD,  LPCWSTR,  int,  LPSTR,  int,  LPCSTR,\n       LPBOOL)","url":"/ddoc/druntime/core/sys/windows/winnls/WideCharToMultiByte.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LCTYPE","package":"druntime","parentType":"","signature":"LCTYPE = DWORD","url":"/ddoc/druntime/core/sys/windows/winnls.html#LCTYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CALINFO_ENUMPROCA","package":"druntime","parentType":"","signature":"CALINFO_ENUMPROCA = BOOL function(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CALINFO_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CALINFO_ENUMPROCW","package":"druntime","parentType":"","signature":"CALINFO_ENUMPROCW = BOOL function(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CALINFO_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CALINFO_ENUMPROCEXA","package":"druntime","parentType":"","signature":"CALINFO_ENUMPROCEXA = BOOL function(LPSTR,  CALID)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CALINFO_ENUMPROCEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CALINFO_ENUMPROCEXW","package":"druntime","parentType":"","signature":"CALINFO_ENUMPROCEXW = BOOL function(LPWSTR,  CALID)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CALINFO_ENUMPROCEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LANGUAGEGROUP_ENUMPROCA","package":"druntime","parentType":"","signature":"LANGUAGEGROUP_ENUMPROCA = BOOL function(LGRPID,  LPSTR,  LPSTR,  DWORD,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LANGUAGEGROUP_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LANGUAGEGROUP_ENUMPROCW","package":"druntime","parentType":"","signature":"LANGUAGEGROUP_ENUMPROCW = BOOL function(LGRPID,  LPWSTR,  LPWSTR,  DWORD,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LANGUAGEGROUP_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LANGGROUPLOCALE_ENUMPROCA","package":"druntime","parentType":"","signature":"LANGGROUPLOCALE_ENUMPROCA = BOOL function(LGRPID,  LCID,  LPSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LANGGROUPLOCALE_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LANGGROUPLOCALE_ENUMPROCW","package":"druntime","parentType":"","signature":"LANGGROUPLOCALE_ENUMPROCW = BOOL function(LGRPID,  LCID,  LPWSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LANGGROUPLOCALE_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"UILANGUAGE_ENUMPROCW","package":"druntime","parentType":"","signature":"UILANGUAGE_ENUMPROCW = BOOL function(LPWSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#UILANGUAGE_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"UILANGUAGE_ENUMPROCA","package":"druntime","parentType":"","signature":"UILANGUAGE_ENUMPROCA = BOOL function(LPSTR,  LONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#UILANGUAGE_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LOCALE_ENUMPROCA","package":"druntime","parentType":"","signature":"LOCALE_ENUMPROCA = BOOL function(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LOCALE_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LOCALE_ENUMPROCW","package":"druntime","parentType":"","signature":"LOCALE_ENUMPROCW = BOOL function(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#LOCALE_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CODEPAGE_ENUMPROCA","package":"druntime","parentType":"","signature":"CODEPAGE_ENUMPROCA = BOOL function(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CODEPAGE_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"CODEPAGE_ENUMPROCW","package":"druntime","parentType":"","signature":"CODEPAGE_ENUMPROCW = BOOL function(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#CODEPAGE_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"DATEFMT_ENUMPROCA","package":"druntime","parentType":"","signature":"DATEFMT_ENUMPROCA = BOOL function(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#DATEFMT_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"DATEFMT_ENUMPROCW","package":"druntime","parentType":"","signature":"DATEFMT_ENUMPROCW = BOOL function(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#DATEFMT_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"DATEFMT_ENUMPROCEXA","package":"druntime","parentType":"","signature":"DATEFMT_ENUMPROCEXA = BOOL function(LPSTR,  CALID)","url":"/ddoc/druntime/core/sys/windows/winnls.html#DATEFMT_ENUMPROCEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"DATEFMT_ENUMPROCEXW","package":"druntime","parentType":"","signature":"DATEFMT_ENUMPROCEXW = BOOL function(LPWSTR,  CALID)","url":"/ddoc/druntime/core/sys/windows/winnls.html#DATEFMT_ENUMPROCEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"TIMEFMT_ENUMPROCA","package":"druntime","parentType":"","signature":"TIMEFMT_ENUMPROCA = BOOL function(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#TIMEFMT_ENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"TIMEFMT_ENUMPROCW","package":"druntime","parentType":"","signature":"TIMEFMT_ENUMPROCW = BOOL function(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winnls.html#TIMEFMT_ENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"GEO_ENUMPROC","package":"druntime","parentType":"","signature":"GEO_ENUMPROC = BOOL function(GEOID)","url":"/ddoc/druntime/core/sys/windows/winnls.html#GEO_ENUMPROC"},{"doc":"","kind":"enum","module":"core.sys.windows.winnls","name":"NLS_FUNCTION","package":"druntime","parentType":"","signature":"NLS_FUNCTION","url":"/ddoc/druntime/core/sys/windows/winnls.html#NLS_FUNCTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"COMPARE_STRING","package":"druntime","parentType":"","signature":"COMPARE_STRING = 0x0001","url":"/ddoc/druntime/core/sys/windows/winnls.html#NLS_FUNCTION"},{"doc":"","kind":"enum","module":"core.sys.windows.winnls","name":"SYSGEOCLASS","package":"druntime","parentType":"","signature":"SYSGEOCLASS","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEOCLASS_NATION","package":"druntime","parentType":"","signature":"GEOCLASS_NATION = 16","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEOCLASS_REGION","package":"druntime","parentType":"","signature":"GEOCLASS_REGION = 14","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOCLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.winnls","name":"SYSGEOTYPE","package":"druntime","parentType":"","signature":"SYSGEOTYPE","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_NATION","package":"druntime","parentType":"","signature":"GEO_NATION = 0x0001","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_LATITUDE","package":"druntime","parentType":"","signature":"GEO_LATITUDE = 0x0002","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_LONGITUDE","package":"druntime","parentType":"","signature":"GEO_LONGITUDE = 0x0003","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_ISO2","package":"druntime","parentType":"","signature":"GEO_ISO2 = 0x0004","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_ISO3","package":"druntime","parentType":"","signature":"GEO_ISO3 = 0x0005","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_RFC1766","package":"druntime","parentType":"","signature":"GEO_RFC1766 = 0x0006","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_LCID","package":"druntime","parentType":"","signature":"GEO_LCID = 0x0007","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_FRIENDLYNAME","package":"druntime","parentType":"","signature":"GEO_FRIENDLYNAME = 0x0008","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_OFFICIALNAME","package":"druntime","parentType":"","signature":"GEO_OFFICIALNAME = 0x0009","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_TIMEZONES","package":"druntime","parentType":"","signature":"GEO_TIMEZONES = 0x000a","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnls","name":"GEO_OFFICIALLANGUAGES","package":"druntime","parentType":"","signature":"GEO_OFFICIALLANGUAGES = 0x000a","url":"/ddoc/druntime/core/sys/windows/winnls.html#SYSGEOTYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"CPINFO","package":"druntime","parentType":"","signature":"CPINFO","url":"/ddoc/druntime/core/sys/windows/winnls.html#CPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPCPINFO","package":"druntime","parentType":"","signature":"LPCPINFO = CPINFO *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPCPINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"CPINFOEXA","package":"druntime","parentType":"","signature":"CPINFOEXA","url":"/ddoc/druntime/core/sys/windows/winnls.html#CPINFOEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPCPINFOEXA","package":"druntime","parentType":"","signature":"LPCPINFOEXA = CPINFOEXA *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPCPINFOEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"CPINFOEXW","package":"druntime","parentType":"","signature":"CPINFOEXW","url":"/ddoc/druntime/core/sys/windows/winnls.html#CPINFOEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPCPINFOEXW","package":"druntime","parentType":"","signature":"LPCPINFOEXW = CPINFOEXW *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPCPINFOEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"CURRENCYFMTA","package":"druntime","parentType":"","signature":"CURRENCYFMTA","url":"/ddoc/druntime/core/sys/windows/winnls.html#CURRENCYFMTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPCURRENCYFMTA","package":"druntime","parentType":"","signature":"LPCURRENCYFMTA = CURRENCYFMTA *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPCURRENCYFMTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"CURRENCYFMTW","package":"druntime","parentType":"","signature":"CURRENCYFMTW","url":"/ddoc/druntime/core/sys/windows/winnls.html#CURRENCYFMTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPCURRENCYFMTW","package":"druntime","parentType":"","signature":"LPCURRENCYFMTW = CURRENCYFMTW *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPCURRENCYFMTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"NLSVERSIONINFO","package":"druntime","parentType":"","signature":"NLSVERSIONINFO","url":"/ddoc/druntime/core/sys/windows/winnls.html#NLSVERSIONINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPNLSVERSIONINFO","package":"druntime","parentType":"","signature":"LPNLSVERSIONINFO = NLSVERSIONINFO *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPNLSVERSIONINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"NUMBERFMTA","package":"druntime","parentType":"","signature":"NUMBERFMTA","url":"/ddoc/druntime/core/sys/windows/winnls.html#NUMBERFMTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPNUMBERFMTA","package":"druntime","parentType":"","signature":"LPNUMBERFMTA = NUMBERFMTA *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPNUMBERFMTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnls","name":"NUMBERFMTW","package":"druntime","parentType":"","signature":"NUMBERFMTW","url":"/ddoc/druntime/core/sys/windows/winnls.html#NUMBERFMTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnls","name":"LPNUMBERFMTW","package":"druntime","parentType":"","signature":"LPNUMBERFMTW = NUMBERFMTW *","url":"/ddoc/druntime/core/sys/windows/winnls.html#LPNUMBERFMTW"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"MAX_DEFAULTCHAR","package":"druntime","parentType":"","signature":"size_t MAX_DEFAULTCHAR","url":"/ddoc/druntime/core/sys/windows/winnls.html#MAX_DEFAULTCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"LOCALE_USE_CP_ACP","package":"druntime","parentType":"","signature":"LCTYPE LOCALE_USE_CP_ACP","url":"/ddoc/druntime/core/sys/windows/winnls.html#LOCALE_USE_CP_ACP"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"NORM_IGNORECASE","package":"druntime","parentType":"","signature":"DWORD NORM_IGNORECASE","url":"/ddoc/druntime/core/sys/windows/winnls.html#NORM_IGNORECASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"LCMAP_LOWERCASE","package":"druntime","parentType":"","signature":"DWORD LCMAP_LOWERCASE","url":"/ddoc/druntime/core/sys/windows/winnls.html#LCMAP_LOWERCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"ENUM_ALL_CALENDARS","package":"druntime","parentType":"","signature":"CALID ENUM_ALL_CALENDARS","url":"/ddoc/druntime/core/sys/windows/winnls.html#ENUM_ALL_CALENDARS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"DATE_SHORTDATE","package":"druntime","parentType":"","signature":"DWORD DATE_SHORTDATE","url":"/ddoc/druntime/core/sys/windows/winnls.html#DATE_SHORTDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"MAP_FOLDCZONE","package":"druntime","parentType":"","signature":"DWORD MAP_FOLDCZONE","url":"/ddoc/druntime/core/sys/windows/winnls.html#MAP_FOLDCZONE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"C1_UPPER","package":"druntime","parentType":"","signature":"WORD C1_UPPER","url":"/ddoc/druntime/core/sys/windows/winnls.html#C1_UPPER"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"C3_NOTAPPLICABLE","package":"druntime","parentType":"","signature":"WORD C3_NOTAPPLICABLE","url":"/ddoc/druntime/core/sys/windows/winnls.html#C3_NOTAPPLICABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"TIME_NOMINUTESORSECONDS","package":"druntime","parentType":"","signature":"DWORD TIME_NOMINUTESORSECONDS","url":"/ddoc/druntime/core/sys/windows/winnls.html#TIME_NOMINUTESORSECONDS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"MB_PRECOMPOSED","package":"druntime","parentType":"","signature":"DWORD MB_PRECOMPOSED","url":"/ddoc/druntime/core/sys/windows/winnls.html#MB_PRECOMPOSED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnls","name":"WC_DISCARDNS","package":"druntime","parentType":"","signature":"DWORD WC_DISCARDNS","url":"/ddoc/druntime/core/sys/windows/winnls.html#WC_DISCARDNS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winnt","name":"core.sys.windows.winnt","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winnt.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"MAKELANGID","package":"druntime","parentType":"","signature":"WORD MAKELANGID()(/*USHORT*/ uint  p, /*USHORT*/  uint  s)","url":"/ddoc/druntime/core/sys/windows/winnt/MAKELANGID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"PRIMARYLANGID","package":"druntime","parentType":"","signature":"WORD PRIMARYLANGID()(/*WORD*/ uint  lgid)","url":"/ddoc/druntime/core/sys/windows/winnt/PRIMARYLANGID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"SUBLANGID","package":"druntime","parentType":"","signature":"WORD SUBLANGID()(/*WORD*/ uint  lgid)","url":"/ddoc/druntime/core/sys/windows/winnt/SUBLANGID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"MAKELCID","package":"druntime","parentType":"","signature":"DWORD MAKELCID()(/*WORD*/ uint  lgid, /*WORD*/ uint  srtid)","url":"/ddoc/druntime/core/sys/windows/winnt/MAKELCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"LANGIDFROMLCID","package":"druntime","parentType":"","signature":"WORD LANGIDFROMLCID()(LCID lcid)","url":"/ddoc/druntime/core/sys/windows/winnt/LANGIDFROMLCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"SORTIDFROMLCID","package":"druntime","parentType":"","signature":"WORD SORTIDFROMLCID()(LCID lcid)","url":"/ddoc/druntime/core/sys/windows/winnt/SORTIDFROMLCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"SORTVERSIONFROMLCID","package":"druntime","parentType":"","signature":"WORD SORTVERSIONFROMLCID()(LCID lcid)","url":"/ddoc/druntime/core/sys/windows/winnt/SORTVERSIONFROMLCID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IMAGE_FIRST_SECTION","package":"druntime","parentType":"","signature":"PIMAGE_SECTION_HEADER IMAGE_FIRST_SECTION(PIMAGE_NT_HEADERS h)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_FIRST_SECTION.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IMAGE_ORDINAL64","package":"druntime","parentType":"","signature":"ulong IMAGE_ORDINAL64()(ulong  Ordinal)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_ORDINAL64.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IMAGE_ORDINAL32","package":"druntime","parentType":"","signature":"uint IMAGE_ORDINAL32()(uint  Ordinal)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_ORDINAL32.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IMAGE_SNAP_BY_ORDINAL32","package":"druntime","parentType":"","signature":"bool IMAGE_SNAP_BY_ORDINAL32(uint  Ordinal)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_SNAP_BY_ORDINAL32.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IMAGE_SNAP_BY_ORDINAL64","package":"druntime","parentType":"","signature":"bool IMAGE_SNAP_BY_ORDINAL64(ulong  Ordinal)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_SNAP_BY_ORDINAL64.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"BTYPE","package":"druntime","parentType":"","signature":"BYTE BTYPE()(BYTE x)","url":"/ddoc/druntime/core/sys/windows/winnt/BTYPE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"ISPTR","package":"druntime","parentType":"","signature":"bool ISPTR()(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/ISPTR.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"ISFCN","package":"druntime","parentType":"","signature":"bool ISFCN()(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/ISFCN.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"ISARY","package":"druntime","parentType":"","signature":"bool ISARY()(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/ISARY.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"ISTAG","package":"druntime","parentType":"","signature":"bool ISTAG(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/ISTAG.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"INCREF","package":"druntime","parentType":"","signature":"uint INCREF(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/INCREF.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"DECREF","package":"druntime","parentType":"","signature":"uint DECREF()(uint  x)","url":"/ddoc/druntime/core/sys/windows/winnt/DECREF.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IsReparseTagMicrosoft","package":"druntime","parentType":"","signature":"ULONG IsReparseTagMicrosoft()(ULONG x)","url":"/ddoc/druntime/core/sys/windows/winnt/IsReparseTagMicrosoft.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IsReparseTagHighLatency","package":"druntime","parentType":"","signature":"ULONG IsReparseTagHighLatency()(ULONG x)","url":"/ddoc/druntime/core/sys/windows/winnt/IsReparseTagHighLatency.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IsReparseTagNameSurrogate","package":"druntime","parentType":"","signature":"ULONG IsReparseTagNameSurrogate()(ULONG x)","url":"/ddoc/druntime/core/sys/windows/winnt/IsReparseTagNameSurrogate.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"IsReparseTagValid","package":"druntime","parentType":"","signature":"bool IsReparseTagValid(ULONG x)","url":"/ddoc/druntime/core/sys/windows/winnt/IsReparseTagValid.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"WT_SET_MAX_THREADPOOL_THREADS","package":"druntime","parentType":"","signature":"ULONG WT_SET_MAX_THREADPOOL_THREADS(ref  ULONG Flags,  ushort  Limit)","url":"/ddoc/druntime/core/sys/windows/winnt/WT_SET_MAX_THREADPOOL_THREADS.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"GetCurrentFiber","package":"druntime","parentType":"","signature":"PVOID GetCurrentFiber()","url":"/ddoc/druntime/core/sys/windows/winnt/GetCurrentFiber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winnt","name":"GetFiberData","package":"druntime","parentType":"","signature":"PVOID GetFiberData()","url":"/ddoc/druntime/core/sys/windows/winnt/GetFiberData.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"VOID","package":"druntime","parentType":"","signature":"VOID = void","url":"/ddoc/druntime/core/sys/windows/winnt.html#VOID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"CHAR","package":"druntime","parentType":"","signature":"CHAR = char","url":"/ddoc/druntime/core/sys/windows/winnt.html#CHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"WCHAR","package":"druntime","parentType":"","signature":"WCHAR = wchar","url":"/ddoc/druntime/core/sys/windows/winnt.html#WCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"BOOLEAN","package":"druntime","parentType":"","signature":"BOOLEAN = bool","url":"/ddoc/druntime/core/sys/windows/winnt.html#BOOLEAN"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"FCHAR","package":"druntime","parentType":"","signature":"FCHAR = byte","url":"/ddoc/druntime/core/sys/windows/winnt.html#FCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"UCHAR","package":"druntime","parentType":"","signature":"UCHAR = ubyte","url":"/ddoc/druntime/core/sys/windows/winnt.html#UCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"SHORT","package":"druntime","parentType":"","signature":"SHORT = short","url":"/ddoc/druntime/core/sys/windows/winnt.html#SHORT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"LANGID","package":"druntime","parentType":"","signature":"LANGID = ushort","url":"/ddoc/druntime/core/sys/windows/winnt.html#LANGID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"LCID","package":"druntime","parentType":"","signature":"LCID = uint","url":"/ddoc/druntime/core/sys/windows/winnt.html#LCID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"LONGLONG","package":"druntime","parentType":"","signature":"LONGLONG = long","url":"/ddoc/druntime/core/sys/windows/winnt.html#LONGLONG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"DWORDLONG","package":"druntime","parentType":"","signature":"DWORDLONG = ulong","url":"/ddoc/druntime/core/sys/windows/winnt.html#DWORDLONG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PVOID","package":"druntime","parentType":"","signature":"PVOID = void *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PVOID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSZ","package":"druntime","parentType":"","signature":"PSZ = char *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSZ"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PWCHAR","package":"druntime","parentType":"","signature":"PWCHAR = wchar *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PWCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PBOOLEAN","package":"druntime","parentType":"","signature":"PBOOLEAN = bool *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PBOOLEAN"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PUCHAR","package":"druntime","parentType":"","signature":"PUCHAR = ubyte *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PUCHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSHORT","package":"druntime","parentType":"","signature":"PSHORT = short *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSHORT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLONG","package":"druntime","parentType":"","signature":"PLONG = int *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLONG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLCID","package":"druntime","parentType":"","signature":"PLCID = uint *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLCID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLONGLONG","package":"druntime","parentType":"","signature":"PLONGLONG = long *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLONGLONG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PDWORDLONG","package":"druntime","parentType":"","signature":"PDWORDLONG = ulong *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PDWORDLONG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PVOID64","package":"druntime","parentType":"","signature":"PVOID64 = void *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PVOID64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PCCH","package":"druntime","parentType":"","signature":"PCCH = const(char) *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PCCH"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"LPCWCH","package":"druntime","parentType":"","signature":"LPCWCH = const(wchar) *","url":"/ddoc/druntime/core/sys/windows/winnt.html#LPCWCH"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PZPSTR","package":"druntime","parentType":"","signature":"PZPSTR = PSTR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PZPSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PZPWSTR","package":"druntime","parentType":"","signature":"PZPWSTR = PWSTR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PZPWSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"TBYTE","package":"druntime","parentType":"","signature":"TBYTE = TCHAR","url":"/ddoc/druntime/core/sys/windows/winnt.html#TBYTE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTCH","package":"druntime","parentType":"","signature":"PTCH = TCHAR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTCH"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PCTCH","package":"druntime","parentType":"","signature":"PCTCH = const(TCHAR) *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PCTCH"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SECURITY_IMPERSONATION_LEVEL","package":"druntime","parentType":"","signature":"SECURITY_IMPERSONATION_LEVEL","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SecurityAnonymous","package":"druntime","parentType":"","signature":"SecurityAnonymous = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SecurityIdentification","package":"druntime","parentType":"","signature":"SecurityIdentification = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SecurityImpersonation","package":"druntime","parentType":"","signature":"SecurityImpersonation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SecurityDelegation","package":"druntime","parentType":"","signature":"SecurityDelegation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_IMPERSONATION_LEVEL","package":"druntime","parentType":"","signature":"PSECURITY_IMPERSONATION_LEVEL = SECURITY_IMPERSONATION_LEVEL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_IMPERSONATION_LEVEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"SECURITY_CONTEXT_TRACKING_MODE","package":"druntime","parentType":"","signature":"SECURITY_CONTEXT_TRACKING_MODE = BOOLEAN","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_CONTEXT_TRACKING_MODE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_CONTEXT_TRACKING_MODE","package":"druntime","parentType":"","signature":"PSECURITY_CONTEXT_TRACKING_MODE = BOOLEAN *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_CONTEXT_TRACKING_MODE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"GENERIC_MAPPING","package":"druntime","parentType":"","signature":"GENERIC_MAPPING","url":"/ddoc/druntime/core/sys/windows/winnt.html#GENERIC_MAPPING"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PGENERIC_MAPPING","package":"druntime","parentType":"","signature":"PGENERIC_MAPPING = GENERIC_MAPPING *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PGENERIC_MAPPING"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACE_HEADER","package":"druntime","parentType":"","signature":"ACE_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACE_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACE_HEADER","package":"druntime","parentType":"","signature":"PACE_HEADER = ACE_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACE_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACCESS_ALLOWED_ACE","package":"druntime","parentType":"","signature":"ACCESS_ALLOWED_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACCESS_ALLOWED_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACCESS_ALLOWED_ACE","package":"druntime","parentType":"","signature":"PACCESS_ALLOWED_ACE = ACCESS_ALLOWED_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACCESS_ALLOWED_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACCESS_DENIED_ACE","package":"druntime","parentType":"","signature":"ACCESS_DENIED_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACCESS_DENIED_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACCESS_DENIED_ACE","package":"druntime","parentType":"","signature":"PACCESS_DENIED_ACE = ACCESS_DENIED_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACCESS_DENIED_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_AUDIT_ACE","package":"druntime","parentType":"","signature":"SYSTEM_AUDIT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_AUDIT_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_AUDIT_ACE","package":"druntime","parentType":"","signature":"PSYSTEM_AUDIT_ACE = SYSTEM_AUDIT_ACE *PSYSTEM_AUDIT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_AUDIT_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_ALARM_ACE","package":"druntime","parentType":"","signature":"SYSTEM_ALARM_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_ALARM_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_ALARM_ACE","package":"druntime","parentType":"","signature":"PSYSTEM_ALARM_ACE = SYSTEM_ALARM_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_ALARM_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACCESS_ALLOWED_OBJECT_ACE","package":"druntime","parentType":"","signature":"ACCESS_ALLOWED_OBJECT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACCESS_ALLOWED_OBJECT_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACCESS_ALLOWED_OBJECT_ACE","package":"druntime","parentType":"","signature":"PACCESS_ALLOWED_OBJECT_ACE = ACCESS_ALLOWED_OBJECT_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACCESS_ALLOWED_OBJECT_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACCESS_DENIED_OBJECT_ACE","package":"druntime","parentType":"","signature":"ACCESS_DENIED_OBJECT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACCESS_DENIED_OBJECT_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACCESS_DENIED_OBJECT_ACE","package":"druntime","parentType":"","signature":"PACCESS_DENIED_OBJECT_ACE = ACCESS_DENIED_OBJECT_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACCESS_DENIED_OBJECT_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_AUDIT_OBJECT_ACE","package":"druntime","parentType":"","signature":"SYSTEM_AUDIT_OBJECT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_AUDIT_OBJECT_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_AUDIT_OBJECT_ACE","package":"druntime","parentType":"","signature":"PSYSTEM_AUDIT_OBJECT_ACE = SYSTEM_AUDIT_OBJECT_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_AUDIT_OBJECT_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_ALARM_OBJECT_ACE","package":"druntime","parentType":"","signature":"SYSTEM_ALARM_OBJECT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_ALARM_OBJECT_ACE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_ALARM_OBJECT_ACE","package":"druntime","parentType":"","signature":"PSYSTEM_ALARM_OBJECT_ACE = SYSTEM_ALARM_OBJECT_ACE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_ALARM_OBJECT_ACE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACL","package":"druntime","parentType":"","signature":"ACL","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACL","package":"druntime","parentType":"","signature":"PACL = ACL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACL_REVISION_INFORMATION","package":"druntime","parentType":"","signature":"ACL_REVISION_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACL_REVISION_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ACL_SIZE_INFORMATION","package":"druntime","parentType":"","signature":"ACL_SIZE_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACL_SIZE_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PCONTEXT","package":"druntime","parentType":"","signature":"PCONTEXT = CONTEXT *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PCONTEXT"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"EXCEPTION_RECORD","package":"druntime","parentType":"","signature":"EXCEPTION_RECORD","url":"/ddoc/druntime/core/sys/windows/winnt.html#EXCEPTION_RECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PEXCEPTION_RECORD","package":"druntime","parentType":"","signature":"PEXCEPTION_RECORD = EXCEPTION_RECORD *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PEXCEPTION_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"EXCEPTION_POINTERS","package":"druntime","parentType":"","signature":"EXCEPTION_POINTERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#EXCEPTION_POINTERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PEXCEPTION_POINTERS","package":"druntime","parentType":"","signature":"PEXCEPTION_POINTERS = EXCEPTION_POINTERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PEXCEPTION_POINTERS"},{"doc":"","kind":"union","module":"core.sys.windows.winnt","name":"LARGE_INTEGER","package":"druntime","parentType":"","signature":"LARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/winnt.html#LARGE_INTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLARGE_INTEGER","package":"druntime","parentType":"","signature":"PLARGE_INTEGER = LARGE_INTEGER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLARGE_INTEGER"},{"doc":"","kind":"union","module":"core.sys.windows.winnt","name":"ULARGE_INTEGER","package":"druntime","parentType":"","signature":"ULARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/winnt.html#ULARGE_INTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PULARGE_INTEGER","package":"druntime","parentType":"","signature":"PULARGE_INTEGER = ULARGE_INTEGER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PULARGE_INTEGER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"LUID","package":"druntime","parentType":"","signature":"LUID = LARGE_INTEGER","url":"/ddoc/druntime/core/sys/windows/winnt.html#LUID"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLUID","package":"druntime","parentType":"","signature":"PLUID = LUID *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLUID"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"LUID_AND_ATTRIBUTES","package":"druntime","parentType":"","signature":"LUID_AND_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winnt.html#LUID_AND_ATTRIBUTES"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLUID_AND_ATTRIBUTES","package":"druntime","parentType":"","signature":"PLUID_AND_ATTRIBUTES = LUID_AND_ATTRIBUTES *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLUID_AND_ATTRIBUTES"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"PRIVILEGE_SET","package":"druntime","parentType":"","signature":"PRIVILEGE_SET","url":"/ddoc/druntime/core/sys/windows/winnt.html#PRIVILEGE_SET"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Privilege","package":"druntime","parentType":"PRIVILEGE_SET","signature":"LUID_AND_ATTRIBUTES * Privilege()","url":"/ddoc/druntime/core/sys/windows/winnt/PRIVILEGE_SET.Privilege.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PPRIVILEGE_SET","package":"druntime","parentType":"","signature":"PPRIVILEGE_SET = PRIVILEGE_SET *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PPRIVILEGE_SET"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SECURITY_ATTRIBUTES","package":"druntime","parentType":"","signature":"SECURITY_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_ATTRIBUTES"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_ATTRIBUTES","package":"druntime","parentType":"","signature":"PSECURITY_ATTRIBUTES = SECURITY_ATTRIBUTES *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_ATTRIBUTES"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SECURITY_QUALITY_OF_SERVICE","package":"druntime","parentType":"","signature":"SECURITY_QUALITY_OF_SERVICE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_QUALITY_OF_SERVICE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_QUALITY_OF_SERVICE","package":"druntime","parentType":"","signature":"PSECURITY_QUALITY_OF_SERVICE = SECURITY_QUALITY_OF_SERVICE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_QUALITY_OF_SERVICE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PACCESS_TOKEN","package":"druntime","parentType":"","signature":"PACCESS_TOKEN = PVOID","url":"/ddoc/druntime/core/sys/windows/winnt.html#PACCESS_TOKEN"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SE_IMPERSONATION_STATE","package":"druntime","parentType":"","signature":"SE_IMPERSONATION_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SE_IMPERSONATION_STATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSE_IMPERSONATION_STATE","package":"druntime","parentType":"","signature":"PSE_IMPERSONATION_STATE = SE_IMPERSONATION_STATE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSE_IMPERSONATION_STATE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SID_IDENTIFIER_AUTHORITY","package":"druntime","parentType":"","signature":"SID_IDENTIFIER_AUTHORITY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_IDENTIFIER_AUTHORITY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSID_IDENTIFIER_AUTHORITY","package":"druntime","parentType":"","signature":"PSID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSID_IDENTIFIER_AUTHORITY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSID","package":"druntime","parentType":"","signature":"PSID = PVOID","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSID"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SID","package":"druntime","parentType":"","signature":"SID","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"SubAuthority","package":"druntime","parentType":"SID","signature":"DWORD * SubAuthority()","url":"/ddoc/druntime/core/sys/windows/winnt/SID.SubAuthority.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PISID","package":"druntime","parentType":"","signature":"PISID = SID *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PISID"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SID_AND_ATTRIBUTES","package":"druntime","parentType":"","signature":"SID_AND_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_AND_ATTRIBUTES"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSID_AND_ATTRIBUTES","package":"druntime","parentType":"","signature":"PSID_AND_ATTRIBUTES = SID_AND_ATTRIBUTES *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSID_AND_ATTRIBUTES"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_SOURCE","package":"druntime","parentType":"","signature":"TOKEN_SOURCE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_SOURCE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_SOURCE","package":"druntime","parentType":"","signature":"PTOKEN_SOURCE = TOKEN_SOURCE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_SOURCE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_CONTROL","package":"druntime","parentType":"","signature":"TOKEN_CONTROL","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_CONTROL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_CONTROL","package":"druntime","parentType":"","signature":"PTOKEN_CONTROL = TOKEN_CONTROL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_CONTROL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_DEFAULT_DACL","package":"druntime","parentType":"","signature":"TOKEN_DEFAULT_DACL","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_DEFAULT_DACL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_DEFAULT_DACL","package":"druntime","parentType":"","signature":"PTOKEN_DEFAULT_DACL = TOKEN_DEFAULT_DACL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_DEFAULT_DACL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_GROUPS","package":"druntime","parentType":"","signature":"TOKEN_GROUPS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_GROUPS"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Groups","package":"druntime","parentType":"TOKEN_GROUPS","signature":"SID_AND_ATTRIBUTES * Groups()","url":"/ddoc/druntime/core/sys/windows/winnt/TOKEN_GROUPS.Groups.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_GROUPS","package":"druntime","parentType":"","signature":"PTOKEN_GROUPS = TOKEN_GROUPS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_GROUPS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_OWNER","package":"druntime","parentType":"","signature":"TOKEN_OWNER","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_OWNER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_OWNER","package":"druntime","parentType":"","signature":"PTOKEN_OWNER = TOKEN_OWNER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_OWNER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_PRIMARY_GROUP","package":"druntime","parentType":"","signature":"TOKEN_PRIMARY_GROUP","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_PRIMARY_GROUP"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_PRIMARY_GROUP","package":"druntime","parentType":"","signature":"PTOKEN_PRIMARY_GROUP = TOKEN_PRIMARY_GROUP *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_PRIMARY_GROUP"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_PRIVILEGES","package":"druntime","parentType":"","signature":"TOKEN_PRIVILEGES","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_PRIVILEGES"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Privileges","package":"druntime","parentType":"TOKEN_PRIVILEGES","signature":"LUID_AND_ATTRIBUTES * Privileges()","url":"/ddoc/druntime/core/sys/windows/winnt/TOKEN_PRIVILEGES.Privileges.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_PRIVILEGES","package":"druntime","parentType":"","signature":"PTOKEN_PRIVILEGES = TOKEN_PRIVILEGES *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_PRIVILEGES"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"TOKEN_TYPE","package":"druntime","parentType":"","signature":"TOKEN_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenPrimary","package":"druntime","parentType":"","signature":"TokenPrimary = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenImpersonation","package":"druntime","parentType":"","signature":"TokenImpersonation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_TYPE","package":"druntime","parentType":"","signature":"PTOKEN_TYPE = TOKEN_TYPE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_STATISTICS","package":"druntime","parentType":"","signature":"TOKEN_STATISTICS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_STATISTICS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_STATISTICS","package":"druntime","parentType":"","signature":"PTOKEN_STATISTICS = TOKEN_STATISTICS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_STATISTICS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_USER","package":"druntime","parentType":"","signature":"TOKEN_USER","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_USER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_USER","package":"druntime","parentType":"","signature":"PTOKEN_USER = TOKEN_USER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_USER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_MANDATORY_LABEL","package":"druntime","parentType":"","signature":"TOKEN_MANDATORY_LABEL","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_MANDATORY_LABEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_MANDATORY_LABEL","package":"druntime","parentType":"","signature":"PTOKEN_MANDATORY_LABEL = TOKEN_MANDATORY_LABEL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_MANDATORY_LABEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"SECURITY_INFORMATION","package":"druntime","parentType":"","signature":"SECURITY_INFORMATION = DWORD","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_INFORMATION","package":"druntime","parentType":"","signature":"PSECURITY_INFORMATION = SECURITY_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"SECURITY_DESCRIPTOR_CONTROL","package":"druntime","parentType":"","signature":"SECURITY_DESCRIPTOR_CONTROL = WORD","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_DESCRIPTOR_CONTROL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_DESCRIPTOR_CONTROL","package":"druntime","parentType":"","signature":"PSECURITY_DESCRIPTOR_CONTROL = SECURITY_DESCRIPTOR_CONTROL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_DESCRIPTOR_CONTROL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"SECURITY_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_DESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"PSECURITY_DESCRIPTOR = SECURITY_DESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSECURITY_DESCRIPTOR"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"TOKEN_ELEVATION_TYPE","package":"druntime","parentType":"","signature":"TOKEN_ELEVATION_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ELEVATION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenElevationTypeDefault","package":"druntime","parentType":"","signature":"TokenElevationTypeDefault = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ELEVATION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenElevationTypeFull","package":"druntime","parentType":"","signature":"TokenElevationTypeFull = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ELEVATION_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenElevationTypeLimited","package":"druntime","parentType":"","signature":"TokenElevationTypeLimited = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ELEVATION_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_ELEVATION_TYPE","package":"druntime","parentType":"","signature":"PTOKEN_ELEVATION_TYPE = TOKEN_ELEVATION_TYPE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_ELEVATION_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TOKEN_ELEVATION","package":"druntime","parentType":"","signature":"TOKEN_ELEVATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ELEVATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTOKEN_ELEVATION","package":"druntime","parentType":"","signature":"PTOKEN_ELEVATION = TOKEN_ELEVATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTOKEN_ELEVATION"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"TOKEN_INFORMATION_CLASS","package":"druntime","parentType":"","signature":"TOKEN_INFORMATION_CLASS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenUser","package":"druntime","parentType":"","signature":"TokenUser = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenGroups","package":"druntime","parentType":"","signature":"TokenGroups = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenPrivileges","package":"druntime","parentType":"","signature":"TokenPrivileges = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenOwner","package":"druntime","parentType":"","signature":"TokenOwner = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenPrimaryGroup","package":"druntime","parentType":"","signature":"TokenPrimaryGroup = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenDefaultDacl","package":"druntime","parentType":"","signature":"TokenDefaultDacl = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenSource","package":"druntime","parentType":"","signature":"TokenSource = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenType","package":"druntime","parentType":"","signature":"TokenType = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenImpersonationLevel","package":"druntime","parentType":"","signature":"TokenImpersonationLevel = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenStatistics","package":"druntime","parentType":"","signature":"TokenStatistics = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenRestrictedSids","package":"druntime","parentType":"","signature":"TokenRestrictedSids = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenSessionId","package":"druntime","parentType":"","signature":"TokenSessionId = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenGroupsAndPrivileges","package":"druntime","parentType":"","signature":"TokenGroupsAndPrivileges = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenSessionReference","package":"druntime","parentType":"","signature":"TokenSessionReference = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenSandBoxInert","package":"druntime","parentType":"","signature":"TokenSandBoxInert = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenAuditPolicy","package":"druntime","parentType":"","signature":"TokenAuditPolicy = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenOrigin","package":"druntime","parentType":"","signature":"TokenOrigin = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenElevationType","package":"druntime","parentType":"","signature":"TokenElevationType = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenLinkedToken","package":"druntime","parentType":"","signature":"TokenLinkedToken = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenElevation","package":"druntime","parentType":"","signature":"TokenElevation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenHasRestrictions","package":"druntime","parentType":"","signature":"TokenHasRestrictions = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenAccessInformation","package":"druntime","parentType":"","signature":"TokenAccessInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenVirtualizationAllowed","package":"druntime","parentType":"","signature":"TokenVirtualizationAllowed = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenVirtualizationEnabled","package":"druntime","parentType":"","signature":"TokenVirtualizationEnabled = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenIntegrityLevel","package":"druntime","parentType":"","signature":"TokenIntegrityLevel = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenUIAccess","package":"druntime","parentType":"","signature":"TokenUIAccess = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenMandatoryPolicy","package":"druntime","parentType":"","signature":"TokenMandatoryPolicy = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenLogonSid","package":"druntime","parentType":"","signature":"TokenLogonSid = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenIsAppContainer","package":"druntime","parentType":"","signature":"TokenIsAppContainer = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenCapabilities","package":"druntime","parentType":"","signature":"TokenCapabilities = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenAppContainerSid","package":"druntime","parentType":"","signature":"TokenAppContainerSid = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenAppContainerNumber","package":"druntime","parentType":"","signature":"TokenAppContainerNumber = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenUserClaimAttributes","package":"druntime","parentType":"","signature":"TokenUserClaimAttributes = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenDeviceClaimAttributes","package":"druntime","parentType":"","signature":"TokenDeviceClaimAttributes = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenRestrictedUserClaimAttributes","package":"druntime","parentType":"","signature":"TokenRestrictedUserClaimAttributes = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenRestrictedDeviceClaimAttributes","package":"druntime","parentType":"","signature":"TokenRestrictedDeviceClaimAttributes = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenDeviceGroups","package":"druntime","parentType":"","signature":"TokenDeviceGroups = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenRestrictedDeviceGroups","package":"druntime","parentType":"","signature":"TokenRestrictedDeviceGroups = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenSecurityAttributes","package":"druntime","parentType":"","signature":"TokenSecurityAttributes = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenIsRestricted","package":"druntime","parentType":"","signature":"TokenIsRestricted = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"TokenProcessTrustLevel","package":"druntime","parentType":"","signature":"TokenProcessTrustLevel = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"MaxTokenInfoClass","package":"druntime","parentType":"","signature":"MaxTokenInfoClass = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_INFORMATION_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SID_NAME_USE","package":"druntime","parentType":"","signature":"SID_NAME_USE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeUser","package":"druntime","parentType":"","signature":"SidTypeUser = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeGroup","package":"druntime","parentType":"","signature":"SidTypeGroup = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeDomain","package":"druntime","parentType":"","signature":"SidTypeDomain = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeAlias","package":"druntime","parentType":"","signature":"SidTypeAlias = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeWellKnownGroup","package":"druntime","parentType":"","signature":"SidTypeWellKnownGroup = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeDeletedAccount","package":"druntime","parentType":"","signature":"SidTypeDeletedAccount = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeInvalid","package":"druntime","parentType":"","signature":"SidTypeInvalid = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeUnknown","package":"druntime","parentType":"","signature":"SidTypeUnknown = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SidTypeComputer","package":"druntime","parentType":"","signature":"SidTypeComputer = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SID_NAME_USE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSID_NAME_USE","package":"druntime","parentType":"","signature":"PSID_NAME_USE = SID_NAME_USE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSID_NAME_USE"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"WELL_KNOWN_SID_TYPE","package":"druntime","parentType":"","signature":"WELL_KNOWN_SID_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNullSid","package":"druntime","parentType":"","signature":"WinNullSid = 0","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinWorldSid","package":"druntime","parentType":"","signature":"WinWorldSid = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLocalSid","package":"druntime","parentType":"","signature":"WinLocalSid = 2","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCreatorOwnerSid","package":"druntime","parentType":"","signature":"WinCreatorOwnerSid = 3","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCreatorGroupSid","package":"druntime","parentType":"","signature":"WinCreatorGroupSid = 4","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCreatorOwnerServerSid","package":"druntime","parentType":"","signature":"WinCreatorOwnerServerSid = 5","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCreatorGroupServerSid","package":"druntime","parentType":"","signature":"WinCreatorGroupServerSid = 6","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNtAuthoritySid","package":"druntime","parentType":"","signature":"WinNtAuthoritySid = 7","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinDialupSid","package":"druntime","parentType":"","signature":"WinDialupSid = 8","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNetworkSid","package":"druntime","parentType":"","signature":"WinNetworkSid = 9","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBatchSid","package":"druntime","parentType":"","signature":"WinBatchSid = 10","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinInteractiveSid","package":"druntime","parentType":"","signature":"WinInteractiveSid = 11","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinServiceSid","package":"druntime","parentType":"","signature":"WinServiceSid = 12","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAnonymousSid","package":"druntime","parentType":"","signature":"WinAnonymousSid = 13","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinProxySid","package":"druntime","parentType":"","signature":"WinProxySid = 14","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinEnterpriseControllersSid","package":"druntime","parentType":"","signature":"WinEnterpriseControllersSid = 15","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinSelfSid","package":"druntime","parentType":"","signature":"WinSelfSid = 16","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAuthenticatedUserSid","package":"druntime","parentType":"","signature":"WinAuthenticatedUserSid = 17","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinRestrictedCodeSid","package":"druntime","parentType":"","signature":"WinRestrictedCodeSid = 18","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinTerminalServerSid","package":"druntime","parentType":"","signature":"WinTerminalServerSid = 19","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinRemoteLogonIdSid","package":"druntime","parentType":"","signature":"WinRemoteLogonIdSid = 20","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLogonIdsSid","package":"druntime","parentType":"","signature":"WinLogonIdsSid = 21","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLocalSystemSid","package":"druntime","parentType":"","signature":"WinLocalSystemSid = 22","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLocalServiceSid","package":"druntime","parentType":"","signature":"WinLocalServiceSid = 23","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNetworkServiceSid","package":"druntime","parentType":"","signature":"WinNetworkServiceSid = 24","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinDomainSid","package":"druntime","parentType":"","signature":"WinBuiltinDomainSid = 25","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinAdministratorsSid","package":"druntime","parentType":"","signature":"WinBuiltinAdministratorsSid = 26","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinUsersSid = 27","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinGuestsSid","package":"druntime","parentType":"","signature":"WinBuiltinGuestsSid = 28","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinPowerUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinPowerUsersSid = 29","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinAccountOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinAccountOperatorsSid = 30","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinSystemOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinSystemOperatorsSid = 31","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinPrintOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinPrintOperatorsSid = 32","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinBackupOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinBackupOperatorsSid = 33","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinReplicatorSid","package":"druntime","parentType":"","signature":"WinBuiltinReplicatorSid = 34","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinPreWindows2000CompatibleAccessSid","package":"druntime","parentType":"","signature":"WinBuiltinPreWindows2000CompatibleAccessSid = 35","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinRemoteDesktopUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinRemoteDesktopUsersSid = 36","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinNetworkConfigurationOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinNetworkConfigurationOperatorsSid = 37","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountAdministratorSid","package":"druntime","parentType":"","signature":"WinAccountAdministratorSid = 38","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountGuestSid","package":"druntime","parentType":"","signature":"WinAccountGuestSid = 39","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountKrbtgtSid","package":"druntime","parentType":"","signature":"WinAccountKrbtgtSid = 40","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountDomainAdminsSid","package":"druntime","parentType":"","signature":"WinAccountDomainAdminsSid = 41","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountDomainUsersSid","package":"druntime","parentType":"","signature":"WinAccountDomainUsersSid = 42","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountDomainGuestsSid","package":"druntime","parentType":"","signature":"WinAccountDomainGuestsSid = 43","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountComputersSid","package":"druntime","parentType":"","signature":"WinAccountComputersSid = 44","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountControllersSid","package":"druntime","parentType":"","signature":"WinAccountControllersSid = 45","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountCertAdminsSid","package":"druntime","parentType":"","signature":"WinAccountCertAdminsSid = 46","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountSchemaAdminsSid","package":"druntime","parentType":"","signature":"WinAccountSchemaAdminsSid = 47","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountEnterpriseAdminsSid","package":"druntime","parentType":"","signature":"WinAccountEnterpriseAdminsSid = 48","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountPolicyAdminsSid","package":"druntime","parentType":"","signature":"WinAccountPolicyAdminsSid = 49","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountRasAndIasServersSid","package":"druntime","parentType":"","signature":"WinAccountRasAndIasServersSid = 50","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNTLMAuthenticationSid","package":"druntime","parentType":"","signature":"WinNTLMAuthenticationSid = 51","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinDigestAuthenticationSid","package":"druntime","parentType":"","signature":"WinDigestAuthenticationSid = 52","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinSChannelAuthenticationSid","package":"druntime","parentType":"","signature":"WinSChannelAuthenticationSid = 53","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinThisOrganizationSid","package":"druntime","parentType":"","signature":"WinThisOrganizationSid = 54","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinOtherOrganizationSid","package":"druntime","parentType":"","signature":"WinOtherOrganizationSid = 55","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinIncomingForestTrustBuildersSid","package":"druntime","parentType":"","signature":"WinBuiltinIncomingForestTrustBuildersSid = 56","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinPerfMonitoringUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinPerfMonitoringUsersSid = 57","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinPerfLoggingUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinPerfLoggingUsersSid = 58","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinAuthorizationAccessSid","package":"druntime","parentType":"","signature":"WinBuiltinAuthorizationAccessSid = 59","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinTerminalServerLicenseServersSid","package":"druntime","parentType":"","signature":"WinBuiltinTerminalServerLicenseServersSid = 60","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinDCOMUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinDCOMUsersSid = 61","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinIUsersSid","package":"druntime","parentType":"","signature":"WinBuiltinIUsersSid = 62","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinIUserSid","package":"druntime","parentType":"","signature":"WinIUserSid = 63","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinCryptoOperatorsSid","package":"druntime","parentType":"","signature":"WinBuiltinCryptoOperatorsSid = 64","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinUntrustedLabelSid","package":"druntime","parentType":"","signature":"WinUntrustedLabelSid = 65","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLowLabelSid","package":"druntime","parentType":"","signature":"WinLowLabelSid = 66","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinMediumLabelSid","package":"druntime","parentType":"","signature":"WinMediumLabelSid = 67","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinHighLabelSid","package":"druntime","parentType":"","signature":"WinHighLabelSid = 68","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinSystemLabelSid","package":"druntime","parentType":"","signature":"WinSystemLabelSid = 69","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinWriteRestrictedCodeSid","package":"druntime","parentType":"","signature":"WinWriteRestrictedCodeSid = 70","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCreatorOwnerRightsSid","package":"druntime","parentType":"","signature":"WinCreatorOwnerRightsSid = 71","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCacheablePrincipalsGroupSid","package":"druntime","parentType":"","signature":"WinCacheablePrincipalsGroupSid = 72","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNonCacheablePrincipalsGroupSid","package":"druntime","parentType":"","signature":"WinNonCacheablePrincipalsGroupSid = 73","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinEnterpriseReadonlyControllersSid","package":"druntime","parentType":"","signature":"WinEnterpriseReadonlyControllersSid = 74","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinAccountReadonlyControllersSid","package":"druntime","parentType":"","signature":"WinAccountReadonlyControllersSid = 75","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinEventLogReadersGroup","package":"druntime","parentType":"","signature":"WinBuiltinEventLogReadersGroup = 76","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinNewEnterpriseReadonlyControllersSid","package":"druntime","parentType":"","signature":"WinNewEnterpriseReadonlyControllersSid = 77","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinCertSvcDComAccessGroup","package":"druntime","parentType":"","signature":"WinBuiltinCertSvcDComAccessGroup = 78","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinMediumPlusLabelSid","package":"druntime","parentType":"","signature":"WinMediumPlusLabelSid = 79","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinLocalLogonSid","package":"druntime","parentType":"","signature":"WinLocalLogonSid = 80","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinConsoleLogonSid","package":"druntime","parentType":"","signature":"WinConsoleLogonSid = 81","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinThisOrganizationCertificateSid","package":"druntime","parentType":"","signature":"WinThisOrganizationCertificateSid = 82","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinApplicationPackageAuthoritySid","package":"druntime","parentType":"","signature":"WinApplicationPackageAuthoritySid = 83","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinBuiltinAnyPackageSid","package":"druntime","parentType":"","signature":"WinBuiltinAnyPackageSid = 84","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityInternetClientSid","package":"druntime","parentType":"","signature":"WinCapabilityInternetClientSid = 85","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityInternetClientServerSid","package":"druntime","parentType":"","signature":"WinCapabilityInternetClientServerSid = 86","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityPrivateNetworkClientServerSid","package":"druntime","parentType":"","signature":"WinCapabilityPrivateNetworkClientServerSid = 87","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityPicturesLibrarySid","package":"druntime","parentType":"","signature":"WinCapabilityPicturesLibrarySid = 88","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityVideosLibrarySid","package":"druntime","parentType":"","signature":"WinCapabilityVideosLibrarySid = 89","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityMusicLibrarySid","package":"druntime","parentType":"","signature":"WinCapabilityMusicLibrarySid = 90","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityDocumentsLibrarySid","package":"druntime","parentType":"","signature":"WinCapabilityDocumentsLibrarySid = 91","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilitySharedUserCertificatesSid","package":"druntime","parentType":"","signature":"WinCapabilitySharedUserCertificatesSid = 92","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityEnterpriseAuthenticationSid","package":"druntime","parentType":"","signature":"WinCapabilityEnterpriseAuthenticationSid = 93","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"WinCapabilityRemovableStorageSid","package":"druntime","parentType":"","signature":"WinCapabilityRemovableStorageSid = 94","url":"/ddoc/druntime/core/sys/windows/winnt.html#WELL_KNOWN_SID_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"QUOTA_LIMITS","package":"druntime","parentType":"","signature":"QUOTA_LIMITS","url":"/ddoc/druntime/core/sys/windows/winnt.html#QUOTA_LIMITS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PQUOTA_LIMITS","package":"druntime","parentType":"","signature":"PQUOTA_LIMITS = QUOTA_LIMITS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PQUOTA_LIMITS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IO_COUNTERS","package":"druntime","parentType":"","signature":"IO_COUNTERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#IO_COUNTERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIO_COUNTERS","package":"druntime","parentType":"","signature":"PIO_COUNTERS = IO_COUNTERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIO_COUNTERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"FILE_NOTIFY_INFORMATION","package":"druntime","parentType":"","signature":"FILE_NOTIFY_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_NOTIFY_INFORMATION"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"FileName","package":"druntime","parentType":"FILE_NOTIFY_INFORMATION","signature":"WCHAR * FileName()","url":"/ddoc/druntime/core/sys/windows/winnt/FILE_NOTIFY_INFORMATION.FileName.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PFILE_NOTIFY_INFORMATION","package":"druntime","parentType":"","signature":"PFILE_NOTIFY_INFORMATION = FILE_NOTIFY_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PFILE_NOTIFY_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_ERASE","package":"druntime","parentType":"","signature":"TAPE_ERASE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_ERASE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_ERASE","package":"druntime","parentType":"","signature":"PTAPE_ERASE = TAPE_ERASE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_ERASE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_GET_DRIVE_PARAMETERS","package":"druntime","parentType":"","signature":"TAPE_GET_DRIVE_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_GET_DRIVE_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_GET_DRIVE_PARAMETERS","package":"druntime","parentType":"","signature":"PTAPE_GET_DRIVE_PARAMETERS = TAPE_GET_DRIVE_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_GET_DRIVE_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_GET_MEDIA_PARAMETERS","package":"druntime","parentType":"","signature":"TAPE_GET_MEDIA_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_GET_MEDIA_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_GET_MEDIA_PARAMETERS","package":"druntime","parentType":"","signature":"PTAPE_GET_MEDIA_PARAMETERS = TAPE_GET_MEDIA_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_GET_MEDIA_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_GET_POSITION","package":"druntime","parentType":"","signature":"TAPE_GET_POSITION","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_GET_POSITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_GET_POSITION","package":"druntime","parentType":"","signature":"PTAPE_GET_POSITION = TAPE_GET_POSITION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_GET_POSITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_PREPARE","package":"druntime","parentType":"","signature":"TAPE_PREPARE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_PREPARE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_PREPARE","package":"druntime","parentType":"","signature":"PTAPE_PREPARE = TAPE_PREPARE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_PREPARE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_SET_DRIVE_PARAMETERS","package":"druntime","parentType":"","signature":"TAPE_SET_DRIVE_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_SET_DRIVE_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_SET_DRIVE_PARAMETERS","package":"druntime","parentType":"","signature":"PTAPE_SET_DRIVE_PARAMETERS = TAPE_SET_DRIVE_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_SET_DRIVE_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_SET_MEDIA_PARAMETERS","package":"druntime","parentType":"","signature":"TAPE_SET_MEDIA_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_SET_MEDIA_PARAMETERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_SET_MEDIA_PARAMETERS","package":"druntime","parentType":"","signature":"PTAPE_SET_MEDIA_PARAMETERS = TAPE_SET_MEDIA_PARAMETERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_SET_MEDIA_PARAMETERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_SET_POSITION","package":"druntime","parentType":"","signature":"TAPE_SET_POSITION","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_SET_POSITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_SET_POSITION","package":"druntime","parentType":"","signature":"PTAPE_SET_POSITION = TAPE_SET_POSITION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_SET_POSITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_WRITE_MARKS","package":"druntime","parentType":"","signature":"TAPE_WRITE_MARKS","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_WRITE_MARKS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_WRITE_MARKS","package":"druntime","parentType":"","signature":"PTAPE_WRITE_MARKS = TAPE_WRITE_MARKS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_WRITE_MARKS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"TAPE_CREATE_PARTITION","package":"druntime","parentType":"","signature":"TAPE_CREATE_PARTITION","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_CREATE_PARTITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PTAPE_CREATE_PARTITION","package":"druntime","parentType":"","signature":"PTAPE_CREATE_PARTITION = TAPE_CREATE_PARTITION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PTAPE_CREATE_PARTITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"MEMORY_BASIC_INFORMATION","package":"druntime","parentType":"","signature":"MEMORY_BASIC_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#MEMORY_BASIC_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PMEMORY_BASIC_INFORMATION","package":"druntime","parentType":"","signature":"PMEMORY_BASIC_INFORMATION = MEMORY_BASIC_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PMEMORY_BASIC_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"MESSAGE_RESOURCE_ENTRY","package":"druntime","parentType":"","signature":"MESSAGE_RESOURCE_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#MESSAGE_RESOURCE_ENTRY"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Text","package":"druntime","parentType":"MESSAGE_RESOURCE_ENTRY","signature":"BYTE * Text()","url":"/ddoc/druntime/core/sys/windows/winnt/MESSAGE_RESOURCE_ENTRY.Text.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PMESSAGE_RESOURCE_ENTRY","package":"druntime","parentType":"","signature":"PMESSAGE_RESOURCE_ENTRY = MESSAGE_RESOURCE_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PMESSAGE_RESOURCE_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"MESSAGE_RESOURCE_BLOCK","package":"druntime","parentType":"","signature":"MESSAGE_RESOURCE_BLOCK","url":"/ddoc/druntime/core/sys/windows/winnt.html#MESSAGE_RESOURCE_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PMESSAGE_RESOURCE_BLOCK","package":"druntime","parentType":"","signature":"PMESSAGE_RESOURCE_BLOCK = MESSAGE_RESOURCE_BLOCK *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PMESSAGE_RESOURCE_BLOCK"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"MESSAGE_RESOURCE_DATA","package":"druntime","parentType":"","signature":"MESSAGE_RESOURCE_DATA","url":"/ddoc/druntime/core/sys/windows/winnt.html#MESSAGE_RESOURCE_DATA"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Blocks","package":"druntime","parentType":"MESSAGE_RESOURCE_DATA","signature":"MESSAGE_RESOURCE_BLOCK * Blocks()","url":"/ddoc/druntime/core/sys/windows/winnt/MESSAGE_RESOURCE_DATA.Blocks.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PMESSAGE_RESOURCE_DATA","package":"druntime","parentType":"","signature":"PMESSAGE_RESOURCE_DATA = MESSAGE_RESOURCE_DATA *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PMESSAGE_RESOURCE_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"LIST_ENTRY","package":"druntime","parentType":"","signature":"LIST_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#LIST_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLIST_ENTRY","package":"druntime","parentType":"","signature":"PLIST_ENTRY = LIST_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLIST_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"_LIST_ENTRY","package":"druntime","parentType":"","signature":"_LIST_ENTRY = LIST_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#_LIST_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SINGLE_LIST_ENTRY","package":"druntime","parentType":"","signature":"SINGLE_LIST_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SINGLE_LIST_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSINGLE_LIST_ENTRY","package":"druntime","parentType":"","signature":"PSINGLE_LIST_ENTRY = SINGLE_LIST_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSINGLE_LIST_ENTRY"},{"doc":"","kind":"union","module":"core.sys.windows.winnt","name":"SLIST_HEADER","package":"druntime","parentType":"","signature":"SLIST_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SLIST_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSLIST_HEADER","package":"druntime","parentType":"","signature":"PSLIST_HEADER = SLIST_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSLIST_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"RTL_CRITICAL_SECTION_DEBUG","package":"druntime","parentType":"","signature":"RTL_CRITICAL_SECTION_DEBUG","url":"/ddoc/druntime/core/sys/windows/winnt.html#RTL_CRITICAL_SECTION_DEBUG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PRTL_CRITICAL_SECTION_DEBUG","package":"druntime","parentType":"","signature":"PRTL_CRITICAL_SECTION_DEBUG = RTL_CRITICAL_SECTION_DEBUG *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PRTL_CRITICAL_SECTION_DEBUG"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"_RTL_CRITICAL_SECTION_DEBUG","package":"druntime","parentType":"","signature":"_RTL_CRITICAL_SECTION_DEBUG = RTL_CRITICAL_SECTION_DEBUG","url":"/ddoc/druntime/core/sys/windows/winnt.html#_RTL_CRITICAL_SECTION_DEBUG"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"RTL_CRITICAL_SECTION","package":"druntime","parentType":"","signature":"RTL_CRITICAL_SECTION","url":"/ddoc/druntime/core/sys/windows/winnt.html#RTL_CRITICAL_SECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PRTL_CRITICAL_SECTION","package":"druntime","parentType":"","signature":"PRTL_CRITICAL_SECTION = RTL_CRITICAL_SECTION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PRTL_CRITICAL_SECTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"_RTL_CRITICAL_SECTION","package":"druntime","parentType":"","signature":"_RTL_CRITICAL_SECTION = RTL_CRITICAL_SECTION","url":"/ddoc/druntime/core/sys/windows/winnt.html#_RTL_CRITICAL_SECTION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"EVENTLOGRECORD","package":"druntime","parentType":"","signature":"EVENTLOGRECORD","url":"/ddoc/druntime/core/sys/windows/winnt.html#EVENTLOGRECORD"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PEVENTLOGRECORD","package":"druntime","parentType":"","signature":"PEVENTLOGRECORD = EVENTLOGRECORD *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PEVENTLOGRECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"OSVERSIONINFOA","package":"druntime","parentType":"","signature":"OSVERSIONINFOA","url":"/ddoc/druntime/core/sys/windows/winnt.html#OSVERSIONINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFOA","package":"druntime","parentType":"","signature":"POSVERSIONINFOA = OSVERSIONINFOA *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"OSVERSIONINFOW","package":"druntime","parentType":"","signature":"OSVERSIONINFOW","url":"/ddoc/druntime/core/sys/windows/winnt.html#OSVERSIONINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFOW","package":"druntime","parentType":"","signature":"POSVERSIONINFOW = OSVERSIONINFOW *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"OSVERSIONINFOEXA","package":"druntime","parentType":"","signature":"OSVERSIONINFOEXA","url":"/ddoc/druntime/core/sys/windows/winnt.html#OSVERSIONINFOEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFOEXA","package":"druntime","parentType":"","signature":"POSVERSIONINFOEXA = OSVERSIONINFOEXA *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFOEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"OSVERSIONINFOEXW","package":"druntime","parentType":"","signature":"OSVERSIONINFOEXW","url":"/ddoc/druntime/core/sys/windows/winnt.html#OSVERSIONINFOEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFOEXW","package":"druntime","parentType":"","signature":"POSVERSIONINFOEXW = OSVERSIONINFOEXW *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFOEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_VXD_HEADER","package":"druntime","parentType":"","signature":"IMAGE_VXD_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_VXD_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_VXD_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_VXD_HEADER = IMAGE_VXD_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_VXD_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_FILE_HEADER","package":"druntime","parentType":"","signature":"IMAGE_FILE_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_FILE_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_FILE_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_FILE_HEADER = IMAGE_FILE_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_FILE_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_DATA_DIRECTORY","package":"druntime","parentType":"","signature":"IMAGE_DATA_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DATA_DIRECTORY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_DATA_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_DATA_DIRECTORY = IMAGE_DATA_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_DATA_DIRECTORY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_OPTIONAL_HEADER32","package":"druntime","parentType":"","signature":"IMAGE_OPTIONAL_HEADER32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_OPTIONAL_HEADER32"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_OPTIONAL_HEADER32","package":"druntime","parentType":"","signature":"PIMAGE_OPTIONAL_HEADER32 = IMAGE_OPTIONAL_HEADER32 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_OPTIONAL_HEADER32"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_OPTIONAL_HEADER64","package":"druntime","parentType":"","signature":"IMAGE_OPTIONAL_HEADER64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_OPTIONAL_HEADER64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_OPTIONAL_HEADER64","package":"druntime","parentType":"","signature":"PIMAGE_OPTIONAL_HEADER64 = IMAGE_OPTIONAL_HEADER64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_OPTIONAL_HEADER64"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_ROM_OPTIONAL_HEADER","package":"druntime","parentType":"","signature":"IMAGE_ROM_OPTIONAL_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ROM_OPTIONAL_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_ROM_OPTIONAL_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_ROM_OPTIONAL_HEADER = IMAGE_ROM_OPTIONAL_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_ROM_OPTIONAL_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_DOS_HEADER","package":"druntime","parentType":"","signature":"IMAGE_DOS_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DOS_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_DOS_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_DOS_HEADER = IMAGE_DOS_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_DOS_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_OS2_HEADER","package":"druntime","parentType":"","signature":"IMAGE_OS2_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_OS2_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_OS2_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_OS2_HEADER = IMAGE_OS2_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_OS2_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_NT_HEADERS32","package":"druntime","parentType":"","signature":"IMAGE_NT_HEADERS32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_NT_HEADERS32"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_NT_HEADERS32","package":"druntime","parentType":"","signature":"PIMAGE_NT_HEADERS32 = IMAGE_NT_HEADERS32 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_NT_HEADERS32"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_NT_HEADERS64","package":"druntime","parentType":"","signature":"IMAGE_NT_HEADERS64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_NT_HEADERS64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_NT_HEADERS64","package":"druntime","parentType":"","signature":"PIMAGE_NT_HEADERS64 = IMAGE_NT_HEADERS64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_NT_HEADERS64"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_ROM_HEADERS","package":"druntime","parentType":"","signature":"IMAGE_ROM_HEADERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ROM_HEADERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_ROM_HEADERS","package":"druntime","parentType":"","signature":"PIMAGE_ROM_HEADERS = IMAGE_ROM_HEADERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_ROM_HEADERS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_SECTION_HEADER","package":"druntime","parentType":"","signature":"IMAGE_SECTION_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SECTION_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_SECTION_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_SECTION_HEADER = IMAGE_SECTION_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_SECTION_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_SYMBOL","package":"druntime","parentType":"","signature":"IMAGE_SYMBOL","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SYMBOL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_SYMBOL","package":"druntime","parentType":"","signature":"PIMAGE_SYMBOL = IMAGE_SYMBOL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_SYMBOL"},{"doc":"","kind":"union","module":"core.sys.windows.winnt","name":"IMAGE_AUX_SYMBOL","package":"druntime","parentType":"","signature":"IMAGE_AUX_SYMBOL","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_AUX_SYMBOL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_AUX_SYMBOL","package":"druntime","parentType":"","signature":"PIMAGE_AUX_SYMBOL = IMAGE_AUX_SYMBOL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_AUX_SYMBOL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_COFF_SYMBOLS_HEADER","package":"druntime","parentType":"","signature":"IMAGE_COFF_SYMBOLS_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_COFF_SYMBOLS_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_COFF_SYMBOLS_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_COFF_SYMBOLS_HEADER = IMAGE_COFF_SYMBOLS_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_COFF_SYMBOLS_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RELOCATION","package":"druntime","parentType":"","signature":"IMAGE_RELOCATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RELOCATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RELOCATION","package":"druntime","parentType":"","signature":"PIMAGE_RELOCATION = IMAGE_RELOCATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RELOCATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_BASE_RELOCATION","package":"druntime","parentType":"","signature":"IMAGE_BASE_RELOCATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_BASE_RELOCATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_BASE_RELOCATION","package":"druntime","parentType":"","signature":"PIMAGE_BASE_RELOCATION = IMAGE_BASE_RELOCATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_BASE_RELOCATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_LINENUMBER","package":"druntime","parentType":"","signature":"IMAGE_LINENUMBER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_LINENUMBER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_LINENUMBER","package":"druntime","parentType":"","signature":"PIMAGE_LINENUMBER = IMAGE_LINENUMBER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_LINENUMBER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_ARCHIVE_MEMBER_HEADER","package":"druntime","parentType":"","signature":"IMAGE_ARCHIVE_MEMBER_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ARCHIVE_MEMBER_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_ARCHIVE_MEMBER_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_ARCHIVE_MEMBER_HEADER = IMAGE_ARCHIVE_MEMBER_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_ARCHIVE_MEMBER_HEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_EXPORT_DIRECTORY","package":"druntime","parentType":"","signature":"IMAGE_EXPORT_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_EXPORT_DIRECTORY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_EXPORT_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_EXPORT_DIRECTORY = IMAGE_EXPORT_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_EXPORT_DIRECTORY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_IMPORT_BY_NAME","package":"druntime","parentType":"","signature":"IMAGE_IMPORT_BY_NAME","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_IMPORT_BY_NAME"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Name","package":"druntime","parentType":"IMAGE_IMPORT_BY_NAME","signature":"BYTE * Name()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_IMPORT_BY_NAME.Name.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_IMPORT_BY_NAME","package":"druntime","parentType":"","signature":"PIMAGE_IMPORT_BY_NAME = IMAGE_IMPORT_BY_NAME *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_IMPORT_BY_NAME"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_THUNK_DATA32","package":"druntime","parentType":"","signature":"IMAGE_THUNK_DATA32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_THUNK_DATA32"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_THUNK_DATA32","package":"druntime","parentType":"","signature":"PIMAGE_THUNK_DATA32 = IMAGE_THUNK_DATA32 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_THUNK_DATA32"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_THUNK_DATA64","package":"druntime","parentType":"","signature":"IMAGE_THUNK_DATA64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_THUNK_DATA64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_THUNK_DATA64","package":"druntime","parentType":"","signature":"PIMAGE_THUNK_DATA64 = IMAGE_THUNK_DATA64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_THUNK_DATA64"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_IMPORT_DESCRIPTOR","package":"druntime","parentType":"","signature":"IMAGE_IMPORT_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_IMPORT_DESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_IMPORT_DESCRIPTOR","package":"druntime","parentType":"","signature":"PIMAGE_IMPORT_DESCRIPTOR = IMAGE_IMPORT_DESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_IMPORT_DESCRIPTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_BOUND_IMPORT_DESCRIPTOR","package":"druntime","parentType":"","signature":"IMAGE_BOUND_IMPORT_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_BOUND_IMPORT_DESCRIPTOR"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_BOUND_IMPORT_DESCRIPTOR","package":"druntime","parentType":"","signature":"PIMAGE_BOUND_IMPORT_DESCRIPTOR = IMAGE_BOUND_IMPORT_DESCRIPTOR *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_BOUND_IMPORT_DESCRIPTOR"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_BOUND_FORWARDER_REF","package":"druntime","parentType":"","signature":"IMAGE_BOUND_FORWARDER_REF","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_BOUND_FORWARDER_REF"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_BOUND_FORWARDER_REF","package":"druntime","parentType":"","signature":"PIMAGE_BOUND_FORWARDER_REF = IMAGE_BOUND_FORWARDER_REF *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_BOUND_FORWARDER_REF"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_TLS_DIRECTORY32","package":"druntime","parentType":"","signature":"IMAGE_TLS_DIRECTORY32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_TLS_DIRECTORY32"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_TLS_DIRECTORY32","package":"druntime","parentType":"","signature":"PIMAGE_TLS_DIRECTORY32 = IMAGE_TLS_DIRECTORY32 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_TLS_DIRECTORY32"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_TLS_DIRECTORY64","package":"druntime","parentType":"","signature":"IMAGE_TLS_DIRECTORY64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_TLS_DIRECTORY64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_TLS_DIRECTORY64","package":"druntime","parentType":"","signature":"PIMAGE_TLS_DIRECTORY64 = IMAGE_TLS_DIRECTORY64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_TLS_DIRECTORY64"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DIRECTORY","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DIRECTORY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RESOURCE_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_RESOURCE_DIRECTORY = IMAGE_RESOURCE_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RESOURCE_DIRECTORY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DIRECTORY_ENTRY","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DIRECTORY_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DIRECTORY_ENTRY"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameOffset","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"uint NameOffset()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.NameOffset.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameIsString","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"bool NameIsString()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.NameIsString.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"OffsetToDirectory","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"uint OffsetToDirectory()()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.OffsetToDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"DataIsDirectory","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"bool DataIsDirectory()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.DataIsDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameOffset","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"uint NameOffset(uint  n)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.NameOffset.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameIsString","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"bool NameIsString(bool  n)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.NameIsString.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"OffsetToDirectory","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"uint OffsetToDirectory(uint  o)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.OffsetToDirectory.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"DataIsDirectory","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_ENTRY","signature":"bool DataIsDirectory(bool  d)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_ENTRY.DataIsDirectory.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RESOURCE_DIRECTORY_ENTRY","package":"druntime","parentType":"","signature":"PIMAGE_RESOURCE_DIRECTORY_ENTRY = IMAGE_RESOURCE_DIRECTORY_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RESOURCE_DIRECTORY_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DIRECTORY_STRING","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DIRECTORY_STRING","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DIRECTORY_STRING"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameString","package":"druntime","parentType":"IMAGE_RESOURCE_DIRECTORY_STRING","signature":"CHAR * NameString()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIRECTORY_STRING.NameString.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RESOURCE_DIRECTORY_STRING","package":"druntime","parentType":"","signature":"PIMAGE_RESOURCE_DIRECTORY_STRING = IMAGE_RESOURCE_DIRECTORY_STRING *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RESOURCE_DIRECTORY_STRING"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DIR_STRING_U","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DIR_STRING_U","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DIR_STRING_U"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"NameString","package":"druntime","parentType":"IMAGE_RESOURCE_DIR_STRING_U","signature":"WCHAR * NameString()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_RESOURCE_DIR_STRING_U.NameString.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RESOURCE_DIR_STRING_U","package":"druntime","parentType":"","signature":"PIMAGE_RESOURCE_DIR_STRING_U = IMAGE_RESOURCE_DIR_STRING_U *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RESOURCE_DIR_STRING_U"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DATA_ENTRY","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DATA_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DATA_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RESOURCE_DATA_ENTRY","package":"druntime","parentType":"","signature":"PIMAGE_RESOURCE_DATA_ENTRY = IMAGE_RESOURCE_DATA_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RESOURCE_DATA_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_LOAD_CONFIG_DIRECTORY32","package":"druntime","parentType":"","signature":"IMAGE_LOAD_CONFIG_DIRECTORY32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_LOAD_CONFIG_DIRECTORY32"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_LOAD_CONFIG_DIRECTORY32","package":"druntime","parentType":"","signature":"PIMAGE_LOAD_CONFIG_DIRECTORY32 = IMAGE_LOAD_CONFIG_DIRECTORY32 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_LOAD_CONFIG_DIRECTORY32"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_LOAD_CONFIG_DIRECTORY64","package":"druntime","parentType":"","signature":"IMAGE_LOAD_CONFIG_DIRECTORY64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_LOAD_CONFIG_DIRECTORY64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_LOAD_CONFIG_DIRECTORY64","package":"druntime","parentType":"","signature":"PIMAGE_LOAD_CONFIG_DIRECTORY64 = IMAGE_LOAD_CONFIG_DIRECTORY64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_LOAD_CONFIG_DIRECTORY64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_LOAD_CONFIG_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_LOAD_CONFIG_DIRECTORY = IMAGE_LOAD_CONFIG_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_LOAD_CONFIG_DIRECTORY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_RUNTIME_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"IMAGE_RUNTIME_FUNCTION_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RUNTIME_FUNCTION_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_RUNTIME_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"PIMAGE_RUNTIME_FUNCTION_ENTRY = IMAGE_RUNTIME_FUNCTION_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_RUNTIME_FUNCTION_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_CE_RUNTIME_FUNCTION_ENTRY"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"FuncLen","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"uint FuncLen()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.FuncLen.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"ThirtyTwoBit","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"bool ThirtyTwoBit()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.ThirtyTwoBit.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"ExceptionFlag","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"bool ExceptionFlag()()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.ExceptionFlag.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"FuncLen","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"uint FuncLen(uint  f)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.FuncLen.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"ThirtyTwoBit","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"bool ThirtyTwoBit(bool  t)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.ThirtyTwoBit.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"ExceptionFlag","package":"druntime","parentType":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","signature":"bool ExceptionFlag(bool  e)","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_CE_RUNTIME_FUNCTION_ENTRY.ExceptionFlag.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_CE_RUNTIME_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"PIMAGE_CE_RUNTIME_FUNCTION_ENTRY = IMAGE_CE_RUNTIME_FUNCTION_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_CE_RUNTIME_FUNCTION_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_DEBUG_DIRECTORY","package":"druntime","parentType":"","signature":"IMAGE_DEBUG_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DEBUG_DIRECTORY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_DEBUG_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_DEBUG_DIRECTORY = IMAGE_DEBUG_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_DEBUG_DIRECTORY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"FPO_DATA","package":"druntime","parentType":"","signature":"FPO_DATA","url":"/ddoc/druntime/core/sys/windows/winnt.html#FPO_DATA"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"cbRegs","package":"druntime","parentType":"FPO_DATA","signature":"ubyte cbRegs()","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.cbRegs.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"fHasSEH","package":"druntime","parentType":"FPO_DATA","signature":"bool fHasSEH()","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.fHasSEH.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"fUseBP","package":"druntime","parentType":"FPO_DATA","signature":"bool fUseBP()","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.fUseBP.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"reserved","package":"druntime","parentType":"FPO_DATA","signature":"bool reserved()()","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"cbFrame","package":"druntime","parentType":"FPO_DATA","signature":"ubyte cbFrame()()","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.cbFrame.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"cbRegs","package":"druntime","parentType":"FPO_DATA","signature":"ubyte cbRegs(ubyte  c)","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.cbRegs.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"fHasSEH","package":"druntime","parentType":"FPO_DATA","signature":"bool fHasSEH(bool  f)","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.fHasSEH.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"fUseBP","package":"druntime","parentType":"FPO_DATA","signature":"bool fUseBP(bool  f)","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.fUseBP.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"reserved","package":"druntime","parentType":"FPO_DATA","signature":"bool reserved(bool  r)","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.reserved.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"cbFrame","package":"druntime","parentType":"FPO_DATA","signature":"ubyte cbFrame(ubyte  c)","url":"/ddoc/druntime/core/sys/windows/winnt/FPO_DATA.cbFrame.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PFPO_DATA","package":"druntime","parentType":"","signature":"PFPO_DATA = FPO_DATA *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PFPO_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_DEBUG_MISC","package":"druntime","parentType":"","signature":"IMAGE_DEBUG_MISC","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DEBUG_MISC"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"Data","package":"druntime","parentType":"IMAGE_DEBUG_MISC","signature":"BYTE * Data()","url":"/ddoc/druntime/core/sys/windows/winnt/IMAGE_DEBUG_MISC.Data.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_DEBUG_MISC","package":"druntime","parentType":"","signature":"PIMAGE_DEBUG_MISC = IMAGE_DEBUG_MISC *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_DEBUG_MISC"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"IMAGE_FUNCTION_ENTRY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_FUNCTION_ENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_FUNCTION_ENTRY","package":"druntime","parentType":"","signature":"PIMAGE_FUNCTION_ENTRY = IMAGE_FUNCTION_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_FUNCTION_ENTRY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_FUNCTION_ENTRY64","package":"druntime","parentType":"","signature":"IMAGE_FUNCTION_ENTRY64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_FUNCTION_ENTRY64"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_FUNCTION_ENTRY64","package":"druntime","parentType":"","signature":"PIMAGE_FUNCTION_ENTRY64 = IMAGE_FUNCTION_ENTRY64 *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_FUNCTION_ENTRY64"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"IMAGE_SEPARATE_DEBUG_HEADER","package":"druntime","parentType":"","signature":"IMAGE_SEPARATE_DEBUG_HEADER","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SEPARATE_DEBUG_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_SEPARATE_DEBUG_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_SEPARATE_DEBUG_HEADER = IMAGE_SEPARATE_DEBUG_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_SEPARATE_DEBUG_HEADER"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SERVICE_NODE_TYPE","package":"druntime","parentType":"","signature":"SERVICE_NODE_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"DriverType","package":"druntime","parentType":"","signature":"DriverType = SERVICE_KERNEL_DRIVER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"FileSystemType","package":"druntime","parentType":"","signature":"FileSystemType = SERVICE_FILE_SYSTEM_DRIVER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"Win32ServiceOwnProcess","package":"druntime","parentType":"","signature":"Win32ServiceOwnProcess = SERVICE_WIN32_OWN_PROCESS","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"Win32ServiceShareProcess","package":"druntime","parentType":"","signature":"Win32ServiceShareProcess = SERVICE_WIN32_SHARE_PROCESS","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"AdapterType","package":"druntime","parentType":"","signature":"AdapterType = SERVICE_ADAPTER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"RecognizerType","package":"druntime","parentType":"","signature":"RecognizerType = SERVICE_RECOGNIZER_DRIVER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_NODE_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SERVICE_LOAD_TYPE","package":"druntime","parentType":"","signature":"SERVICE_LOAD_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"BootLoad","package":"druntime","parentType":"","signature":"BootLoad = SERVICE_BOOT_START","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemLoad","package":"druntime","parentType":"","signature":"SystemLoad = SERVICE_SYSTEM_START","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"AutoLoad","package":"druntime","parentType":"","signature":"AutoLoad = SERVICE_AUTO_START","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"DemandLoad","package":"druntime","parentType":"","signature":"DemandLoad = SERVICE_DEMAND_START","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"DisableLoad","package":"druntime","parentType":"","signature":"DisableLoad = SERVICE_DISABLED","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_LOAD_TYPE"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SERVICE_ERROR_TYPE","package":"druntime","parentType":"","signature":"SERVICE_ERROR_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_ERROR_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"IgnoreError","package":"druntime","parentType":"","signature":"IgnoreError = SERVICE_ERROR_IGNORE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_ERROR_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"NormalError","package":"druntime","parentType":"","signature":"NormalError = SERVICE_ERROR_NORMAL","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_ERROR_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SevereError","package":"druntime","parentType":"","signature":"SevereError = SERVICE_ERROR_SEVERE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_ERROR_TYPE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"CriticalError","package":"druntime","parentType":"","signature":"CriticalError = SERVICE_ERROR_CRITICAL","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_ERROR_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"_CM_ERROR_CONTROL_TYPE","package":"druntime","parentType":"","signature":"_CM_ERROR_CONTROL_TYPE = SERVICE_ERROR_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#_CM_ERROR_CONTROL_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"EXCEPTION_REGISTRATION_RECORD","package":"druntime","parentType":"","signature":"EXCEPTION_REGISTRATION_RECORD = void","url":"/ddoc/druntime/core/sys/windows/winnt.html#EXCEPTION_REGISTRATION_RECORD"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"NT_TIB","package":"druntime","parentType":"","signature":"NT_TIB","url":"/ddoc/druntime/core/sys/windows/winnt.html#NT_TIB"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PNT_TIB","package":"druntime","parentType":"","signature":"PNT_TIB = NT_TIB *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PNT_TIB"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"REPARSE_DATA_BUFFER","package":"druntime","parentType":"","signature":"REPARSE_DATA_BUFFER","url":"/ddoc/druntime/core/sys/windows/winnt.html#REPARSE_DATA_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PREPARSE_DATA_BUFFER","package":"druntime","parentType":"","signature":"PREPARSE_DATA_BUFFER = REPARSE_DATA_BUFFER *PREPARSE_DATA_BUFFER","url":"/ddoc/druntime/core/sys/windows/winnt.html#PREPARSE_DATA_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"REPARSE_GUID_DATA_BUFFER","package":"druntime","parentType":"","signature":"REPARSE_GUID_DATA_BUFFER","url":"/ddoc/druntime/core/sys/windows/winnt.html#REPARSE_GUID_DATA_BUFFER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PREPARSE_GUID_DATA_BUFFER","package":"druntime","parentType":"","signature":"PREPARSE_GUID_DATA_BUFFER = REPARSE_GUID_DATA_BUFFER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PREPARSE_GUID_DATA_BUFFER"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"REPARSE_POINT_INFORMATION","package":"druntime","parentType":"","signature":"REPARSE_POINT_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#REPARSE_POINT_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PREPARSE_POINT_INFORMATION","package":"druntime","parentType":"","signature":"PREPARSE_POINT_INFORMATION = REPARSE_POINT_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PREPARSE_POINT_INFORMATION"},{"doc":"","kind":"union","module":"core.sys.windows.winnt","name":"FILE_SEGMENT_ELEMENT","package":"druntime","parentType":"","signature":"FILE_SEGMENT_ELEMENT","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_SEGMENT_ELEMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PFILE_SEGMENT_ELEMENT","package":"druntime","parentType":"","signature":"PFILE_SEGMENT_ELEMENT = FILE_SEGMENT_ELEMENT *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PFILE_SEGMENT_ELEMENT"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"JOBOBJECTINFOCLASS","package":"druntime","parentType":"","signature":"JOBOBJECTINFOCLASS","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectBasicAccountingInformation","package":"druntime","parentType":"","signature":"JobObjectBasicAccountingInformation = 1","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectBasicLimitInformation","package":"druntime","parentType":"","signature":"JobObjectBasicLimitInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectBasicProcessIdList","package":"druntime","parentType":"","signature":"JobObjectBasicProcessIdList = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectBasicUIRestrictions","package":"druntime","parentType":"","signature":"JobObjectBasicUIRestrictions = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectSecurityLimitInformation","package":"druntime","parentType":"","signature":"JobObjectSecurityLimitInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectEndOfJobTimeInformation","package":"druntime","parentType":"","signature":"JobObjectEndOfJobTimeInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectAssociateCompletionPortInformation","package":"druntime","parentType":"","signature":"JobObjectAssociateCompletionPortInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectBasicAndIoAccountingInformation","package":"druntime","parentType":"","signature":"JobObjectBasicAndIoAccountingInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectExtendedLimitInformation","package":"druntime","parentType":"","signature":"JobObjectExtendedLimitInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"JobObjectJobSetInformation","package":"druntime","parentType":"","signature":"JobObjectJobSetInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"MaxJobObjectInfoClass","package":"druntime","parentType":"","signature":"MaxJobObjectInfoClass = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECTINFOCLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_BASIC_ACCOUNTING_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION = JOBOBJECT_BASIC_ACCOUNTING_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_BASIC_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_BASIC_LIMIT_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_BASIC_LIMIT_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_BASIC_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_BASIC_LIMIT_INFORMATION = JOBOBJECT_BASIC_LIMIT_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_BASIC_LIMIT_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_BASIC_PROCESS_ID_LIST","package":"druntime","parentType":"","signature":"JOBOBJECT_BASIC_PROCESS_ID_LIST","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_BASIC_PROCESS_ID_LIST"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"ProcessIdList","package":"druntime","parentType":"JOBOBJECT_BASIC_PROCESS_ID_LIST","signature":"ULONG_PTR * ProcessIdList()","url":"/ddoc/druntime/core/sys/windows/winnt/JOBOBJECT_BASIC_PROCESS_ID_LIST.ProcessIdList.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_BASIC_PROCESS_ID_LIST","package":"druntime","parentType":"","signature":"PJOBOBJECT_BASIC_PROCESS_ID_LIST = JOBOBJECT_BASIC_PROCESS_ID_LIST *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_BASIC_PROCESS_ID_LIST"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_BASIC_UI_RESTRICTIONS","package":"druntime","parentType":"","signature":"JOBOBJECT_BASIC_UI_RESTRICTIONS","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_BASIC_UI_RESTRICTIONS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_BASIC_UI_RESTRICTIONS","package":"druntime","parentType":"","signature":"PJOBOBJECT_BASIC_UI_RESTRICTIONS = JOBOBJECT_BASIC_UI_RESTRICTIONS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_BASIC_UI_RESTRICTIONS"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_SECURITY_LIMIT_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_SECURITY_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_SECURITY_LIMIT_INFORMATION = JOBOBJECT_SECURITY_LIMIT_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_SECURITY_LIMIT_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_END_OF_JOB_TIME_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_END_OF_JOB_TIME_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_END_OF_JOB_TIME_INFORMATION = JOBOBJECT_END_OF_JOB_TIME_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_END_OF_JOB_TIME_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","package":"druntime","parentType":"","signature":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_ASSOCIATE_COMPLETION_PORT"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_ASSOCIATE_COMPLETION_PORT","package":"druntime","parentType":"","signature":"PJOBOBJECT_ASSOCIATE_COMPLETION_PORT = JOBOBJECT_ASSOCIATE_COMPLETION_PORT *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_ASSOCIATE_COMPLETION_PORT"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION = JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION *PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_EXTENDED_LIMIT_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_EXTENDED_LIMIT_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_EXTENDED_LIMIT_INFORMATION = JOBOBJECT_EXTENDED_LIMIT_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_EXTENDED_LIMIT_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"JOBOBJECT_JOBSET_INFORMATION","package":"druntime","parentType":"","signature":"JOBOBJECT_JOBSET_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOBOBJECT_JOBSET_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PJOBOBJECT_JOBSET_INFORMATION","package":"druntime","parentType":"","signature":"PJOBOBJECT_JOBSET_INFORMATION = JOBOBJECT_JOBSET_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PJOBOBJECT_JOBSET_INFORMATION"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"LATENCY_TIME","package":"druntime","parentType":"","signature":"LATENCY_TIME","url":"/ddoc/druntime/core/sys/windows/winnt.html#LATENCY_TIME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"LT_DONT_CARE","package":"druntime","parentType":"","signature":"LT_DONT_CARE = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#LATENCY_TIME"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"LT_LOWEST_LATENCY","package":"druntime","parentType":"","signature":"LT_LOWEST_LATENCY = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#LATENCY_TIME"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PLATENCY_TIME","package":"druntime","parentType":"","signature":"PLATENCY_TIME = LATENCY_TIME *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PLATENCY_TIME"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"SYSTEM_POWER_STATE","package":"druntime","parentType":"","signature":"SYSTEM_POWER_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemUnspecified","package":"druntime","parentType":"","signature":"PowerSystemUnspecified = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemWorking","package":"druntime","parentType":"","signature":"PowerSystemWorking = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemSleeping1","package":"druntime","parentType":"","signature":"PowerSystemSleeping1 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemSleeping2","package":"druntime","parentType":"","signature":"PowerSystemSleeping2 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemSleeping3","package":"druntime","parentType":"","signature":"PowerSystemSleeping3 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemHibernate","package":"druntime","parentType":"","signature":"PowerSystemHibernate = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemShutdown","package":"druntime","parentType":"","signature":"PowerSystemShutdown = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerSystemMaximum","package":"druntime","parentType":"","signature":"PowerSystemMaximum = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_STATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_POWER_STATE","package":"druntime","parentType":"","signature":"PSYSTEM_POWER_STATE = SYSTEM_POWER_STATE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_POWER_STATE"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"POWER_ACTION","package":"druntime","parentType":"","signature":"POWER_ACTION","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionNone","package":"druntime","parentType":"","signature":"PowerActionNone = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionReserved","package":"druntime","parentType":"","signature":"PowerActionReserved = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionSleep","package":"druntime","parentType":"","signature":"PowerActionSleep = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionHibernate","package":"druntime","parentType":"","signature":"PowerActionHibernate = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionShutdown","package":"druntime","parentType":"","signature":"PowerActionShutdown = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionShutdownReset","package":"druntime","parentType":"","signature":"PowerActionShutdownReset = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionShutdownOff","package":"druntime","parentType":"","signature":"PowerActionShutdownOff = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerActionWarmEject","package":"druntime","parentType":"","signature":"PowerActionWarmEject = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PPOWER_ACTION","package":"druntime","parentType":"","signature":"PPOWER_ACTION = POWER_ACTION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PPOWER_ACTION"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"DEVICE_POWER_STATE","package":"druntime","parentType":"","signature":"DEVICE_POWER_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceUnspecified","package":"druntime","parentType":"","signature":"PowerDeviceUnspecified = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceD0","package":"druntime","parentType":"","signature":"PowerDeviceD0 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceD1","package":"druntime","parentType":"","signature":"PowerDeviceD1 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceD2","package":"druntime","parentType":"","signature":"PowerDeviceD2 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceD3","package":"druntime","parentType":"","signature":"PowerDeviceD3 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"PowerDeviceMaximum","package":"druntime","parentType":"","signature":"PowerDeviceMaximum = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#DEVICE_POWER_STATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PDEVICE_POWER_STATE","package":"druntime","parentType":"","signature":"PDEVICE_POWER_STATE = DEVICE_POWER_STATE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PDEVICE_POWER_STATE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"BATTERY_REPORTING_SCALE","package":"druntime","parentType":"","signature":"BATTERY_REPORTING_SCALE","url":"/ddoc/druntime/core/sys/windows/winnt.html#BATTERY_REPORTING_SCALE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PBATTERY_REPORTING_SCALE","package":"druntime","parentType":"","signature":"PBATTERY_REPORTING_SCALE = BATTERY_REPORTING_SCALE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PBATTERY_REPORTING_SCALE"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"POWER_ACTION_POLICY","package":"druntime","parentType":"","signature":"POWER_ACTION_POLICY","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PPOWER_ACTION_POLICY","package":"druntime","parentType":"","signature":"PPOWER_ACTION_POLICY = POWER_ACTION_POLICY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PPOWER_ACTION_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_POWER_LEVEL","package":"druntime","parentType":"","signature":"SYSTEM_POWER_LEVEL","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_LEVEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_POWER_LEVEL","package":"druntime","parentType":"","signature":"PSYSTEM_POWER_LEVEL = SYSTEM_POWER_LEVEL *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_POWER_LEVEL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_POWER_POLICY","package":"druntime","parentType":"","signature":"SYSTEM_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_POWER_POLICY","package":"druntime","parentType":"","signature":"PSYSTEM_POWER_POLICY = SYSTEM_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_POWER_CAPABILITIES","package":"druntime","parentType":"","signature":"SYSTEM_POWER_CAPABILITIES","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_CAPABILITIES"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_POWER_CAPABILITIES","package":"druntime","parentType":"","signature":"PSYSTEM_POWER_CAPABILITIES = SYSTEM_POWER_CAPABILITIES *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_POWER_CAPABILITIES"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_BATTERY_STATE","package":"druntime","parentType":"","signature":"SYSTEM_BATTERY_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_BATTERY_STATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_BATTERY_STATE","package":"druntime","parentType":"","signature":"PSYSTEM_BATTERY_STATE = SYSTEM_BATTERY_STATE *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_BATTERY_STATE"},{"doc":"","kind":"enum","module":"core.sys.windows.winnt","name":"POWER_INFORMATION_LEVEL","package":"druntime","parentType":"","signature":"POWER_INFORMATION_LEVEL","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerPolicyAc","package":"druntime","parentType":"","signature":"SystemPowerPolicyAc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerPolicyDc","package":"druntime","parentType":"","signature":"SystemPowerPolicyDc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"VerifySystemPolicyAc","package":"druntime","parentType":"","signature":"VerifySystemPolicyAc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"VerifySystemPolicyDc","package":"druntime","parentType":"","signature":"VerifySystemPolicyDc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerCapabilities","package":"druntime","parentType":"","signature":"SystemPowerCapabilities = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemBatteryState","package":"druntime","parentType":"","signature":"SystemBatteryState = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerStateHandler","package":"druntime","parentType":"","signature":"SystemPowerStateHandler = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorStateHandler","package":"druntime","parentType":"","signature":"ProcessorStateHandler = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerPolicyCurrent","package":"druntime","parentType":"","signature":"SystemPowerPolicyCurrent = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"AdministratorPowerPolicy","package":"druntime","parentType":"","signature":"AdministratorPowerPolicy = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemReserveHiberFile","package":"druntime","parentType":"","signature":"SystemReserveHiberFile = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorInformation","package":"druntime","parentType":"","signature":"ProcessorInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerInformation","package":"druntime","parentType":"","signature":"SystemPowerInformation = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorStateHandler2","package":"druntime","parentType":"","signature":"ProcessorStateHandler2 = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"LastWakeTime","package":"druntime","parentType":"","signature":"LastWakeTime = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"LastSleepTime","package":"druntime","parentType":"","signature":"LastSleepTime = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemExecutionState","package":"druntime","parentType":"","signature":"SystemExecutionState = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"SystemPowerStateNotifyHandler","package":"druntime","parentType":"","signature":"SystemPowerStateNotifyHandler = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorPowerPolicyAc","package":"druntime","parentType":"","signature":"ProcessorPowerPolicyAc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorPowerPolicyDc","package":"druntime","parentType":"","signature":"ProcessorPowerPolicyDc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"VerifyProcessorPowerPolicyAc","package":"druntime","parentType":"","signature":"VerifyProcessorPowerPolicyAc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"VerifyProcessorPowerPolicyDc","package":"druntime","parentType":"","signature":"VerifyProcessorPowerPolicyDc = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"enum_member","module":"core.sys.windows.winnt","name":"ProcessorPowerPolicyCurrent","package":"druntime","parentType":"","signature":"ProcessorPowerPolicyCurrent = ","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_INFORMATION_LEVEL"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"SYSTEM_POWER_INFORMATION","package":"druntime","parentType":"","signature":"SYSTEM_POWER_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_POWER_INFORMATION"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PSYSTEM_POWER_INFORMATION","package":"druntime","parentType":"","signature":"PSYSTEM_POWER_INFORMATION = SYSTEM_POWER_INFORMATION *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PSYSTEM_POWER_INFORMATION"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"PROCESSOR_POWER_POLICY_INFO","package":"druntime","parentType":"","signature":"PROCESSOR_POWER_POLICY_INFO","url":"/ddoc/druntime/core/sys/windows/winnt.html#PROCESSOR_POWER_POLICY_INFO"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"AllowDemotion","package":"druntime","parentType":"PROCESSOR_POWER_POLICY_INFO","signature":"bool AllowDemotion()","url":"/ddoc/druntime/core/sys/windows/winnt/PROCESSOR_POWER_POLICY_INFO.AllowDemotion.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"AllowPromotion","package":"druntime","parentType":"PROCESSOR_POWER_POLICY_INFO","signature":"bool AllowPromotion()()","url":"/ddoc/druntime/core/sys/windows/winnt/PROCESSOR_POWER_POLICY_INFO.AllowPromotion.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"AllowDemotion","package":"druntime","parentType":"PROCESSOR_POWER_POLICY_INFO","signature":"bool AllowDemotion(bool  a)","url":"/ddoc/druntime/core/sys/windows/winnt/PROCESSOR_POWER_POLICY_INFO.AllowDemotion.html"},{"doc":"","kind":"method","module":"core.sys.windows.winnt","name":"AllowPromotion","package":"druntime","parentType":"PROCESSOR_POWER_POLICY_INFO","signature":"bool AllowPromotion(bool  a)","url":"/ddoc/druntime/core/sys/windows/winnt/PROCESSOR_POWER_POLICY_INFO.AllowPromotion.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PPROCESSOR_POWER_POLICY_INFO","package":"druntime","parentType":"","signature":"PPROCESSOR_POWER_POLICY_INFO = PROCESSOR_POWER_POLICY_INFO *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PPROCESSOR_POWER_POLICY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"PROCESSOR_POWER_POLICY","package":"druntime","parentType":"","signature":"PROCESSOR_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/winnt.html#PROCESSOR_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PPROCESSOR_POWER_POLICY","package":"druntime","parentType":"","signature":"PPROCESSOR_POWER_POLICY = PROCESSOR_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PPROCESSOR_POWER_POLICY"},{"doc":"","kind":"struct","module":"core.sys.windows.winnt","name":"ADMINISTRATOR_POWER_POLICY","package":"druntime","parentType":"","signature":"ADMINISTRATOR_POWER_POLICY","url":"/ddoc/druntime/core/sys/windows/winnt.html#ADMINISTRATOR_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PADMINISTRATOR_POWER_POLICY","package":"druntime","parentType":"","signature":"PADMINISTRATOR_POWER_POLICY = ADMINISTRATOR_POWER_POLICY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PADMINISTRATOR_POWER_POLICY"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_TLS_CALLBACK","package":"druntime","parentType":"","signature":"PIMAGE_TLS_CALLBACK = void  function(PVOID,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_TLS_CALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFO","package":"druntime","parentType":"","signature":"POSVERSIONINFO = OSVERSIONINFO *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"POSVERSIONINFOEX","package":"druntime","parentType":"","signature":"POSVERSIONINFOEX = OSVERSIONINFOEX *","url":"/ddoc/druntime/core/sys/windows/winnt.html#POSVERSIONINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_OPTIONAL_HEADER","package":"druntime","parentType":"","signature":"PIMAGE_OPTIONAL_HEADER = IMAGE_OPTIONAL_HEADER *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_OPTIONAL_HEADER"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_NT_HEADERS","package":"druntime","parentType":"","signature":"PIMAGE_NT_HEADERS = IMAGE_NT_HEADERS *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_NT_HEADERS"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_THUNK_DATA","package":"druntime","parentType":"","signature":"PIMAGE_THUNK_DATA = IMAGE_THUNK_DATA *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_THUNK_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winnt","name":"PIMAGE_TLS_DIRECTORY","package":"druntime","parentType":"","signature":"PIMAGE_TLS_DIRECTORY = IMAGE_TLS_DIRECTORY *","url":"/ddoc/druntime/core/sys/windows/winnt.html#PIMAGE_TLS_DIRECTORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ANSI_NULL","package":"druntime","parentType":"","signature":"char ANSI_NULL","url":"/ddoc/druntime/core/sys/windows/winnt.html#ANSI_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"UNICODE_NULL","package":"druntime","parentType":"","signature":"wchar UNICODE_NULL","url":"/ddoc/druntime/core/sys/windows/winnt.html#UNICODE_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"APPLICATION_ERROR_MASK","package":"druntime","parentType":"","signature":"APPLICATION_ERROR_MASK","url":"/ddoc/druntime/core/sys/windows/winnt.html#APPLICATION_ERROR_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ERROR_SEVERITY_SUCCESS","package":"druntime","parentType":"","signature":"ERROR_SEVERITY_SUCCESS","url":"/ddoc/druntime/core/sys/windows/winnt.html#ERROR_SEVERITY_SUCCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ERROR_SEVERITY_INFORMATIONAL","package":"druntime","parentType":"","signature":"ERROR_SEVERITY_INFORMATIONAL","url":"/ddoc/druntime/core/sys/windows/winnt.html#ERROR_SEVERITY_INFORMATIONAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ERROR_SEVERITY_WARNING","package":"druntime","parentType":"","signature":"ERROR_SEVERITY_WARNING","url":"/ddoc/druntime/core/sys/windows/winnt.html#ERROR_SEVERITY_WARNING"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ERROR_SEVERITY_ERROR","package":"druntime","parentType":"","signature":"ERROR_SEVERITY_ERROR","url":"/ddoc/druntime/core/sys/windows/winnt.html#ERROR_SEVERITY_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ACE_OBJECT_TYPE_PRESENT","package":"druntime","parentType":"","signature":"DWORD ACE_OBJECT_TYPE_PRESENT","url":"/ddoc/druntime/core/sys/windows/winnt.html#ACE_OBJECT_TYPE_PRESENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"OBJECT_INHERIT_ACE","package":"druntime","parentType":"","signature":"BYTE OBJECT_INHERIT_ACE","url":"/ddoc/druntime/core/sys/windows/winnt.html#OBJECT_INHERIT_ACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"DELETE","package":"druntime","parentType":"","signature":"ACCESS_MASK DELETE","url":"/ddoc/druntime/core/sys/windows/winnt.html#DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"INVALID_FILE_ATTRIBUTES","package":"druntime","parentType":"","signature":"DWORD INVALID_FILE_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winnt.html#INVALID_FILE_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_LIST_DIRECTORY","package":"druntime","parentType":"","signature":"DWORD FILE_LIST_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_LIST_DIRECTORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_SHARE_READ","package":"druntime","parentType":"","signature":"DWORD FILE_SHARE_READ","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_SHARE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_ATTRIBUTE_READONLY","package":"druntime","parentType":"","signature":"DWORD FILE_ATTRIBUTE_READONLY","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_ATTRIBUTE_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_COPY_STRUCTURED_STORAGE","package":"druntime","parentType":"","signature":"FILE_COPY_STRUCTURED_STORAGE","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_COPY_STRUCTURED_STORAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_STRUCTURED_STORAGE","package":"druntime","parentType":"","signature":"FILE_STRUCTURED_STORAGE","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_STRUCTURED_STORAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_VALID_OPTION_FLAGS","package":"druntime","parentType":"","signature":"FILE_VALID_OPTION_FLAGS","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_VALID_OPTION_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_VALID_PIPE_OPTION_FLAGS","package":"druntime","parentType":"","signature":"FILE_VALID_PIPE_OPTION_FLAGS","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_VALID_PIPE_OPTION_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_VALID_MAILSLOT_OPTION_FLAGS","package":"druntime","parentType":"","signature":"FILE_VALID_MAILSLOT_OPTION_FLAGS","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_VALID_MAILSLOT_OPTION_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_VALID_SET_FLAGS","package":"druntime","parentType":"","signature":"FILE_VALID_SET_FLAGS","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_VALID_SET_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_SUPERSEDE","package":"druntime","parentType":"","signature":"ULONG FILE_SUPERSEDE","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_SUPERSEDE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_DIRECTORY_FILE","package":"druntime","parentType":"","signature":"ULONG FILE_DIRECTORY_FILE","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_DIRECTORY_FILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_ALL_ACCESS","package":"druntime","parentType":"","signature":"ACCESS_MASK FILE_ALL_ACCESS","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_ALL_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_NOTIFY_CHANGE_FILE_NAME","package":"druntime","parentType":"","signature":"DWORD FILE_NOTIFY_CHANGE_FILE_NAME","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_NOTIFY_CHANGE_FILE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"FILE_CASE_SENSITIVE_SEARCH","package":"druntime","parentType":"","signature":"DWORD FILE_CASE_SENSITIVE_SEARCH","url":"/ddoc/druntime/core/sys/windows/winnt.html#FILE_CASE_SENSITIVE_SEARCH"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IO_COMPLETION_QUERY_STATE","package":"druntime","parentType":"","signature":"ACCESS_MASK IO_COMPLETION_QUERY_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#IO_COMPLETION_QUERY_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"DUPLICATE_CLOSE_SOURCE","package":"druntime","parentType":"","signature":"DWORD DUPLICATE_CLOSE_SOURCE","url":"/ddoc/druntime/core/sys/windows/winnt.html#DUPLICATE_CLOSE_SOURCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"MAILSLOT_NO_MESSAGE","package":"druntime","parentType":"","signature":"DWORD MAILSLOT_NO_MESSAGE","url":"/ddoc/druntime/core/sys/windows/winnt.html#MAILSLOT_NO_MESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"PROCESS_TERMINATE","package":"druntime","parentType":"","signature":"ACCESS_MASK PROCESS_TERMINATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#PROCESS_TERMINATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"THREAD_TERMINATE","package":"druntime","parentType":"","signature":"ACCESS_MASK THREAD_TERMINATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#THREAD_TERMINATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"THREAD_BASE_PRIORITY_LOWRT","package":"druntime","parentType":"","signature":"THREAD_BASE_PRIORITY_LOWRT","url":"/ddoc/druntime/core/sys/windows/winnt.html#THREAD_BASE_PRIORITY_LOWRT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"THREAD_BASE_PRIORITY_MAX","package":"druntime","parentType":"","signature":"THREAD_BASE_PRIORITY_MAX","url":"/ddoc/druntime/core/sys/windows/winnt.html#THREAD_BASE_PRIORITY_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"THREAD_BASE_PRIORITY_MIN","package":"druntime","parentType":"","signature":"THREAD_BASE_PRIORITY_MIN","url":"/ddoc/druntime/core/sys/windows/winnt.html#THREAD_BASE_PRIORITY_MIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"THREAD_BASE_PRIORITY_IDLE","package":"druntime","parentType":"","signature":"THREAD_BASE_PRIORITY_IDLE","url":"/ddoc/druntime/core/sys/windows/winnt.html#THREAD_BASE_PRIORITY_IDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"EXCEPTION_NONCONTINUABLE","package":"druntime","parentType":"","signature":"DWORD EXCEPTION_NONCONTINUABLE","url":"/ddoc/druntime/core/sys/windows/winnt.html#EXCEPTION_NONCONTINUABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"EXCEPTION_MAXIMUM_PARAMETERS","package":"druntime","parentType":"","signature":"size_t EXCEPTION_MAXIMUM_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winnt.html#EXCEPTION_MAXIMUM_PARAMETERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"MUTANT_QUERY_STATE","package":"druntime","parentType":"","signature":"ACCESS_MASK MUTANT_QUERY_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#MUTANT_QUERY_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TIMER_QUERY_STATE","package":"druntime","parentType":"","signature":"ACCESS_MASK TIMER_QUERY_STATE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TIMER_QUERY_STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_NULL_SID_AUTHORITY","package":"druntime","parentType":"","signature":"SID_IDENTIFIER_AUTHORITY SECURITY_NULL_SID_AUTHORITY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_NULL_SID_AUTHORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_NULL_RID","package":"druntime","parentType":"","signature":"DWORD SECURITY_NULL_RID","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_NULL_RID"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SE_CREATE_TOKEN_NAME","package":"druntime","parentType":"","signature":"TCHAR[] SE_CREATE_TOKEN_NAME","url":"/ddoc/druntime/core/sys/windows/winnt.html#SE_CREATE_TOKEN_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SE_GROUP_MANDATORY","package":"druntime","parentType":"","signature":"DWORD SE_GROUP_MANDATORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SE_GROUP_MANDATORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"NLS_VALID_LOCALE_MASK","package":"druntime","parentType":"","signature":"NLS_VALID_LOCALE_MASK","url":"/ddoc/druntime/core/sys/windows/winnt.html#NLS_VALID_LOCALE_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"LANG_SYSTEM_DEFAULT","package":"druntime","parentType":"","signature":"WORD LANG_SYSTEM_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winnt.html#LANG_SYSTEM_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"LANG_USER_DEFAULT","package":"druntime","parentType":"","signature":"WORD LANG_USER_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winnt.html#LANG_USER_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"LOCALE_NEUTRAL","package":"druntime","parentType":"","signature":"DWORD LOCALE_NEUTRAL","url":"/ddoc/druntime/core/sys/windows/winnt.html#LOCALE_NEUTRAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"MIN_ACL_REVISION","package":"druntime","parentType":"","signature":"BYTE MIN_ACL_REVISION","url":"/ddoc/druntime/core/sys/windows/winnt.html#MIN_ACL_REVISION"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_NO_SERIALIZE","package":"druntime","parentType":"","signature":"DWORD HEAP_NO_SERIALIZE","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_NO_SERIALIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_CREATE_ALIGN_16","package":"druntime","parentType":"","signature":"HEAP_CREATE_ALIGN_16","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_CREATE_ALIGN_16"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_CREATE_ENABLE_TRACING","package":"druntime","parentType":"","signature":"HEAP_CREATE_ENABLE_TRACING","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_CREATE_ENABLE_TRACING"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_MAXIMUM_TAG","package":"druntime","parentType":"","signature":"HEAP_MAXIMUM_TAG","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_MAXIMUM_TAG"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_PSEUDO_TAG_FLAG","package":"druntime","parentType":"","signature":"HEAP_PSEUDO_TAG_FLAG","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_PSEUDO_TAG_FLAG"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"HEAP_TAG_SHIFT","package":"druntime","parentType":"","signature":"HEAP_TAG_SHIFT","url":"/ddoc/druntime/core/sys/windows/winnt.html#HEAP_TAG_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"KEY_QUERY_VALUE","package":"druntime","parentType":"","signature":"ACCESS_MASK KEY_QUERY_VALUE","url":"/ddoc/druntime/core/sys/windows/winnt.html#KEY_QUERY_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"REG_WHOLE_HIVE_VOLATILE","package":"druntime","parentType":"","signature":"DWORD REG_WHOLE_HIVE_VOLATILE","url":"/ddoc/druntime/core/sys/windows/winnt.html#REG_WHOLE_HIVE_VOLATILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"REG_OPTION_RESERVED","package":"druntime","parentType":"","signature":"DWORD REG_OPTION_RESERVED","url":"/ddoc/druntime/core/sys/windows/winnt.html#REG_OPTION_RESERVED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"OWNER_SECURITY_INFORMATION","package":"druntime","parentType":"","signature":"SECURITY_INFORMATION OWNER_SECURITY_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winnt.html#OWNER_SECURITY_INFORMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"MAXIMUM_PROCESSORS","package":"druntime","parentType":"","signature":"DWORD MAXIMUM_PROCESSORS","url":"/ddoc/druntime/core/sys/windows/winnt.html#MAXIMUM_PROCESSORS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SEC_BASED","package":"druntime","parentType":"","signature":"DWORD SEC_BASED","url":"/ddoc/druntime/core/sys/windows/winnt.html#SEC_BASED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECTION_QUERY","package":"druntime","parentType":"","signature":"ACCESS_MASK SECTION_QUERY","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECTION_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"MESSAGE_RESOURCE_UNICODE","package":"druntime","parentType":"","signature":"MESSAGE_RESOURCE_UNICODE","url":"/ddoc/druntime/core/sys/windows/winnt.html#MESSAGE_RESOURCE_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"RTL_CRITSECT_TYPE","package":"druntime","parentType":"","signature":"RTL_CRITSECT_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#RTL_CRITSECT_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"RTL_RESOURCE_TYPE","package":"druntime","parentType":"","signature":"RTL_RESOURCE_TYPE","url":"/ddoc/druntime/core/sys/windows/winnt.html#RTL_RESOURCE_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_FILE_RELOCS_STRIPPED","package":"druntime","parentType":"","signature":"WORD IMAGE_FILE_RELOCS_STRIPPED","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_FILE_RELOCS_STRIPPED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE","package":"druntime","parentType":"","signature":"WORD IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_SEPARATE_DEBUG_SIGNATURE","package":"druntime","parentType":"","signature":"IMAGE_SEPARATE_DEBUG_SIGNATURE","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SEPARATE_DEBUG_SIGNATURE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_NUMBEROF_DIRECTORY_ENTRIES","package":"druntime","parentType":"","signature":"size_t IMAGE_NUMBEROF_DIRECTORY_ENTRIES","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_NUMBEROF_DIRECTORY_ENTRIES"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_SCN_TYPE_REG","package":"druntime","parentType":"","signature":"DWORD IMAGE_SCN_TYPE_REG","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SCN_TYPE_REG"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_SYM_TYPE_PCODE","package":"druntime","parentType":"","signature":"IMAGE_SYM_TYPE_PCODE","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_SYM_TYPE_PCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_REL_PPC_TYPEMASK","package":"druntime","parentType":"","signature":"IMAGE_REL_PPC_TYPEMASK","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_REL_PPC_TYPEMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_REL_PPC_NEG","package":"druntime","parentType":"","signature":"IMAGE_REL_PPC_NEG","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_REL_PPC_NEG"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_REL_PPC_BRTAKEN","package":"druntime","parentType":"","signature":"IMAGE_REL_PPC_BRTAKEN","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_REL_PPC_BRTAKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_REL_PPC_BRNTAKEN","package":"druntime","parentType":"","signature":"IMAGE_REL_PPC_BRNTAKEN","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_REL_PPC_BRNTAKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_REL_PPC_TOCDEFN","package":"druntime","parentType":"","signature":"IMAGE_REL_PPC_TOCDEFN","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_REL_PPC_TOCDEFN"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_ARCHIVE_START_SIZE","package":"druntime","parentType":"","signature":"size_t IMAGE_ARCHIVE_START_SIZE","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ARCHIVE_START_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_ARCHIVE_START","package":"druntime","parentType":"","signature":"TCHAR[] IMAGE_ARCHIVE_START","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ARCHIVE_START"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_ORDINAL_FLAG32","package":"druntime","parentType":"","signature":"IMAGE_ORDINAL_FLAG32","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ORDINAL_FLAG32"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_ORDINAL_FLAG64","package":"druntime","parentType":"","signature":"ulong IMAGE_ORDINAL_FLAG64","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_ORDINAL_FLAG64"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_NAME_IS_STRING","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_NAME_IS_STRING","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_NAME_IS_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","package":"druntime","parentType":"","signature":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_RESOURCE_DATA_IS_DIRECTORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IMAGE_DEBUG_MISC_EXENAME","package":"druntime","parentType":"","signature":"IMAGE_DEBUG_MISC_EXENAME","url":"/ddoc/druntime/core/sys/windows/winnt.html#IMAGE_DEBUG_MISC_EXENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_BTMASK","package":"druntime","parentType":"","signature":"N_BTMASK","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_BTMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_TMASK","package":"druntime","parentType":"","signature":"N_TMASK","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_TMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_TMASK1","package":"druntime","parentType":"","signature":"N_TMASK1","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_TMASK1"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_TMASK2","package":"druntime","parentType":"","signature":"N_TMASK2","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_TMASK2"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_BTSHFT","package":"druntime","parentType":"","signature":"N_BTSHFT","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_BTSHFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"N_TSHIFT","package":"druntime","parentType":"","signature":"N_TSHIFT","url":"/ddoc/druntime/core/sys/windows/winnt.html#N_TSHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IS_TEXT_UNICODE_ASCII16","package":"druntime","parentType":"","signature":"int IS_TEXT_UNICODE_ASCII16","url":"/ddoc/druntime/core/sys/windows/winnt.html#IS_TEXT_UNICODE_ASCII16"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SERVICE_KERNEL_DRIVER","package":"druntime","parentType":"","signature":"DWORD SERVICE_KERNEL_DRIVER","url":"/ddoc/druntime/core/sys/windows/winnt.html#SERVICE_KERNEL_DRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SE_OWNER_DEFAULTED","package":"druntime","parentType":"","signature":"uint SE_OWNER_DEFAULTED","url":"/ddoc/druntime/core/sys/windows/winnt.html#SE_OWNER_DEFAULTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_DESCRIPTOR_MIN_LENGTH","package":"druntime","parentType":"","signature":"size_t SECURITY_DESCRIPTOR_MIN_LENGTH","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_DESCRIPTOR_MIN_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_DESCRIPTOR_REVISION","package":"druntime","parentType":"","signature":"DWORD SECURITY_DESCRIPTOR_REVISION","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_DESCRIPTOR_REVISION"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SE_PRIVILEGE_ENABLED_BY_DEFAULT","package":"druntime","parentType":"","signature":"DWORD SE_PRIVILEGE_ENABLED_BY_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winnt.html#SE_PRIVILEGE_ENABLED_BY_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"PRIVILEGE_SET_ALL_NECESSARY","package":"druntime","parentType":"","signature":"DWORD PRIVILEGE_SET_ALL_NECESSARY","url":"/ddoc/druntime/core/sys/windows/winnt.html#PRIVILEGE_SET_ALL_NECESSARY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_MAX_IMPERSONATION_LEVEL","package":"druntime","parentType":"","signature":"SECURITY_IMPERSONATION_LEVEL SECURITY_MAX_IMPERSONATION_LEVEL","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_MAX_IMPERSONATION_LEVEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_DYNAMIC_TRACKING","package":"druntime","parentType":"","signature":"BOOLEAN SECURITY_DYNAMIC_TRACKING","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_DYNAMIC_TRACKING"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TOKEN_ASSIGN_PRIMARY","package":"druntime","parentType":"","signature":"DWORD TOKEN_ASSIGN_PRIMARY","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_ASSIGN_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TOKEN_SOURCE_LENGTH","package":"druntime","parentType":"","signature":"size_t TOKEN_SOURCE_LENGTH","url":"/ddoc/druntime/core/sys/windows/winnt.html#TOKEN_SOURCE_LENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TAPE_DRIVE_FIXED","package":"druntime","parentType":"","signature":"DWORD TAPE_DRIVE_FIXED","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_DRIVE_FIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TAPE_DRIVE_LOAD_UNLOAD","package":"druntime","parentType":"","signature":"DWORD TAPE_DRIVE_LOAD_UNLOAD","url":"/ddoc/druntime/core/sys/windows/winnt.html#TAPE_DRIVE_LOAD_UNLOAD"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"VER_SUITE_SMALLBUSINESS","package":"druntime","parentType":"","signature":"USHORT VER_SUITE_SMALLBUSINESS","url":"/ddoc/druntime/core/sys/windows/winnt.html#VER_SUITE_SMALLBUSINESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"WT_EXECUTEDEFAULT","package":"druntime","parentType":"","signature":"ULONG WT_EXECUTEDEFAULT","url":"/ddoc/druntime/core/sys/windows/winnt.html#WT_EXECUTEDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"TLS_MINIMUM_AVAILABLE","package":"druntime","parentType":"","signature":"DWORD TLS_MINIMUM_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winnt.html#TLS_MINIMUM_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"IO_REPARSE_TAG_RESERVED_ZERO","package":"druntime","parentType":"","signature":"ULONG IO_REPARSE_TAG_RESERVED_ZERO","url":"/ddoc/druntime/core/sys/windows/winnt.html#IO_REPARSE_TAG_RESERVED_ZERO"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SYSTEM_LUID","package":"druntime","parentType":"","signature":"LUID SYSTEM_LUID","url":"/ddoc/druntime/core/sys/windows/winnt.html#SYSTEM_LUID"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"SECURITY_MAX_SID_SIZE","package":"druntime","parentType":"","signature":"SECURITY_MAX_SID_SIZE","url":"/ddoc/druntime/core/sys/windows/winnt.html#SECURITY_MAX_SID_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"REPARSE_DATA_BUFFER_HEADER_SIZE","package":"druntime","parentType":"","signature":"size_t REPARSE_DATA_BUFFER_HEADER_SIZE","url":"/ddoc/druntime/core/sys/windows/winnt.html#REPARSE_DATA_BUFFER_HEADER_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"JOB_OBJECT_LIMIT_WORKINGSET","package":"druntime","parentType":"","signature":"DWORD JOB_OBJECT_LIMIT_WORKINGSET","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOB_OBJECT_LIMIT_WORKINGSET"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"JOB_OBJECT_UILIMIT_HANDLES","package":"druntime","parentType":"","signature":"DWORD JOB_OBJECT_UILIMIT_HANDLES","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOB_OBJECT_UILIMIT_HANDLES"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"JOB_OBJECT_SECURITY_NO_ADMIN","package":"druntime","parentType":"","signature":"DWORD JOB_OBJECT_SECURITY_NO_ADMIN","url":"/ddoc/druntime/core/sys/windows/winnt.html#JOB_OBJECT_SECURITY_NO_ADMIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"ES_SYSTEM_REQUIRED","package":"druntime","parentType":"","signature":"DWORD ES_SYSTEM_REQUIRED","url":"/ddoc/druntime/core/sys/windows/winnt.html#ES_SYSTEM_REQUIRED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"POWER_SYSTEM_MAXIMUM","package":"druntime","parentType":"","signature":"POWER_SYSTEM_MAXIMUM","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_SYSTEM_MAXIMUM"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"POWER_ACTION_QUERY_ALLOWED","package":"druntime","parentType":"","signature":"ULONG POWER_ACTION_QUERY_ALLOWED","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_ACTION_QUERY_ALLOWED"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"POWER_LEVEL_USER_NOTIFY_TEXT","package":"druntime","parentType":"","signature":"ULONG POWER_LEVEL_USER_NOTIFY_TEXT","url":"/ddoc/druntime/core/sys/windows/winnt.html#POWER_LEVEL_USER_NOTIFY_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winnt","name":"DISCHARGE_POLICY_CRITICAL","package":"druntime","parentType":"","signature":"size_t DISCHARGE_POLICY_CRITICAL","url":"/ddoc/druntime/core/sys/windows/winnt.html#DISCHARGE_POLICY_CRITICAL"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winperf","name":"core.sys.windows.winperf","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winperf.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winperf","name":"PERF_DATA_BLOCK","package":"druntime","parentType":"","signature":"PERF_DATA_BLOCK","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DATA_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PPERF_DATA_BLOCK","package":"druntime","parentType":"","signature":"PPERF_DATA_BLOCK = PERF_DATA_BLOCK *","url":"/ddoc/druntime/core/sys/windows/winperf.html#PPERF_DATA_BLOCK"},{"doc":"","kind":"struct","module":"core.sys.windows.winperf","name":"PERF_OBJECT_TYPE","package":"druntime","parentType":"","signature":"PERF_OBJECT_TYPE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_OBJECT_TYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PPERF_OBJECT_TYPE","package":"druntime","parentType":"","signature":"PPERF_OBJECT_TYPE = PERF_OBJECT_TYPE *","url":"/ddoc/druntime/core/sys/windows/winperf.html#PPERF_OBJECT_TYPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winperf","name":"PERF_COUNTER_DEFINITION","package":"druntime","parentType":"","signature":"PERF_COUNTER_DEFINITION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_DEFINITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PPERF_COUNTER_DEFINITION","package":"druntime","parentType":"","signature":"PPERF_COUNTER_DEFINITION = PERF_COUNTER_DEFINITION *","url":"/ddoc/druntime/core/sys/windows/winperf.html#PPERF_COUNTER_DEFINITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winperf","name":"PERF_INSTANCE_DEFINITION","package":"druntime","parentType":"","signature":"PERF_INSTANCE_DEFINITION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_INSTANCE_DEFINITION"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PPERF_INSTANCE_DEFINITION","package":"druntime","parentType":"","signature":"PPERF_INSTANCE_DEFINITION = PERF_INSTANCE_DEFINITION *","url":"/ddoc/druntime/core/sys/windows/winperf.html#PPERF_INSTANCE_DEFINITION"},{"doc":"","kind":"struct","module":"core.sys.windows.winperf","name":"PERF_COUNTER_BLOCK","package":"druntime","parentType":"","signature":"PERF_COUNTER_BLOCK","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PPERF_COUNTER_BLOCK","package":"druntime","parentType":"","signature":"PPERF_COUNTER_BLOCK = PERF_COUNTER_BLOCK *","url":"/ddoc/druntime/core/sys/windows/winperf.html#PPERF_COUNTER_BLOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PM_OPEN_PROC","package":"druntime","parentType":"","signature":"PM_OPEN_PROC = DWORD function (LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winperf.html#PM_OPEN_PROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PM_COLLECT_PROC","package":"druntime","parentType":"","signature":"PM_COLLECT_PROC = DWORD function (LPWSTR, PVOID *, PDWORD, PDWORD)","url":"/ddoc/druntime/core/sys/windows/winperf.html#PM_COLLECT_PROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winperf","name":"PM_CLOSE_PROC","package":"druntime","parentType":"","signature":"PM_CLOSE_PROC = DWORD function ()","url":"/ddoc/druntime/core/sys/windows/winperf.html#PM_CLOSE_PROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DATA_VERSION","package":"druntime","parentType":"","signature":"PERF_DATA_VERSION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DATA_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DATA_REVISION","package":"druntime","parentType":"","signature":"PERF_DATA_REVISION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DATA_REVISION"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_NO_INSTANCES","package":"druntime","parentType":"","signature":"PERF_NO_INSTANCES","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_NO_INSTANCES"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SIZE_DWORD","package":"druntime","parentType":"","signature":"PERF_SIZE_DWORD","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SIZE_DWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SIZE_LARGE","package":"druntime","parentType":"","signature":"PERF_SIZE_LARGE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SIZE_LARGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SIZE_ZERO","package":"druntime","parentType":"","signature":"PERF_SIZE_ZERO","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SIZE_ZERO"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SIZE_VARIABLE_LEN","package":"druntime","parentType":"","signature":"PERF_SIZE_VARIABLE_LEN","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SIZE_VARIABLE_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TYPE_NUMBER","package":"druntime","parentType":"","signature":"PERF_TYPE_NUMBER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TYPE_NUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TYPE_COUNTER","package":"druntime","parentType":"","signature":"PERF_TYPE_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TYPE_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TYPE_TEXT","package":"druntime","parentType":"","signature":"PERF_TYPE_TEXT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TYPE_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TYPE_ZERO","package":"druntime","parentType":"","signature":"PERF_TYPE_ZERO","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TYPE_ZERO"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_NUMBER_HEX","package":"druntime","parentType":"","signature":"PERF_NUMBER_HEX","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_NUMBER_HEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_NUMBER_DECIMAL","package":"druntime","parentType":"","signature":"PERF_NUMBER_DECIMAL","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_NUMBER_DECIMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_NUMBER_DEC_1000","package":"druntime","parentType":"","signature":"PERF_NUMBER_DEC_1000","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_NUMBER_DEC_1000"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_VALUE","package":"druntime","parentType":"","signature":"PERF_COUNTER_VALUE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_VALUE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_RATE","package":"druntime","parentType":"","signature":"PERF_COUNTER_RATE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_RATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_FRACTION","package":"druntime","parentType":"","signature":"PERF_COUNTER_FRACTION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_FRACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_BASE","package":"druntime","parentType":"","signature":"PERF_COUNTER_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_ELAPSED","package":"druntime","parentType":"","signature":"PERF_COUNTER_ELAPSED","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_ELAPSED"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_QUEUELEN","package":"druntime","parentType":"","signature":"PERF_COUNTER_QUEUELEN","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_QUEUELEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_HISTOGRAM","package":"druntime","parentType":"","signature":"PERF_COUNTER_HISTOGRAM","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_HISTOGRAM"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TEXT_UNICODE","package":"druntime","parentType":"","signature":"PERF_TEXT_UNICODE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TEXT_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TEXT_ASCII","package":"druntime","parentType":"","signature":"PERF_TEXT_ASCII","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TEXT_ASCII"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TIMER_TICK","package":"druntime","parentType":"","signature":"PERF_TIMER_TICK","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TIMER_TICK"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_TIMER_100NS","package":"druntime","parentType":"","signature":"PERF_TIMER_100NS","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_TIMER_100NS"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_OBJECT_TIMER","package":"druntime","parentType":"","signature":"PERF_OBJECT_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_OBJECT_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DELTA_COUNTER","package":"druntime","parentType":"","signature":"PERF_DELTA_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DELTA_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DELTA_BASE","package":"druntime","parentType":"","signature":"PERF_DELTA_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DELTA_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_INVERSE_COUNTER","package":"druntime","parentType":"","signature":"PERF_INVERSE_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_INVERSE_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_MULTI_COUNTER","package":"druntime","parentType":"","signature":"PERF_MULTI_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_MULTI_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DISPLAY_NO_SUFFIX","package":"druntime","parentType":"","signature":"PERF_DISPLAY_NO_SUFFIX","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DISPLAY_NO_SUFFIX"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DISPLAY_PER_SEC","package":"druntime","parentType":"","signature":"PERF_DISPLAY_PER_SEC","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DISPLAY_PER_SEC"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DISPLAY_PERCENT","package":"druntime","parentType":"","signature":"PERF_DISPLAY_PERCENT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DISPLAY_PERCENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DISPLAY_SECONDS","package":"druntime","parentType":"","signature":"PERF_DISPLAY_SECONDS","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DISPLAY_SECONDS"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DISPLAY_NOSHOW","package":"druntime","parentType":"","signature":"PERF_DISPLAY_NOSHOW","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DISPLAY_NOSHOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_HISTOGRAM_TYPE","package":"druntime","parentType":"","signature":"PERF_COUNTER_HISTOGRAM_TYPE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_HISTOGRAM_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_NO_UNIQUE_ID","package":"druntime","parentType":"","signature":"PERF_NO_UNIQUE_ID","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_NO_UNIQUE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DETAIL_NOVICE","package":"druntime","parentType":"","signature":"PERF_DETAIL_NOVICE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DETAIL_NOVICE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DETAIL_ADVANCED","package":"druntime","parentType":"","signature":"PERF_DETAIL_ADVANCED","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DETAIL_ADVANCED"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DETAIL_EXPERT","package":"druntime","parentType":"","signature":"PERF_DETAIL_EXPERT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DETAIL_EXPERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_DETAIL_WIZARD","package":"druntime","parentType":"","signature":"PERF_DETAIL_WIZARD","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_DETAIL_WIZARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_COUNTER","package":"druntime","parentType":"","signature":"PERF_COUNTER_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_TIMER","package":"druntime","parentType":"","signature":"PERF_COUNTER_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_QUEUELEN_TYPE","package":"druntime","parentType":"","signature":"PERF_COUNTER_QUEUELEN_TYPE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_QUEUELEN_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_BULK_COUNT","package":"druntime","parentType":"","signature":"PERF_COUNTER_BULK_COUNT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_BULK_COUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_TEXT","package":"druntime","parentType":"","signature":"PERF_COUNTER_TEXT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_RAWCOUNT","package":"druntime","parentType":"","signature":"PERF_COUNTER_RAWCOUNT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_RAWCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_LARGE_RAWCOUNT","package":"druntime","parentType":"","signature":"PERF_COUNTER_LARGE_RAWCOUNT","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_LARGE_RAWCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_RAWCOUNT_HEX","package":"druntime","parentType":"","signature":"PERF_COUNTER_RAWCOUNT_HEX","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_RAWCOUNT_HEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_LARGE_RAWCOUNT_HEX","package":"druntime","parentType":"","signature":"PERF_COUNTER_LARGE_RAWCOUNT_HEX","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_LARGE_RAWCOUNT_HEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SAMPLE_FRACTION","package":"druntime","parentType":"","signature":"PERF_SAMPLE_FRACTION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SAMPLE_FRACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SAMPLE_COUNTER","package":"druntime","parentType":"","signature":"PERF_SAMPLE_COUNTER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SAMPLE_COUNTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_NODATA","package":"druntime","parentType":"","signature":"PERF_COUNTER_NODATA","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_NODATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_TIMER_INV","package":"druntime","parentType":"","signature":"PERF_COUNTER_TIMER_INV","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_TIMER_INV"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_SAMPLE_BASE","package":"druntime","parentType":"","signature":"PERF_SAMPLE_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_SAMPLE_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_AVERAGE_TIMER","package":"druntime","parentType":"","signature":"PERF_AVERAGE_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_AVERAGE_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_AVERAGE_BASE","package":"druntime","parentType":"","signature":"PERF_AVERAGE_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_AVERAGE_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_AVERAGE_BULK","package":"druntime","parentType":"","signature":"PERF_AVERAGE_BULK","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_AVERAGE_BULK"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_100NSEC_TIMER","package":"druntime","parentType":"","signature":"PERF_100NSEC_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_100NSEC_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_100NSEC_TIMER_INV","package":"druntime","parentType":"","signature":"PERF_100NSEC_TIMER_INV","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_100NSEC_TIMER_INV"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_MULTI_TIMER","package":"druntime","parentType":"","signature":"PERF_COUNTER_MULTI_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_MULTI_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_MULTI_TIMER_INV","package":"druntime","parentType":"","signature":"PERF_COUNTER_MULTI_TIMER_INV","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_MULTI_TIMER_INV"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_COUNTER_MULTI_BASE","package":"druntime","parentType":"","signature":"PERF_COUNTER_MULTI_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_COUNTER_MULTI_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_100NSEC_MULTI_TIMER","package":"druntime","parentType":"","signature":"PERF_100NSEC_MULTI_TIMER","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_100NSEC_MULTI_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_100NSEC_MULTI_TIMER_INV","package":"druntime","parentType":"","signature":"PERF_100NSEC_MULTI_TIMER_INV","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_100NSEC_MULTI_TIMER_INV"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_RAW_FRACTION","package":"druntime","parentType":"","signature":"PERF_RAW_FRACTION","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_RAW_FRACTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_RAW_BASE","package":"druntime","parentType":"","signature":"PERF_RAW_BASE","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_RAW_BASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winperf","name":"PERF_ELAPSED_TIME","package":"druntime","parentType":"","signature":"PERF_ELAPSED_TIME","url":"/ddoc/druntime/core/sys/windows/winperf.html#PERF_ELAPSED_TIME"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winreg","name":"core.sys.windows.winreg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winreg.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegCloseKey","package":"druntime","parentType":"","signature":"LONG RegCloseKey(const  scope  HKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegCloseKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegConnectRegistryA","package":"druntime","parentType":"","signature":"LONG RegConnectRegistryA(LPCSTR,  HKEY,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegConnectRegistryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegConnectRegistryW","package":"druntime","parentType":"","signature":"LONG RegConnectRegistryW(LPCWSTR,  HKEY,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegConnectRegistryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegCreateKeyExA","package":"druntime","parentType":"","signature":"LONG RegCreateKeyExA(const  scope  HKEY,  LPCSTR,  DWORD,  LPSTR,  DWORD,  REGSAM,\n       LPSECURITY_ATTRIBUTES,  PHKEY,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegCreateKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegCreateKeyExW","package":"druntime","parentType":"","signature":"LONG RegCreateKeyExW(const  scope  HKEY,  LPCWSTR,  DWORD,  LPWSTR,  DWORD,  REGSAM,\n       LPSECURITY_ATTRIBUTES,  PHKEY,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegCreateKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegDeleteKeyA","package":"druntime","parentType":"","signature":"LONG RegDeleteKeyA(const  scope  HKEY,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegDeleteKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegDeleteKeyW","package":"druntime","parentType":"","signature":"LONG RegDeleteKeyW(const  scope  HKEY,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegDeleteKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegDeleteValueA","package":"druntime","parentType":"","signature":"LONG RegDeleteValueA(const  scope  HKEY,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegDeleteValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegDeleteValueW","package":"druntime","parentType":"","signature":"LONG RegDeleteValueW(const  scope  HKEY,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegDeleteValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumKeyExA","package":"druntime","parentType":"","signature":"LONG RegEnumKeyExA(const  scope  HKEY,  DWORD,  LPSTR,  PDWORD,  PDWORD,  LPSTR,  PDWORD,\n       PFILETIME)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumKeyExW","package":"druntime","parentType":"","signature":"LONG RegEnumKeyExW(const  scope  HKEY,  DWORD,  LPWSTR,  PDWORD,  PDWORD,  LPWSTR,  PDWORD,\n       PFILETIME)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumValueA","package":"druntime","parentType":"","signature":"LONG RegEnumValueA(const  scope  HKEY,  DWORD,  LPSTR,  PDWORD,  PDWORD,  PDWORD,  LPBYTE,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumValueW","package":"druntime","parentType":"","signature":"LONG RegEnumValueW(const  scope  HKEY,  DWORD,  LPWSTR,  PDWORD,  PDWORD,  PDWORD,  LPBYTE,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegFlushKey","package":"druntime","parentType":"","signature":"LONG RegFlushKey(const  scope  HKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegFlushKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegLoadKeyA","package":"druntime","parentType":"","signature":"LONG RegLoadKeyA(const  scope  HKEY,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegLoadKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegLoadKeyW","package":"druntime","parentType":"","signature":"LONG RegLoadKeyW(const  scope  HKEY,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegLoadKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegOpenKeyExA","package":"druntime","parentType":"","signature":"LONG RegOpenKeyExA(const  scope  HKEY,  LPCSTR,  DWORD,  REGSAM,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegOpenKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegOpenKeyExW","package":"druntime","parentType":"","signature":"LONG RegOpenKeyExW(const  scope  HKEY,  LPCWSTR,  DWORD,  REGSAM,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegOpenKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryInfoKeyA","package":"druntime","parentType":"","signature":"LONG RegQueryInfoKeyA(const  scope  HKEY,  LPSTR,  PDWORD,  PDWORD,  PDWORD,  PDWORD,\n       PDWORD,  PDWORD,  PDWORD,  PDWORD,  PDWORD,  PFILETIME)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryInfoKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryInfoKeyW","package":"druntime","parentType":"","signature":"LONG RegQueryInfoKeyW(const  scope  HKEY,  LPWSTR,  PDWORD,  PDWORD,  PDWORD,  PDWORD,\n       PDWORD,  PDWORD,  PDWORD,  PDWORD,  PDWORD,  PFILETIME)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryInfoKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryMultipleValuesA","package":"druntime","parentType":"","signature":"LONG RegQueryMultipleValuesA(const  scope  HKEY,  PVALENTA,  DWORD,  LPSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryMultipleValuesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryMultipleValuesW","package":"druntime","parentType":"","signature":"LONG RegQueryMultipleValuesW(const  scope  HKEY,  PVALENTW,  DWORD,  LPWSTR,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryMultipleValuesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryValueExA","package":"druntime","parentType":"","signature":"LONG RegQueryValueExA(const  scope  HKEY,  LPCSTR,  LPDWORD,  LPDWORD, /*LPBYTE*/ LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryValueExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryValueExW","package":"druntime","parentType":"","signature":"LONG RegQueryValueExW(const  scope  HKEY,  LPCWSTR,  LPDWORD,  LPDWORD, /*LPBYTE*/ LPVOID,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryValueExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegReplaceKeyA","package":"druntime","parentType":"","signature":"LONG RegReplaceKeyA(const  scope  HKEY,  LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegReplaceKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegReplaceKeyW","package":"druntime","parentType":"","signature":"LONG RegReplaceKeyW(const  scope  HKEY,  LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegReplaceKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSaveKeyA","package":"druntime","parentType":"","signature":"LONG RegSaveKeyA(const  scope  HKEY,  LPCSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSaveKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSaveKeyW","package":"druntime","parentType":"","signature":"LONG RegSaveKeyW(const  scope  HKEY,  LPCWSTR,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSaveKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetKeySecurity","package":"druntime","parentType":"","signature":"LONG RegSetKeySecurity(const  scope  HKEY,  SECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetKeySecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetValueExA","package":"druntime","parentType":"","signature":"LONG RegSetValueExA(const  scope  HKEY,  LPCSTR,  DWORD,  DWORD,  const(BYTE) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetValueExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetValueExW","package":"druntime","parentType":"","signature":"LONG RegSetValueExW(const  scope  HKEY,  LPCWSTR,  DWORD,  DWORD,  const(BYTE) *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetValueExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegUnLoadKeyA","package":"druntime","parentType":"","signature":"LONG RegUnLoadKeyA(const  scope  HKEY,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegUnLoadKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegUnLoadKeyW","package":"druntime","parentType":"","signature":"LONG RegUnLoadKeyW(const  scope  HKEY,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegUnLoadKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegNotifyChangeKeyValue","package":"druntime","parentType":"","signature":"LONG RegNotifyChangeKeyValue(const  scope  HKEY,  BOOL,  DWORD,  HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winreg/RegNotifyChangeKeyValue.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"AbortSystemShutdownA","package":"druntime","parentType":"","signature":"BOOL AbortSystemShutdownA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/AbortSystemShutdownA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"AbortSystemShutdownW","package":"druntime","parentType":"","signature":"BOOL AbortSystemShutdownW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winreg/AbortSystemShutdownW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"InitiateSystemShutdownA","package":"druntime","parentType":"","signature":"BOOL InitiateSystemShutdownA(LPSTR,  LPSTR,  DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winreg/InitiateSystemShutdownA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"InitiateSystemShutdownW","package":"druntime","parentType":"","signature":"BOOL InitiateSystemShutdownW(LPWSTR,  LPWSTR,  DWORD,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winreg/InitiateSystemShutdownW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegGetKeySecurity","package":"druntime","parentType":"","signature":"LONG RegGetKeySecurity(const  scope  HKEY,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegGetKeySecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegRestoreKeyA","package":"druntime","parentType":"","signature":"LONG RegRestoreKeyA(const  scope  HKEY,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegRestoreKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegRestoreKeyW","package":"druntime","parentType":"","signature":"LONG RegRestoreKeyW(const  scope  HKEY,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegRestoreKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetKeySecurity","package":"druntime","parentType":"","signature":"LONG RegSetKeySecurity(const  scope  HKEY,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetKeySecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegCreateKeyA","package":"druntime","parentType":"","signature":"LONG RegCreateKeyA(const  scope  HKEY,  LPCSTR,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegCreateKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegCreateKeyW","package":"druntime","parentType":"","signature":"LONG RegCreateKeyW(const  scope  HKEY,  LPCWSTR,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegCreateKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumKeyA","package":"druntime","parentType":"","signature":"LONG RegEnumKeyA(const  scope  HKEY,  DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegEnumKeyW","package":"druntime","parentType":"","signature":"LONG RegEnumKeyW(const  scope  HKEY,  DWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegEnumKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegOpenKeyA","package":"druntime","parentType":"","signature":"LONG RegOpenKeyA(const  scope  HKEY,  LPCSTR,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegOpenKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegOpenKeyW","package":"druntime","parentType":"","signature":"LONG RegOpenKeyW(const  scope  HKEY,  LPCWSTR,  PHKEY)","url":"/ddoc/druntime/core/sys/windows/winreg/RegOpenKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryValueA","package":"druntime","parentType":"","signature":"LONG RegQueryValueA(const  scope  HKEY,  LPCSTR,  LPSTR,  PLONG)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegQueryValueW","package":"druntime","parentType":"","signature":"LONG RegQueryValueW(const  scope  HKEY,  LPCWSTR,  LPWSTR,  PLONG)","url":"/ddoc/druntime/core/sys/windows/winreg/RegQueryValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetValueA","package":"druntime","parentType":"","signature":"LONG RegSetValueA(const  scope  HKEY,  LPCSTR,  DWORD,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winreg","name":"RegSetValueW","package":"druntime","parentType":"","signature":"LONG RegSetValueW(const  scope  HKEY,  LPCWSTR,  DWORD,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winreg/RegSetValueW.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winreg","name":"REGSAM","package":"druntime","parentType":"","signature":"REGSAM = ACCESS_MASK","url":"/ddoc/druntime/core/sys/windows/winreg.html#REGSAM"},{"doc":"","kind":"struct","module":"core.sys.windows.winreg","name":"VALENTA","package":"druntime","parentType":"","signature":"VALENTA","url":"/ddoc/druntime/core/sys/windows/winreg.html#VALENTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winreg","name":"PVALENTA","package":"druntime","parentType":"","signature":"PVALENTA = VALENTA *","url":"/ddoc/druntime/core/sys/windows/winreg.html#PVALENTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winreg","name":"VALENTW","package":"druntime","parentType":"","signature":"VALENTW","url":"/ddoc/druntime/core/sys/windows/winreg.html#VALENTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winreg","name":"PVALENTW","package":"druntime","parentType":"","signature":"PVALENTW = VALENTW *","url":"/ddoc/druntime/core/sys/windows/winreg.html#PVALENTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winreg","name":"PVALENT","package":"druntime","parentType":"","signature":"PVALENT = VALENT *","url":"/ddoc/druntime/core/sys/windows/winreg.html#PVALENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winreg","name":"REG_NOTIFY_CHANGE_NAME","package":"druntime","parentType":"","signature":"DWORD REG_NOTIFY_CHANGE_NAME","url":"/ddoc/druntime/core/sys/windows/winreg.html#REG_NOTIFY_CHANGE_NAME"},{"doc":"","kind":"module","module":"core.sys.windows.winsock2","name":"core.sys.windows.winsock2","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winsock2.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"WSAStartup","package":"druntime","parentType":"","signature":"int WSAStartup(ushort  wVersionRequested,  LPWSADATA lpWSAData)","url":"/ddoc/druntime/core/sys/windows/winsock2/WSAStartup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"WSACleanup","package":"druntime","parentType":"","signature":"int WSACleanup()","url":"/ddoc/druntime/core/sys/windows/winsock2/WSACleanup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"socket","package":"druntime","parentType":"","signature":"SOCKET socket(int  af,  int  type,  int  protocol)","url":"/ddoc/druntime/core/sys/windows/winsock2/socket.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"ioctlsocket","package":"druntime","parentType":"","signature":"int ioctlsocket(SOCKET s,  int  cmd,  uint *  argp)","url":"/ddoc/druntime/core/sys/windows/winsock2/ioctlsocket.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"bind","package":"druntime","parentType":"","signature":"int bind(SOCKET s,  const(sockaddr) *  name,  socklen_t namelen)","url":"/ddoc/druntime/core/sys/windows/winsock2/bind.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"connect","package":"druntime","parentType":"","signature":"int connect(SOCKET s,  const(sockaddr) *  name,  socklen_t namelen)","url":"/ddoc/druntime/core/sys/windows/winsock2/connect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"listen","package":"druntime","parentType":"","signature":"int listen(SOCKET s,  int  backlog)","url":"/ddoc/druntime/core/sys/windows/winsock2/listen.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"accept","package":"druntime","parentType":"","signature":"SOCKET accept(SOCKET s,  sockaddr *  addr,  socklen_t *  addrlen)","url":"/ddoc/druntime/core/sys/windows/winsock2/accept.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"closesocket","package":"druntime","parentType":"","signature":"int closesocket(SOCKET s)","url":"/ddoc/druntime/core/sys/windows/winsock2/closesocket.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"shutdown","package":"druntime","parentType":"","signature":"int shutdown(SOCKET s,  int  how)","url":"/ddoc/druntime/core/sys/windows/winsock2/shutdown.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getpeername","package":"druntime","parentType":"","signature":"int getpeername(SOCKET s,  sockaddr *  name,  socklen_t *  namelen)","url":"/ddoc/druntime/core/sys/windows/winsock2/getpeername.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getsockname","package":"druntime","parentType":"","signature":"int getsockname(SOCKET s,  sockaddr *  name,  socklen_t *  namelen)","url":"/ddoc/druntime/core/sys/windows/winsock2/getsockname.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"send","package":"druntime","parentType":"","signature":"int send(SOCKET s,  const(void) *  buf,  int  len,  int  flags)","url":"/ddoc/druntime/core/sys/windows/winsock2/send.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"sendto","package":"druntime","parentType":"","signature":"int sendto(SOCKET s,  const(void) *  buf,  int  len,  int  flags,  const(sockaddr) *  to,  socklen_t tolen)","url":"/ddoc/druntime/core/sys/windows/winsock2/sendto.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"recv","package":"druntime","parentType":"","signature":"int recv(SOCKET s,  void *  buf,  int  len,  int  flags)","url":"/ddoc/druntime/core/sys/windows/winsock2/recv.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"recvfrom","package":"druntime","parentType":"","signature":"int recvfrom(SOCKET s,  void *  buf,  int  len,  int  flags,  sockaddr *  from,  socklen_t *  fromlen)","url":"/ddoc/druntime/core/sys/windows/winsock2/recvfrom.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getsockopt","package":"druntime","parentType":"","signature":"int getsockopt(SOCKET s,  int  level,  int  optname,  void *  optval,  socklen_t *  optlen)","url":"/ddoc/druntime/core/sys/windows/winsock2/getsockopt.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"setsockopt","package":"druntime","parentType":"","signature":"int setsockopt(SOCKET s,  int  level,  int  optname,  const(void) *  optval,  socklen_t optlen)","url":"/ddoc/druntime/core/sys/windows/winsock2/setsockopt.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"inet_addr","package":"druntime","parentType":"","signature":"uint inet_addr(const  char *  cp)","url":"/ddoc/druntime/core/sys/windows/winsock2/inet_addr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"select","package":"druntime","parentType":"","signature":"int select(int  nfds,  fd_set *  readfds,  fd_set *  writefds,  fd_set *  errorfds,  const(timeval) *  timeout)","url":"/ddoc/druntime/core/sys/windows/winsock2/select.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"inet_ntoa","package":"druntime","parentType":"","signature":"char * inet_ntoa(in_addr ina)","url":"/ddoc/druntime/core/sys/windows/winsock2/inet_ntoa.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"gethostbyname","package":"druntime","parentType":"","signature":"hostent * gethostbyname(const  char *  name)","url":"/ddoc/druntime/core/sys/windows/winsock2/gethostbyname.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"gethostbyaddr","package":"druntime","parentType":"","signature":"hostent * gethostbyaddr(const(void) *  addr,  int  len,  int  type)","url":"/ddoc/druntime/core/sys/windows/winsock2/gethostbyaddr.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getprotobyname","package":"druntime","parentType":"","signature":"protoent * getprotobyname(const  char *  name)","url":"/ddoc/druntime/core/sys/windows/winsock2/getprotobyname.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getprotobynumber","package":"druntime","parentType":"","signature":"protoent * getprotobynumber(int  number)","url":"/ddoc/druntime/core/sys/windows/winsock2/getprotobynumber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getservbyname","package":"druntime","parentType":"","signature":"servent * getservbyname(const  char *  name,  const  char *  proto)","url":"/ddoc/druntime/core/sys/windows/winsock2/getservbyname.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getservbyport","package":"druntime","parentType":"","signature":"servent * getservbyport(int  port,  const  char *  proto)","url":"/ddoc/druntime/core/sys/windows/winsock2/getservbyport.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"gethostname","package":"druntime","parentType":"","signature":"int gethostname(const  char *  name,  int  namelen)","url":"/ddoc/druntime/core/sys/windows/winsock2/gethostname.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getaddrinfo","package":"druntime","parentType":"","signature":"int getaddrinfo(const(char) *  nodename,  const(char) *  servname,  const(addrinfo) *  hints,  addrinfo * *  res)","url":"/ddoc/druntime/core/sys/windows/winsock2/getaddrinfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"freeaddrinfo","package":"druntime","parentType":"","signature":"void freeaddrinfo(addrinfo *  ai)","url":"/ddoc/druntime/core/sys/windows/winsock2/freeaddrinfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"getnameinfo","package":"druntime","parentType":"","signature":"int getnameinfo(const(sockaddr) *  sa,  socklen_t salen,  char *  host,  uint  hostlen,  char *  serv,  uint  servlen,  int  flags)","url":"/ddoc/druntime/core/sys/windows/winsock2/getnameinfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"WSAGetLastError","package":"druntime","parentType":"","signature":"int WSAGetLastError()","url":"/ddoc/druntime/core/sys/windows/winsock2/WSAGetLastError.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"FD_CLR","package":"druntime","parentType":"","signature":"void FD_CLR(SOCKET fd,  fd_set *  set)","url":"/ddoc/druntime/core/sys/windows/winsock2/FD_CLR.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"FD_ISSET","package":"druntime","parentType":"","signature":"int FD_ISSET(SOCKET fd,  const(fd_set) *  set)","url":"/ddoc/druntime/core/sys/windows/winsock2/FD_ISSET.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"FD_SET","package":"druntime","parentType":"","signature":"void FD_SET(SOCKET fd,  fd_set *  set)","url":"/ddoc/druntime/core/sys/windows/winsock2/FD_SET.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"FD_ZERO","package":"druntime","parentType":"","signature":"void FD_ZERO(fd_set *  set)","url":"/ddoc/druntime/core/sys/windows/winsock2/FD_ZERO.html"},{"doc":"Creates a new $(D fd_set) with the specified capacity.","kind":"function","module":"core.sys.windows.winsock2","name":"FD_CREATE","package":"druntime","parentType":"","signature":"fd_set * FD_CREATE(uint  capacity)","url":"/ddoc/druntime/core/sys/windows/winsock2/FD_CREATE.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"htons","package":"druntime","parentType":"","signature":"ushort htons(ushort  x)","url":"/ddoc/druntime/core/sys/windows/winsock2/htons.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"htonl","package":"druntime","parentType":"","signature":"uint htonl(uint  x)","url":"/ddoc/druntime/core/sys/windows/winsock2/htonl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"ntohs","package":"druntime","parentType":"","signature":"ushort ntohs(ushort  x)","url":"/ddoc/druntime/core/sys/windows/winsock2/ntohs.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"ntohl","package":"druntime","parentType":"","signature":"uint ntohl(uint  x)","url":"/ddoc/druntime/core/sys/windows/winsock2/ntohl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"WSAIoctl","package":"druntime","parentType":"","signature":"int WSAIoctl(SOCKET s,  uint  dwIoControlCode,\n     void *  lpvInBuffer,  uint  cbInBuffer,\n     void *  lpvOutBuffer,  uint  cbOutBuffer,\n     uint *  lpcbBytesReturned,\n     LPWSAOVERLAPPED lpOverlapped,  LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)","url":"/ddoc/druntime/core/sys/windows/winsock2/WSAIoctl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsock2","name":"WSAPoll","package":"druntime","parentType":"","signature":"int WSAPoll(LPWSAPOLLFD fdArray,  uint  fds,  int  timeout)","url":"/ddoc/druntime/core/sys/windows/winsock2/WSAPoll.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"SOCKET","package":"druntime","parentType":"","signature":"SOCKET = size_t","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SOCKET"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"socklen_t","package":"druntime","parentType":"","signature":"socklen_t = int","url":"/ddoc/druntime/core/sys/windows/winsock2.html#socklen_t"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"WSADATA","package":"druntime","parentType":"","signature":"WSADATA","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSADATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"LPWSADATA","package":"druntime","parentType":"","signature":"LPWSADATA = WSADATA *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#LPWSADATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"fd_set_custom","package":"druntime","parentType":"","signature":"fd_set_custom(uint  SETSIZE)","url":"/ddoc/druntime/core/sys/windows/winsock2.html#fd_set_custom"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"fd_set","package":"druntime","parentType":"","signature":"fd_set = fd_set_custom!FD_SETSIZE","url":"/ddoc/druntime/core/sys/windows/winsock2.html#fd_set"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"linger","package":"druntime","parentType":"","signature":"linger","url":"/ddoc/druntime/core/sys/windows/winsock2.html#linger"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"protoent","package":"druntime","parentType":"","signature":"protoent","url":"/ddoc/druntime/core/sys/windows/winsock2.html#protoent"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"servent","package":"druntime","parentType":"","signature":"servent","url":"/ddoc/druntime/core/sys/windows/winsock2.html#servent"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"timeval","package":"druntime","parentType":"","signature":"timeval","url":"/ddoc/druntime/core/sys/windows/winsock2.html#timeval"},{"doc":"","kind":"union","module":"core.sys.windows.winsock2","name":"in_addr","package":"druntime","parentType":"","signature":"in_addr","url":"/ddoc/druntime/core/sys/windows/winsock2.html#in_addr"},{"doc":"","kind":"union","module":"core.sys.windows.winsock2","name":"in6_addr","package":"druntime","parentType":"","signature":"in6_addr","url":"/ddoc/druntime/core/sys/windows/winsock2.html#in6_addr"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"sockaddr","package":"druntime","parentType":"","signature":"sockaddr","url":"/ddoc/druntime/core/sys/windows/winsock2.html#sockaddr"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"SOCKADDR","package":"druntime","parentType":"","signature":"SOCKADDR = sockaddr","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SOCKADDR"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"PSOCKADDR","package":"druntime","parentType":"","signature":"PSOCKADDR = SOCKADDR *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#PSOCKADDR"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"sockaddr_storage","package":"druntime","parentType":"","signature":"sockaddr_storage","url":"/ddoc/druntime/core/sys/windows/winsock2.html#sockaddr_storage"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"SOCKADDR_STORAGE","package":"druntime","parentType":"","signature":"SOCKADDR_STORAGE = sockaddr_storage","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SOCKADDR_STORAGE"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"PSOCKADDR_STORAGE","package":"druntime","parentType":"","signature":"PSOCKADDR_STORAGE = SOCKADDR_STORAGE *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#PSOCKADDR_STORAGE"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"sockaddr_in","package":"druntime","parentType":"","signature":"sockaddr_in","url":"/ddoc/druntime/core/sys/windows/winsock2.html#sockaddr_in"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"SOCKADDR_IN","package":"druntime","parentType":"","signature":"SOCKADDR_IN = sockaddr_in","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SOCKADDR_IN"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"PSOCKADDR_IN","package":"druntime","parentType":"","signature":"PSOCKADDR_IN = SOCKADDR_IN *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#PSOCKADDR_IN"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"sockaddr_in6","package":"druntime","parentType":"","signature":"sockaddr_in6","url":"/ddoc/druntime/core/sys/windows/winsock2.html#sockaddr_in6"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"addrinfo","package":"druntime","parentType":"","signature":"addrinfo","url":"/ddoc/druntime/core/sys/windows/winsock2.html#addrinfo"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"hostent","package":"druntime","parentType":"","signature":"hostent","url":"/ddoc/druntime/core/sys/windows/winsock2.html#hostent"},{"doc":"","kind":"method","module":"core.sys.windows.winsock2","name":"h_addr","package":"druntime","parentType":"hostent","signature":"char * h_addr()","url":"/ddoc/druntime/core/sys/windows/winsock2/hostent.h_addr.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"WSAOVERLAPPED","package":"druntime","parentType":"","signature":"WSAOVERLAPPED","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSAOVERLAPPED"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"LPWSAOVERLAPPED","package":"druntime","parentType":"","signature":"LPWSAOVERLAPPED = WSAOVERLAPPED *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#LPWSAOVERLAPPED"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"LPWSAOVERLAPPED_COMPLETION_ROUTINE","package":"druntime","parentType":"","signature":"LPWSAOVERLAPPED_COMPLETION_ROUTINE = void  function(uint,  uint,  LPWSAOVERLAPPED,  uint)  nothrow @nogc","url":"/ddoc/druntime/core/sys/windows/winsock2.html#LPWSAOVERLAPPED_COMPLETION_ROUTINE"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"tcp_keepalive","package":"druntime","parentType":"","signature":"tcp_keepalive","url":"/ddoc/druntime/core/sys/windows/winsock2.html#tcp_keepalive"},{"doc":"","kind":"struct","module":"core.sys.windows.winsock2","name":"pollfd","package":"druntime","parentType":"","signature":"pollfd","url":"/ddoc/druntime/core/sys/windows/winsock2.html#pollfd"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"WSAPOLLFD","package":"druntime","parentType":"","signature":"WSAPOLLFD = pollfd","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSAPOLLFD"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"PWSAPOLLFD","package":"druntime","parentType":"","signature":"PWSAPOLLFD = pollfd *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#PWSAPOLLFD"},{"doc":"","kind":"alias","module":"core.sys.windows.winsock2","name":"LPWSAPOLLFD","package":"druntime","parentType":"","signature":"LPWSAPOLLFD = pollfd *","url":"/ddoc/druntime/core/sys/windows/winsock2.html#LPWSAPOLLFD"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"INVALID_SOCKET","package":"druntime","parentType":"","signature":"SOCKET INVALID_SOCKET","url":"/ddoc/druntime/core/sys/windows/winsock2.html#INVALID_SOCKET"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"SOCKET_ERROR","package":"druntime","parentType":"","signature":"int SOCKET_ERROR","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SOCKET_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"WSADESCRIPTION_LEN","package":"druntime","parentType":"","signature":"WSADESCRIPTION_LEN","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSADESCRIPTION_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"WSASYS_STATUS_LEN","package":"druntime","parentType":"","signature":"WSASYS_STATUS_LEN","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSASYS_STATUS_LEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"IOCPARM_MASK","package":"druntime","parentType":"","signature":"int IOCPARM_MASK","url":"/ddoc/druntime/core/sys/windows/winsock2.html#IOCPARM_MASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"IOC_IN","package":"druntime","parentType":"","signature":"int IOC_IN","url":"/ddoc/druntime/core/sys/windows/winsock2.html#IOC_IN"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"FIONBIO","package":"druntime","parentType":"","signature":"int FIONBIO","url":"/ddoc/druntime/core/sys/windows/winsock2.html#FIONBIO"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"NI_MAXHOST","package":"druntime","parentType":"","signature":"NI_MAXHOST","url":"/ddoc/druntime/core/sys/windows/winsock2.html#NI_MAXHOST"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"NI_MAXSERV","package":"druntime","parentType":"","signature":"NI_MAXSERV","url":"/ddoc/druntime/core/sys/windows/winsock2.html#NI_MAXSERV"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"WSABASEERR","package":"druntime","parentType":"","signature":"WSABASEERR","url":"/ddoc/druntime/core/sys/windows/winsock2.html#WSABASEERR"},{"doc":"Default FD_SETSIZE value. In C/C++, it is redefinable by #define-ing the macro before #include-ing winsock.h. In D, use the $(D FD_CREATE) function...","kind":"variable","module":"core.sys.windows.winsock2","name":"FD_SETSIZE","package":"druntime","parentType":"","signature":"int FD_SETSIZE","url":"/ddoc/druntime/core/sys/windows/winsock2.html#FD_SETSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"IN6ADDR_ANY","package":"druntime","parentType":"","signature":"in6_addr IN6ADDR_ANY","url":"/ddoc/druntime/core/sys/windows/winsock2.html#IN6ADDR_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"IN6ADDR_LOOPBACK","package":"druntime","parentType":"","signature":"in6_addr IN6ADDR_LOOPBACK","url":"/ddoc/druntime/core/sys/windows/winsock2.html#IN6ADDR_LOOPBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"INET_ADDRSTRLEN","package":"druntime","parentType":"","signature":"int INET_ADDRSTRLEN","url":"/ddoc/druntime/core/sys/windows/winsock2.html#INET_ADDRSTRLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"INET6_ADDRSTRLEN","package":"druntime","parentType":"","signature":"int INET6_ADDRSTRLEN","url":"/ddoc/druntime/core/sys/windows/winsock2.html#INET6_ADDRSTRLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"IOC_VENDOR","package":"druntime","parentType":"","signature":"IOC_VENDOR","url":"/ddoc/druntime/core/sys/windows/winsock2.html#IOC_VENDOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winsock2","name":"SIO_KEEPALIVE_VALS","package":"druntime","parentType":"","signature":"SIO_KEEPALIVE_VALS","url":"/ddoc/druntime/core/sys/windows/winsock2.html#SIO_KEEPALIVE_VALS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winspool","name":"core.sys.windows.winspool","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winspool.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AbortPrinter","package":"druntime","parentType":"","signature":"BOOL AbortPrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/AbortPrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddFormA","package":"druntime","parentType":"","signature":"BOOL AddFormA(HANDLE,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddFormA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddFormW","package":"druntime","parentType":"","signature":"BOOL AddFormW(HANDLE,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddFormW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddJobA","package":"druntime","parentType":"","signature":"BOOL AddJobA(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/AddJobA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddJobW","package":"druntime","parentType":"","signature":"BOOL AddJobW(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/AddJobW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddMonitorA","package":"druntime","parentType":"","signature":"BOOL AddMonitorA(LPSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddMonitorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddMonitorW","package":"druntime","parentType":"","signature":"BOOL AddMonitorW(LPWSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddMonitorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPortA","package":"druntime","parentType":"","signature":"BOOL AddPortA(LPSTR,  HWND,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPortA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPortW","package":"druntime","parentType":"","signature":"BOOL AddPortW(LPWSTR,  HWND,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPortW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterA","package":"druntime","parentType":"","signature":"HANDLE AddPrinterA(LPSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterW","package":"druntime","parentType":"","signature":"HANDLE AddPrinterW(LPWSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterConnectionA","package":"druntime","parentType":"","signature":"BOOL AddPrinterConnectionA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterConnectionW","package":"druntime","parentType":"","signature":"BOOL AddPrinterConnectionW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterDriverA","package":"druntime","parentType":"","signature":"BOOL AddPrinterDriverA(LPSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterDriverA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrinterDriverW","package":"druntime","parentType":"","signature":"BOOL AddPrinterDriverW(LPWSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrinterDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrintProcessorA","package":"druntime","parentType":"","signature":"BOOL AddPrintProcessorA(LPSTR,  LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrintProcessorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrintProcessorW","package":"druntime","parentType":"","signature":"BOOL AddPrintProcessorW(LPWSTR,  LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrintProcessorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrintProvidorA","package":"druntime","parentType":"","signature":"BOOL AddPrintProvidorA(LPSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrintProvidorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AddPrintProvidorW","package":"druntime","parentType":"","signature":"BOOL AddPrintProvidorW(LPWSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/AddPrintProvidorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AdvancedDocumentPropertiesA","package":"druntime","parentType":"","signature":"LONG AdvancedDocumentPropertiesA(HWND,  HANDLE,  LPSTR,  PDEVMODE,  PDEVMODEA)","url":"/ddoc/druntime/core/sys/windows/winspool/AdvancedDocumentPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"AdvancedDocumentPropertiesW","package":"druntime","parentType":"","signature":"LONG AdvancedDocumentPropertiesW(HWND,  HANDLE,  LPWSTR,  PDEVMODE,  PDEVMODEW)","url":"/ddoc/druntime/core/sys/windows/winspool/AdvancedDocumentPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ClosePrinter","package":"druntime","parentType":"","signature":"BOOL ClosePrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/ClosePrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ConfigurePortA","package":"druntime","parentType":"","signature":"BOOL ConfigurePortA(LPSTR,  HWND,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/ConfigurePortA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ConfigurePortW","package":"druntime","parentType":"","signature":"BOOL ConfigurePortW(LPWSTR,  HWND,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/ConfigurePortW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ConnectToPrinterDlg","package":"druntime","parentType":"","signature":"HANDLE ConnectToPrinterDlg(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/ConnectToPrinterDlg.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeleteFormA","package":"druntime","parentType":"","signature":"BOOL DeleteFormA(HANDLE,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeleteFormA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeleteFormW","package":"druntime","parentType":"","signature":"BOOL DeleteFormW(HANDLE,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeleteFormW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeleteMonitorA","package":"druntime","parentType":"","signature":"BOOL DeleteMonitorA(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeleteMonitorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeleteMonitorW","package":"druntime","parentType":"","signature":"BOOL DeleteMonitorW(LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeleteMonitorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePortA","package":"druntime","parentType":"","signature":"BOOL DeletePortA(LPSTR,  HWND,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePortA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePortW","package":"druntime","parentType":"","signature":"BOOL DeletePortW(LPWSTR,  HWND,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePortW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinter","package":"druntime","parentType":"","signature":"BOOL DeletePrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterConnectionA","package":"druntime","parentType":"","signature":"BOOL DeletePrinterConnectionA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterConnectionA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterConnectionW","package":"druntime","parentType":"","signature":"BOOL DeletePrinterConnectionW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterConnectionW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterDataA","package":"druntime","parentType":"","signature":"DWORD DeletePrinterDataA(HANDLE,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterDataA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterDataW","package":"druntime","parentType":"","signature":"DWORD DeletePrinterDataW(HANDLE,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterDataW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterDriverA","package":"druntime","parentType":"","signature":"BOOL DeletePrinterDriverA(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterDriverA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrinterDriverW","package":"druntime","parentType":"","signature":"BOOL DeletePrinterDriverW(LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrinterDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrintProcessorA","package":"druntime","parentType":"","signature":"BOOL DeletePrintProcessorA(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrintProcessorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrintProcessorW","package":"druntime","parentType":"","signature":"BOOL DeletePrintProcessorW(LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrintProcessorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrintProvidorA","package":"druntime","parentType":"","signature":"BOOL DeletePrintProvidorA(LPSTR,  LPSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrintProvidorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DeletePrintProvidorW","package":"druntime","parentType":"","signature":"BOOL DeletePrintProvidorW(LPWSTR,  LPWSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winspool/DeletePrintProvidorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DocumentPropertiesA","package":"druntime","parentType":"","signature":"LONG DocumentPropertiesA(HWND,  HANDLE,  LPSTR,  PDEVMODEA,  PDEVMODEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/DocumentPropertiesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"DocumentPropertiesW","package":"druntime","parentType":"","signature":"LONG DocumentPropertiesW(HWND,  HANDLE,  LPWSTR,  PDEVMODEW,  PDEVMODEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/DocumentPropertiesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EndDocPrinter","package":"druntime","parentType":"","signature":"BOOL EndDocPrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/EndDocPrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EndPagePrinter","package":"druntime","parentType":"","signature":"BOOL EndPagePrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/EndPagePrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumFormsA","package":"druntime","parentType":"","signature":"BOOL EnumFormsA(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumFormsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumFormsW","package":"druntime","parentType":"","signature":"BOOL EnumFormsW(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumFormsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumJobsA","package":"druntime","parentType":"","signature":"BOOL EnumJobsA(HANDLE,  DWORD,  DWORD,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumJobsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumJobsW","package":"druntime","parentType":"","signature":"BOOL EnumJobsW(HANDLE,  DWORD,  DWORD,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumJobsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumMonitorsA","package":"druntime","parentType":"","signature":"BOOL EnumMonitorsA(LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumMonitorsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumMonitorsW","package":"druntime","parentType":"","signature":"BOOL EnumMonitorsW(LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumMonitorsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPortsA","package":"druntime","parentType":"","signature":"BOOL EnumPortsA(LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPortsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPortsW","package":"druntime","parentType":"","signature":"BOOL EnumPortsW(LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPortsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrinterDataA","package":"druntime","parentType":"","signature":"DWORD EnumPrinterDataA(HANDLE,  DWORD,  LPSTR,  DWORD,  PDWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrinterDataA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrinterDataW","package":"druntime","parentType":"","signature":"DWORD EnumPrinterDataW(HANDLE,  DWORD,  LPWSTR,  DWORD,  PDWORD,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrinterDataW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrinterDriversA","package":"druntime","parentType":"","signature":"BOOL EnumPrinterDriversA(LPSTR,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrinterDriversA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrinterDriversW","package":"druntime","parentType":"","signature":"BOOL EnumPrinterDriversW(LPWSTR,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrinterDriversW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintersA","package":"druntime","parentType":"","signature":"BOOL EnumPrintersA(DWORD,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintersA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintersW","package":"druntime","parentType":"","signature":"BOOL EnumPrintersW(DWORD,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintersW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintProcessorDatatypesA","package":"druntime","parentType":"","signature":"BOOL EnumPrintProcessorDatatypesA(LPSTR,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintProcessorDatatypesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintProcessorDatatypesW","package":"druntime","parentType":"","signature":"BOOL EnumPrintProcessorDatatypesW(LPWSTR,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintProcessorDatatypesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintProcessorsA","package":"druntime","parentType":"","signature":"BOOL EnumPrintProcessorsA(LPSTR,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintProcessorsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"EnumPrintProcessorsW","package":"druntime","parentType":"","signature":"BOOL EnumPrintProcessorsW(LPWSTR,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/EnumPrintProcessorsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"FindClosePrinterChangeNotification","package":"druntime","parentType":"","signature":"BOOL FindClosePrinterChangeNotification(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/FindClosePrinterChangeNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"FindFirstPrinterChangeNotification","package":"druntime","parentType":"","signature":"HANDLE FindFirstPrinterChangeNotification(HANDLE,  DWORD,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winspool/FindFirstPrinterChangeNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"FindNextPrinterChangeNotification","package":"druntime","parentType":"","signature":"HANDLE FindNextPrinterChangeNotification(HANDLE,  PDWORD,  PVOID,  PVOID *)","url":"/ddoc/druntime/core/sys/windows/winspool/FindNextPrinterChangeNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"FreePrinterNotifyInfo","package":"druntime","parentType":"","signature":"BOOL FreePrinterNotifyInfo(PPRINTER_NOTIFY_INFO)","url":"/ddoc/druntime/core/sys/windows/winspool/FreePrinterNotifyInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetFormA","package":"druntime","parentType":"","signature":"BOOL GetFormA(HANDLE,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetFormA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetFormW","package":"druntime","parentType":"","signature":"BOOL GetFormW(HANDLE,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetFormW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetJobA","package":"druntime","parentType":"","signature":"BOOL GetJobA(HANDLE,  DWORD,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetJobA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetJobW","package":"druntime","parentType":"","signature":"BOOL GetJobW(HANDLE,  DWORD,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetJobW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterA","package":"druntime","parentType":"","signature":"BOOL GetPrinterA(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterW","package":"druntime","parentType":"","signature":"BOOL GetPrinterW(HANDLE,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDataA","package":"druntime","parentType":"","signature":"DWORD GetPrinterDataA(HANDLE,  LPSTR,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDataA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDataW","package":"druntime","parentType":"","signature":"DWORD GetPrinterDataW(HANDLE,  LPWSTR,  PDWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDataW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDriverA","package":"druntime","parentType":"","signature":"DWORD GetPrinterDriverA(HANDLE,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDriverA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDriverW","package":"druntime","parentType":"","signature":"DWORD GetPrinterDriverW(HANDLE,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDriverW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDriverDirectoryA","package":"druntime","parentType":"","signature":"DWORD GetPrinterDriverDirectoryA(LPSTR,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDriverDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrinterDriverDirectoryW","package":"druntime","parentType":"","signature":"DWORD GetPrinterDriverDirectoryW(LPWSTR,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrinterDriverDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrintProcessorDirectoryA","package":"druntime","parentType":"","signature":"DWORD GetPrintProcessorDirectoryA(LPSTR,  LPSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrintProcessorDirectoryA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"GetPrintProcessorDirectoryW","package":"druntime","parentType":"","signature":"DWORD GetPrintProcessorDirectoryW(LPWSTR,  LPWSTR,  DWORD,  PBYTE,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/GetPrintProcessorDirectoryW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"OpenPrinterA","package":"druntime","parentType":"","signature":"BOOL OpenPrinterA(LPSTR,  PHANDLE,  LPPRINTER_DEFAULTSA)","url":"/ddoc/druntime/core/sys/windows/winspool/OpenPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"OpenPrinterW","package":"druntime","parentType":"","signature":"BOOL OpenPrinterW(LPWSTR,  PHANDLE,  LPPRINTER_DEFAULTSW)","url":"/ddoc/druntime/core/sys/windows/winspool/OpenPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"PrinterMessageBoxA","package":"druntime","parentType":"","signature":"DWORD PrinterMessageBoxA(HANDLE,  DWORD,  HWND,  LPSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/PrinterMessageBoxA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"PrinterMessageBoxW","package":"druntime","parentType":"","signature":"DWORD PrinterMessageBoxW(HANDLE,  DWORD,  HWND,  LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/PrinterMessageBoxW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"PrinterProperties","package":"druntime","parentType":"","signature":"BOOL PrinterProperties(HWND,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/PrinterProperties.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ReadPrinter","package":"druntime","parentType":"","signature":"BOOL ReadPrinter(HANDLE,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/ReadPrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ResetPrinterA","package":"druntime","parentType":"","signature":"BOOL ResetPrinterA(HANDLE,  LPPRINTER_DEFAULTSA)","url":"/ddoc/druntime/core/sys/windows/winspool/ResetPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ResetPrinterW","package":"druntime","parentType":"","signature":"BOOL ResetPrinterW(HANDLE,  LPPRINTER_DEFAULTSW)","url":"/ddoc/druntime/core/sys/windows/winspool/ResetPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"ScheduleJob","package":"druntime","parentType":"","signature":"BOOL ScheduleJob(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/ScheduleJob.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetFormA","package":"druntime","parentType":"","signature":"BOOL SetFormA(HANDLE,  LPSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/SetFormA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetFormW","package":"druntime","parentType":"","signature":"BOOL SetFormW(HANDLE,  LPWSTR,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/SetFormW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetJobA","package":"druntime","parentType":"","signature":"BOOL SetJobA(HANDLE,  DWORD,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetJobA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetJobW","package":"druntime","parentType":"","signature":"BOOL SetJobW(HANDLE,  DWORD,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetJobW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetPrinterA","package":"druntime","parentType":"","signature":"BOOL SetPrinterA(HANDLE,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetPrinterW","package":"druntime","parentType":"","signature":"BOOL SetPrinterW(HANDLE,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetPrinterDataA","package":"druntime","parentType":"","signature":"BOOL SetPrinterDataA(HANDLE,  LPSTR,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetPrinterDataA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"SetPrinterDataW","package":"druntime","parentType":"","signature":"BOOL SetPrinterDataW(HANDLE,  LPWSTR,  DWORD,  PBYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/SetPrinterDataW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"StartDocPrinterA","package":"druntime","parentType":"","signature":"DWORD StartDocPrinterA(HANDLE,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/StartDocPrinterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"StartDocPrinterW","package":"druntime","parentType":"","signature":"DWORD StartDocPrinterW(HANDLE,  DWORD,  PBYTE)","url":"/ddoc/druntime/core/sys/windows/winspool/StartDocPrinterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"StartPagePrinter","package":"druntime","parentType":"","signature":"BOOL StartPagePrinter(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winspool/StartPagePrinter.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"WaitForPrinterChange","package":"druntime","parentType":"","signature":"DWORD WaitForPrinterChange(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/WaitForPrinterChange.html"},{"doc":"","kind":"function","module":"core.sys.windows.winspool","name":"WritePrinter","package":"druntime","parentType":"","signature":"BOOL WritePrinter(HANDLE,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winspool/WritePrinter.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"ADDJOB_INFO_1A","package":"druntime","parentType":"","signature":"ADDJOB_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#ADDJOB_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PADDJOB_INFO_1A","package":"druntime","parentType":"","signature":"PADDJOB_INFO_1A = ADDJOB_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PADDJOB_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"ADDJOB_INFO_1W","package":"druntime","parentType":"","signature":"ADDJOB_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#ADDJOB_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PADDJOB_INFO_1W","package":"druntime","parentType":"","signature":"PADDJOB_INFO_1W = ADDJOB_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PADDJOB_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DATATYPES_INFO_1A","package":"druntime","parentType":"","signature":"DATATYPES_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DATATYPES_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDATATYPES_INFO_1A","package":"druntime","parentType":"","signature":"PDATATYPES_INFO_1A = DATATYPES_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDATATYPES_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DATATYPES_INFO_1W","package":"druntime","parentType":"","signature":"DATATYPES_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DATATYPES_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDATATYPES_INFO_1W","package":"druntime","parentType":"","signature":"PDATATYPES_INFO_1W = DATATYPES_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDATATYPES_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"JOB_INFO_1A","package":"druntime","parentType":"","signature":"JOB_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_1A","package":"druntime","parentType":"","signature":"PJOB_INFO_1A = JOB_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"JOB_INFO_1W","package":"druntime","parentType":"","signature":"JOB_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_1W","package":"druntime","parentType":"","signature":"PJOB_INFO_1W = JOB_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"JOB_INFO_2A","package":"druntime","parentType":"","signature":"JOB_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_2A","package":"druntime","parentType":"","signature":"PJOB_INFO_2A = JOB_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"JOB_INFO_2W","package":"druntime","parentType":"","signature":"JOB_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_2W","package":"druntime","parentType":"","signature":"PJOB_INFO_2W = JOB_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DOC_INFO_1A","package":"druntime","parentType":"","signature":"DOC_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DOC_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_1A","package":"druntime","parentType":"","signature":"PDOC_INFO_1A = DOC_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DOC_INFO_1W","package":"druntime","parentType":"","signature":"DOC_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DOC_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_1W","package":"druntime","parentType":"","signature":"PDOC_INFO_1W = DOC_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DOC_INFO_2A","package":"druntime","parentType":"","signature":"DOC_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DOC_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_2A","package":"druntime","parentType":"","signature":"PDOC_INFO_2A = DOC_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DOC_INFO_2W","package":"druntime","parentType":"","signature":"DOC_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DOC_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_2W","package":"druntime","parentType":"","signature":"PDOC_INFO_2W = DOC_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_1A","package":"druntime","parentType":"","signature":"DRIVER_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_1A","package":"druntime","parentType":"","signature":"PDRIVER_INFO_1A = DRIVER_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_1W","package":"druntime","parentType":"","signature":"DRIVER_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_1W","package":"druntime","parentType":"","signature":"PDRIVER_INFO_1W = DRIVER_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_2A","package":"druntime","parentType":"","signature":"DRIVER_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_2A","package":"druntime","parentType":"","signature":"PDRIVER_INFO_2A = DRIVER_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_2W","package":"druntime","parentType":"","signature":"DRIVER_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_2W","package":"druntime","parentType":"","signature":"PDRIVER_INFO_2W = DRIVER_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_3A","package":"druntime","parentType":"","signature":"DRIVER_INFO_3A","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_3A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_3A","package":"druntime","parentType":"","signature":"PDRIVER_INFO_3A = DRIVER_INFO_3A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_3A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"DRIVER_INFO_3W","package":"druntime","parentType":"","signature":"DRIVER_INFO_3W","url":"/ddoc/druntime/core/sys/windows/winspool.html#DRIVER_INFO_3W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_3W","package":"druntime","parentType":"","signature":"PDRIVER_INFO_3W = DRIVER_INFO_3W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_3W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"MONITOR_INFO_1A","package":"druntime","parentType":"","signature":"MONITOR_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#MONITOR_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_1A","package":"druntime","parentType":"","signature":"PMONITOR_INFO_1A = MONITOR_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"MONITOR_INFO_1W","package":"druntime","parentType":"","signature":"MONITOR_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#MONITOR_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_1W","package":"druntime","parentType":"","signature":"PMONITOR_INFO_1W = MONITOR_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_1A","package":"druntime","parentType":"","signature":"PORT_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_1A","package":"druntime","parentType":"","signature":"PPORT_INFO_1A = PORT_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_1W","package":"druntime","parentType":"","signature":"PORT_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_1W","package":"druntime","parentType":"","signature":"PPORT_INFO_1W = PORT_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"MONITOR_INFO_2A","package":"druntime","parentType":"","signature":"MONITOR_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#MONITOR_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_2A","package":"druntime","parentType":"","signature":"PMONITOR_INFO_2A = MONITOR_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"MONITOR_INFO_2W","package":"druntime","parentType":"","signature":"MONITOR_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#MONITOR_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_2W","package":"druntime","parentType":"","signature":"PMONITOR_INFO_2W = MONITOR_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_2A","package":"druntime","parentType":"","signature":"PORT_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_2A","package":"druntime","parentType":"","signature":"PPORT_INFO_2A = PORT_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_2W","package":"druntime","parentType":"","signature":"PORT_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_2W","package":"druntime","parentType":"","signature":"PPORT_INFO_2W = PORT_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_3A","package":"druntime","parentType":"","signature":"PORT_INFO_3A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_3A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_3A","package":"druntime","parentType":"","signature":"PPORT_INFO_3A = PORT_INFO_3A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_3A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PORT_INFO_3W","package":"druntime","parentType":"","signature":"PORT_INFO_3W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_INFO_3W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_3W","package":"druntime","parentType":"","signature":"PPORT_INFO_3W = PORT_INFO_3W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_3W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_1A","package":"druntime","parentType":"","signature":"PRINTER_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_1A","package":"druntime","parentType":"","signature":"PPRINTER_INFO_1A = PRINTER_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_1W","package":"druntime","parentType":"","signature":"PRINTER_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_1W","package":"druntime","parentType":"","signature":"PPRINTER_INFO_1W = PRINTER_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_2A","package":"druntime","parentType":"","signature":"PRINTER_INFO_2A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_2A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_2A","package":"druntime","parentType":"","signature":"PPRINTER_INFO_2A = PRINTER_INFO_2A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_2A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_2W","package":"druntime","parentType":"","signature":"PRINTER_INFO_2W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_2W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_2W","package":"druntime","parentType":"","signature":"PPRINTER_INFO_2W = PRINTER_INFO_2W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_2W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_3","package":"druntime","parentType":"","signature":"PRINTER_INFO_3","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_3","package":"druntime","parentType":"","signature":"PPRINTER_INFO_3 = PRINTER_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_3"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_4A","package":"druntime","parentType":"","signature":"PRINTER_INFO_4A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_4A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_4A","package":"druntime","parentType":"","signature":"PPRINTER_INFO_4A = PRINTER_INFO_4A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_4A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_4W","package":"druntime","parentType":"","signature":"PRINTER_INFO_4W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_4W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_4W","package":"druntime","parentType":"","signature":"PPRINTER_INFO_4W = PRINTER_INFO_4W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_4W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_5A","package":"druntime","parentType":"","signature":"PRINTER_INFO_5A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_5A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_5A","package":"druntime","parentType":"","signature":"PPRINTER_INFO_5A = PRINTER_INFO_5A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_5A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_5W","package":"druntime","parentType":"","signature":"PRINTER_INFO_5W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_5W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_5W","package":"druntime","parentType":"","signature":"PPRINTER_INFO_5W = PRINTER_INFO_5W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_5W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_INFO_6","package":"druntime","parentType":"","signature":"PRINTER_INFO_6","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_INFO_6"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_6","package":"druntime","parentType":"","signature":"PPRINTER_INFO_6 = PRINTER_INFO_6 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_6"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTPROCESSOR_INFO_1A","package":"druntime","parentType":"","signature":"PRINTPROCESSOR_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTPROCESSOR_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTPROCESSOR_INFO_1A","package":"druntime","parentType":"","signature":"PPRINTPROCESSOR_INFO_1A = PRINTPROCESSOR_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTPROCESSOR_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTPROCESSOR_INFO_1W","package":"druntime","parentType":"","signature":"PRINTPROCESSOR_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTPROCESSOR_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTPROCESSOR_INFO_1W","package":"druntime","parentType":"","signature":"PPRINTPROCESSOR_INFO_1W = PRINTPROCESSOR_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTPROCESSOR_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_INFO_DATA","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_INFO_DATA","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_INFO_DATA"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_NOTIFY_INFO_DATA","package":"druntime","parentType":"","signature":"PPRINTER_NOTIFY_INFO_DATA = PRINTER_NOTIFY_INFO_DATA *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_NOTIFY_INFO_DATA"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_INFO","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_INFO","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_INFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_NOTIFY_INFO","package":"druntime","parentType":"","signature":"PPRINTER_NOTIFY_INFO = PRINTER_NOTIFY_INFO *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_NOTIFY_INFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"FORM_INFO_1A","package":"druntime","parentType":"","signature":"FORM_INFO_1A","url":"/ddoc/druntime/core/sys/windows/winspool.html#FORM_INFO_1A"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PFORM_INFO_1A","package":"druntime","parentType":"","signature":"PFORM_INFO_1A = FORM_INFO_1A *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PFORM_INFO_1A"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"FORM_INFO_1W","package":"druntime","parentType":"","signature":"FORM_INFO_1W","url":"/ddoc/druntime/core/sys/windows/winspool.html#FORM_INFO_1W"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PFORM_INFO_1W","package":"druntime","parentType":"","signature":"PFORM_INFO_1W = FORM_INFO_1W *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PFORM_INFO_1W"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_DEFAULTSA","package":"druntime","parentType":"","signature":"PRINTER_DEFAULTSA","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_DEFAULTSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_DEFAULTSA","package":"druntime","parentType":"","signature":"PPRINTER_DEFAULTSA = PRINTER_DEFAULTSA *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_DEFAULTSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winspool","name":"PRINTER_DEFAULTSW","package":"druntime","parentType":"","signature":"PRINTER_DEFAULTSW","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_DEFAULTSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_DEFAULTSW","package":"druntime","parentType":"","signature":"PPRINTER_DEFAULTSW = PRINTER_DEFAULTSW *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_DEFAULTSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_1","package":"druntime","parentType":"","signature":"PJOB_INFO_1 = JOB_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PJOB_INFO_2","package":"druntime","parentType":"","signature":"PJOB_INFO_2 = JOB_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PJOB_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PADDJOB_INFO_1","package":"druntime","parentType":"","signature":"PADDJOB_INFO_1 = ADDJOB_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PADDJOB_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDATATYPES_INFO_1","package":"druntime","parentType":"","signature":"PDATATYPES_INFO_1 = DATATYPES_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDATATYPES_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_1","package":"druntime","parentType":"","signature":"PMONITOR_INFO_1 = MONITOR_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PMONITOR_INFO_2","package":"druntime","parentType":"","signature":"PMONITOR_INFO_2 = MONITOR_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PMONITOR_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_1","package":"druntime","parentType":"","signature":"PDOC_INFO_1 = DOC_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDOC_INFO_2","package":"druntime","parentType":"","signature":"PDOC_INFO_2 = DOC_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDOC_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_1","package":"druntime","parentType":"","signature":"PPORT_INFO_1 = PORT_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_2","package":"druntime","parentType":"","signature":"PPORT_INFO_2 = PORT_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPORT_INFO_3","package":"druntime","parentType":"","signature":"PPORT_INFO_3 = PORT_INFO_3 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPORT_INFO_3"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PDRIVER_INFO_2","package":"druntime","parentType":"","signature":"PDRIVER_INFO_2 = DRIVER_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PDRIVER_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_1","package":"druntime","parentType":"","signature":"PPRINTER_INFO_1 = PRINTER_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_2","package":"druntime","parentType":"","signature":"PPRINTER_INFO_2 = PRINTER_INFO_2 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_2"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_4","package":"druntime","parentType":"","signature":"PPRINTER_INFO_4 = PRINTER_INFO_4 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_4"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_INFO_5","package":"druntime","parentType":"","signature":"PPRINTER_INFO_5 = PRINTER_INFO_5 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_INFO_5"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTPROCESSOR_INFO_1","package":"druntime","parentType":"","signature":"PPRINTPROCESSOR_INFO_1 = PRINTPROCESSOR_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTPROCESSOR_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PFORM_INFO_1","package":"druntime","parentType":"","signature":"PFORM_INFO_1 = FORM_INFO_1 *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PFORM_INFO_1"},{"doc":"","kind":"alias","module":"core.sys.windows.winspool","name":"PPRINTER_DEFAULTS","package":"druntime","parentType":"","signature":"PPRINTER_DEFAULTS = PRINTER_DEFAULTS *","url":"/ddoc/druntime/core/sys/windows/winspool.html#PPRINTER_DEFAULTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"DI_CHANNEL","package":"druntime","parentType":"","signature":"DI_CHANNEL","url":"/ddoc/druntime/core/sys/windows/winspool.html#DI_CHANNEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"DI_CHANNEL_WRITE","package":"druntime","parentType":"","signature":"DI_CHANNEL_WRITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#DI_CHANNEL_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"DI_READ_SPOOL_JOB","package":"druntime","parentType":"","signature":"DI_READ_SPOOL_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#DI_READ_SPOOL_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"FORM_BUILTIN","package":"druntime","parentType":"","signature":"FORM_BUILTIN","url":"/ddoc/druntime/core/sys/windows/winspool.html#FORM_BUILTIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_CONTROL_PAUSE","package":"druntime","parentType":"","signature":"JOB_CONTROL_PAUSE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_CONTROL_PAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_CONTROL_RESUME","package":"druntime","parentType":"","signature":"JOB_CONTROL_RESUME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_CONTROL_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_CONTROL_CANCEL","package":"druntime","parentType":"","signature":"JOB_CONTROL_CANCEL","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_CONTROL_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_CONTROL_RESTART","package":"druntime","parentType":"","signature":"JOB_CONTROL_RESTART","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_CONTROL_RESTART"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_CONTROL_DELETE","package":"druntime","parentType":"","signature":"JOB_CONTROL_DELETE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_CONTROL_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_PAUSED","package":"druntime","parentType":"","signature":"JOB_STATUS_PAUSED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_ERROR","package":"druntime","parentType":"","signature":"JOB_STATUS_ERROR","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_DELETING","package":"druntime","parentType":"","signature":"JOB_STATUS_DELETING","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_DELETING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_SPOOLING","package":"druntime","parentType":"","signature":"JOB_STATUS_SPOOLING","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_SPOOLING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_PRINTING","package":"druntime","parentType":"","signature":"JOB_STATUS_PRINTING","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_PRINTING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_OFFLINE","package":"druntime","parentType":"","signature":"JOB_STATUS_OFFLINE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_PAPEROUT","package":"druntime","parentType":"","signature":"JOB_STATUS_PAPEROUT","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_PAPEROUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_PRINTED","package":"druntime","parentType":"","signature":"JOB_STATUS_PRINTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_PRINTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_DELETED","package":"druntime","parentType":"","signature":"JOB_STATUS_DELETED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_DELETED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_BLOCKED_DEVQ","package":"druntime","parentType":"","signature":"JOB_STATUS_BLOCKED_DEVQ","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_BLOCKED_DEVQ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_STATUS_USER_INTERVENTION","package":"druntime","parentType":"","signature":"JOB_STATUS_USER_INTERVENTION","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_STATUS_USER_INTERVENTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_POSITION_UNSPECIFIED","package":"druntime","parentType":"","signature":"JOB_POSITION_UNSPECIFIED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_POSITION_UNSPECIFIED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_TYPE","package":"druntime","parentType":"","signature":"JOB_NOTIFY_TYPE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PRINTER_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PRINTER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PRINTER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_MACHINE_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_MACHINE_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_MACHINE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PORT_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PORT_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PORT_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_USER_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_USER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_USER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_NOTIFY_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_NOTIFY_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_NOTIFY_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_DATATYPE","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_DATATYPE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_DATATYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PRINT_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PARAMETERS","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PARAMETERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_DRIVER_NAME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_DRIVER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_DRIVER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_DEVMODE","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_DEVMODE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_DEVMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_STATUS","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_STATUS","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_STATUS_STRING","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_STATUS_STRING","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_STATUS_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_DOCUMENT","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_DOCUMENT","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_DOCUMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PRIORITY","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_POSITION","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_POSITION","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_POSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_SUBMITTED","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_SUBMITTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_SUBMITTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_START_TIME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_START_TIME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_START_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_UNTIL_TIME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_UNTIL_TIME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_UNTIL_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_TIME","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_TIME","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_TOTAL_PAGES","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_TOTAL_PAGES","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_TOTAL_PAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_PAGES_PRINTED","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_PAGES_PRINTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_PAGES_PRINTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_TOTAL_BYTES","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_TOTAL_BYTES","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_TOTAL_BYTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_NOTIFY_FIELD_BYTES_PRINTED","package":"druntime","parentType":"","signature":"JOB_NOTIFY_FIELD_BYTES_PRINTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_NOTIFY_FIELD_BYTES_PRINTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_ACCESS_ADMINISTER","package":"druntime","parentType":"","signature":"JOB_ACCESS_ADMINISTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_ACCESS_ADMINISTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_ALL_ACCESS","package":"druntime","parentType":"","signature":"JOB_ALL_ACCESS","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_ALL_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_READ","package":"druntime","parentType":"","signature":"JOB_READ","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_WRITE","package":"druntime","parentType":"","signature":"JOB_WRITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"JOB_EXECUTE","package":"druntime","parentType":"","signature":"JOB_EXECUTE","url":"/ddoc/druntime/core/sys/windows/winspool.html#JOB_EXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_OPTIONS_REFRESH","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_OPTIONS_REFRESH","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_OPTIONS_REFRESH"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ACCESS_ADMINISTER","package":"druntime","parentType":"","signature":"PRINTER_ACCESS_ADMINISTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ACCESS_ADMINISTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ACCESS_USE","package":"druntime","parentType":"","signature":"PRINTER_ACCESS_USE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ACCESS_USE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_INFORMATION","package":"druntime","parentType":"","signature":"PRINTER_ERROR_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_INFORMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_WARNING","package":"druntime","parentType":"","signature":"PRINTER_ERROR_WARNING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_WARNING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_SEVERE","package":"druntime","parentType":"","signature":"PRINTER_ERROR_SEVERE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_SEVERE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_OUTOFPAPER","package":"druntime","parentType":"","signature":"PRINTER_ERROR_OUTOFPAPER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_OUTOFPAPER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_JAM","package":"druntime","parentType":"","signature":"PRINTER_ERROR_JAM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_JAM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ERROR_OUTOFTONER","package":"druntime","parentType":"","signature":"PRINTER_ERROR_OUTOFTONER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ERROR_OUTOFTONER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CONTROL_PAUSE","package":"druntime","parentType":"","signature":"PRINTER_CONTROL_PAUSE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CONTROL_PAUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CONTROL_RESUME","package":"druntime","parentType":"","signature":"PRINTER_CONTROL_RESUME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CONTROL_RESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CONTROL_PURGE","package":"druntime","parentType":"","signature":"PRINTER_CONTROL_PURGE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CONTROL_PURGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CONTROL_SET_STATUS","package":"druntime","parentType":"","signature":"PRINTER_CONTROL_SET_STATUS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CONTROL_SET_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PAUSED","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PAUSED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PAUSED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_ERROR","package":"druntime","parentType":"","signature":"PRINTER_STATUS_ERROR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PENDING_DELETION","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PENDING_DELETION","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PENDING_DELETION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PAPER_JAM","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PAPER_JAM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PAPER_JAM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PAPER_OUT","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PAPER_OUT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PAPER_OUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_MANUAL_FEED","package":"druntime","parentType":"","signature":"PRINTER_STATUS_MANUAL_FEED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_MANUAL_FEED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PAPER_PROBLEM","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PAPER_PROBLEM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PAPER_PROBLEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_OFFLINE","package":"druntime","parentType":"","signature":"PRINTER_STATUS_OFFLINE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_IO_ACTIVE","package":"druntime","parentType":"","signature":"PRINTER_STATUS_IO_ACTIVE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_IO_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_BUSY","package":"druntime","parentType":"","signature":"PRINTER_STATUS_BUSY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_BUSY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PRINTING","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PRINTING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PRINTING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_OUTPUT_BIN_FULL","package":"druntime","parentType":"","signature":"PRINTER_STATUS_OUTPUT_BIN_FULL","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_OUTPUT_BIN_FULL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_NOT_AVAILABLE","package":"druntime","parentType":"","signature":"PRINTER_STATUS_NOT_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_NOT_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_WAITING","package":"druntime","parentType":"","signature":"PRINTER_STATUS_WAITING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_WAITING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PROCESSING","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PROCESSING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PROCESSING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_INITIALIZING","package":"druntime","parentType":"","signature":"PRINTER_STATUS_INITIALIZING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_INITIALIZING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_WARMING_UP","package":"druntime","parentType":"","signature":"PRINTER_STATUS_WARMING_UP","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_WARMING_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_TONER_LOW","package":"druntime","parentType":"","signature":"PRINTER_STATUS_TONER_LOW","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_TONER_LOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_NO_TONER","package":"druntime","parentType":"","signature":"PRINTER_STATUS_NO_TONER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_NO_TONER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_PAGE_PUNT","package":"druntime","parentType":"","signature":"PRINTER_STATUS_PAGE_PUNT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_PAGE_PUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_USER_INTERVENTION","package":"druntime","parentType":"","signature":"PRINTER_STATUS_USER_INTERVENTION","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_USER_INTERVENTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_OUT_OF_MEMORY","package":"druntime","parentType":"","signature":"PRINTER_STATUS_OUT_OF_MEMORY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_OUT_OF_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_DOOR_OPEN","package":"druntime","parentType":"","signature":"PRINTER_STATUS_DOOR_OPEN","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_DOOR_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_SERVER_UNKNOWN","package":"druntime","parentType":"","signature":"PRINTER_STATUS_SERVER_UNKNOWN","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_SERVER_UNKNOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_STATUS_POWER_SAVE","package":"druntime","parentType":"","signature":"PRINTER_STATUS_POWER_SAVE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_STATUS_POWER_SAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_QUEUED","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_QUEUED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_QUEUED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_DIRECT","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_DIRECT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_DIRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_DEFAULT","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_SHARED","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_SHARED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_SHARED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_NETWORK","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_NETWORK","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_NETWORK"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_HIDDEN","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_HIDDEN","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_LOCAL","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_LOCAL","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_ENABLE_DEVQ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_WORK_OFFLINE","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_WORK_OFFLINE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_WORK_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_ENABLE_BIDI","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_ENABLE_BIDI","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_ENABLE_BIDI"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_RAW_ONLY","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_RAW_ONLY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_RAW_ONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ATTRIBUTE_PUBLISHED","package":"druntime","parentType":"","signature":"PRINTER_ATTRIBUTE_PUBLISHED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ATTRIBUTE_PUBLISHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_DEFAULT","package":"druntime","parentType":"","signature":"PRINTER_ENUM_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_LOCAL","package":"druntime","parentType":"","signature":"PRINTER_ENUM_LOCAL","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_LOCAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_CONNECTIONS","package":"druntime","parentType":"","signature":"PRINTER_ENUM_CONNECTIONS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_CONNECTIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_FAVORITE","package":"druntime","parentType":"","signature":"PRINTER_ENUM_FAVORITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_FAVORITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_NAME","package":"druntime","parentType":"","signature":"PRINTER_ENUM_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_REMOTE","package":"druntime","parentType":"","signature":"PRINTER_ENUM_REMOTE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_REMOTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_SHARED","package":"druntime","parentType":"","signature":"PRINTER_ENUM_SHARED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_SHARED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_NETWORK","package":"druntime","parentType":"","signature":"PRINTER_ENUM_NETWORK","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_NETWORK"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_EXPAND","package":"druntime","parentType":"","signature":"PRINTER_ENUM_EXPAND","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_EXPAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_CONTAINER","package":"druntime","parentType":"","signature":"PRINTER_ENUM_CONTAINER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_CONTAINER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICONMASK","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICONMASK","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICONMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON1","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON1","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON1"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON2","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON2","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON2"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON3","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON3","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON3"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON4","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON4","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON4"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON5","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON5","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON5"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON6","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON6","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON6"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON7","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON7","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON7"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ENUM_ICON8","package":"druntime","parentType":"","signature":"PRINTER_ENUM_ICON8","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ENUM_ICON8"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_TYPE","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_TYPE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_SERVER_NAME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_SERVER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_SERVER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PRINTER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_SHARE_NAME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_SHARE_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_SHARE_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PORT_NAME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PORT_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PORT_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_DRIVER_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_COMMENT","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_COMMENT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_COMMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_LOCATION","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_LOCATION","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_LOCATION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_DEVMODE","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_DEVMODE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_DEVMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_SEPFILE","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_SEPFILE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_SEPFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PARAMETERS","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PARAMETERS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PARAMETERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_DATATYPE","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_DATATYPE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_DATATYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_ATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PRIORITY","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_START_TIME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_START_TIME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_START_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_UNTIL_TIME"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_STATUS","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_STATUS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_STATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_STATUS_STRING","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_STATUS_STRING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_STATUS_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_CJOBS","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_CJOBS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_CJOBS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_AVERAGE_PPM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_TOTAL_PAGES"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_PAGES_PRINTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_TOTAL_BYTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_FIELD_BYTES_PRINTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_PRINTER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_PRINTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_SET_PRINTER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_SET_PRINTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_SET_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_PRINTER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_PRINTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_FAILED_CONNECTION_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_PRINTER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_PRINTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_PRINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_JOB","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_SET_JOB","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_SET_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_SET_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_JOB","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_WRITE_JOB","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_WRITE_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_WRITE_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_JOB","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_JOB","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_JOB"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_FORM","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_FORM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_FORM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_SET_FORM","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_SET_FORM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_SET_FORM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_FORM","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_FORM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_FORM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_FORM","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_FORM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_FORM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_PORT","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_PORT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_CONFIGURE_PORT","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_CONFIGURE_PORT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_CONFIGURE_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_PORT","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_PORT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_PORT","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_PORT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_PORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_PRINT_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_PRINT_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_PRINT_PROCESSOR","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_PRINT_PROCESSOR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_PRINT_PROCESSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ADD_PRINTER_DRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_SET_PRINTER_DRIVER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_SET_PRINTER_DRIVER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_SET_PRINTER_DRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_DELETE_PRINTER_DRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_PRINTER_DRIVER","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_PRINTER_DRIVER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_PRINTER_DRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_TIMEOUT","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_TIMEOUT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_TIMEOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_CHANGE_ALL","package":"druntime","parentType":"","signature":"PRINTER_CHANGE_ALL","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_CHANGE_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_NOTIFY_INFO_DISCARDED","package":"druntime","parentType":"","signature":"PRINTER_NOTIFY_INFO_DISCARDED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_NOTIFY_INFO_DISCARDED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_ALL_ACCESS","package":"druntime","parentType":"","signature":"PRINTER_ALL_ACCESS","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_ALL_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_READ","package":"druntime","parentType":"","signature":"PRINTER_READ","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_WRITE","package":"druntime","parentType":"","signature":"PRINTER_WRITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PRINTER_EXECUTE","package":"druntime","parentType":"","signature":"PRINTER_EXECUTE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PRINTER_EXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"NO_PRIORITY","package":"druntime","parentType":"","signature":"NO_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#NO_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"MAX_PRIORITY","package":"druntime","parentType":"","signature":"MAX_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#MAX_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"MIN_PRIORITY","package":"druntime","parentType":"","signature":"MIN_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#MIN_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"DEF_PRIORITY","package":"druntime","parentType":"","signature":"DEF_PRIORITY","url":"/ddoc/druntime/core/sys/windows/winspool.html#DEF_PRIORITY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_TYPE_WRITE","package":"druntime","parentType":"","signature":"PORT_TYPE_WRITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_TYPE_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_TYPE_READ","package":"druntime","parentType":"","signature":"PORT_TYPE_READ","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_TYPE_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_TYPE_REDIRECTED","package":"druntime","parentType":"","signature":"PORT_TYPE_REDIRECTED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_TYPE_REDIRECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_TYPE_NET_ATTACHED","package":"druntime","parentType":"","signature":"PORT_TYPE_NET_ATTACHED","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_TYPE_NET_ATTACHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_ACCESS_ADMINISTER","package":"druntime","parentType":"","signature":"SERVER_ACCESS_ADMINISTER","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_ACCESS_ADMINISTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_ACCESS_ENUMERATE","package":"druntime","parentType":"","signature":"SERVER_ACCESS_ENUMERATE","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_ACCESS_ENUMERATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_ALL_ACCESS","package":"druntime","parentType":"","signature":"SERVER_ALL_ACCESS","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_ALL_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_READ","package":"druntime","parentType":"","signature":"SERVER_READ","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_READ"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_WRITE","package":"druntime","parentType":"","signature":"SERVER_WRITE","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_WRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"SERVER_EXECUTE","package":"druntime","parentType":"","signature":"SERVER_EXECUTE","url":"/ddoc/druntime/core/sys/windows/winspool.html#SERVER_EXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_TYPE_ERROR","package":"druntime","parentType":"","signature":"PORT_STATUS_TYPE_ERROR","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_TYPE_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_TYPE_WARNING","package":"druntime","parentType":"","signature":"PORT_STATUS_TYPE_WARNING","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_TYPE_WARNING"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_TYPE_INFO","package":"druntime","parentType":"","signature":"PORT_STATUS_TYPE_INFO","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_TYPE_INFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_OFFLINE","package":"druntime","parentType":"","signature":"PORT_STATUS_OFFLINE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_OFFLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_PAPER_JAM","package":"druntime","parentType":"","signature":"PORT_STATUS_PAPER_JAM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_PAPER_JAM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_PAPER_OUT","package":"druntime","parentType":"","signature":"PORT_STATUS_PAPER_OUT","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_PAPER_OUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_OUTPUT_BIN_FULL","package":"druntime","parentType":"","signature":"PORT_STATUS_OUTPUT_BIN_FULL","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_OUTPUT_BIN_FULL"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_PAPER_PROBLEM","package":"druntime","parentType":"","signature":"PORT_STATUS_PAPER_PROBLEM","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_PAPER_PROBLEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_NO_TONER","package":"druntime","parentType":"","signature":"PORT_STATUS_NO_TONER","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_NO_TONER"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_DOOR_OPEN","package":"druntime","parentType":"","signature":"PORT_STATUS_DOOR_OPEN","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_DOOR_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_USER_INTERVENTION","package":"druntime","parentType":"","signature":"PORT_STATUS_USER_INTERVENTION","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_USER_INTERVENTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_OUT_OF_MEMORY","package":"druntime","parentType":"","signature":"PORT_STATUS_OUT_OF_MEMORY","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_OUT_OF_MEMORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_TONER_LOW","package":"druntime","parentType":"","signature":"PORT_STATUS_TONER_LOW","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_TONER_LOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_WARMING_UP","package":"druntime","parentType":"","signature":"PORT_STATUS_WARMING_UP","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_WARMING_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winspool","name":"PORT_STATUS_POWER_SAVE","package":"druntime","parentType":"","signature":"PORT_STATUS_POWER_SAVE","url":"/ddoc/druntime/core/sys/windows/winspool.html#PORT_STATUS_POWER_SAVE"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winsvc","name":"core.sys.windows.winsvc","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winsvc.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"ChangeServiceConfigA","package":"druntime","parentType":"","signature":"BOOL ChangeServiceConfigA(SC_HANDLE,  DWORD,  DWORD,  DWORD,  LPCSTR,\n       LPCSTR,  LPDWORD,  LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winsvc/ChangeServiceConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"ChangeServiceConfigW","package":"druntime","parentType":"","signature":"BOOL ChangeServiceConfigW(SC_HANDLE,  DWORD,  DWORD,  DWORD,  LPCWSTR,\n       LPCWSTR,  LPDWORD,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winsvc/ChangeServiceConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"CloseServiceHandle","package":"druntime","parentType":"","signature":"BOOL CloseServiceHandle(SC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/winsvc/CloseServiceHandle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"ControlService","package":"druntime","parentType":"","signature":"BOOL ControlService(SC_HANDLE,  DWORD,  LPSERVICE_STATUS)","url":"/ddoc/druntime/core/sys/windows/winsvc/ControlService.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"CreateServiceA","package":"druntime","parentType":"","signature":"SC_HANDLE CreateServiceA(SC_HANDLE,  LPCSTR,  LPCSTR,  DWORD,  DWORD,\n       DWORD,  DWORD,  LPCSTR,  LPCSTR,  PDWORD,  LPCSTR,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winsvc/CreateServiceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"CreateServiceW","package":"druntime","parentType":"","signature":"SC_HANDLE CreateServiceW(SC_HANDLE,  LPCWSTR,  LPCWSTR,  DWORD,  DWORD,\n       DWORD,  DWORD,  LPCWSTR,  LPCWSTR,  PDWORD,  LPCWSTR,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winsvc/CreateServiceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"DeleteService","package":"druntime","parentType":"","signature":"BOOL DeleteService(SC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/winsvc/DeleteService.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"EnumDependentServicesA","package":"druntime","parentType":"","signature":"BOOL EnumDependentServicesA(SC_HANDLE,  DWORD,  LPENUM_SERVICE_STATUSA,\n       DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/EnumDependentServicesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"EnumDependentServicesW","package":"druntime","parentType":"","signature":"BOOL EnumDependentServicesW(SC_HANDLE,  DWORD,  LPENUM_SERVICE_STATUSW,\n       DWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/EnumDependentServicesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"EnumServicesStatusA","package":"druntime","parentType":"","signature":"BOOL EnumServicesStatusA(SC_HANDLE,  DWORD,  DWORD,  LPENUM_SERVICE_STATUSA,\n       DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/EnumServicesStatusA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"EnumServicesStatusW","package":"druntime","parentType":"","signature":"BOOL EnumServicesStatusW(SC_HANDLE,  DWORD,  DWORD,  LPENUM_SERVICE_STATUSW,\n       DWORD,  PDWORD,  PDWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/EnumServicesStatusW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"GetServiceDisplayNameA","package":"druntime","parentType":"","signature":"BOOL GetServiceDisplayNameA(SC_HANDLE,  LPCSTR,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/GetServiceDisplayNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"GetServiceDisplayNameW","package":"druntime","parentType":"","signature":"BOOL GetServiceDisplayNameW(SC_HANDLE,  LPCWSTR,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/GetServiceDisplayNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"GetServiceKeyNameA","package":"druntime","parentType":"","signature":"BOOL GetServiceKeyNameA(SC_HANDLE,  LPCSTR,  LPSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/GetServiceKeyNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"GetServiceKeyNameW","package":"druntime","parentType":"","signature":"BOOL GetServiceKeyNameW(SC_HANDLE,  LPCWSTR,  LPWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/GetServiceKeyNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"LockServiceDatabase","package":"druntime","parentType":"","signature":"SC_LOCK LockServiceDatabase(SC_HANDLE)","url":"/ddoc/druntime/core/sys/windows/winsvc/LockServiceDatabase.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"NotifyBootConfigStatus","package":"druntime","parentType":"","signature":"BOOL NotifyBootConfigStatus(BOOL)","url":"/ddoc/druntime/core/sys/windows/winsvc/NotifyBootConfigStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"OpenSCManagerA","package":"druntime","parentType":"","signature":"SC_HANDLE OpenSCManagerA(LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/OpenSCManagerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"OpenSCManagerW","package":"druntime","parentType":"","signature":"SC_HANDLE OpenSCManagerW(LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/OpenSCManagerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"OpenServiceA","package":"druntime","parentType":"","signature":"SC_HANDLE OpenServiceA(SC_HANDLE,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/OpenServiceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"OpenServiceW","package":"druntime","parentType":"","signature":"SC_HANDLE OpenServiceW(SC_HANDLE,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/OpenServiceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceConfigA","package":"druntime","parentType":"","signature":"BOOL QueryServiceConfigA(SC_HANDLE,  LPQUERY_SERVICE_CONFIGA,  DWORD,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceConfigW","package":"druntime","parentType":"","signature":"BOOL QueryServiceConfigW(SC_HANDLE,  LPQUERY_SERVICE_CONFIGW,  DWORD,\n       PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceLockStatusA","package":"druntime","parentType":"","signature":"BOOL QueryServiceLockStatusA(SC_HANDLE,  LPQUERY_SERVICE_LOCK_STATUSA,\n       DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceLockStatusA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceLockStatusW","package":"druntime","parentType":"","signature":"BOOL QueryServiceLockStatusW(SC_HANDLE,  LPQUERY_SERVICE_LOCK_STATUSW,\n       DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceLockStatusW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceObjectSecurity","package":"druntime","parentType":"","signature":"BOOL QueryServiceObjectSecurity(SC_HANDLE,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR,  DWORD,  LPDWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"QueryServiceStatus","package":"druntime","parentType":"","signature":"BOOL QueryServiceStatus(SC_HANDLE,  LPSERVICE_STATUS)","url":"/ddoc/druntime/core/sys/windows/winsvc/QueryServiceStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"RegisterServiceCtrlHandlerA","package":"druntime","parentType":"","signature":"SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerA(LPCSTR,\n       LPHANDLER_FUNCTION)","url":"/ddoc/druntime/core/sys/windows/winsvc/RegisterServiceCtrlHandlerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"RegisterServiceCtrlHandlerW","package":"druntime","parentType":"","signature":"SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerW(LPCWSTR,\n       LPHANDLER_FUNCTION)","url":"/ddoc/druntime/core/sys/windows/winsvc/RegisterServiceCtrlHandlerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"SetServiceObjectSecurity","package":"druntime","parentType":"","signature":"BOOL SetServiceObjectSecurity(SC_HANDLE,  SECURITY_INFORMATION,\n       PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winsvc/SetServiceObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"SetServiceStatus","package":"druntime","parentType":"","signature":"BOOL SetServiceStatus(SERVICE_STATUS_HANDLE,  LPSERVICE_STATUS)","url":"/ddoc/druntime/core/sys/windows/winsvc/SetServiceStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"StartServiceA","package":"druntime","parentType":"","signature":"BOOL StartServiceA(SC_HANDLE,  DWORD,  LPCSTR *)","url":"/ddoc/druntime/core/sys/windows/winsvc/StartServiceA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"StartServiceW","package":"druntime","parentType":"","signature":"BOOL StartServiceW(SC_HANDLE,  DWORD,  LPCWSTR *)","url":"/ddoc/druntime/core/sys/windows/winsvc/StartServiceW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"StartServiceCtrlDispatcherA","package":"druntime","parentType":"","signature":"BOOL StartServiceCtrlDispatcherA(LPSERVICE_TABLE_ENTRYA)","url":"/ddoc/druntime/core/sys/windows/winsvc/StartServiceCtrlDispatcherA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"StartServiceCtrlDispatcherW","package":"druntime","parentType":"","signature":"BOOL StartServiceCtrlDispatcherW(LPSERVICE_TABLE_ENTRYW)","url":"/ddoc/druntime/core/sys/windows/winsvc/StartServiceCtrlDispatcherW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winsvc","name":"UnlockServiceDatabase","package":"druntime","parentType":"","signature":"BOOL UnlockServiceDatabase(SC_LOCK)","url":"/ddoc/druntime/core/sys/windows/winsvc/UnlockServiceDatabase.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"SERVICE_STATUS","package":"druntime","parentType":"","signature":"SERVICE_STATUS","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_STATUS","package":"druntime","parentType":"","signature":"LPSERVICE_STATUS = SERVICE_STATUS *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_STATUS"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"ENUM_SERVICE_STATUSA","package":"druntime","parentType":"","signature":"ENUM_SERVICE_STATUSA","url":"/ddoc/druntime/core/sys/windows/winsvc.html#ENUM_SERVICE_STATUSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPENUM_SERVICE_STATUSA","package":"druntime","parentType":"","signature":"LPENUM_SERVICE_STATUSA = ENUM_SERVICE_STATUSA *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPENUM_SERVICE_STATUSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"ENUM_SERVICE_STATUSW","package":"druntime","parentType":"","signature":"ENUM_SERVICE_STATUSW","url":"/ddoc/druntime/core/sys/windows/winsvc.html#ENUM_SERVICE_STATUSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPENUM_SERVICE_STATUSW","package":"druntime","parentType":"","signature":"LPENUM_SERVICE_STATUSW = ENUM_SERVICE_STATUSW *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPENUM_SERVICE_STATUSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"QUERY_SERVICE_CONFIGA","package":"druntime","parentType":"","signature":"QUERY_SERVICE_CONFIGA","url":"/ddoc/druntime/core/sys/windows/winsvc.html#QUERY_SERVICE_CONFIGA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_CONFIGA","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_CONFIGA = QUERY_SERVICE_CONFIGA *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_CONFIGA"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"QUERY_SERVICE_CONFIGW","package":"druntime","parentType":"","signature":"QUERY_SERVICE_CONFIGW","url":"/ddoc/druntime/core/sys/windows/winsvc.html#QUERY_SERVICE_CONFIGW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_CONFIGW","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_CONFIGW = QUERY_SERVICE_CONFIGW *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_CONFIGW"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"QUERY_SERVICE_LOCK_STATUSA","package":"druntime","parentType":"","signature":"QUERY_SERVICE_LOCK_STATUSA","url":"/ddoc/druntime/core/sys/windows/winsvc.html#QUERY_SERVICE_LOCK_STATUSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_LOCK_STATUSA","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_LOCK_STATUSA = QUERY_SERVICE_LOCK_STATUSA *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_LOCK_STATUSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"QUERY_SERVICE_LOCK_STATUSW","package":"druntime","parentType":"","signature":"QUERY_SERVICE_LOCK_STATUSW","url":"/ddoc/druntime/core/sys/windows/winsvc.html#QUERY_SERVICE_LOCK_STATUSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_LOCK_STATUSW","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_LOCK_STATUSW = QUERY_SERVICE_LOCK_STATUSW *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_LOCK_STATUSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_MAIN_FUNCTIONA","package":"druntime","parentType":"","signature":"LPSERVICE_MAIN_FUNCTIONA = void  function(DWORD,  LPSTR *)","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_MAIN_FUNCTIONA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_MAIN_FUNCTIONW","package":"druntime","parentType":"","signature":"LPSERVICE_MAIN_FUNCTIONW = void  function(DWORD,  LPWSTR *)","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_MAIN_FUNCTIONW"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"SERVICE_TABLE_ENTRYA","package":"druntime","parentType":"","signature":"SERVICE_TABLE_ENTRYA","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_TABLE_ENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_TABLE_ENTRYA","package":"druntime","parentType":"","signature":"LPSERVICE_TABLE_ENTRYA = SERVICE_TABLE_ENTRYA *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_TABLE_ENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.winsvc","name":"SERVICE_TABLE_ENTRYW","package":"druntime","parentType":"","signature":"SERVICE_TABLE_ENTRYW","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_TABLE_ENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_TABLE_ENTRYW","package":"druntime","parentType":"","signature":"LPSERVICE_TABLE_ENTRYW = SERVICE_TABLE_ENTRYW *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_TABLE_ENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"SC_HANDLE","package":"druntime","parentType":"","signature":"SC_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SC_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSC_HANDLE","package":"druntime","parentType":"","signature":"LPSC_HANDLE = SC_HANDLE *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSC_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"SC_LOCK","package":"druntime","parentType":"","signature":"SC_LOCK = void *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SC_LOCK"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"SERVICE_STATUS_HANDLE","package":"druntime","parentType":"","signature":"SERVICE_STATUS_HANDLE = HANDLE","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_STATUS_HANDLE"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPHANDLER_FUNCTION","package":"druntime","parentType":"","signature":"LPHANDLER_FUNCTION = void  function(DWORD)","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPHANDLER_FUNCTION"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPHANDLER_FUNCTION_EX","package":"druntime","parentType":"","signature":"LPHANDLER_FUNCTION_EX = DWORD function(DWORD,  DWORD,  LPVOID,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPHANDLER_FUNCTION_EX"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPENUM_SERVICE_STATUS","package":"druntime","parentType":"","signature":"LPENUM_SERVICE_STATUS = ENUM_SERVICE_STATUS *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPENUM_SERVICE_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_CONFIG","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_CONFIG = QUERY_SERVICE_CONFIG *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_CONFIG"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPQUERY_SERVICE_LOCK_STATUS","package":"druntime","parentType":"","signature":"LPQUERY_SERVICE_LOCK_STATUS = QUERY_SERVICE_LOCK_STATUS *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPQUERY_SERVICE_LOCK_STATUS"},{"doc":"","kind":"alias","module":"core.sys.windows.winsvc","name":"LPSERVICE_TABLE_ENTRY","package":"druntime","parentType":"","signature":"LPSERVICE_TABLE_ENTRY = SERVICE_TABLE_ENTRY *","url":"/ddoc/druntime/core/sys/windows/winsvc.html#LPSERVICE_TABLE_ENTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SERVICES_ACTIVE_DATABASE","package":"druntime","parentType":"","signature":"TCHAR[] SERVICES_ACTIVE_DATABASE","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICES_ACTIVE_DATABASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SC_GROUP_IDENTIFIER","package":"druntime","parentType":"","signature":"TCHAR SC_GROUP_IDENTIFIER","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SC_GROUP_IDENTIFIER"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SC_MANAGER_ALL_ACCESS","package":"druntime","parentType":"","signature":"DWORD SC_MANAGER_ALL_ACCESS","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SC_MANAGER_ALL_ACCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SERVICE_NO_CHANGE","package":"druntime","parentType":"","signature":"DWORD SERVICE_NO_CHANGE","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_NO_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SERVICE_ACCEPT_STOP","package":"druntime","parentType":"","signature":"DWORD SERVICE_ACCEPT_STOP","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_ACCEPT_STOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SERVICE_QUERY_CONFIG","package":"druntime","parentType":"","signature":"DWORD SERVICE_QUERY_CONFIG","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_QUERY_CONFIG"},{"doc":"","kind":"variable","module":"core.sys.windows.winsvc","name":"SERVICE_RUNS_IN_SYSTEM_PROCESS","package":"druntime","parentType":"","signature":"SERVICE_RUNS_IN_SYSTEM_PROCESS","url":"/ddoc/druntime/core/sys/windows/winsvc.html#SERVICE_RUNS_IN_SYSTEM_PROCESS"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winuser","name":"core.sys.windows.winuser","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winuser.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MAKEINTATOM_T","package":"druntime","parentType":"","signature":"LPTSTR MAKEINTATOM_T()(int  i)","url":"/ddoc/druntime/core/sys/windows/winuser/MAKEINTATOM_T.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MAKEINTRESOURCEA","package":"druntime","parentType":"","signature":"LPSTR MAKEINTRESOURCEA(/*WORD*/ uint  i)","url":"/ddoc/druntime/core/sys/windows/winuser/MAKEINTRESOURCEA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MAKEINTRESOURCEW","package":"druntime","parentType":"","signature":"LPWSTR MAKEINTRESOURCEW(/*WORD*/ uint  i)","url":"/ddoc/druntime/core/sys/windows/winuser/MAKEINTRESOURCEW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GET_WHEEL_DELTA_WPARAM","package":"druntime","parentType":"","signature":"SHORT GET_WHEEL_DELTA_WPARAM()(WPARAM wparam)","url":"/ddoc/druntime/core/sys/windows/winuser/GET_WHEEL_DELTA_WPARAM.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"POINTSTOPOINT","package":"druntime","parentType":"","signature":"void POINTSTOPOINT()(out  POINT p,  LONG ps)","url":"/ddoc/druntime/core/sys/windows/winuser/POINTSTOPOINT.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"POINTTOPOINTS","package":"druntime","parentType":"","signature":"POINTS POINTTOPOINTS()(const  POINT p)","url":"/ddoc/druntime/core/sys/windows/winuser/POINTTOPOINTS.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ActivateKeyboardLayout","package":"druntime","parentType":"","signature":"HKL ActivateKeyboardLayout(HKL,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ActivateKeyboardLayout.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AdjustWindowRect","package":"druntime","parentType":"","signature":"BOOL AdjustWindowRect(LPRECT,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/AdjustWindowRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AdjustWindowRectEx","package":"druntime","parentType":"","signature":"BOOL AdjustWindowRectEx(LPRECT,  DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/AdjustWindowRectEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AnyPopup","package":"druntime","parentType":"","signature":"BOOL AnyPopup()","url":"/ddoc/druntime/core/sys/windows/winuser/AnyPopup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AppendMenuA","package":"druntime","parentType":"","signature":"BOOL AppendMenuA(HMENU,  UINT,  UINT_PTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/AppendMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AppendMenuW","package":"druntime","parentType":"","signature":"BOOL AppendMenuW(HMENU,  UINT,  UINT_PTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/AppendMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ArrangeIconicWindows","package":"druntime","parentType":"","signature":"UINT ArrangeIconicWindows(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/ArrangeIconicWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AttachThreadInput","package":"druntime","parentType":"","signature":"BOOL AttachThreadInput(DWORD,  DWORD,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/AttachThreadInput.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"BeginDeferWindowPos","package":"druntime","parentType":"","signature":"HDWP BeginDeferWindowPos(int)","url":"/ddoc/druntime/core/sys/windows/winuser/BeginDeferWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"BeginPaint","package":"druntime","parentType":"","signature":"HDC BeginPaint(HWND,  LPPAINTSTRUCT)","url":"/ddoc/druntime/core/sys/windows/winuser/BeginPaint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"BringWindowToTop","package":"druntime","parentType":"","signature":"BOOL BringWindowToTop(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/BringWindowToTop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CallMsgFilterA","package":"druntime","parentType":"","signature":"BOOL CallMsgFilterA(LPMSG,  INT)","url":"/ddoc/druntime/core/sys/windows/winuser/CallMsgFilterA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CallMsgFilterW","package":"druntime","parentType":"","signature":"BOOL CallMsgFilterW(LPMSG,  INT)","url":"/ddoc/druntime/core/sys/windows/winuser/CallMsgFilterW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CallNextHookEx","package":"druntime","parentType":"","signature":"LRESULT CallNextHookEx(HHOOK,  int,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CallNextHookEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CallWindowProcA","package":"druntime","parentType":"","signature":"LRESULT CallWindowProcA(WNDPROC,  HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CallWindowProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CallWindowProcW","package":"druntime","parentType":"","signature":"LRESULT CallWindowProcW(WNDPROC,  HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CallWindowProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CascadeWindows","package":"druntime","parentType":"","signature":"WORD CascadeWindows(HWND,  UINT,  LPCRECT,  UINT,  const(HWND) *)","url":"/ddoc/druntime/core/sys/windows/winuser/CascadeWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeClipboardChain","package":"druntime","parentType":"","signature":"BOOL ChangeClipboardChain(HWND,  HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeClipboardChain.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeDisplaySettingsA","package":"druntime","parentType":"","signature":"LONG ChangeDisplaySettingsA(PDEVMODEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeDisplaySettingsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeDisplaySettingsW","package":"druntime","parentType":"","signature":"LONG ChangeDisplaySettingsW(PDEVMODEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeDisplaySettingsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeDisplaySettingsExA","package":"druntime","parentType":"","signature":"LONG ChangeDisplaySettingsExA(LPCSTR,  LPDEVMODEA,  HWND,  DWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeDisplaySettingsExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeDisplaySettingsExW","package":"druntime","parentType":"","signature":"LONG ChangeDisplaySettingsExW(LPCWSTR,  LPDEVMODEW,  HWND,  DWORD,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeDisplaySettingsExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeMenuA","package":"druntime","parentType":"","signature":"BOOL ChangeMenuA(HMENU,  UINT,  LPCSTR,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChangeMenuW","package":"druntime","parentType":"","signature":"BOOL ChangeMenuW(HMENU,  UINT,  LPCWSTR,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ChangeMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharLowerA","package":"druntime","parentType":"","signature":"LPSTR CharLowerA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharLowerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharLowerW","package":"druntime","parentType":"","signature":"LPWSTR CharLowerW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharLowerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharLowerBuffA","package":"druntime","parentType":"","signature":"DWORD CharLowerBuffA(LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharLowerBuffA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharLowerBuffW","package":"druntime","parentType":"","signature":"DWORD CharLowerBuffW(LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharLowerBuffW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharNextA","package":"druntime","parentType":"","signature":"LPSTR CharNextA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharNextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharNextW","package":"druntime","parentType":"","signature":"LPWSTR CharNextW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharNextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharNextExA","package":"druntime","parentType":"","signature":"LPSTR CharNextExA(WORD,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharNextExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharNextExW","package":"druntime","parentType":"","signature":"LPWSTR CharNextExW(WORD,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharNextExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharPrevA","package":"druntime","parentType":"","signature":"LPSTR CharPrevA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharPrevA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharPrevW","package":"druntime","parentType":"","signature":"LPWSTR CharPrevW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharPrevW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharPrevExA","package":"druntime","parentType":"","signature":"LPSTR CharPrevExA(WORD,  LPCSTR,  LPCSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharPrevExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharPrevExW","package":"druntime","parentType":"","signature":"LPWSTR CharPrevExW(WORD,  LPCWSTR,  LPCWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharPrevExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharToOemA","package":"druntime","parentType":"","signature":"BOOL CharToOemA(LPCSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharToOemA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharToOemW","package":"druntime","parentType":"","signature":"BOOL CharToOemW(LPCWSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharToOemW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharToOemBuffA","package":"druntime","parentType":"","signature":"BOOL CharToOemBuffA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharToOemBuffA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharToOemBuffW","package":"druntime","parentType":"","signature":"BOOL CharToOemBuffW(LPCWSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharToOemBuffW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharUpperA","package":"druntime","parentType":"","signature":"LPSTR CharUpperA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharUpperA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharUpperW","package":"druntime","parentType":"","signature":"LPWSTR CharUpperW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/CharUpperW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharUpperBuffA","package":"druntime","parentType":"","signature":"DWORD CharUpperBuffA(LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharUpperBuffA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CharUpperBuffW","package":"druntime","parentType":"","signature":"DWORD CharUpperBuffW(LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CharUpperBuffW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CheckDlgButton","package":"druntime","parentType":"","signature":"BOOL CheckDlgButton(HWND,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/CheckDlgButton.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CheckMenuItem","package":"druntime","parentType":"","signature":"DWORD CheckMenuItem(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/CheckMenuItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CheckMenuRadioItem","package":"druntime","parentType":"","signature":"BOOL CheckMenuRadioItem(HMENU,  UINT,  UINT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/CheckMenuRadioItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CheckRadioButton","package":"druntime","parentType":"","signature":"BOOL CheckRadioButton(HWND,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CheckRadioButton.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChildWindowFromPoint","package":"druntime","parentType":"","signature":"HWND ChildWindowFromPoint(HWND,  POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ChildWindowFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ChildWindowFromPointEx","package":"druntime","parentType":"","signature":"HWND ChildWindowFromPointEx(HWND,  POINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ChildWindowFromPointEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ClientToScreen","package":"druntime","parentType":"","signature":"BOOL ClientToScreen(HWND,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ClientToScreen.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ClipCursor","package":"druntime","parentType":"","signature":"BOOL ClipCursor(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/ClipCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CloseClipboard","package":"druntime","parentType":"","signature":"BOOL CloseClipboard()","url":"/ddoc/druntime/core/sys/windows/winuser/CloseClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CloseDesktop","package":"druntime","parentType":"","signature":"BOOL CloseDesktop(HDESK)","url":"/ddoc/druntime/core/sys/windows/winuser/CloseDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CloseWindow","package":"druntime","parentType":"","signature":"BOOL CloseWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/CloseWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CloseWindowStation","package":"druntime","parentType":"","signature":"BOOL CloseWindowStation(HWINSTA)","url":"/ddoc/druntime/core/sys/windows/winuser/CloseWindowStation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyAcceleratorTableA","package":"druntime","parentType":"","signature":"int CopyAcceleratorTableA(HACCEL,  LPACCEL,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyAcceleratorTableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyAcceleratorTableW","package":"druntime","parentType":"","signature":"int CopyAcceleratorTableW(HACCEL,  LPACCEL,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyAcceleratorTableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyIcon","package":"druntime","parentType":"","signature":"HICON CopyIcon(HICON)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyImage","package":"druntime","parentType":"","signature":"HANDLE CopyImage(HANDLE,  UINT,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyImage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyRect","package":"druntime","parentType":"","signature":"BOOL CopyRect(LPRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CountClipboardFormats","package":"druntime","parentType":"","signature":"int CountClipboardFormats()","url":"/ddoc/druntime/core/sys/windows/winuser/CountClipboardFormats.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateAcceleratorTableA","package":"druntime","parentType":"","signature":"HACCEL CreateAcceleratorTableA(LPACCEL,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateAcceleratorTableA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateAcceleratorTableW","package":"druntime","parentType":"","signature":"HACCEL CreateAcceleratorTableW(LPACCEL,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateAcceleratorTableW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateCaret","package":"druntime","parentType":"","signature":"BOOL CreateCaret(HWND,  HBITMAP,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateCaret.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateCursor","package":"druntime","parentType":"","signature":"HCURSOR CreateCursor(HINSTANCE,  int,  int,  int,  int,  PCVOID,  PCVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDesktopA","package":"druntime","parentType":"","signature":"HDESK CreateDesktopA(LPCSTR,  LPCSTR,  LPDEVMODEA,  DWORD,  ACCESS_MASK,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDesktopA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDesktopW","package":"druntime","parentType":"","signature":"HDESK CreateDesktopW(LPCWSTR,  LPCWSTR,  LPDEVMODEW,  DWORD,  ACCESS_MASK,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDesktopW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogParamA","package":"druntime","parentType":"","signature":"HWND CreateDialogParamA(HINSTANCE,  LPCSTR,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogParamW","package":"druntime","parentType":"","signature":"HWND CreateDialogParamW(HINSTANCE,  LPCWSTR,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogParamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogIndirectParamA","package":"druntime","parentType":"","signature":"HWND CreateDialogIndirectParamA(HINSTANCE,  LPCDLGTEMPLATE,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogIndirectParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogIndirectParamW","package":"druntime","parentType":"","signature":"HWND CreateDialogIndirectParamW(HINSTANCE,  LPCDLGTEMPLATE,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogIndirectParamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateIcon","package":"druntime","parentType":"","signature":"HICON CreateIcon(HINSTANCE,  int,  int,  BYTE,  BYTE,  const(BYTE) *,  BYTE *)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateIconFromResource","package":"druntime","parentType":"","signature":"HICON CreateIconFromResource(PBYTE,  DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateIconFromResource.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateIconFromResourceEx","package":"druntime","parentType":"","signature":"HICON CreateIconFromResourceEx(PBYTE,  DWORD,  BOOL,  DWORD,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateIconFromResourceEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateIconIndirect","package":"druntime","parentType":"","signature":"HICON CreateIconIndirect(PICONINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateIconIndirect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateMDIWindowA","package":"druntime","parentType":"","signature":"HWND CreateMDIWindowA(LPCSTR,  LPCSTR,  DWORD,  int,  int,  int,  int,  HWND,  HINSTANCE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateMDIWindowA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateMDIWindowW","package":"druntime","parentType":"","signature":"HWND CreateMDIWindowW(LPCWSTR,  LPCWSTR,  DWORD,  int,  int,  int,  int,  HWND,  HINSTANCE,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateMDIWindowW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateMenu","package":"druntime","parentType":"","signature":"HMENU CreateMenu()","url":"/ddoc/druntime/core/sys/windows/winuser/CreateMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreatePopupMenu","package":"druntime","parentType":"","signature":"HMENU CreatePopupMenu()","url":"/ddoc/druntime/core/sys/windows/winuser/CreatePopupMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowExA","package":"druntime","parentType":"","signature":"HWND CreateWindowExA(DWORD,  LPCSTR,  LPCSTR,  DWORD,  int,  int,  int,  int,  HWND,  HMENU,  HINSTANCE,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowExW","package":"druntime","parentType":"","signature":"HWND CreateWindowExW(DWORD,  LPCWSTR,  LPCWSTR,  DWORD,  int,  int,  int,  int,  HWND,  HMENU,  HINSTANCE,  LPVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowStationA","package":"druntime","parentType":"","signature":"HWINSTA CreateWindowStationA(LPSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowStationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowStationW","package":"druntime","parentType":"","signature":"HWINSTA CreateWindowStationW(LPWSTR,  DWORD,  DWORD,  LPSECURITY_ATTRIBUTES)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowStationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefDlgProcA","package":"druntime","parentType":"","signature":"LRESULT DefDlgProcA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefDlgProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefDlgProcW","package":"druntime","parentType":"","signature":"LRESULT DefDlgProcW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefDlgProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DeferWindowPos","package":"druntime","parentType":"","signature":"HDWP DeferWindowPos(HDWP,  HWND,  HWND,  int,  int,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DeferWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefFrameProcA","package":"druntime","parentType":"","signature":"LRESULT DefFrameProcA(HWND,  HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefFrameProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefFrameProcW","package":"druntime","parentType":"","signature":"LRESULT DefFrameProcW(HWND,  HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefFrameProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefMDIChildProcA","package":"druntime","parentType":"","signature":"LRESULT DefMDIChildProcA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefMDIChildProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefMDIChildProcW","package":"druntime","parentType":"","signature":"LRESULT DefMDIChildProcW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefMDIChildProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefWindowProcA","package":"druntime","parentType":"","signature":"LRESULT DefWindowProcA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefWindowProcA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DefWindowProcW","package":"druntime","parentType":"","signature":"LRESULT DefWindowProcW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DefWindowProcW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DeleteMenu","package":"druntime","parentType":"","signature":"BOOL DeleteMenu(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DeleteMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DeregisterShellHookWindow","package":"druntime","parentType":"","signature":"BOOL DeregisterShellHookWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/DeregisterShellHookWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyAcceleratorTable","package":"druntime","parentType":"","signature":"BOOL DestroyAcceleratorTable(HACCEL)","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyAcceleratorTable.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyCaret","package":"druntime","parentType":"","signature":"BOOL DestroyCaret()","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyCaret.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyCursor","package":"druntime","parentType":"","signature":"BOOL DestroyCursor(HCURSOR)","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyIcon","package":"druntime","parentType":"","signature":"BOOL DestroyIcon(HICON)","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyMenu","package":"druntime","parentType":"","signature":"BOOL DestroyMenu(HMENU)","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DestroyWindow","package":"druntime","parentType":"","signature":"BOOL DestroyWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/DestroyWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxParamA","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxParamA(HINSTANCE,  LPCSTR,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxParamW","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxParamW(HINSTANCE,  LPCWSTR,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxParamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxIndirectParamA","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxIndirectParamA(HINSTANCE,  LPCDLGTEMPLATE,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxIndirectParamA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxIndirectParamW","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxIndirectParamW(HINSTANCE,  LPCDLGTEMPLATE,  HWND,  DLGPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxIndirectParamW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CopyCursor","package":"druntime","parentType":"","signature":"HCURSOR CopyCursor(HCURSOR c)","url":"/ddoc/druntime/core/sys/windows/winuser/CopyCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogA","package":"druntime","parentType":"","signature":"HWND CreateDialogA(HINSTANCE h,  LPCSTR n,  HWND w,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogW","package":"druntime","parentType":"","signature":"HWND CreateDialogW(HINSTANCE h,  LPCWSTR n,  HWND w,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogIndirectA","package":"druntime","parentType":"","signature":"HWND CreateDialogIndirectA(HINSTANCE h,  LPCDLGTEMPLATE t,  HWND w,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateDialogIndirectW","package":"druntime","parentType":"","signature":"HWND CreateDialogIndirectW(HINSTANCE h,  LPCDLGTEMPLATE t,  HWND w,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateDialogIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowA","package":"druntime","parentType":"","signature":"HWND CreateWindowA(LPCSTR a,  LPCSTR b,  DWORD c,  int  d,  int  e,  int  f,  int  g,  HWND h,  HMENU i,  HINSTANCE j,  LPVOID k)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"CreateWindowW","package":"druntime","parentType":"","signature":"HWND CreateWindowW(LPCWSTR a,  LPCWSTR b,  DWORD c,  int  d,  int  e,  int  f,  int  g,  HWND h,  HMENU i,  HINSTANCE j,  LPVOID k)","url":"/ddoc/druntime/core/sys/windows/winuser/CreateWindowW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxA","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxA(HINSTANCE i,  LPCSTR t,  HWND p,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxW","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxW(HINSTANCE i,  LPCWSTR t,  HWND p,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxIndirectA","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxIndirectA(HINSTANCE i,  LPCDLGTEMPLATE t,  HWND p,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DialogBoxIndirectW","package":"druntime","parentType":"","signature":"INT_PTR DialogBoxIndirectW(HINSTANCE i,  LPCDLGTEMPLATE t,  HWND p,  DLGPROC f)","url":"/ddoc/druntime/core/sys/windows/winuser/DialogBoxIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ExitWindows","package":"druntime","parentType":"","signature":"BOOL ExitWindows(UINT r,  DWORD c)","url":"/ddoc/druntime/core/sys/windows/winuser/ExitWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DispatchMessageA","package":"druntime","parentType":"","signature":"LONG DispatchMessageA(const(MSG) *)","url":"/ddoc/druntime/core/sys/windows/winuser/DispatchMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DispatchMessageW","package":"druntime","parentType":"","signature":"LONG DispatchMessageW(const(MSG) *)","url":"/ddoc/druntime/core/sys/windows/winuser/DispatchMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirListA","package":"druntime","parentType":"","signature":"int DlgDirListA(HWND,  LPSTR,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirListA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirListW","package":"druntime","parentType":"","signature":"int DlgDirListW(HWND,  LPWSTR,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirListW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirListComboBoxA","package":"druntime","parentType":"","signature":"int DlgDirListComboBoxA(HWND,  LPSTR,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirListComboBoxA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirListComboBoxW","package":"druntime","parentType":"","signature":"int DlgDirListComboBoxW(HWND,  LPWSTR,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirListComboBoxW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirSelectComboBoxExA","package":"druntime","parentType":"","signature":"BOOL DlgDirSelectComboBoxExA(HWND,  LPSTR,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirSelectComboBoxExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirSelectComboBoxExW","package":"druntime","parentType":"","signature":"BOOL DlgDirSelectComboBoxExW(HWND,  LPWSTR,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirSelectComboBoxExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirSelectExA","package":"druntime","parentType":"","signature":"BOOL DlgDirSelectExA(HWND,  LPSTR,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirSelectExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DlgDirSelectExW","package":"druntime","parentType":"","signature":"BOOL DlgDirSelectExW(HWND,  LPWSTR,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/DlgDirSelectExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DragDetect","package":"druntime","parentType":"","signature":"BOOL DragDetect(HWND,  POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DragDetect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DragObject","package":"druntime","parentType":"","signature":"DWORD DragObject(HWND,  HWND,  UINT,  ULONG_PTR,  HCURSOR)","url":"/ddoc/druntime/core/sys/windows/winuser/DragObject.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawAnimatedRects","package":"druntime","parentType":"","signature":"BOOL DrawAnimatedRects(HWND,  int,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawAnimatedRects.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawCaption","package":"druntime","parentType":"","signature":"BOOL DrawCaption(HWND,  HDC,  LPCRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawCaption.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawEdge","package":"druntime","parentType":"","signature":"BOOL DrawEdge(HDC,  LPRECT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawEdge.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawFocusRect","package":"druntime","parentType":"","signature":"BOOL DrawFocusRect(HDC,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawFocusRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawFrameControl","package":"druntime","parentType":"","signature":"BOOL DrawFrameControl(HDC,  LPRECT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawFrameControl.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawIcon","package":"druntime","parentType":"","signature":"BOOL DrawIcon(HDC,  int,  int,  HICON)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawIconEx","package":"druntime","parentType":"","signature":"BOOL DrawIconEx(HDC,  int,  int,  HICON,  int,  int,  UINT,  HBRUSH,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawIconEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawMenuBar","package":"druntime","parentType":"","signature":"BOOL DrawMenuBar(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawMenuBar.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawStateA","package":"druntime","parentType":"","signature":"BOOL DrawStateA(HDC,  HBRUSH,  DRAWSTATEPROC,  LPARAM,  WPARAM,  int,  int,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawStateA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawStateW","package":"druntime","parentType":"","signature":"BOOL DrawStateW(HDC,  HBRUSH,  DRAWSTATEPROC,  LPARAM,  WPARAM,  int,  int,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawStateW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawTextA","package":"druntime","parentType":"","signature":"int DrawTextA(HDC,  LPCSTR,  int,  LPRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawTextW","package":"druntime","parentType":"","signature":"int DrawTextW(HDC,  LPCWSTR,  int,  LPRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawTextExA","package":"druntime","parentType":"","signature":"int DrawTextExA(HDC,  LPSTR,  int,  LPRECT,  UINT,  LPDRAWTEXTPARAMS)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawTextExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"DrawTextExW","package":"druntime","parentType":"","signature":"int DrawTextExW(HDC,  LPWSTR,  int,  LPRECT,  UINT,  LPDRAWTEXTPARAMS)","url":"/ddoc/druntime/core/sys/windows/winuser/DrawTextExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EmptyClipboard","package":"druntime","parentType":"","signature":"BOOL EmptyClipboard()","url":"/ddoc/druntime/core/sys/windows/winuser/EmptyClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnableMenuItem","package":"druntime","parentType":"","signature":"BOOL EnableMenuItem(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/EnableMenuItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnableScrollBar","package":"druntime","parentType":"","signature":"BOOL EnableScrollBar(HWND,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/EnableScrollBar.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnableWindow","package":"druntime","parentType":"","signature":"BOOL EnableWindow(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/EnableWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EndDeferWindowPos","package":"druntime","parentType":"","signature":"BOOL EndDeferWindowPos(HDWP)","url":"/ddoc/druntime/core/sys/windows/winuser/EndDeferWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EndDialog","package":"druntime","parentType":"","signature":"BOOL EndDialog(HWND,  INT_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/EndDialog.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EndMenu","package":"druntime","parentType":"","signature":"BOOL EndMenu()","url":"/ddoc/druntime/core/sys/windows/winuser/EndMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EndPaint","package":"druntime","parentType":"","signature":"BOOL EndPaint(HWND,  const(PAINTSTRUCT) *)","url":"/ddoc/druntime/core/sys/windows/winuser/EndPaint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumChildWindows","package":"druntime","parentType":"","signature":"BOOL EnumChildWindows(HWND,  ENUMWINDOWSPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumChildWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumClipboardFormats","package":"druntime","parentType":"","signature":"UINT EnumClipboardFormats(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumClipboardFormats.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDesktopsA","package":"druntime","parentType":"","signature":"BOOL EnumDesktopsA(HWINSTA,  DESKTOPENUMPROCA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDesktopsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDesktopsW","package":"druntime","parentType":"","signature":"BOOL EnumDesktopsW(HWINSTA,  DESKTOPENUMPROCW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDesktopsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDesktopWindows","package":"druntime","parentType":"","signature":"BOOL EnumDesktopWindows(HDESK,  ENUMWINDOWSPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDesktopWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplaySettingsA","package":"druntime","parentType":"","signature":"BOOL EnumDisplaySettingsA(LPCSTR,  DWORD,  PDEVMODEA)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplaySettingsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplaySettingsW","package":"druntime","parentType":"","signature":"BOOL EnumDisplaySettingsW(LPCWSTR,  DWORD,  PDEVMODEW)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplaySettingsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplayDevicesA","package":"druntime","parentType":"","signature":"BOOL EnumDisplayDevicesA(LPCSTR,  DWORD,  PDISPLAY_DEVICEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplayDevicesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplayDevicesW","package":"druntime","parentType":"","signature":"BOOL EnumDisplayDevicesW(LPCWSTR,  DWORD,  PDISPLAY_DEVICEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplayDevicesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumPropsA","package":"druntime","parentType":"","signature":"int EnumPropsA(HWND,  PROPENUMPROCA)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumPropsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumPropsW","package":"druntime","parentType":"","signature":"int EnumPropsW(HWND,  PROPENUMPROCW)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumPropsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumPropsExA","package":"druntime","parentType":"","signature":"int EnumPropsExA(HWND,  PROPENUMPROCEXA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumPropsExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumPropsExW","package":"druntime","parentType":"","signature":"int EnumPropsExW(HWND,  PROPENUMPROCEXW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumPropsExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumThreadWindows","package":"druntime","parentType":"","signature":"BOOL EnumThreadWindows(DWORD,  WNDENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumThreadWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumWindows","package":"druntime","parentType":"","signature":"BOOL EnumWindows(WNDENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumWindowStationsA","package":"druntime","parentType":"","signature":"BOOL EnumWindowStationsA(WINSTAENUMPROCA,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumWindowStationsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumWindowStationsW","package":"druntime","parentType":"","signature":"BOOL EnumWindowStationsW(WINSTAENUMPROCW,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumWindowStationsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EqualRect","package":"druntime","parentType":"","signature":"BOOL EqualRect(LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/EqualRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ExitWindowsEx","package":"druntime","parentType":"","signature":"BOOL ExitWindowsEx(UINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/ExitWindowsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FindWindowA","package":"druntime","parentType":"","signature":"HWND FindWindowA(LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/FindWindowA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FindWindowExA","package":"druntime","parentType":"","signature":"HWND FindWindowExA(HWND,  HWND,  LPCSTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/FindWindowExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FindWindowExW","package":"druntime","parentType":"","signature":"HWND FindWindowExW(HWND,  HWND,  LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/FindWindowExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FindWindowW","package":"druntime","parentType":"","signature":"HWND FindWindowW(LPCWSTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/FindWindowW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FlashWindow","package":"druntime","parentType":"","signature":"BOOL FlashWindow(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/FlashWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FrameRect","package":"druntime","parentType":"","signature":"int FrameRect(HDC,  LPCRECT,  HBRUSH)","url":"/ddoc/druntime/core/sys/windows/winuser/FrameRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"FrameRgn","package":"druntime","parentType":"","signature":"BOOL FrameRgn(HDC,  HRGN,  HBRUSH,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/FrameRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetActiveWindow","package":"druntime","parentType":"","signature":"HWND GetActiveWindow()","url":"/ddoc/druntime/core/sys/windows/winuser/GetActiveWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetAncestor","package":"druntime","parentType":"","signature":"HWND GetAncestor(HWND,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetAncestor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetAsyncKeyState","package":"druntime","parentType":"","signature":"SHORT GetAsyncKeyState(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetAsyncKeyState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetCapture","package":"druntime","parentType":"","signature":"HWND GetCapture()","url":"/ddoc/druntime/core/sys/windows/winuser/GetCapture.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetCaretBlinkTime","package":"druntime","parentType":"","signature":"UINT GetCaretBlinkTime()","url":"/ddoc/druntime/core/sys/windows/winuser/GetCaretBlinkTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetCaretPos","package":"druntime","parentType":"","signature":"BOOL GetCaretPos(LPPOINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetCaretPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassInfoA","package":"druntime","parentType":"","signature":"BOOL GetClassInfoA(HINSTANCE,  LPCSTR,  LPWNDCLASSA)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassInfoExA","package":"druntime","parentType":"","signature":"BOOL GetClassInfoExA(HINSTANCE,  LPCSTR,  LPWNDCLASSEXA)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassInfoExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassInfoW","package":"druntime","parentType":"","signature":"BOOL GetClassInfoW(HINSTANCE,  LPCWSTR,  LPWNDCLASSW)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassInfoExW","package":"druntime","parentType":"","signature":"BOOL GetClassInfoExW(HINSTANCE,  LPCWSTR,  LPWNDCLASSEXW)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassInfoExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassLongA","package":"druntime","parentType":"","signature":"DWORD GetClassLongA(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassLongA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassLongW","package":"druntime","parentType":"","signature":"DWORD GetClassLongW(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassLongW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassNameA","package":"druntime","parentType":"","signature":"int GetClassNameA(HWND,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassNameW","package":"druntime","parentType":"","signature":"int GetClassNameW(HWND,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClassWord","package":"druntime","parentType":"","signature":"WORD GetClassWord(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClassWord.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClientRect","package":"druntime","parentType":"","signature":"BOOL GetClientRect(HWND,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClientRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardData","package":"druntime","parentType":"","signature":"HANDLE GetClipboardData(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardData.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardFormatNameA","package":"druntime","parentType":"","signature":"int GetClipboardFormatNameA(UINT,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardFormatNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardFormatNameW","package":"druntime","parentType":"","signature":"int GetClipboardFormatNameW(UINT,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardFormatNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardOwner","package":"druntime","parentType":"","signature":"HWND GetClipboardOwner()","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardOwner.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardViewer","package":"druntime","parentType":"","signature":"HWND GetClipboardViewer()","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardViewer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipCursor","package":"druntime","parentType":"","signature":"BOOL GetClipCursor(LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetCursorPos","package":"druntime","parentType":"","signature":"BOOL GetCursorPos(LPPOINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetCursorPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDC","package":"druntime","parentType":"","signature":"HDC GetDC(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDCEx","package":"druntime","parentType":"","signature":"HDC GetDCEx(HWND,  HRGN,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDCEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDesktopWindow","package":"druntime","parentType":"","signature":"HWND GetDesktopWindow()","url":"/ddoc/druntime/core/sys/windows/winuser/GetDesktopWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDialogBaseUnits","package":"druntime","parentType":"","signature":"int GetDialogBaseUnits()","url":"/ddoc/druntime/core/sys/windows/winuser/GetDialogBaseUnits.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDlgCtrlID","package":"druntime","parentType":"","signature":"int GetDlgCtrlID(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDlgCtrlID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDlgItem","package":"druntime","parentType":"","signature":"HWND GetDlgItem(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDlgItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDlgItemInt","package":"druntime","parentType":"","signature":"UINT GetDlgItemInt(HWND,  int,  PBOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDlgItemInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDlgItemTextA","package":"druntime","parentType":"","signature":"UINT GetDlgItemTextA(HWND,  int,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDlgItemTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDlgItemTextW","package":"druntime","parentType":"","signature":"UINT GetDlgItemTextW(HWND,  int,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetDlgItemTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetDoubleClickTime","package":"druntime","parentType":"","signature":"UINT GetDoubleClickTime()","url":"/ddoc/druntime/core/sys/windows/winuser/GetDoubleClickTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetFocus","package":"druntime","parentType":"","signature":"HWND GetFocus()","url":"/ddoc/druntime/core/sys/windows/winuser/GetFocus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetForegroundWindow","package":"druntime","parentType":"","signature":"HWND GetForegroundWindow()","url":"/ddoc/druntime/core/sys/windows/winuser/GetForegroundWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetIconInfo","package":"druntime","parentType":"","signature":"BOOL GetIconInfo(HICON,  PICONINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetIconInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetInputState","package":"druntime","parentType":"","signature":"BOOL GetInputState()","url":"/ddoc/druntime/core/sys/windows/winuser/GetInputState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKBCodePage","package":"druntime","parentType":"","signature":"UINT GetKBCodePage()","url":"/ddoc/druntime/core/sys/windows/winuser/GetKBCodePage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardLayout","package":"druntime","parentType":"","signature":"HKL GetKeyboardLayout(DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardLayout.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardLayoutList","package":"druntime","parentType":"","signature":"UINT GetKeyboardLayoutList(int,  HKL *)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardLayoutList.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardLayoutNameA","package":"druntime","parentType":"","signature":"BOOL GetKeyboardLayoutNameA(LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardLayoutNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardLayoutNameW","package":"druntime","parentType":"","signature":"BOOL GetKeyboardLayoutNameW(LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardLayoutNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardState","package":"druntime","parentType":"","signature":"BOOL GetKeyboardState(PBYTE)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyboardType","package":"druntime","parentType":"","signature":"int GetKeyboardType(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyboardType.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyNameTextA","package":"druntime","parentType":"","signature":"int GetKeyNameTextA(LONG,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyNameTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyNameTextW","package":"druntime","parentType":"","signature":"int GetKeyNameTextW(LONG,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyNameTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetKeyState","package":"druntime","parentType":"","signature":"SHORT GetKeyState(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetKeyState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetLastActivePopup","package":"druntime","parentType":"","signature":"HWND GetLastActivePopup(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetLastActivePopup.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenu","package":"druntime","parentType":"","signature":"HMENU GetMenu(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuCheckMarkDimensions","package":"druntime","parentType":"","signature":"LONG GetMenuCheckMarkDimensions()","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuCheckMarkDimensions.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuContextHelpId","package":"druntime","parentType":"","signature":"DWORD GetMenuContextHelpId(HMENU)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuContextHelpId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuDefaultItem","package":"druntime","parentType":"","signature":"UINT GetMenuDefaultItem(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuDefaultItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuItemCount","package":"druntime","parentType":"","signature":"int GetMenuItemCount(HMENU)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuItemCount.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuItemID","package":"druntime","parentType":"","signature":"UINT GetMenuItemID(HMENU,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuItemID.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuItemInfoA","package":"druntime","parentType":"","signature":"BOOL GetMenuItemInfoA(HMENU,  UINT,  BOOL,  LPMENUITEMINFOA)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuItemInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuItemInfoW","package":"druntime","parentType":"","signature":"BOOL GetMenuItemInfoW(HMENU,  UINT,  BOOL,  LPMENUITEMINFOW)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuItemInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuItemRect","package":"druntime","parentType":"","signature":"BOOL GetMenuItemRect(HWND,  HMENU,  UINT,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuItemRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuState","package":"druntime","parentType":"","signature":"UINT GetMenuState(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuStringA","package":"druntime","parentType":"","signature":"int GetMenuStringA(HMENU,  UINT,  LPSTR,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuStringW","package":"druntime","parentType":"","signature":"int GetMenuStringW(HMENU,  UINT,  LPWSTR,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMessageA","package":"druntime","parentType":"","signature":"BOOL GetMessageA(LPMSG,  HWND,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMessageW","package":"druntime","parentType":"","signature":"BOOL GetMessageW(LPMSG,  HWND,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMessageExtraInfo","package":"druntime","parentType":"","signature":"LPARAM GetMessageExtraInfo()","url":"/ddoc/druntime/core/sys/windows/winuser/GetMessageExtraInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMessagePos","package":"druntime","parentType":"","signature":"DWORD GetMessagePos()","url":"/ddoc/druntime/core/sys/windows/winuser/GetMessagePos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMessageTime","package":"druntime","parentType":"","signature":"LONG GetMessageTime()","url":"/ddoc/druntime/core/sys/windows/winuser/GetMessageTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetNextDlgGroupItem","package":"druntime","parentType":"","signature":"HWND GetNextDlgGroupItem(HWND,  HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetNextDlgGroupItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetNextDlgTabItem","package":"druntime","parentType":"","signature":"HWND GetNextDlgTabItem(HWND,  HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetNextDlgTabItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetOpenClipboardWindow","package":"druntime","parentType":"","signature":"HWND GetOpenClipboardWindow()","url":"/ddoc/druntime/core/sys/windows/winuser/GetOpenClipboardWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetParent","package":"druntime","parentType":"","signature":"HWND GetParent(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetParent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetPriorityClipboardFormat","package":"druntime","parentType":"","signature":"int GetPriorityClipboardFormat(UINT *,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetPriorityClipboardFormat.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetPropA","package":"druntime","parentType":"","signature":"HANDLE GetPropA(HWND,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/GetPropA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetPropW","package":"druntime","parentType":"","signature":"HANDLE GetPropW(HWND,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/GetPropW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetQueueStatus","package":"druntime","parentType":"","signature":"DWORD GetQueueStatus(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetQueueStatus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetScrollInfo","package":"druntime","parentType":"","signature":"BOOL GetScrollInfo(HWND,  int,  LPSCROLLINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetScrollInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetScrollPos","package":"druntime","parentType":"","signature":"int GetScrollPos(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetScrollPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetScrollRange","package":"druntime","parentType":"","signature":"BOOL GetScrollRange(HWND,  int,  LPINT,  LPINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetScrollRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetSubMenu","package":"druntime","parentType":"","signature":"HMENU GetSubMenu(HMENU,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetSubMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetSysColor","package":"druntime","parentType":"","signature":"DWORD GetSysColor(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetSysColor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetSysColorBrush","package":"druntime","parentType":"","signature":"HBRUSH GetSysColorBrush(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetSysColorBrush.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetSystemMenu","package":"druntime","parentType":"","signature":"HMENU GetSystemMenu(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetSystemMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetSystemMetrics","package":"druntime","parentType":"","signature":"int GetSystemMetrics(int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetSystemMetrics.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetTabbedTextExtentA","package":"druntime","parentType":"","signature":"DWORD GetTabbedTextExtentA(HDC,  LPCSTR,  int,  int,  LPINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetTabbedTextExtentA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetTabbedTextExtentW","package":"druntime","parentType":"","signature":"DWORD GetTabbedTextExtentW(HDC,  LPCWSTR,  int,  int,  LPINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetTabbedTextExtentW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowLongA","package":"druntime","parentType":"","signature":"LONG GetWindowLongA(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowLongA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowLongW","package":"druntime","parentType":"","signature":"LONG GetWindowLongW(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowLongW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetThreadDesktop","package":"druntime","parentType":"","signature":"HDESK GetThreadDesktop(DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetThreadDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetTopWindow","package":"druntime","parentType":"","signature":"HWND GetTopWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetTopWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetUpdateRect","package":"druntime","parentType":"","signature":"BOOL GetUpdateRect(HWND,  LPRECT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetUpdateRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetUpdateRgn","package":"druntime","parentType":"","signature":"int GetUpdateRgn(HWND,  HRGN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/GetUpdateRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetUserObjectInformationA","package":"druntime","parentType":"","signature":"BOOL GetUserObjectInformationA(HANDLE,  int,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetUserObjectInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetUserObjectInformationW","package":"druntime","parentType":"","signature":"BOOL GetUserObjectInformationW(HANDLE,  int,  PVOID,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetUserObjectInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetUserObjectSecurity","package":"druntime","parentType":"","signature":"BOOL GetUserObjectSecurity(HANDLE,  PSECURITY_INFORMATION,  PSECURITY_DESCRIPTOR,  DWORD,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetUserObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindow","package":"druntime","parentType":"","signature":"HWND GetWindow(HWND,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowContextHelpId","package":"druntime","parentType":"","signature":"DWORD GetWindowContextHelpId(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowContextHelpId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowDC","package":"druntime","parentType":"","signature":"HDC GetWindowDC(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowPlacement","package":"druntime","parentType":"","signature":"BOOL GetWindowPlacement(HWND,  WINDOWPLACEMENT *)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowPlacement.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowRect","package":"druntime","parentType":"","signature":"BOOL GetWindowRect(HWND,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowRgn","package":"druntime","parentType":"","signature":"int GetWindowRgn(HWND,  HRGN)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowTextA","package":"druntime","parentType":"","signature":"int GetWindowTextA(HWND,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowTextLengthA","package":"druntime","parentType":"","signature":"int GetWindowTextLengthA(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowTextLengthA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowTextLengthW","package":"druntime","parentType":"","signature":"int GetWindowTextLengthW(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowTextLengthW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowTextW","package":"druntime","parentType":"","signature":"int GetWindowTextW(HWND,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowWord","package":"druntime","parentType":"","signature":"WORD GetWindowWord(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowWord.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetAltTabInfoA","package":"druntime","parentType":"","signature":"BOOL GetAltTabInfoA(HWND,  int,  PALTTABINFO,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetAltTabInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetAltTabInfoW","package":"druntime","parentType":"","signature":"BOOL GetAltTabInfoW(HWND,  int,  PALTTABINFO,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetAltTabInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetComboBoxInfo","package":"druntime","parentType":"","signature":"BOOL GetComboBoxInfo(HWND,  PCOMBOBOXINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetComboBoxInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetCursorInfo","package":"druntime","parentType":"","signature":"BOOL GetCursorInfo(PCURSORINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetCursorInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetLastInputInfo","package":"druntime","parentType":"","signature":"BOOL GetLastInputInfo(PLASTINPUTINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetLastInputInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetListBoxInfo","package":"druntime","parentType":"","signature":"DWORD GetListBoxInfo(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/GetListBoxInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuBarInfo","package":"druntime","parentType":"","signature":"BOOL GetMenuBarInfo(HWND,  LONG,  LONG,  PMENUBARINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuBarInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMenuInfo","package":"druntime","parentType":"","signature":"BOOL GetMenuInfo(HMENU,  LPMENUINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMenuInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetScrollBarInfo","package":"druntime","parentType":"","signature":"BOOL GetScrollBarInfo(HWND,  LONG,  PSCROLLBARINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetScrollBarInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetTitleBarInfo","package":"druntime","parentType":"","signature":"BOOL GetTitleBarInfo(HWND,  PTITLEBARINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetTitleBarInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowInfo","package":"druntime","parentType":"","signature":"BOOL GetWindowInfo(HWND,  PWINDOWINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowModuleFileNameA","package":"druntime","parentType":"","signature":"UINT GetWindowModuleFileNameA(HWND,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowModuleFileNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetWindowModuleFileNameW","package":"druntime","parentType":"","signature":"UINT GetWindowModuleFileNameW(HWND,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/GetWindowModuleFileNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GrayStringA","package":"druntime","parentType":"","signature":"BOOL GrayStringA(HDC,  HBRUSH,  GRAYSTRINGPROC,  LPARAM,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GrayStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GrayStringW","package":"druntime","parentType":"","signature":"BOOL GrayStringW(HDC,  HBRUSH,  GRAYSTRINGPROC,  LPARAM,  int,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/GrayStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"HideCaret","package":"druntime","parentType":"","signature":"BOOL HideCaret(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/HideCaret.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"HiliteMenuItem","package":"druntime","parentType":"","signature":"BOOL HiliteMenuItem(HWND,  HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/HiliteMenuItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InflateRect","package":"druntime","parentType":"","signature":"BOOL InflateRect(LPRECT,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/InflateRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InSendMessage","package":"druntime","parentType":"","signature":"BOOL InSendMessage()","url":"/ddoc/druntime/core/sys/windows/winuser/InSendMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InsertMenuA","package":"druntime","parentType":"","signature":"BOOL InsertMenuA(HMENU,  UINT,  UINT,  UINT_PTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/InsertMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InsertMenuW","package":"druntime","parentType":"","signature":"BOOL InsertMenuW(HMENU,  UINT,  UINT,  UINT_PTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/InsertMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InsertMenuItemA","package":"druntime","parentType":"","signature":"BOOL InsertMenuItemA(HMENU,  UINT,  BOOL,  LPCMENUITEMINFOA)","url":"/ddoc/druntime/core/sys/windows/winuser/InsertMenuItemA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InsertMenuItemW","package":"druntime","parentType":"","signature":"BOOL InsertMenuItemW(HMENU,  UINT,  BOOL,  LPCMENUITEMINFOW)","url":"/ddoc/druntime/core/sys/windows/winuser/InsertMenuItemW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InternalGetWindowText","package":"druntime","parentType":"","signature":"INT InternalGetWindowText(HWND,  LPWSTR,  INT)","url":"/ddoc/druntime/core/sys/windows/winuser/InternalGetWindowText.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IntersectRect","package":"druntime","parentType":"","signature":"BOOL IntersectRect(LPRECT,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/IntersectRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InvalidateRect","package":"druntime","parentType":"","signature":"BOOL InvalidateRect(HWND,  LPCRECT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/InvalidateRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InvalidateRgn","package":"druntime","parentType":"","signature":"BOOL InvalidateRgn(HWND,  HRGN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/InvalidateRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InvertRect","package":"druntime","parentType":"","signature":"BOOL InvertRect(HDC,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/InvertRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharAlphaA","package":"druntime","parentType":"","signature":"BOOL IsCharAlphaA(CHAR ch)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharAlphaA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharAlphaNumericA","package":"druntime","parentType":"","signature":"BOOL IsCharAlphaNumericA(CHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharAlphaNumericA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharAlphaNumericW","package":"druntime","parentType":"","signature":"BOOL IsCharAlphaNumericW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharAlphaNumericW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharAlphaW","package":"druntime","parentType":"","signature":"BOOL IsCharAlphaW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharAlphaW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharLowerA","package":"druntime","parentType":"","signature":"BOOL IsCharLowerA(CHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharLowerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharLowerW","package":"druntime","parentType":"","signature":"BOOL IsCharLowerW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharLowerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharUpperA","package":"druntime","parentType":"","signature":"BOOL IsCharUpperA(CHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharUpperA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsCharUpperW","package":"druntime","parentType":"","signature":"BOOL IsCharUpperW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/IsCharUpperW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsChild","package":"druntime","parentType":"","signature":"BOOL IsChild(HWND,  HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsChild.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsClipboardFormatAvailable","package":"druntime","parentType":"","signature":"BOOL IsClipboardFormatAvailable(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/IsClipboardFormatAvailable.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsDialogMessageA","package":"druntime","parentType":"","signature":"BOOL IsDialogMessageA(HWND,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/winuser/IsDialogMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsDialogMessageW","package":"druntime","parentType":"","signature":"BOOL IsDialogMessageW(HWND,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/winuser/IsDialogMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsDlgButtonChecked","package":"druntime","parentType":"","signature":"UINT IsDlgButtonChecked(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/IsDlgButtonChecked.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsIconic","package":"druntime","parentType":"","signature":"BOOL IsIconic(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsIconic.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsMenu","package":"druntime","parentType":"","signature":"BOOL IsMenu(HMENU)","url":"/ddoc/druntime/core/sys/windows/winuser/IsMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsRectEmpty","package":"druntime","parentType":"","signature":"BOOL IsRectEmpty(LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/IsRectEmpty.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsWindow","package":"druntime","parentType":"","signature":"BOOL IsWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsWindowEnabled","package":"druntime","parentType":"","signature":"BOOL IsWindowEnabled(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsWindowEnabled.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsWindowUnicode","package":"druntime","parentType":"","signature":"BOOL IsWindowUnicode(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsWindowUnicode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsWindowVisible","package":"druntime","parentType":"","signature":"BOOL IsWindowVisible(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsWindowVisible.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsZoomed","package":"druntime","parentType":"","signature":"BOOL IsZoomed(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsZoomed.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"keybd_event","package":"druntime","parentType":"","signature":"void keybd_event(BYTE,  BYTE,  DWORD,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/keybd_event.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"KillTimer","package":"druntime","parentType":"","signature":"BOOL KillTimer(HWND,  UINT_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/KillTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadAcceleratorsA","package":"druntime","parentType":"","signature":"HACCEL LoadAcceleratorsA(HINSTANCE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadAcceleratorsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadAcceleratorsW","package":"druntime","parentType":"","signature":"HACCEL LoadAcceleratorsW(HINSTANCE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadAcceleratorsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadBitmapA","package":"druntime","parentType":"","signature":"HBITMAP LoadBitmapA(HINSTANCE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadBitmapA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadBitmapW","package":"druntime","parentType":"","signature":"HBITMAP LoadBitmapW(HINSTANCE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadBitmapW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadCursorA","package":"druntime","parentType":"","signature":"HCURSOR LoadCursorA(HINSTANCE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadCursorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadCursorFromFileA","package":"druntime","parentType":"","signature":"HCURSOR LoadCursorFromFileA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadCursorFromFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadCursorFromFileW","package":"druntime","parentType":"","signature":"HCURSOR LoadCursorFromFileW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadCursorFromFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadCursorW","package":"druntime","parentType":"","signature":"HCURSOR LoadCursorW(HINSTANCE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadCursorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadIconA","package":"druntime","parentType":"","signature":"HICON LoadIconA(HINSTANCE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadIconA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadIconW","package":"druntime","parentType":"","signature":"HICON LoadIconW(HINSTANCE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadIconW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadImageA","package":"druntime","parentType":"","signature":"HANDLE LoadImageA(HINSTANCE,  LPCSTR,  UINT,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadImageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadImageW","package":"druntime","parentType":"","signature":"HANDLE LoadImageW(HINSTANCE,  LPCWSTR,  UINT,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadImageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadKeyboardLayoutA","package":"druntime","parentType":"","signature":"HKL LoadKeyboardLayoutA(LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadKeyboardLayoutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadKeyboardLayoutW","package":"druntime","parentType":"","signature":"HKL LoadKeyboardLayoutW(LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadKeyboardLayoutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadMenuA","package":"druntime","parentType":"","signature":"HMENU LoadMenuA(HINSTANCE,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadMenuIndirectA","package":"druntime","parentType":"","signature":"HMENU LoadMenuIndirectA(const(MENUTEMPLATE) *)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadMenuIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadMenuIndirectW","package":"druntime","parentType":"","signature":"HMENU LoadMenuIndirectW(const(MENUTEMPLATE) *)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadMenuIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadMenuW","package":"druntime","parentType":"","signature":"HMENU LoadMenuW(HINSTANCE,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadStringA","package":"druntime","parentType":"","signature":"int LoadStringA(HINSTANCE,  UINT,  LPSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadStringA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LoadStringW","package":"druntime","parentType":"","signature":"int LoadStringW(HINSTANCE,  UINT,  LPWSTR,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/LoadStringW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LockWindowUpdate","package":"druntime","parentType":"","signature":"BOOL LockWindowUpdate(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/LockWindowUpdate.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LookupIconIdFromDirectory","package":"druntime","parentType":"","signature":"int LookupIconIdFromDirectory(PBYTE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/LookupIconIdFromDirectory.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LookupIconIdFromDirectoryEx","package":"druntime","parentType":"","signature":"int LookupIconIdFromDirectoryEx(PBYTE,  BOOL,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LookupIconIdFromDirectoryEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapDialogRect","package":"druntime","parentType":"","signature":"BOOL MapDialogRect(HWND,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/MapDialogRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapVirtualKeyA","package":"druntime","parentType":"","signature":"UINT MapVirtualKeyA(UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MapVirtualKeyA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapVirtualKeyExA","package":"druntime","parentType":"","signature":"UINT MapVirtualKeyExA(UINT,  UINT,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/MapVirtualKeyExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapVirtualKeyExW","package":"druntime","parentType":"","signature":"UINT MapVirtualKeyExW(UINT,  UINT,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/MapVirtualKeyExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapVirtualKeyW","package":"druntime","parentType":"","signature":"UINT MapVirtualKeyW(UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MapVirtualKeyW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MapWindowPoints","package":"druntime","parentType":"","signature":"int MapWindowPoints(HWND,  HWND,  LPPOINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MapWindowPoints.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MenuItemFromPoint","package":"druntime","parentType":"","signature":"int MenuItemFromPoint(HWND,  HMENU,  POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MenuItemFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBeep","package":"druntime","parentType":"","signature":"BOOL MessageBeep(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBeep.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxA","package":"druntime","parentType":"","signature":"int MessageBoxA(HWND,  LPCSTR,  LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxW","package":"druntime","parentType":"","signature":"int MessageBoxW(HWND,  LPCWSTR,  LPCWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxExA","package":"druntime","parentType":"","signature":"int MessageBoxExA(HWND,  LPCSTR,  LPCSTR,  UINT,  WORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxExW","package":"druntime","parentType":"","signature":"int MessageBoxExW(HWND,  LPCWSTR,  LPCWSTR,  UINT,  WORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxIndirectA","package":"druntime","parentType":"","signature":"int MessageBoxIndirectA(const(MSGBOXPARAMSA) *)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxIndirectA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MessageBoxIndirectW","package":"druntime","parentType":"","signature":"int MessageBoxIndirectW(const(MSGBOXPARAMSW) *)","url":"/ddoc/druntime/core/sys/windows/winuser/MessageBoxIndirectW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ModifyMenuA","package":"druntime","parentType":"","signature":"BOOL ModifyMenuA(HMENU,  UINT,  UINT,  UINT_PTR,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/ModifyMenuA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ModifyMenuW","package":"druntime","parentType":"","signature":"BOOL ModifyMenuW(HMENU,  UINT,  UINT,  UINT_PTR,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/ModifyMenuW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"mouse_event","package":"druntime","parentType":"","signature":"void mouse_event(DWORD,  DWORD,  DWORD,  DWORD,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/mouse_event.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MoveWindow","package":"druntime","parentType":"","signature":"BOOL MoveWindow(HWND,  int,  int,  int,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/MoveWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MsgWaitForMultipleObjects","package":"druntime","parentType":"","signature":"DWORD MsgWaitForMultipleObjects(DWORD,  const(HANDLE) *,  BOOL,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MsgWaitForMultipleObjects.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MsgWaitForMultipleObjectsEx","package":"druntime","parentType":"","signature":"DWORD MsgWaitForMultipleObjectsEx(DWORD,  const(HANDLE) *,  DWORD,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MsgWaitForMultipleObjectsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OemKeyScan","package":"druntime","parentType":"","signature":"DWORD OemKeyScan(WORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OemKeyScan.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OemToCharA","package":"druntime","parentType":"","signature":"BOOL OemToCharA(LPCSTR,  LPSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/OemToCharA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OemToCharBuffA","package":"druntime","parentType":"","signature":"BOOL OemToCharBuffA(LPCSTR,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OemToCharBuffA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OemToCharBuffW","package":"druntime","parentType":"","signature":"BOOL OemToCharBuffW(LPCSTR,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OemToCharBuffW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OemToCharW","package":"druntime","parentType":"","signature":"BOOL OemToCharW(LPCSTR,  LPWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/OemToCharW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OffsetRect","package":"druntime","parentType":"","signature":"BOOL OffsetRect(LPRECT,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/OffsetRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenClipboard","package":"druntime","parentType":"","signature":"BOOL OpenClipboard(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenClipboard.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenDesktopA","package":"druntime","parentType":"","signature":"HDESK OpenDesktopA(LPSTR,  DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenDesktopA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenDesktopW","package":"druntime","parentType":"","signature":"HDESK OpenDesktopW(LPWSTR,  DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenDesktopW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenIcon","package":"druntime","parentType":"","signature":"BOOL OpenIcon(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenIcon.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenInputDesktop","package":"druntime","parentType":"","signature":"HDESK OpenInputDesktop(DWORD,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenInputDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenWindowStationA","package":"druntime","parentType":"","signature":"HWINSTA OpenWindowStationA(LPSTR,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenWindowStationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"OpenWindowStationW","package":"druntime","parentType":"","signature":"HWINSTA OpenWindowStationW(LPWSTR,  BOOL,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/OpenWindowStationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PaintDesktop","package":"druntime","parentType":"","signature":"BOOL PaintDesktop(HDC)","url":"/ddoc/druntime/core/sys/windows/winuser/PaintDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PeekMessageA","package":"druntime","parentType":"","signature":"BOOL PeekMessageA(LPMSG,  HWND,  UINT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/PeekMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PeekMessageW","package":"druntime","parentType":"","signature":"BOOL PeekMessageW(LPMSG,  HWND,  UINT,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/PeekMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PostMessageA","package":"druntime","parentType":"","signature":"BOOL PostMessageA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/PostMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PostMessageW","package":"druntime","parentType":"","signature":"BOOL PostMessageW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/PostMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PostQuitMessage","package":"druntime","parentType":"","signature":"void PostQuitMessage(int)","url":"/ddoc/druntime/core/sys/windows/winuser/PostQuitMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PostThreadMessageA","package":"druntime","parentType":"","signature":"BOOL PostThreadMessageA(DWORD,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/PostThreadMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PostThreadMessageW","package":"druntime","parentType":"","signature":"BOOL PostThreadMessageW(DWORD,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/PostThreadMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"PtInRect","package":"druntime","parentType":"","signature":"BOOL PtInRect(LPCRECT,  POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/PtInRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RealChildWindowFromPoint","package":"druntime","parentType":"","signature":"HWND RealChildWindowFromPoint(HWND,  POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RealChildWindowFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RealGetWindowClassA","package":"druntime","parentType":"","signature":"UINT RealGetWindowClassA(HWND,  LPSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RealGetWindowClassA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RealGetWindowClassW","package":"druntime","parentType":"","signature":"UINT RealGetWindowClassW(HWND,  LPWSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RealGetWindowClassW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RedrawWindow","package":"druntime","parentType":"","signature":"BOOL RedrawWindow(HWND,  LPCRECT,  HRGN,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RedrawWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClassA","package":"druntime","parentType":"","signature":"ATOM RegisterClassA(const(WNDCLASSA) *)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClassA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClassW","package":"druntime","parentType":"","signature":"ATOM RegisterClassW(const(WNDCLASSW) *)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClassW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClassExA","package":"druntime","parentType":"","signature":"ATOM RegisterClassExA(const(WNDCLASSEXA) *)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClassExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClassExW","package":"druntime","parentType":"","signature":"ATOM RegisterClassExW(const(WNDCLASSEXW) *)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClassExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClipboardFormatA","package":"druntime","parentType":"","signature":"UINT RegisterClipboardFormatA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClipboardFormatA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterClipboardFormatW","package":"druntime","parentType":"","signature":"UINT RegisterClipboardFormatW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterClipboardFormatW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterHotKey","package":"druntime","parentType":"","signature":"BOOL RegisterHotKey(HWND,  int,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterHotKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterWindowMessageA","package":"druntime","parentType":"","signature":"UINT RegisterWindowMessageA(LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterWindowMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterWindowMessageW","package":"druntime","parentType":"","signature":"UINT RegisterWindowMessageW(LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterWindowMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ReleaseCapture","package":"druntime","parentType":"","signature":"BOOL ReleaseCapture()","url":"/ddoc/druntime/core/sys/windows/winuser/ReleaseCapture.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ReleaseDC","package":"druntime","parentType":"","signature":"int ReleaseDC(HWND,  HDC)","url":"/ddoc/druntime/core/sys/windows/winuser/ReleaseDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RemoveMenu","package":"druntime","parentType":"","signature":"BOOL RemoveMenu(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/RemoveMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RemovePropA","package":"druntime","parentType":"","signature":"HANDLE RemovePropA(HWND,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RemovePropA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RemovePropW","package":"druntime","parentType":"","signature":"HANDLE RemovePropW(HWND,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/RemovePropW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ReplyMessage","package":"druntime","parentType":"","signature":"BOOL ReplyMessage(LRESULT)","url":"/ddoc/druntime/core/sys/windows/winuser/ReplyMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ScreenToClient","package":"druntime","parentType":"","signature":"BOOL ScreenToClient(HWND,  LPPOINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ScreenToClient.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ScrollDC","package":"druntime","parentType":"","signature":"BOOL ScrollDC(HDC,  int,  int,  LPCRECT,  LPCRECT,  HRGN,  LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/ScrollDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ScrollWindow","package":"druntime","parentType":"","signature":"BOOL ScrollWindow(HWND,  int,  int,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/ScrollWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ScrollWindowEx","package":"druntime","parentType":"","signature":"int ScrollWindowEx(HWND,  int,  int,  LPCRECT,  LPCRECT,  HRGN,  LPRECT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ScrollWindowEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendDlgItemMessageA","package":"druntime","parentType":"","signature":"LONG SendDlgItemMessageA(HWND,  int,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendDlgItemMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendDlgItemMessageW","package":"druntime","parentType":"","signature":"LONG SendDlgItemMessageW(HWND,  int,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendDlgItemMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageA","package":"druntime","parentType":"","signature":"LRESULT SendMessageA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageCallbackA","package":"druntime","parentType":"","signature":"BOOL SendMessageCallbackA(HWND,  UINT,  WPARAM,  LPARAM,  SENDASYNCPROC,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageCallbackA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageCallbackW","package":"druntime","parentType":"","signature":"BOOL SendMessageCallbackW(HWND,  UINT,  WPARAM,  LPARAM,  SENDASYNCPROC,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageCallbackW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageTimeoutA","package":"druntime","parentType":"","signature":"LRESULT SendMessageTimeoutA(HWND,  UINT,  WPARAM,  LPARAM,  UINT,  UINT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageTimeoutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageTimeoutW","package":"druntime","parentType":"","signature":"LRESULT SendMessageTimeoutW(HWND,  UINT,  WPARAM,  LPARAM,  UINT,  UINT,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageTimeoutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendMessageW","package":"druntime","parentType":"","signature":"LRESULT SendMessageW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendNotifyMessageA","package":"druntime","parentType":"","signature":"BOOL SendNotifyMessageA(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendNotifyMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendNotifyMessageW","package":"druntime","parentType":"","signature":"BOOL SendNotifyMessageW(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SendNotifyMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetActiveWindow","package":"druntime","parentType":"","signature":"HWND SetActiveWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/SetActiveWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetCapture","package":"druntime","parentType":"","signature":"HWND SetCapture(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/winuser/SetCapture.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetCaretBlinkTime","package":"druntime","parentType":"","signature":"BOOL SetCaretBlinkTime(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetCaretBlinkTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetCaretPos","package":"druntime","parentType":"","signature":"BOOL SetCaretPos(int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/SetCaretPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetClassLongA","package":"druntime","parentType":"","signature":"DWORD SetClassLongA(HWND,  int,  LONG)","url":"/ddoc/druntime/core/sys/windows/winuser/SetClassLongA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetClassLongW","package":"druntime","parentType":"","signature":"DWORD SetClassLongW(HWND,  int,  LONG)","url":"/ddoc/druntime/core/sys/windows/winuser/SetClassLongW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetClassWord","package":"druntime","parentType":"","signature":"WORD SetClassWord(HWND,  int,  WORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetClassWord.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetClipboardData","package":"druntime","parentType":"","signature":"HANDLE SetClipboardData(UINT,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser/SetClipboardData.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetClipboardViewer","package":"druntime","parentType":"","signature":"HWND SetClipboardViewer(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/SetClipboardViewer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetCursor","package":"druntime","parentType":"","signature":"HCURSOR SetCursor(HCURSOR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetCursorPos","package":"druntime","parentType":"","signature":"BOOL SetCursorPos(int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/SetCursorPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetDebugErrorLevel","package":"druntime","parentType":"","signature":"void SetDebugErrorLevel(DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetDebugErrorLevel.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetDlgItemInt","package":"druntime","parentType":"","signature":"BOOL SetDlgItemInt(HWND,  int,  UINT,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SetDlgItemInt.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetDlgItemTextA","package":"druntime","parentType":"","signature":"BOOL SetDlgItemTextA(HWND,  int,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetDlgItemTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetDlgItemTextW","package":"druntime","parentType":"","signature":"BOOL SetDlgItemTextW(HWND,  int,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetDlgItemTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetDoubleClickTime","package":"druntime","parentType":"","signature":"BOOL SetDoubleClickTime(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetDoubleClickTime.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetFocus","package":"druntime","parentType":"","signature":"HWND SetFocus(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/SetFocus.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetForegroundWindow","package":"druntime","parentType":"","signature":"BOOL SetForegroundWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/SetForegroundWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetKeyboardState","package":"druntime","parentType":"","signature":"BOOL SetKeyboardState(PBYTE)","url":"/ddoc/druntime/core/sys/windows/winuser/SetKeyboardState.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenu","package":"druntime","parentType":"","signature":"BOOL SetMenu(HWND,  HMENU)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuContextHelpId","package":"druntime","parentType":"","signature":"BOOL SetMenuContextHelpId(HMENU,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuContextHelpId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuDefaultItem","package":"druntime","parentType":"","signature":"BOOL SetMenuDefaultItem(HMENU,  UINT,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuDefaultItem.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuInfo","package":"druntime","parentType":"","signature":"BOOL SetMenuInfo(HMENU,  LPCMENUINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuItemBitmaps","package":"druntime","parentType":"","signature":"BOOL SetMenuItemBitmaps(HMENU,  UINT,  UINT,  HBITMAP,  HBITMAP)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuItemBitmaps.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuItemInfoA","package":"druntime","parentType":"","signature":"BOOL SetMenuItemInfoA(HMENU,  UINT,  BOOL,  LPCMENUITEMINFOA)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuItemInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMenuItemInfoW","package":"druntime","parentType":"","signature":"BOOL SetMenuItemInfoW(HMENU,  UINT,  BOOL,  LPCMENUITEMINFOW)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMenuItemInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMessageExtraInfo","package":"druntime","parentType":"","signature":"LPARAM SetMessageExtraInfo(LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMessageExtraInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetMessageQueue","package":"druntime","parentType":"","signature":"BOOL SetMessageQueue(int)","url":"/ddoc/druntime/core/sys/windows/winuser/SetMessageQueue.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetParent","package":"druntime","parentType":"","signature":"HWND SetParent(HWND,  HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/SetParent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetProcessWindowStation","package":"druntime","parentType":"","signature":"BOOL SetProcessWindowStation(HWINSTA)","url":"/ddoc/druntime/core/sys/windows/winuser/SetProcessWindowStation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetPropA","package":"druntime","parentType":"","signature":"BOOL SetPropA(HWND,  LPCSTR,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser/SetPropA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetPropW","package":"druntime","parentType":"","signature":"BOOL SetPropW(HWND,  LPCWSTR,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser/SetPropW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetRect","package":"druntime","parentType":"","signature":"BOOL SetRect(LPRECT,  int,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/SetRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetRectEmpty","package":"druntime","parentType":"","signature":"BOOL SetRectEmpty(LPRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetRectEmpty.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetScrollInfo","package":"druntime","parentType":"","signature":"int SetScrollInfo(HWND,  int,  LPCSCROLLINFO,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SetScrollInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetScrollPos","package":"druntime","parentType":"","signature":"int SetScrollPos(HWND,  int,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SetScrollPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetScrollRange","package":"druntime","parentType":"","signature":"BOOL SetScrollRange(HWND,  int,  int,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SetScrollRange.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetSysColors","package":"druntime","parentType":"","signature":"BOOL SetSysColors(int,  const(INT) *,  const(COLORREF) *)","url":"/ddoc/druntime/core/sys/windows/winuser/SetSysColors.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetSystemCursor","package":"druntime","parentType":"","signature":"BOOL SetSystemCursor(HCURSOR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetSystemCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetThreadDesktop","package":"druntime","parentType":"","signature":"BOOL SetThreadDesktop(HDESK)","url":"/ddoc/druntime/core/sys/windows/winuser/SetThreadDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetTimer","package":"druntime","parentType":"","signature":"UINT_PTR SetTimer(HWND,  UINT_PTR,  UINT,  TIMERPROC)","url":"/ddoc/druntime/core/sys/windows/winuser/SetTimer.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetUserObjectInformationA","package":"druntime","parentType":"","signature":"BOOL SetUserObjectInformationA(HANDLE,  int,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetUserObjectInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetUserObjectInformationW","package":"druntime","parentType":"","signature":"BOOL SetUserObjectInformationW(HANDLE,  int,  PVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetUserObjectInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetUserObjectSecurity","package":"druntime","parentType":"","signature":"BOOL SetUserObjectSecurity(HANDLE,  PSECURITY_INFORMATION,  PSECURITY_DESCRIPTOR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetUserObjectSecurity.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowContextHelpId","package":"druntime","parentType":"","signature":"BOOL SetWindowContextHelpId(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowContextHelpId.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowLongA","package":"druntime","parentType":"","signature":"LONG SetWindowLongA(HWND,  int,  LONG)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowLongA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowLongW","package":"druntime","parentType":"","signature":"LONG SetWindowLongW(HWND,  int,  LONG)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowLongW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowPlacement","package":"druntime","parentType":"","signature":"BOOL SetWindowPlacement(HWND hWnd,  const(WINDOWPLACEMENT) *)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowPlacement.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowPos","package":"druntime","parentType":"","signature":"BOOL SetWindowPos(HWND,  HWND,  int,  int,  int,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowPos.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowRgn","package":"druntime","parentType":"","signature":"int SetWindowRgn(HWND,  HRGN,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowsHookA","package":"druntime","parentType":"","signature":"HHOOK SetWindowsHookA(int,  HOOKPROC)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowsHookA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowsHookW","package":"druntime","parentType":"","signature":"HHOOK SetWindowsHookW(int,  HOOKPROC)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowsHookW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowsHookExA","package":"druntime","parentType":"","signature":"HHOOK SetWindowsHookExA(int,  HOOKPROC,  HINSTANCE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowsHookExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowsHookExW","package":"druntime","parentType":"","signature":"HHOOK SetWindowsHookExW(int,  HOOKPROC,  HINSTANCE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowsHookExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowTextA","package":"druntime","parentType":"","signature":"BOOL SetWindowTextA(HWND,  LPCSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowTextA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowTextW","package":"druntime","parentType":"","signature":"BOOL SetWindowTextW(HWND,  LPCWSTR)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowTextW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWindowWord","package":"druntime","parentType":"","signature":"WORD SetWindowWord(HWND,  int,  WORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWindowWord.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowCaret","package":"druntime","parentType":"","signature":"BOOL ShowCaret(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowCaret.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowCursor","package":"druntime","parentType":"","signature":"int ShowCursor(BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowCursor.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowOwnedPopups","package":"druntime","parentType":"","signature":"BOOL ShowOwnedPopups(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowOwnedPopups.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowScrollBar","package":"druntime","parentType":"","signature":"BOOL ShowScrollBar(HWND,  int,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowScrollBar.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowWindow","package":"druntime","parentType":"","signature":"BOOL ShowWindow(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ShowWindowAsync","package":"druntime","parentType":"","signature":"BOOL ShowWindowAsync(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/ShowWindowAsync.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SubtractRect","package":"druntime","parentType":"","signature":"BOOL SubtractRect(LPRECT,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/SubtractRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SwapMouseButton","package":"druntime","parentType":"","signature":"BOOL SwapMouseButton(BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SwapMouseButton.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SwitchDesktop","package":"druntime","parentType":"","signature":"BOOL SwitchDesktop(HDESK)","url":"/ddoc/druntime/core/sys/windows/winuser/SwitchDesktop.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SystemParametersInfoA","package":"druntime","parentType":"","signature":"BOOL SystemParametersInfoA(UINT,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SystemParametersInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SystemParametersInfoW","package":"druntime","parentType":"","signature":"BOOL SystemParametersInfoW(UINT,  UINT,  PVOID,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SystemParametersInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TabbedTextOutA","package":"druntime","parentType":"","signature":"LONG TabbedTextOutA(HDC,  int,  int,  LPCSTR,  int,  int,  LPINT,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/TabbedTextOutA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TabbedTextOutW","package":"druntime","parentType":"","signature":"LONG TabbedTextOutW(HDC,  int,  int,  LPCWSTR,  int,  int,  LPINT,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/TabbedTextOutW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TileWindows","package":"druntime","parentType":"","signature":"WORD TileWindows(HWND,  UINT,  LPCRECT,  UINT,  const(HWND) *)","url":"/ddoc/druntime/core/sys/windows/winuser/TileWindows.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ToAscii","package":"druntime","parentType":"","signature":"int ToAscii(UINT,  UINT,  PBYTE,  LPWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ToAscii.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ToAsciiEx","package":"druntime","parentType":"","signature":"int ToAsciiEx(UINT,  UINT,  PBYTE,  LPWORD,  UINT,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/ToAsciiEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ToUnicode","package":"druntime","parentType":"","signature":"int ToUnicode(UINT,  UINT,  PBYTE,  LPWSTR,  int,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/ToUnicode.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ToUnicodeEx","package":"druntime","parentType":"","signature":"int ToUnicodeEx(UINT,  UINT,  PBYTE,  LPWSTR,  int,  UINT,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/ToUnicodeEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TrackMouseEvent","package":"druntime","parentType":"","signature":"BOOL TrackMouseEvent(LPTRACKMOUSEEVENT)","url":"/ddoc/druntime/core/sys/windows/winuser/TrackMouseEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TrackPopupMenu","package":"druntime","parentType":"","signature":"BOOL TrackPopupMenu(HMENU,  UINT,  int,  int,  int,  HWND,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/TrackPopupMenu.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TrackPopupMenuEx","package":"druntime","parentType":"","signature":"BOOL TrackPopupMenuEx(HMENU,  UINT,  int,  int,  HWND,  LPTPMPARAMS)","url":"/ddoc/druntime/core/sys/windows/winuser/TrackPopupMenuEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TranslateAcceleratorA","package":"druntime","parentType":"","signature":"int TranslateAcceleratorA(HWND,  HACCEL,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/winuser/TranslateAcceleratorA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TranslateAcceleratorW","package":"druntime","parentType":"","signature":"int TranslateAcceleratorW(HWND,  HACCEL,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/winuser/TranslateAcceleratorW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TranslateMDISysAccel","package":"druntime","parentType":"","signature":"BOOL TranslateMDISysAccel(HWND,  LPMSG)","url":"/ddoc/druntime/core/sys/windows/winuser/TranslateMDISysAccel.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"TranslateMessage","package":"druntime","parentType":"","signature":"BOOL TranslateMessage(const(MSG) *)","url":"/ddoc/druntime/core/sys/windows/winuser/TranslateMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnhookWindowsHook","package":"druntime","parentType":"","signature":"BOOL UnhookWindowsHook(int,  HOOKPROC)","url":"/ddoc/druntime/core/sys/windows/winuser/UnhookWindowsHook.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnhookWindowsHookEx","package":"druntime","parentType":"","signature":"BOOL UnhookWindowsHookEx(HHOOK)","url":"/ddoc/druntime/core/sys/windows/winuser/UnhookWindowsHookEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnionRect","package":"druntime","parentType":"","signature":"BOOL UnionRect(LPRECT,  LPCRECT,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/UnionRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnloadKeyboardLayout","package":"druntime","parentType":"","signature":"BOOL UnloadKeyboardLayout(HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/UnloadKeyboardLayout.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnregisterClassA","package":"druntime","parentType":"","signature":"BOOL UnregisterClassA(LPCSTR,  HINSTANCE)","url":"/ddoc/druntime/core/sys/windows/winuser/UnregisterClassA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnregisterClassW","package":"druntime","parentType":"","signature":"BOOL UnregisterClassW(LPCWSTR,  HINSTANCE)","url":"/ddoc/druntime/core/sys/windows/winuser/UnregisterClassW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnregisterHotKey","package":"druntime","parentType":"","signature":"BOOL UnregisterHotKey(HWND,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/UnregisterHotKey.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UpdateWindow","package":"druntime","parentType":"","signature":"BOOL UpdateWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/UpdateWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ValidateRect","package":"druntime","parentType":"","signature":"BOOL ValidateRect(HWND,  LPCRECT)","url":"/ddoc/druntime/core/sys/windows/winuser/ValidateRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"ValidateRgn","package":"druntime","parentType":"","signature":"BOOL ValidateRgn(HWND,  HRGN)","url":"/ddoc/druntime/core/sys/windows/winuser/ValidateRgn.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"VkKeyScanA","package":"druntime","parentType":"","signature":"SHORT VkKeyScanA(CHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/VkKeyScanA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"VkKeyScanExA","package":"druntime","parentType":"","signature":"SHORT VkKeyScanExA(CHAR,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/VkKeyScanExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"VkKeyScanExW","package":"druntime","parentType":"","signature":"SHORT VkKeyScanExW(WCHAR,  HKL)","url":"/ddoc/druntime/core/sys/windows/winuser/VkKeyScanExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"VkKeyScanW","package":"druntime","parentType":"","signature":"SHORT VkKeyScanW(WCHAR)","url":"/ddoc/druntime/core/sys/windows/winuser/VkKeyScanW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WaitForInputIdle","package":"druntime","parentType":"","signature":"DWORD WaitForInputIdle(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/WaitForInputIdle.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WaitMessage","package":"druntime","parentType":"","signature":"BOOL WaitMessage()","url":"/ddoc/druntime/core/sys/windows/winuser/WaitMessage.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WindowFromDC","package":"druntime","parentType":"","signature":"HWND WindowFromDC(HDC hDC)","url":"/ddoc/druntime/core/sys/windows/winuser/WindowFromDC.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WindowFromPoint","package":"druntime","parentType":"","signature":"HWND WindowFromPoint(POINT)","url":"/ddoc/druntime/core/sys/windows/winuser/WindowFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WinExec","package":"druntime","parentType":"","signature":"UINT WinExec(LPCSTR,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/WinExec.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WinHelpA","package":"druntime","parentType":"","signature":"BOOL WinHelpA(HWND,  LPCSTR,  UINT,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/WinHelpA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"WinHelpW","package":"druntime","parentType":"","signature":"BOOL WinHelpW(HWND,  LPCWSTR,  UINT,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser/WinHelpW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"wsprintfA","package":"druntime","parentType":"","signature":"int wsprintfA(LPSTR,  LPCSTR, ...)","url":"/ddoc/druntime/core/sys/windows/winuser/wsprintfA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"wsprintfW","package":"druntime","parentType":"","signature":"int wsprintfW(LPWSTR,  LPCWSTR, ...)","url":"/ddoc/druntime/core/sys/windows/winuser/wsprintfW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"wvsprintfA","package":"druntime","parentType":"","signature":"int wvsprintfA(LPSTR,  LPCSTR,  va_list_ arglist)","url":"/ddoc/druntime/core/sys/windows/winuser/wvsprintfA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"wvsprintfW","package":"druntime","parentType":"","signature":"int wvsprintfW(LPWSTR,  LPCWSTR,  va_list_ arglist)","url":"/ddoc/druntime/core/sys/windows/winuser/wvsprintfW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"BroadcastSystemMessageA","package":"druntime","parentType":"","signature":"int BroadcastSystemMessageA(DWORD,  LPDWORD,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/BroadcastSystemMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"BroadcastSystemMessageW","package":"druntime","parentType":"","signature":"int BroadcastSystemMessageW(DWORD,  LPDWORD,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/BroadcastSystemMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SendInput","package":"druntime","parentType":"","signature":"UINT SendInput(UINT,  LPINPUT,  int)","url":"/ddoc/druntime/core/sys/windows/winuser/SendInput.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplayMonitors","package":"druntime","parentType":"","signature":"BOOL EnumDisplayMonitors(HDC,  LPCRECT,  MONITORENUMPROC,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplayMonitors.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMonitorInfoA","package":"druntime","parentType":"","signature":"BOOL GetMonitorInfoA(HMONITOR,  LPMONITORINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMonitorInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMonitorInfoA","package":"druntime","parentType":"","signature":"BOOL GetMonitorInfoA()(HMONITOR m,  LPMONITORINFOEXA mi)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMonitorInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMonitorInfoW","package":"druntime","parentType":"","signature":"BOOL GetMonitorInfoW(HMONITOR,  LPMONITORINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMonitorInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMonitorInfoW","package":"druntime","parentType":"","signature":"BOOL GetMonitorInfoW()(HMONITOR m,  LPMONITORINFOEXW mi)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMonitorInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MonitorFromPoint","package":"druntime","parentType":"","signature":"HMONITOR MonitorFromPoint(POINT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MonitorFromPoint.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MonitorFromRect","package":"druntime","parentType":"","signature":"HMONITOR MonitorFromRect(LPCRECT,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MonitorFromRect.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"MonitorFromWindow","package":"druntime","parentType":"","signature":"HMONITOR MonitorFromWindow(HWND,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/MonitorFromWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AllowSetForegroundWindow","package":"druntime","parentType":"","signature":"BOOL AllowSetForegroundWindow(DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/AllowSetForegroundWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"AnimateWindow","package":"druntime","parentType":"","signature":"BOOL AnimateWindow(HWND,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/AnimateWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EndTask","package":"druntime","parentType":"","signature":"BOOL EndTask(HWND,  BOOL,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/EndTask.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplaySettingsExA","package":"druntime","parentType":"","signature":"BOOL EnumDisplaySettingsExA(LPCSTR,  DWORD,  LPDEVMODEA,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplaySettingsExA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"EnumDisplaySettingsExW","package":"druntime","parentType":"","signature":"BOOL EnumDisplaySettingsExW(LPCWSTR,  DWORD,  LPDEVMODEW,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/EnumDisplaySettingsExW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetClipboardSequenceNumber","package":"druntime","parentType":"","signature":"DWORD GetClipboardSequenceNumber()","url":"/ddoc/druntime/core/sys/windows/winuser/GetClipboardSequenceNumber.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetGuiResources","package":"druntime","parentType":"","signature":"DWORD GetGuiResources(HANDLE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetGuiResources.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetGUIThreadInfo","package":"druntime","parentType":"","signature":"BOOL GetGUIThreadInfo(DWORD,  LPGUITHREADINFO)","url":"/ddoc/druntime/core/sys/windows/winuser/GetGUIThreadInfo.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetMouseMovePointsEx","package":"druntime","parentType":"","signature":"int GetMouseMovePointsEx(UINT,  LPMOUSEMOVEPOINT,  LPMOUSEMOVEPOINT,  int,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/GetMouseMovePointsEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetProcessDefaultLayout","package":"druntime","parentType":"","signature":"BOOL GetProcessDefaultLayout(DWORD *)","url":"/ddoc/druntime/core/sys/windows/winuser/GetProcessDefaultLayout.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"GetShellWindow","package":"druntime","parentType":"","signature":"HWND GetShellWindow()","url":"/ddoc/druntime/core/sys/windows/winuser/GetShellWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"IsHungAppWindow","package":"druntime","parentType":"","signature":"BOOL IsHungAppWindow(HWND)","url":"/ddoc/druntime/core/sys/windows/winuser/IsHungAppWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"InSendMessageEx","package":"druntime","parentType":"","signature":"DWORD InSendMessageEx(LPVOID)","url":"/ddoc/druntime/core/sys/windows/winuser/InSendMessageEx.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LockSetForegroundWindow","package":"druntime","parentType":"","signature":"BOOL LockSetForegroundWindow(UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/LockSetForegroundWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"LockWorkStation","package":"druntime","parentType":"","signature":"BOOL LockWorkStation()","url":"/ddoc/druntime/core/sys/windows/winuser/LockWorkStation.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"NotifyWinEvent","package":"druntime","parentType":"","signature":"void NotifyWinEvent(DWORD,  HWND,  LONG,  LONG)","url":"/ddoc/druntime/core/sys/windows/winuser/NotifyWinEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterDeviceNotificationA","package":"druntime","parentType":"","signature":"HDEVNOTIFY RegisterDeviceNotificationA(HANDLE,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterDeviceNotificationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"RegisterDeviceNotificationW","package":"druntime","parentType":"","signature":"HDEVNOTIFY RegisterDeviceNotificationW(HANDLE,  LPVOID,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/RegisterDeviceNotificationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetProcessDefaultLayout","package":"druntime","parentType":"","signature":"BOOL SetProcessDefaultLayout(DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetProcessDefaultLayout.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetWinEventHook","package":"druntime","parentType":"","signature":"HWINEVENTHOOK SetWinEventHook(UINT,  UINT,  HMODULE,  WINEVENTPROC,  DWORD,  DWORD,  UINT)","url":"/ddoc/druntime/core/sys/windows/winuser/SetWinEventHook.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SwitchToThisWindow","package":"druntime","parentType":"","signature":"void SwitchToThisWindow(HWND,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/SwitchToThisWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"SetLayeredWindowAttributes","package":"druntime","parentType":"","signature":"BOOL SetLayeredWindowAttributes(HWND,  COLORREF,  BYTE,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/SetLayeredWindowAttributes.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UpdateLayeredWindow","package":"druntime","parentType":"","signature":"BOOL UpdateLayeredWindow(HWND,  HDC,  POINT *,  SIZE *,  HDC,  POINT *,  COLORREF,  BLENDFUNCTION *,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser/UpdateLayeredWindow.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UserHandleGrantAccess","package":"druntime","parentType":"","signature":"BOOL UserHandleGrantAccess(HANDLE,  HANDLE,  BOOL)","url":"/ddoc/druntime/core/sys/windows/winuser/UserHandleGrantAccess.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnhookWinEvent","package":"druntime","parentType":"","signature":"BOOL UnhookWinEvent(HWINEVENTHOOK)","url":"/ddoc/druntime/core/sys/windows/winuser/UnhookWinEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.winuser","name":"UnregisterDeviceNotification","package":"druntime","parentType":"","signature":"BOOL UnregisterDeviceNotification(HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser/UnregisterDeviceNotification.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_HICONSM","package":"druntime","parentType":"","signature":"GCLP_HICONSM = GCL_HICONSM","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_HICONSM"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_HICON","package":"druntime","parentType":"","signature":"GCLP_HICON = GCL_HICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_HICON"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_HCURSOR","package":"druntime","parentType":"","signature":"GCLP_HCURSOR = GCL_HCURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_HCURSOR"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_HBRBACKGROUND","package":"druntime","parentType":"","signature":"GCLP_HBRBACKGROUND = GCL_HBRBACKGROUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_HBRBACKGROUND"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_HMODULE","package":"druntime","parentType":"","signature":"GCLP_HMODULE = GCL_HMODULE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_HMODULE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_MENUNAME","package":"druntime","parentType":"","signature":"GCLP_MENUNAME = GCL_MENUNAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_MENUNAME"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GCLP_WNDPROC","package":"druntime","parentType":"","signature":"GCLP_WNDPROC = GCL_WNDPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCLP_WNDPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"DLGPROC","package":"druntime","parentType":"","signature":"DLGPROC = INT_PTR function(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"TIMERPROC","package":"druntime","parentType":"","signature":"TIMERPROC = void  function(HWND,  UINT,  UINT_PTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser.html#TIMERPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GRAYSTRINGPROC","package":"druntime","parentType":"","signature":"GRAYSTRINGPROC = BOOL function(HDC,  LPARAM,  int)","url":"/ddoc/druntime/core/sys/windows/winuser.html#GRAYSTRINGPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"HOOKPROC","package":"druntime","parentType":"","signature":"HOOKPROC = LRESULT function(int,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#HOOKPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PROPENUMPROCA","package":"druntime","parentType":"","signature":"PROPENUMPROCA = BOOL function(HWND,  LPCSTR,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser.html#PROPENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PROPENUMPROCW","package":"druntime","parentType":"","signature":"PROPENUMPROCW = BOOL function(HWND,  LPCWSTR,  HANDLE)","url":"/ddoc/druntime/core/sys/windows/winuser.html#PROPENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PROPENUMPROCEXA","package":"druntime","parentType":"","signature":"PROPENUMPROCEXA = BOOL function(HWND,  LPSTR,  HANDLE,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser.html#PROPENUMPROCEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PROPENUMPROCEXW","package":"druntime","parentType":"","signature":"PROPENUMPROCEXW = BOOL function(HWND,  LPWSTR,  HANDLE,  ULONG_PTR)","url":"/ddoc/druntime/core/sys/windows/winuser.html#PROPENUMPROCEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"EDITWORDBREAKPROCA","package":"druntime","parentType":"","signature":"EDITWORDBREAKPROCA = int  function(LPSTR,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDITWORDBREAKPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"EDITWORDBREAKPROCW","package":"druntime","parentType":"","signature":"EDITWORDBREAKPROCW = int  function(LPWSTR,  int,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDITWORDBREAKPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"WNDPROC","package":"druntime","parentType":"","signature":"WNDPROC = LRESULT function(HWND,  UINT,  WPARAM,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"DRAWSTATEPROC","package":"druntime","parentType":"","signature":"DRAWSTATEPROC = BOOL function(HDC,  LPARAM,  WPARAM,  int,  int)","url":"/ddoc/druntime/core/sys/windows/winuser.html#DRAWSTATEPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"WNDENUMPROC","package":"druntime","parentType":"","signature":"WNDENUMPROC = BOOL function(HWND,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"ENUMWINDOWSPROC","package":"druntime","parentType":"","signature":"ENUMWINDOWSPROC = BOOL function(HWND,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#ENUMWINDOWSPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MSGBOXCALLBACK","package":"druntime","parentType":"","signature":"MSGBOXCALLBACK = void  function(LPHELPINFO)","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGBOXCALLBACK"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MONITORENUMPROC","package":"druntime","parentType":"","signature":"MONITORENUMPROC = BOOL function(HMONITOR,  HDC,  LPRECT,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#MONITORENUMPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NAMEENUMPROCA","package":"druntime","parentType":"","signature":"NAMEENUMPROCA = BOOL function(LPSTR,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#NAMEENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NAMEENUMPROCW","package":"druntime","parentType":"","signature":"NAMEENUMPROCW = BOOL function(LPWSTR,  LPARAM)","url":"/ddoc/druntime/core/sys/windows/winuser.html#NAMEENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"SENDASYNCPROC","package":"druntime","parentType":"","signature":"SENDASYNCPROC = void  function(HWND,  UINT,  ULONG_PTR,  LRESULT)","url":"/ddoc/druntime/core/sys/windows/winuser.html#SENDASYNCPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"DESKTOPENUMPROCA","package":"druntime","parentType":"","signature":"DESKTOPENUMPROCA = NAMEENUMPROCA","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOPENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"DESKTOPENUMPROCW","package":"druntime","parentType":"","signature":"DESKTOPENUMPROCW = NAMEENUMPROCW","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOPENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"WINSTAENUMPROCA","package":"druntime","parentType":"","signature":"WINSTAENUMPROCA = NAMEENUMPROCA","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTAENUMPROCA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"WINSTAENUMPROCW","package":"druntime","parentType":"","signature":"WINSTAENUMPROCW = NAMEENUMPROCW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTAENUMPROCW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"HDWP","package":"druntime","parentType":"","signature":"HDWP = HANDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HDWP"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"HDEVNOTIFY","package":"druntime","parentType":"","signature":"HDEVNOTIFY = HANDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HDEVNOTIFY"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUGETOBJECTINFO","package":"druntime","parentType":"","signature":"MENUGETOBJECTINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUGETOBJECTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMENUGETOBJECTINFO","package":"druntime","parentType":"","signature":"PMENUGETOBJECTINFO = MENUGETOBJECTINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMENUGETOBJECTINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ACCEL","package":"druntime","parentType":"","signature":"ACCEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#ACCEL"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPACCEL","package":"druntime","parentType":"","signature":"LPACCEL = ACCEL *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPACCEL"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ACCESSTIMEOUT","package":"druntime","parentType":"","signature":"ACCESSTIMEOUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ACCESSTIMEOUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPACCESSTIMEOUT","package":"druntime","parentType":"","signature":"LPACCESSTIMEOUT = ACCESSTIMEOUT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPACCESSTIMEOUT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ANIMATIONINFO","package":"druntime","parentType":"","signature":"ANIMATIONINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#ANIMATIONINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPANIMATIONINFO","package":"druntime","parentType":"","signature":"LPANIMATIONINFO = ANIMATIONINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPANIMATIONINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CREATESTRUCTA","package":"druntime","parentType":"","signature":"CREATESTRUCTA","url":"/ddoc/druntime/core/sys/windows/winuser.html#CREATESTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCREATESTRUCTA","package":"druntime","parentType":"","signature":"LPCREATESTRUCTA = CREATESTRUCTA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCREATESTRUCTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CREATESTRUCTW","package":"druntime","parentType":"","signature":"CREATESTRUCTW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CREATESTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCREATESTRUCTW","package":"druntime","parentType":"","signature":"LPCREATESTRUCTW = CREATESTRUCTW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCREATESTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CBT_CREATEWNDA","package":"druntime","parentType":"","signature":"CBT_CREATEWNDA","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBT_CREATEWNDA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCBT_CREATEWNDA","package":"druntime","parentType":"","signature":"LPCBT_CREATEWNDA = CBT_CREATEWNDA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCBT_CREATEWNDA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CBT_CREATEWNDW","package":"druntime","parentType":"","signature":"CBT_CREATEWNDW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBT_CREATEWNDW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCBT_CREATEWNDW","package":"druntime","parentType":"","signature":"LPCBT_CREATEWNDW = CBT_CREATEWNDW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCBT_CREATEWNDW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CBTACTIVATESTRUCT","package":"druntime","parentType":"","signature":"CBTACTIVATESTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBTACTIVATESTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCBTACTIVATESTRUCT","package":"druntime","parentType":"","signature":"LPCBTACTIVATESTRUCT = CBTACTIVATESTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCBTACTIVATESTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CLIENTCREATESTRUCT","package":"druntime","parentType":"","signature":"CLIENTCREATESTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CLIENTCREATESTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCLIENTCREATESTRUCT","package":"druntime","parentType":"","signature":"LPCLIENTCREATESTRUCT = CLIENTCREATESTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCLIENTCREATESTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"COMPAREITEMSTRUCT","package":"druntime","parentType":"","signature":"COMPAREITEMSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COMPAREITEMSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCOMPAREITEMSTRUCT","package":"druntime","parentType":"","signature":"LPCOMPAREITEMSTRUCT = COMPAREITEMSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCOMPAREITEMSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"COPYDATASTRUCT","package":"druntime","parentType":"","signature":"COPYDATASTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COPYDATASTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PCOPYDATASTRUCT","package":"druntime","parentType":"","signature":"PCOPYDATASTRUCT = COPYDATASTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PCOPYDATASTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CURSORSHAPE","package":"druntime","parentType":"","signature":"CURSORSHAPE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CURSORSHAPE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCURSORSHAPE","package":"druntime","parentType":"","signature":"LPCURSORSHAPE = CURSORSHAPE *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCURSORSHAPE"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CWPRETSTRUCT","package":"druntime","parentType":"","signature":"CWPRETSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWPRETSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CWPSTRUCT","package":"druntime","parentType":"","signature":"CWPSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWPSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PCWPSTRUCT","package":"druntime","parentType":"","signature":"PCWPSTRUCT = CWPSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PCWPSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DEBUGHOOKINFO","package":"druntime","parentType":"","signature":"DEBUGHOOKINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#DEBUGHOOKINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PDEBUGHOOKINFO","package":"druntime","parentType":"","signature":"PDEBUGHOOKINFO = DEBUGHOOKINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PDEBUGHOOKINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DELETEITEMSTRUCT","package":"druntime","parentType":"","signature":"DELETEITEMSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DELETEITEMSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PDELETEITEMSTRUCT","package":"druntime","parentType":"","signature":"PDELETEITEMSTRUCT = DELETEITEMSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PDELETEITEMSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DLGITEMTEMPLATE","package":"druntime","parentType":"","signature":"DLGITEMTEMPLATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGITEMTEMPLATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPDLGITEMTEMPLATE","package":"druntime","parentType":"","signature":"LPDLGITEMTEMPLATE = DLGITEMTEMPLATE *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPDLGITEMTEMPLATE"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DLGTEMPLATE","package":"druntime","parentType":"","signature":"DLGTEMPLATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGTEMPLATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPDLGTEMPLATE","package":"druntime","parentType":"","signature":"LPDLGTEMPLATE = DLGTEMPLATE *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPDLGTEMPLATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCDLGTEMPLATE","package":"druntime","parentType":"","signature":"LPCDLGTEMPLATE = const(DLGTEMPLATE) *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCDLGTEMPLATE"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DRAWITEMSTRUCT","package":"druntime","parentType":"","signature":"DRAWITEMSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DRAWITEMSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPDRAWITEMSTRUCT","package":"druntime","parentType":"","signature":"LPDRAWITEMSTRUCT = DRAWITEMSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPDRAWITEMSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DRAWTEXTPARAMS","package":"druntime","parentType":"","signature":"DRAWTEXTPARAMS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DRAWTEXTPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPDRAWTEXTPARAMS","package":"druntime","parentType":"","signature":"LPDRAWTEXTPARAMS = DRAWTEXTPARAMS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPDRAWTEXTPARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"PAINTSTRUCT","package":"druntime","parentType":"","signature":"PAINTSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#PAINTSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PPAINTSTRUCT","package":"druntime","parentType":"","signature":"PPAINTSTRUCT = PAINTSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PPAINTSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MSG","package":"druntime","parentType":"","signature":"MSG","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSG"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NPMSG","package":"druntime","parentType":"","signature":"NPMSG = MSG *","url":"/ddoc/druntime/core/sys/windows/winuser.html#NPMSG"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ICONINFO","package":"druntime","parentType":"","signature":"ICONINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#ICONINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PICONINFO","package":"druntime","parentType":"","signature":"PICONINFO = ICONINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PICONINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"NMHDR","package":"druntime","parentType":"","signature":"NMHDR","url":"/ddoc/druntime/core/sys/windows/winuser.html#NMHDR"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPNMHDR","package":"druntime","parentType":"","signature":"LPNMHDR = NMHDR *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPNMHDR"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WNDCLASSA","package":"druntime","parentType":"","signature":"WNDCLASSA","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDCLASSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NPWNDCLASSA","package":"druntime","parentType":"","signature":"NPWNDCLASSA = WNDCLASSA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#NPWNDCLASSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WNDCLASSW","package":"druntime","parentType":"","signature":"WNDCLASSW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDCLASSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NPWNDCLASSW","package":"druntime","parentType":"","signature":"NPWNDCLASSW = WNDCLASSW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#NPWNDCLASSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WNDCLASSEXA","package":"druntime","parentType":"","signature":"WNDCLASSEXA","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDCLASSEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"NPWNDCLASSEXA","package":"druntime","parentType":"","signature":"NPWNDCLASSEXA = WNDCLASSEXA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#NPWNDCLASSEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WNDCLASSEXW","package":"druntime","parentType":"","signature":"WNDCLASSEXW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WNDCLASSEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPWNDCLASSEXW","package":"druntime","parentType":"","signature":"LPWNDCLASSEXW = WNDCLASSEXW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPWNDCLASSEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUITEMINFOA","package":"druntime","parentType":"","signature":"MENUITEMINFOA","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUITEMINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMENUITEMINFOA","package":"druntime","parentType":"","signature":"LPMENUITEMINFOA = MENUITEMINFOA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMENUITEMINFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCMENUITEMINFOA","package":"druntime","parentType":"","signature":"LPCMENUITEMINFOA = const(MENUITEMINFOA) *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCMENUITEMINFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUITEMINFOW","package":"druntime","parentType":"","signature":"MENUITEMINFOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUITEMINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMENUITEMINFOW","package":"druntime","parentType":"","signature":"LPMENUITEMINFOW = MENUITEMINFOW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMENUITEMINFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCMENUITEMINFOW","package":"druntime","parentType":"","signature":"LPCMENUITEMINFOW = const(MENUITEMINFOW) *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCMENUITEMINFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SCROLLINFO","package":"druntime","parentType":"","signature":"SCROLLINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#SCROLLINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSCROLLINFO","package":"druntime","parentType":"","signature":"LPSCROLLINFO = SCROLLINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSCROLLINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCSCROLLINFO","package":"druntime","parentType":"","signature":"LPCSCROLLINFO = const(SCROLLINFO) *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCSCROLLINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WINDOWPLACEMENT","package":"druntime","parentType":"","signature":"WINDOWPLACEMENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINDOWPLACEMENT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPWINDOWPLACEMENT","package":"druntime","parentType":"","signature":"LPWINDOWPLACEMENT = WINDOWPLACEMENT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPWINDOWPLACEMENT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUITEMTEMPLATEHEADER","package":"druntime","parentType":"","signature":"MENUITEMTEMPLATEHEADER","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUITEMTEMPLATEHEADER"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUITEMTEMPLATE","package":"druntime","parentType":"","signature":"MENUITEMTEMPLATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUITEMTEMPLATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MENUTEMPLATE","package":"druntime","parentType":"","signature":"MENUTEMPLATE = void","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUTEMPLATE"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMENUTEMPLATEA","package":"druntime","parentType":"","signature":"LPMENUTEMPLATEA = MENUTEMPLATE *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMENUTEMPLATEA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HELPINFO","package":"druntime","parentType":"","signature":"HELPINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPHELPINFO","package":"druntime","parentType":"","signature":"LPHELPINFO = HELPINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPHELPINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MSGBOXPARAMSA","package":"druntime","parentType":"","signature":"MSGBOXPARAMSA","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGBOXPARAMSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMSGBOXPARAMSA","package":"druntime","parentType":"","signature":"PMSGBOXPARAMSA = MSGBOXPARAMSA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMSGBOXPARAMSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MSGBOXPARAMSW","package":"druntime","parentType":"","signature":"MSGBOXPARAMSW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGBOXPARAMSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMSGBOXPARAMSW","package":"druntime","parentType":"","signature":"PMSGBOXPARAMSW = MSGBOXPARAMSW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMSGBOXPARAMSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"USEROBJECTFLAGS","package":"druntime","parentType":"","signature":"USEROBJECTFLAGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#USEROBJECTFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"FILTERKEYS","package":"druntime","parentType":"","signature":"FILTERKEYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#FILTERKEYS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HIGHCONTRASTA","package":"druntime","parentType":"","signature":"HIGHCONTRASTA","url":"/ddoc/druntime/core/sys/windows/winuser.html#HIGHCONTRASTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPHIGHCONTRASTA","package":"druntime","parentType":"","signature":"LPHIGHCONTRASTA = HIGHCONTRASTA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPHIGHCONTRASTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HIGHCONTRASTW","package":"druntime","parentType":"","signature":"HIGHCONTRASTW","url":"/ddoc/druntime/core/sys/windows/winuser.html#HIGHCONTRASTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPHIGHCONTRASTW","package":"druntime","parentType":"","signature":"LPHIGHCONTRASTW = HIGHCONTRASTW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPHIGHCONTRASTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ICONMETRICSA","package":"druntime","parentType":"","signature":"ICONMETRICSA","url":"/ddoc/druntime/core/sys/windows/winuser.html#ICONMETRICSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPICONMETRICSA","package":"druntime","parentType":"","signature":"LPICONMETRICSA = ICONMETRICSA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPICONMETRICSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ICONMETRICSW","package":"druntime","parentType":"","signature":"ICONMETRICSW","url":"/ddoc/druntime/core/sys/windows/winuser.html#ICONMETRICSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPICONMETRICSW","package":"druntime","parentType":"","signature":"LPICONMETRICSW = ICONMETRICSW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPICONMETRICSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MINIMIZEDMETRICS","package":"druntime","parentType":"","signature":"MINIMIZEDMETRICS","url":"/ddoc/druntime/core/sys/windows/winuser.html#MINIMIZEDMETRICS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMINIMIZEDMETRICS","package":"druntime","parentType":"","signature":"LPMINIMIZEDMETRICS = MINIMIZEDMETRICS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMINIMIZEDMETRICS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MOUSEKEYS","package":"druntime","parentType":"","signature":"MOUSEKEYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOUSEKEYS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMOUSEKEYS","package":"druntime","parentType":"","signature":"LPMOUSEKEYS = MOUSEKEYS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMOUSEKEYS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"NONCLIENTMETRICSA","package":"druntime","parentType":"","signature":"NONCLIENTMETRICSA","url":"/ddoc/druntime/core/sys/windows/winuser.html#NONCLIENTMETRICSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPNONCLIENTMETRICSA","package":"druntime","parentType":"","signature":"LPNONCLIENTMETRICSA = NONCLIENTMETRICSA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPNONCLIENTMETRICSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"NONCLIENTMETRICSW","package":"druntime","parentType":"","signature":"NONCLIENTMETRICSW","url":"/ddoc/druntime/core/sys/windows/winuser.html#NONCLIENTMETRICSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPNONCLIENTMETRICSW","package":"druntime","parentType":"","signature":"LPNONCLIENTMETRICSW = NONCLIENTMETRICSW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPNONCLIENTMETRICSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SERIALKEYSA","package":"druntime","parentType":"","signature":"SERIALKEYSA","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERIALKEYSA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSERIALKEYSA","package":"druntime","parentType":"","signature":"LPSERIALKEYSA = SERIALKEYSA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSERIALKEYSA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SERIALKEYSW","package":"druntime","parentType":"","signature":"SERIALKEYSW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERIALKEYSW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSERIALKEYSW","package":"druntime","parentType":"","signature":"LPSERIALKEYSW = SERIALKEYSW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSERIALKEYSW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SOUNDSENTRYA","package":"druntime","parentType":"","signature":"SOUNDSENTRYA","url":"/ddoc/druntime/core/sys/windows/winuser.html#SOUNDSENTRYA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSOUNDSENTRYA","package":"druntime","parentType":"","signature":"LPSOUNDSENTRYA = SOUNDSENTRYA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSOUNDSENTRYA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SOUNDSENTRYW","package":"druntime","parentType":"","signature":"SOUNDSENTRYW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SOUNDSENTRYW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSOUNDSENTRYW","package":"druntime","parentType":"","signature":"LPSOUNDSENTRYW = SOUNDSENTRYW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSOUNDSENTRYW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"STICKYKEYS","package":"druntime","parentType":"","signature":"STICKYKEYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#STICKYKEYS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSTICKYKEYS","package":"druntime","parentType":"","signature":"LPSTICKYKEYS = STICKYKEYS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSTICKYKEYS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"TOGGLEKEYS","package":"druntime","parentType":"","signature":"TOGGLEKEYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#TOGGLEKEYS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MOUSEHOOKSTRUCT","package":"druntime","parentType":"","signature":"MOUSEHOOKSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOUSEHOOKSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMOUSEHOOKSTRUCT","package":"druntime","parentType":"","signature":"LPMOUSEHOOKSTRUCT = MOUSEHOOKSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMOUSEHOOKSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"TRACKMOUSEEVENT","package":"druntime","parentType":"","signature":"TRACKMOUSEEVENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#TRACKMOUSEEVENT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPTRACKMOUSEEVENT","package":"druntime","parentType":"","signature":"LPTRACKMOUSEEVENT = TRACKMOUSEEVENT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPTRACKMOUSEEVENT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"TPMPARAMS","package":"druntime","parentType":"","signature":"TPMPARAMS","url":"/ddoc/druntime/core/sys/windows/winuser.html#TPMPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPTPMPARAMS","package":"druntime","parentType":"","signature":"LPTPMPARAMS = TPMPARAMS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPTPMPARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"EVENTMSG","package":"druntime","parentType":"","signature":"EVENTMSG","url":"/ddoc/druntime/core/sys/windows/winuser.html#EVENTMSG"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PEVENTMSGMSG","package":"druntime","parentType":"","signature":"PEVENTMSGMSG = EVENTMSG *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PEVENTMSGMSG"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WINDOWPOS","package":"druntime","parentType":"","signature":"WINDOWPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINDOWPOS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PWINDOWPOS","package":"druntime","parentType":"","signature":"PWINDOWPOS = WINDOWPOS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWINDOWPOS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"NCCALCSIZE_PARAMS","package":"druntime","parentType":"","signature":"NCCALCSIZE_PARAMS","url":"/ddoc/druntime/core/sys/windows/winuser.html#NCCALCSIZE_PARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPNCCALCSIZE_PARAMS","package":"druntime","parentType":"","signature":"LPNCCALCSIZE_PARAMS = NCCALCSIZE_PARAMS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPNCCALCSIZE_PARAMS"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MDICREATESTRUCTA","package":"druntime","parentType":"","signature":"MDICREATESTRUCTA","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDICREATESTRUCTA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMDICREATESTRUCTA","package":"druntime","parentType":"","signature":"LPMDICREATESTRUCTA = MDICREATESTRUCTA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMDICREATESTRUCTA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MDICREATESTRUCTW","package":"druntime","parentType":"","signature":"MDICREATESTRUCTW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDICREATESTRUCTW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMDICREATESTRUCTW","package":"druntime","parentType":"","signature":"LPMDICREATESTRUCTW = MDICREATESTRUCTW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMDICREATESTRUCTW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MINMAXINFO","package":"druntime","parentType":"","signature":"MINMAXINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#MINMAXINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMINMAXINFO","package":"druntime","parentType":"","signature":"PMINMAXINFO = MINMAXINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMINMAXINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MDINEXTMENU","package":"druntime","parentType":"","signature":"MDINEXTMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDINEXTMENU"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMDINEXTMENU","package":"druntime","parentType":"","signature":"PMDINEXTMENU = MDINEXTMENU *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMDINEXTMENU"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MEASUREITEMSTRUCT","package":"druntime","parentType":"","signature":"MEASUREITEMSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MEASUREITEMSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMEASUREITEMSTRUCT","package":"druntime","parentType":"","signature":"PMEASUREITEMSTRUCT = MEASUREITEMSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMEASUREITEMSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"DROPSTRUCT","package":"druntime","parentType":"","signature":"DROPSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DROPSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PDROPSTRUCT","package":"druntime","parentType":"","signature":"PDROPSTRUCT = DROPSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PDROPSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"HELPPOLY","package":"druntime","parentType":"","signature":"HELPPOLY = DWORD","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPPOLY"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MULTIKEYHELPA","package":"druntime","parentType":"","signature":"MULTIKEYHELPA","url":"/ddoc/druntime/core/sys/windows/winuser.html#MULTIKEYHELPA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMULTIKEYHELPA","package":"druntime","parentType":"","signature":"PMULTIKEYHELPA = MULTIKEYHELPA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMULTIKEYHELPA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MULTIKEYHELPW","package":"druntime","parentType":"","signature":"MULTIKEYHELPW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MULTIKEYHELPW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMULTIKEYHELPW","package":"druntime","parentType":"","signature":"PMULTIKEYHELPW = MULTIKEYHELPW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMULTIKEYHELPW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HELPWININFOA","package":"druntime","parentType":"","signature":"HELPWININFOA","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPWININFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PHELPWININFOA","package":"druntime","parentType":"","signature":"PHELPWININFOA = HELPWININFOA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PHELPWININFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HELPWININFOW","package":"druntime","parentType":"","signature":"HELPWININFOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPWININFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PHELPWININFOW","package":"druntime","parentType":"","signature":"PHELPWININFOW = HELPWININFOW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PHELPWININFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"STYLESTRUCT","package":"druntime","parentType":"","signature":"STYLESTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#STYLESTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSTYLESTRUCT","package":"druntime","parentType":"","signature":"LPSTYLESTRUCT = STYLESTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSTYLESTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"ALTTABINFO","package":"druntime","parentType":"","signature":"ALTTABINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#ALTTABINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PALTTABINFO","package":"druntime","parentType":"","signature":"PALTTABINFO = ALTTABINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PALTTABINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"COMBOBOXINFO","package":"druntime","parentType":"","signature":"COMBOBOXINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#COMBOBOXINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PCOMBOBOXINFO","package":"druntime","parentType":"","signature":"PCOMBOBOXINFO = COMBOBOXINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PCOMBOBOXINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"CURSORINFO","package":"druntime","parentType":"","signature":"CURSORINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#CURSORINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PCURSORINFO","package":"druntime","parentType":"","signature":"PCURSORINFO = CURSORINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PCURSORINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUBARINFO","package":"druntime","parentType":"","signature":"MENUBARINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUBARINFO"},{"doc":"","kind":"method","module":"core.sys.windows.winuser","name":"fBarFocused","package":"druntime","parentType":"MENUBARINFO","signature":"bool fBarFocused()()","url":"/ddoc/druntime/core/sys/windows/winuser/MENUBARINFO.fBarFocused.html"},{"doc":"","kind":"method","module":"core.sys.windows.winuser","name":"fFocused","package":"druntime","parentType":"MENUBARINFO","signature":"bool fFocused()()","url":"/ddoc/druntime/core/sys/windows/winuser/MENUBARINFO.fFocused.html"},{"doc":"","kind":"method","module":"core.sys.windows.winuser","name":"fBarFocused","package":"druntime","parentType":"MENUBARINFO","signature":"bool fBarFocused()(bool  b)","url":"/ddoc/druntime/core/sys/windows/winuser/MENUBARINFO.fBarFocused.html"},{"doc":"","kind":"method","module":"core.sys.windows.winuser","name":"fFocused","package":"druntime","parentType":"MENUBARINFO","signature":"bool fFocused()(bool  b)","url":"/ddoc/druntime/core/sys/windows/winuser/MENUBARINFO.fFocused.html"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMENUBARINFO","package":"druntime","parentType":"","signature":"PMENUBARINFO = MENUBARINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMENUBARINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MENUINFO","package":"druntime","parentType":"","signature":"MENUINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENUINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMENUINFO","package":"druntime","parentType":"","signature":"LPMENUINFO = MENUINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMENUINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCMENUINFO","package":"druntime","parentType":"","signature":"LPCMENUINFO = const(MENUINFO) *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCMENUINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"SCROLLBARINFO","package":"druntime","parentType":"","signature":"SCROLLBARINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#SCROLLBARINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PSCROLLBARINFO","package":"druntime","parentType":"","signature":"PSCROLLBARINFO = SCROLLBARINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSCROLLBARINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"WINDOWINFO","package":"druntime","parentType":"","signature":"WINDOWINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINDOWINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PWINDOWINFO","package":"druntime","parentType":"","signature":"PWINDOWINFO = WINDOWINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWINDOWINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"LASTINPUTINFO","package":"druntime","parentType":"","signature":"LASTINPUTINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#LASTINPUTINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PLASTINPUTINFO","package":"druntime","parentType":"","signature":"PLASTINPUTINFO = LASTINPUTINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PLASTINPUTINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MONITORINFO","package":"druntime","parentType":"","signature":"MONITORINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#MONITORINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMONITORINFO","package":"druntime","parentType":"","signature":"LPMONITORINFO = MONITORINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMONITORINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MONITORINFOEXA","package":"druntime","parentType":"","signature":"MONITORINFOEXA","url":"/ddoc/druntime/core/sys/windows/winuser.html#MONITORINFOEXA"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMONITORINFOEXA","package":"druntime","parentType":"","signature":"LPMONITORINFOEXA = MONITORINFOEXA *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMONITORINFOEXA"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MONITORINFOEXW","package":"druntime","parentType":"","signature":"MONITORINFOEXW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MONITORINFOEXW"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMONITORINFOEXW","package":"druntime","parentType":"","signature":"LPMONITORINFOEXW = MONITORINFOEXW *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMONITORINFOEXW"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"KBDLLHOOKSTRUCT","package":"druntime","parentType":"","signature":"KBDLLHOOKSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#KBDLLHOOKSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPKBDLLHOOKSTRUCT","package":"druntime","parentType":"","signature":"LPKBDLLHOOKSTRUCT = KBDLLHOOKSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPKBDLLHOOKSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MSLLHOOKSTRUCT","package":"druntime","parentType":"","signature":"MSLLHOOKSTRUCT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSLLHOOKSTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMSLLHOOKSTRUCT","package":"druntime","parentType":"","signature":"PMSLLHOOKSTRUCT = MSLLHOOKSTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMSLLHOOKSTRUCT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MOUSEINPUT","package":"druntime","parentType":"","signature":"MOUSEINPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOUSEINPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMOUSEINPUT","package":"druntime","parentType":"","signature":"PMOUSEINPUT = MOUSEINPUT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMOUSEINPUT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"KEYBDINPUT","package":"druntime","parentType":"","signature":"KEYBDINPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#KEYBDINPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PKEYBDINPUT","package":"druntime","parentType":"","signature":"PKEYBDINPUT = KEYBDINPUT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PKEYBDINPUT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"HARDWAREINPUT","package":"druntime","parentType":"","signature":"HARDWAREINPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HARDWAREINPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PHARDWAREINPUT","package":"druntime","parentType":"","signature":"PHARDWAREINPUT = HARDWAREINPUT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PHARDWAREINPUT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"INPUT","package":"druntime","parentType":"","signature":"INPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#INPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PINPUT","package":"druntime","parentType":"","signature":"PINPUT = INPUT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PINPUT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiToOem","package":"druntime","parentType":"","signature":"AnsiToOem = CharToOemA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiToOem"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"OemToAnsi","package":"druntime","parentType":"","signature":"OemToAnsi = OemToCharA","url":"/ddoc/druntime/core/sys/windows/winuser.html#OemToAnsi"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiToOemBuff","package":"druntime","parentType":"","signature":"AnsiToOemBuff = CharToOemBuffA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiToOemBuff"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"OemToAnsiBuff","package":"druntime","parentType":"","signature":"OemToAnsiBuff = OemToCharBuffA","url":"/ddoc/druntime/core/sys/windows/winuser.html#OemToAnsiBuff"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiUpper","package":"druntime","parentType":"","signature":"AnsiUpper = CharUpperA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiUpper"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiUpperBuff","package":"druntime","parentType":"","signature":"AnsiUpperBuff = CharUpperBuffA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiUpperBuff"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiLower","package":"druntime","parentType":"","signature":"AnsiLower = CharLowerA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiLower"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiLowerBuff","package":"druntime","parentType":"","signature":"AnsiLowerBuff = CharLowerBuffA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiLowerBuff"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiNext","package":"druntime","parentType":"","signature":"AnsiNext = CharNextA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiNext"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"AnsiPrev","package":"druntime","parentType":"","signature":"AnsiPrev = CharPrevA","url":"/ddoc/druntime/core/sys/windows/winuser.html#AnsiPrev"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MAKEWPARAM","package":"druntime","parentType":"","signature":"MAKEWPARAM = MAKELONG","url":"/ddoc/druntime/core/sys/windows/winuser.html#MAKEWPARAM"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MAKELPARAM","package":"druntime","parentType":"","signature":"MAKELPARAM = MAKELONG","url":"/ddoc/druntime/core/sys/windows/winuser.html#MAKELPARAM"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"MAKELRESULT","package":"druntime","parentType":"","signature":"MAKELRESULT = MAKELONG","url":"/ddoc/druntime/core/sys/windows/winuser.html#MAKELRESULT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"GetNextWindow","package":"druntime","parentType":"","signature":"GetNextWindow = GetWindow","url":"/ddoc/druntime/core/sys/windows/winuser.html#GetNextWindow"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"va_list_","package":"druntime","parentType":"","signature":"va_list_ = char *","url":"/ddoc/druntime/core/sys/windows/winuser.html#va_list_"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"TITLEBARINFO","package":"druntime","parentType":"","signature":"TITLEBARINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#TITLEBARINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PTITLEBARINFO","package":"druntime","parentType":"","signature":"PTITLEBARINFO = TITLEBARINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PTITLEBARINFO"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"MOUSEMOVEPOINT","package":"druntime","parentType":"","signature":"MOUSEMOVEPOINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOUSEMOVEPOINT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMOUSEMOVEPOINT","package":"druntime","parentType":"","signature":"PMOUSEMOVEPOINT = MOUSEMOVEPOINT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMOUSEMOVEPOINT"},{"doc":"","kind":"struct","module":"core.sys.windows.winuser","name":"GUITHREADINFO","package":"druntime","parentType":"","signature":"GUITHREADINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#GUITHREADINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PGUITHREADINFO","package":"druntime","parentType":"","signature":"PGUITHREADINFO = GUITHREADINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PGUITHREADINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"WINEVENTPROC","package":"druntime","parentType":"","signature":"WINEVENTPROC = void  function(HWINEVENTHOOK,  DWORD,  HWND,  LONG,  LONG,  DWORD,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINEVENTPROC"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPWNDCLASS","package":"druntime","parentType":"","signature":"LPWNDCLASS = WNDCLASS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPWNDCLASS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPWNDCLASSEX","package":"druntime","parentType":"","signature":"LPWNDCLASSEX = WNDCLASSEX *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPWNDCLASSEX"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMENUITEMINFO","package":"druntime","parentType":"","signature":"LPMENUITEMINFO = MENUITEMINFO *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMENUITEMINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMSGBOXPARAMS","package":"druntime","parentType":"","signature":"PMSGBOXPARAMS = MSGBOXPARAMS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMSGBOXPARAMS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPHIGHCONTRAST","package":"druntime","parentType":"","signature":"LPHIGHCONTRAST = HIGHCONTRAST *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPHIGHCONTRAST"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSERIALKEYS","package":"druntime","parentType":"","signature":"LPSERIALKEYS = SERIALKEYS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSERIALKEYS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPSOUNDSENTRY","package":"druntime","parentType":"","signature":"LPSOUNDSENTRY = SOUNDSENTRY *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPSOUNDSENTRY"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCREATESTRUCT","package":"druntime","parentType":"","signature":"LPCREATESTRUCT = CREATESTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCREATESTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPCBT_CREATEWND","package":"druntime","parentType":"","signature":"LPCBT_CREATEWND = CBT_CREATEWND *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPCBT_CREATEWND"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMDICREATESTRUCT","package":"druntime","parentType":"","signature":"LPMDICREATESTRUCT = MDICREATESTRUCT *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMDICREATESTRUCT"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"PMULTIKEYHELP","package":"druntime","parentType":"","signature":"PMULTIKEYHELP = MULTIKEYHELP *","url":"/ddoc/druntime/core/sys/windows/winuser.html#PMULTIKEYHELP"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPMONITORINFOEX","package":"druntime","parentType":"","signature":"LPMONITORINFOEX = MONITORINFOEX *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPMONITORINFOEX"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPICONMETRICS","package":"druntime","parentType":"","signature":"LPICONMETRICS = ICONMETRICS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPICONMETRICS"},{"doc":"","kind":"alias","module":"core.sys.windows.winuser","name":"LPNONCLIENTMETRICS","package":"druntime","parentType":"","signature":"LPNONCLIENTMETRICS = NONCLIENTMETRICS *","url":"/ddoc/druntime/core/sys/windows/winuser.html#LPNONCLIENTMETRICS"},{"doc":"","kind":"template","module":"core.sys.windows.winuser","name":"MAKEINTRESOURCE_T","package":"druntime","parentType":"","signature":"MAKEINTRESOURCE_T(WORD i)","url":"/ddoc/druntime/core/sys/windows/winuser.html#MAKEINTRESOURCE_T"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WC_DIALOG","package":"druntime","parentType":"","signature":"LPTSTR WC_DIALOG","url":"/ddoc/druntime/core/sys/windows/winuser.html#WC_DIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HKL_PREV","package":"druntime","parentType":"","signature":"HKL_PREV","url":"/ddoc/druntime/core/sys/windows/winuser.html#HKL_PREV"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HKL_NEXT","package":"druntime","parentType":"","signature":"HKL_NEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HKL_NEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_ACTIVATE","package":"druntime","parentType":"","signature":"KLF_ACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_ACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_SUBSTITUTE_OK","package":"druntime","parentType":"","signature":"KLF_SUBSTITUTE_OK","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_SUBSTITUTE_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_UNLOADPREVIOUS","package":"druntime","parentType":"","signature":"KLF_UNLOADPREVIOUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_UNLOADPREVIOUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_REORDER","package":"druntime","parentType":"","signature":"KLF_REORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_REORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_REPLACELANG","package":"druntime","parentType":"","signature":"KLF_REPLACELANG","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_REPLACELANG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_NOTELLSHELL","package":"druntime","parentType":"","signature":"KLF_NOTELLSHELL","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_NOTELLSHELL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KLF_SETFORPROCESS","package":"druntime","parentType":"","signature":"KLF_SETFORPROCESS","url":"/ddoc/druntime/core/sys/windows/winuser.html#KLF_SETFORPROCESS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KL_NAMELENGTH","package":"druntime","parentType":"","signature":"KL_NAMELENGTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#KL_NAMELENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_ENABLED","package":"druntime","parentType":"","signature":"MF_ENABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_ENABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_GRAYED","package":"druntime","parentType":"","signature":"MF_GRAYED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_GRAYED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_DISABLED","package":"druntime","parentType":"","signature":"MF_DISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_BITMAP","package":"druntime","parentType":"","signature":"MF_BITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_CHECKED","package":"druntime","parentType":"","signature":"MF_CHECKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_CHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_MENUBARBREAK","package":"druntime","parentType":"","signature":"MF_MENUBARBREAK","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_MENUBARBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_MENUBREAK","package":"druntime","parentType":"","signature":"MF_MENUBREAK","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_MENUBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_OWNERDRAW","package":"druntime","parentType":"","signature":"MF_OWNERDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_OWNERDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_POPUP","package":"druntime","parentType":"","signature":"MF_POPUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_POPUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_SEPARATOR","package":"druntime","parentType":"","signature":"MF_SEPARATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_SEPARATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_STRING","package":"druntime","parentType":"","signature":"MF_STRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_UNCHECKED","package":"druntime","parentType":"","signature":"MF_UNCHECKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_UNCHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_DEFAULT","package":"druntime","parentType":"","signature":"MF_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_SYSMENU","package":"druntime","parentType":"","signature":"MF_SYSMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_SYSMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_HELP","package":"druntime","parentType":"","signature":"MF_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_END","package":"druntime","parentType":"","signature":"MF_END","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_END"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_RIGHTJUSTIFY","package":"druntime","parentType":"","signature":"MF_RIGHTJUSTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_RIGHTJUSTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_MOUSESELECT","package":"druntime","parentType":"","signature":"MF_MOUSESELECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_MOUSESELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_INSERT","package":"druntime","parentType":"","signature":"MF_INSERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_INSERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_CHANGE","package":"druntime","parentType":"","signature":"MF_CHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_APPEND","package":"druntime","parentType":"","signature":"MF_APPEND","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_APPEND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_DELETE","package":"druntime","parentType":"","signature":"MF_DELETE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_DELETE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_REMOVE","package":"druntime","parentType":"","signature":"MF_REMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_REMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_USECHECKBITMAPS","package":"druntime","parentType":"","signature":"MF_USECHECKBITMAPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_USECHECKBITMAPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_UNHILITE","package":"druntime","parentType":"","signature":"MF_UNHILITE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_UNHILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_HILITE","package":"druntime","parentType":"","signature":"MF_HILITE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_HILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_ALLCOMPONENTS","package":"druntime","parentType":"","signature":"BSM_ALLCOMPONENTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_ALLCOMPONENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_VXDS","package":"druntime","parentType":"","signature":"BSM_VXDS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_VXDS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_NETDRIVER","package":"druntime","parentType":"","signature":"BSM_NETDRIVER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_NETDRIVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_INSTALLABLEDRIVERS","package":"druntime","parentType":"","signature":"BSM_INSTALLABLEDRIVERS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_INSTALLABLEDRIVERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_APPLICATIONS","package":"druntime","parentType":"","signature":"BSM_APPLICATIONS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_APPLICATIONS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BSM_ALLDESKTOPS","package":"druntime","parentType":"","signature":"BSM_ALLDESKTOPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BSM_ALLDESKTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BROADCAST_QUERY_DENY","package":"druntime","parentType":"","signature":"BROADCAST_QUERY_DENY","url":"/ddoc/druntime/core/sys/windows/winuser.html#BROADCAST_QUERY_DENY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ENUM_CURRENT_SETTINGS","package":"druntime","parentType":"","signature":"DWORD ENUM_CURRENT_SETTINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#ENUM_CURRENT_SETTINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ENUM_REGISTRY_SETTINGS","package":"druntime","parentType":"","signature":"DWORD ENUM_REGISTRY_SETTINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#ENUM_REGISTRY_SETTINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_UPDATEREGISTRY","package":"druntime","parentType":"","signature":"CDS_UPDATEREGISTRY","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_UPDATEREGISTRY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_TEST","package":"druntime","parentType":"","signature":"CDS_TEST","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_TEST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_FULLSCREEN","package":"druntime","parentType":"","signature":"CDS_FULLSCREEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_FULLSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_GLOBAL","package":"druntime","parentType":"","signature":"CDS_GLOBAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_GLOBAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_SET_PRIMARY","package":"druntime","parentType":"","signature":"CDS_SET_PRIMARY","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_SET_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_NORESET","package":"druntime","parentType":"","signature":"CDS_NORESET","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_NORESET"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_SETRECT","package":"druntime","parentType":"","signature":"CDS_SETRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_SETRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CDS_RESET","package":"druntime","parentType":"","signature":"CDS_RESET","url":"/ddoc/druntime/core/sys/windows/winuser.html#CDS_RESET"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BST_UNCHECKED","package":"druntime","parentType":"","signature":"BST_UNCHECKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BST_UNCHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BST_CHECKED","package":"druntime","parentType":"","signature":"BST_CHECKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BST_CHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BST_INDETERMINATE","package":"druntime","parentType":"","signature":"BST_INDETERMINATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BST_INDETERMINATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BST_PUSHED","package":"druntime","parentType":"","signature":"BST_PUSHED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BST_PUSHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BST_FOCUS","package":"druntime","parentType":"","signature":"BST_FOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BST_FOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_BYCOMMAND","package":"druntime","parentType":"","signature":"MF_BYCOMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_BYCOMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MF_BYPOSITION","package":"druntime","parentType":"","signature":"MF_BYPOSITION","url":"/ddoc/druntime/core/sys/windows/winuser.html#MF_BYPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CWP_ALL","package":"druntime","parentType":"","signature":"CWP_ALL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWP_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CWP_SKIPINVISIBLE","package":"druntime","parentType":"","signature":"CWP_SKIPINVISIBLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWP_SKIPINVISIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CWP_SKIPDISABLED","package":"druntime","parentType":"","signature":"CWP_SKIPDISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWP_SKIPDISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CWP_SKIPTRANSPARENT","package":"druntime","parentType":"","signature":"CWP_SKIPTRANSPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CWP_SKIPTRANSPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IMAGE_BITMAP","package":"druntime","parentType":"","signature":"IMAGE_BITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#IMAGE_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IMAGE_ICON","package":"druntime","parentType":"","signature":"IMAGE_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#IMAGE_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IMAGE_CURSOR","package":"druntime","parentType":"","signature":"IMAGE_CURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#IMAGE_CURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IMAGE_ENHMETAFILE","package":"druntime","parentType":"","signature":"IMAGE_ENHMETAFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#IMAGE_ENHMETAFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DF_ALLOWOTHERACCOUNTHOOK","package":"druntime","parentType":"","signature":"DF_ALLOWOTHERACCOUNTHOOK","url":"/ddoc/druntime/core/sys/windows/winuser.html#DF_ALLOWOTHERACCOUNTHOOK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_READOBJECTS","package":"druntime","parentType":"","signature":"DESKTOP_READOBJECTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_READOBJECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_CREATEWINDOW","package":"druntime","parentType":"","signature":"DESKTOP_CREATEWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_CREATEWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_CREATEMENU","package":"druntime","parentType":"","signature":"DESKTOP_CREATEMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_CREATEMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_HOOKCONTROL","package":"druntime","parentType":"","signature":"DESKTOP_HOOKCONTROL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_HOOKCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_JOURNALRECORD","package":"druntime","parentType":"","signature":"DESKTOP_JOURNALRECORD","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_JOURNALRECORD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_JOURNALPLAYBACK","package":"druntime","parentType":"","signature":"DESKTOP_JOURNALPLAYBACK","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_JOURNALPLAYBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_ENUMERATE","package":"druntime","parentType":"","signature":"DESKTOP_ENUMERATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_ENUMERATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_WRITEOBJECTS","package":"druntime","parentType":"","signature":"DESKTOP_WRITEOBJECTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_WRITEOBJECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DESKTOP_SWITCHDESKTOP","package":"druntime","parentType":"","signature":"DESKTOP_SWITCHDESKTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DESKTOP_SWITCHDESKTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CW_USEDEFAULT","package":"druntime","parentType":"","signature":"int CW_USEDEFAULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CW_USEDEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MDIS_ALLCHILDSTYLES","package":"druntime","parentType":"","signature":"MDIS_ALLCHILDSTYLES","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDIS_ALLCHILDSTYLES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_3STATE","package":"druntime","parentType":"","signature":"BS_3STATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_3STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_AUTO3STATE","package":"druntime","parentType":"","signature":"BS_AUTO3STATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_AUTO3STATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_AUTOCHECKBOX","package":"druntime","parentType":"","signature":"BS_AUTOCHECKBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_AUTOCHECKBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_AUTORADIOBUTTON","package":"druntime","parentType":"","signature":"BS_AUTORADIOBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_AUTORADIOBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_BITMAP","package":"druntime","parentType":"","signature":"BS_BITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_BOTTOM","package":"druntime","parentType":"","signature":"BS_BOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_BOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_CENTER","package":"druntime","parentType":"","signature":"BS_CENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_CHECKBOX","package":"druntime","parentType":"","signature":"BS_CHECKBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_CHECKBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_DEFPUSHBUTTON","package":"druntime","parentType":"","signature":"BS_DEFPUSHBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_DEFPUSHBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_GROUPBOX","package":"druntime","parentType":"","signature":"BS_GROUPBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_GROUPBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_ICON","package":"druntime","parentType":"","signature":"BS_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_LEFT","package":"druntime","parentType":"","signature":"BS_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_LEFTTEXT","package":"druntime","parentType":"","signature":"BS_LEFTTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_LEFTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_MULTILINE","package":"druntime","parentType":"","signature":"BS_MULTILINE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_MULTILINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_NOTIFY","package":"druntime","parentType":"","signature":"BS_NOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_OWNERDRAW","package":"druntime","parentType":"","signature":"BS_OWNERDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_OWNERDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_PUSHBUTTON","package":"druntime","parentType":"","signature":"BS_PUSHBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_PUSHBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_PUSHLIKE","package":"druntime","parentType":"","signature":"BS_PUSHLIKE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_PUSHLIKE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_RADIOBUTTON","package":"druntime","parentType":"","signature":"BS_RADIOBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_RADIOBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_RIGHT","package":"druntime","parentType":"","signature":"BS_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_RIGHTBUTTON","package":"druntime","parentType":"","signature":"BS_RIGHTBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_RIGHTBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_TEXT","package":"druntime","parentType":"","signature":"BS_TEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_TEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_TOP","package":"druntime","parentType":"","signature":"BS_TOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_USERBUTTON","package":"druntime","parentType":"","signature":"BS_USERBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_USERBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_VCENTER","package":"druntime","parentType":"","signature":"BS_VCENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_VCENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BS_FLAT","package":"druntime","parentType":"","signature":"BS_FLAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BS_FLAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_AUTOHSCROLL","package":"druntime","parentType":"","signature":"CBS_AUTOHSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_AUTOHSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_DISABLENOSCROLL","package":"druntime","parentType":"","signature":"CBS_DISABLENOSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_DISABLENOSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_DROPDOWN","package":"druntime","parentType":"","signature":"CBS_DROPDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_DROPDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_DROPDOWNLIST","package":"druntime","parentType":"","signature":"CBS_DROPDOWNLIST","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_DROPDOWNLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_HASSTRINGS","package":"druntime","parentType":"","signature":"CBS_HASSTRINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_HASSTRINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_LOWERCASE","package":"druntime","parentType":"","signature":"CBS_LOWERCASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_LOWERCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_NOINTEGRALHEIGHT","package":"druntime","parentType":"","signature":"CBS_NOINTEGRALHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_NOINTEGRALHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_OEMCONVERT","package":"druntime","parentType":"","signature":"CBS_OEMCONVERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_OEMCONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_OWNERDRAWFIXED","package":"druntime","parentType":"","signature":"CBS_OWNERDRAWFIXED","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_OWNERDRAWFIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_OWNERDRAWVARIABLE","package":"druntime","parentType":"","signature":"CBS_OWNERDRAWVARIABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_OWNERDRAWVARIABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_SIMPLE","package":"druntime","parentType":"","signature":"CBS_SIMPLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_SIMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_SORT","package":"druntime","parentType":"","signature":"CBS_SORT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_SORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBS_UPPERCASE","package":"druntime","parentType":"","signature":"CBS_UPPERCASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBS_UPPERCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_AUTOHSCROLL","package":"druntime","parentType":"","signature":"ES_AUTOHSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_AUTOHSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_AUTOVSCROLL","package":"druntime","parentType":"","signature":"ES_AUTOVSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_AUTOVSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_CENTER","package":"druntime","parentType":"","signature":"ES_CENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_LEFT","package":"druntime","parentType":"","signature":"ES_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_LOWERCASE","package":"druntime","parentType":"","signature":"ES_LOWERCASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_LOWERCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_MULTILINE","package":"druntime","parentType":"","signature":"ES_MULTILINE","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_MULTILINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_NOHIDESEL","package":"druntime","parentType":"","signature":"ES_NOHIDESEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_NOHIDESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_NUMBER","package":"druntime","parentType":"","signature":"ES_NUMBER","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_NUMBER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_OEMCONVERT","package":"druntime","parentType":"","signature":"ES_OEMCONVERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_OEMCONVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_PASSWORD","package":"druntime","parentType":"","signature":"ES_PASSWORD","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_PASSWORD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_READONLY","package":"druntime","parentType":"","signature":"ES_READONLY","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_RIGHT","package":"druntime","parentType":"","signature":"ES_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_UPPERCASE","package":"druntime","parentType":"","signature":"ES_UPPERCASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_UPPERCASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ES_WANTRETURN","package":"druntime","parentType":"","signature":"ES_WANTRETURN","url":"/ddoc/druntime/core/sys/windows/winuser.html#ES_WANTRETURN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_DISABLENOSCROLL","package":"druntime","parentType":"","signature":"LBS_DISABLENOSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_DISABLENOSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_EXTENDEDSEL","package":"druntime","parentType":"","signature":"LBS_EXTENDEDSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_EXTENDEDSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_HASSTRINGS","package":"druntime","parentType":"","signature":"LBS_HASSTRINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_HASSTRINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_MULTICOLUMN","package":"druntime","parentType":"","signature":"LBS_MULTICOLUMN","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_MULTICOLUMN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_MULTIPLESEL","package":"druntime","parentType":"","signature":"LBS_MULTIPLESEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_MULTIPLESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_NODATA","package":"druntime","parentType":"","signature":"LBS_NODATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_NODATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_NOINTEGRALHEIGHT","package":"druntime","parentType":"","signature":"LBS_NOINTEGRALHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_NOINTEGRALHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_NOREDRAW","package":"druntime","parentType":"","signature":"LBS_NOREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_NOREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_NOSEL","package":"druntime","parentType":"","signature":"LBS_NOSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_NOSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_NOTIFY","package":"druntime","parentType":"","signature":"LBS_NOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_OWNERDRAWFIXED","package":"druntime","parentType":"","signature":"LBS_OWNERDRAWFIXED","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_OWNERDRAWFIXED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_OWNERDRAWVARIABLE","package":"druntime","parentType":"","signature":"LBS_OWNERDRAWVARIABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_OWNERDRAWVARIABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_SORT","package":"druntime","parentType":"","signature":"LBS_SORT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_SORT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_STANDARD","package":"druntime","parentType":"","signature":"LBS_STANDARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_STANDARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_USETABSTOPS","package":"druntime","parentType":"","signature":"LBS_USETABSTOPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_USETABSTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBS_WANTKEYBOARDINPUT","package":"druntime","parentType":"","signature":"LBS_WANTKEYBOARDINPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBS_WANTKEYBOARDINPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_BOTTOMALIGN","package":"druntime","parentType":"","signature":"SBS_BOTTOMALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_BOTTOMALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_HORZ","package":"druntime","parentType":"","signature":"SBS_HORZ","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_HORZ"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_LEFTALIGN","package":"druntime","parentType":"","signature":"SBS_LEFTALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_LEFTALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_RIGHTALIGN","package":"druntime","parentType":"","signature":"SBS_RIGHTALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_RIGHTALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_SIZEBOX","package":"druntime","parentType":"","signature":"SBS_SIZEBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_SIZEBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_SIZEBOXBOTTOMRIGHTALIGN","package":"druntime","parentType":"","signature":"SBS_SIZEBOXBOTTOMRIGHTALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_SIZEBOXBOTTOMRIGHTALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_SIZEBOXTOPLEFTALIGN","package":"druntime","parentType":"","signature":"SBS_SIZEBOXTOPLEFTALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_SIZEBOXTOPLEFTALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_SIZEGRIP","package":"druntime","parentType":"","signature":"SBS_SIZEGRIP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_SIZEGRIP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_TOPALIGN","package":"druntime","parentType":"","signature":"SBS_TOPALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_TOPALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBS_VERT","package":"druntime","parentType":"","signature":"SBS_VERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBS_VERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_BITMAP","package":"druntime","parentType":"","signature":"SS_BITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_BLACKFRAME","package":"druntime","parentType":"","signature":"SS_BLACKFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_BLACKFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_BLACKRECT","package":"druntime","parentType":"","signature":"SS_BLACKRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_BLACKRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_CENTER","package":"druntime","parentType":"","signature":"SS_CENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_CENTERIMAGE","package":"druntime","parentType":"","signature":"SS_CENTERIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_CENTERIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ENHMETAFILE","package":"druntime","parentType":"","signature":"SS_ENHMETAFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ENHMETAFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ETCHEDFRAME","package":"druntime","parentType":"","signature":"SS_ETCHEDFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ETCHEDFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ETCHEDHORZ","package":"druntime","parentType":"","signature":"SS_ETCHEDHORZ","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ETCHEDHORZ"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ETCHEDVERT","package":"druntime","parentType":"","signature":"SS_ETCHEDVERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ETCHEDVERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_GRAYFRAME","package":"druntime","parentType":"","signature":"SS_GRAYFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_GRAYFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_GRAYRECT","package":"druntime","parentType":"","signature":"SS_GRAYRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_GRAYRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ICON","package":"druntime","parentType":"","signature":"SS_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_LEFT","package":"druntime","parentType":"","signature":"SS_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_LEFTNOWORDWRAP","package":"druntime","parentType":"","signature":"SS_LEFTNOWORDWRAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_LEFTNOWORDWRAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_NOPREFIX","package":"druntime","parentType":"","signature":"SS_NOPREFIX","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_NOPREFIX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_NOTIFY","package":"druntime","parentType":"","signature":"SS_NOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_OWNERDRAW","package":"druntime","parentType":"","signature":"SS_OWNERDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_OWNERDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_REALSIZEIMAGE","package":"druntime","parentType":"","signature":"SS_REALSIZEIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_REALSIZEIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_RIGHT","package":"druntime","parentType":"","signature":"SS_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_RIGHTJUST","package":"druntime","parentType":"","signature":"SS_RIGHTJUST","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_RIGHTJUST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_SIMPLE","package":"druntime","parentType":"","signature":"SS_SIMPLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_SIMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_SUNKEN","package":"druntime","parentType":"","signature":"SS_SUNKEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_SUNKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_WHITEFRAME","package":"druntime","parentType":"","signature":"SS_WHITEFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_WHITEFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_WHITERECT","package":"druntime","parentType":"","signature":"SS_WHITERECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_WHITERECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_USERITEM","package":"druntime","parentType":"","signature":"SS_USERITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_USERITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_TYPEMASK","package":"druntime","parentType":"","signature":"SS_TYPEMASK","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_TYPEMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ENDELLIPSIS","package":"druntime","parentType":"","signature":"SS_ENDELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ENDELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_PATHELLIPSIS","package":"druntime","parentType":"","signature":"SS_PATHELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_PATHELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_WORDELLIPSIS","package":"druntime","parentType":"","signature":"SS_WORDELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_WORDELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SS_ELLIPSISMASK","package":"druntime","parentType":"","signature":"SS_ELLIPSISMASK","url":"/ddoc/druntime/core/sys/windows/winuser.html#SS_ELLIPSISMASK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_ABSALIGN","package":"druntime","parentType":"","signature":"DS_ABSALIGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_ABSALIGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_3DLOOK","package":"druntime","parentType":"","signature":"DS_3DLOOK","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_3DLOOK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_SYSMODAL","package":"druntime","parentType":"","signature":"DS_SYSMODAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_SYSMODAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_FIXEDSYS","package":"druntime","parentType":"","signature":"DS_FIXEDSYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_FIXEDSYS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_NOFAILCREATE","package":"druntime","parentType":"","signature":"DS_NOFAILCREATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_NOFAILCREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_LOCALEDIT","package":"druntime","parentType":"","signature":"DS_LOCALEDIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_LOCALEDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_SETFONT","package":"druntime","parentType":"","signature":"DS_SETFONT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_SETFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_MODALFRAME","package":"druntime","parentType":"","signature":"DS_MODALFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_MODALFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_NOIDLEMSG","package":"druntime","parentType":"","signature":"DS_NOIDLEMSG","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_NOIDLEMSG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_SETFOREGROUND","package":"druntime","parentType":"","signature":"DS_SETFOREGROUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_SETFOREGROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_CONTROL","package":"druntime","parentType":"","signature":"DS_CONTROL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_CONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_CENTER","package":"druntime","parentType":"","signature":"DS_CENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_CENTERMOUSE","package":"druntime","parentType":"","signature":"DS_CENTERMOUSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_CENTERMOUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_CONTEXTHELP","package":"druntime","parentType":"","signature":"DS_CONTEXTHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_CONTEXTHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DS_SHELLFONT","package":"druntime","parentType":"","signature":"DS_SHELLFONT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DS_SHELLFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_ACCEPTFILES","package":"druntime","parentType":"","signature":"WS_EX_ACCEPTFILES","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_ACCEPTFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_APPWINDOW","package":"druntime","parentType":"","signature":"WS_EX_APPWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_APPWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_CLIENTEDGE","package":"druntime","parentType":"","signature":"WS_EX_CLIENTEDGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_CLIENTEDGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_COMPOSITED","package":"druntime","parentType":"","signature":"WS_EX_COMPOSITED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_COMPOSITED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_CONTEXTHELP","package":"druntime","parentType":"","signature":"WS_EX_CONTEXTHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_CONTEXTHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_CONTROLPARENT","package":"druntime","parentType":"","signature":"WS_EX_CONTROLPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_CONTROLPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_DLGMODALFRAME","package":"druntime","parentType":"","signature":"WS_EX_DLGMODALFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_DLGMODALFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_LAYERED","package":"druntime","parentType":"","signature":"WS_EX_LAYERED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_LAYERED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_LAYOUTRTL","package":"druntime","parentType":"","signature":"WS_EX_LAYOUTRTL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_LAYOUTRTL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_LEFT","package":"druntime","parentType":"","signature":"WS_EX_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_LEFTSCROLLBAR","package":"druntime","parentType":"","signature":"WS_EX_LEFTSCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_LEFTSCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_LTRREADING","package":"druntime","parentType":"","signature":"WS_EX_LTRREADING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_LTRREADING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_MDICHILD","package":"druntime","parentType":"","signature":"WS_EX_MDICHILD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_MDICHILD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_NOACTIVATE","package":"druntime","parentType":"","signature":"WS_EX_NOACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_NOACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_NOINHERITLAYOUT","package":"druntime","parentType":"","signature":"WS_EX_NOINHERITLAYOUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_NOINHERITLAYOUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_NOPARENTNOTIFY","package":"druntime","parentType":"","signature":"WS_EX_NOPARENTNOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_NOPARENTNOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_NOREDIRECTIONBITMAP","package":"druntime","parentType":"","signature":"WS_EX_NOREDIRECTIONBITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_NOREDIRECTIONBITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_OVERLAPPEDWINDOW","package":"druntime","parentType":"","signature":"WS_EX_OVERLAPPEDWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_OVERLAPPEDWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_PALETTEWINDOW","package":"druntime","parentType":"","signature":"WS_EX_PALETTEWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_PALETTEWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_RIGHT","package":"druntime","parentType":"","signature":"WS_EX_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_RIGHTSCROLLBAR","package":"druntime","parentType":"","signature":"WS_EX_RIGHTSCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_RIGHTSCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_RTLREADING","package":"druntime","parentType":"","signature":"WS_EX_RTLREADING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_RTLREADING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_STATICEDGE","package":"druntime","parentType":"","signature":"WS_EX_STATICEDGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_STATICEDGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_TOOLWINDOW","package":"druntime","parentType":"","signature":"WS_EX_TOOLWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_TOOLWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_TOPMOST","package":"druntime","parentType":"","signature":"WS_EX_TOPMOST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_TOPMOST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_TRANSPARENT","package":"druntime","parentType":"","signature":"WS_EX_TRANSPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_TRANSPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_EX_WINDOWEDGE","package":"druntime","parentType":"","signature":"WS_EX_WINDOWEDGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_EX_WINDOWEDGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_ENUMDESKTOPS","package":"druntime","parentType":"","signature":"WINSTA_ENUMDESKTOPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_ENUMDESKTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_READATTRIBUTES","package":"druntime","parentType":"","signature":"WINSTA_READATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_READATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_ACCESSCLIPBOARD","package":"druntime","parentType":"","signature":"WINSTA_ACCESSCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_ACCESSCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_CREATEDESKTOP","package":"druntime","parentType":"","signature":"WINSTA_CREATEDESKTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_CREATEDESKTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_WRITEATTRIBUTES","package":"druntime","parentType":"","signature":"WINSTA_WRITEATTRIBUTES","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_WRITEATTRIBUTES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_ACCESSGLOBALATOMS","package":"druntime","parentType":"","signature":"WINSTA_ACCESSGLOBALATOMS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_ACCESSGLOBALATOMS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_EXITWINDOWS","package":"druntime","parentType":"","signature":"WINSTA_EXITWINDOWS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_EXITWINDOWS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_ENUMERATE","package":"druntime","parentType":"","signature":"WINSTA_ENUMERATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_ENUMERATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WINSTA_READSCREEN","package":"druntime","parentType":"","signature":"WINSTA_READSCREEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WINSTA_READSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_READWRITE","package":"druntime","parentType":"","signature":"DDL_READWRITE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_READWRITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_READONLY","package":"druntime","parentType":"","signature":"DDL_READONLY","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_READONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_HIDDEN","package":"druntime","parentType":"","signature":"DDL_HIDDEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_HIDDEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_SYSTEM","package":"druntime","parentType":"","signature":"DDL_SYSTEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_SYSTEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_DIRECTORY","package":"druntime","parentType":"","signature":"DDL_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_DIRECTORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_ARCHIVE","package":"druntime","parentType":"","signature":"DDL_ARCHIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_ARCHIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_POSTMSGS","package":"druntime","parentType":"","signature":"DDL_POSTMSGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_POSTMSGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_DRIVES","package":"druntime","parentType":"","signature":"DDL_DRIVES","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_DRIVES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DDL_EXCLUSIVE","package":"druntime","parentType":"","signature":"DDL_EXCLUSIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DDL_EXCLUSIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_RAISEDOUTER","package":"druntime","parentType":"","signature":"BDR_RAISEDOUTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_RAISEDOUTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_SUNKENOUTER","package":"druntime","parentType":"","signature":"BDR_SUNKENOUTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_SUNKENOUTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_RAISEDINNER","package":"druntime","parentType":"","signature":"BDR_RAISEDINNER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_RAISEDINNER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_SUNKENINNER","package":"druntime","parentType":"","signature":"BDR_SUNKENINNER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_SUNKENINNER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_OUTER","package":"druntime","parentType":"","signature":"BDR_OUTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_OUTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_INNER","package":"druntime","parentType":"","signature":"BDR_INNER","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_INNER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_RAISED","package":"druntime","parentType":"","signature":"BDR_RAISED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_RAISED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BDR_SUNKEN","package":"druntime","parentType":"","signature":"BDR_SUNKEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#BDR_SUNKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EDGE_RAISED","package":"druntime","parentType":"","signature":"EDGE_RAISED","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDGE_RAISED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EDGE_SUNKEN","package":"druntime","parentType":"","signature":"EDGE_SUNKEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDGE_SUNKEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EDGE_ETCHED","package":"druntime","parentType":"","signature":"EDGE_ETCHED","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDGE_ETCHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EDGE_BUMP","package":"druntime","parentType":"","signature":"EDGE_BUMP","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDGE_BUMP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_LEFT","package":"druntime","parentType":"","signature":"BF_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_TOP","package":"druntime","parentType":"","signature":"BF_TOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_RIGHT","package":"druntime","parentType":"","signature":"BF_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_BOTTOM","package":"druntime","parentType":"","signature":"BF_BOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_BOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_TOPLEFT","package":"druntime","parentType":"","signature":"BF_TOPLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_TOPLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_TOPRIGHT","package":"druntime","parentType":"","signature":"BF_TOPRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_TOPRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_BOTTOMLEFT","package":"druntime","parentType":"","signature":"BF_BOTTOMLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_BOTTOMLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_BOTTOMRIGHT","package":"druntime","parentType":"","signature":"BF_BOTTOMRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_BOTTOMRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_RECT","package":"druntime","parentType":"","signature":"BF_RECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_RECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_DIAGONAL","package":"druntime","parentType":"","signature":"BF_DIAGONAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_DIAGONAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_DIAGONAL_ENDTOPRIGHT","package":"druntime","parentType":"","signature":"BF_DIAGONAL_ENDTOPRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_DIAGONAL_ENDTOPRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_DIAGONAL_ENDTOPLEFT","package":"druntime","parentType":"","signature":"BF_DIAGONAL_ENDTOPLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_DIAGONAL_ENDTOPLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_DIAGONAL_ENDBOTTOMLEFT","package":"druntime","parentType":"","signature":"BF_DIAGONAL_ENDBOTTOMLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_DIAGONAL_ENDBOTTOMLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_DIAGONAL_ENDBOTTOMRIGHT","package":"druntime","parentType":"","signature":"BF_DIAGONAL_ENDBOTTOMRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_DIAGONAL_ENDBOTTOMRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_MIDDLE","package":"druntime","parentType":"","signature":"BF_MIDDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_MIDDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_SOFT","package":"druntime","parentType":"","signature":"BF_SOFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_SOFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_ADJUST","package":"druntime","parentType":"","signature":"BF_ADJUST","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_ADJUST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_FLAT","package":"druntime","parentType":"","signature":"BF_FLAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_FLAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BF_MONO","package":"druntime","parentType":"","signature":"BF_MONO","url":"/ddoc/druntime/core/sys/windows/winuser.html#BF_MONO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DSS_NORMAL","package":"druntime","parentType":"","signature":"DSS_NORMAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DSS_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DSS_UNION","package":"druntime","parentType":"","signature":"DSS_UNION","url":"/ddoc/druntime/core/sys/windows/winuser.html#DSS_UNION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DSS_DISABLED","package":"druntime","parentType":"","signature":"DSS_DISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#DSS_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DSS_MONO","package":"druntime","parentType":"","signature":"DSS_MONO","url":"/ddoc/druntime/core/sys/windows/winuser.html#DSS_MONO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DSS_RIGHT","package":"druntime","parentType":"","signature":"DSS_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DSS_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_BOTTOM","package":"druntime","parentType":"","signature":"DT_BOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_BOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_CALCRECT","package":"druntime","parentType":"","signature":"DT_CALCRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_CALCRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_CENTER","package":"druntime","parentType":"","signature":"DT_CENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_CENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_EDITCONTROL","package":"druntime","parentType":"","signature":"DT_EDITCONTROL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_EDITCONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_END_ELLIPSIS","package":"druntime","parentType":"","signature":"DT_END_ELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_END_ELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_PATH_ELLIPSIS","package":"druntime","parentType":"","signature":"DT_PATH_ELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_PATH_ELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_WORD_ELLIPSIS","package":"druntime","parentType":"","signature":"DT_WORD_ELLIPSIS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_WORD_ELLIPSIS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_EXPANDTABS","package":"druntime","parentType":"","signature":"DT_EXPANDTABS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_EXPANDTABS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_EXTERNALLEADING","package":"druntime","parentType":"","signature":"DT_EXTERNALLEADING","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_EXTERNALLEADING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_LEFT","package":"druntime","parentType":"","signature":"DT_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_MODIFYSTRING","package":"druntime","parentType":"","signature":"DT_MODIFYSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_MODIFYSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_NOCLIP","package":"druntime","parentType":"","signature":"DT_NOCLIP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_NOCLIP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_NOPREFIX","package":"druntime","parentType":"","signature":"DT_NOPREFIX","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_NOPREFIX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_RIGHT","package":"druntime","parentType":"","signature":"DT_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_RTLREADING","package":"druntime","parentType":"","signature":"DT_RTLREADING","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_RTLREADING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_SINGLELINE","package":"druntime","parentType":"","signature":"DT_SINGLELINE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_SINGLELINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_TABSTOP","package":"druntime","parentType":"","signature":"DT_TABSTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_TABSTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_TOP","package":"druntime","parentType":"","signature":"DT_TOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_VCENTER","package":"druntime","parentType":"","signature":"DT_VCENTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_VCENTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_WORDBREAK","package":"druntime","parentType":"","signature":"DT_WORDBREAK","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_WORDBREAK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DT_INTERNAL","package":"druntime","parentType":"","signature":"DT_INTERNAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DT_INTERNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WB_ISDELIMITER","package":"druntime","parentType":"","signature":"WB_ISDELIMITER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WB_ISDELIMITER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WB_LEFT","package":"druntime","parentType":"","signature":"WB_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WB_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WB_RIGHT","package":"druntime","parentType":"","signature":"WB_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WB_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_HORZ","package":"druntime","parentType":"","signature":"SB_HORZ","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_HORZ"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_VERT","package":"druntime","parentType":"","signature":"SB_VERT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_VERT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_CTL","package":"druntime","parentType":"","signature":"SB_CTL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_CTL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_BOTH","package":"druntime","parentType":"","signature":"SB_BOTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_BOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_BOTH","package":"druntime","parentType":"","signature":"ESB_DISABLE_BOTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_BOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_DOWN","package":"druntime","parentType":"","signature":"ESB_DISABLE_DOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_DOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_LEFT","package":"druntime","parentType":"","signature":"ESB_DISABLE_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_LTUP","package":"druntime","parentType":"","signature":"ESB_DISABLE_LTUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_LTUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_RIGHT","package":"druntime","parentType":"","signature":"ESB_DISABLE_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_RTDN","package":"druntime","parentType":"","signature":"ESB_DISABLE_RTDN","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_RTDN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_DISABLE_UP","package":"druntime","parentType":"","signature":"ESB_DISABLE_UP","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_DISABLE_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ESB_ENABLE_BOTH","package":"druntime","parentType":"","signature":"ESB_ENABLE_BOTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#ESB_ENABLE_BOTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_LINEUP","package":"druntime","parentType":"","signature":"SB_LINEUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_LINEUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_LINEDOWN","package":"druntime","parentType":"","signature":"SB_LINEDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_LINEDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_LINELEFT","package":"druntime","parentType":"","signature":"SB_LINELEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_LINELEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_LINERIGHT","package":"druntime","parentType":"","signature":"SB_LINERIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_LINERIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_PAGEUP","package":"druntime","parentType":"","signature":"SB_PAGEUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_PAGEUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_PAGEDOWN","package":"druntime","parentType":"","signature":"SB_PAGEDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_PAGEDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_PAGELEFT","package":"druntime","parentType":"","signature":"SB_PAGELEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_PAGELEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_PAGERIGHT","package":"druntime","parentType":"","signature":"SB_PAGERIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_PAGERIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_THUMBPOSITION","package":"druntime","parentType":"","signature":"SB_THUMBPOSITION","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_THUMBPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_THUMBTRACK","package":"druntime","parentType":"","signature":"SB_THUMBTRACK","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_THUMBTRACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_ENDSCROLL","package":"druntime","parentType":"","signature":"SB_ENDSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_ENDSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_LEFT","package":"druntime","parentType":"","signature":"SB_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_RIGHT","package":"druntime","parentType":"","signature":"SB_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_BOTTOM","package":"druntime","parentType":"","signature":"SB_BOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_BOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SB_TOP","package":"druntime","parentType":"","signature":"SB_TOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SB_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_CURSOR","package":"druntime","parentType":"","signature":"RT_CURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_CURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_BITMAP","package":"druntime","parentType":"","signature":"RT_BITMAP","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_BITMAP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_ICON","package":"druntime","parentType":"","signature":"RT_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_MENU","package":"druntime","parentType":"","signature":"RT_MENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_MENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_DIALOG","package":"druntime","parentType":"","signature":"RT_DIALOG","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_DIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_STRING","package":"druntime","parentType":"","signature":"RT_STRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_STRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_FONTDIR","package":"druntime","parentType":"","signature":"RT_FONTDIR","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_FONTDIR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_FONT","package":"druntime","parentType":"","signature":"RT_FONT","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_FONT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_ACCELERATOR","package":"druntime","parentType":"","signature":"RT_ACCELERATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_ACCELERATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_RCDATA","package":"druntime","parentType":"","signature":"RT_RCDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_RCDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_MESSAGETABLE","package":"druntime","parentType":"","signature":"RT_MESSAGETABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_MESSAGETABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_GROUP_CURSOR","package":"druntime","parentType":"","signature":"RT_GROUP_CURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_GROUP_CURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_GROUP_ICON","package":"druntime","parentType":"","signature":"RT_GROUP_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_GROUP_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_VERSION","package":"druntime","parentType":"","signature":"RT_VERSION","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_VERSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_DLGINCLUDE","package":"druntime","parentType":"","signature":"RT_DLGINCLUDE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_DLGINCLUDE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_PLUGPLAY","package":"druntime","parentType":"","signature":"RT_PLUGPLAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_PLUGPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_VXD","package":"druntime","parentType":"","signature":"RT_VXD","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_VXD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_ANICURSOR","package":"druntime","parentType":"","signature":"RT_ANICURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_ANICURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_ANIICON","package":"druntime","parentType":"","signature":"RT_ANIICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_ANIICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_HTML","package":"druntime","parentType":"","signature":"RT_HTML","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_HTML"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RT_MANIFEST","package":"druntime","parentType":"","signature":"RT_MANIFEST","url":"/ddoc/druntime/core/sys/windows/winuser.html#RT_MANIFEST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CREATEPROCESS_MANIFEST_RESOURCE_ID","package":"druntime","parentType":"","signature":"CREATEPROCESS_MANIFEST_RESOURCE_ID","url":"/ddoc/druntime/core/sys/windows/winuser.html#CREATEPROCESS_MANIFEST_RESOURCE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","package":"druntime","parentType":"","signature":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","url":"/ddoc/druntime/core/sys/windows/winuser.html#ISOLATIONAWARE_MANIFEST_RESOURCE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","package":"druntime","parentType":"","signature":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","url":"/ddoc/druntime/core/sys/windows/winuser.html#ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_BYTEALIGNCLIENT","package":"druntime","parentType":"","signature":"CS_BYTEALIGNCLIENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_BYTEALIGNCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_BYTEALIGNWINDOW","package":"druntime","parentType":"","signature":"CS_BYTEALIGNWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_BYTEALIGNWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_KEYCVTWINDOW","package":"druntime","parentType":"","signature":"CS_KEYCVTWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_KEYCVTWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_NOKEYCVT","package":"druntime","parentType":"","signature":"CS_NOKEYCVT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_NOKEYCVT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_CLASSDC","package":"druntime","parentType":"","signature":"CS_CLASSDC","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_CLASSDC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_DBLCLKS","package":"druntime","parentType":"","signature":"CS_DBLCLKS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_DBLCLKS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_GLOBALCLASS","package":"druntime","parentType":"","signature":"CS_GLOBALCLASS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_GLOBALCLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_HREDRAW","package":"druntime","parentType":"","signature":"CS_HREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_HREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_NOCLOSE","package":"druntime","parentType":"","signature":"CS_NOCLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_NOCLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_OWNDC","package":"druntime","parentType":"","signature":"CS_OWNDC","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_OWNDC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_PARENTDC","package":"druntime","parentType":"","signature":"CS_PARENTDC","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_PARENTDC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_SAVEBITS","package":"druntime","parentType":"","signature":"CS_SAVEBITS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_SAVEBITS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_VREDRAW","package":"druntime","parentType":"","signature":"CS_VREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_VREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CS_IME","package":"druntime","parentType":"","signature":"CS_IME","url":"/ddoc/druntime/core/sys/windows/winuser.html#CS_IME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCW_ATOM","package":"druntime","parentType":"","signature":"GCW_ATOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCW_ATOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_CBCLSEXTRA","package":"druntime","parentType":"","signature":"GCL_CBCLSEXTRA","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_CBCLSEXTRA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_CBWNDEXTRA","package":"druntime","parentType":"","signature":"GCL_CBWNDEXTRA","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_CBWNDEXTRA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_HBRBACKGROUND","package":"druntime","parentType":"","signature":"GCL_HBRBACKGROUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_HBRBACKGROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_HCURSOR","package":"druntime","parentType":"","signature":"GCL_HCURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_HCURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_HICON","package":"druntime","parentType":"","signature":"GCL_HICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_HICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_HICONSM","package":"druntime","parentType":"","signature":"GCL_HICONSM","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_HICONSM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_HMODULE","package":"druntime","parentType":"","signature":"GCL_HMODULE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_HMODULE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_MENUNAME","package":"druntime","parentType":"","signature":"GCL_MENUNAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_MENUNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_STYLE","package":"druntime","parentType":"","signature":"GCL_STYLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_STYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GCL_WNDPROC","package":"druntime","parentType":"","signature":"GCL_WNDPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#GCL_WNDPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_EXSTYLE","package":"druntime","parentType":"","signature":"GWL_EXSTYLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_EXSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_STYLE","package":"druntime","parentType":"","signature":"GWL_STYLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_STYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_WNDPROC","package":"druntime","parentType":"","signature":"GWL_WNDPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_WNDPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWLP_WNDPROC","package":"druntime","parentType":"","signature":"GWLP_WNDPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWLP_WNDPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_HINSTANCE","package":"druntime","parentType":"","signature":"GWL_HINSTANCE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_HINSTANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWLP_HINSTANCE","package":"druntime","parentType":"","signature":"GWLP_HINSTANCE","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWLP_HINSTANCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_HWNDPARENT","package":"druntime","parentType":"","signature":"GWL_HWNDPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_HWNDPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWLP_HWNDPARENT","package":"druntime","parentType":"","signature":"GWLP_HWNDPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWLP_HWNDPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_ID","package":"druntime","parentType":"","signature":"GWL_ID","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWLP_ID","package":"druntime","parentType":"","signature":"GWLP_ID","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWLP_ID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWL_USERDATA","package":"druntime","parentType":"","signature":"GWL_USERDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWL_USERDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GWLP_USERDATA","package":"druntime","parentType":"","signature":"GWLP_USERDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#GWLP_USERDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWL_DLGPROC","package":"druntime","parentType":"","signature":"DWL_DLGPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWL_DLGPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWLP_DLGPROC","package":"druntime","parentType":"","signature":"DWLP_DLGPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWLP_DLGPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWL_MSGRESULT","package":"druntime","parentType":"","signature":"DWL_MSGRESULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWL_MSGRESULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWLP_MSGRESULT","package":"druntime","parentType":"","signature":"DWLP_MSGRESULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWLP_MSGRESULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWL_USER","package":"druntime","parentType":"","signature":"DWL_USER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWL_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DWLP_USER","package":"druntime","parentType":"","signature":"DWLP_USER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DWLP_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_KEY","package":"druntime","parentType":"","signature":"QS_KEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_MOUSEMOVE","package":"druntime","parentType":"","signature":"QS_MOUSEMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_MOUSEMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_MOUSEBUTTON","package":"druntime","parentType":"","signature":"QS_MOUSEBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_MOUSEBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_MOUSE","package":"druntime","parentType":"","signature":"QS_MOUSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_MOUSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_POSTMESSAGE","package":"druntime","parentType":"","signature":"QS_POSTMESSAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_POSTMESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_TIMER","package":"druntime","parentType":"","signature":"QS_TIMER","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_PAINT","package":"druntime","parentType":"","signature":"QS_PAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_PAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_SENDMESSAGE","package":"druntime","parentType":"","signature":"QS_SENDMESSAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_SENDMESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_HOTKEY","package":"druntime","parentType":"","signature":"QS_HOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_HOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"QS_ALLPOSTMESSAGE","package":"druntime","parentType":"","signature":"QS_ALLPOSTMESSAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#QS_ALLPOSTMESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MWMO_WAITALL","package":"druntime","parentType":"","signature":"MWMO_WAITALL","url":"/ddoc/druntime/core/sys/windows/winuser.html#MWMO_WAITALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MWMO_ALERTABLE","package":"druntime","parentType":"","signature":"MWMO_ALERTABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MWMO_ALERTABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MWMO_INPUTAVAILABLE","package":"druntime","parentType":"","signature":"MWMO_INPUTAVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MWMO_INPUTAVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DDKSHADOW","package":"druntime","parentType":"","signature":"COLOR_3DDKSHADOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DDKSHADOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DFACE","package":"druntime","parentType":"","signature":"COLOR_3DFACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DHILIGHT","package":"druntime","parentType":"","signature":"COLOR_3DHILIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DHILIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DHIGHLIGHT","package":"druntime","parentType":"","signature":"COLOR_3DHIGHLIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DHIGHLIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DLIGHT","package":"druntime","parentType":"","signature":"COLOR_3DLIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DLIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BTNHILIGHT","package":"druntime","parentType":"","signature":"COLOR_BTNHILIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BTNHILIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_3DSHADOW","package":"druntime","parentType":"","signature":"COLOR_3DSHADOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_3DSHADOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_ACTIVEBORDER","package":"druntime","parentType":"","signature":"COLOR_ACTIVEBORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_ACTIVEBORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_ACTIVECAPTION","package":"druntime","parentType":"","signature":"COLOR_ACTIVECAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_ACTIVECAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_APPWORKSPACE","package":"druntime","parentType":"","signature":"COLOR_APPWORKSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_APPWORKSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BACKGROUND","package":"druntime","parentType":"","signature":"COLOR_BACKGROUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BACKGROUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_DESKTOP","package":"druntime","parentType":"","signature":"COLOR_DESKTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_DESKTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BTNFACE","package":"druntime","parentType":"","signature":"COLOR_BTNFACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BTNFACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BTNHIGHLIGHT","package":"druntime","parentType":"","signature":"COLOR_BTNHIGHLIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BTNHIGHLIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BTNSHADOW","package":"druntime","parentType":"","signature":"COLOR_BTNSHADOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BTNSHADOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_BTNTEXT","package":"druntime","parentType":"","signature":"COLOR_BTNTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_BTNTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_CAPTIONTEXT","package":"druntime","parentType":"","signature":"COLOR_CAPTIONTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_CAPTIONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_GRAYTEXT","package":"druntime","parentType":"","signature":"COLOR_GRAYTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_GRAYTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_HIGHLIGHT","package":"druntime","parentType":"","signature":"COLOR_HIGHLIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_HIGHLIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_HIGHLIGHTTEXT","package":"druntime","parentType":"","signature":"COLOR_HIGHLIGHTTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_HIGHLIGHTTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_INACTIVEBORDER","package":"druntime","parentType":"","signature":"COLOR_INACTIVEBORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_INACTIVEBORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_INACTIVECAPTION","package":"druntime","parentType":"","signature":"COLOR_INACTIVECAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_INACTIVECAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_INACTIVECAPTIONTEXT","package":"druntime","parentType":"","signature":"COLOR_INACTIVECAPTIONTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_INACTIVECAPTIONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_INFOBK","package":"druntime","parentType":"","signature":"COLOR_INFOBK","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_INFOBK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_INFOTEXT","package":"druntime","parentType":"","signature":"COLOR_INFOTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_INFOTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_MENU","package":"druntime","parentType":"","signature":"COLOR_MENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_MENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_MENUTEXT","package":"druntime","parentType":"","signature":"COLOR_MENUTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_MENUTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_SCROLLBAR","package":"druntime","parentType":"","signature":"COLOR_SCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_SCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_WINDOW","package":"druntime","parentType":"","signature":"COLOR_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_WINDOWFRAME","package":"druntime","parentType":"","signature":"COLOR_WINDOWFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_WINDOWFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_WINDOWTEXT","package":"druntime","parentType":"","signature":"COLOR_WINDOWTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_WINDOWTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_HOTLIGHT","package":"druntime","parentType":"","signature":"COLOR_HOTLIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_HOTLIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_GRADIENTACTIVECAPTION","package":"druntime","parentType":"","signature":"COLOR_GRADIENTACTIVECAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_GRADIENTACTIVECAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"COLOR_GRADIENTINACTIVECAPTION","package":"druntime","parentType":"","signature":"COLOR_GRADIENTINACTIVECAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#COLOR_GRADIENTINACTIVECAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_MSGBOX","package":"druntime","parentType":"","signature":"CTLCOLOR_MSGBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_MSGBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_EDIT","package":"druntime","parentType":"","signature":"CTLCOLOR_EDIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_EDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_LISTBOX","package":"druntime","parentType":"","signature":"CTLCOLOR_LISTBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_LISTBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_BTN","package":"druntime","parentType":"","signature":"CTLCOLOR_BTN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_BTN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_DLG","package":"druntime","parentType":"","signature":"CTLCOLOR_DLG","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_DLG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_SCROLLBAR","package":"druntime","parentType":"","signature":"CTLCOLOR_SCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_SCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_STATIC","package":"druntime","parentType":"","signature":"CTLCOLOR_STATIC","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CTLCOLOR_MAX","package":"druntime","parentType":"","signature":"CTLCOLOR_MAX","url":"/ddoc/druntime/core/sys/windows/winuser.html#CTLCOLOR_MAX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_BOTTOMLEFT","package":"druntime","parentType":"","signature":"ARW_BOTTOMLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_BOTTOMLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_BOTTOMRIGHT","package":"druntime","parentType":"","signature":"ARW_BOTTOMRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_BOTTOMRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_HIDE","package":"druntime","parentType":"","signature":"ARW_HIDE","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_HIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_TOPLEFT","package":"druntime","parentType":"","signature":"ARW_TOPLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_TOPLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_TOPRIGHT","package":"druntime","parentType":"","signature":"ARW_TOPRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_TOPRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_DOWN","package":"druntime","parentType":"","signature":"ARW_DOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_DOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_LEFT","package":"druntime","parentType":"","signature":"ARW_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_RIGHT","package":"druntime","parentType":"","signature":"ARW_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ARW_UP","package":"druntime","parentType":"","signature":"ARW_UP","url":"/ddoc/druntime/core/sys/windows/winuser.html#ARW_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"UOI_FLAGS","package":"druntime","parentType":"","signature":"UOI_FLAGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#UOI_FLAGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"UOI_NAME","package":"druntime","parentType":"","signature":"UOI_NAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#UOI_NAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"UOI_TYPE","package":"druntime","parentType":"","signature":"UOI_TYPE","url":"/ddoc/druntime/core/sys/windows/winuser.html#UOI_TYPE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"UOI_USER_SID","package":"druntime","parentType":"","signature":"UOI_USER_SID","url":"/ddoc/druntime/core/sys/windows/winuser.html#UOI_USER_SID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_BTNCORNERS","package":"druntime","parentType":"","signature":"OBM_BTNCORNERS","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_BTNCORNERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_BTSIZE","package":"druntime","parentType":"","signature":"OBM_BTSIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_BTSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_CHECK","package":"druntime","parentType":"","signature":"OBM_CHECK","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_CHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_CHECKBOXES","package":"druntime","parentType":"","signature":"OBM_CHECKBOXES","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_CHECKBOXES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_CLOSE","package":"druntime","parentType":"","signature":"OBM_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_COMBO","package":"druntime","parentType":"","signature":"OBM_COMBO","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_COMBO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_DNARROW","package":"druntime","parentType":"","signature":"OBM_DNARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_DNARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_DNARROWD","package":"druntime","parentType":"","signature":"OBM_DNARROWD","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_DNARROWD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_DNARROWI","package":"druntime","parentType":"","signature":"OBM_DNARROWI","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_DNARROWI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_LFARROW","package":"druntime","parentType":"","signature":"OBM_LFARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_LFARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_LFARROWI","package":"druntime","parentType":"","signature":"OBM_LFARROWI","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_LFARROWI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_LFARROWD","package":"druntime","parentType":"","signature":"OBM_LFARROWD","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_LFARROWD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_MNARROW","package":"druntime","parentType":"","signature":"OBM_MNARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_MNARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_CLOSE","package":"druntime","parentType":"","signature":"OBM_OLD_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_DNARROW","package":"druntime","parentType":"","signature":"OBM_OLD_DNARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_DNARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_LFARROW","package":"druntime","parentType":"","signature":"OBM_OLD_LFARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_LFARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_REDUCE","package":"druntime","parentType":"","signature":"OBM_OLD_REDUCE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_REDUCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_RESTORE","package":"druntime","parentType":"","signature":"OBM_OLD_RESTORE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_RESTORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_RGARROW","package":"druntime","parentType":"","signature":"OBM_OLD_RGARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_RGARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_UPARROW","package":"druntime","parentType":"","signature":"OBM_OLD_UPARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_UPARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_OLD_ZOOM","package":"druntime","parentType":"","signature":"OBM_OLD_ZOOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_OLD_ZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_REDUCE","package":"druntime","parentType":"","signature":"OBM_REDUCE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_REDUCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_REDUCED","package":"druntime","parentType":"","signature":"OBM_REDUCED","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_REDUCED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_RESTORE","package":"druntime","parentType":"","signature":"OBM_RESTORE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_RESTORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_RESTORED","package":"druntime","parentType":"","signature":"OBM_RESTORED","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_RESTORED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_RGARROW","package":"druntime","parentType":"","signature":"OBM_RGARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_RGARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_RGARROWD","package":"druntime","parentType":"","signature":"OBM_RGARROWD","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_RGARROWD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_RGARROWI","package":"druntime","parentType":"","signature":"OBM_RGARROWI","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_RGARROWI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_SIZE","package":"druntime","parentType":"","signature":"OBM_SIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_UPARROW","package":"druntime","parentType":"","signature":"OBM_UPARROW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_UPARROW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_UPARROWD","package":"druntime","parentType":"","signature":"OBM_UPARROWD","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_UPARROWD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_UPARROWI","package":"druntime","parentType":"","signature":"OBM_UPARROWI","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_UPARROWI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_ZOOM","package":"druntime","parentType":"","signature":"OBM_ZOOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_ZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OBM_ZOOMD","package":"druntime","parentType":"","signature":"OBM_ZOOMD","url":"/ddoc/druntime/core/sys/windows/winuser.html#OBM_ZOOMD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_NORMAL","package":"druntime","parentType":"","signature":"OCR_NORMAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_NORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_IBEAM","package":"druntime","parentType":"","signature":"OCR_IBEAM","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_IBEAM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_WAIT","package":"druntime","parentType":"","signature":"OCR_WAIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_WAIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_CROSS","package":"druntime","parentType":"","signature":"OCR_CROSS","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_CROSS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_UP","package":"druntime","parentType":"","signature":"OCR_UP","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZE","package":"druntime","parentType":"","signature":"OCR_SIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_ICON","package":"druntime","parentType":"","signature":"OCR_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZENWSE","package":"druntime","parentType":"","signature":"OCR_SIZENWSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZENWSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZENESW","package":"druntime","parentType":"","signature":"OCR_SIZENESW","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZENESW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZEWE","package":"druntime","parentType":"","signature":"OCR_SIZEWE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZEWE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZENS","package":"druntime","parentType":"","signature":"OCR_SIZENS","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZENS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_SIZEALL","package":"druntime","parentType":"","signature":"OCR_SIZEALL","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_SIZEALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_NO","package":"druntime","parentType":"","signature":"OCR_NO","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_NO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OCR_APPSTARTING","package":"druntime","parentType":"","signature":"OCR_APPSTARTING","url":"/ddoc/druntime/core/sys/windows/winuser.html#OCR_APPSTARTING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_SAMPLE","package":"druntime","parentType":"","signature":"OIC_SAMPLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_SAMPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_HAND","package":"druntime","parentType":"","signature":"OIC_HAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_HAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_QUES","package":"druntime","parentType":"","signature":"OIC_QUES","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_QUES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_BANG","package":"druntime","parentType":"","signature":"OIC_BANG","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_BANG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_NOTE","package":"druntime","parentType":"","signature":"OIC_NOTE","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_NOTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_WINLOGO","package":"druntime","parentType":"","signature":"OIC_WINLOGO","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_WINLOGO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_WARNING","package":"druntime","parentType":"","signature":"OIC_WARNING","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_WARNING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_ERROR","package":"druntime","parentType":"","signature":"OIC_ERROR","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_ERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"OIC_INFORMATION","package":"druntime","parentType":"","signature":"OIC_INFORMATION","url":"/ddoc/druntime/core/sys/windows/winuser.html#OIC_INFORMATION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELPINFO_MENUITEM","package":"druntime","parentType":"","signature":"HELPINFO_MENUITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPINFO_MENUITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELPINFO_WINDOW","package":"druntime","parentType":"","signature":"HELPINFO_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELPINFO_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_DIALOGBOX","package":"druntime","parentType":"","signature":"MSGF_DIALOGBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_DIALOGBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_MESSAGEBOX","package":"druntime","parentType":"","signature":"MSGF_MESSAGEBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_MESSAGEBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_MENU","package":"druntime","parentType":"","signature":"MSGF_MENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_MENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_MOVE","package":"druntime","parentType":"","signature":"MSGF_MOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_MOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_SIZE","package":"druntime","parentType":"","signature":"MSGF_SIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_SCROLLBAR","package":"druntime","parentType":"","signature":"MSGF_SCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_SCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_NEXTWINDOW","package":"druntime","parentType":"","signature":"MSGF_NEXTWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_NEXTWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_MAINLOOP","package":"druntime","parentType":"","signature":"MSGF_MAINLOOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_MAINLOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MSGF_USER","package":"druntime","parentType":"","signature":"MSGF_USER","url":"/ddoc/druntime/core/sys/windows/winuser.html#MSGF_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PM_NOREMOVE","package":"druntime","parentType":"","signature":"PM_NOREMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#PM_NOREMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PM_REMOVE","package":"druntime","parentType":"","signature":"PM_REMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#PM_REMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PM_NOYIELD","package":"druntime","parentType":"","signature":"PM_NOYIELD","url":"/ddoc/druntime/core/sys/windows/winuser.html#PM_NOYIELD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_INVALIDATE","package":"druntime","parentType":"","signature":"RDW_INVALIDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_INVALIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_INTERNALPAINT","package":"druntime","parentType":"","signature":"RDW_INTERNALPAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_INTERNALPAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_ERASE","package":"druntime","parentType":"","signature":"RDW_ERASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_ERASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_VALIDATE","package":"druntime","parentType":"","signature":"RDW_VALIDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_VALIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_NOINTERNALPAINT","package":"druntime","parentType":"","signature":"RDW_NOINTERNALPAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_NOINTERNALPAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_NOERASE","package":"druntime","parentType":"","signature":"RDW_NOERASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_NOERASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_NOCHILDREN","package":"druntime","parentType":"","signature":"RDW_NOCHILDREN","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_NOCHILDREN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_ALLCHILDREN","package":"druntime","parentType":"","signature":"RDW_ALLCHILDREN","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_ALLCHILDREN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_UPDATENOW","package":"druntime","parentType":"","signature":"RDW_UPDATENOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_UPDATENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_ERASENOW","package":"druntime","parentType":"","signature":"RDW_ERASENOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_ERASENOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_FRAME","package":"druntime","parentType":"","signature":"RDW_FRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_FRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"RDW_NOFRAME","package":"druntime","parentType":"","signature":"RDW_NOFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#RDW_NOFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_ALL","package":"druntime","parentType":"","signature":"SIF_ALL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_ALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_PAGE","package":"druntime","parentType":"","signature":"SIF_PAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_PAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_POS","package":"druntime","parentType":"","signature":"SIF_POS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_POS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_RANGE","package":"druntime","parentType":"","signature":"SIF_RANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_RANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_DISABLENOSCROLL","package":"druntime","parentType":"","signature":"SIF_DISABLENOSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_DISABLENOSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIF_TRACKPOS","package":"druntime","parentType":"","signature":"SIF_TRACKPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIF_TRACKPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_DRAWFRAME","package":"druntime","parentType":"","signature":"SWP_DRAWFRAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_DRAWFRAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_FRAMECHANGED","package":"druntime","parentType":"","signature":"SWP_FRAMECHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_FRAMECHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_HIDEWINDOW","package":"druntime","parentType":"","signature":"SWP_HIDEWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_HIDEWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOACTIVATE","package":"druntime","parentType":"","signature":"SWP_NOACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOCOPYBITS","package":"druntime","parentType":"","signature":"SWP_NOCOPYBITS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOCOPYBITS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOMOVE","package":"druntime","parentType":"","signature":"SWP_NOMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOSIZE","package":"druntime","parentType":"","signature":"SWP_NOSIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOREDRAW","package":"druntime","parentType":"","signature":"SWP_NOREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOZORDER","package":"druntime","parentType":"","signature":"SWP_NOZORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOZORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_SHOWWINDOW","package":"druntime","parentType":"","signature":"SWP_SHOWWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_SHOWWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOOWNERZORDER","package":"druntime","parentType":"","signature":"SWP_NOOWNERZORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOOWNERZORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOREPOSITION","package":"druntime","parentType":"","signature":"SWP_NOREPOSITION","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOREPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_NOSENDCHANGING","package":"druntime","parentType":"","signature":"SWP_NOSENDCHANGING","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_NOSENDCHANGING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_DEFERERASE","package":"druntime","parentType":"","signature":"SWP_DEFERERASE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_DEFERERASE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SWP_ASYNCWINDOWPOS","package":"druntime","parentType":"","signature":"SWP_ASYNCWINDOWPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SWP_ASYNCWINDOWPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_APP","package":"druntime","parentType":"","signature":"WM_APP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_APP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ACTIVATE","package":"druntime","parentType":"","signature":"WM_ACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ACTIVATEAPP","package":"druntime","parentType":"","signature":"WM_ACTIVATEAPP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ACTIVATEAPP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_AFXFIRST","package":"druntime","parentType":"","signature":"WM_AFXFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_AFXFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_AFXLAST","package":"druntime","parentType":"","signature":"WM_AFXLAST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_AFXLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ASKCBFORMATNAME","package":"druntime","parentType":"","signature":"WM_ASKCBFORMATNAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ASKCBFORMATNAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CANCELJOURNAL","package":"druntime","parentType":"","signature":"WM_CANCELJOURNAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CANCELJOURNAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CANCELMODE","package":"druntime","parentType":"","signature":"WM_CANCELMODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CANCELMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CAPTURECHANGED","package":"druntime","parentType":"","signature":"WM_CAPTURECHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CAPTURECHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CHANGECBCHAIN","package":"druntime","parentType":"","signature":"WM_CHANGECBCHAIN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CHANGECBCHAIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CHAR","package":"druntime","parentType":"","signature":"WM_CHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CHARTOITEM","package":"druntime","parentType":"","signature":"WM_CHARTOITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CHARTOITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CHILDACTIVATE","package":"druntime","parentType":"","signature":"WM_CHILDACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CHILDACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CLEAR","package":"druntime","parentType":"","signature":"WM_CLEAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CLEAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CLOSE","package":"druntime","parentType":"","signature":"WM_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COMMAND","package":"druntime","parentType":"","signature":"WM_COMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COMMNOTIFY","package":"druntime","parentType":"","signature":"WM_COMMNOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COMMNOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COMPACTING","package":"druntime","parentType":"","signature":"WM_COMPACTING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COMPACTING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COMPAREITEM","package":"druntime","parentType":"","signature":"WM_COMPAREITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COMPAREITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CONTEXTMENU","package":"druntime","parentType":"","signature":"WM_CONTEXTMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CONTEXTMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COPY","package":"druntime","parentType":"","signature":"WM_COPY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COPY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_COPYDATA","package":"druntime","parentType":"","signature":"WM_COPYDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_COPYDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CREATE","package":"druntime","parentType":"","signature":"WM_CREATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORBTN","package":"druntime","parentType":"","signature":"WM_CTLCOLORBTN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORBTN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORDLG","package":"druntime","parentType":"","signature":"WM_CTLCOLORDLG","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORDLG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLOREDIT","package":"druntime","parentType":"","signature":"WM_CTLCOLOREDIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLOREDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORLISTBOX","package":"druntime","parentType":"","signature":"WM_CTLCOLORLISTBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORLISTBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORMSGBOX","package":"druntime","parentType":"","signature":"WM_CTLCOLORMSGBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORMSGBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORSCROLLBAR","package":"druntime","parentType":"","signature":"WM_CTLCOLORSCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORSCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CTLCOLORSTATIC","package":"druntime","parentType":"","signature":"WM_CTLCOLORSTATIC","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CTLCOLORSTATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CUT","package":"druntime","parentType":"","signature":"WM_CUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DEADCHAR","package":"druntime","parentType":"","signature":"WM_DEADCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DEADCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DELETEITEM","package":"druntime","parentType":"","signature":"WM_DELETEITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DELETEITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DESTROY","package":"druntime","parentType":"","signature":"WM_DESTROY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DESTROY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DESTROYCLIPBOARD","package":"druntime","parentType":"","signature":"WM_DESTROYCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DESTROYCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DEVICECHANGE","package":"druntime","parentType":"","signature":"WM_DEVICECHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DEVICECHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DEVMODECHANGE","package":"druntime","parentType":"","signature":"WM_DEVMODECHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DEVMODECHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DISPLAYCHANGE","package":"druntime","parentType":"","signature":"WM_DISPLAYCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DISPLAYCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DRAWCLIPBOARD","package":"druntime","parentType":"","signature":"WM_DRAWCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DRAWCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DRAWITEM","package":"druntime","parentType":"","signature":"WM_DRAWITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DRAWITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_DROPFILES","package":"druntime","parentType":"","signature":"WM_DROPFILES","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_DROPFILES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ENABLE","package":"druntime","parentType":"","signature":"WM_ENABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ENDSESSION","package":"druntime","parentType":"","signature":"WM_ENDSESSION","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ENDSESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ENTERIDLE","package":"druntime","parentType":"","signature":"WM_ENTERIDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ENTERIDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ENTERMENULOOP","package":"druntime","parentType":"","signature":"WM_ENTERMENULOOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ENTERMENULOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ENTERSIZEMOVE","package":"druntime","parentType":"","signature":"WM_ENTERSIZEMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ENTERSIZEMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ERASEBKGND","package":"druntime","parentType":"","signature":"WM_ERASEBKGND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ERASEBKGND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_EXITMENULOOP","package":"druntime","parentType":"","signature":"WM_EXITMENULOOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_EXITMENULOOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_EXITSIZEMOVE","package":"druntime","parentType":"","signature":"WM_EXITSIZEMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_EXITSIZEMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_FONTCHANGE","package":"druntime","parentType":"","signature":"WM_FONTCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_FONTCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETDLGCODE","package":"druntime","parentType":"","signature":"WM_GETDLGCODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETDLGCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETFONT","package":"druntime","parentType":"","signature":"WM_GETFONT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETHOTKEY","package":"druntime","parentType":"","signature":"WM_GETHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETICON","package":"druntime","parentType":"","signature":"WM_GETICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETMINMAXINFO","package":"druntime","parentType":"","signature":"WM_GETMINMAXINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETMINMAXINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETTEXT","package":"druntime","parentType":"","signature":"WM_GETTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_GETTEXTLENGTH","package":"druntime","parentType":"","signature":"WM_GETTEXTLENGTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_GETTEXTLENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HANDHELDFIRST","package":"druntime","parentType":"","signature":"WM_HANDHELDFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HANDHELDFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HANDHELDLAST","package":"druntime","parentType":"","signature":"WM_HANDHELDLAST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HANDHELDLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HELP","package":"druntime","parentType":"","signature":"WM_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HOTKEY","package":"druntime","parentType":"","signature":"WM_HOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HSCROLL","package":"druntime","parentType":"","signature":"WM_HSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_HSCROLLCLIPBOARD","package":"druntime","parentType":"","signature":"WM_HSCROLLCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_HSCROLLCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_ICONERASEBKGND","package":"druntime","parentType":"","signature":"WM_ICONERASEBKGND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_ICONERASEBKGND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INITDIALOG","package":"druntime","parentType":"","signature":"WM_INITDIALOG","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INITDIALOG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INITMENU","package":"druntime","parentType":"","signature":"WM_INITMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INITMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INITMENUPOPUP","package":"druntime","parentType":"","signature":"WM_INITMENUPOPUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INITMENUPOPUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INPUTLANGCHANGE","package":"druntime","parentType":"","signature":"WM_INPUTLANGCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INPUTLANGCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INPUTLANGCHANGEREQUEST","package":"druntime","parentType":"","signature":"WM_INPUTLANGCHANGEREQUEST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INPUTLANGCHANGEREQUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_KEYDOWN","package":"druntime","parentType":"","signature":"WM_KEYDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_KEYDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_KEYUP","package":"druntime","parentType":"","signature":"WM_KEYUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_KEYUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_KILLFOCUS","package":"druntime","parentType":"","signature":"WM_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIACTIVATE","package":"druntime","parentType":"","signature":"WM_MDIACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDICASCADE","package":"druntime","parentType":"","signature":"WM_MDICASCADE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDICASCADE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDICREATE","package":"druntime","parentType":"","signature":"WM_MDICREATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDICREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIDESTROY","package":"druntime","parentType":"","signature":"WM_MDIDESTROY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIDESTROY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIGETACTIVE","package":"druntime","parentType":"","signature":"WM_MDIGETACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIGETACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIICONARRANGE","package":"druntime","parentType":"","signature":"WM_MDIICONARRANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIICONARRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIMAXIMIZE","package":"druntime","parentType":"","signature":"WM_MDIMAXIMIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIMAXIMIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDINEXT","package":"druntime","parentType":"","signature":"WM_MDINEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDINEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIREFRESHMENU","package":"druntime","parentType":"","signature":"WM_MDIREFRESHMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIREFRESHMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDIRESTORE","package":"druntime","parentType":"","signature":"WM_MDIRESTORE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDIRESTORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDISETMENU","package":"druntime","parentType":"","signature":"WM_MDISETMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDISETMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MDITILE","package":"druntime","parentType":"","signature":"WM_MDITILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MDITILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MEASUREITEM","package":"druntime","parentType":"","signature":"WM_MEASUREITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MEASUREITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_UNINITMENUPOPUP","package":"druntime","parentType":"","signature":"WM_UNINITMENUPOPUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_UNINITMENUPOPUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENURBUTTONUP","package":"druntime","parentType":"","signature":"WM_MENURBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENURBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENUCOMMAND","package":"druntime","parentType":"","signature":"WM_MENUCOMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENUCOMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENUGETOBJECT","package":"druntime","parentType":"","signature":"WM_MENUGETOBJECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENUGETOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENUDRAG","package":"druntime","parentType":"","signature":"WM_MENUDRAG","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENUDRAG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_CHANGEUISTATE","package":"druntime","parentType":"","signature":"WM_CHANGEUISTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_CHANGEUISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_UPDATEUISTATE","package":"druntime","parentType":"","signature":"WM_UPDATEUISTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_UPDATEUISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUERYUISTATE","package":"druntime","parentType":"","signature":"WM_QUERYUISTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUERYUISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENUCHAR","package":"druntime","parentType":"","signature":"WM_MENUCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENUCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MENUSELECT","package":"druntime","parentType":"","signature":"WM_MENUSELECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MENUSELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOVE","package":"druntime","parentType":"","signature":"WM_MOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOVING","package":"druntime","parentType":"","signature":"WM_MOVING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOVING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCACTIVATE","package":"druntime","parentType":"","signature":"WM_NCACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCCALCSIZE","package":"druntime","parentType":"","signature":"WM_NCCALCSIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCCALCSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCCREATE","package":"druntime","parentType":"","signature":"WM_NCCREATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCCREATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCDESTROY","package":"druntime","parentType":"","signature":"WM_NCDESTROY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCDESTROY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCHITTEST","package":"druntime","parentType":"","signature":"WM_NCHITTEST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCHITTEST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCLBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_NCLBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCLBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCLBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_NCLBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCLBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCLBUTTONUP","package":"druntime","parentType":"","signature":"WM_NCLBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCLBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_NCMBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_NCMBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMBUTTONUP","package":"druntime","parentType":"","signature":"WM_NCMBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCXBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_NCXBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCXBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCXBUTTONUP","package":"druntime","parentType":"","signature":"WM_NCXBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCXBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCXBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_NCXBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCXBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMOUSEHOVER","package":"druntime","parentType":"","signature":"WM_NCMOUSEHOVER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMOUSEHOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMOUSELEAVE","package":"druntime","parentType":"","signature":"WM_NCMOUSELEAVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMOUSELEAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCMOUSEMOVE","package":"druntime","parentType":"","signature":"WM_NCMOUSEMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCMOUSEMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCPAINT","package":"druntime","parentType":"","signature":"WM_NCPAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCPAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCRBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_NCRBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCRBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCRBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_NCRBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCRBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NCRBUTTONUP","package":"druntime","parentType":"","signature":"WM_NCRBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NCRBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NEXTDLGCTL","package":"druntime","parentType":"","signature":"WM_NEXTDLGCTL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NEXTDLGCTL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NEXTMENU","package":"druntime","parentType":"","signature":"WM_NEXTMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NEXTMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NOTIFY","package":"druntime","parentType":"","signature":"WM_NOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NOTIFYFORMAT","package":"druntime","parentType":"","signature":"WM_NOTIFYFORMAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NOTIFYFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_NULL","package":"druntime","parentType":"","signature":"WM_NULL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_NULL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PAINT","package":"druntime","parentType":"","signature":"WM_PAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PAINTCLIPBOARD","package":"druntime","parentType":"","signature":"WM_PAINTCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PAINTCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PAINTICON","package":"druntime","parentType":"","signature":"WM_PAINTICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PAINTICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PALETTECHANGED","package":"druntime","parentType":"","signature":"WM_PALETTECHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PALETTECHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PALETTEISCHANGING","package":"druntime","parentType":"","signature":"WM_PALETTEISCHANGING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PALETTEISCHANGING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PARENTNOTIFY","package":"druntime","parentType":"","signature":"WM_PARENTNOTIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PARENTNOTIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PASTE","package":"druntime","parentType":"","signature":"WM_PASTE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PASTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PENWINFIRST","package":"druntime","parentType":"","signature":"WM_PENWINFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PENWINFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PENWINLAST","package":"druntime","parentType":"","signature":"WM_PENWINLAST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PENWINLAST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_POWER","package":"druntime","parentType":"","signature":"WM_POWER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_POWER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_POWERBROADCAST","package":"druntime","parentType":"","signature":"WM_POWERBROADCAST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_POWERBROADCAST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PRINT","package":"druntime","parentType":"","signature":"WM_PRINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PRINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_PRINTCLIENT","package":"druntime","parentType":"","signature":"WM_PRINTCLIENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_PRINTCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_APPCOMMAND","package":"druntime","parentType":"","signature":"WM_APPCOMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_APPCOMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUERYDRAGICON","package":"druntime","parentType":"","signature":"WM_QUERYDRAGICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUERYDRAGICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUERYENDSESSION","package":"druntime","parentType":"","signature":"WM_QUERYENDSESSION","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUERYENDSESSION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUERYNEWPALETTE","package":"druntime","parentType":"","signature":"WM_QUERYNEWPALETTE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUERYNEWPALETTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUERYOPEN","package":"druntime","parentType":"","signature":"WM_QUERYOPEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUERYOPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUEUESYNC","package":"druntime","parentType":"","signature":"WM_QUEUESYNC","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUEUESYNC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_QUIT","package":"druntime","parentType":"","signature":"WM_QUIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_QUIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_RENDERALLFORMATS","package":"druntime","parentType":"","signature":"WM_RENDERALLFORMATS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_RENDERALLFORMATS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_RENDERFORMAT","package":"druntime","parentType":"","signature":"WM_RENDERFORMAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_RENDERFORMAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETCURSOR","package":"druntime","parentType":"","signature":"WM_SETCURSOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETCURSOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETFOCUS","package":"druntime","parentType":"","signature":"WM_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETFONT","package":"druntime","parentType":"","signature":"WM_SETFONT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETFONT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETHOTKEY","package":"druntime","parentType":"","signature":"WM_SETHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETICON","package":"druntime","parentType":"","signature":"WM_SETICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETREDRAW","package":"druntime","parentType":"","signature":"WM_SETREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETTEXT","package":"druntime","parentType":"","signature":"WM_SETTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SETTINGCHANGE","package":"druntime","parentType":"","signature":"WM_SETTINGCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SETTINGCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SHOWWINDOW","package":"druntime","parentType":"","signature":"WM_SHOWWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SHOWWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SIZE","package":"druntime","parentType":"","signature":"WM_SIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SIZECLIPBOARD","package":"druntime","parentType":"","signature":"WM_SIZECLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SIZECLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SIZING","package":"druntime","parentType":"","signature":"WM_SIZING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SIZING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SPOOLERSTATUS","package":"druntime","parentType":"","signature":"WM_SPOOLERSTATUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SPOOLERSTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_STYLECHANGED","package":"druntime","parentType":"","signature":"WM_STYLECHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_STYLECHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_STYLECHANGING","package":"druntime","parentType":"","signature":"WM_STYLECHANGING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_STYLECHANGING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSCHAR","package":"druntime","parentType":"","signature":"WM_SYSCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSCOLORCHANGE","package":"druntime","parentType":"","signature":"WM_SYSCOLORCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSCOLORCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSCOMMAND","package":"druntime","parentType":"","signature":"WM_SYSCOMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSCOMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSDEADCHAR","package":"druntime","parentType":"","signature":"WM_SYSDEADCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSDEADCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSKEYDOWN","package":"druntime","parentType":"","signature":"WM_SYSKEYDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSKEYDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYSKEYUP","package":"druntime","parentType":"","signature":"WM_SYSKEYUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYSKEYUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_TCARD","package":"druntime","parentType":"","signature":"WM_TCARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_TCARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_THEMECHANGED","package":"druntime","parentType":"","signature":"WM_THEMECHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_THEMECHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_TIMECHANGE","package":"druntime","parentType":"","signature":"WM_TIMECHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_TIMECHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_TIMER","package":"druntime","parentType":"","signature":"WM_TIMER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_TIMER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_UNDO","package":"druntime","parentType":"","signature":"WM_UNDO","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_UNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_USER","package":"druntime","parentType":"","signature":"WM_USER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_USER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_USERCHANGED","package":"druntime","parentType":"","signature":"WM_USERCHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_USERCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_VKEYTOITEM","package":"druntime","parentType":"","signature":"WM_VKEYTOITEM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_VKEYTOITEM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_VSCROLL","package":"druntime","parentType":"","signature":"WM_VSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_VSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_VSCROLLCLIPBOARD","package":"druntime","parentType":"","signature":"WM_VSCROLLCLIPBOARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_VSCROLLCLIPBOARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_WINDOWPOSCHANGED","package":"druntime","parentType":"","signature":"WM_WINDOWPOSCHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_WINDOWPOSCHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_WINDOWPOSCHANGING","package":"druntime","parentType":"","signature":"WM_WINDOWPOSCHANGING","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_WINDOWPOSCHANGING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_WININICHANGE","package":"druntime","parentType":"","signature":"WM_WININICHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_WININICHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_INPUT","package":"druntime","parentType":"","signature":"WM_INPUT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_INPUT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_KEYFIRST","package":"druntime","parentType":"","signature":"WM_KEYFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_KEYFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_SYNCPAINT","package":"druntime","parentType":"","signature":"WM_SYNCPAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_SYNCPAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSEACTIVATE","package":"druntime","parentType":"","signature":"WM_MOUSEACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSEACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSEMOVE","package":"druntime","parentType":"","signature":"WM_MOUSEMOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSEMOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_LBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_LBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_LBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_LBUTTONUP","package":"druntime","parentType":"","signature":"WM_LBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_LBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_LBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_LBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_LBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_RBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_RBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_RBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_RBUTTONUP","package":"druntime","parentType":"","signature":"WM_RBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_RBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_RBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_RBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_RBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MBUTTONDOWN","package":"druntime","parentType":"","signature":"WM_MBUTTONDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MBUTTONDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MBUTTONUP","package":"druntime","parentType":"","signature":"WM_MBUTTONUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MBUTTONUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MBUTTONDBLCLK","package":"druntime","parentType":"","signature":"WM_MBUTTONDBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MBUTTONDBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSEWHEEL","package":"druntime","parentType":"","signature":"WM_MOUSEWHEEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSEWHEEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSEFIRST","package":"druntime","parentType":"","signature":"WM_MOUSEFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSEFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSEHOVER","package":"druntime","parentType":"","signature":"WM_MOUSEHOVER","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSEHOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WM_MOUSELEAVE","package":"druntime","parentType":"","signature":"WM_MOUSELEAVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WM_MOUSELEAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WHEEL_DELTA","package":"druntime","parentType":"","signature":"WHEEL_DELTA","url":"/ddoc/druntime/core/sys/windows/winuser.html#WHEEL_DELTA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WHEEL_PAGESCROLL","package":"druntime","parentType":"","signature":"WHEEL_PAGESCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#WHEEL_PAGESCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_CLICK","package":"druntime","parentType":"","signature":"BM_CLICK","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_CLICK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_GETCHECK","package":"druntime","parentType":"","signature":"BM_GETCHECK","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_GETCHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_GETIMAGE","package":"druntime","parentType":"","signature":"BM_GETIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_GETIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_GETSTATE","package":"druntime","parentType":"","signature":"BM_GETSTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_GETSTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_SETCHECK","package":"druntime","parentType":"","signature":"BM_SETCHECK","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_SETCHECK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_SETIMAGE","package":"druntime","parentType":"","signature":"BM_SETIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_SETIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_SETSTATE","package":"druntime","parentType":"","signature":"BM_SETSTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_SETSTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BM_SETSTYLE","package":"druntime","parentType":"","signature":"BM_SETSTYLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BM_SETSTYLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_CLICKED","package":"druntime","parentType":"","signature":"BN_CLICKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_CLICKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_DBLCLK","package":"druntime","parentType":"","signature":"BN_DBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_DBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_DISABLE","package":"druntime","parentType":"","signature":"BN_DISABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_DISABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_DOUBLECLICKED","package":"druntime","parentType":"","signature":"BN_DOUBLECLICKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_DOUBLECLICKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_HILITE","package":"druntime","parentType":"","signature":"BN_HILITE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_HILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_KILLFOCUS","package":"druntime","parentType":"","signature":"BN_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_PAINT","package":"druntime","parentType":"","signature":"BN_PAINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_PAINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_PUSHED","package":"druntime","parentType":"","signature":"BN_PUSHED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_PUSHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_SETFOCUS","package":"druntime","parentType":"","signature":"BN_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_UNHILITE","package":"druntime","parentType":"","signature":"BN_UNHILITE","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_UNHILITE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"BN_UNPUSHED","package":"druntime","parentType":"","signature":"BN_UNPUSHED","url":"/ddoc/druntime/core/sys/windows/winuser.html#BN_UNPUSHED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_ADDSTRING","package":"druntime","parentType":"","signature":"CB_ADDSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_ADDSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_DELETESTRING","package":"druntime","parentType":"","signature":"CB_DELETESTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_DELETESTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_DIR","package":"druntime","parentType":"","signature":"CB_DIR","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_DIR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_FINDSTRING","package":"druntime","parentType":"","signature":"CB_FINDSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_FINDSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_FINDSTRINGEXACT","package":"druntime","parentType":"","signature":"CB_FINDSTRINGEXACT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_FINDSTRINGEXACT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETCOUNT","package":"druntime","parentType":"","signature":"CB_GETCOUNT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETCURSEL","package":"druntime","parentType":"","signature":"CB_GETCURSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETCURSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETDROPPEDCONTROLRECT","package":"druntime","parentType":"","signature":"CB_GETDROPPEDCONTROLRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETDROPPEDCONTROLRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETDROPPEDSTATE","package":"druntime","parentType":"","signature":"CB_GETDROPPEDSTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETDROPPEDSTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETDROPPEDWIDTH","package":"druntime","parentType":"","signature":"CB_GETDROPPEDWIDTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETDROPPEDWIDTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETEDITSEL","package":"druntime","parentType":"","signature":"CB_GETEDITSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETEDITSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETEXTENDEDUI","package":"druntime","parentType":"","signature":"CB_GETEXTENDEDUI","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETEXTENDEDUI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETHORIZONTALEXTENT","package":"druntime","parentType":"","signature":"CB_GETHORIZONTALEXTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETHORIZONTALEXTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETITEMDATA","package":"druntime","parentType":"","signature":"CB_GETITEMDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETITEMDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETITEMHEIGHT","package":"druntime","parentType":"","signature":"CB_GETITEMHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETITEMHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETLBTEXT","package":"druntime","parentType":"","signature":"CB_GETLBTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETLBTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETLBTEXTLEN","package":"druntime","parentType":"","signature":"CB_GETLBTEXTLEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETLBTEXTLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETLOCALE","package":"druntime","parentType":"","signature":"CB_GETLOCALE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETLOCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_GETTOPINDEX","package":"druntime","parentType":"","signature":"CB_GETTOPINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_GETTOPINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_INITSTORAGE","package":"druntime","parentType":"","signature":"CB_INITSTORAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_INITSTORAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_INSERTSTRING","package":"druntime","parentType":"","signature":"CB_INSERTSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_INSERTSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_LIMITTEXT","package":"druntime","parentType":"","signature":"CB_LIMITTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_LIMITTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_RESETCONTENT","package":"druntime","parentType":"","signature":"CB_RESETCONTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_RESETCONTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SELECTSTRING","package":"druntime","parentType":"","signature":"CB_SELECTSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SELECTSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETCURSEL","package":"druntime","parentType":"","signature":"CB_SETCURSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETCURSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETDROPPEDWIDTH","package":"druntime","parentType":"","signature":"CB_SETDROPPEDWIDTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETDROPPEDWIDTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETEDITSEL","package":"druntime","parentType":"","signature":"CB_SETEDITSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETEDITSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETEXTENDEDUI","package":"druntime","parentType":"","signature":"CB_SETEXTENDEDUI","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETEXTENDEDUI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETHORIZONTALEXTENT","package":"druntime","parentType":"","signature":"CB_SETHORIZONTALEXTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETHORIZONTALEXTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETITEMDATA","package":"druntime","parentType":"","signature":"CB_SETITEMDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETITEMDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETITEMHEIGHT","package":"druntime","parentType":"","signature":"CB_SETITEMHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETITEMHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETLOCALE","package":"druntime","parentType":"","signature":"CB_SETLOCALE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETLOCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SETTOPINDEX","package":"druntime","parentType":"","signature":"CB_SETTOPINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SETTOPINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_SHOWDROPDOWN","package":"druntime","parentType":"","signature":"CB_SHOWDROPDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_SHOWDROPDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_CLOSEUP","package":"druntime","parentType":"","signature":"CBN_CLOSEUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_CLOSEUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_DBLCLK","package":"druntime","parentType":"","signature":"CBN_DBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_DBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_DROPDOWN","package":"druntime","parentType":"","signature":"CBN_DROPDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_DROPDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_EDITCHANGE","package":"druntime","parentType":"","signature":"CBN_EDITCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_EDITCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_EDITUPDATE","package":"druntime","parentType":"","signature":"CBN_EDITUPDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_EDITUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_ERRSPACE","package":"druntime","parentType":"","signature":"CBN_ERRSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_ERRSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_KILLFOCUS","package":"druntime","parentType":"","signature":"CBN_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_SELCHANGE","package":"druntime","parentType":"","signature":"CBN_SELCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_SELCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_SELENDCANCEL","package":"druntime","parentType":"","signature":"CBN_SELENDCANCEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_SELENDCANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_SELENDOK","package":"druntime","parentType":"","signature":"CBN_SELENDOK","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_SELENDOK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CBN_SETFOCUS","package":"druntime","parentType":"","signature":"CBN_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#CBN_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_CANUNDO","package":"druntime","parentType":"","signature":"EM_CANUNDO","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_CANUNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_CHARFROMPOS","package":"druntime","parentType":"","signature":"EM_CHARFROMPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_CHARFROMPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_EMPTYUNDOBUFFER","package":"druntime","parentType":"","signature":"EM_EMPTYUNDOBUFFER","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_EMPTYUNDOBUFFER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_FMTLINES","package":"druntime","parentType":"","signature":"EM_FMTLINES","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_FMTLINES"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETFIRSTVISIBLELINE","package":"druntime","parentType":"","signature":"EM_GETFIRSTVISIBLELINE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETFIRSTVISIBLELINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETHANDLE","package":"druntime","parentType":"","signature":"EM_GETHANDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETHANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETLIMITTEXT","package":"druntime","parentType":"","signature":"EM_GETLIMITTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETLIMITTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETLINE","package":"druntime","parentType":"","signature":"EM_GETLINE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETLINE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETLINECOUNT","package":"druntime","parentType":"","signature":"EM_GETLINECOUNT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETLINECOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETMARGINS","package":"druntime","parentType":"","signature":"EM_GETMARGINS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETMARGINS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETMODIFY","package":"druntime","parentType":"","signature":"EM_GETMODIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETMODIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETPASSWORDCHAR","package":"druntime","parentType":"","signature":"EM_GETPASSWORDCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETPASSWORDCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETRECT","package":"druntime","parentType":"","signature":"EM_GETRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETSEL","package":"druntime","parentType":"","signature":"EM_GETSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETTHUMB","package":"druntime","parentType":"","signature":"EM_GETTHUMB","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETTHUMB"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETWORDBREAKPROC","package":"druntime","parentType":"","signature":"EM_GETWORDBREAKPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETWORDBREAKPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_LIMITTEXT","package":"druntime","parentType":"","signature":"EM_LIMITTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_LIMITTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_LINEFROMCHAR","package":"druntime","parentType":"","signature":"EM_LINEFROMCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_LINEFROMCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_LINEINDEX","package":"druntime","parentType":"","signature":"EM_LINEINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_LINEINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_LINELENGTH","package":"druntime","parentType":"","signature":"EM_LINELENGTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_LINELENGTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_LINESCROLL","package":"druntime","parentType":"","signature":"EM_LINESCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_LINESCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_POSFROMCHAR","package":"druntime","parentType":"","signature":"EM_POSFROMCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_POSFROMCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_REPLACESEL","package":"druntime","parentType":"","signature":"EM_REPLACESEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_REPLACESEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SCROLL","package":"druntime","parentType":"","signature":"EM_SCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SCROLLCARET","package":"druntime","parentType":"","signature":"EM_SCROLLCARET","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SCROLLCARET"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETHANDLE","package":"druntime","parentType":"","signature":"EM_SETHANDLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETHANDLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETLIMITTEXT","package":"druntime","parentType":"","signature":"EM_SETLIMITTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETLIMITTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETMARGINS","package":"druntime","parentType":"","signature":"EM_SETMARGINS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETMARGINS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETMODIFY","package":"druntime","parentType":"","signature":"EM_SETMODIFY","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETMODIFY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETPASSWORDCHAR","package":"druntime","parentType":"","signature":"EM_SETPASSWORDCHAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETPASSWORDCHAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETREADONLY","package":"druntime","parentType":"","signature":"EM_SETREADONLY","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETREADONLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETRECT","package":"druntime","parentType":"","signature":"EM_SETRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETRECTNP","package":"druntime","parentType":"","signature":"EM_SETRECTNP","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETRECTNP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETSEL","package":"druntime","parentType":"","signature":"EM_SETSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETTABSTOPS","package":"druntime","parentType":"","signature":"EM_SETTABSTOPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETTABSTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETWORDBREAKPROC","package":"druntime","parentType":"","signature":"EM_SETWORDBREAKPROC","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETWORDBREAKPROC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_UNDO","package":"druntime","parentType":"","signature":"EM_UNDO","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_UNDO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_SETIMESTATUS","package":"druntime","parentType":"","signature":"EM_SETIMESTATUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_SETIMESTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EM_GETIMESTATUS","package":"druntime","parentType":"","signature":"EM_GETIMESTATUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EM_GETIMESTATUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_CHANGE","package":"druntime","parentType":"","signature":"EN_CHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_CHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_ERRSPACE","package":"druntime","parentType":"","signature":"EN_ERRSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_ERRSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_HSCROLL","package":"druntime","parentType":"","signature":"EN_HSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_HSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_KILLFOCUS","package":"druntime","parentType":"","signature":"EN_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_MAXTEXT","package":"druntime","parentType":"","signature":"EN_MAXTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_MAXTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_SETFOCUS","package":"druntime","parentType":"","signature":"EN_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_UPDATE","package":"druntime","parentType":"","signature":"EN_UPDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_UPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EN_VSCROLL","package":"druntime","parentType":"","signature":"EN_VSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#EN_VSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_ADDFILE","package":"druntime","parentType":"","signature":"LB_ADDFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_ADDFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_ADDSTRING","package":"druntime","parentType":"","signature":"LB_ADDSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_ADDSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_DELETESTRING","package":"druntime","parentType":"","signature":"LB_DELETESTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_DELETESTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_DIR","package":"druntime","parentType":"","signature":"LB_DIR","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_DIR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_FINDSTRING","package":"druntime","parentType":"","signature":"LB_FINDSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_FINDSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_FINDSTRINGEXACT","package":"druntime","parentType":"","signature":"LB_FINDSTRINGEXACT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_FINDSTRINGEXACT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETANCHORINDEX","package":"druntime","parentType":"","signature":"LB_GETANCHORINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETANCHORINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETCARETINDEX","package":"druntime","parentType":"","signature":"LB_GETCARETINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETCARETINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETCOUNT","package":"druntime","parentType":"","signature":"LB_GETCOUNT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETCURSEL","package":"druntime","parentType":"","signature":"LB_GETCURSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETCURSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETHORIZONTALEXTENT","package":"druntime","parentType":"","signature":"LB_GETHORIZONTALEXTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETHORIZONTALEXTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETITEMDATA","package":"druntime","parentType":"","signature":"LB_GETITEMDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETITEMDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETITEMHEIGHT","package":"druntime","parentType":"","signature":"LB_GETITEMHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETITEMHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETITEMRECT","package":"druntime","parentType":"","signature":"LB_GETITEMRECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETITEMRECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETLOCALE","package":"druntime","parentType":"","signature":"LB_GETLOCALE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETLOCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETSEL","package":"druntime","parentType":"","signature":"LB_GETSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETSELCOUNT","package":"druntime","parentType":"","signature":"LB_GETSELCOUNT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETSELCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETSELITEMS","package":"druntime","parentType":"","signature":"LB_GETSELITEMS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETSELITEMS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETTEXT","package":"druntime","parentType":"","signature":"LB_GETTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETTEXTLEN","package":"druntime","parentType":"","signature":"LB_GETTEXTLEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETTEXTLEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_GETTOPINDEX","package":"druntime","parentType":"","signature":"LB_GETTOPINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_GETTOPINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_INITSTORAGE","package":"druntime","parentType":"","signature":"LB_INITSTORAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_INITSTORAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_INSERTSTRING","package":"druntime","parentType":"","signature":"LB_INSERTSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_INSERTSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_ITEMFROMPOINT","package":"druntime","parentType":"","signature":"LB_ITEMFROMPOINT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_ITEMFROMPOINT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_RESETCONTENT","package":"druntime","parentType":"","signature":"LB_RESETCONTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_RESETCONTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SELECTSTRING","package":"druntime","parentType":"","signature":"LB_SELECTSTRING","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SELECTSTRING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SELITEMRANGE","package":"druntime","parentType":"","signature":"LB_SELITEMRANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SELITEMRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SELITEMRANGEEX","package":"druntime","parentType":"","signature":"LB_SELITEMRANGEEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SELITEMRANGEEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETANCHORINDEX","package":"druntime","parentType":"","signature":"LB_SETANCHORINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETANCHORINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETCARETINDEX","package":"druntime","parentType":"","signature":"LB_SETCARETINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETCARETINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETCOLUMNWIDTH","package":"druntime","parentType":"","signature":"LB_SETCOLUMNWIDTH","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETCOLUMNWIDTH"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETCOUNT","package":"druntime","parentType":"","signature":"LB_SETCOUNT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETCOUNT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETCURSEL","package":"druntime","parentType":"","signature":"LB_SETCURSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETCURSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETHORIZONTALEXTENT","package":"druntime","parentType":"","signature":"LB_SETHORIZONTALEXTENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETHORIZONTALEXTENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETITEMDATA","package":"druntime","parentType":"","signature":"LB_SETITEMDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETITEMDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETITEMHEIGHT","package":"druntime","parentType":"","signature":"LB_SETITEMHEIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETITEMHEIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETLOCALE","package":"druntime","parentType":"","signature":"LB_SETLOCALE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETLOCALE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETSEL","package":"druntime","parentType":"","signature":"LB_SETSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETTABSTOPS","package":"druntime","parentType":"","signature":"LB_SETTABSTOPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETTABSTOPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_SETTOPINDEX","package":"druntime","parentType":"","signature":"LB_SETTOPINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_SETTOPINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_DBLCLK","package":"druntime","parentType":"","signature":"LBN_DBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_DBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_ERRSPACE","package":"druntime","parentType":"","signature":"LBN_ERRSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_ERRSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_KILLFOCUS","package":"druntime","parentType":"","signature":"LBN_KILLFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_KILLFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_SELCANCEL","package":"druntime","parentType":"","signature":"LBN_SELCANCEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_SELCANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_SELCHANGE","package":"druntime","parentType":"","signature":"LBN_SELCHANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_SELCHANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LBN_SETFOCUS","package":"druntime","parentType":"","signature":"LBN_SETFOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#LBN_SETFOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_ENABLE_ARROWS","package":"druntime","parentType":"","signature":"SBM_ENABLE_ARROWS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_ENABLE_ARROWS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_GETPOS","package":"druntime","parentType":"","signature":"SBM_GETPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_GETPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_GETRANGE","package":"druntime","parentType":"","signature":"SBM_GETRANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_GETRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_GETSCROLLINFO","package":"druntime","parentType":"","signature":"SBM_GETSCROLLINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_GETSCROLLINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_SETPOS","package":"druntime","parentType":"","signature":"SBM_SETPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_SETPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_SETRANGE","package":"druntime","parentType":"","signature":"SBM_SETRANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_SETRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_SETRANGEREDRAW","package":"druntime","parentType":"","signature":"SBM_SETRANGEREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_SETRANGEREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SBM_SETSCROLLINFO","package":"druntime","parentType":"","signature":"SBM_SETSCROLLINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#SBM_SETSCROLLINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STM_GETICON","package":"druntime","parentType":"","signature":"STM_GETICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#STM_GETICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STM_GETIMAGE","package":"druntime","parentType":"","signature":"STM_GETIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#STM_GETIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STM_SETICON","package":"druntime","parentType":"","signature":"STM_SETICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#STM_SETICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STM_SETIMAGE","package":"druntime","parentType":"","signature":"STM_SETIMAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#STM_SETIMAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STN_CLICKED","package":"druntime","parentType":"","signature":"STN_CLICKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#STN_CLICKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STN_DBLCLK","package":"druntime","parentType":"","signature":"STN_DBLCLK","url":"/ddoc/druntime/core/sys/windows/winuser.html#STN_DBLCLK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STN_DISABLE","package":"druntime","parentType":"","signature":"STN_DISABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#STN_DISABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STN_ENABLE","package":"druntime","parentType":"","signature":"STN_ENABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#STN_ENABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"STM_MSGMAX","package":"druntime","parentType":"","signature":"STM_MSGMAX","url":"/ddoc/druntime/core/sys/windows/winuser.html#STM_MSGMAX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DM_GETDEFID","package":"druntime","parentType":"","signature":"DM_GETDEFID","url":"/ddoc/druntime/core/sys/windows/winuser.html#DM_GETDEFID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DM_SETDEFID","package":"druntime","parentType":"","signature":"DM_SETDEFID","url":"/ddoc/druntime/core/sys/windows/winuser.html#DM_SETDEFID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DM_REPOSITION","package":"druntime","parentType":"","signature":"DM_REPOSITION","url":"/ddoc/druntime/core/sys/windows/winuser.html#DM_REPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSM_PAGEINFO","package":"druntime","parentType":"","signature":"PSM_PAGEINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSM_PAGEINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSM_SHEETINFO","package":"druntime","parentType":"","signature":"PSM_SHEETINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSM_SHEETINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_SETACTIVE","package":"druntime","parentType":"","signature":"PSI_SETACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_SETACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_KILLACTIVE","package":"druntime","parentType":"","signature":"PSI_KILLACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_KILLACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_APPLY","package":"druntime","parentType":"","signature":"PSI_APPLY","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_APPLY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_RESET","package":"druntime","parentType":"","signature":"PSI_RESET","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_RESET"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_HASHELP","package":"druntime","parentType":"","signature":"PSI_HASHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_HASHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_HELP","package":"druntime","parentType":"","signature":"PSI_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_CHANGED","package":"druntime","parentType":"","signature":"PSI_CHANGED","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_CHANGED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_GUISTART","package":"druntime","parentType":"","signature":"PSI_GUISTART","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_GUISTART"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_REBOOT","package":"druntime","parentType":"","signature":"PSI_REBOOT","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_REBOOT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PSI_GETSIBLINGS","package":"druntime","parentType":"","signature":"PSI_GETSIBLINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#PSI_GETSIBLINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_WINDOW","package":"druntime","parentType":"","signature":"DCX_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_CACHE","package":"druntime","parentType":"","signature":"DCX_CACHE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_CACHE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_PARENTCLIP","package":"druntime","parentType":"","signature":"DCX_PARENTCLIP","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_PARENTCLIP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_CLIPSIBLINGS","package":"druntime","parentType":"","signature":"DCX_CLIPSIBLINGS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_CLIPSIBLINGS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_CLIPCHILDREN","package":"druntime","parentType":"","signature":"DCX_CLIPCHILDREN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_CLIPCHILDREN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_NORESETATTRS","package":"druntime","parentType":"","signature":"DCX_NORESETATTRS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_NORESETATTRS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_INTERSECTUPDATE","package":"druntime","parentType":"","signature":"DCX_INTERSECTUPDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_INTERSECTUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_LOCKWINDOWUPDATE","package":"druntime","parentType":"","signature":"DCX_LOCKWINDOWUPDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_LOCKWINDOWUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_EXCLUDERGN","package":"druntime","parentType":"","signature":"DCX_EXCLUDERGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_EXCLUDERGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_INTERSECTRGN","package":"druntime","parentType":"","signature":"DCX_INTERSECTRGN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_INTERSECTRGN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_EXCLUDEUPDATE","package":"druntime","parentType":"","signature":"DCX_EXCLUDEUPDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_EXCLUDEUPDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DCX_VALIDATE","package":"druntime","parentType":"","signature":"DCX_VALIDATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DCX_VALIDATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GMDI_GOINTOPOPUPS","package":"druntime","parentType":"","signature":"GMDI_GOINTOPOPUPS","url":"/ddoc/druntime/core/sys/windows/winuser.html#GMDI_GOINTOPOPUPS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GMDI_USEDISABLED","package":"druntime","parentType":"","signature":"GMDI_USEDISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#GMDI_USEDISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_AVAILABLE","package":"druntime","parentType":"","signature":"FKF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_CLICKON","package":"druntime","parentType":"","signature":"FKF_CLICKON","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_CLICKON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_FILTERKEYSON","package":"druntime","parentType":"","signature":"FKF_FILTERKEYSON","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_FILTERKEYSON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_HOTKEYACTIVE","package":"druntime","parentType":"","signature":"FKF_HOTKEYACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_HOTKEYACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_HOTKEYSOUND","package":"druntime","parentType":"","signature":"FKF_HOTKEYSOUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_HOTKEYSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_CONFIRMHOTKEY","package":"druntime","parentType":"","signature":"FKF_CONFIRMHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_CONFIRMHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"FKF_INDICATOR","package":"druntime","parentType":"","signature":"FKF_INDICATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#FKF_INDICATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_HIGHCONTRASTON","package":"druntime","parentType":"","signature":"HCF_HIGHCONTRASTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_HIGHCONTRASTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_AVAILABLE","package":"druntime","parentType":"","signature":"HCF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_HOTKEYACTIVE","package":"druntime","parentType":"","signature":"HCF_HOTKEYACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_HOTKEYACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_CONFIRMHOTKEY","package":"druntime","parentType":"","signature":"HCF_CONFIRMHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_CONFIRMHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_HOTKEYSOUND","package":"druntime","parentType":"","signature":"HCF_HOTKEYSOUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_HOTKEYSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_INDICATOR","package":"druntime","parentType":"","signature":"HCF_INDICATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_INDICATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HCF_HOTKEYAVAILABLE","package":"druntime","parentType":"","signature":"HCF_HOTKEYAVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HCF_HOTKEYAVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_AVAILABLE","package":"druntime","parentType":"","signature":"MKF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_CONFIRMHOTKEY","package":"druntime","parentType":"","signature":"MKF_CONFIRMHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_CONFIRMHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_HOTKEYACTIVE","package":"druntime","parentType":"","signature":"MKF_HOTKEYACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_HOTKEYACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_HOTKEYSOUND","package":"druntime","parentType":"","signature":"MKF_HOTKEYSOUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_HOTKEYSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_INDICATOR","package":"druntime","parentType":"","signature":"MKF_INDICATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_INDICATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_MOUSEKEYSON","package":"druntime","parentType":"","signature":"MKF_MOUSEKEYSON","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_MOUSEKEYSON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_MODIFIERS","package":"druntime","parentType":"","signature":"MKF_MODIFIERS","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_MODIFIERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MKF_REPLACENUMBERS","package":"druntime","parentType":"","signature":"MKF_REPLACENUMBERS","url":"/ddoc/druntime/core/sys/windows/winuser.html#MKF_REPLACENUMBERS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SERKF_ACTIVE","package":"druntime","parentType":"","signature":"SERKF_ACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERKF_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SERKF_AVAILABLE","package":"druntime","parentType":"","signature":"SERKF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERKF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SERKF_INDICATOR","package":"druntime","parentType":"","signature":"SERKF_INDICATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERKF_INDICATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SERKF_SERIALKEYSON","package":"druntime","parentType":"","signature":"SERKF_SERIALKEYSON","url":"/ddoc/druntime/core/sys/windows/winuser.html#SERKF_SERIALKEYSON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSF_AVAILABLE","package":"druntime","parentType":"","signature":"SSF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSF_SOUNDSENTRYON","package":"druntime","parentType":"","signature":"SSF_SOUNDSENTRYON","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSF_SOUNDSENTRYON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSTF_BORDER","package":"druntime","parentType":"","signature":"SSTF_BORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSTF_BORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSTF_CHARS","package":"druntime","parentType":"","signature":"SSTF_CHARS","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSTF_CHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSTF_DISPLAY","package":"druntime","parentType":"","signature":"SSTF_DISPLAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSTF_DISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSTF_NONE","package":"druntime","parentType":"","signature":"SSTF_NONE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSTF_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSGF_DISPLAY","package":"druntime","parentType":"","signature":"SSGF_DISPLAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSGF_DISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSGF_NONE","package":"druntime","parentType":"","signature":"SSGF_NONE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSGF_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSWF_CUSTOM","package":"druntime","parentType":"","signature":"SSWF_CUSTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSWF_CUSTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSWF_DISPLAY","package":"druntime","parentType":"","signature":"SSWF_DISPLAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSWF_DISPLAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSWF_NONE","package":"druntime","parentType":"","signature":"SSWF_NONE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSWF_NONE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSWF_TITLE","package":"druntime","parentType":"","signature":"SSWF_TITLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSWF_TITLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SSWF_WINDOW","package":"druntime","parentType":"","signature":"SSWF_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SSWF_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_AUDIBLEFEEDBACK","package":"druntime","parentType":"","signature":"SKF_AUDIBLEFEEDBACK","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_AUDIBLEFEEDBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_AVAILABLE","package":"druntime","parentType":"","signature":"SKF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_CONFIRMHOTKEY","package":"druntime","parentType":"","signature":"SKF_CONFIRMHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_CONFIRMHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_HOTKEYACTIVE","package":"druntime","parentType":"","signature":"SKF_HOTKEYACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_HOTKEYACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_HOTKEYSOUND","package":"druntime","parentType":"","signature":"SKF_HOTKEYSOUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_HOTKEYSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_INDICATOR","package":"druntime","parentType":"","signature":"SKF_INDICATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_INDICATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_STICKYKEYSON","package":"druntime","parentType":"","signature":"SKF_STICKYKEYSON","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_STICKYKEYSON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_TRISTATE","package":"druntime","parentType":"","signature":"SKF_TRISTATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_TRISTATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SKF_TWOKEYSOFF","package":"druntime","parentType":"","signature":"SKF_TWOKEYSOFF","url":"/ddoc/druntime/core/sys/windows/winuser.html#SKF_TWOKEYSOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TKF_AVAILABLE","package":"druntime","parentType":"","signature":"TKF_AVAILABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#TKF_AVAILABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TKF_CONFIRMHOTKEY","package":"druntime","parentType":"","signature":"TKF_CONFIRMHOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#TKF_CONFIRMHOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TKF_HOTKEYACTIVE","package":"druntime","parentType":"","signature":"TKF_HOTKEYACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#TKF_HOTKEYACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TKF_HOTKEYSOUND","package":"druntime","parentType":"","signature":"TKF_HOTKEYSOUND","url":"/ddoc/druntime/core/sys/windows/winuser.html#TKF_HOTKEYSOUND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TKF_TOGGLEKEYSON","package":"druntime","parentType":"","signature":"TKF_TOGGLEKEYSON","url":"/ddoc/druntime/core/sys/windows/winuser.html#TKF_TOGGLEKEYSON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MDITILE_SKIPDISABLED","package":"druntime","parentType":"","signature":"MDITILE_SKIPDISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDITILE_SKIPDISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MDITILE_HORIZONTAL","package":"druntime","parentType":"","signature":"MDITILE_HORIZONTAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDITILE_HORIZONTAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MDITILE_VERTICAL","package":"druntime","parentType":"","signature":"MDITILE_VERTICAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#MDITILE_VERTICAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TME_HOVER","package":"druntime","parentType":"","signature":"TME_HOVER","url":"/ddoc/druntime/core/sys/windows/winuser.html#TME_HOVER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TME_LEAVE","package":"druntime","parentType":"","signature":"TME_LEAVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#TME_LEAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TME_QUERY","package":"druntime","parentType":"","signature":"TME_QUERY","url":"/ddoc/druntime/core/sys/windows/winuser.html#TME_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"TME_CANCEL","package":"druntime","parentType":"","signature":"TME_CANCEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#TME_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HOVER_DEFAULT","package":"druntime","parentType":"","signature":"HOVER_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HOVER_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_LBUTTON","package":"druntime","parentType":"","signature":"MK_LBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_LBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_RBUTTON","package":"druntime","parentType":"","signature":"MK_RBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_RBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_SHIFT","package":"druntime","parentType":"","signature":"MK_SHIFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_CONTROL","package":"druntime","parentType":"","signature":"MK_CONTROL","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_CONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_MBUTTON","package":"druntime","parentType":"","signature":"MK_MBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_MBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_XBUTTON1","package":"druntime","parentType":"","signature":"MK_XBUTTON1","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_XBUTTON1"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MK_XBUTTON2","package":"druntime","parentType":"","signature":"MK_XBUTTON2","url":"/ddoc/druntime/core/sys/windows/winuser.html#MK_XBUTTON2"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_COMMAND","package":"druntime","parentType":"","signature":"HELP_COMMAND","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_COMMAND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_CONTENTS","package":"druntime","parentType":"","signature":"HELP_CONTENTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_CONTENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_CONTEXT","package":"druntime","parentType":"","signature":"HELP_CONTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_CONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_CONTEXTPOPUP","package":"druntime","parentType":"","signature":"HELP_CONTEXTPOPUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_CONTEXTPOPUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_FORCEFILE","package":"druntime","parentType":"","signature":"HELP_FORCEFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_FORCEFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_HELPONHELP","package":"druntime","parentType":"","signature":"HELP_HELPONHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_HELPONHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_INDEX","package":"druntime","parentType":"","signature":"HELP_INDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_INDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_KEY","package":"druntime","parentType":"","signature":"HELP_KEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_KEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_MULTIKEY","package":"druntime","parentType":"","signature":"HELP_MULTIKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_MULTIKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_PARTIALKEY","package":"druntime","parentType":"","signature":"HELP_PARTIALKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_PARTIALKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_QUIT","package":"druntime","parentType":"","signature":"HELP_QUIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_QUIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_SETCONTENTS","package":"druntime","parentType":"","signature":"HELP_SETCONTENTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_SETCONTENTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_SETINDEX","package":"druntime","parentType":"","signature":"HELP_SETINDEX","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_SETINDEX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_SETWINPOS","package":"druntime","parentType":"","signature":"HELP_SETWINPOS","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_SETWINPOS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_CONTEXTMENU","package":"druntime","parentType":"","signature":"HELP_CONTEXTMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_CONTEXTMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_FINDER","package":"druntime","parentType":"","signature":"HELP_FINDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_FINDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_WM_HELP","package":"druntime","parentType":"","signature":"HELP_WM_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_WM_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_TCARD","package":"druntime","parentType":"","signature":"HELP_TCARD","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_TCARD"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_TCARD_DATA","package":"druntime","parentType":"","signature":"HELP_TCARD_DATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_TCARD_DATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HELP_TCARD_OTHER_CALLER","package":"druntime","parentType":"","signature":"HELP_TCARD_OTHER_CALLER","url":"/ddoc/druntime/core/sys/windows/winuser.html#HELP_TCARD_OTHER_CALLER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_NO_HELP","package":"druntime","parentType":"","signature":"IDH_NO_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_NO_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_MISSING_CONTEXT","package":"druntime","parentType":"","signature":"IDH_MISSING_CONTEXT","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_MISSING_CONTEXT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_GENERIC_HELP_BUTTON","package":"druntime","parentType":"","signature":"IDH_GENERIC_HELP_BUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_GENERIC_HELP_BUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_OK","package":"druntime","parentType":"","signature":"IDH_OK","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_CANCEL","package":"druntime","parentType":"","signature":"IDH_CANCEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_CANCEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDH_HELP","package":"druntime","parentType":"","signature":"IDH_HELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDH_HELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_CTLCODE","package":"druntime","parentType":"","signature":"LB_CTLCODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_CTLCODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_OKAY","package":"druntime","parentType":"","signature":"LB_OKAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_OKAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_ERR","package":"druntime","parentType":"","signature":"LB_ERR","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_ERR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LB_ERRSPACE","package":"druntime","parentType":"","signature":"LB_ERRSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#LB_ERRSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_OKAY","package":"druntime","parentType":"","signature":"CB_OKAY","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_OKAY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_ERR","package":"druntime","parentType":"","signature":"CB_ERR","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_ERR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CB_ERRSPACE","package":"druntime","parentType":"","signature":"CB_ERRSPACE","url":"/ddoc/druntime/core/sys/windows/winuser.html#CB_ERRSPACE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HIDE_WINDOW","package":"druntime","parentType":"","signature":"HIDE_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#HIDE_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SHOW_OPENWINDOW","package":"druntime","parentType":"","signature":"SHOW_OPENWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SHOW_OPENWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SHOW_ICONWINDOW","package":"druntime","parentType":"","signature":"SHOW_ICONWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SHOW_ICONWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SHOW_FULLSCREEN","package":"druntime","parentType":"","signature":"SHOW_FULLSCREEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SHOW_FULLSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SHOW_OPENNOACTIVATE","package":"druntime","parentType":"","signature":"SHOW_OPENNOACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SHOW_OPENNOACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_EXTENDED","package":"druntime","parentType":"","signature":"KF_EXTENDED","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_EXTENDED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_DLGMODE","package":"druntime","parentType":"","signature":"KF_DLGMODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_DLGMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_MENUMODE","package":"druntime","parentType":"","signature":"KF_MENUMODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_MENUMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_ALTDOWN","package":"druntime","parentType":"","signature":"KF_ALTDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_ALTDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_REPEAT","package":"druntime","parentType":"","signature":"KF_REPEAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_REPEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"KF_UP","package":"druntime","parentType":"","signature":"KF_UP","url":"/ddoc/druntime/core/sys/windows/winuser.html#KF_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WSF_VISIBLE","package":"druntime","parentType":"","signature":"WSF_VISIBLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WSF_VISIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PWR_OK","package":"druntime","parentType":"","signature":"PWR_OK","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWR_OK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PWR_FAIL","package":"druntime","parentType":"","signature":"PWR_FAIL","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWR_FAIL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PWR_SUSPENDREQUEST","package":"druntime","parentType":"","signature":"PWR_SUSPENDREQUEST","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWR_SUSPENDREQUEST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PWR_SUSPENDRESUME","package":"druntime","parentType":"","signature":"PWR_SUSPENDRESUME","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWR_SUSPENDRESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PWR_CRITICALRESUME","package":"druntime","parentType":"","signature":"PWR_CRITICALRESUME","url":"/ddoc/druntime/core/sys/windows/winuser.html#PWR_CRITICALRESUME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"NFR_ANSI","package":"druntime","parentType":"","signature":"NFR_ANSI","url":"/ddoc/druntime/core/sys/windows/winuser.html#NFR_ANSI"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"NFR_UNICODE","package":"druntime","parentType":"","signature":"NFR_UNICODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#NFR_UNICODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"NF_QUERY","package":"druntime","parentType":"","signature":"NF_QUERY","url":"/ddoc/druntime/core/sys/windows/winuser.html#NF_QUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"NF_REQUERY","package":"druntime","parentType":"","signature":"NF_REQUERY","url":"/ddoc/druntime/core/sys/windows/winuser.html#NF_REQUERY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MENULOOP_WINDOW","package":"druntime","parentType":"","signature":"MENULOOP_WINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENULOOP_WINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MENULOOP_POPUP","package":"druntime","parentType":"","signature":"MENULOOP_POPUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MENULOOP_POPUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_LEFT","package":"druntime","parentType":"","signature":"WMSZ_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_RIGHT","package":"druntime","parentType":"","signature":"WMSZ_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_TOP","package":"druntime","parentType":"","signature":"WMSZ_TOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_TOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_TOPLEFT","package":"druntime","parentType":"","signature":"WMSZ_TOPLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_TOPLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_TOPRIGHT","package":"druntime","parentType":"","signature":"WMSZ_TOPRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_TOPRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_BOTTOM","package":"druntime","parentType":"","signature":"WMSZ_BOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_BOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_BOTTOMLEFT","package":"druntime","parentType":"","signature":"WMSZ_BOTTOMLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_BOTTOMLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WMSZ_BOTTOMRIGHT","package":"druntime","parentType":"","signature":"WMSZ_BOTTOMRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WMSZ_BOTTOMRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTERROR","package":"druntime","parentType":"","signature":"HTERROR","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTERROR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTTRANSPARENT","package":"druntime","parentType":"","signature":"HTTRANSPARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTTRANSPARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTNOWHERE","package":"druntime","parentType":"","signature":"HTNOWHERE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTNOWHERE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTCLIENT","package":"druntime","parentType":"","signature":"HTCLIENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTCAPTION","package":"druntime","parentType":"","signature":"HTCAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTCAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTSYSMENU","package":"druntime","parentType":"","signature":"HTSYSMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTSYSMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTGROWBOX","package":"druntime","parentType":"","signature":"HTGROWBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTGROWBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTSIZE","package":"druntime","parentType":"","signature":"HTSIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTSIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTMENU","package":"druntime","parentType":"","signature":"HTMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTHSCROLL","package":"druntime","parentType":"","signature":"HTHSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTHSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTVSCROLL","package":"druntime","parentType":"","signature":"HTVSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTVSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTMINBUTTON","package":"druntime","parentType":"","signature":"HTMINBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTMINBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTMAXBUTTON","package":"druntime","parentType":"","signature":"HTMAXBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTMAXBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTREDUCE","package":"druntime","parentType":"","signature":"HTREDUCE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTREDUCE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTZOOM","package":"druntime","parentType":"","signature":"HTZOOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTLEFT","package":"druntime","parentType":"","signature":"HTLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTSIZEFIRST","package":"druntime","parentType":"","signature":"HTSIZEFIRST","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTSIZEFIRST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTRIGHT","package":"druntime","parentType":"","signature":"HTRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTTOP","package":"druntime","parentType":"","signature":"HTTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTTOPLEFT","package":"druntime","parentType":"","signature":"HTTOPLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTTOPLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTTOPRIGHT","package":"druntime","parentType":"","signature":"HTTOPRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTTOPRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTBOTTOM","package":"druntime","parentType":"","signature":"HTBOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTBOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTBOTTOMLEFT","package":"druntime","parentType":"","signature":"HTBOTTOMLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTBOTTOMLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTBOTTOMRIGHT","package":"druntime","parentType":"","signature":"HTBOTTOMRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTBOTTOMRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTSIZELAST","package":"druntime","parentType":"","signature":"HTSIZELAST","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTSIZELAST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTBORDER","package":"druntime","parentType":"","signature":"HTBORDER","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTBORDER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTOBJECT","package":"druntime","parentType":"","signature":"HTOBJECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTOBJECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTCLOSE","package":"druntime","parentType":"","signature":"HTCLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTCLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HTHELP","package":"druntime","parentType":"","signature":"HTHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#HTHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MA_ACTIVATE","package":"druntime","parentType":"","signature":"MA_ACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MA_ACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MA_ACTIVATEANDEAT","package":"druntime","parentType":"","signature":"MA_ACTIVATEANDEAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MA_ACTIVATEANDEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MA_NOACTIVATE","package":"druntime","parentType":"","signature":"MA_NOACTIVATE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MA_NOACTIVATE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MA_NOACTIVATEANDEAT","package":"druntime","parentType":"","signature":"MA_NOACTIVATEANDEAT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MA_NOACTIVATEANDEAT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZE_RESTORED","package":"druntime","parentType":"","signature":"SIZE_RESTORED","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZE_RESTORED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZE_MINIMIZED","package":"druntime","parentType":"","signature":"SIZE_MINIMIZED","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZE_MINIMIZED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZE_MAXIMIZED","package":"druntime","parentType":"","signature":"SIZE_MAXIMIZED","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZE_MAXIMIZED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZE_MAXSHOW","package":"druntime","parentType":"","signature":"SIZE_MAXSHOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZE_MAXSHOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZE_MAXHIDE","package":"druntime","parentType":"","signature":"SIZE_MAXHIDE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZE_MAXHIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZENORMAL","package":"druntime","parentType":"","signature":"SIZENORMAL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZENORMAL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZEICONIC","package":"druntime","parentType":"","signature":"SIZEICONIC","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZEICONIC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZEFULLSCREEN","package":"druntime","parentType":"","signature":"SIZEFULLSCREEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZEFULLSCREEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZEZOOMSHOW","package":"druntime","parentType":"","signature":"SIZEZOOMSHOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZEZOOMSHOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SIZEZOOMHIDE","package":"druntime","parentType":"","signature":"SIZEZOOMHIDE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SIZEZOOMHIDE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_ALIGNTOP","package":"druntime","parentType":"","signature":"WVR_ALIGNTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_ALIGNTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_ALIGNLEFT","package":"druntime","parentType":"","signature":"WVR_ALIGNLEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_ALIGNLEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_ALIGNBOTTOM","package":"druntime","parentType":"","signature":"WVR_ALIGNBOTTOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_ALIGNBOTTOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_ALIGNRIGHT","package":"druntime","parentType":"","signature":"WVR_ALIGNRIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_ALIGNRIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_HREDRAW","package":"druntime","parentType":"","signature":"WVR_HREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_HREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_VREDRAW","package":"druntime","parentType":"","signature":"WVR_VREDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_VREDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_REDRAW","package":"druntime","parentType":"","signature":"WVR_REDRAW","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_REDRAW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WVR_VALIDRECTS","package":"druntime","parentType":"","signature":"WVR_VALIDRECTS","url":"/ddoc/druntime/core/sys/windows/winuser.html#WVR_VALIDRECTS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_CHECKVISIBLE","package":"druntime","parentType":"","signature":"PRF_CHECKVISIBLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_CHECKVISIBLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_NONCLIENT","package":"druntime","parentType":"","signature":"PRF_NONCLIENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_NONCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_CLIENT","package":"druntime","parentType":"","signature":"PRF_CLIENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_CLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_ERASEBKGND","package":"druntime","parentType":"","signature":"PRF_ERASEBKGND","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_ERASEBKGND"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_CHILDREN","package":"druntime","parentType":"","signature":"PRF_CHILDREN","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_CHILDREN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"PRF_OWNED","package":"druntime","parentType":"","signature":"PRF_OWNED","url":"/ddoc/druntime/core/sys/windows/winuser.html#PRF_OWNED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDANI_OPEN","package":"druntime","parentType":"","signature":"IDANI_OPEN","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDANI_OPEN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDANI_CLOSE","package":"druntime","parentType":"","signature":"IDANI_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDANI_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDANI_CAPTION","package":"druntime","parentType":"","signature":"IDANI_CAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDANI_CAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WPF_RESTORETOMAXIMIZED","package":"druntime","parentType":"","signature":"WPF_RESTORETOMAXIMIZED","url":"/ddoc/druntime/core/sys/windows/winuser.html#WPF_RESTORETOMAXIMIZED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WPF_SETMINPOSITION","package":"druntime","parentType":"","signature":"WPF_SETMINPOSITION","url":"/ddoc/druntime/core/sys/windows/winuser.html#WPF_SETMINPOSITION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODT_MENU","package":"druntime","parentType":"","signature":"ODT_MENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODT_MENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODT_LISTBOX","package":"druntime","parentType":"","signature":"ODT_LISTBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODT_LISTBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODT_COMBOBOX","package":"druntime","parentType":"","signature":"ODT_COMBOBOX","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODT_COMBOBOX"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODT_BUTTON","package":"druntime","parentType":"","signature":"ODT_BUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODT_BUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODT_STATIC","package":"druntime","parentType":"","signature":"ODT_STATIC","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODT_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODA_DRAWENTIRE","package":"druntime","parentType":"","signature":"ODA_DRAWENTIRE","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODA_DRAWENTIRE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODA_SELECT","package":"druntime","parentType":"","signature":"ODA_SELECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODA_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODA_FOCUS","package":"druntime","parentType":"","signature":"ODA_FOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODA_FOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_SELECTED","package":"druntime","parentType":"","signature":"ODS_SELECTED","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_SELECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_GRAYED","package":"druntime","parentType":"","signature":"ODS_GRAYED","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_GRAYED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_DISABLED","package":"druntime","parentType":"","signature":"ODS_DISABLED","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_DISABLED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_CHECKED","package":"druntime","parentType":"","signature":"ODS_CHECKED","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_CHECKED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_FOCUS","package":"druntime","parentType":"","signature":"ODS_FOCUS","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_FOCUS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_DEFAULT","package":"druntime","parentType":"","signature":"ODS_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ODS_COMBOBOXEDIT","package":"druntime","parentType":"","signature":"ODS_COMBOBOXEDIT","url":"/ddoc/druntime/core/sys/windows/winuser.html#ODS_COMBOBOXEDIT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDHOT_SNAPWINDOW","package":"druntime","parentType":"","signature":"IDHOT_SNAPWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDHOT_SNAPWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"IDHOT_SNAPDESKTOP","package":"druntime","parentType":"","signature":"IDHOT_SNAPDESKTOP","url":"/ddoc/druntime/core/sys/windows/winuser.html#IDHOT_SNAPDESKTOP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DBWF_LPARAMPOINTER","package":"druntime","parentType":"","signature":"DBWF_LPARAMPOINTER","url":"/ddoc/druntime/core/sys/windows/winuser.html#DBWF_LPARAMPOINTER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGWINDOWEXTRA","package":"druntime","parentType":"","signature":"DLGWINDOWEXTRA","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGWINDOWEXTRA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MNC_IGNORE","package":"druntime","parentType":"","signature":"MNC_IGNORE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MNC_IGNORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MNC_CLOSE","package":"druntime","parentType":"","signature":"MNC_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MNC_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MNC_EXECUTE","package":"druntime","parentType":"","signature":"MNC_EXECUTE","url":"/ddoc/druntime/core/sys/windows/winuser.html#MNC_EXECUTE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MNC_SELECT","package":"druntime","parentType":"","signature":"MNC_SELECT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MNC_SELECT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_EXECUTABLE","package":"druntime","parentType":"","signature":"DOF_EXECUTABLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_EXECUTABLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_DOCUMENT","package":"druntime","parentType":"","signature":"DOF_DOCUMENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_DOCUMENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_DIRECTORY","package":"druntime","parentType":"","signature":"DOF_DIRECTORY","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_DIRECTORY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_MULTIPLE","package":"druntime","parentType":"","signature":"DOF_MULTIPLE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_MULTIPLE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_PROGMAN","package":"druntime","parentType":"","signature":"DOF_PROGMAN","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_PROGMAN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DOF_SHELLDATA","package":"druntime","parentType":"","signature":"DOF_SHELLDATA","url":"/ddoc/druntime/core/sys/windows/winuser.html#DOF_SHELLDATA"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DO_DROPFILE","package":"druntime","parentType":"","signature":"DO_DROPFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DO_DROPFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DO_PRINTFILE","package":"druntime","parentType":"","signature":"DO_PRINTFILE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DO_PRINTFILE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_SIZE","package":"druntime","parentType":"","signature":"SC_SIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_SIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_MOVE","package":"druntime","parentType":"","signature":"SC_MOVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_MOVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_MINIMIZE","package":"druntime","parentType":"","signature":"SC_MINIMIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_MINIMIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_ICON","package":"druntime","parentType":"","signature":"SC_ICON","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_ICON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_MAXIMIZE","package":"druntime","parentType":"","signature":"SC_MAXIMIZE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_MAXIMIZE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_ZOOM","package":"druntime","parentType":"","signature":"SC_ZOOM","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_ZOOM"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_NEXTWINDOW","package":"druntime","parentType":"","signature":"SC_NEXTWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_NEXTWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_PREVWINDOW","package":"druntime","parentType":"","signature":"SC_PREVWINDOW","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_PREVWINDOW"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_CLOSE","package":"druntime","parentType":"","signature":"SC_CLOSE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_CLOSE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_VSCROLL","package":"druntime","parentType":"","signature":"SC_VSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_VSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_HSCROLL","package":"druntime","parentType":"","signature":"SC_HSCROLL","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_HSCROLL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_MOUSEMENU","package":"druntime","parentType":"","signature":"SC_MOUSEMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_MOUSEMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_KEYMENU","package":"druntime","parentType":"","signature":"SC_KEYMENU","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_KEYMENU"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_ARRANGE","package":"druntime","parentType":"","signature":"SC_ARRANGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_ARRANGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_RESTORE","package":"druntime","parentType":"","signature":"SC_RESTORE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_RESTORE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_TASKLIST","package":"druntime","parentType":"","signature":"SC_TASKLIST","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_TASKLIST"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_SCREENSAVE","package":"druntime","parentType":"","signature":"SC_SCREENSAVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_SCREENSAVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_HOTKEY","package":"druntime","parentType":"","signature":"SC_HOTKEY","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_HOTKEY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_DEFAULT","package":"druntime","parentType":"","signature":"SC_DEFAULT","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_DEFAULT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_MONITORPOWER","package":"druntime","parentType":"","signature":"SC_MONITORPOWER","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_MONITORPOWER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_CONTEXTHELP","package":"druntime","parentType":"","signature":"SC_CONTEXTHELP","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_CONTEXTHELP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"SC_SEPARATOR","package":"druntime","parentType":"","signature":"SC_SEPARATOR","url":"/ddoc/druntime/core/sys/windows/winuser.html#SC_SEPARATOR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EC_LEFTMARGIN","package":"druntime","parentType":"","signature":"EC_LEFTMARGIN","url":"/ddoc/druntime/core/sys/windows/winuser.html#EC_LEFTMARGIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EC_RIGHTMARGIN","package":"druntime","parentType":"","signature":"EC_RIGHTMARGIN","url":"/ddoc/druntime/core/sys/windows/winuser.html#EC_RIGHTMARGIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EC_USEFONTINFO","package":"druntime","parentType":"","signature":"EC_USEFONTINFO","url":"/ddoc/druntime/core/sys/windows/winuser.html#EC_USEFONTINFO"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DC_HASDEFID","package":"druntime","parentType":"","signature":"DC_HASDEFID","url":"/ddoc/druntime/core/sys/windows/winuser.html#DC_HASDEFID"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_WANTARROWS","package":"druntime","parentType":"","signature":"DLGC_WANTARROWS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_WANTARROWS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_WANTTAB","package":"druntime","parentType":"","signature":"DLGC_WANTTAB","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_WANTTAB"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_WANTALLKEYS","package":"druntime","parentType":"","signature":"DLGC_WANTALLKEYS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_WANTALLKEYS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_WANTMESSAGE","package":"druntime","parentType":"","signature":"DLGC_WANTMESSAGE","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_WANTMESSAGE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_HASSETSEL","package":"druntime","parentType":"","signature":"DLGC_HASSETSEL","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_HASSETSEL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_DEFPUSHBUTTON","package":"druntime","parentType":"","signature":"DLGC_DEFPUSHBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_DEFPUSHBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_UNDEFPUSHBUTTON","package":"druntime","parentType":"","signature":"DLGC_UNDEFPUSHBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_UNDEFPUSHBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_RADIOBUTTON","package":"druntime","parentType":"","signature":"DLGC_RADIOBUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_RADIOBUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_WANTCHARS","package":"druntime","parentType":"","signature":"DLGC_WANTCHARS","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_WANTCHARS"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_STATIC","package":"druntime","parentType":"","signature":"DLGC_STATIC","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_STATIC"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"DLGC_BUTTON","package":"druntime","parentType":"","signature":"DLGC_BUTTON","url":"/ddoc/druntime/core/sys/windows/winuser.html#DLGC_BUTTON"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WA_INACTIVE","package":"druntime","parentType":"","signature":"WA_INACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WA_INACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WA_ACTIVE","package":"druntime","parentType":"","signature":"WA_ACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WA_ACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WA_CLICKACTIVE","package":"druntime","parentType":"","signature":"WA_CLICKACTIVE","url":"/ddoc/druntime/core/sys/windows/winuser.html#WA_CLICKACTIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ICON_SMALL","package":"druntime","parentType":"","signature":"ICON_SMALL","url":"/ddoc/druntime/core/sys/windows/winuser.html#ICON_SMALL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ICON_BIG","package":"druntime","parentType":"","signature":"ICON_BIG","url":"/ddoc/druntime/core/sys/windows/winuser.html#ICON_BIG"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"HBMMENU_CALLBACK","package":"druntime","parentType":"","signature":"HBITMAP HBMMENU_CALLBACK","url":"/ddoc/druntime/core/sys/windows/winuser.html#HBMMENU_CALLBACK"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_ALT","package":"druntime","parentType":"","signature":"MOD_ALT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_ALT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_CONTROL","package":"druntime","parentType":"","signature":"MOD_CONTROL","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_CONTROL"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_SHIFT","package":"druntime","parentType":"","signature":"MOD_SHIFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_SHIFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_WIN","package":"druntime","parentType":"","signature":"MOD_WIN","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_WIN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_IGNORE_ALL_MODIFIER","package":"druntime","parentType":"","signature":"MOD_IGNORE_ALL_MODIFIER","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_IGNORE_ALL_MODIFIER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_ON_KEYUP","package":"druntime","parentType":"","signature":"MOD_ON_KEYUP","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_ON_KEYUP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_RIGHT","package":"druntime","parentType":"","signature":"MOD_RIGHT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_RIGHT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MOD_LEFT","package":"druntime","parentType":"","signature":"MOD_LEFT","url":"/ddoc/druntime/core/sys/windows/winuser.html#MOD_LEFT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LLKHF_EXTENDED","package":"druntime","parentType":"","signature":"LLKHF_EXTENDED","url":"/ddoc/druntime/core/sys/windows/winuser.html#LLKHF_EXTENDED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LLKHF_INJECTED","package":"druntime","parentType":"","signature":"LLKHF_INJECTED","url":"/ddoc/druntime/core/sys/windows/winuser.html#LLKHF_INJECTED"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LLKHF_ALTDOWN","package":"druntime","parentType":"","signature":"LLKHF_ALTDOWN","url":"/ddoc/druntime/core/sys/windows/winuser.html#LLKHF_ALTDOWN"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"LLKHF_UP","package":"druntime","parentType":"","signature":"LLKHF_UP","url":"/ddoc/druntime/core/sys/windows/winuser.html#LLKHF_UP"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CURSOR_SHOWING","package":"druntime","parentType":"","signature":"CURSOR_SHOWING","url":"/ddoc/druntime/core/sys/windows/winuser.html#CURSOR_SHOWING"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"WS_ACTIVECAPTION","package":"druntime","parentType":"","signature":"WS_ACTIVECAPTION","url":"/ddoc/druntime/core/sys/windows/winuser.html#WS_ACTIVECAPTION"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ENDSESSION_LOGOFF","package":"druntime","parentType":"","signature":"ENDSESSION_LOGOFF","url":"/ddoc/druntime/core/sys/windows/winuser.html#ENDSESSION_LOGOFF"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GA_PARENT","package":"druntime","parentType":"","signature":"GA_PARENT","url":"/ddoc/druntime/core/sys/windows/winuser.html#GA_PARENT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GA_ROOT","package":"druntime","parentType":"","signature":"GA_ROOT","url":"/ddoc/druntime/core/sys/windows/winuser.html#GA_ROOT"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"GA_ROOTOWNER","package":"druntime","parentType":"","signature":"GA_ROOTOWNER","url":"/ddoc/druntime/core/sys/windows/winuser.html#GA_ROOTOWNER"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CCHILDREN_SCROLLBAR","package":"druntime","parentType":"","signature":"CCHILDREN_SCROLLBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#CCHILDREN_SCROLLBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CCHILDREN_TITLEBAR","package":"druntime","parentType":"","signature":"CCHILDREN_TITLEBAR","url":"/ddoc/druntime/core/sys/windows/winuser.html#CCHILDREN_TITLEBAR"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CCHDEVICENAME","package":"druntime","parentType":"","signature":"CCHDEVICENAME","url":"/ddoc/druntime/core/sys/windows/winuser.html#CCHDEVICENAME"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"MONITORINFOF_PRIMARY","package":"druntime","parentType":"","signature":"MONITORINFOF_PRIMARY","url":"/ddoc/druntime/core/sys/windows/winuser.html#MONITORINFOF_PRIMARY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"EDS_RAWMODE","package":"druntime","parentType":"","signature":"EDS_RAWMODE","url":"/ddoc/druntime/core/sys/windows/winuser.html#EDS_RAWMODE"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"ASFW_ANY","package":"druntime","parentType":"","signature":"DWORD ASFW_ANY","url":"/ddoc/druntime/core/sys/windows/winuser.html#ASFW_ANY"},{"doc":"","kind":"variable","module":"core.sys.windows.winuser","name":"CHILDID_SELF","package":"druntime","parentType":"","signature":"CHILDID_SELF","url":"/ddoc/druntime/core/sys/windows/winuser.html#CHILDID_SELF"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.winver","name":"core.sys.windows.winver","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/winver.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerFindFileA","package":"druntime","parentType":"","signature":"DWORD VerFindFileA(DWORD,  LPCSTR,  LPCSTR,  LPCSTR,  LPSTR,  PUINT,  LPSTR,\n       PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerFindFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerFindFileW","package":"druntime","parentType":"","signature":"DWORD VerFindFileW(DWORD,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPWSTR,  PUINT,  LPWSTR,\n       PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerFindFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerInstallFileA","package":"druntime","parentType":"","signature":"DWORD VerInstallFileA(DWORD,  LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR,  LPCSTR,  LPSTR,\n       PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerInstallFileA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerInstallFileW","package":"druntime","parentType":"","signature":"DWORD VerInstallFileW(DWORD,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR,  LPCWSTR,\n       LPWSTR,  PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerInstallFileW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"GetFileVersionInfoSizeA","package":"druntime","parentType":"","signature":"DWORD GetFileVersionInfoSizeA(LPCSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winver/GetFileVersionInfoSizeA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"GetFileVersionInfoSizeW","package":"druntime","parentType":"","signature":"DWORD GetFileVersionInfoSizeW(LPCWSTR,  PDWORD)","url":"/ddoc/druntime/core/sys/windows/winver/GetFileVersionInfoSizeW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"GetFileVersionInfoA","package":"druntime","parentType":"","signature":"BOOL GetFileVersionInfoA(LPCSTR,  DWORD,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winver/GetFileVersionInfoA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"GetFileVersionInfoW","package":"druntime","parentType":"","signature":"BOOL GetFileVersionInfoW(LPCWSTR,  DWORD,  DWORD,  PVOID)","url":"/ddoc/druntime/core/sys/windows/winver/GetFileVersionInfoW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerLanguageNameA","package":"druntime","parentType":"","signature":"DWORD VerLanguageNameA(DWORD,  LPSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winver/VerLanguageNameA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerLanguageNameW","package":"druntime","parentType":"","signature":"DWORD VerLanguageNameW(DWORD,  LPWSTR,  DWORD)","url":"/ddoc/druntime/core/sys/windows/winver/VerLanguageNameW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerQueryValueA","package":"druntime","parentType":"","signature":"BOOL VerQueryValueA(LPCVOID,  LPCSTR,  LPVOID *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerQueryValueA.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"VerQueryValueW","package":"druntime","parentType":"","signature":"BOOL VerQueryValueW(LPCVOID,  LPCWSTR,  LPVOID *,  PUINT)","url":"/ddoc/druntime/core/sys/windows/winver/VerQueryValueW.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsVersionOrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsVersionOrGreater(WORD wMajorVersion,  WORD wMinorVersion,  WORD wServicePackMajor)","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsVersionOrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsXPOrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsXPOrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsXPOrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsXPSP1OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsXPSP1OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsXPSP1OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsXPSP2OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsXPSP2OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsXPSP2OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsXPSP3OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsXPSP3OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsXPSP3OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsVistaOrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsVistaOrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsVistaOrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsVistaSP1OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsVistaSP1OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsVistaSP1OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsVistaSP2OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsVistaSP2OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsVistaSP2OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindows7OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindows7OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindows7OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindows7SP1OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindows7SP1OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindows7SP1OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindows8OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindows8OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindows8OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindows8Point1OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindows8Point1OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindows8Point1OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindows10OrGreater","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindows10OrGreater()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindows10OrGreater.html"},{"doc":"","kind":"function","module":"core.sys.windows.winver","name":"IsWindowsServer","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI IsWindowsServer()","url":"/ddoc/druntime/core/sys/windows/winver/IsWindowsServer.html"},{"doc":"","kind":"struct","module":"core.sys.windows.winver","name":"VS_FIXEDFILEINFO","package":"druntime","parentType":"","signature":"VS_FIXEDFILEINFO","url":"/ddoc/druntime/core/sys/windows/winver.html#VS_FIXEDFILEINFO"},{"doc":"","kind":"alias","module":"core.sys.windows.winver","name":"VERSIONHELPERAPI","package":"druntime","parentType":"","signature":"VERSIONHELPERAPI = BOOL","url":"/ddoc/druntime/core/sys/windows/winver.html#VERSIONHELPERAPI"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wtsapi32","name":"core.sys.windows.wtsapi32","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateServersW","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateServersW(LPWSTR pDomainName,  DWORD Reserved,  DWORD Version,  PWTS_SERVER_INFOW *  ppServerInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateServersW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateServersA","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateServersA(LPSTR pDomainName,  DWORD Reserved,  DWORD Version,  PWTS_SERVER_INFOA *  ppServerInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateServersA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSOpenServerW","package":"druntime","parentType":"","signature":"HANDLE WTSOpenServerW(LPWSTR pServerName)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSOpenServerW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSOpenServerA","package":"druntime","parentType":"","signature":"HANDLE WTSOpenServerA(LPSTR pServerName)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSOpenServerA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSCloseServer","package":"druntime","parentType":"","signature":"VOID WTSCloseServer(HANDLE hServer)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSCloseServer.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateSessionsW","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateSessionsW(HANDLE hServer,  DWORD Reserved,  DWORD Version,  PWTS_SESSION_INFOW *  ppSessionInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateSessionsW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateSessionsA","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateSessionsA(HANDLE hServer,  DWORD Reserved,  DWORD Version,  PWTS_SESSION_INFOA *  ppSessionInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateSessionsA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateProcessesW","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateProcessesW(HANDLE hServer,  DWORD Reserved,  DWORD Version,  PWTS_PROCESS_INFOW *  ppProcessInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateProcessesW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSEnumerateProcessesA","package":"druntime","parentType":"","signature":"WINBOOL WTSEnumerateProcessesA(HANDLE hServer,  DWORD Reserved,  DWORD Version,  PWTS_PROCESS_INFOA *  ppProcessInfo,  DWORD *  pCount)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSEnumerateProcessesA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSTerminateProcess","package":"druntime","parentType":"","signature":"WINBOOL WTSTerminateProcess(HANDLE hServer,  DWORD ProcessId,  DWORD ExitCode)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSTerminateProcess.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSQuerySessionInformationW","package":"druntime","parentType":"","signature":"WINBOOL WTSQuerySessionInformationW(HANDLE hServer,  DWORD SessionId,  WTS_INFO_CLASS WTSInfoClass,  LPWSTR *  ppBuffer,  DWORD *  pBytesReturned)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSQuerySessionInformationW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSQuerySessionInformationA","package":"druntime","parentType":"","signature":"WINBOOL WTSQuerySessionInformationA(HANDLE hServer,  DWORD SessionId,  WTS_INFO_CLASS WTSInfoClass,  LPSTR *  ppBuffer,  DWORD *  pBytesReturned)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSQuerySessionInformationA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSQueryUserConfigW","package":"druntime","parentType":"","signature":"WINBOOL WTSQueryUserConfigW(LPWSTR pServerName,  LPWSTR pUserName,  WTS_CONFIG_CLASS WTSConfigClass,  LPWSTR *  ppBuffer,  DWORD *  pBytesReturned)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSQueryUserConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSQueryUserConfigA","package":"druntime","parentType":"","signature":"WINBOOL WTSQueryUserConfigA(LPSTR pServerName,  LPSTR pUserName,  WTS_CONFIG_CLASS WTSConfigClass,  LPSTR *  ppBuffer,  DWORD *  pBytesReturned)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSQueryUserConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSSetUserConfigW","package":"druntime","parentType":"","signature":"WINBOOL WTSSetUserConfigW(LPWSTR pServerName,  LPWSTR pUserName,  WTS_CONFIG_CLASS WTSConfigClass,  LPWSTR pBuffer,  DWORD DataLength)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSSetUserConfigW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSSetUserConfigA","package":"druntime","parentType":"","signature":"WINBOOL WTSSetUserConfigA(LPSTR pServerName,  LPSTR pUserName,  WTS_CONFIG_CLASS WTSConfigClass,  LPSTR pBuffer,  DWORD DataLength)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSSetUserConfigA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSSendMessageW","package":"druntime","parentType":"","signature":"WINBOOL WTSSendMessageW(HANDLE hServer,  DWORD SessionId,  LPWSTR pTitle,  DWORD TitleLength,  LPWSTR pMessage,  DWORD MessageLength,  DWORD Style,  DWORD Timeout,  DWORD *  pResponse,  WINBOOL bWait)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSSendMessageW.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSSendMessageA","package":"druntime","parentType":"","signature":"WINBOOL WTSSendMessageA(HANDLE hServer,  DWORD SessionId,  LPSTR pTitle,  DWORD TitleLength,  LPSTR pMessage,  DWORD MessageLength,  DWORD Style,  DWORD Timeout,  DWORD *  pResponse,  WINBOOL bWait)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSSendMessageA.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSDisconnectSession","package":"druntime","parentType":"","signature":"WINBOOL WTSDisconnectSession(HANDLE hServer,  DWORD SessionId,  WINBOOL bWait)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSDisconnectSession.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSLogoffSession","package":"druntime","parentType":"","signature":"WINBOOL WTSLogoffSession(HANDLE hServer,  DWORD SessionId,  WINBOOL bWait)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSLogoffSession.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSShutdownSystem","package":"druntime","parentType":"","signature":"WINBOOL WTSShutdownSystem(HANDLE hServer,  DWORD ShutdownFlag)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSShutdownSystem.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSWaitSystemEvent","package":"druntime","parentType":"","signature":"WINBOOL WTSWaitSystemEvent(HANDLE hServer,  DWORD EventMask,  DWORD *  pEventFlags)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSWaitSystemEvent.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelOpen","package":"druntime","parentType":"","signature":"HANDLE WTSVirtualChannelOpen(HANDLE hServer,  DWORD SessionId,  LPSTR pVirtualName)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelOpen.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelClose","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelClose(HANDLE hChannelHandle)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelClose.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelRead","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelRead(HANDLE hChannelHandle,  ULONG TimeOut,  PCHAR Buffer,  ULONG BufferSize,  PULONG pBytesRead)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelRead.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelWrite","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelWrite(HANDLE hChannelHandle,  PCHAR Buffer,  ULONG Length,  PULONG pBytesWritten)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelWrite.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelPurgeInput","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelPurgeInput(HANDLE hChannelHandle)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelPurgeInput.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelPurgeOutput","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelPurgeOutput(HANDLE hChannelHandle)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelPurgeOutput.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSVirtualChannelQuery","package":"druntime","parentType":"","signature":"WINBOOL WTSVirtualChannelQuery(HANDLE hChannelHandle,  WTS_VIRTUAL_CLASS,  PVOID *  ppBuffer,  DWORD *  pBytesReturned)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSVirtualChannelQuery.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSFreeMemory","package":"druntime","parentType":"","signature":"VOID WTSFreeMemory(PVOID pMemory)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSFreeMemory.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSRegisterSessionNotification","package":"druntime","parentType":"","signature":"WINBOOL WTSRegisterSessionNotification(HWND hWnd,  DWORD dwFlags)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSRegisterSessionNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSUnRegisterSessionNotification","package":"druntime","parentType":"","signature":"WINBOOL WTSUnRegisterSessionNotification(HWND hWnd)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSUnRegisterSessionNotification.html"},{"doc":"","kind":"function","module":"core.sys.windows.wtsapi32","name":"WTSQueryUserToken","package":"druntime","parentType":"","signature":"WINBOOL WTSQueryUserToken(ULONG SessionId,  PHANDLE phToken)","url":"/ddoc/druntime/core/sys/windows/wtsapi32/WTSQueryUserToken.html"},{"doc":"","kind":"enum","module":"core.sys.windows.wtsapi32","name":"WTS_CONNECTSTATE_CLASS","package":"druntime","parentType":"","signature":"WTS_CONNECTSTATE_CLASS","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSActive","package":"druntime","parentType":"","signature":"WTSActive = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSConnected","package":"druntime","parentType":"","signature":"WTSConnected = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSConnectQuery","package":"druntime","parentType":"","signature":"WTSConnectQuery = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSShadow","package":"druntime","parentType":"","signature":"WTSShadow = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSDisconnected","package":"druntime","parentType":"","signature":"WTSDisconnected = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSIdle","package":"druntime","parentType":"","signature":"WTSIdle = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSListen","package":"druntime","parentType":"","signature":"WTSListen = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSReset","package":"druntime","parentType":"","signature":"WTSReset = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSDown","package":"druntime","parentType":"","signature":"WTSDown = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSInit","package":"druntime","parentType":"","signature":"WTSInit = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONNECTSTATE_CLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_SERVER_INFOW","package":"druntime","parentType":"","signature":"WTS_SERVER_INFOW","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_SERVER_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_SERVER_INFOW","package":"druntime","parentType":"","signature":"PWTS_SERVER_INFOW = WTS_SERVER_INFOW *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_SERVER_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_SERVER_INFOA","package":"druntime","parentType":"","signature":"WTS_SERVER_INFOA","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_SERVER_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_SERVER_INFOA","package":"druntime","parentType":"","signature":"PWTS_SERVER_INFOA = WTS_SERVER_INFOA *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_SERVER_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_SESSION_INFOW","package":"druntime","parentType":"","signature":"WTS_SESSION_INFOW","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_SESSION_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_SESSION_INFOW","package":"druntime","parentType":"","signature":"PWTS_SESSION_INFOW = WTS_SESSION_INFOW *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_SESSION_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_SESSION_INFOA","package":"druntime","parentType":"","signature":"WTS_SESSION_INFOA","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_SESSION_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_SESSION_INFOA","package":"druntime","parentType":"","signature":"PWTS_SESSION_INFOA = WTS_SESSION_INFOA *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_SESSION_INFOA"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_PROCESS_INFOW","package":"druntime","parentType":"","signature":"WTS_PROCESS_INFOW","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_PROCESS_INFOW"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_PROCESS_INFOW","package":"druntime","parentType":"","signature":"PWTS_PROCESS_INFOW = WTS_PROCESS_INFOW *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_PROCESS_INFOW"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_PROCESS_INFOA","package":"druntime","parentType":"","signature":"WTS_PROCESS_INFOA","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_PROCESS_INFOA"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_PROCESS_INFOA","package":"druntime","parentType":"","signature":"PWTS_PROCESS_INFOA = WTS_PROCESS_INFOA *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_PROCESS_INFOA"},{"doc":"","kind":"enum","module":"core.sys.windows.wtsapi32","name":"WTS_INFO_CLASS","package":"druntime","parentType":"","signature":"WTS_INFO_CLASS","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSInitialProgram","package":"druntime","parentType":"","signature":"WTSInitialProgram = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSApplicationName","package":"druntime","parentType":"","signature":"WTSApplicationName = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSWorkingDirectory","package":"druntime","parentType":"","signature":"WTSWorkingDirectory = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSOEMId","package":"druntime","parentType":"","signature":"WTSOEMId = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSSessionId","package":"druntime","parentType":"","signature":"WTSSessionId = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserName","package":"druntime","parentType":"","signature":"WTSUserName = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSWinStationName","package":"druntime","parentType":"","signature":"WTSWinStationName = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSDomainName","package":"druntime","parentType":"","signature":"WTSDomainName = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSConnectState","package":"druntime","parentType":"","signature":"WTSConnectState = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientBuildNumber","package":"druntime","parentType":"","signature":"WTSClientBuildNumber = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientName","package":"druntime","parentType":"","signature":"WTSClientName = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientDirectory","package":"druntime","parentType":"","signature":"WTSClientDirectory = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientProductId","package":"druntime","parentType":"","signature":"WTSClientProductId = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientHardwareId","package":"druntime","parentType":"","signature":"WTSClientHardwareId = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientAddress","package":"druntime","parentType":"","signature":"WTSClientAddress = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientDisplay","package":"druntime","parentType":"","signature":"WTSClientDisplay = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientProtocolType","package":"druntime","parentType":"","signature":"WTSClientProtocolType = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSIdleTime","package":"druntime","parentType":"","signature":"WTSIdleTime = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSLogonTime","package":"druntime","parentType":"","signature":"WTSLogonTime = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSIncomingBytes","package":"druntime","parentType":"","signature":"WTSIncomingBytes = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSOutgoingBytes","package":"druntime","parentType":"","signature":"WTSOutgoingBytes = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSIncomingFrames","package":"druntime","parentType":"","signature":"WTSIncomingFrames = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSOutgoingFrames","package":"druntime","parentType":"","signature":"WTSOutgoingFrames = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSClientInfo","package":"druntime","parentType":"","signature":"WTSClientInfo = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSSessionInfo","package":"druntime","parentType":"","signature":"WTSSessionInfo = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_INFO_CLASS"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_CLIENT_ADDRESS","package":"druntime","parentType":"","signature":"WTS_CLIENT_ADDRESS","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CLIENT_ADDRESS"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_CLIENT_ADDRESS","package":"druntime","parentType":"","signature":"PWTS_CLIENT_ADDRESS = WTS_CLIENT_ADDRESS *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_CLIENT_ADDRESS"},{"doc":"","kind":"struct","module":"core.sys.windows.wtsapi32","name":"WTS_CLIENT_DISPLAY","package":"druntime","parentType":"","signature":"WTS_CLIENT_DISPLAY","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CLIENT_DISPLAY"},{"doc":"","kind":"alias","module":"core.sys.windows.wtsapi32","name":"PWTS_CLIENT_DISPLAY","package":"druntime","parentType":"","signature":"PWTS_CLIENT_DISPLAY = WTS_CLIENT_DISPLAY *","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#PWTS_CLIENT_DISPLAY"},{"doc":"","kind":"enum","module":"core.sys.windows.wtsapi32","name":"WTS_CONFIG_CLASS","package":"druntime","parentType":"","signature":"WTS_CONFIG_CLASS","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigInitialProgram","package":"druntime","parentType":"","signature":"WTSUserConfigInitialProgram = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigWorkingDirectory","package":"druntime","parentType":"","signature":"WTSUserConfigWorkingDirectory = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfInheritInitialProgram","package":"druntime","parentType":"","signature":"WTSUserConfigfInheritInitialProgram = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfAllowLogonTerminalServer","package":"druntime","parentType":"","signature":"WTSUserConfigfAllowLogonTerminalServer = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTimeoutSettingsConnections","package":"druntime","parentType":"","signature":"WTSUserConfigTimeoutSettingsConnections = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTimeoutSettingsDisconnections","package":"druntime","parentType":"","signature":"WTSUserConfigTimeoutSettingsDisconnections = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTimeoutSettingsIdle","package":"druntime","parentType":"","signature":"WTSUserConfigTimeoutSettingsIdle = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfDeviceClientDrives","package":"druntime","parentType":"","signature":"WTSUserConfigfDeviceClientDrives = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfDeviceClientPrinters","package":"druntime","parentType":"","signature":"WTSUserConfigfDeviceClientPrinters = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfDeviceClientDefaultPrinter","package":"druntime","parentType":"","signature":"WTSUserConfigfDeviceClientDefaultPrinter = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigBrokenTimeoutSettings","package":"druntime","parentType":"","signature":"WTSUserConfigBrokenTimeoutSettings = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigReconnectSettings","package":"druntime","parentType":"","signature":"WTSUserConfigReconnectSettings = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigModemCallbackSettings","package":"druntime","parentType":"","signature":"WTSUserConfigModemCallbackSettings = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigModemCallbackPhoneNumber","package":"druntime","parentType":"","signature":"WTSUserConfigModemCallbackPhoneNumber = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigShadowingSettings","package":"druntime","parentType":"","signature":"WTSUserConfigShadowingSettings = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTerminalServerProfilePath","package":"druntime","parentType":"","signature":"WTSUserConfigTerminalServerProfilePath = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTerminalServerHomeDir","package":"druntime","parentType":"","signature":"WTSUserConfigTerminalServerHomeDir = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigTerminalServerHomeDirDrive","package":"druntime","parentType":"","signature":"WTSUserConfigTerminalServerHomeDirDrive = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSUserConfigfTerminalServerRemoteHomeDir","package":"druntime","parentType":"","signature":"WTSUserConfigfTerminalServerRemoteHomeDir = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CONFIG_CLASS"},{"doc":"","kind":"enum","module":"core.sys.windows.wtsapi32","name":"WTS_VIRTUAL_CLASS","package":"druntime","parentType":"","signature":"WTS_VIRTUAL_CLASS","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_VIRTUAL_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSVirtualClientData","package":"druntime","parentType":"","signature":"WTSVirtualClientData = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_VIRTUAL_CLASS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtsapi32","name":"WTSVirtualFileHandle","package":"druntime","parentType":"","signature":"WTSVirtualFileHandle = ","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_VIRTUAL_CLASS"},{"doc":"","kind":"variable","module":"core.sys.windows.wtsapi32","name":"WTS_CURRENT_SESSION","package":"druntime","parentType":"","signature":"DWORD WTS_CURRENT_SESSION","url":"/ddoc/druntime/core/sys/windows/wtsapi32.html#WTS_CURRENT_SESSION"},{"doc":"Windows API header module","kind":"module","module":"core.sys.windows.wtypes","name":"core.sys.windows.wtypes","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/sys/windows/wtypes.html"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"IID_NULL","package":"druntime","parentType":"","signature":"IID_NULL = GUID_NULL","url":"/ddoc/druntime/core/sys/windows/wtypes.html#IID_NULL"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"BLOB","package":"druntime","parentType":"","signature":"BLOB","url":"/ddoc/druntime/core/sys/windows/wtypes.html#BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"PBLOB","package":"druntime","parentType":"","signature":"PBLOB = BLOB *","url":"/ddoc/druntime/core/sys/windows/wtypes.html#PBLOB"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"DVASPECT","package":"druntime","parentType":"","signature":"DVASPECT","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_CONTENT","package":"druntime","parentType":"","signature":"DVASPECT_CONTENT = 1","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_THUMBNAIL","package":"druntime","parentType":"","signature":"DVASPECT_THUMBNAIL = 2","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_ICON","package":"druntime","parentType":"","signature":"DVASPECT_ICON = 4","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_DOCPRINT","package":"druntime","parentType":"","signature":"DVASPECT_DOCPRINT = 8","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"DVASPECT2","package":"druntime","parentType":"","signature":"DVASPECT2","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT2"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_OPAQUE","package":"druntime","parentType":"","signature":"DVASPECT_OPAQUE = 16","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT2"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"DVASPECT_TRANSPARENT","package":"druntime","parentType":"","signature":"DVASPECT_TRANSPARENT = 32","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DVASPECT2"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"STATFLAG","package":"druntime","parentType":"","signature":"STATFLAG","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STATFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STATFLAG_DEFAULT","package":"druntime","parentType":"","signature":"STATFLAG_DEFAULT = 0","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STATFLAG"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STATFLAG_NONAME","package":"druntime","parentType":"","signature":"STATFLAG_NONAME = 1","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STATFLAG"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"MEMCTX","package":"druntime","parentType":"","signature":"MEMCTX","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_LOCAL","package":"druntime","parentType":"","signature":"MEMCTX_LOCAL = 0","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_TASK","package":"druntime","parentType":"","signature":"MEMCTX_TASK = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_SHARED","package":"druntime","parentType":"","signature":"MEMCTX_SHARED = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_MACSYSTEM","package":"druntime","parentType":"","signature":"MEMCTX_MACSYSTEM = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_UNKNOWN","package":"druntime","parentType":"","signature":"MEMCTX_UNKNOWN = - 1","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MEMCTX_SAME","package":"druntime","parentType":"","signature":"MEMCTX_SAME = - 2","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MEMCTX"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"MSHCTX","package":"druntime","parentType":"","signature":"MSHCTX","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHCTX_LOCAL","package":"druntime","parentType":"","signature":"MSHCTX_LOCAL = 0","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHCTX_NOSHAREDMEM","package":"druntime","parentType":"","signature":"MSHCTX_NOSHAREDMEM = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHCTX_DIFFERENTMACHINE","package":"druntime","parentType":"","signature":"MSHCTX_DIFFERENTMACHINE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHCTX_INPROC","package":"druntime","parentType":"","signature":"MSHCTX_INPROC = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHCTX_CROSSCTX","package":"druntime","parentType":"","signature":"MSHCTX_CROSSCTX = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHCTX"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"CLSCTX","package":"druntime","parentType":"","signature":"CLSCTX","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVER = 0x1","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_HANDLER","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLER = 0x2","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_LOCAL_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_LOCAL_SERVER = 0x4","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_SERVER16","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVER16 = 0x8","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_REMOTE_SERVER","package":"druntime","parentType":"","signature":"CLSCTX_REMOTE_SERVER = 0x10","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_HANDLER16","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLER16 = 0x20","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_SERVERX86","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_SERVERX86 = 0x40","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"CLSCTX_INPROC_HANDLERX86","package":"druntime","parentType":"","signature":"CLSCTX_INPROC_HANDLERX86 = 0x80","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLSCTX"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"MSHLFLAGS","package":"druntime","parentType":"","signature":"MSHLFLAGS","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHLFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHLFLAGS_NORMAL","package":"druntime","parentType":"","signature":"MSHLFLAGS_NORMAL = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHLFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHLFLAGS_TABLESTRONG","package":"druntime","parentType":"","signature":"MSHLFLAGS_TABLESTRONG = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHLFLAGS"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"MSHLFLAGS_TABLEWEAK","package":"druntime","parentType":"","signature":"MSHLFLAGS_TABLEWEAK = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#MSHLFLAGS"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"FLAGGED_WORD_BLOB","package":"druntime","parentType":"","signature":"FLAGGED_WORD_BLOB","url":"/ddoc/druntime/core/sys/windows/wtypes.html#FLAGGED_WORD_BLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"OLECHAR","package":"druntime","parentType":"","signature":"OLECHAR = WCHAR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#OLECHAR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"LPOLESTR","package":"druntime","parentType":"","signature":"LPOLESTR = LPWSTR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#LPOLESTR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"LPCOLESTR","package":"druntime","parentType":"","signature":"LPCOLESTR = LPCWSTR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#LPCOLESTR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"VARTYPE","package":"druntime","parentType":"","signature":"VARTYPE = ushort","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARTYPE"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"VARIANT_BOOL","package":"druntime","parentType":"","signature":"VARIANT_BOOL = short","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARIANT_BOOL"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"_VARIANT_BOOL","package":"druntime","parentType":"","signature":"_VARIANT_BOOL = VARIANT_BOOL","url":"/ddoc/druntime/core/sys/windows/wtypes.html#_VARIANT_BOOL"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"BSTR","package":"druntime","parentType":"","signature":"BSTR = OLECHAR *","url":"/ddoc/druntime/core/sys/windows/wtypes.html#BSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"wireBSTR","package":"druntime","parentType":"","signature":"wireBSTR = FLAGGED_WORD_BLOB *","url":"/ddoc/druntime/core/sys/windows/wtypes.html#wireBSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"LPBSTR","package":"druntime","parentType":"","signature":"LPBSTR = BSTR *","url":"/ddoc/druntime/core/sys/windows/wtypes.html#LPBSTR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"HCONTEXT","package":"druntime","parentType":"","signature":"HCONTEXT = HANDLE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#HCONTEXT"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"HMETAFILEPICT","package":"druntime","parentType":"","signature":"HMETAFILEPICT = HANDLE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#HMETAFILEPICT"},{"doc":"","kind":"union","module":"core.sys.windows.wtypes","name":"CY","package":"druntime","parentType":"","signature":"CY","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CY"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"DATE","package":"druntime","parentType":"","signature":"DATE = double","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DATE"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"BSTRBLOB","package":"druntime","parentType":"","signature":"BSTRBLOB","url":"/ddoc/druntime/core/sys/windows/wtypes.html#BSTRBLOB"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"LPBSTRBLOB","package":"druntime","parentType":"","signature":"LPBSTRBLOB = BSTRBLOB *","url":"/ddoc/druntime/core/sys/windows/wtypes.html#LPBSTRBLOB"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"CLIPDATA","package":"druntime","parentType":"","signature":"CLIPDATA","url":"/ddoc/druntime/core/sys/windows/wtypes.html#CLIPDATA"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"STGC","package":"druntime","parentType":"","signature":"STGC","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGC"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGC_DEFAULT","package":"druntime","parentType":"","signature":"STGC_DEFAULT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGC"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGC_OVERWRITE","package":"druntime","parentType":"","signature":"STGC_OVERWRITE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGC"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGC_ONLYIFCURRENT","package":"druntime","parentType":"","signature":"STGC_ONLYIFCURRENT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGC"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE","package":"druntime","parentType":"","signature":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGC"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"STGMOVE","package":"druntime","parentType":"","signature":"STGMOVE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGMOVE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGMOVE_MOVE","package":"druntime","parentType":"","signature":"STGMOVE_MOVE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGMOVE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGMOVE_COPY","package":"druntime","parentType":"","signature":"STGMOVE_COPY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGMOVE"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"STGMOVE_SHALLOWCOPY","package":"druntime","parentType":"","signature":"STGMOVE_SHALLOWCOPY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#STGMOVE"},{"doc":"","kind":"enum","module":"core.sys.windows.wtypes","name":"VARENUM","package":"druntime","parentType":"","signature":"VARENUM","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_EMPTY","package":"druntime","parentType":"","signature":"VT_EMPTY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_NULL","package":"druntime","parentType":"","signature":"VT_NULL = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_I2","package":"druntime","parentType":"","signature":"VT_I2 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_I4","package":"druntime","parentType":"","signature":"VT_I4 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_R4","package":"druntime","parentType":"","signature":"VT_R4 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_R8","package":"druntime","parentType":"","signature":"VT_R8 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_CY","package":"druntime","parentType":"","signature":"VT_CY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_DATE","package":"druntime","parentType":"","signature":"VT_DATE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BSTR","package":"druntime","parentType":"","signature":"VT_BSTR = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_DISPATCH","package":"druntime","parentType":"","signature":"VT_DISPATCH = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_ERROR","package":"druntime","parentType":"","signature":"VT_ERROR = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BOOL","package":"druntime","parentType":"","signature":"VT_BOOL = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_VARIANT","package":"druntime","parentType":"","signature":"VT_VARIANT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UNKNOWN","package":"druntime","parentType":"","signature":"VT_UNKNOWN = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_DECIMAL","package":"druntime","parentType":"","signature":"VT_DECIMAL = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_I1","package":"druntime","parentType":"","signature":"VT_I1 = 16","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UI1","package":"druntime","parentType":"","signature":"VT_UI1 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UI2","package":"druntime","parentType":"","signature":"VT_UI2 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UI4","package":"druntime","parentType":"","signature":"VT_UI4 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_I8","package":"druntime","parentType":"","signature":"VT_I8 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UI8","package":"druntime","parentType":"","signature":"VT_UI8 = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_INT","package":"druntime","parentType":"","signature":"VT_INT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UINT","package":"druntime","parentType":"","signature":"VT_UINT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_VOID","package":"druntime","parentType":"","signature":"VT_VOID = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_HRESULT","package":"druntime","parentType":"","signature":"VT_HRESULT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_PTR","package":"druntime","parentType":"","signature":"VT_PTR = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_SAFEARRAY","package":"druntime","parentType":"","signature":"VT_SAFEARRAY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_CARRAY","package":"druntime","parentType":"","signature":"VT_CARRAY = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_USERDEFINED","package":"druntime","parentType":"","signature":"VT_USERDEFINED = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_LPSTR","package":"druntime","parentType":"","signature":"VT_LPSTR = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_LPWSTR","package":"druntime","parentType":"","signature":"VT_LPWSTR = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_RECORD","package":"druntime","parentType":"","signature":"VT_RECORD = 36","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_INT_PTR","package":"druntime","parentType":"","signature":"VT_INT_PTR = 37","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_UINT_PTR","package":"druntime","parentType":"","signature":"VT_UINT_PTR = 38","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_FILETIME","package":"druntime","parentType":"","signature":"VT_FILETIME = 64","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BLOB","package":"druntime","parentType":"","signature":"VT_BLOB = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_STREAM","package":"druntime","parentType":"","signature":"VT_STREAM = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_STORAGE","package":"druntime","parentType":"","signature":"VT_STORAGE = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_STREAMED_OBJECT","package":"druntime","parentType":"","signature":"VT_STREAMED_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_STORED_OBJECT","package":"druntime","parentType":"","signature":"VT_STORED_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BLOB_OBJECT","package":"druntime","parentType":"","signature":"VT_BLOB_OBJECT = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_CF","package":"druntime","parentType":"","signature":"VT_CF = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_CLSID","package":"druntime","parentType":"","signature":"VT_CLSID = ","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BSTR_BLOB","package":"druntime","parentType":"","signature":"VT_BSTR_BLOB = 0xfff","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_VECTOR","package":"druntime","parentType":"","signature":"VT_VECTOR = 0x1000","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_ARRAY","package":"druntime","parentType":"","signature":"VT_ARRAY = 0x2000","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_BYREF","package":"druntime","parentType":"","signature":"VT_BYREF = 0x4000","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_RESERVED","package":"druntime","parentType":"","signature":"VT_RESERVED = 0x8000","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_ILLEGAL","package":"druntime","parentType":"","signature":"VT_ILLEGAL = 0xffff","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_ILLEGALMASKED","package":"druntime","parentType":"","signature":"VT_ILLEGALMASKED = 0xfff","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"enum_member","module":"core.sys.windows.wtypes","name":"VT_TYPEMASK","package":"druntime","parentType":"","signature":"VT_TYPEMASK = 0xfff","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARENUM"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"BYTE_SIZEDARR","package":"druntime","parentType":"","signature":"BYTE_SIZEDARR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#BYTE_SIZEDARR"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"WORD_SIZEDARR","package":"druntime","parentType":"","signature":"WORD_SIZEDARR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#WORD_SIZEDARR"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"DWORD_SIZEDARR","package":"druntime","parentType":"","signature":"DWORD_SIZEDARR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DWORD_SIZEDARR"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"HYPER_SIZEDARR","package":"druntime","parentType":"","signature":"HYPER_SIZEDARR","url":"/ddoc/druntime/core/sys/windows/wtypes.html#HYPER_SIZEDARR"},{"doc":"","kind":"alias","module":"core.sys.windows.wtypes","name":"DOUBLE","package":"druntime","parentType":"","signature":"DOUBLE = double","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DOUBLE"},{"doc":"","kind":"struct","module":"core.sys.windows.wtypes","name":"DECIMAL","package":"druntime","parentType":"","signature":"DECIMAL","url":"/ddoc/druntime/core/sys/windows/wtypes.html#DECIMAL"},{"doc":"","kind":"method","module":"core.sys.windows.wtypes","name":"setZero","package":"druntime","parentType":"DECIMAL","signature":"void setZero()","url":"/ddoc/druntime/core/sys/windows/wtypes/DECIMAL.setZero.html"},{"doc":"","kind":"variable","module":"core.sys.windows.wtypes","name":"ROTFLAGS_REGISTRATIONKEEPSALIVE","package":"druntime","parentType":"","signature":"ROTFLAGS_REGISTRATIONKEEPSALIVE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#ROTFLAGS_REGISTRATIONKEEPSALIVE"},{"doc":"","kind":"variable","module":"core.sys.windows.wtypes","name":"ROTFLAGS_ALLOWANYCLIENT","package":"druntime","parentType":"","signature":"ROTFLAGS_ALLOWANYCLIENT","url":"/ddoc/druntime/core/sys/windows/wtypes.html#ROTFLAGS_ALLOWANYCLIENT"},{"doc":"","kind":"variable","module":"core.sys.windows.wtypes","name":"VARIANT_TRUE","package":"druntime","parentType":"","signature":"VARIANT_BOOL VARIANT_TRUE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARIANT_TRUE"},{"doc":"","kind":"variable","module":"core.sys.windows.wtypes","name":"VARIANT_FALSE","package":"druntime","parentType":"","signature":"VARIANT_BOOL VARIANT_FALSE","url":"/ddoc/druntime/core/sys/windows/wtypes.html#VARIANT_FALSE"},{"doc":"The thread module provides support for thread creation and management.","kind":"module","module":"core.thread.context","name":"core.thread.context","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/context.html"},{"doc":"","kind":"struct","module":"core.thread.context","name":"StackContext","package":"druntime","parentType":"","signature":"StackContext","url":"/ddoc/druntime/core/thread/context.html#StackContext"},{"doc":"","kind":"struct","module":"core.thread.context","name":"Callable","package":"druntime","parentType":"","signature":"Callable","url":"/ddoc/druntime/core/thread/context.html#Callable"},{"doc":"","kind":"method","module":"core.thread.context","name":"opAssign","package":"druntime","parentType":"Callable","signature":"void opAssign(void  function()  fn)","url":"/ddoc/druntime/core/thread/context/Callable.opAssign.html"},{"doc":"","kind":"method","module":"core.thread.context","name":"opAssign","package":"druntime","parentType":"Callable","signature":"void opAssign(void  delegate()  dg)","url":"/ddoc/druntime/core/thread/context/Callable.opAssign.html"},{"doc":"","kind":"method","module":"core.thread.context","name":"opCall","package":"druntime","parentType":"Callable","signature":"void opCall()","url":"/ddoc/druntime/core/thread/context/Callable.opCall.html"},{"doc":"Base fiber module provides OS-indepedent part of lightweight threads aka fibers.","kind":"module","module":"core.thread.fiber.base","name":"core.thread.fiber.base","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/fiber/base.html"},{"doc":"","kind":"function","module":"core.thread.fiber.base","name":"fiber_entryPoint","package":"druntime","parentType":"","signature":"void fiber_entryPoint()","url":"/ddoc/druntime/core/thread/fiber/base/fiber_entryPoint.html"},{"doc":"This class provides a cooperative concurrency mechanism integrated with the threading and garbage collection functionality.  Calling a fiber may be...","kind":"class","module":"core.thread.fiber.base","name":"FiberBase","package":"druntime","parentType":"","signature":"FiberBase","url":"/ddoc/druntime/core/thread/fiber/base.html#FiberBase"},{"doc":"Transfers execution to this fiber object.  The calling context will be suspended until the fiber calls Fiber.yield() or until it terminates via an ...","kind":"method","module":"core.thread.fiber.base","name":"call","package":"druntime","parentType":"FiberBase","signature":"Throwable call(  Rethrow rethrow =  Rethrow.yes )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.call.html"},{"doc":"ditto","kind":"method","module":"core.thread.fiber.base","name":"call","package":"druntime","parentType":"FiberBase","signature":"Throwable call(  Rethrow rethrow )()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.call.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"callImpl","package":"druntime","parentType":"FiberBase","signature":"void callImpl()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.callImpl.html"},{"doc":"Resets this fiber so that it may be re-used, optionally with a new function/delegate.  This routine should only be called for fibers that have term...","kind":"method","module":"core.thread.fiber.base","name":"reset","package":"druntime","parentType":"FiberBase","signature":"void reset()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.reset.html"},{"doc":"ditto","kind":"method","module":"core.thread.fiber.base","name":"reset","package":"druntime","parentType":"FiberBase","signature":"void reset(  void  function()  fn )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.reset.html"},{"doc":"ditto","kind":"method","module":"core.thread.fiber.base","name":"reset","package":"druntime","parentType":"FiberBase","signature":"void reset(  void  delegate()  dg )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.reset.html"},{"doc":"Gets the current state of this fiber.","kind":"method","module":"core.thread.fiber.base","name":"state","package":"druntime","parentType":"FiberBase","signature":"State state()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.state.html"},{"doc":"Forces a context switch to occur away from the calling fiber.","kind":"method","module":"core.thread.fiber.base","name":"yield","package":"druntime","parentType":"FiberBase","signature":"void yield()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.yield.html"},{"doc":"Forces a context switch to occur away from the calling fiber and then throws obj in the calling fiber.","kind":"method","module":"core.thread.fiber.base","name":"yieldAndThrow","package":"druntime","parentType":"FiberBase","signature":"void yieldAndThrow(  Throwable t )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.yieldAndThrow.html"},{"doc":"Provides a reference to the calling fiber or null if no fiber is currently active.","kind":"method","module":"core.thread.fiber.base","name":"getThis","package":"druntime","parentType":"FiberBase","signature":"FiberBase getThis()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.getThis.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"run","package":"druntime","parentType":"FiberBase","signature":"void run()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.run.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"allocStack","package":"druntime","parentType":"FiberBase","signature":"void allocStack(  size_t sz,  size_t guardPageSize )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.allocStack.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"freeStack","package":"druntime","parentType":"FiberBase","signature":"void freeStack()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.freeStack.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"initStack","package":"druntime","parentType":"FiberBase","signature":"void initStack()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.initStack.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"setThis","package":"druntime","parentType":"FiberBase","signature":"void setThis(  FiberBase f )","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.setThis.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"switchIn","package":"druntime","parentType":"FiberBase","signature":"void switchIn()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.switchIn.html"},{"doc":"","kind":"method","module":"core.thread.fiber.base","name":"switchOut","package":"druntime","parentType":"FiberBase","signature":"void switchOut()","url":"/ddoc/druntime/core/thread/fiber/base/FiberBase.switchOut.html"},{"doc":"The fiber module provides lightweight threads aka fibers.","kind":"module","module":"core.thread.fiber","name":"core.thread.fiber","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/fiber.html"},{"doc":"This class provides a cooperative concurrency mechanism integrated with the threading and garbage collection functionality.  Calling a fiber may be...","kind":"class","module":"core.thread.fiber","name":"Fiber","package":"druntime","parentType":"","signature":"Fiber : FiberBase","url":"/ddoc/druntime/core/thread/fiber.html#Fiber"},{"doc":"Provides a reference to the calling fiber or null if no fiber is currently active.","kind":"method","module":"core.thread.fiber","name":"getThis","package":"druntime","parentType":"Fiber","signature":"Fiber getThis()","url":"/ddoc/druntime/core/thread/fiber/Fiber.getThis.html"},{"doc":"","kind":"method","module":"core.thread.fiber","name":"allocStack","package":"druntime","parentType":"Fiber","signature":"void allocStack(  size_t sz,  size_t guardPageSize )","url":"/ddoc/druntime/core/thread/fiber/Fiber.allocStack.html"},{"doc":"","kind":"method","module":"core.thread.fiber","name":"freeStack","package":"druntime","parentType":"Fiber","signature":"void freeStack()","url":"/ddoc/druntime/core/thread/fiber/Fiber.freeStack.html"},{"doc":"","kind":"method","module":"core.thread.fiber","name":"initStack","package":"druntime","parentType":"Fiber","signature":"void initStack()","url":"/ddoc/druntime/core/thread/fiber/Fiber.initStack.html"},{"doc":"The osthread module provides low-level, OS-dependent code for thread creation and management.","kind":"module","module":"core.thread.osthread","name":"core.thread.osthread","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/osthread.html"},{"doc":"Hook for whatever EH implementation is used to save/restore some data per stack.","kind":"function","module":"core.thread.osthread","name":"_d_eh_swapContext","package":"druntime","parentType":"","signature":"void * _d_eh_swapContext(void *  newContext)","url":"/ddoc/druntime/core/thread/osthread/_d_eh_swapContext.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"toThread","package":"druntime","parentType":"","signature":"Thread toThread(return  scope  ThreadBase t)","url":"/ddoc/druntime/core/thread/osthread/toThread.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"thread_yield","package":"druntime","parentType":"","signature":"void thread_yield()","url":"/ddoc/druntime/core/thread/osthread/thread_yield.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"attachThread","package":"druntime","parentType":"","signature":"ThreadBase attachThread(ThreadBase _thisThread)","url":"/ddoc/druntime/core/thread/osthread/attachThread.html"},{"doc":"Registers the calling thread for use with the D Runtime.  If this routine is called for a thread which is already registered, no action is performed.","kind":"function","module":"core.thread.osthread","name":"thread_attachThis","package":"druntime","parentType":"","signature":"Thread thread_attachThis()","url":"/ddoc/druntime/core/thread/osthread/thread_attachThis.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"callWithStackShell","package":"druntime","parentType":"","signature":"void callWithStackShell(scope  callWithStackShellDg fn)","url":"/ddoc/druntime/core/thread/osthread/callWithStackShell.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"getStackTop","package":"druntime","parentType":"","signature":"void * getStackTop()","url":"/ddoc/druntime/core/thread/osthread/getStackTop.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"getStackBottom","package":"druntime","parentType":"","signature":"void * getStackBottom()","url":"/ddoc/druntime/core/thread/osthread/getStackBottom.html"},{"doc":"Suspend the specified thread and load stack and register information for use by thread_scanAll.  If the supplied thread is the calling thread, stac...","kind":"function","module":"core.thread.osthread","name":"suspend","package":"druntime","parentType":"","signature":"bool suspend(  Thread t )","url":"/ddoc/druntime/core/thread/osthread/suspend.html"},{"doc":"Runs the necessary operations required before stopping the world.","kind":"function","module":"core.thread.osthread","name":"thread_preStopTheWorld","package":"druntime","parentType":"","signature":"void thread_preStopTheWorld()","url":"/ddoc/druntime/core/thread/osthread/thread_preStopTheWorld.html"},{"doc":"Suspend all threads but the calling thread for \"stop the world\" garbage collection runs.  This function may be called multiple times, and must be f...","kind":"function","module":"core.thread.osthread","name":"thread_suspendAll","package":"druntime","parentType":"","signature":"void thread_suspendAll()","url":"/ddoc/druntime/core/thread/osthread/thread_suspendAll.html"},{"doc":"Resume the specified thread and unload stack and register information. If the supplied thread is the calling thread, stack and register information...","kind":"function","module":"core.thread.osthread","name":"resume","package":"druntime","parentType":"","signature":"void resume(ThreadBase _t)","url":"/ddoc/druntime/core/thread/osthread/resume.html"},{"doc":"Initializes the thread module.  This function must be called by the garbage collector on startup and before any other thread routines are called.","kind":"function","module":"core.thread.osthread","name":"thread_init","package":"druntime","parentType":"","signature":"void thread_init()","url":"/ddoc/druntime/core/thread/osthread/thread_init.html"},{"doc":"Terminates the thread module. No other thread routine may be called afterwards.","kind":"function","module":"core.thread.osthread","name":"thread_term","package":"druntime","parentType":"","signature":"void thread_term()","url":"/ddoc/druntime/core/thread/osthread/thread_term.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"rt_moduleTlsCtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsCtor()","url":"/ddoc/druntime/core/thread/osthread/rt_moduleTlsCtor.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"rt_moduleTlsDtor","package":"druntime","parentType":"","signature":"void rt_moduleTlsDtor()","url":"/ddoc/druntime/core/thread/osthread/rt_moduleTlsDtor.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"ll_countLowLevelThreadsWithDLLUnloadCallback","package":"druntime","parentType":"","signature":"int ll_countLowLevelThreadsWithDLLUnloadCallback()","url":"/ddoc/druntime/core/thread/osthread/ll_countLowLevelThreadsWithDLLUnloadCallback.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"ll_dllHasExternalReferences","package":"druntime","parentType":"","signature":"bool ll_dllHasExternalReferences()","url":"/ddoc/druntime/core/thread/osthread/ll_dllHasExternalReferences.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"monitorDLLRefCnt","package":"druntime","parentType":"","signature":"void monitorDLLRefCnt()","url":"/ddoc/druntime/core/thread/osthread/monitorDLLRefCnt.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"ll_getDLLRefCount","package":"druntime","parentType":"","signature":"int ll_getDLLRefCount()","url":"/ddoc/druntime/core/thread/osthread/ll_getDLLRefCount.html"},{"doc":"","kind":"function","module":"core.thread.osthread","name":"ll_startDLLUnloadThread","package":"druntime","parentType":"","signature":"bool ll_startDLLUnloadThread()","url":"/ddoc/druntime/core/thread/osthread/ll_startDLLUnloadThread.html"},{"doc":"Create a thread not under control of the runtime, i.e. TLS module constructors are not run and the GC does not suspend it during a collection.","kind":"function","module":"core.thread.osthread","name":"createLowLevelThread","package":"druntime","parentType":"","signature":"ThreadID createLowLevelThread(void  delegate()  nothrow  dg,  uint  stacksize =  0,\n                               void  delegate()  nothrow  cbDllUnload =  null)","url":"/ddoc/druntime/core/thread/osthread/createLowLevelThread.html"},{"doc":"Wait for a thread created with `createLowLevelThread` to terminate.","kind":"function","module":"core.thread.osthread","name":"joinLowLevelThread","package":"druntime","parentType":"","signature":"void joinLowLevelThread(ThreadID tid)","url":"/ddoc/druntime/core/thread/osthread/joinLowLevelThread.html"},{"doc":"This class encapsulates all threading functionality for the D programming language.  As thread manipulation is a required facility for garbage coll...","kind":"class","module":"core.thread.osthread","name":"Thread","package":"druntime","parentType":"","signature":"Thread : ThreadBase","url":"/ddoc/druntime/core/thread/osthread.html#Thread"},{"doc":"","kind":"method","module":"core.thread.osthread","name":"run","package":"druntime","parentType":"Thread","signature":"void run()","url":"/ddoc/druntime/core/thread/osthread/Thread.run.html"},{"doc":"Provides a reference to the calling thread.","kind":"method","module":"core.thread.osthread","name":"getThis","package":"druntime","parentType":"Thread","signature":"Thread getThis()","url":"/ddoc/druntime/core/thread/osthread/Thread.getThis.html"},{"doc":"","kind":"method","module":"core.thread.osthread","name":"savedRegisters","package":"druntime","parentType":"Thread","signature":"void[] savedRegisters()","url":"/ddoc/druntime/core/thread/osthread/Thread.savedRegisters.html"},{"doc":"Starts the thread and invokes the function or delegate passed upon construction.","kind":"method","module":"core.thread.osthread","name":"start","package":"druntime","parentType":"Thread","signature":"Thread start()","url":"/ddoc/druntime/core/thread/osthread/Thread.start.html"},{"doc":"Waits for this thread to complete.  If the thread terminated as the result of an unhandled exception, this exception will be rethrown.","kind":"method","module":"core.thread.osthread","name":"join","package":"druntime","parentType":"Thread","signature":"Throwable join(  bool  rethrow =  true )","url":"/ddoc/druntime/core/thread/osthread/Thread.join.html"},{"doc":"Gets the scheduling priority for the associated thread.","kind":"method","module":"core.thread.osthread","name":"priority","package":"druntime","parentType":"Thread","signature":"int priority()","url":"/ddoc/druntime/core/thread/osthread/Thread.priority.html"},{"doc":"Sets the scheduling priority for the associated thread.","kind":"method","module":"core.thread.osthread","name":"priority","package":"druntime","parentType":"Thread","signature":"void priority(  int  val )","url":"/ddoc/druntime/core/thread/osthread/Thread.priority.html"},{"doc":"Tests whether this thread is running.","kind":"method","module":"core.thread.osthread","name":"isRunning","package":"druntime","parentType":"Thread","signature":"bool isRunning()","url":"/ddoc/druntime/core/thread/osthread/Thread.isRunning.html"},{"doc":"Suspends the calling thread for at least the supplied period.  This may result in multiple OS calls if period is greater than the maximum sleep dur...","kind":"method","module":"core.thread.osthread","name":"sleep","package":"druntime","parentType":"Thread","signature":"void sleep(  Duration val )","url":"/ddoc/druntime/core/thread/osthread/Thread.sleep.html"},{"doc":"Forces a context switch to occur away from the calling thread.","kind":"method","module":"core.thread.osthread","name":"yield","package":"druntime","parentType":"Thread","signature":"void yield()","url":"/ddoc/druntime/core/thread/osthread/Thread.yield.html"},{"doc":"","kind":"alias","module":"core.thread.osthread","name":"MainThreadStore","package":"druntime","parentType":"","signature":"MainThreadStore = void[__traits(classInstanceSize,  Thread)]","url":"/ddoc/druntime/core/thread/osthread.html#MainThreadStore"},{"doc":"","kind":"variable","module":"core.thread.osthread","name":"_mainThreadStore","package":"druntime","parentType":"","signature":"MainThreadStore _mainThreadStore","url":"/ddoc/druntime/core/thread/osthread.html#_mainThreadStore"},{"doc":"set during termination of a DLL on Windows, i.e. while executing DllMain(DLL_PROCESS_DETACH)","kind":"variable","module":"core.thread.osthread","name":"thread_DLLProcessDetaching","package":"druntime","parentType":"","signature":"bool thread_DLLProcessDetaching","url":"/ddoc/druntime/core/thread/osthread.html#thread_DLLProcessDetaching"},{"doc":"","kind":"variable","module":"core.thread.osthread","name":"ll_dllModule","package":"druntime","parentType":"","signature":"HMODULE ll_dllModule","url":"/ddoc/druntime/core/thread/osthread.html#ll_dllModule"},{"doc":"","kind":"variable","module":"core.thread.osthread","name":"ll_dllMonitorThread","package":"druntime","parentType":"","signature":"ThreadID ll_dllMonitorThread","url":"/ddoc/druntime/core/thread/osthread.html#ll_dllMonitorThread"},{"doc":"The thread module provides support for thread creation and management.","kind":"module","module":"core.thread","name":"core.thread","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread.html"},{"doc":"The threadbase module provides OS-independent code for thread storage and management.","kind":"module","module":"core.thread.threadbase","name":"core.thread.threadbase","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/threadbase.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"_d_monitordelete_nogc","package":"druntime","parentType":"","signature":"void _d_monitordelete_nogc(Object h)","url":"/ddoc/druntime/core/thread/threadbase/_d_monitordelete_nogc.html"},{"doc":"Terminates the thread module. No other thread routine may be called afterwards.","kind":"function","module":"core.thread.threadbase","name":"thread_term_tpl","package":"druntime","parentType":"","signature":"void thread_term_tpl(ThreadT,  MainThreadStore)(ref  MainThreadStore _mainThreadStore)","url":"/ddoc/druntime/core/thread/threadbase/thread_term_tpl.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"thread_isMainThread","package":"druntime","parentType":"","signature":"bool thread_isMainThread()","url":"/ddoc/druntime/core/thread/threadbase/thread_isMainThread.html"},{"doc":"Registers the calling thread for use with the D Runtime.  If this routine is called for a thread which is already registered, no action is performed.","kind":"function","module":"core.thread.threadbase","name":"thread_attachThis_tpl","package":"druntime","parentType":"","signature":"ThreadT thread_attachThis_tpl(ThreadT)()","url":"/ddoc/druntime/core/thread/threadbase/thread_attachThis_tpl.html"},{"doc":"Deregisters the calling thread from use with the runtime.  If this routine is called for a thread which is not registered, the result is undefined.","kind":"function","module":"core.thread.threadbase","name":"thread_detachThis","package":"druntime","parentType":"","signature":"void thread_detachThis()","url":"/ddoc/druntime/core/thread/threadbase/thread_detachThis.html"},{"doc":"Deregisters the given thread from use with the runtime.  If this routine is called for a thread which is not registered, the result is undefined.","kind":"function","module":"core.thread.threadbase","name":"thread_detachByAddr","package":"druntime","parentType":"","signature":"void thread_detachByAddr(ThreadID addr)","url":"/ddoc/druntime/core/thread/threadbase/thread_detachByAddr.html"},{"doc":"ditto","kind":"function","module":"core.thread.threadbase","name":"thread_detachInstance","package":"druntime","parentType":"","signature":"void thread_detachInstance(ThreadBase t)","url":"/ddoc/druntime/core/thread/threadbase/thread_detachInstance.html"},{"doc":"Search the list of all threads for a thread with the given thread identifier.","kind":"function","module":"core.thread.threadbase","name":"thread_findByAddr","package":"druntime","parentType":"","signature":"ThreadBase thread_findByAddr(ThreadID addr)","url":"/ddoc/druntime/core/thread/threadbase/thread_findByAddr.html"},{"doc":"Sets the current thread to a specific reference. Only to be used when dealing with externally-created threads (in e.g. C code). The primary use of ...","kind":"function","module":"core.thread.threadbase","name":"thread_setThis","package":"druntime","parentType":"","signature":"void thread_setThis(ThreadBase t)","url":"/ddoc/druntime/core/thread/threadbase/thread_setThis.html"},{"doc":"Joins all non-daemon threads that are currently running.  This is done by performing successive scans through the thread list until a scan consists...","kind":"function","module":"core.thread.threadbase","name":"thread_joinAll","package":"druntime","parentType":"","signature":"void thread_joinAll()","url":"/ddoc/druntime/core/thread/threadbase/thread_joinAll.html"},{"doc":"Run the necessary operation required after the world was resumed.","kind":"function","module":"core.thread.threadbase","name":"thread_postRestartTheWorld","package":"druntime","parentType":"","signature":"void thread_postRestartTheWorld()","url":"/ddoc/druntime/core/thread/threadbase/thread_postRestartTheWorld.html"},{"doc":"Resume all threads but the calling thread for \"stop the world\" garbage collection runs.  This function must be called once for each preceding call ...","kind":"function","module":"core.thread.threadbase","name":"thread_resumeAll","package":"druntime","parentType":"","signature":"void thread_resumeAll()","url":"/ddoc/druntime/core/thread/threadbase/thread_resumeAll.html"},{"doc":"The main entry point for garbage collection.  The supplied delegate will be passed ranges representing both stack and register values.","kind":"function","module":"core.thread.threadbase","name":"thread_scanAllType","package":"druntime","parentType":"","signature":"void thread_scanAllType(scope  ScanAllThreadsTypeFn scan)","url":"/ddoc/druntime/core/thread/threadbase/thread_scanAllType.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"scanAllTypeImpl","package":"druntime","parentType":"","signature":"void scanAllTypeImpl(scope  ScanAllThreadsTypeFn scan,  void *  curStackTop)","url":"/ddoc/druntime/core/thread/threadbase/scanAllTypeImpl.html"},{"doc":"The main entry point for garbage collection.  The supplied delegate will be passed ranges representing both stack and register values.","kind":"function","module":"core.thread.threadbase","name":"thread_scanAll","package":"druntime","parentType":"","signature":"void thread_scanAll(scope  ScanAllThreadsFn scan)","url":"/ddoc/druntime/core/thread/threadbase/thread_scanAll.html"},{"doc":"A callback for thread errors in D during collections. Since an allocation is not possible a preallocated ThreadError will be used as the Error inst...","kind":"function","module":"core.thread.threadbase","name":"onThreadError","package":"druntime","parentType":"","signature":"void onThreadError(string msg)","url":"/ddoc/druntime/core/thread/threadbase/onThreadError.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"thread_processTLSGCData","package":"druntime","parentType":"","signature":"void thread_processTLSGCData(ProcessTLSGCDataDg dg)","url":"/ddoc/druntime/core/thread/threadbase/thread_processTLSGCData.html"},{"doc":"Returns the stack top of the currently active stack within the calling thread.","kind":"function","module":"core.thread.threadbase","name":"thread_stackTop","package":"druntime","parentType":"","signature":"void * thread_stackTop()","url":"/ddoc/druntime/core/thread/threadbase/thread_stackTop.html"},{"doc":"Returns the stack bottom of the currently active stack within the calling thread.","kind":"function","module":"core.thread.threadbase","name":"thread_stackBottom","package":"druntime","parentType":"","signature":"void * thread_stackBottom()","url":"/ddoc/druntime/core/thread/threadbase/thread_stackBottom.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"lowlevelLock","package":"druntime","parentType":"","signature":"Mutex lowlevelLock()","url":"/ddoc/druntime/core/thread/threadbase/lowlevelLock.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"initLowlevelThreads","package":"druntime","parentType":"","signature":"void initLowlevelThreads()","url":"/ddoc/druntime/core/thread/threadbase/initLowlevelThreads.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"termLowlevelThreads","package":"druntime","parentType":"","signature":"void termLowlevelThreads()","url":"/ddoc/druntime/core/thread/threadbase/termLowlevelThreads.html"},{"doc":"","kind":"function","module":"core.thread.threadbase","name":"ll_removeThread","package":"druntime","parentType":"","signature":"void ll_removeThread(ThreadID tid)","url":"/ddoc/druntime/core/thread/threadbase/ll_removeThread.html"},{"doc":"Check whether a thread was created by `createLowLevelThread`.","kind":"function","module":"core.thread.threadbase","name":"findLowLevelThread","package":"druntime","parentType":"","signature":"bool findLowLevelThread(ThreadID tid)","url":"/ddoc/druntime/core/thread/threadbase/findLowLevelThread.html"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"rt_tlsgc_init","package":"druntime","parentType":"","signature":"rt_tlsgc_init = externDFunc!(\"rt.tlsgc.init\",  void *  function()  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#rt_tlsgc_init"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"rt_tlsgc_destroy","package":"druntime","parentType":"","signature":"rt_tlsgc_destroy = externDFunc!(\"rt.tlsgc.destroy\",  void  function(void *)  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#rt_tlsgc_destroy"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"ScanDg","package":"druntime","parentType":"","signature":"ScanDg = void  delegate(void *  pstart,  void *  pend)  nothrow","url":"/ddoc/druntime/core/thread/threadbase.html#ScanDg"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"rt_tlsgc_scan","package":"druntime","parentType":"","signature":"rt_tlsgc_scan = externDFunc!(\"rt.tlsgc.scan\",  void  function(void *,  scope  ScanDg)  nothrow)","url":"/ddoc/druntime/core/thread/threadbase.html#rt_tlsgc_scan"},{"doc":"Base class for thread exceptions.","kind":"class","module":"core.thread.threadbase","name":"ThreadException","package":"druntime","parentType":"","signature":"ThreadException : Exception","url":"/ddoc/druntime/core/thread/threadbase.html#ThreadException"},{"doc":"Base class for thread errors to be used for function inside GC when allocations are unavailable.","kind":"class","module":"core.thread.threadbase","name":"ThreadError","package":"druntime","parentType":"","signature":"ThreadError : Error","url":"/ddoc/druntime/core/thread/threadbase.html#ThreadError"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"swapContext","package":"druntime","parentType":"","signature":"swapContext = externDFunc!(\"core.thread.osthread.swapContext\",  void *  function(void *)  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#swapContext"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"getStackBottom","package":"druntime","parentType":"","signature":"getStackBottom = externDFunc!(\"core.thread.osthread.getStackBottom\",  void *  function()  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#getStackBottom"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"getStackTop","package":"druntime","parentType":"","signature":"getStackTop = externDFunc!(\"core.thread.osthread.getStackTop\",  void *  function()  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#getStackTop"},{"doc":"","kind":"class","module":"core.thread.threadbase","name":"ThreadBase","package":"druntime","parentType":"","signature":"ThreadBase","url":"/ddoc/druntime/core/thread/threadbase.html#ThreadBase"},{"doc":"Cleans up any remaining resources used by this object.","kind":"method","module":"core.thread.threadbase","name":"destructBeforeDtor","package":"druntime","parentType":"ThreadBase","signature":"bool destructBeforeDtor()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.destructBeforeDtor.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"tlsGCData","package":"druntime","parentType":"ThreadBase","signature":"void * tlsGCData()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.tlsGCData.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"tlsRTdataInit","package":"druntime","parentType":"ThreadBase","signature":"void tlsRTdataInit()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.tlsRTdataInit.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"initDataStorage","package":"druntime","parentType":"ThreadBase","signature":"void initDataStorage()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.initDataStorage.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"destroyDataStorage","package":"druntime","parentType":"ThreadBase","signature":"void destroyDataStorage()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.destroyDataStorage.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"destroyDataStorageIfAvail","package":"druntime","parentType":"ThreadBase","signature":"void destroyDataStorageIfAvail()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.destroyDataStorageIfAvail.html"},{"doc":"Waits for this thread to complete.  If the thread terminated as the result of an unhandled exception, this exception will be rethrown.","kind":"method","module":"core.thread.threadbase","name":"join","package":"druntime","parentType":"ThreadBase","signature":"Throwable join(bool  rethrow =  true)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.join.html"},{"doc":"Gets the OS identifier for this thread.","kind":"method","module":"core.thread.threadbase","name":"id","package":"druntime","parentType":"ThreadBase","signature":"ThreadID id()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.id.html"},{"doc":"Gets the user-readable label for this thread.","kind":"method","module":"core.thread.threadbase","name":"name","package":"druntime","parentType":"ThreadBase","signature":"string name()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.name.html"},{"doc":"Sets the user-readable label for this thread.","kind":"method","module":"core.thread.threadbase","name":"name","package":"druntime","parentType":"ThreadBase","signature":"void name(string val)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.name.html"},{"doc":"Gets the daemon status for this thread.  While the runtime will wait for all normal threads to complete before tearing down the process, daemon thr...","kind":"method","module":"core.thread.threadbase","name":"isDaemon","package":"druntime","parentType":"ThreadBase","signature":"bool isDaemon()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.isDaemon.html"},{"doc":"Sets the daemon status for this thread.  While the runtime will wait for all normal threads to complete before tearing down the process, daemon thr...","kind":"method","module":"core.thread.threadbase","name":"isDaemon","package":"druntime","parentType":"ThreadBase","signature":"void isDaemon(bool  val)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.isDaemon.html"},{"doc":"Tests whether this thread is the main thread, i.e. the thread that initialized the runtime","kind":"method","module":"core.thread.threadbase","name":"isMainThread","package":"druntime","parentType":"ThreadBase","signature":"bool isMainThread()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.isMainThread.html"},{"doc":"Tests whether this thread is running.","kind":"method","module":"core.thread.threadbase","name":"isRunning","package":"druntime","parentType":"ThreadBase","signature":"bool isRunning()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.isRunning.html"},{"doc":"Provides a reference to the calling thread.","kind":"method","module":"core.thread.threadbase","name":"getThis","package":"druntime","parentType":"ThreadBase","signature":"ThreadBase getThis()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.getThis.html"},{"doc":"Provides a list of all threads currently being tracked by the system. Note that threads in the returned array might no longer run (see $(D ThreadBa...","kind":"method","module":"core.thread.threadbase","name":"getAll","package":"druntime","parentType":"ThreadBase","signature":"ThreadBase[] getAll()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.getAll.html"},{"doc":"Operates on all threads currently being tracked by the system.  The result of deleting any Thread object is undefined. Note that threads passed to ...","kind":"method","module":"core.thread.threadbase","name":"opApply","package":"druntime","parentType":"ThreadBase","signature":"int opApply(scope  int  delegate(ref  ThreadBase)  dg)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.opApply.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"getAllImpl","package":"druntime","parentType":"ThreadBase","signature":"ThreadBase[] getAllImpl(alias  resize)()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.getAllImpl.html"},{"doc":"Forces a context switch to occur away from the calling thread.","kind":"method","module":"core.thread.threadbase","name":"yield","package":"druntime","parentType":"ThreadBase","signature":"void yield()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.yield.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"run","package":"druntime","parentType":"ThreadBase","signature":"void run()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.run.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"setThis","package":"druntime","parentType":"ThreadBase","signature":"void setThis(ThreadBase t)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.setThis.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"pushContext","package":"druntime","parentType":"ThreadBase","signature":"void pushContext(StackContext *  c)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.pushContext.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"popContext","package":"druntime","parentType":"ThreadBase","signature":"void popContext()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.popContext.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"topContext","package":"druntime","parentType":"ThreadBase","signature":"StackContext * topContext()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.topContext.html"},{"doc":"Get an array of the current saved registers for this thread.","kind":"method","module":"core.thread.threadbase","name":"savedRegisters","package":"druntime","parentType":"ThreadBase","signature":"void[] savedRegisters()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.savedRegisters.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"slock","package":"druntime","parentType":"ThreadBase","signature":"Mutex slock()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.slock.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"initLocks","package":"druntime","parentType":"ThreadBase","signature":"void initLocks()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.initLocks.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"termLocks","package":"druntime","parentType":"ThreadBase","signature":"void termLocks()","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.termLocks.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"add","package":"druntime","parentType":"ThreadBase","signature":"void add(StackContext *  c)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.add.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"remove","package":"druntime","parentType":"ThreadBase","signature":"void remove(StackContext *  c)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.remove.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"incrementAboutToStart","package":"druntime","parentType":"ThreadBase","signature":"void incrementAboutToStart(ThreadBase t)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.incrementAboutToStart.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"add","package":"druntime","parentType":"ThreadBase","signature":"void add(ThreadBase t,  bool  rmAboutToStart =  true)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.add.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"remove","package":"druntime","parentType":"ThreadBase","signature":"void remove(ThreadBase t)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.remove.html"},{"doc":"","kind":"method","module":"core.thread.threadbase","name":"registerThis","package":"druntime","parentType":"ThreadBase","signature":"void registerThis(ThreadBase t,  bool  rmAboutToStart =  true)","url":"/ddoc/druntime/core/thread/threadbase/ThreadBase.registerThis.html"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"attachThread","package":"druntime","parentType":"","signature":"attachThread = externDFunc!(\"core.thread.osthread.attachThread\",  ThreadBase function(ThreadBase) @nogc nothrow)","url":"/ddoc/druntime/core/thread/threadbase.html#attachThread"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"resume","package":"druntime","parentType":"","signature":"resume = externDFunc!(\"core.thread.osthread.resume\",  void  function(ThreadBase)  nothrow @nogc)","url":"/ddoc/druntime/core/thread/threadbase.html#resume"},{"doc":"Indicates the kind of scan being performed by $(D thread_scanAllType).","kind":"enum","module":"core.thread.threadbase","name":"ScanType","package":"druntime","parentType":"","signature":"ScanType","url":"/ddoc/druntime/core/thread/threadbase.html#ScanType"},{"doc":"The stack and/or registers are being scanned.","kind":"enum_member","module":"core.thread.threadbase","name":"stack","package":"druntime","parentType":"","signature":"stack = ","url":"/ddoc/druntime/core/thread/threadbase.html#ScanType"},{"doc":"TLS data is being scanned.","kind":"enum_member","module":"core.thread.threadbase","name":"tls","package":"druntime","parentType":"","signature":"tls = ","url":"/ddoc/druntime/core/thread/threadbase.html#ScanType"},{"doc":"The scanning function.","kind":"alias","module":"core.thread.threadbase","name":"ScanAllThreadsFn","package":"druntime","parentType":"","signature":"ScanAllThreadsFn = void  delegate(void *,  void *)  nothrow","url":"/ddoc/druntime/core/thread/threadbase.html#ScanAllThreadsFn"},{"doc":"ditto","kind":"alias","module":"core.thread.threadbase","name":"ScanAllThreadsTypeFn","package":"druntime","parentType":"","signature":"ScanAllThreadsTypeFn = void  delegate(ScanType,  void *,  void *)  nothrow","url":"/ddoc/druntime/core/thread/threadbase.html#ScanAllThreadsTypeFn"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"callWithStackShellDg","package":"druntime","parentType":"","signature":"callWithStackShellDg = void  delegate(void *  sp)  nothrow","url":"/ddoc/druntime/core/thread/threadbase.html#callWithStackShellDg"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"callWithStackShell","package":"druntime","parentType":"","signature":"callWithStackShell = externDFunc!(\"core.thread.osthread.callWithStackShell\",  void  function(scope  callWithStackShellDg)  nothrow)","url":"/ddoc/druntime/core/thread/threadbase.html#callWithStackShell"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"thread_yield","package":"druntime","parentType":"","signature":"thread_yield = externDFunc!(\"core.thread.osthread.thread_yield\",  void  function() @nogc nothrow)","url":"/ddoc/druntime/core/thread/threadbase.html#thread_yield"},{"doc":"","kind":"alias","module":"core.thread.threadbase","name":"ProcessTLSGCDataDg","package":"druntime","parentType":"","signature":"ProcessTLSGCDataDg = void *  delegate(void *  data)  nothrow","url":"/ddoc/druntime/core/thread/threadbase.html#ProcessTLSGCDataDg"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"mutexAlign","package":"druntime","parentType":"","signature":"mutexAlign","url":"/ddoc/druntime/core/thread/threadbase.html#mutexAlign"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"mutexClassInstanceSize","package":"druntime","parentType":"","signature":"mutexClassInstanceSize","url":"/ddoc/druntime/core/thread/threadbase.html#mutexClassInstanceSize"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"multiThreadedFlag","package":"druntime","parentType":"","signature":"bool multiThreadedFlag","url":"/ddoc/druntime/core/thread/threadbase.html#multiThreadedFlag"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"suspendDepth","package":"druntime","parentType":"","signature":"uint suspendDepth","url":"/ddoc/druntime/core/thread/threadbase.html#suspendDepth"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"ll_nThreads","package":"druntime","parentType":"","signature":"size_t ll_nThreads","url":"/ddoc/druntime/core/thread/threadbase.html#ll_nThreads"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"ll_pThreads","package":"druntime","parentType":"","signature":"ll_ThreadData * ll_pThreads","url":"/ddoc/druntime/core/thread/threadbase.html#ll_pThreads"},{"doc":"","kind":"variable","module":"core.thread.threadbase","name":"ll_lock","package":"druntime","parentType":"","signature":"void[mutexClassInstanceSize] ll_lock","url":"/ddoc/druntime/core/thread/threadbase.html#ll_lock"},{"doc":"The osthread module provides types used in threads modules.","kind":"module","module":"core.thread.threadgroup","name":"core.thread.threadgroup","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/threadgroup.html"},{"doc":"This class is intended to simplify certain common programming techniques.","kind":"class","module":"core.thread.threadgroup","name":"ThreadGroup","package":"druntime","parentType":"","signature":"ThreadGroup","url":"/ddoc/druntime/core/thread/threadgroup.html#ThreadGroup"},{"doc":"Creates and starts a new Thread object that executes fn and adds it to the list of tracked threads.","kind":"method","module":"core.thread.threadgroup","name":"create","package":"druntime","parentType":"ThreadGroup","signature":"Thread create(void  function()  fn)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.create.html"},{"doc":"Creates and starts a new Thread object that executes dg and adds it to the list of tracked threads.","kind":"method","module":"core.thread.threadgroup","name":"create","package":"druntime","parentType":"ThreadGroup","signature":"Thread create(void  delegate()  dg)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.create.html"},{"doc":"Add t to the list of tracked threads if it is not already being tracked.","kind":"method","module":"core.thread.threadgroup","name":"add","package":"druntime","parentType":"ThreadGroup","signature":"void add(Thread t)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.add.html"},{"doc":"Removes t from the list of tracked threads.  No operation will be performed if t is not currently being tracked by this object.","kind":"method","module":"core.thread.threadgroup","name":"remove","package":"druntime","parentType":"ThreadGroup","signature":"void remove(Thread t)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.remove.html"},{"doc":"Operates on all threads currently tracked by this object.","kind":"method","module":"core.thread.threadgroup","name":"opApply","package":"druntime","parentType":"ThreadGroup","signature":"int opApply(scope  int  delegate(ref  Thread)  dg)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.opApply.html"},{"doc":"Iteratively joins all tracked threads.  This function will block add, remove, and opApply until it completes.","kind":"method","module":"core.thread.threadgroup","name":"joinAll","package":"druntime","parentType":"ThreadGroup","signature":"void joinAll(bool  rethrow =  true)","url":"/ddoc/druntime/core/thread/threadgroup/ThreadGroup.joinAll.html"},{"doc":"This module provides types and constants used in thread package.","kind":"module","module":"core.thread.types","name":"core.thread.types","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/thread/types.html"},{"doc":"","kind":"struct","module":"core.thread.types","name":"ll_ThreadData","package":"druntime","parentType":"","signature":"ll_ThreadData","url":"/ddoc/druntime/core/thread/types.html#ll_ThreadData"},{"doc":"Module containing core time functionality, such as $(LREF Duration) (which represents a duration of time) or $(LREF MonoTime) (which represents a t...","kind":"module","module":"core.time","name":"core.time","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/time.html"},{"doc":"$(RED TickDuration is DEPRECATED)","kind":"function","module":"core.time","name":"to","package":"druntime","parentType":"","signature":"T to(string units,  T,  D)(D td) if (is(immutable  D ==  immutable  TickDuration)  &&\n       (units ==  \"seconds\" ||\n         units ==  \"msecs\" ||\n         units ==  \"usecs\" ||\n         units ==  \"hnsecs\" ||\n         units ==  \"nsecs\"))","url":"/ddoc/druntime/core/time/to.html"},{"doc":"These allow you to construct a $(D Duration) from the given time units with the given length.","kind":"function","module":"core.time","name":"dur","package":"druntime","parentType":"","signature":"Duration dur(string units)(long  length) if (units ==  \"weeks\" ||\n        units ==  \"days\" ||\n        units ==  \"hours\" ||\n        units ==  \"minutes\" ||\n        units ==  \"seconds\" ||\n        units ==  \"msecs\" ||\n        units ==  \"usecs\" ||\n        units ==  \"hnsecs\" ||\n        units ==  \"nsecs\")","url":"/ddoc/druntime/core/time/dur.html"},{"doc":"","kind":"function","module":"core.time","name":"_clockTypeName","package":"druntime","parentType":"","signature":"string _clockTypeName(ClockType clockType)","url":"/ddoc/druntime/core/time/_clockTypeName.html"},{"doc":"","kind":"function","module":"core.time","name":"_clockTypeIdx","package":"druntime","parentType":"","signature":"size_t _clockTypeIdx(ClockType clockType)","url":"/ddoc/druntime/core/time/_clockTypeIdx.html"},{"doc":"","kind":"function","module":"core.time","name":"_d_initMonoTime","package":"druntime","parentType":"","signature":"void _d_initMonoTime()","url":"/ddoc/druntime/core/time/_d_initMonoTime.html"},{"doc":"Converts the given time from one clock frequency/resolution to another.","kind":"function","module":"core.time","name":"convClockFreq","package":"druntime","parentType":"","signature":"long convClockFreq(long  ticks,  long  srcTicksPerSecond,  long  dstTicksPerSecond)","url":"/ddoc/druntime/core/time/convClockFreq.html"},{"doc":"Convenience wrapper around $(LREF convClockFreq) which converts ticks at a clock frequency of $(D MonoTime.ticksPerSecond) to nanoseconds.","kind":"function","module":"core.time","name":"ticksToNSecs","package":"druntime","parentType":"","signature":"long ticksToNSecs(long  ticks)","url":"/ddoc/druntime/core/time/ticksToNSecs.html"},{"doc":"The reverse of $(LREF ticksToNSecs).","kind":"function","module":"core.time","name":"nsecsToTicks","package":"druntime","parentType":"","signature":"long nsecsToTicks(long  ticks)","url":"/ddoc/druntime/core/time/nsecsToTicks.html"},{"doc":"Generic way of converting between two time units. Conversions to smaller units use truncating division. Years and months can be converted to each o...","kind":"function","module":"core.time","name":"convert","package":"druntime","parentType":"","signature":"long convert(string from,  string to)(long  value) if (((from ==  \"weeks\" ||\n          from ==  \"days\" ||\n          from ==  \"hours\" ||\n          from ==  \"minutes\" ||\n          from ==  \"seconds\" ||\n          from ==  \"msecs\" ||\n          from ==  \"usecs\" ||\n          from ==  \"hnsecs\" ||\n          from ==  \"nsecs\")  &&\n        (to ==  \"weeks\" ||\n          to ==  \"days\" ||\n          to ==  \"hours\" ||\n          to ==  \"minutes\" ||\n          to ==  \"seconds\" ||\n          to ==  \"msecs\" ||\n          to ==  \"usecs\" ||\n          to ==  \"hnsecs\" ||\n          to ==  \"nsecs\"))  ||\n       ((from ==  \"years\" ||  from ==  \"months\")  && (to ==  \"years\" ||  to ==  \"months\")))","url":"/ddoc/druntime/core/time/convert.html"},{"doc":"Returns the absolute value of a duration.","kind":"function","module":"core.time","name":"abs","package":"druntime","parentType":"","signature":"Duration abs(Duration duration)","url":"/ddoc/druntime/core/time/abs.html"},{"doc":"Ditto","kind":"function","module":"core.time","name":"abs","package":"druntime","parentType":"","signature":"TickDuration abs(TickDuration duration)","url":"/ddoc/druntime/core/time/abs.html"},{"doc":"","kind":"function","module":"core.time","name":"splitUnitsFromHNSecs","package":"druntime","parentType":"","signature":"long splitUnitsFromHNSecs(string units)(ref  long  hnsecs) if (units ==  \"weeks\" ||\n        units ==  \"days\" ||\n        units ==  \"hours\" ||\n        units ==  \"minutes\" ||\n        units ==  \"seconds\" ||\n        units ==  \"msecs\" ||\n        units ==  \"usecs\" ||\n        units ==  \"hnsecs\")","url":"/ddoc/druntime/core/time/splitUnitsFromHNSecs.html"},{"doc":"","kind":"function","module":"core.time","name":"allAreAcceptedUnits","package":"druntime","parentType":"","signature":"bool allAreAcceptedUnits(acceptedUnits...)(scope  string[]  units)","url":"/ddoc/druntime/core/time/allAreAcceptedUnits.html"},{"doc":"","kind":"function","module":"core.time","name":"unitsAreInDescendingOrder","package":"druntime","parentType":"","signature":"bool unitsAreInDescendingOrder(scope  string[]  units)","url":"/ddoc/druntime/core/time/unitsAreInDescendingOrder.html"},{"doc":"","kind":"function","module":"core.time","name":"_abs","package":"druntime","parentType":"","signature":"long _abs(long  val)","url":"/ddoc/druntime/core/time/_abs.html"},{"doc":"","kind":"function","module":"core.time","name":"_abs","package":"druntime","parentType":"","signature":"double _abs(double  val)","url":"/ddoc/druntime/core/time/_abs.html"},{"doc":"Represents a duration of time of weeks or less (kept internally as hnsecs). (e.g. 22 days or 700 seconds).","kind":"struct","module":"core.time","name":"Duration","package":"druntime","parentType":"","signature":"Duration","url":"/ddoc/druntime/core/time.html#Duration"},{"doc":"Converts this `Duration` to a `string`.","kind":"method","module":"core.time","name":"toString","package":"druntime","parentType":"Duration","signature":"void toString(SinkT)(scope  SinkT sink)","url":"/ddoc/druntime/core/time/Duration.toString.html"},{"doc":"A $(D Duration) of $(D 0). It's shorter than doing something like $(D dur!\"seconds\"(0)) and more explicit than $(D Duration.init).","kind":"method","module":"core.time","name":"zero","package":"druntime","parentType":"Duration","signature":"Duration zero()","url":"/ddoc/druntime/core/time/Duration.zero.html"},{"doc":"Largest $(D Duration) possible.","kind":"method","module":"core.time","name":"max","package":"druntime","parentType":"Duration","signature":"Duration max()","url":"/ddoc/druntime/core/time/Duration.max.html"},{"doc":"Most negative $(D Duration) possible.","kind":"method","module":"core.time","name":"min","package":"druntime","parentType":"Duration","signature":"Duration min()","url":"/ddoc/druntime/core/time/Duration.min.html"},{"doc":"Compares this $(D Duration) with the given $(D Duration).","kind":"method","module":"core.time","name":"opCmp","package":"druntime","parentType":"Duration","signature":"int opCmp(Duration rhs)","url":"/ddoc/druntime/core/time/Duration.opCmp.html"},{"doc":"Adds, subtracts or calculates the modulo of two durations.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"Duration","signature":"Duration opBinary(string op)(const  Duration rhs) if (op ==  \"+\" ||  op ==  \"-\" ||  op ==  \"%\")","url":"/ddoc/druntime/core/time/Duration.opBinary.html"},{"doc":"","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"Duration","signature":"Duration opBinary(string op)(const  TickDuration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/Duration.opBinary.html"},{"doc":"$(RED TickDuration is Deprecated)","kind":"method","module":"core.time","name":"opBinaryRight","package":"druntime","parentType":"Duration","signature":"Duration opBinaryRight(string op,  D)(D lhs) if ((op ==  \"+\" ||  op ==  \"-\")  &&\n             is(immutable  D ==  immutable  TickDuration))","url":"/ddoc/druntime/core/time/Duration.opBinaryRight.html"},{"doc":"Adds, subtracts or calculates the modulo of two durations as well as assigning the result to this $(D Duration).","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"Duration","signature":"Duration opOpAssign(string op)(const  Duration rhs) if (op ==  \"+\" ||  op ==  \"-\" ||  op ==  \"%\")","url":"/ddoc/druntime/core/time/Duration.opOpAssign.html"},{"doc":"","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"Duration","signature":"Duration opOpAssign(string op)(const  TickDuration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/Duration.opOpAssign.html"},{"doc":"Multiplies or divides the duration by an integer value.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"Duration","signature":"Duration opBinary(string op)(long  value) if (op ==  \"*\" ||  op ==  \"/\")","url":"/ddoc/druntime/core/time/Duration.opBinary.html"},{"doc":"Multiplies/Divides the duration by an integer value as well as assigning the result to this $(D Duration).","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"Duration","signature":"Duration opOpAssign(string op)(long  value) if (op ==  \"*\" ||  op ==  \"/\")","url":"/ddoc/druntime/core/time/Duration.opOpAssign.html"},{"doc":"Divides two durations.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"Duration","signature":"long opBinary(string op)(Duration rhs) if (op ==  \"/\")","url":"/ddoc/druntime/core/time/Duration.opBinary.html"},{"doc":"Multiplies an integral value and a $(D Duration).","kind":"method","module":"core.time","name":"opBinaryRight","package":"druntime","parentType":"Duration","signature":"Duration opBinaryRight(string op)(long  value) if (op ==  \"*\")","url":"/ddoc/druntime/core/time/Duration.opBinaryRight.html"},{"doc":"Returns the negation of this $(D Duration).","kind":"method","module":"core.time","name":"opUnary","package":"druntime","parentType":"Duration","signature":"Duration opUnary(string op)() if (op ==  \"-\")","url":"/ddoc/druntime/core/time/Duration.opUnary.html"},{"doc":"$(RED TickDuration is Deprecated)","kind":"method","module":"core.time","name":"opCast","package":"druntime","parentType":"Duration","signature":"TickDuration opCast(T)() if (is(immutable  T ==  immutable  TickDuration))","url":"/ddoc/druntime/core/time/Duration.opCast.html"},{"doc":"Allow Duration to be used as a boolean. Returns: `true` if this duration is non-zero.","kind":"method","module":"core.time","name":"opCast","package":"druntime","parentType":"Duration","signature":"bool opCast(T :  bool)()","url":"/ddoc/druntime/core/time/Duration.opCast.html"},{"doc":"","kind":"method","module":"core.time","name":"opCast","package":"druntime","parentType":"Duration","signature":"Duration opCast(T)() if (is(immutable  T ==  immutable  Duration))","url":"/ddoc/druntime/core/time/Duration.opCast.html"},{"doc":"Returns the total number of the given units in this $(D Duration). So, unlike $(D split), it does not strip out the larger units.","kind":"method","module":"core.time","name":"total","package":"druntime","parentType":"Duration","signature":"long total(string units)() if (units ==  \"weeks\" ||\n            units ==  \"days\" ||\n            units ==  \"hours\" ||\n            units ==  \"minutes\" ||\n            units ==  \"seconds\" ||\n            units ==  \"msecs\" ||\n            units ==  \"usecs\" ||\n            units ==  \"hnsecs\" ||\n            units ==  \"nsecs\")","url":"/ddoc/druntime/core/time/Duration.total.html"},{"doc":"Ditto","kind":"method","module":"core.time","name":"toString","package":"druntime","parentType":"Duration","signature":"string toString()","url":"/ddoc/druntime/core/time/Duration.toString.html"},{"doc":"Returns whether this $(D Duration) is negative.","kind":"method","module":"core.time","name":"isNegative","package":"druntime","parentType":"Duration","signature":"bool isNegative()","url":"/ddoc/druntime/core/time/Duration.isNegative.html"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"weeks","package":"druntime","parentType":"","signature":"weeks = dur!\"weeks\"","url":"/ddoc/druntime/core/time.html#weeks"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"days","package":"druntime","parentType":"","signature":"days = dur!\"days\"","url":"/ddoc/druntime/core/time.html#days"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"hours","package":"druntime","parentType":"","signature":"hours = dur!\"hours\"","url":"/ddoc/druntime/core/time.html#hours"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"minutes","package":"druntime","parentType":"","signature":"minutes = dur!\"minutes\"","url":"/ddoc/druntime/core/time.html#minutes"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"seconds","package":"druntime","parentType":"","signature":"seconds = dur!\"seconds\"","url":"/ddoc/druntime/core/time.html#seconds"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"msecs","package":"druntime","parentType":"","signature":"msecs = dur!\"msecs\"","url":"/ddoc/druntime/core/time.html#msecs"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"usecs","package":"druntime","parentType":"","signature":"usecs = dur!\"usecs\"","url":"/ddoc/druntime/core/time.html#usecs"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"hnsecs","package":"druntime","parentType":"","signature":"hnsecs = dur!\"hnsecs\"","url":"/ddoc/druntime/core/time.html#hnsecs"},{"doc":"Ditto","kind":"alias","module":"core.time","name":"nsecs","package":"druntime","parentType":"","signature":"nsecs = dur!\"nsecs\"","url":"/ddoc/druntime/core/time.html#nsecs"},{"doc":"alias for $(D MonoTimeImpl) instantiated with $(D ClockType.normal). This is what most programs should use. It's also what much of $(D MonoTimeImpl...","kind":"alias","module":"core.time","name":"MonoTime","package":"druntime","parentType":"","signature":"MonoTime = MonoTimeImpl!(ClockType.normal)","url":"/ddoc/druntime/core/time.html#MonoTime"},{"doc":"Represents a timestamp of the system's monotonic clock.","kind":"struct","module":"core.time","name":"MonoTimeImpl","package":"druntime","parentType":"","signature":"MonoTimeImpl(ClockType clockType)","url":"/ddoc/druntime/core/time.html#MonoTimeImpl"},{"doc":"The current time of the system's monotonic clock. This has no relation to the wall clock time, as the wall clock time can be adjusted (e.g. by NTP)...","kind":"method","module":"core.time","name":"currTime","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl currTime()","url":"/ddoc/druntime/core/time/MonoTimeImpl.currTime.html"},{"doc":"A $(D MonoTime) of $(D 0) ticks. It's provided to be consistent with $(D Duration.zero), and it's more explicit than $(D MonoTime.init).","kind":"method","module":"core.time","name":"zero","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl zero()","url":"/ddoc/druntime/core/time/MonoTimeImpl.zero.html"},{"doc":"Largest $(D MonoTime) possible.","kind":"method","module":"core.time","name":"max","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl max()","url":"/ddoc/druntime/core/time/MonoTimeImpl.max.html"},{"doc":"Most negative $(D MonoTime) possible.","kind":"method","module":"core.time","name":"min","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl min()","url":"/ddoc/druntime/core/time/MonoTimeImpl.min.html"},{"doc":"Compares this MonoTime with the given MonoTime.","kind":"method","module":"core.time","name":"opCmp","package":"druntime","parentType":"MonoTimeImpl","signature":"int opCmp(MonoTimeImpl rhs)","url":"/ddoc/druntime/core/time/MonoTimeImpl.opCmp.html"},{"doc":"Subtracting two MonoTimes results in a $(LREF Duration) representing the amount of time which elapsed between them.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"MonoTimeImpl","signature":"Duration opBinary(string op)(MonoTimeImpl rhs) if (op ==  \"-\")","url":"/ddoc/druntime/core/time/MonoTimeImpl.opBinary.html"},{"doc":"Adding or subtracting a $(LREF Duration) to/from a MonoTime results in a MonoTime which is adjusted by that amount.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl opBinary(string op)(Duration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/MonoTimeImpl.opBinary.html"},{"doc":"Ditto","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"MonoTimeImpl","signature":"MonoTimeImpl opOpAssign(string op)(Duration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/MonoTimeImpl.opOpAssign.html"},{"doc":"The number of ticks in the monotonic time.","kind":"method","module":"core.time","name":"ticks","package":"druntime","parentType":"MonoTimeImpl","signature":"long ticks()","url":"/ddoc/druntime/core/time/MonoTimeImpl.ticks.html"},{"doc":"The number of ticks that MonoTime has per second - i.e. the resolution or frequency of the system's monotonic clock.","kind":"method","module":"core.time","name":"ticksPerSecond","package":"druntime","parentType":"MonoTimeImpl","signature":"long ticksPerSecond()","url":"/ddoc/druntime/core/time/MonoTimeImpl.ticksPerSecond.html"},{"doc":"","kind":"method","module":"core.time","name":"toString","package":"druntime","parentType":"MonoTimeImpl","signature":"string toString()","url":"/ddoc/druntime/core/time/MonoTimeImpl.toString.html"},{"doc":"$(RED Warning: TickDuration is deprecated. Please use $(LREF MonoTime) for the cases where a monotonic timestamp is needed and $(LREF Duration) whe...","kind":"struct","module":"core.time","name":"TickDuration","package":"druntime","parentType":"","signature":"TickDuration","url":"/ddoc/druntime/core/time.html#TickDuration"},{"doc":"","kind":"method","module":"core.time","name":"TDRvalueOf","package":"druntime","parentType":"TickDuration","signature":"TickDuration TDRvalueOf(TickDuration td)","url":"/ddoc/druntime/core/time/TickDuration.TDRvalueOf.html"},{"doc":"It's the same as $(D TickDuration(0)), but it's provided to be consistent with $(D Duration), which provides a $(D zero) property.","kind":"method","module":"core.time","name":"zero","package":"druntime","parentType":"TickDuration","signature":"TickDuration zero()","url":"/ddoc/druntime/core/time/TickDuration.zero.html"},{"doc":"Largest $(D TickDuration) possible.","kind":"method","module":"core.time","name":"max","package":"druntime","parentType":"TickDuration","signature":"TickDuration max()","url":"/ddoc/druntime/core/time/TickDuration.max.html"},{"doc":"Most negative $(D TickDuration) possible.","kind":"method","module":"core.time","name":"min","package":"druntime","parentType":"TickDuration","signature":"TickDuration min()","url":"/ddoc/druntime/core/time/TickDuration.min.html"},{"doc":"","kind":"method","module":"core.time","name":"time_initializer","package":"druntime","parentType":"TickDuration","signature":"void time_initializer()","url":"/ddoc/druntime/core/time/TickDuration.time_initializer.html"},{"doc":"Returns the total number of seconds in this $(D TickDuration).","kind":"method","module":"core.time","name":"seconds","package":"druntime","parentType":"TickDuration","signature":"long seconds()","url":"/ddoc/druntime/core/time/TickDuration.seconds.html"},{"doc":"Returns the total number of milliseconds in this $(D TickDuration).","kind":"method","module":"core.time","name":"msecs","package":"druntime","parentType":"TickDuration","signature":"long msecs()","url":"/ddoc/druntime/core/time/TickDuration.msecs.html"},{"doc":"Returns the total number of microseconds in this $(D TickDuration).","kind":"method","module":"core.time","name":"usecs","package":"druntime","parentType":"TickDuration","signature":"long usecs()","url":"/ddoc/druntime/core/time/TickDuration.usecs.html"},{"doc":"Returns the total number of hecto-nanoseconds in this $(D TickDuration).","kind":"method","module":"core.time","name":"hnsecs","package":"druntime","parentType":"TickDuration","signature":"long hnsecs()","url":"/ddoc/druntime/core/time/TickDuration.hnsecs.html"},{"doc":"Returns the total number of nanoseconds in this $(D TickDuration).","kind":"method","module":"core.time","name":"nsecs","package":"druntime","parentType":"TickDuration","signature":"long nsecs()","url":"/ddoc/druntime/core/time/TickDuration.nsecs.html"},{"doc":"This allows you to construct a $(D TickDuration) from the given time units with the given length.","kind":"method","module":"core.time","name":"from","package":"druntime","parentType":"TickDuration","signature":"TickDuration from(string units)(long  length) if (units ==  \"seconds\" ||\n            units ==  \"msecs\" ||\n            units ==  \"usecs\" ||\n            units ==  \"hnsecs\" ||\n            units ==  \"nsecs\")","url":"/ddoc/druntime/core/time/TickDuration.from.html"},{"doc":"Returns a $(LREF Duration) with the same number of hnsecs as this $(D TickDuration). Note that the conventional way to convert between $(D TickDura...","kind":"method","module":"core.time","name":"opCast","package":"druntime","parentType":"TickDuration","signature":"Duration opCast(T)() if (is(immutable  T ==  immutable  Duration))","url":"/ddoc/druntime/core/time/TickDuration.opCast.html"},{"doc":"","kind":"method","module":"core.time","name":"opCast","package":"druntime","parentType":"TickDuration","signature":"TickDuration opCast(T)() if (is(immutable  T ==  immutable  TickDuration))","url":"/ddoc/druntime/core/time/TickDuration.opCast.html"},{"doc":"Adds or subtracts two $(D TickDuration)s as well as assigning the result to this $(D TickDuration).","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"TickDuration","signature":"TickDuration opOpAssign(string op)(TickDuration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/TickDuration.opOpAssign.html"},{"doc":"Adds or subtracts two $(D TickDuration)s.","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"TickDuration","signature":"TickDuration opBinary(string op)(TickDuration rhs) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/druntime/core/time/TickDuration.opBinary.html"},{"doc":"Returns the negation of this $(D TickDuration).","kind":"method","module":"core.time","name":"opUnary","package":"druntime","parentType":"TickDuration","signature":"TickDuration opUnary(string op)() if (op ==  \"-\")","url":"/ddoc/druntime/core/time/TickDuration.opUnary.html"},{"doc":"operator overloading \"<, >, <=, >=\"","kind":"method","module":"core.time","name":"opCmp","package":"druntime","parentType":"TickDuration","signature":"int opCmp(TickDuration rhs)","url":"/ddoc/druntime/core/time/TickDuration.opCmp.html"},{"doc":"The legal types of arithmetic for $(D TickDuration) using this operator overload are","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"TickDuration","signature":"void opOpAssign(string op,  T)(T value) if (op ==  \"*\" &&\n           (__traits(isIntegral,  T)  ||  __traits(isFloating,  T)))","url":"/ddoc/druntime/core/time/TickDuration.opOpAssign.html"},{"doc":"The legal types of arithmetic for $(D TickDuration) using this operator overload are","kind":"method","module":"core.time","name":"opOpAssign","package":"druntime","parentType":"TickDuration","signature":"void opOpAssign(string op,  T)(T value) if (op ==  \"/\" &&\n           (__traits(isIntegral,  T)  ||  __traits(isFloating,  T)))","url":"/ddoc/druntime/core/time/TickDuration.opOpAssign.html"},{"doc":"The legal types of arithmetic for $(D TickDuration) using this operator overload are","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"TickDuration","signature":"TickDuration opBinary(string op,  T)(T value) if (op ==  \"*\" &&\n           (__traits(isIntegral,  T)  ||  __traits(isFloating,  T)))","url":"/ddoc/druntime/core/time/TickDuration.opBinary.html"},{"doc":"The legal types of arithmetic for $(D TickDuration) using this operator overload are","kind":"method","module":"core.time","name":"opBinary","package":"druntime","parentType":"TickDuration","signature":"TickDuration opBinary(string op,  T)(T value) if (op ==  \"/\" &&\n           (__traits(isIntegral,  T)  ||  __traits(isFloating,  T)))","url":"/ddoc/druntime/core/time/TickDuration.opBinary.html"},{"doc":"The current system tick. The number of ticks per second varies from system to system. $(D currSystemTick) uses a monotonic clock, so it's intended ...","kind":"method","module":"core.time","name":"currSystemTick","package":"druntime","parentType":"TickDuration","signature":"TickDuration currSystemTick()","url":"/ddoc/druntime/core/time/TickDuration.currSystemTick.html"},{"doc":"Exception type used by core.time.","kind":"class","module":"core.time","name":"TimeException","package":"druntime","parentType":"","signature":"TimeException : Exception","url":"/ddoc/druntime/core/time.html#TimeException"},{"doc":"","kind":"template","module":"core.time","name":"hnsecsPer","package":"druntime","parentType":"","signature":"hnsecsPer(string units)","url":"/ddoc/druntime/core/time.html#hnsecsPer"},{"doc":"","kind":"variable","module":"core.time","name":"_ticksPerSecond","package":"druntime","parentType":"","signature":"long[__traits(allMembers,  ClockType).length] _ticksPerSecond","url":"/ddoc/druntime/core/time.html#_ticksPerSecond"},{"doc":"The vararg module is intended to facilitate vararg manipulation in D. It should be interface compatible with the C module \"stdarg,\" and the two mod...","kind":"module","module":"core.vararg","name":"core.vararg","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/vararg.html"},{"doc":"This module declares intrinsics for volatile operations.","kind":"module","module":"core.volatile","name":"core.volatile","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/core/volatile.html"},{"doc":"Read/write value from/to the memory location indicated by ptr.","kind":"function","module":"core.volatile","name":"volatileLoad","package":"druntime","parentType":"","signature":"ubyte volatileLoad(ubyte  *  ptr)","url":"/ddoc/druntime/core/volatile/volatileLoad.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileLoad","package":"druntime","parentType":"","signature":"ushort volatileLoad(ushort *  ptr)","url":"/ddoc/druntime/core/volatile/volatileLoad.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileLoad","package":"druntime","parentType":"","signature":"uint volatileLoad(uint   *  ptr)","url":"/ddoc/druntime/core/volatile/volatileLoad.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileLoad","package":"druntime","parentType":"","signature":"ulong volatileLoad(ulong  *  ptr)","url":"/ddoc/druntime/core/volatile/volatileLoad.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileStore","package":"druntime","parentType":"","signature":"void volatileStore(ubyte  *  ptr,  ubyte   value)","url":"/ddoc/druntime/core/volatile/volatileStore.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileStore","package":"druntime","parentType":"","signature":"void volatileStore(ushort *  ptr,  ushort  value)","url":"/ddoc/druntime/core/volatile/volatileStore.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileStore","package":"druntime","parentType":"","signature":"void volatileStore(uint   *  ptr,  uint    value)","url":"/ddoc/druntime/core/volatile/volatileStore.html"},{"doc":"","kind":"function","module":"core.volatile","name":"volatileStore","package":"druntime","parentType":"","signature":"void volatileStore(ulong  *  ptr,  ulong   value)","url":"/ddoc/druntime/core/volatile/volatileStore.html"},{"doc":"Handle page protection errors using D errors (exceptions) or asserts.","kind":"module","module":"etc.linux.memoryerror","name":"etc.linux.memoryerror","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/etc/linux/memoryerror.html"},{"doc":"","kind":"variable","module":"etc.linux.memoryerror","name":"MEMORY_RESERVED_FOR_NULL_DEREFERENCE","package":"druntime","parentType":"","signature":"size_t MEMORY_RESERVED_FOR_NULL_DEREFERENCE","url":"/ddoc/druntime/etc/linux/memoryerror.html#MEMORY_RESERVED_FOR_NULL_DEREFERENCE"},{"doc":"D wrapper for the Valgrind client API. Note that you must include this file into your program's compilation and compile with `-debug=VALGRIND` to a...","kind":"module","module":"etc.valgrind.valgrind","name":"etc.valgrind.valgrind","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/etc/valgrind/valgrind.html"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Symbols)) $(TR $(TD Arrays) $(TD $(MYREF assumeSafeAppend...","kind":"module","module":"object","name":"object","package":"druntime","parentType":"","signature":"","url":"/ddoc/druntime/object.html"},{"doc":"Implementation for class opEquals override. Calls the class-defined methods after a null check. Please note this is not nogc right now, even if you...","kind":"function","module":"object","name":"opEquals","package":"druntime","parentType":"","signature":"bool opEquals(LHS,  RHS)(LHS lhs,  RHS rhs) if ((is(LHS :  const  Object)  ||  is(LHS :  const  shared  Object))  &&\n    (is(RHS :  const  Object)  ||  is(RHS :  const  shared  Object)))","url":"/ddoc/druntime/object/opEquals.html"},{"doc":"","kind":"function","module":"object","name":"_d_setSameMutex","package":"druntime","parentType":"","signature":"void _d_setSameMutex(shared  Object ownee,  shared  Object owner)","url":"/ddoc/druntime/object/_d_setSameMutex.html"},{"doc":"Makes ownee use owner's mutex. This will initialize owner's mutex if it hasn't been set yet. Params: ownee = object to change owner = source object","kind":"function","module":"object","name":"setSameMutex","package":"druntime","parentType":"","signature":"void setSameMutex(shared  Object ownee,  shared  Object owner)","url":"/ddoc/druntime/object/setSameMutex.html"},{"doc":"","kind":"function","module":"object","name":"_d_newclass","package":"druntime","parentType":"","signature":"Object _d_newclass(const  TypeInfo_Class ci)","url":"/ddoc/druntime/object/_d_newclass.html"},{"doc":"","kind":"function","module":"object","name":"_d_isbaseof","package":"druntime","parentType":"","signature":"int _d_isbaseof(scope  ClassInfo oc,  scope  const  ClassInfo c)","url":"/ddoc/druntime/object/_d_isbaseof.html"},{"doc":"Given a pointer: If it is an Object, return that Object. If it is an interface, return the Object implementing the interface. If it is null, return...","kind":"function","module":"object","name":"_d_toObject","package":"druntime","parentType":"","signature":"Object _d_toObject(return  scope  void *  p)","url":"/ddoc/druntime/object/_d_toObject.html"},{"doc":"","kind":"function","module":"object","name":"_d_arraybounds","package":"druntime","parentType":"","signature":"noreturn _d_arraybounds(string file,  uint  line)","url":"/ddoc/druntime/object/_d_arraybounds.html"},{"doc":"","kind":"function","module":"object","name":"aaLiteral","package":"druntime","parentType":"","signature":"void * aaLiteral(Key,  Value)(Key[]  keys,  Value[]  values)","url":"/ddoc/druntime/object/aaLiteral.html"},{"doc":"","kind":"function","module":"object","name":"_aaAsStruct","package":"druntime","parentType":"","signature":"auto _aaAsStruct(K,  V)(V[K]  aa)","url":"/ddoc/druntime/object/_aaAsStruct.html"},{"doc":"Removes all remaining keys and values from an associative array. Params: aa =     The associative array.","kind":"function","module":"object","name":"clear","package":"druntime","parentType":"","signature":"void clear(Value,  Key)(Value[Key]  aa)","url":"/ddoc/druntime/object/clear.html"},{"doc":"ditto","kind":"function","module":"object","name":"clear","package":"druntime","parentType":"","signature":"void clear(Value,  Key)(Value[Key] *  aa)","url":"/ddoc/druntime/object/clear.html"},{"doc":"Reorganizes the associative array in place so that lookups are more efficient. Params: aa =     The associative array. Returns: The rehashed associ...","kind":"function","module":"object","name":"rehash","package":"druntime","parentType":"","signature":"Value[Key] rehash(Value,  Key)(Value[Key]  aa)","url":"/ddoc/druntime/object/rehash.html"},{"doc":"ditto","kind":"function","module":"object","name":"rehash","package":"druntime","parentType":"","signature":"Value[Key] rehash(T :  Value[Key],  Value,  Key)(T *  aa)","url":"/ddoc/druntime/object/rehash.html"},{"doc":"ditto","kind":"function","module":"object","name":"rehash","package":"druntime","parentType":"","signature":"Value[Key] rehash(T :  shared  Value[Key],  Value,  Key)(auto  ref  T aa)","url":"/ddoc/druntime/object/rehash.html"},{"doc":"ditto","kind":"function","module":"object","name":"rehash","package":"druntime","parentType":"","signature":"Value[Key] rehash(T :  shared  Value[Key],  Value,  Key)(T *  aa)","url":"/ddoc/druntime/object/rehash.html"},{"doc":"Creates a new associative array of the same size and copies the contents of the associative array into it. Params: aa =     The associative array. ...","kind":"function","module":"object","name":"dup","package":"druntime","parentType":"","signature":"auto dup(T :  V[K],  K,  V)(T aa)","url":"/ddoc/druntime/object/dup.html"},{"doc":"ditto","kind":"function","module":"object","name":"dup","package":"druntime","parentType":"","signature":"auto dup(T :  V[K],  K,  V)(T *  aa)","url":"/ddoc/druntime/object/dup.html"},{"doc":"","kind":"function","module":"object","name":"_aaToRange","package":"druntime","parentType":"","signature":"auto _aaToRange(K,  V)(auto  ref  inout  V[K]  aa)","url":"/ddoc/druntime/object/_aaToRange.html"},{"doc":"Returns a $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) which will iterate over the keys of the associative array. The keys ar...","kind":"function","module":"object","name":"byKey","package":"druntime","parentType":"","signature":"auto byKey(T :  V[K],  K,  V)(T aa)","url":"/ddoc/druntime/object/byKey.html"},{"doc":"ditto","kind":"function","module":"object","name":"byKey","package":"druntime","parentType":"","signature":"auto byKey(K,  V)(V[K] *  aa)","url":"/ddoc/druntime/object/byKey.html"},{"doc":"Returns a $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) which will iterate over the values of the associative array. The value...","kind":"function","module":"object","name":"byValue","package":"druntime","parentType":"","signature":"auto byValue(T :  V[K],  K,  V)(T aa)","url":"/ddoc/druntime/object/byValue.html"},{"doc":"ditto","kind":"function","module":"object","name":"byValue","package":"druntime","parentType":"","signature":"auto byValue(K,  V)(V[K] *  aa)","url":"/ddoc/druntime/object/byValue.html"},{"doc":"Returns a $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) which will iterate over the key-value pairs of the associative array. ...","kind":"function","module":"object","name":"byKeyValue","package":"druntime","parentType":"","signature":"auto byKeyValue(T :  V[K],  K,  V)(T aa)","url":"/ddoc/druntime/object/byKeyValue.html"},{"doc":"ditto","kind":"function","module":"object","name":"byKeyValue","package":"druntime","parentType":"","signature":"auto byKeyValue(T :  V[K],  K,  V)(T *  aa)","url":"/ddoc/druntime/object/byKeyValue.html"},{"doc":"Returns a newly allocated dynamic array containing a copy of the keys from the associative array. Params: aa =     The associative array. Returns: ...","kind":"function","module":"object","name":"keys","package":"druntime","parentType":"","signature":"auto keys(Value,  Key)(inout  Value[Key]  aa)","url":"/ddoc/druntime/object/keys.html"},{"doc":"ditto","kind":"function","module":"object","name":"keys","package":"druntime","parentType":"","signature":"auto keys(T :  Value[Key],  Value,  Key)(T * aa)","url":"/ddoc/druntime/object/keys.html"},{"doc":"Returns a newly allocated dynamic array containing a copy of the values from the associative array. Params: aa =     The associative array. Returns...","kind":"function","module":"object","name":"values","package":"druntime","parentType":"","signature":"auto values(Value,  Key)(inout  Value[Key]  aa)","url":"/ddoc/druntime/object/values.html"},{"doc":"ditto","kind":"function","module":"object","name":"values","package":"druntime","parentType":"","signature":"auto values(T :  Value[Key],  Value,  Key)(T * aa)","url":"/ddoc/druntime/object/values.html"},{"doc":"If `key` is in `aa`, returns corresponding value; otherwise it evaluates and returns `defaultValue`. Params: aa =     The associative array. key = ...","kind":"function","module":"object","name":"get","package":"druntime","parentType":"","signature":"inout(V) get(K,  V)(inout(V[K])  aa,  K key,  lazy  inout(V)  defaultValue)","url":"/ddoc/druntime/object/get.html"},{"doc":"ditto","kind":"function","module":"object","name":"get","package":"druntime","parentType":"","signature":"inout(V) get(K,  V)(inout(V[K]) *  aa,  K key,  lazy  inout(V)  defaultValue)","url":"/ddoc/druntime/object/get.html"},{"doc":"If `key` is in `aa`, returns corresponding value; otherwise it evaluates `value`, adds it to the associative array and returns it. Params: aa =    ...","kind":"function","module":"object","name":"require","package":"druntime","parentType":"","signature":"V require(K,  V)(ref  V[K]  aa,  K key,  lazy  V value =  V.init)","url":"/ddoc/druntime/object/require.html"},{"doc":"Calls `create` if `key` doesn't exist in the associative array, otherwise calls `update`. `create` returns a corresponding value for `key`. `update...","kind":"function","module":"object","name":"update","package":"druntime","parentType":"","signature":"void update(K,  V,  C,  U)(ref  V[K]  aa,  K key,  scope  C create,  scope  U update) if (is(typeof(create()) :  V)  && (is(typeof(update(aa[K.init])) :  V)  ||  is(typeof(update(aa[K.init]))  ==  void)))","url":"/ddoc/druntime/object/update.html"},{"doc":"","kind":"function","module":"object","name":"_xopEquals","package":"druntime","parentType":"","signature":"bool _xopEquals(in  void *,  in  void *)","url":"/ddoc/druntime/object/_xopEquals.html"},{"doc":"","kind":"function","module":"object","name":"_xopCmp","package":"druntime","parentType":"","signature":"bool _xopCmp(in  void *,  in  void *)","url":"/ddoc/druntime/object/_xopCmp.html"},{"doc":"","kind":"function","module":"object","name":"getElement","package":"druntime","parentType":"","signature":"inout(TypeInfo) getElement(return  scope  inout  TypeInfo value)","url":"/ddoc/druntime/object/getElement.html"},{"doc":"","kind":"function","module":"object","name":"getArrayHash","package":"druntime","parentType":"","signature":"size_t getArrayHash(const  scope  TypeInfo element,  const  scope  void *  ptr,  const  size_t count)","url":"/ddoc/druntime/object/getArrayHash.html"},{"doc":"Provide the .dup array property.","kind":"function","module":"object","name":"dup","package":"druntime","parentType":"","signature":"@property auto dup(T)(T[]  a) if (!is(const(T) :  T))","url":"/ddoc/druntime/object/dup.html"},{"doc":"ditto","kind":"function","module":"object","name":"dup","package":"druntime","parentType":"","signature":"T[] dup(T)(const(T)[]  a) if (is(const(T) :  T))","url":"/ddoc/druntime/object/dup.html"},{"doc":"Provide the .idup array property.","kind":"function","module":"object","name":"idup","package":"druntime","parentType":"","signature":"immutable(T)[] idup(T)(T[]  a)","url":"/ddoc/druntime/object/idup.html"},{"doc":"ditto","kind":"function","module":"object","name":"idup","package":"druntime","parentType":"","signature":"immutable(T)[] idup(T: void)(const(T)[]  a)","url":"/ddoc/druntime/object/idup.html"},{"doc":"(Property) Gets the current _capacity of a slice. The _capacity is the size that the slice can grow to before the underlying array must be realloca...","kind":"function","module":"object","name":"capacity","package":"druntime","parentType":"","signature":"size_t capacity(T)(T[]  arr)","url":"/ddoc/druntime/object/capacity.html"},{"doc":"Reserves capacity for a slice. The capacity is the size that the slice can grow to before the underlying array must be reallocated or extended.","kind":"function","module":"object","name":"reserve","package":"druntime","parentType":"","signature":"size_t reserve(T)(ref  T[]  arr,  size_t newcapacity)","url":"/ddoc/druntime/object/reserve.html"},{"doc":"Assume that it is safe to append to this array. Appends made to this array after calling this function may append in place, even if the array was a...","kind":"function","module":"object","name":"assumeSafeAppend","package":"druntime","parentType":"","signature":"inout(T[]) assumeSafeAppend(T)(auto  ref  inout(T[])  arr)","url":"/ddoc/druntime/object/assumeSafeAppend.html"},{"doc":"","kind":"function","module":"object","name":"_doPostblit","package":"druntime","parentType":"","signature":"void _doPostblit(T)(T[]  arr)","url":"/ddoc/druntime/object/_doPostblit.html"},{"doc":"Destroys the given object and optionally resets to initial state. It's used to _destroy an object, calling its destructor or finalizer so it no lon...","kind":"function","module":"object","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(bool  initialize =  true,  T)(ref  T obj) if (is(T ==  struct))","url":"/ddoc/druntime/object/destroy.html"},{"doc":"","kind":"function","module":"object","name":"rt_finalize2","package":"druntime","parentType":"","signature":"void rt_finalize2(void *  p,  bool  det =  true,  bool  resetMemory =  true)","url":"/ddoc/druntime/object/rt_finalize2.html"},{"doc":"ditto","kind":"function","module":"object","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(bool  initialize =  true,  T)(T obj) if (is(T ==  class))","url":"/ddoc/druntime/object/destroy.html"},{"doc":"ditto","kind":"function","module":"object","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(bool  initialize =  true,  T)(T obj) if (is(T ==  interface))","url":"/ddoc/druntime/object/destroy.html"},{"doc":"ditto","kind":"function","module":"object","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(bool  initialize =  true,  T)(ref  T obj) if (__traits(isStaticArray,  T))","url":"/ddoc/druntime/object/destroy.html"},{"doc":"ditto","kind":"function","module":"object","name":"destroy","package":"druntime","parentType":"","signature":"void destroy(bool  initialize =  true,  T)(ref  T obj) if (!is(T ==  struct)  && !is(T ==  interface)  && !is(T ==  class)  && !__traits(isStaticArray,  T))","url":"/ddoc/druntime/object/destroy.html"},{"doc":"","kind":"function","module":"object","name":"_d_delThrowable","package":"druntime","parentType":"","signature":"void _d_delThrowable(scope  Throwable)","url":"/ddoc/druntime/object/_d_delThrowable.html"},{"doc":"","kind":"function","module":"object","name":"__cmp","package":"druntime","parentType":"","signature":"int __cmp(C1,  C2)(C1 lhs,  C2 rhs) if ((is(C1 :  const(Object))  || (is(C1 ==  interface)  && (__traits(getLinkage,  C1)  ==  \"D\")))  &&\n    (is(C2 :  const(Object))  || (is(C2 ==  interface)  && (__traits(getLinkage,  C2)  ==  \"D\"))))","url":"/ddoc/druntime/object/__cmp.html"},{"doc":"","kind":"alias","module":"object","name":"size_t","package":"druntime","parentType":"","signature":"size_t = typeof(int.sizeof)","url":"/ddoc/druntime/object.html#size_t"},{"doc":"","kind":"alias","module":"object","name":"ptrdiff_t","package":"druntime","parentType":"","signature":"ptrdiff_t = typeof(cast(void *) 0 -  cast(void *) 0)","url":"/ddoc/druntime/object.html#ptrdiff_t"},{"doc":"","kind":"alias","module":"object","name":"sizediff_t","package":"druntime","parentType":"","signature":"sizediff_t = ptrdiff_t","url":"/ddoc/druntime/object.html#sizediff_t"},{"doc":"Bottom type. See $(DDSUBLINK spec/type, noreturn, `noreturn`).","kind":"alias","module":"object","name":"noreturn","package":"druntime","parentType":"","signature":"noreturn = typeof(* null)","url":"/ddoc/druntime/object.html#noreturn"},{"doc":"","kind":"alias","module":"object","name":"hash_t","package":"druntime","parentType":"","signature":"hash_t = size_t","url":"/ddoc/druntime/object.html#hash_t"},{"doc":"","kind":"alias","module":"object","name":"equals_t","package":"druntime","parentType":"","signature":"equals_t = bool","url":"/ddoc/druntime/object.html#equals_t"},{"doc":"","kind":"alias","module":"object","name":"string","package":"druntime","parentType":"","signature":"string = immutable(char)[]","url":"/ddoc/druntime/object.html#string"},{"doc":"","kind":"alias","module":"object","name":"wstring","package":"druntime","parentType":"","signature":"wstring = immutable(wchar)[]","url":"/ddoc/druntime/object.html#wstring"},{"doc":"","kind":"alias","module":"object","name":"dstring","package":"druntime","parentType":"","signature":"dstring = immutable(dchar)[]","url":"/ddoc/druntime/object.html#dstring"},{"doc":"All D class objects inherit from Object.","kind":"class","module":"object","name":"Object","package":"druntime","parentType":"","signature":"Object","url":"/ddoc/druntime/object.html#Object"},{"doc":"Convert Object to a human readable string.","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"Object","signature":"string toString()","url":"/ddoc/druntime/object/Object.toString.html"},{"doc":"Compute hash function for Object.","kind":"method","module":"object","name":"toHash","package":"druntime","parentType":"Object","signature":"size_t toHash()","url":"/ddoc/druntime/object/Object.toHash.html"},{"doc":"Compare with another Object obj. Returns: $(TABLE $(TR $(TD this &lt; obj) $(TD &lt; 0)) $(TR $(TD this == obj) $(TD 0)) $(TR $(TD this &gt; obj) $...","kind":"method","module":"object","name":"opCmp","package":"druntime","parentType":"Object","signature":"int opCmp(Object o)","url":"/ddoc/druntime/object/Object.opCmp.html"},{"doc":"Test whether $(D this) is equal to $(D o). The default implementation only compares by identity (using the $(D is) operator). Generally, overrides ...","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"Object","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/Object.opEquals.html"},{"doc":"Create instance of class specified by the fully qualified name classname. The class must either have no constructors or have a default constructor....","kind":"method","module":"object","name":"factory","package":"druntime","parentType":"Object","signature":"Object factory(string classname)","url":"/ddoc/druntime/object/Object.factory.html"},{"doc":"Information about an interface. When an object is accessed via an interface, an Interface* appears as the first entry in its vtbl.","kind":"struct","module":"object","name":"Interface","package":"druntime","parentType":"","signature":"Interface","url":"/ddoc/druntime/object.html#Interface"},{"doc":"Array of pairs giving the offset and type information for each member in an aggregate.","kind":"struct","module":"object","name":"OffsetTypeInfo","package":"druntime","parentType":"","signature":"OffsetTypeInfo","url":"/ddoc/druntime/object.html#OffsetTypeInfo"},{"doc":"Runtime type information about a type. Can be retrieved for any type using a $(GLINK2 expression,TypeidExpression, TypeidExpression).","kind":"class","module":"object","name":"TypeInfo","package":"druntime","parentType":"","signature":"TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo.toString.html"},{"doc":"","kind":"method","module":"object","name":"toHash","package":"druntime","parentType":"TypeInfo","signature":"size_t toHash()","url":"/ddoc/druntime/object/TypeInfo.toHash.html"},{"doc":"","kind":"method","module":"object","name":"opCmp","package":"druntime","parentType":"TypeInfo","signature":"int opCmp(Object rhs)","url":"/ddoc/druntime/object/TypeInfo.opCmp.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo","signature":"bool opEquals(const  TypeInfo ti)","url":"/ddoc/druntime/object/TypeInfo.opEquals.html"},{"doc":"Computes a hash of the instance of a type. Params: p = pointer to start of instance of the type Returns: the hash Bugs: fix https://issues.dlang.or...","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo.getHash.html"},{"doc":"Compares two instances for equality.","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo.equals.html"},{"doc":"Compares two instances for &lt;, ==, or &gt;.","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo.compare.html"},{"doc":"Returns size of the type.","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo.tsize.html"},{"doc":"Swaps two instances of the type.","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo.swap.html"},{"doc":"Get TypeInfo for 'next' type, as defined by what kind of type this is, null if none.","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo.next.html"},{"doc":"Return default initializer.  If the type should be initialized to all zeros, an array with a null ptr and a length equal to the type size will be r...","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo.initializer.html"},{"doc":"Get flags for type: 1 means GC should scan for pointers, 2 means arg of this type is passed in SIMD register(s) if available","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo.flags.html"},{"doc":"Get type information on the contents of the type; null if not available","kind":"method","module":"object","name":"offTi","package":"druntime","parentType":"TypeInfo","signature":"const(OffsetTypeInfo)[] offTi()","url":"/ddoc/druntime/object/TypeInfo.offTi.html"},{"doc":"Run the destructor on the object and all its sub-objects","kind":"method","module":"object","name":"destroy","package":"druntime","parentType":"TypeInfo","signature":"void destroy(void *  p)","url":"/ddoc/druntime/object/TypeInfo.destroy.html"},{"doc":"Run the postblit on the object and all its sub-objects","kind":"method","module":"object","name":"postblit","package":"druntime","parentType":"TypeInfo","signature":"void postblit(void *  p)","url":"/ddoc/druntime/object/TypeInfo.postblit.html"},{"doc":"Return alignment of type","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo.talign.html"},{"doc":"Return info used by the garbage collector to do precise collection.","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Enum","package":"druntime","parentType":"","signature":"TypeInfo_Enum : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Enum"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Enum","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Enum.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Enum","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Enum.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Enum","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Enum.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Enum","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Enum.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Enum","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Enum.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Enum","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Enum.tsize.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Enum","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Enum.swap.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_Enum","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_Enum.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Enum","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Enum.flags.html"},{"doc":"","kind":"method","module":"object","name":"offTi","package":"druntime","parentType":"TypeInfo_Enum","signature":"const(OffsetTypeInfo)[] offTi()","url":"/ddoc/druntime/object/TypeInfo_Enum.offTi.html"},{"doc":"","kind":"method","module":"object","name":"destroy","package":"druntime","parentType":"TypeInfo_Enum","signature":"void destroy(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Enum.destroy.html"},{"doc":"","kind":"method","module":"object","name":"postblit","package":"druntime","parentType":"TypeInfo_Enum","signature":"void postblit(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Enum.postblit.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Enum","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Enum.initializer.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Enum","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Enum.talign.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Enum","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Enum.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Pointer","package":"druntime","parentType":"","signature":"TypeInfo_Pointer : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Pointer"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Pointer","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Pointer.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Pointer","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Pointer.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Pointer","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Pointer.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Pointer","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Pointer.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Pointer","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Pointer.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Pointer","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Pointer.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Pointer","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Pointer.initializer.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Pointer","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Pointer.swap.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_Pointer","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_Pointer.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Pointer","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Pointer.flags.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Array","package":"druntime","parentType":"","signature":"TypeInfo_Array : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Array"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Array","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Array.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Array","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Array.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Array","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Array.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Array","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Array.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Array","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Array.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Array","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Array.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Array","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Array.initializer.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Array","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Array.swap.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_Array","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_Array.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Array","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Array.flags.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Array","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Array.talign.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Array","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Array.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_StaticArray","package":"druntime","parentType":"","signature":"TypeInfo_StaticArray : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_StaticArray"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.tsize.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.swap.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.initializer.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.flags.html"},{"doc":"","kind":"method","module":"object","name":"destroy","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"void destroy(void *  p)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.destroy.html"},{"doc":"","kind":"method","module":"object","name":"postblit","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"void postblit(void *  p)","url":"/ddoc/druntime/object/TypeInfo_StaticArray.postblit.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.talign.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_StaticArray","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_StaticArray.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_AssociativeArray","package":"druntime","parentType":"","signature":"TypeInfo_AssociativeArray : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_AssociativeArray"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.equals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"hash_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.getHash.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.initializer.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.flags.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_AssociativeArray","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_AssociativeArray.talign.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Vector","package":"druntime","parentType":"","signature":"TypeInfo_Vector : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Vector"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Vector","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Vector.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Vector","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Vector.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Vector","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Vector.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Vector","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Vector.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Vector","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Vector.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Vector","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Vector.tsize.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Vector","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Vector.swap.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_Vector","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_Vector.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Vector","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Vector.flags.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Vector","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Vector.initializer.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Vector","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Vector.talign.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Function","package":"druntime","parentType":"","signature":"TypeInfo_Function : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Function"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Function","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Function.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Function","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Function.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Function","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Function.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Function","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Function.initializer.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Function","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Function.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Delegate","package":"druntime","parentType":"","signature":"TypeInfo_Delegate : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Delegate"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Delegate","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Delegate.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Delegate","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Delegate.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Delegate","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Delegate.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Delegate","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Delegate.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Delegate","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Delegate.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Delegate","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Delegate.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Delegate","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Delegate.initializer.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Delegate","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Delegate.flags.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Delegate","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Delegate.talign.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Delegate","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Delegate.rtInfo.html"},{"doc":"Runtime type information about a class. Can be retrieved from an object instance by using the $(DDSUBLINK spec/expression,typeid_expressions,typeid...","kind":"class","module":"object","name":"TypeInfo_Class","package":"druntime","parentType":"","signature":"TypeInfo_Class : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Class"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Class","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Class.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Class","signature":"bool opEquals(const  TypeInfo o)","url":"/ddoc/druntime/object/TypeInfo_Class.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Class","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Class.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Class","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Class.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Class","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Class.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Class","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Class.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Class","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Class.initializer.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Class","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Class.flags.html"},{"doc":"","kind":"method","module":"object","name":"offTi","package":"druntime","parentType":"TypeInfo_Class","signature":"const(OffsetTypeInfo)[] offTi()","url":"/ddoc/druntime/object/TypeInfo_Class.offTi.html"},{"doc":"","kind":"method","module":"object","name":"info","package":"druntime","parentType":"TypeInfo_Class","signature":"final @property auto info()","url":"/ddoc/druntime/object/TypeInfo_Class.info.html"},{"doc":"","kind":"method","module":"object","name":"typeinfo","package":"druntime","parentType":"TypeInfo_Class","signature":"final @property auto typeinfo()","url":"/ddoc/druntime/object/TypeInfo_Class.typeinfo.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Class","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Class.rtInfo.html"},{"doc":"Search all modules for TypeInfo_Class corresponding to classname. Returns: null if not found","kind":"method","module":"object","name":"find","package":"druntime","parentType":"TypeInfo_Class","signature":"const(TypeInfo_Class) find(const  scope  char[]  classname)","url":"/ddoc/druntime/object/TypeInfo_Class.find.html"},{"doc":"Create instance of Object represented by 'this'.","kind":"method","module":"object","name":"create","package":"druntime","parentType":"TypeInfo_Class","signature":"Object create()","url":"/ddoc/druntime/object/TypeInfo_Class.create.html"},{"doc":"Returns true if the class described by `child` derives from or is the class described by this `TypeInfo_Class`. Always returns false if the argumen...","kind":"method","module":"object","name":"isBaseOf","package":"druntime","parentType":"TypeInfo_Class","signature":"bool isBaseOf(scope  const  TypeInfo_Class child)","url":"/ddoc/druntime/object/TypeInfo_Class.isBaseOf.html"},{"doc":"","kind":"alias","module":"object","name":"ClassInfo","package":"druntime","parentType":"","signature":"ClassInfo = TypeInfo_Class","url":"/ddoc/druntime/object.html#ClassInfo"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Interface","package":"druntime","parentType":"","signature":"TypeInfo_Interface : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Interface"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Interface","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Interface.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Interface","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Interface.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Interface","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Interface.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Interface","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Interface.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Interface","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Interface.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Interface","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Interface.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Interface","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Interface.initializer.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Interface","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Interface.flags.html"},{"doc":"Returns true if the class described by `child` derives from the interface described by this `TypeInfo_Interface`. Always returns false if the argum...","kind":"method","module":"object","name":"isBaseOf","package":"druntime","parentType":"TypeInfo_Interface","signature":"bool isBaseOf(scope  const  TypeInfo_Class child)","url":"/ddoc/druntime/object/TypeInfo_Interface.isBaseOf.html"},{"doc":"Returns true if the interface described by `child` derives from or is the interface described by this `TypeInfo_Interface`. Always returns false if...","kind":"method","module":"object","name":"isBaseOf","package":"druntime","parentType":"TypeInfo_Interface","signature":"bool isBaseOf(scope  const  TypeInfo_Interface child)","url":"/ddoc/druntime/object/TypeInfo_Interface.isBaseOf.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Struct","package":"druntime","parentType":"","signature":"TypeInfo_Struct : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Struct"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Struct","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Struct.toString.html"},{"doc":"","kind":"method","module":"object","name":"toHash","package":"druntime","parentType":"TypeInfo_Struct","signature":"size_t toHash()","url":"/ddoc/druntime/object/TypeInfo_Struct.toHash.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Struct","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Struct.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Struct","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Struct.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Struct","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Struct.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Struct","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Struct.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Struct","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Struct.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Struct","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Struct.initializer.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Struct","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Struct.flags.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Struct","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Struct.talign.html"},{"doc":"","kind":"method","module":"object","name":"destroy","package":"druntime","parentType":"TypeInfo_Struct","signature":"void destroy(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Struct.destroy.html"},{"doc":"","kind":"method","module":"object","name":"postblit","package":"druntime","parentType":"TypeInfo_Struct","signature":"void postblit(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Struct.postblit.html"},{"doc":"","kind":"method","module":"object","name":"name","package":"druntime","parentType":"TypeInfo_Struct","signature":"string name()","url":"/ddoc/druntime/object/TypeInfo_Struct.name.html"},{"doc":"","kind":"method","module":"object","name":"rtInfo","package":"druntime","parentType":"TypeInfo_Struct","signature":"immutable(void) * rtInfo()","url":"/ddoc/druntime/object/TypeInfo_Struct.rtInfo.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Tuple","package":"druntime","parentType":"","signature":"TypeInfo_Tuple : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Tuple"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Tuple","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Tuple.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Tuple","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Tuple.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Tuple","signature":"size_t getHash(scope  const  void *  p)","url":"/ddoc/druntime/object/TypeInfo_Tuple.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Tuple","signature":"bool equals(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Tuple.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Tuple","signature":"int compare(in  void *  p1,  in  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Tuple.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Tuple","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Tuple.tsize.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Tuple","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Tuple.initializer.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Tuple","signature":"void swap(void *  p1,  void *  p2)","url":"/ddoc/druntime/object/TypeInfo_Tuple.swap.html"},{"doc":"","kind":"method","module":"object","name":"destroy","package":"druntime","parentType":"TypeInfo_Tuple","signature":"void destroy(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Tuple.destroy.html"},{"doc":"","kind":"method","module":"object","name":"postblit","package":"druntime","parentType":"TypeInfo_Tuple","signature":"void postblit(void *  p)","url":"/ddoc/druntime/object/TypeInfo_Tuple.postblit.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Tuple","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Tuple.talign.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Const","package":"druntime","parentType":"","signature":"TypeInfo_Const : TypeInfo","url":"/ddoc/druntime/object.html#TypeInfo_Const"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Const","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Const.toString.html"},{"doc":"","kind":"method","module":"object","name":"opEquals","package":"druntime","parentType":"TypeInfo_Const","signature":"bool opEquals(Object o)","url":"/ddoc/druntime/object/TypeInfo_Const.opEquals.html"},{"doc":"","kind":"method","module":"object","name":"getHash","package":"druntime","parentType":"TypeInfo_Const","signature":"size_t getHash(scope  const  void  * p)","url":"/ddoc/druntime/object/TypeInfo_Const.getHash.html"},{"doc":"","kind":"method","module":"object","name":"equals","package":"druntime","parentType":"TypeInfo_Const","signature":"bool equals(in  void  * p1,  in  void  * p2)","url":"/ddoc/druntime/object/TypeInfo_Const.equals.html"},{"doc":"","kind":"method","module":"object","name":"compare","package":"druntime","parentType":"TypeInfo_Const","signature":"int compare(in  void  * p1,  in  void  * p2)","url":"/ddoc/druntime/object/TypeInfo_Const.compare.html"},{"doc":"","kind":"method","module":"object","name":"tsize","package":"druntime","parentType":"TypeInfo_Const","signature":"size_t tsize()","url":"/ddoc/druntime/object/TypeInfo_Const.tsize.html"},{"doc":"","kind":"method","module":"object","name":"swap","package":"druntime","parentType":"TypeInfo_Const","signature":"void swap(void  * p1,  void  * p2)","url":"/ddoc/druntime/object/TypeInfo_Const.swap.html"},{"doc":"","kind":"method","module":"object","name":"next","package":"druntime","parentType":"TypeInfo_Const","signature":"inout(TypeInfo) next()","url":"/ddoc/druntime/object/TypeInfo_Const.next.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"TypeInfo_Const","signature":"uint flags()","url":"/ddoc/druntime/object/TypeInfo_Const.flags.html"},{"doc":"","kind":"method","module":"object","name":"initializer","package":"druntime","parentType":"TypeInfo_Const","signature":"const(void)[] initializer()","url":"/ddoc/druntime/object/TypeInfo_Const.initializer.html"},{"doc":"","kind":"method","module":"object","name":"talign","package":"druntime","parentType":"TypeInfo_Const","signature":"size_t talign()","url":"/ddoc/druntime/object/TypeInfo_Const.talign.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Invariant","package":"druntime","parentType":"","signature":"TypeInfo_Invariant : TypeInfo_Const","url":"/ddoc/druntime/object.html#TypeInfo_Invariant"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Invariant","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Invariant.toString.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Shared","package":"druntime","parentType":"","signature":"TypeInfo_Shared : TypeInfo_Const","url":"/ddoc/druntime/object.html#TypeInfo_Shared"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Shared","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Shared.toString.html"},{"doc":"","kind":"class","module":"object","name":"TypeInfo_Inout","package":"druntime","parentType":"","signature":"TypeInfo_Inout : TypeInfo_Const","url":"/ddoc/druntime/object.html#TypeInfo_Inout"},{"doc":"","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"TypeInfo_Inout","signature":"string toString()","url":"/ddoc/druntime/object/TypeInfo_Inout.toString.html"},{"doc":"An instance of ModuleInfo is generated into the object file for each compiled module.","kind":"struct","module":"object","name":"ModuleInfo","package":"druntime","parentType":"","signature":"ModuleInfo","url":"/ddoc/druntime/object.html#ModuleInfo"},{"doc":"","kind":"method","module":"object","name":"addrOf","package":"druntime","parentType":"ModuleInfo","signature":"void * addrOf(int  flag)","url":"/ddoc/druntime/object/ModuleInfo.addrOf.html"},{"doc":"","kind":"method","module":"object","name":"index","package":"druntime","parentType":"ModuleInfo","signature":"uint index()","url":"/ddoc/druntime/object/ModuleInfo.index.html"},{"doc":"","kind":"method","module":"object","name":"flags","package":"druntime","parentType":"ModuleInfo","signature":"uint flags()","url":"/ddoc/druntime/object/ModuleInfo.flags.html"},{"doc":"Returns: module constructor for thread locals, `null` if there isn't one","kind":"method","module":"object","name":"tlsctor","package":"druntime","parentType":"ModuleInfo","signature":"void  function() tlsctor()","url":"/ddoc/druntime/object/ModuleInfo.tlsctor.html"},{"doc":"Returns: module destructor for thread locals, `null` if there isn't one","kind":"method","module":"object","name":"tlsdtor","package":"druntime","parentType":"ModuleInfo","signature":"void  function() tlsdtor()","url":"/ddoc/druntime/object/ModuleInfo.tlsdtor.html"},{"doc":"Returns: address of a module's `const(MemberInfo)[] getMembers(string)` function, `null` if there isn't one","kind":"method","module":"object","name":"xgetMembers","package":"druntime","parentType":"ModuleInfo","signature":"void * xgetMembers()","url":"/ddoc/druntime/object/ModuleInfo.xgetMembers.html"},{"doc":"Returns: module constructor, `null` if there isn't one","kind":"method","module":"object","name":"ctor","package":"druntime","parentType":"ModuleInfo","signature":"void  function() ctor()","url":"/ddoc/druntime/object/ModuleInfo.ctor.html"},{"doc":"Returns: module destructor, `null` if there isn't one","kind":"method","module":"object","name":"dtor","package":"druntime","parentType":"ModuleInfo","signature":"void  function() dtor()","url":"/ddoc/druntime/object/ModuleInfo.dtor.html"},{"doc":"Returns: module order independent constructor, `null` if there isn't one","kind":"method","module":"object","name":"ictor","package":"druntime","parentType":"ModuleInfo","signature":"void  function() ictor()","url":"/ddoc/druntime/object/ModuleInfo.ictor.html"},{"doc":"Returns: address of function that runs the module's unittests, `null` if there isn't one","kind":"method","module":"object","name":"unitTest","package":"druntime","parentType":"ModuleInfo","signature":"void  function() unitTest()","url":"/ddoc/druntime/object/ModuleInfo.unitTest.html"},{"doc":"Returns: array of pointers to the ModuleInfo's of modules imported by this one","kind":"method","module":"object","name":"importedModules","package":"druntime","parentType":"ModuleInfo","signature":"immutable(ModuleInfo *)[] importedModules()","url":"/ddoc/druntime/object/ModuleInfo.importedModules.html"},{"doc":"Returns: array of TypeInfo_Class references for classes defined in this module","kind":"method","module":"object","name":"localClasses","package":"druntime","parentType":"ModuleInfo","signature":"TypeInfo_Class[] localClasses()","url":"/ddoc/druntime/object/ModuleInfo.localClasses.html"},{"doc":"Returns: name of module, `null` if no name","kind":"method","module":"object","name":"name","package":"druntime","parentType":"ModuleInfo","signature":"string name()","url":"/ddoc/druntime/object/ModuleInfo.name.html"},{"doc":"","kind":"method","module":"object","name":"opApply","package":"druntime","parentType":"ModuleInfo","signature":"int opApply(scope  int  delegate(ModuleInfo *)  dg)","url":"/ddoc/druntime/object/ModuleInfo.opApply.html"},{"doc":"The base class of all thrown objects.","kind":"class","module":"object","name":"Throwable","package":"druntime","parentType":"","signature":"Throwable : Object","url":"/ddoc/druntime/object.html#Throwable"},{"doc":"","kind":"method","module":"object","name":"_nextIsRefcounted","package":"druntime","parentType":"Throwable","signature":"bool _nextIsRefcounted()","url":"/ddoc/druntime/object/Throwable._nextIsRefcounted.html"},{"doc":"Returns: A reference to the _next error in the list. This is used when a new $(D Throwable) is thrown from inside a $(D catch) block. The originall...","kind":"method","module":"object","name":"next","package":"druntime","parentType":"Throwable","signature":"inout(Throwable) next()","url":"/ddoc/druntime/object/Throwable.next.html"},{"doc":"Replace next in chain with `tail`. Use `chainTogether` instead if at all possible.","kind":"method","module":"object","name":"next","package":"druntime","parentType":"Throwable","signature":"void next(Throwable tail)","url":"/ddoc/druntime/object/Throwable.next.html"},{"doc":"Returns: mutable reference to the reference count, which is 0 - allocated by the GC, 1 - allocated by _d_newThrowable(), and >=2 which is the refer...","kind":"method","module":"object","name":"refcount","package":"druntime","parentType":"Throwable","signature":"uint refcount()","url":"/ddoc/druntime/object/Throwable.refcount.html"},{"doc":"Loop over the chain of Throwables.","kind":"method","module":"object","name":"opApply","package":"druntime","parentType":"Throwable","signature":"int opApply(scope  int  delegate(Throwable)  dg)","url":"/ddoc/druntime/object/Throwable.opApply.html"},{"doc":"Append `e2` to chain of exceptions that starts with `e1`. Params: e1 = start of chain (can be null) e2 = second part of chain (can be null) Returns...","kind":"method","module":"object","name":"chainTogether","package":"druntime","parentType":"Throwable","signature":"Throwable chainTogether(return  scope  Throwable e1,  return  scope  Throwable e2)","url":"/ddoc/druntime/object/Throwable.chainTogether.html"},{"doc":"Overrides $(D Object.toString) and returns the error message. Internally this forwards to the $(D toString) overload that takes a $(D_PARAM sink) d...","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"Throwable","signature":"string toString()","url":"/ddoc/druntime/object/Throwable.toString.html"},{"doc":"The Throwable hierarchy uses a toString overload that takes a $(D_PARAM _sink) delegate to avoid GC allocations, which cannot be performed in certa...","kind":"method","module":"object","name":"toString","package":"druntime","parentType":"Throwable","signature":"void toString(scope  void  delegate(in  char[])  sink)","url":"/ddoc/druntime/object/Throwable.toString.html"},{"doc":"Get the message describing the error.","kind":"method","module":"object","name":"message","package":"druntime","parentType":"Throwable","signature":"const(char)[] message()","url":"/ddoc/druntime/object/Throwable.message.html"},{"doc":"The base class of all errors that are safe to catch and handle.","kind":"class","module":"object","name":"Exception","package":"druntime","parentType":"","signature":"Exception : Throwable","url":"/ddoc/druntime/object.html#Exception"},{"doc":"The base class of all unrecoverable runtime errors.","kind":"class","module":"object","name":"Error","package":"druntime","parentType":"","signature":"Error : Throwable","url":"/ddoc/druntime/object.html#Error"},{"doc":"","kind":"alias","module":"object","name":"AssociativeArray","package":"druntime","parentType":"","signature":"AssociativeArray(Key,  Value) = Value[Key]","url":"/ddoc/druntime/object.html#AssociativeArray"},{"doc":"","kind":"class","module":"object","name":"__cpp_type_info_ptr","package":"druntime","parentType":"","signature":"__cpp_type_info_ptr","url":"/ddoc/druntime/object.html#__cpp_type_info_ptr"},{"doc":"Create RTInfo for type T","kind":"template","module":"object","name":"RTInfoImpl","package":"druntime","parentType":"","signature":"RTInfoImpl(size_t[]  pointerBitmap)","url":"/ddoc/druntime/object.html#RTInfoImpl"},{"doc":"","kind":"template","module":"object","name":"RTInfo","package":"druntime","parentType":"","signature":"RTInfo(T)","url":"/ddoc/druntime/object.html#RTInfo"},{"doc":"","kind":"template","module":"object","name":"_arrayOp","package":"druntime","parentType":"","signature":"_arrayOp(Args...)","url":"/ddoc/druntime/object.html#_arrayOp"},{"doc":"Provides an \"inline import\", i.e. an `import` that is only available for a limited lookup. For example:","kind":"template","module":"object","name":"imported","package":"druntime","parentType":"","signature":"imported(string moduleName)","url":"/ddoc/druntime/object.html#imported"},{"doc":"","kind":"variable","module":"object","name":"isSafeCopyable","package":"druntime","parentType":"","signature":"bool isSafeCopyable","url":"/ddoc/druntime/object.html#isSafeCopyable"},{"doc":"shortcuts for the precise GC, also generated by the compiler used instead of the actual pointer bitmap","kind":"variable","module":"object","name":"rtinfoNoPointers","package":"druntime","parentType":"","signature":"immutable(void) * rtinfoNoPointers","url":"/ddoc/druntime/object.html#rtinfoNoPointers"},{"doc":"","kind":"variable","module":"object","name":"rtinfoHasPointers","package":"druntime","parentType":"","signature":"immutable(void) * rtinfoHasPointers","url":"/ddoc/druntime/object.html#rtinfoHasPointers"},{"doc":"D Standard Library — The Phobos standard library provides common functionality such as I/O, string processing, containers, algorithms, and more.","kind":"package","module":"","name":"phobos","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/index.html"},{"doc":"This is an interface to the libcurl library.","kind":"module","module":"etc.c.curl","name":"etc.c.curl","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/curl.html"},{"doc":"curl_strequal() and curl_strnequal() are subject for removal in a future libcurl, see lib/README.curlx for details","kind":"function","module":"etc.c.curl","name":"curl_strequal","package":"phobos","parentType":"","signature":"int curl_strequal(scope  const(char)  * s1,  scope  const(char)  * s2)","url":"/ddoc/phobos/etc/c/curl/curl_strequal.html"},{"doc":"ditto","kind":"function","module":"etc.c.curl","name":"curl_strnequal","package":"phobos","parentType":"","signature":"int curl_strnequal(scope  const(char)  * s1,  scope  const(char)  * s2,  size_t n)","url":"/ddoc/phobos/etc/c/curl/curl_strnequal.html"},{"doc":"Name: curl_formadd()","kind":"function","module":"etc.c.curl","name":"curl_formadd","package":"phobos","parentType":"","signature":"CURLFORMcode curl_formadd(curl_httppost * * httppost,  curl_httppost * * last_post,...)","url":"/ddoc/phobos/etc/c/curl/curl_formadd.html"},{"doc":"Name: curl_formget()","kind":"function","module":"etc.c.curl","name":"curl_formget","package":"phobos","parentType":"","signature":"int curl_formget(curl_httppost * form,  void  * arg,  curl_formget_callback append)","url":"/ddoc/phobos/etc/c/curl/curl_formget.html"},{"doc":"Name: curl_formfree()","kind":"function","module":"etc.c.curl","name":"curl_formfree","package":"phobos","parentType":"","signature":"void curl_formfree(curl_httppost * form)","url":"/ddoc/phobos/etc/c/curl/curl_formfree.html"},{"doc":"Name: curl_getenv()","kind":"function","module":"etc.c.curl","name":"curl_getenv","package":"phobos","parentType":"","signature":"char  * curl_getenv(scope  const(char)  * variable)","url":"/ddoc/phobos/etc/c/curl/curl_getenv.html"},{"doc":"Name: curl_version()","kind":"function","module":"etc.c.curl","name":"curl_version","package":"phobos","parentType":"","signature":"char  * curl_version()","url":"/ddoc/phobos/etc/c/curl/curl_version.html"},{"doc":"Name: curl_easy_escape()","kind":"function","module":"etc.c.curl","name":"curl_easy_escape","package":"phobos","parentType":"","signature":"char  * curl_easy_escape(CURL * handle,  scope  const(char)  * string,  int  length)","url":"/ddoc/phobos/etc/c/curl/curl_easy_escape.html"},{"doc":"the previous version:","kind":"function","module":"etc.c.curl","name":"curl_escape","package":"phobos","parentType":"","signature":"char  * curl_escape(scope  const(char)  * string,  int  length)","url":"/ddoc/phobos/etc/c/curl/curl_escape.html"},{"doc":"Name: curl_easy_unescape()","kind":"function","module":"etc.c.curl","name":"curl_easy_unescape","package":"phobos","parentType":"","signature":"char  * curl_easy_unescape(CURL * handle,  scope  const(char)  * string,  int  length,  int  * outlength)","url":"/ddoc/phobos/etc/c/curl/curl_easy_unescape.html"},{"doc":"the previous version","kind":"function","module":"etc.c.curl","name":"curl_unescape","package":"phobos","parentType":"","signature":"char  * curl_unescape(scope  const(char)  * string,  int  length)","url":"/ddoc/phobos/etc/c/curl/curl_unescape.html"},{"doc":"Name: curl_free()","kind":"function","module":"etc.c.curl","name":"curl_free","package":"phobos","parentType":"","signature":"void curl_free(void  * p)","url":"/ddoc/phobos/etc/c/curl/curl_free.html"},{"doc":"Name: curl_global_init()","kind":"function","module":"etc.c.curl","name":"curl_global_init","package":"phobos","parentType":"","signature":"CURLcode curl_global_init(c_long flags)","url":"/ddoc/phobos/etc/c/curl/curl_global_init.html"},{"doc":"Name: curl_global_init_mem()","kind":"function","module":"etc.c.curl","name":"curl_global_init_mem","package":"phobos","parentType":"","signature":"CURLcode curl_global_init_mem(\n   c_long flags,\n   curl_malloc_callback m,\n   curl_free_callback f,\n   curl_realloc_callback r,\n   curl_strdup_callback s,\n   curl_calloc_callback c\n)","url":"/ddoc/phobos/etc/c/curl/curl_global_init_mem.html"},{"doc":"Name: curl_global_cleanup()","kind":"function","module":"etc.c.curl","name":"curl_global_cleanup","package":"phobos","parentType":"","signature":"void curl_global_cleanup()","url":"/ddoc/phobos/etc/c/curl/curl_global_cleanup.html"},{"doc":"Name: curl_slist_append()","kind":"function","module":"etc.c.curl","name":"curl_slist_append","package":"phobos","parentType":"","signature":"curl_slist * curl_slist_append(curl_slist *,  const(char)  *)","url":"/ddoc/phobos/etc/c/curl/curl_slist_append.html"},{"doc":"Name: curl_slist_free_all()","kind":"function","module":"etc.c.curl","name":"curl_slist_free_all","package":"phobos","parentType":"","signature":"void curl_slist_free_all(curl_slist *)","url":"/ddoc/phobos/etc/c/curl/curl_slist_free_all.html"},{"doc":"Name: curl_getdate()","kind":"function","module":"etc.c.curl","name":"curl_getdate","package":"phobos","parentType":"","signature":"time_t curl_getdate(const(char)  * p,  const(time_t)  * unused)","url":"/ddoc/phobos/etc/c/curl/curl_getdate.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_share_init","package":"phobos","parentType":"","signature":"CURLSH * curl_share_init()","url":"/ddoc/phobos/etc/c/curl/curl_share_init.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_share_setopt","package":"phobos","parentType":"","signature":"CURLSHcode curl_share_setopt(CURLSH *,  CURLSHoption option,...)","url":"/ddoc/phobos/etc/c/curl/curl_share_setopt.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_share_cleanup","package":"phobos","parentType":"","signature":"CURLSHcode curl_share_cleanup(CURLSH *)","url":"/ddoc/phobos/etc/c/curl/curl_share_cleanup.html"},{"doc":"Name: curl_version_info()","kind":"function","module":"etc.c.curl","name":"curl_version_info","package":"phobos","parentType":"","signature":"curl_version_info_data * curl_version_info(CURLversion )","url":"/ddoc/phobos/etc/c/curl/curl_version_info.html"},{"doc":"Name: curl_easy_strerror()","kind":"function","module":"etc.c.curl","name":"curl_easy_strerror","package":"phobos","parentType":"","signature":"const(char) * curl_easy_strerror(CURLcode )","url":"/ddoc/phobos/etc/c/curl/curl_easy_strerror.html"},{"doc":"Name: curl_share_strerror()","kind":"function","module":"etc.c.curl","name":"curl_share_strerror","package":"phobos","parentType":"","signature":"const(char) * curl_share_strerror(CURLSHcode )","url":"/ddoc/phobos/etc/c/curl/curl_share_strerror.html"},{"doc":"Name: curl_easy_pause()","kind":"function","module":"etc.c.curl","name":"curl_easy_pause","package":"phobos","parentType":"","signature":"CURLcode curl_easy_pause(CURL * handle,  int  bitmask)","url":"/ddoc/phobos/etc/c/curl/curl_easy_pause.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_easy_init","package":"phobos","parentType":"","signature":"CURL * curl_easy_init()","url":"/ddoc/phobos/etc/c/curl/curl_easy_init.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_easy_setopt","package":"phobos","parentType":"","signature":"CURLcode curl_easy_setopt(CURL * curl,  CURLoption option,...)","url":"/ddoc/phobos/etc/c/curl/curl_easy_setopt.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_easy_perform","package":"phobos","parentType":"","signature":"CURLcode curl_easy_perform(CURL * curl)","url":"/ddoc/phobos/etc/c/curl/curl_easy_perform.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_easy_cleanup","package":"phobos","parentType":"","signature":"void curl_easy_cleanup(CURL * curl)","url":"/ddoc/phobos/etc/c/curl/curl_easy_cleanup.html"},{"doc":"Name: curl_easy_getinfo()","kind":"function","module":"etc.c.curl","name":"curl_easy_getinfo","package":"phobos","parentType":"","signature":"CURLcode curl_easy_getinfo(CURL * curl,  CURLINFO info,...)","url":"/ddoc/phobos/etc/c/curl/curl_easy_getinfo.html"},{"doc":"Name: curl_easy_duphandle()","kind":"function","module":"etc.c.curl","name":"curl_easy_duphandle","package":"phobos","parentType":"","signature":"CURL * curl_easy_duphandle(CURL * curl)","url":"/ddoc/phobos/etc/c/curl/curl_easy_duphandle.html"},{"doc":"Name: curl_easy_reset()","kind":"function","module":"etc.c.curl","name":"curl_easy_reset","package":"phobos","parentType":"","signature":"void curl_easy_reset(CURL * curl)","url":"/ddoc/phobos/etc/c/curl/curl_easy_reset.html"},{"doc":"Name: curl_easy_recv()","kind":"function","module":"etc.c.curl","name":"curl_easy_recv","package":"phobos","parentType":"","signature":"CURLcode curl_easy_recv(CURL * curl,  void  * buffer,  size_t buflen,  size_t * n)","url":"/ddoc/phobos/etc/c/curl/curl_easy_recv.html"},{"doc":"Name: curl_easy_send()","kind":"function","module":"etc.c.curl","name":"curl_easy_send","package":"phobos","parentType":"","signature":"CURLcode curl_easy_send(CURL * curl,  void  * buffer,  size_t buflen,  size_t * n)","url":"/ddoc/phobos/etc/c/curl/curl_easy_send.html"},{"doc":"Name:    curl_multi_init()","kind":"function","module":"etc.c.curl","name":"curl_multi_init","package":"phobos","parentType":"","signature":"CURLM * curl_multi_init()","url":"/ddoc/phobos/etc/c/curl/curl_multi_init.html"},{"doc":"Name:    curl_multi_add_handle()","kind":"function","module":"etc.c.curl","name":"curl_multi_add_handle","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_add_handle(CURLM * multi_handle,  CURL * curl_handle)","url":"/ddoc/phobos/etc/c/curl/curl_multi_add_handle.html"},{"doc":"Name:    curl_multi_remove_handle()","kind":"function","module":"etc.c.curl","name":"curl_multi_remove_handle","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_remove_handle(CURLM * multi_handle,  CURL * curl_handle)","url":"/ddoc/phobos/etc/c/curl/curl_multi_remove_handle.html"},{"doc":"","kind":"function","module":"etc.c.curl","name":"curl_multi_fdset","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_fdset(\n   CURLM * multi_handle,\n   fd_set * read_fd_set,\n   fd_set * write_fd_set,\n   fd_set * exc_fd_set,\n   int  * max_fd\n)","url":"/ddoc/phobos/etc/c/curl/curl_multi_fdset.html"},{"doc":"Name:    curl_multi_perform()","kind":"function","module":"etc.c.curl","name":"curl_multi_perform","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_perform(CURLM * multi_handle,  int  * running_handles)","url":"/ddoc/phobos/etc/c/curl/curl_multi_perform.html"},{"doc":"Name:    curl_multi_cleanup()","kind":"function","module":"etc.c.curl","name":"curl_multi_cleanup","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_cleanup(CURLM * multi_handle)","url":"/ddoc/phobos/etc/c/curl/curl_multi_cleanup.html"},{"doc":"Name:    curl_multi_info_read()","kind":"function","module":"etc.c.curl","name":"curl_multi_info_read","package":"phobos","parentType":"","signature":"CURLMsg * curl_multi_info_read(CURLM * multi_handle,  int  * msgs_in_queue)","url":"/ddoc/phobos/etc/c/curl/curl_multi_info_read.html"},{"doc":"Name:    curl_multi_strerror()","kind":"function","module":"etc.c.curl","name":"curl_multi_strerror","package":"phobos","parentType":"","signature":"const(char) * curl_multi_strerror(CURLMcode )","url":"/ddoc/phobos/etc/c/curl/curl_multi_strerror.html"},{"doc":"ditto","kind":"function","module":"etc.c.curl","name":"curl_multi_socket","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_socket(CURLM * multi_handle,  curl_socket_t s,  int  * running_handles)","url":"/ddoc/phobos/etc/c/curl/curl_multi_socket.html"},{"doc":"ditto","kind":"function","module":"etc.c.curl","name":"curl_multi_socket_action","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_socket_action(CURLM * multi_handle,  curl_socket_t s,  int  ev_bitmask,  int  * running_handles)","url":"/ddoc/phobos/etc/c/curl/curl_multi_socket_action.html"},{"doc":"ditto","kind":"function","module":"etc.c.curl","name":"curl_multi_socket_all","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_socket_all(CURLM * multi_handle,  int  * running_handles)","url":"/ddoc/phobos/etc/c/curl/curl_multi_socket_all.html"},{"doc":"This macro below was added in 7.16.3 to push users who recompile to use the new curl_multi_socket_action() instead of the old curl_multi_socket() N...","kind":"function","module":"etc.c.curl","name":"curl_multi_timeout","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_timeout(CURLM * multi_handle,  c_long * milliseconds)","url":"/ddoc/phobos/etc/c/curl/curl_multi_timeout.html"},{"doc":"Name:    curl_multi_setopt()","kind":"function","module":"etc.c.curl","name":"curl_multi_setopt","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_setopt(CURLM * multi_handle,  CURLMoption option,...)","url":"/ddoc/phobos/etc/c/curl/curl_multi_setopt.html"},{"doc":"Name:    curl_multi_assign()","kind":"function","module":"etc.c.curl","name":"curl_multi_assign","package":"phobos","parentType":"","signature":"CURLMcode curl_multi_assign(CURLM * multi_handle,  curl_socket_t sockfd,  void  * sockp)","url":"/ddoc/phobos/etc/c/curl/curl_multi_assign.html"},{"doc":"Data type definition of curl_off_t.","kind":"alias","module":"etc.c.curl","name":"curl_off_t","package":"phobos","parentType":"","signature":"curl_off_t = long","url":"/ddoc/phobos/etc/c/curl.html#curl_off_t"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURL","package":"phobos","parentType":"","signature":"CURL = void","url":"/ddoc/phobos/etc/c/curl.html#CURL"},{"doc":"jdrewsen - Get socket alias from std.socket","kind":"alias","module":"etc.c.curl","name":"curl_socket_t","package":"phobos","parentType":"","signature":"curl_socket_t = socket_t","url":"/ddoc/phobos/etc/c/curl.html#curl_socket_t"},{"doc":"","kind":"struct","module":"etc.c.curl","name":"curl_httppost","package":"phobos","parentType":"","signature":"curl_httppost","url":"/ddoc/phobos/etc/c/curl.html#curl_httppost"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_progress_callback","package":"phobos","parentType":"","signature":"curl_progress_callback = int  function(void  * clientp,  double  dltotal,  double  dlnow,  double  ultotal,  double  ulnow)","url":"/ddoc/phobos/etc/c/curl.html#curl_progress_callback"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_write_callback","package":"phobos","parentType":"","signature":"curl_write_callback = size_t function(char  * buffer,  size_t size,  size_t nitems,  void  * outstream)","url":"/ddoc/phobos/etc/c/curl.html#curl_write_callback"},{"doc":"enumeration of file types","kind":"enum","module":"etc.c.curl","name":"CurlFileType","package":"phobos","parentType":"","signature":"CurlFileType","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"file","package":"phobos","parentType":"","signature":"file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"directory","package":"phobos","parentType":"","signature":"directory = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"symlink","package":"phobos","parentType":"","signature":"symlink = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"device_block","package":"phobos","parentType":"","signature":"device_block = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"device_char","package":"phobos","parentType":"","signature":"device_char = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"namedpipe","package":"phobos","parentType":"","signature":"namedpipe = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"socket","package":"phobos","parentType":"","signature":"socket = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"door","package":"phobos","parentType":"","signature":"door = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"is possible only on Sun Solaris now","kind":"enum_member","module":"etc.c.curl","name":"unknown","package":"phobos","parentType":"","signature":"unknown = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFileType"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curlfiletype","package":"phobos","parentType":"","signature":"curlfiletype = int","url":"/ddoc/phobos/etc/c/curl.html#curlfiletype"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlFInfoFlagKnown","package":"phobos","parentType":"","signature":"CurlFInfoFlagKnown","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"filename","package":"phobos","parentType":"","signature":"filename = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"filetype","package":"phobos","parentType":"","signature":"filetype = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"time","package":"phobos","parentType":"","signature":"time = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"perm","package":"phobos","parentType":"","signature":"perm = 8","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"uid","package":"phobos","parentType":"","signature":"uid = 16","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"gid","package":"phobos","parentType":"","signature":"gid = 32","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"size","package":"phobos","parentType":"","signature":"size = 64","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"hlinkcount","package":"phobos","parentType":"","signature":"hlinkcount = 128","url":"/ddoc/phobos/etc/c/curl.html#CurlFInfoFlagKnown"},{"doc":"Content of this structure depends on information which is known and is achievable (e.g. by FTP LIST parsing). Please see the url_easy_setopt(3) man...","kind":"struct","module":"etc.c.curl","name":"_N2","package":"phobos","parentType":"","signature":"_N2","url":"/ddoc/phobos/etc/c/curl.html#_N2"},{"doc":"Content of this structure depends on information which is known and is achievable (e.g. by FTP LIST parsing). Please see the url_easy_setopt(3) man...","kind":"struct","module":"etc.c.curl","name":"curl_fileinfo","package":"phobos","parentType":"","signature":"curl_fileinfo","url":"/ddoc/phobos/etc/c/curl.html#curl_fileinfo"},{"doc":"return codes for CURLOPT_CHUNK_BGN_FUNCTION","kind":"enum","module":"etc.c.curl","name":"CurlChunkBgnFunc","package":"phobos","parentType":"","signature":"CurlChunkBgnFunc","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkBgnFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkBgnFunc"},{"doc":"tell the lib to end the task","kind":"enum_member","module":"etc.c.curl","name":"fail","package":"phobos","parentType":"","signature":"fail = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkBgnFunc"},{"doc":"skip this chunk over","kind":"enum_member","module":"etc.c.curl","name":"skip","package":"phobos","parentType":"","signature":"skip = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkBgnFunc"},{"doc":"if splitting of data transfer is enabled, this callback is called before download of an individual chunk started. Note that parameter \"remains\" wor...","kind":"alias","module":"etc.c.curl","name":"curl_chunk_bgn_callback","package":"phobos","parentType":"","signature":"curl_chunk_bgn_callback = c_long function(const(void)  * transfer_info,  void  * ptr,  int  remains)","url":"/ddoc/phobos/etc/c/curl.html#curl_chunk_bgn_callback"},{"doc":"return codes for CURLOPT_CHUNK_END_FUNCTION","kind":"enum","module":"etc.c.curl","name":"CurlChunkEndFunc","package":"phobos","parentType":"","signature":"CurlChunkEndFunc","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkEndFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkEndFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"fail","package":"phobos","parentType":"","signature":"fail = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlChunkEndFunc"},{"doc":"If splitting of data transfer is enabled this callback is called after download of an individual chunk finished. Note! After this callback was set ...","kind":"alias","module":"etc.c.curl","name":"curl_chunk_end_callback","package":"phobos","parentType":"","signature":"curl_chunk_end_callback = c_long function(void  * ptr)","url":"/ddoc/phobos/etc/c/curl.html#curl_chunk_end_callback"},{"doc":"return codes for FNMATCHFUNCTION","kind":"enum","module":"etc.c.curl","name":"CurlFnMAtchFunc","package":"phobos","parentType":"","signature":"CurlFnMAtchFunc","url":"/ddoc/phobos/etc/c/curl.html#CurlFnMAtchFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"match","package":"phobos","parentType":"","signature":"match = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlFnMAtchFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"nomatch","package":"phobos","parentType":"","signature":"nomatch = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlFnMAtchFunc"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"fail","package":"phobos","parentType":"","signature":"fail = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlFnMAtchFunc"},{"doc":"callback type for wildcard downloading pattern matching. If the string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc.","kind":"alias","module":"etc.c.curl","name":"curl_fnmatch_callback","package":"phobos","parentType":"","signature":"curl_fnmatch_callback = int  function(void  * ptr,  in  const(char)  * pattern,  in  const(char)  * string)","url":"/ddoc/phobos/etc/c/curl.html#curl_fnmatch_callback"},{"doc":"seek whence...","kind":"enum","module":"etc.c.curl","name":"CurlSeekPos","package":"phobos","parentType":"","signature":"CurlSeekPos","url":"/ddoc/phobos/etc/c/curl.html#CurlSeekPos"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"set","package":"phobos","parentType":"","signature":"set = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeekPos"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"current","package":"phobos","parentType":"","signature":"current = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeekPos"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"end","package":"phobos","parentType":"","signature":"end = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeekPos"},{"doc":"These are the return codes for the seek callbacks","kind":"enum","module":"etc.c.curl","name":"CurlSeek","package":"phobos","parentType":"","signature":"CurlSeek","url":"/ddoc/phobos/etc/c/curl.html#CurlSeek"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeek"},{"doc":"fail the entire transfer","kind":"enum_member","module":"etc.c.curl","name":"fail","package":"phobos","parentType":"","signature":"fail = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeek"},{"doc":"tell libcurl seeking can't be done, so libcurl might try other means instead","kind":"enum_member","module":"etc.c.curl","name":"cantseek","package":"phobos","parentType":"","signature":"cantseek = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSeek"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_seek_callback","package":"phobos","parentType":"","signature":"curl_seek_callback = int  function(void  * instream,  curl_off_t offset,  int  origin)","url":"/ddoc/phobos/etc/c/curl.html#curl_seek_callback"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlReadFunc","package":"phobos","parentType":"","signature":"CurlReadFunc","url":"/ddoc/phobos/etc/c/curl.html#CurlReadFunc"},{"doc":"This is a return code for the read callback that, when returned, will signal libcurl to immediately abort the current transfer.","kind":"enum_member","module":"etc.c.curl","name":"abort","package":"phobos","parentType":"","signature":"abort = 0x10000000","url":"/ddoc/phobos/etc/c/curl.html#CurlReadFunc"},{"doc":"This is a return code for the read callback that, when returned, will const signal libcurl to pause sending data on the current transfer.","kind":"enum_member","module":"etc.c.curl","name":"pause","package":"phobos","parentType":"","signature":"pause = 0x10000001","url":"/ddoc/phobos/etc/c/curl.html#CurlReadFunc"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_read_callback","package":"phobos","parentType":"","signature":"curl_read_callback = size_t function(char  * buffer,  size_t size,  size_t nitems,  void  * instream)","url":"/ddoc/phobos/etc/c/curl.html#curl_read_callback"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlSockType","package":"phobos","parentType":"","signature":"CurlSockType","url":"/ddoc/phobos/etc/c/curl.html#CurlSockType"},{"doc":"socket created for a specific IP connection","kind":"enum_member","module":"etc.c.curl","name":"ipcxn","package":"phobos","parentType":"","signature":"ipcxn = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSockType"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSockType"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curlsocktype","package":"phobos","parentType":"","signature":"curlsocktype = int","url":"/ddoc/phobos/etc/c/curl.html#curlsocktype"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_sockopt_callback","package":"phobos","parentType":"","signature":"curl_sockopt_callback = int  function(void  * clientp,  curl_socket_t curlfd,  curlsocktype purpose)","url":"/ddoc/phobos/etc/c/curl.html#curl_sockopt_callback"},{"doc":"addrlen was a socklen_t type before 7.18.0 but it turned really ugly and painful on the systems that lack this type","kind":"struct","module":"etc.c.curl","name":"curl_sockaddr","package":"phobos","parentType":"","signature":"curl_sockaddr","url":"/ddoc/phobos/etc/c/curl.html#curl_sockaddr"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_opensocket_callback","package":"phobos","parentType":"","signature":"curl_opensocket_callback = curl_socket_t function(void  * clientp,  curlsocktype purpose,  curl_sockaddr * address)","url":"/ddoc/phobos/etc/c/curl.html#curl_opensocket_callback"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlIoError","package":"phobos","parentType":"","signature":"CurlIoError","url":"/ddoc/phobos/etc/c/curl.html#CurlIoError"},{"doc":"I/O operation successful","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoError"},{"doc":"command was unknown to callback","kind":"enum_member","module":"etc.c.curl","name":"unknowncmd","package":"phobos","parentType":"","signature":"unknowncmd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoError"},{"doc":"failed to restart the read","kind":"enum_member","module":"etc.c.curl","name":"failrestart","package":"phobos","parentType":"","signature":"failrestart = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoError"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoError"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curlioerr","package":"phobos","parentType":"","signature":"curlioerr = int","url":"/ddoc/phobos/etc/c/curl.html#curlioerr"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlIoCmd","package":"phobos","parentType":"","signature":"CurlIoCmd","url":"/ddoc/phobos/etc/c/curl.html#CurlIoCmd"},{"doc":"command was unknown to callback","kind":"enum_member","module":"etc.c.curl","name":"nop","package":"phobos","parentType":"","signature":"nop = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoCmd"},{"doc":"failed to restart the read","kind":"enum_member","module":"etc.c.curl","name":"restartread","package":"phobos","parentType":"","signature":"restartread = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoCmd"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlIoCmd"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curliocmd","package":"phobos","parentType":"","signature":"curliocmd = int","url":"/ddoc/phobos/etc/c/curl.html#curliocmd"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_ioctl_callback","package":"phobos","parentType":"","signature":"curl_ioctl_callback = curlioerr function(CURL * handle,  int  cmd,  void  * clientp)","url":"/ddoc/phobos/etc/c/curl.html#curl_ioctl_callback"},{"doc":"The following typedef's are signatures of malloc, free, realloc, strdup and calloc respectively.  Function pointers of these types can be passed to...","kind":"alias","module":"etc.c.curl","name":"curl_malloc_callback","package":"phobos","parentType":"","signature":"curl_malloc_callback = void *  function(size_t size)","url":"/ddoc/phobos/etc/c/curl.html#curl_malloc_callback"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"curl_free_callback","package":"phobos","parentType":"","signature":"curl_free_callback = void  function(void  * ptr)","url":"/ddoc/phobos/etc/c/curl.html#curl_free_callback"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"curl_realloc_callback","package":"phobos","parentType":"","signature":"curl_realloc_callback = void *  function(void  * ptr,  size_t size)","url":"/ddoc/phobos/etc/c/curl.html#curl_realloc_callback"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"curl_strdup_callback","package":"phobos","parentType":"","signature":"curl_strdup_callback = char  *  function(in  const(char)  * str)","url":"/ddoc/phobos/etc/c/curl.html#curl_strdup_callback"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"curl_calloc_callback","package":"phobos","parentType":"","signature":"curl_calloc_callback = void *  function(size_t nmemb,  size_t size)","url":"/ddoc/phobos/etc/c/curl.html#curl_calloc_callback"},{"doc":"the kind of data that is passed to information_callback","kind":"enum","module":"etc.c.curl","name":"CurlCallbackInfo","package":"phobos","parentType":"","signature":"CurlCallbackInfo","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"text","package":"phobos","parentType":"","signature":"text = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"header_in","package":"phobos","parentType":"","signature":"header_in = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"header_out","package":"phobos","parentType":"","signature":"header_out = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"data_in","package":"phobos","parentType":"","signature":"data_in = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"data_out","package":"phobos","parentType":"","signature":"data_out = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl_data_in","package":"phobos","parentType":"","signature":"ssl_data_in = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl_data_out","package":"phobos","parentType":"","signature":"ssl_data_out = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"end","package":"phobos","parentType":"","signature":"end = ","url":"/ddoc/phobos/etc/c/curl.html#CurlCallbackInfo"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_infotype","package":"phobos","parentType":"","signature":"curl_infotype = int","url":"/ddoc/phobos/etc/c/curl.html#curl_infotype"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_debug_callback","package":"phobos","parentType":"","signature":"curl_debug_callback = int  function(CURL * handle,        /** the handle/transfer this concerns */\n                      curl_infotype type,  /** what kind of data */\n                      char  * data,          /** points to the data */\n                      size_t size,         /** size of the data pointed to */\n                      void  * userptr        /** whatever the user please */\n                    )","url":"/ddoc/phobos/etc/c/curl.html#curl_debug_callback"},{"doc":"All possible error codes from all sorts of curl functions. Future versions may return other values, stay prepared.","kind":"enum","module":"etc.c.curl","name":"CurlError","package":"phobos","parentType":"","signature":"CurlError","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"1","kind":"enum_member","module":"etc.c.curl","name":"unsupported_protocol","package":"phobos","parentType":"","signature":"unsupported_protocol = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"2","kind":"enum_member","module":"etc.c.curl","name":"failed_init","package":"phobos","parentType":"","signature":"failed_init = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"3","kind":"enum_member","module":"etc.c.curl","name":"url_malformat","package":"phobos","parentType":"","signature":"url_malformat = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"4 - [was obsoleted in August 2007 for 7.17.0, reused in April 2011 for 7.21.5]","kind":"enum_member","module":"etc.c.curl","name":"not_built_in","package":"phobos","parentType":"","signature":"not_built_in = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"5","kind":"enum_member","module":"etc.c.curl","name":"couldnt_resolve_proxy","package":"phobos","parentType":"","signature":"couldnt_resolve_proxy = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"6","kind":"enum_member","module":"etc.c.curl","name":"couldnt_resolve_host","package":"phobos","parentType":"","signature":"couldnt_resolve_host = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"7","kind":"enum_member","module":"etc.c.curl","name":"couldnt_connect","package":"phobos","parentType":"","signature":"couldnt_connect = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"8","kind":"enum_member","module":"etc.c.curl","name":"ftp_weird_server_reply","package":"phobos","parentType":"","signature":"ftp_weird_server_reply = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"9 a service was denied by the server due to lack of access - when login fails this is not returned.","kind":"enum_member","module":"etc.c.curl","name":"remote_access_denied","package":"phobos","parentType":"","signature":"remote_access_denied = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"10 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete10","package":"phobos","parentType":"","signature":"obsolete10 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"11","kind":"enum_member","module":"etc.c.curl","name":"ftp_weird_pass_reply","package":"phobos","parentType":"","signature":"ftp_weird_pass_reply = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"12 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete12","package":"phobos","parentType":"","signature":"obsolete12 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"13","kind":"enum_member","module":"etc.c.curl","name":"ftp_weird_pasv_reply","package":"phobos","parentType":"","signature":"ftp_weird_pasv_reply = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"14","kind":"enum_member","module":"etc.c.curl","name":"ftp_weird_227_format","package":"phobos","parentType":"","signature":"ftp_weird_227_format = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"15","kind":"enum_member","module":"etc.c.curl","name":"ftp_cant_get_host","package":"phobos","parentType":"","signature":"ftp_cant_get_host = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"16 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete16","package":"phobos","parentType":"","signature":"obsolete16 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"17","kind":"enum_member","module":"etc.c.curl","name":"ftp_couldnt_set_type","package":"phobos","parentType":"","signature":"ftp_couldnt_set_type = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"18","kind":"enum_member","module":"etc.c.curl","name":"partial_file","package":"phobos","parentType":"","signature":"partial_file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"19","kind":"enum_member","module":"etc.c.curl","name":"ftp_couldnt_retr_file","package":"phobos","parentType":"","signature":"ftp_couldnt_retr_file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"20 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete20","package":"phobos","parentType":"","signature":"obsolete20 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"21 - quote command failure","kind":"enum_member","module":"etc.c.curl","name":"quote_error","package":"phobos","parentType":"","signature":"quote_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"22","kind":"enum_member","module":"etc.c.curl","name":"http_returned_error","package":"phobos","parentType":"","signature":"http_returned_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"23","kind":"enum_member","module":"etc.c.curl","name":"write_error","package":"phobos","parentType":"","signature":"write_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"24 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete24","package":"phobos","parentType":"","signature":"obsolete24 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"25 - failed upload \"command\"","kind":"enum_member","module":"etc.c.curl","name":"upload_failed","package":"phobos","parentType":"","signature":"upload_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"26 - couldn't open/read from file","kind":"enum_member","module":"etc.c.curl","name":"read_error","package":"phobos","parentType":"","signature":"read_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"27","kind":"enum_member","module":"etc.c.curl","name":"out_of_memory","package":"phobos","parentType":"","signature":"out_of_memory = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error instead of a memory allocation error if CURL_DOES_CONVERSIONS is defined","kind":"enum_member","module":"etc.c.curl","name":"operation_timedout","package":"phobos","parentType":"","signature":"operation_timedout = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"29 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete29","package":"phobos","parentType":"","signature":"obsolete29 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"30 - FTP PORT operation failed","kind":"enum_member","module":"etc.c.curl","name":"ftp_port_failed","package":"phobos","parentType":"","signature":"ftp_port_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"31 - the REST command failed","kind":"enum_member","module":"etc.c.curl","name":"ftp_couldnt_use_rest","package":"phobos","parentType":"","signature":"ftp_couldnt_use_rest = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"32 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete32","package":"phobos","parentType":"","signature":"obsolete32 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"33 - RANGE \"command\" didn't work","kind":"enum_member","module":"etc.c.curl","name":"range_error","package":"phobos","parentType":"","signature":"range_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"34","kind":"enum_member","module":"etc.c.curl","name":"http_post_error","package":"phobos","parentType":"","signature":"http_post_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"35 - wrong when connecting with SSL","kind":"enum_member","module":"etc.c.curl","name":"ssl_connect_error","package":"phobos","parentType":"","signature":"ssl_connect_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"36 - couldn't resume download","kind":"enum_member","module":"etc.c.curl","name":"bad_download_resume","package":"phobos","parentType":"","signature":"bad_download_resume = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"37","kind":"enum_member","module":"etc.c.curl","name":"file_couldnt_read_file","package":"phobos","parentType":"","signature":"file_couldnt_read_file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"38","kind":"enum_member","module":"etc.c.curl","name":"ldap_cannot_bind","package":"phobos","parentType":"","signature":"ldap_cannot_bind = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"39","kind":"enum_member","module":"etc.c.curl","name":"ldap_search_failed","package":"phobos","parentType":"","signature":"ldap_search_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"40 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete40","package":"phobos","parentType":"","signature":"obsolete40 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"41","kind":"enum_member","module":"etc.c.curl","name":"function_not_found","package":"phobos","parentType":"","signature":"function_not_found = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"42","kind":"enum_member","module":"etc.c.curl","name":"aborted_by_callback","package":"phobos","parentType":"","signature":"aborted_by_callback = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"43","kind":"enum_member","module":"etc.c.curl","name":"bad_function_argument","package":"phobos","parentType":"","signature":"bad_function_argument = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"44 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete44","package":"phobos","parentType":"","signature":"obsolete44 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"45 - CURLOPT_INTERFACE failed","kind":"enum_member","module":"etc.c.curl","name":"interface_failed","package":"phobos","parentType":"","signature":"interface_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"46 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete46","package":"phobos","parentType":"","signature":"obsolete46 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"47 - catch endless re-direct loops","kind":"enum_member","module":"etc.c.curl","name":"too_many_redirects","package":"phobos","parentType":"","signature":"too_many_redirects = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"48 - User specified an unknown option","kind":"enum_member","module":"etc.c.curl","name":"unknown_option","package":"phobos","parentType":"","signature":"unknown_option = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"49 - Malformed telnet option","kind":"enum_member","module":"etc.c.curl","name":"telnet_option_syntax","package":"phobos","parentType":"","signature":"telnet_option_syntax = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"50 - NOT USED","kind":"enum_member","module":"etc.c.curl","name":"obsolete50","package":"phobos","parentType":"","signature":"obsolete50 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"51 - peer's certificate or fingerprint wasn't verified fine","kind":"enum_member","module":"etc.c.curl","name":"peer_failed_verification","package":"phobos","parentType":"","signature":"peer_failed_verification = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"52 - when this is a specific error","kind":"enum_member","module":"etc.c.curl","name":"got_nothing","package":"phobos","parentType":"","signature":"got_nothing = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"53 - SSL crypto engine not found","kind":"enum_member","module":"etc.c.curl","name":"ssl_engine_notfound","package":"phobos","parentType":"","signature":"ssl_engine_notfound = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"54 - can not set SSL crypto engine as default","kind":"enum_member","module":"etc.c.curl","name":"ssl_engine_setfailed","package":"phobos","parentType":"","signature":"ssl_engine_setfailed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"55 - failed sending network data","kind":"enum_member","module":"etc.c.curl","name":"send_error","package":"phobos","parentType":"","signature":"send_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"56 - failure in receiving network data","kind":"enum_member","module":"etc.c.curl","name":"recv_error","package":"phobos","parentType":"","signature":"recv_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"57 - NOT IN USE","kind":"enum_member","module":"etc.c.curl","name":"obsolete57","package":"phobos","parentType":"","signature":"obsolete57 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"58 - problem with the local certificate","kind":"enum_member","module":"etc.c.curl","name":"ssl_certproblem","package":"phobos","parentType":"","signature":"ssl_certproblem = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"59 - couldn't use specified cipher","kind":"enum_member","module":"etc.c.curl","name":"ssl_cipher","package":"phobos","parentType":"","signature":"ssl_cipher = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"60 - problem with the CA cert (path?)","kind":"enum_member","module":"etc.c.curl","name":"ssl_cacert","package":"phobos","parentType":"","signature":"ssl_cacert = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"61 - Unrecognized transfer encoding","kind":"enum_member","module":"etc.c.curl","name":"bad_content_encoding","package":"phobos","parentType":"","signature":"bad_content_encoding = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"62 - Invalid LDAP URL","kind":"enum_member","module":"etc.c.curl","name":"ldap_invalid_url","package":"phobos","parentType":"","signature":"ldap_invalid_url = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"63 - Maximum file size exceeded","kind":"enum_member","module":"etc.c.curl","name":"filesize_exceeded","package":"phobos","parentType":"","signature":"filesize_exceeded = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"64 - Requested FTP SSL level failed","kind":"enum_member","module":"etc.c.curl","name":"use_ssl_failed","package":"phobos","parentType":"","signature":"use_ssl_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"65 - Sending the data requires a rewind that failed","kind":"enum_member","module":"etc.c.curl","name":"send_fail_rewind","package":"phobos","parentType":"","signature":"send_fail_rewind = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"66 - failed to initialise ENGINE","kind":"enum_member","module":"etc.c.curl","name":"ssl_engine_initfailed","package":"phobos","parentType":"","signature":"ssl_engine_initfailed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"67 - user, password or similar was not accepted and we failed to login","kind":"enum_member","module":"etc.c.curl","name":"login_denied","package":"phobos","parentType":"","signature":"login_denied = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"68 - file not found on server","kind":"enum_member","module":"etc.c.curl","name":"tftp_notfound","package":"phobos","parentType":"","signature":"tftp_notfound = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"69 - permission problem on server","kind":"enum_member","module":"etc.c.curl","name":"tftp_perm","package":"phobos","parentType":"","signature":"tftp_perm = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"70 - out of disk space on server","kind":"enum_member","module":"etc.c.curl","name":"remote_disk_full","package":"phobos","parentType":"","signature":"remote_disk_full = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"71 - Illegal TFTP operation","kind":"enum_member","module":"etc.c.curl","name":"tftp_illegal","package":"phobos","parentType":"","signature":"tftp_illegal = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"72 - Unknown transfer ID","kind":"enum_member","module":"etc.c.curl","name":"tftp_unknownid","package":"phobos","parentType":"","signature":"tftp_unknownid = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"73 - File already exists","kind":"enum_member","module":"etc.c.curl","name":"remote_file_exists","package":"phobos","parentType":"","signature":"remote_file_exists = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"74 - No such user","kind":"enum_member","module":"etc.c.curl","name":"tftp_nosuchuser","package":"phobos","parentType":"","signature":"tftp_nosuchuser = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"75 - conversion failed","kind":"enum_member","module":"etc.c.curl","name":"conv_failed","package":"phobos","parentType":"","signature":"conv_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"76 - caller must register conversion callbacks using curl_easy_setopt options CURLOPT_CONV_FROM_NETWORK_FUNCTION, CURLOPT_CONV_TO_NETWORK_FUNCTION,...","kind":"enum_member","module":"etc.c.curl","name":"conv_reqd","package":"phobos","parentType":"","signature":"conv_reqd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"77 - could not load CACERT file, missing  or wrong format","kind":"enum_member","module":"etc.c.curl","name":"ssl_cacert_badfile","package":"phobos","parentType":"","signature":"ssl_cacert_badfile = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"78 - remote file not found","kind":"enum_member","module":"etc.c.curl","name":"remote_file_not_found","package":"phobos","parentType":"","signature":"remote_file_not_found = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"79 - error from the SSH layer, somewhat generic so the error message will be of interest when this has happened","kind":"enum_member","module":"etc.c.curl","name":"ssh","package":"phobos","parentType":"","signature":"ssh = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"80 - Failed to shut down the SSL connection","kind":"enum_member","module":"etc.c.curl","name":"ssl_shutdown_failed","package":"phobos","parentType":"","signature":"ssl_shutdown_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"81 - socket is not ready for send/recv, wait till it's ready and try again (Added in 7.18.2)","kind":"enum_member","module":"etc.c.curl","name":"again","package":"phobos","parentType":"","signature":"again = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"82 - could not load CRL file, missing or wrong format (Added in 7.19.0)","kind":"enum_member","module":"etc.c.curl","name":"ssl_crl_badfile","package":"phobos","parentType":"","signature":"ssl_crl_badfile = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"83 - Issuer check failed.  (Added in 7.19.0)","kind":"enum_member","module":"etc.c.curl","name":"ssl_issuer_error","package":"phobos","parentType":"","signature":"ssl_issuer_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"84 - a PRET command failed","kind":"enum_member","module":"etc.c.curl","name":"ftp_pret_failed","package":"phobos","parentType":"","signature":"ftp_pret_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"85 - mismatch of RTSP CSeq numbers","kind":"enum_member","module":"etc.c.curl","name":"rtsp_cseq_error","package":"phobos","parentType":"","signature":"rtsp_cseq_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"86 - mismatch of RTSP Session Identifiers","kind":"enum_member","module":"etc.c.curl","name":"rtsp_session_error","package":"phobos","parentType":"","signature":"rtsp_session_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"87 - unable to parse FTP file list","kind":"enum_member","module":"etc.c.curl","name":"ftp_bad_file_list","package":"phobos","parentType":"","signature":"ftp_bad_file_list = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"88 - chunk callback reported error","kind":"enum_member","module":"etc.c.curl","name":"chunk_failed","package":"phobos","parentType":"","signature":"chunk_failed = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"never use!","kind":"enum_member","module":"etc.c.curl","name":"curl_last","package":"phobos","parentType":"","signature":"curl_last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlError"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLcode","package":"phobos","parentType":"","signature":"CURLcode = int","url":"/ddoc/phobos/etc/c/curl.html#CURLcode"},{"doc":"This prototype applies to all conversion callbacks","kind":"alias","module":"etc.c.curl","name":"curl_conv_callback","package":"phobos","parentType":"","signature":"curl_conv_callback = CURLcode function(char  * buffer,  size_t length)","url":"/ddoc/phobos/etc/c/curl.html#curl_conv_callback"},{"doc":"actually an OpenSSL SSL_CTX","kind":"alias","module":"etc.c.curl","name":"curl_ssl_ctx_callback","package":"phobos","parentType":"","signature":"curl_ssl_ctx_callback = CURLcode function(CURL * curl,    /** easy handle */\n                           void  * ssl_ctx, /** actually an OpenSSL SSL_CTX */\n                           void  * userptr\n                         )","url":"/ddoc/phobos/etc/c/curl.html#curl_ssl_ctx_callback"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlProxy","package":"phobos","parentType":"","signature":"CurlProxy","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"added in 7.10, new in 7.19.4 default is to use CONNECT HTTP/1.1","kind":"enum_member","module":"etc.c.curl","name":"http","package":"phobos","parentType":"","signature":"http = ","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"added in 7.19.4, force to use CONNECT HTTP/1.0","kind":"enum_member","module":"etc.c.curl","name":"http_1_0","package":"phobos","parentType":"","signature":"http_1_0 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"support added in 7.15.2, enum existed already in 7.10","kind":"enum_member","module":"etc.c.curl","name":"socks4","package":"phobos","parentType":"","signature":"socks4 = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"added in 7.10","kind":"enum_member","module":"etc.c.curl","name":"socks5","package":"phobos","parentType":"","signature":"socks5 = 5","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"added in 7.18.0","kind":"enum_member","module":"etc.c.curl","name":"socks4a","package":"phobos","parentType":"","signature":"socks4a = 6","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"Use the SOCKS5 protocol but pass along the host name rather than the IP address. added in 7.18.0","kind":"enum_member","module":"etc.c.curl","name":"socks5_hostname","package":"phobos","parentType":"","signature":"socks5_hostname = 7","url":"/ddoc/phobos/etc/c/curl.html#CurlProxy"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_proxytype","package":"phobos","parentType":"","signature":"curl_proxytype = int","url":"/ddoc/phobos/etc/c/curl.html#curl_proxytype"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlAuth","package":"phobos","parentType":"","signature":"CurlAuth : ulong","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"None","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = 0UL","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"Basic (default)","kind":"enum_member","module":"etc.c.curl","name":"basic","package":"phobos","parentType":"","signature":"basic = 1UL <<  0","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"Digest","kind":"enum_member","module":"etc.c.curl","name":"digest","package":"phobos","parentType":"","signature":"digest = 1UL <<  1","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"Negotiate (SPNEGO)","kind":"enum_member","module":"etc.c.curl","name":"negotiate","package":"phobos","parentType":"","signature":"negotiate = 1UL <<  2","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"GSS-Negotiate","kind":"enum_member","module":"etc.c.curl","name":"gssnegotiate","package":"phobos","parentType":"","signature":"gssnegotiate = negotiate","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"GSS-Negoatiate","kind":"enum_member","module":"etc.c.curl","name":"gssapi","package":"phobos","parentType":"","signature":"gssapi = negotiate","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"NTLM","kind":"enum_member","module":"etc.c.curl","name":"ntlm","package":"phobos","parentType":"","signature":"ntlm = 1UL <<  3","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"Digest with IE flavour","kind":"enum_member","module":"etc.c.curl","name":"digest_ie","package":"phobos","parentType":"","signature":"digest_ie = 1UL <<  4","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"NTML delegated to winbind helper","kind":"enum_member","module":"etc.c.curl","name":"ntlm_WB","package":"phobos","parentType":"","signature":"ntlm_WB = 1UL <<  5","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"Bearer token authentication","kind":"enum_member","module":"etc.c.curl","name":"bearer","package":"phobos","parentType":"","signature":"bearer = 1UL <<  6","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"used together with a single other type to force no auth or just that single type","kind":"enum_member","module":"etc.c.curl","name":"only","package":"phobos","parentType":"","signature":"only = 1UL <<  31","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"any allows","kind":"enum_member","module":"etc.c.curl","name":"any","package":"phobos","parentType":"","signature":"any = ~ digest_ie","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"any except basic","kind":"enum_member","module":"etc.c.curl","name":"anysafe","package":"phobos","parentType":"","signature":"anysafe = ~(basic |  digest_ie)","url":"/ddoc/phobos/etc/c/curl.html#CurlAuth"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlSshAuth","package":"phobos","parentType":"","signature":"CurlSshAuth","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"all types supported by the server","kind":"enum_member","module":"etc.c.curl","name":"any","package":"phobos","parentType":"","signature":"any = ~ 0","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"none allowed, silly but complete","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"public/private key files","kind":"enum_member","module":"etc.c.curl","name":"publickey","package":"phobos","parentType":"","signature":"publickey = 1 <<  0","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"password","kind":"enum_member","module":"etc.c.curl","name":"password","package":"phobos","parentType":"","signature":"password = 1 <<  1","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"host key files","kind":"enum_member","module":"etc.c.curl","name":"host","package":"phobos","parentType":"","signature":"host = 1 <<  2","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"keyboard interactive","kind":"enum_member","module":"etc.c.curl","name":"keyboard","package":"phobos","parentType":"","signature":"keyboard = 1 <<  3","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"agent (ssh-agent, pageant...)","kind":"enum_member","module":"etc.c.curl","name":"agent","package":"phobos","parentType":"","signature":"agent = 1 <<  4","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"gssapi (kerberos, ...)","kind":"enum_member","module":"etc.c.curl","name":"gssapi","package":"phobos","parentType":"","signature":"gssapi = 1 <<  5","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"default_","package":"phobos","parentType":"","signature":"default_ = any","url":"/ddoc/phobos/etc/c/curl.html#CurlSshAuth"},{"doc":"points to a zero-terminated string encoded with base64 if len is zero, otherwise to the \"raw\" data","kind":"enum","module":"etc.c.curl","name":"CurlKHType","package":"phobos","parentType":"","signature":"CurlKHType","url":"/ddoc/phobos/etc/c/curl.html#CurlKHType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"unknown","package":"phobos","parentType":"","signature":"unknown = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rsa1","package":"phobos","parentType":"","signature":"rsa1 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rsa","package":"phobos","parentType":"","signature":"rsa = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHType"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"dss","package":"phobos","parentType":"","signature":"dss = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHType"},{"doc":"","kind":"struct","module":"etc.c.curl","name":"curl_khkey","package":"phobos","parentType":"","signature":"curl_khkey","url":"/ddoc/phobos/etc/c/curl.html#curl_khkey"},{"doc":"this is the set of return values expected from the curl_sshkeycallback callback","kind":"enum","module":"etc.c.curl","name":"CurlKHStat","package":"phobos","parentType":"","signature":"CurlKHStat","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"fine_add_to_file","package":"phobos","parentType":"","signature":"fine_add_to_file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"fine","package":"phobos","parentType":"","signature":"fine = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"reject the connection, return an error","kind":"enum_member","module":"etc.c.curl","name":"reject","package":"phobos","parentType":"","signature":"reject = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"do not accept it, but we can't answer right now so this causes a CURLE_DEFER error but otherwise the connection will be left intact etc","kind":"enum_member","module":"etc.c.curl","name":"defer","package":"phobos","parentType":"","signature":"defer = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"not for use, only a marker for last-in-list","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHStat"},{"doc":"this is the set of status codes pass in to the callback","kind":"enum","module":"etc.c.curl","name":"CurlKHMatch","package":"phobos","parentType":"","signature":"CurlKHMatch","url":"/ddoc/phobos/etc/c/curl.html#CurlKHMatch"},{"doc":"match","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHMatch"},{"doc":"host found, key mismatch!","kind":"enum_member","module":"etc.c.curl","name":"mismatch","package":"phobos","parentType":"","signature":"mismatch = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHMatch"},{"doc":"no matching host/key found","kind":"enum_member","module":"etc.c.curl","name":"missing","package":"phobos","parentType":"","signature":"missing = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHMatch"},{"doc":"not for use, only a marker for last-in-list","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlKHMatch"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_sshkeycallback","package":"phobos","parentType":"","signature":"curl_sshkeycallback = int  function(CURL * easy,            /** easy handle */\n                      const(curl_khkey)  * knownkey,  /** known */\n                      const(curl_khkey)  * foundkey,  /** found */\n                      CurlKHMatch m,         /** libcurl's view on the keys */\n                      void  * clientp          /** custom pointer passed from app */\n                    )","url":"/ddoc/phobos/etc/c/curl.html#curl_sshkeycallback"},{"doc":"parameter for the CURLOPT_USE_SSL option","kind":"enum","module":"etc.c.curl","name":"CurlUseSSL","package":"phobos","parentType":"","signature":"CurlUseSSL","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"do not attempt to use SSL","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"try using SSL, proceed anyway otherwise","kind":"enum_member","module":"etc.c.curl","name":"tryssl","package":"phobos","parentType":"","signature":"tryssl = ","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"SSL for the control connection or fail","kind":"enum_member","module":"etc.c.curl","name":"control","package":"phobos","parentType":"","signature":"control = ","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"SSL for all communication or fail","kind":"enum_member","module":"etc.c.curl","name":"all","package":"phobos","parentType":"","signature":"all = ","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"not an option, never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlUseSSL"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_usessl","package":"phobos","parentType":"","signature":"curl_usessl = int","url":"/ddoc/phobos/etc/c/curl.html#curl_usessl"},{"doc":"parameter for the CURLOPT_FTP_SSL_CCC option","kind":"enum","module":"etc.c.curl","name":"CurlFtpSSL","package":"phobos","parentType":"","signature":"CurlFtpSSL","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpSSL"},{"doc":"do not send CCC","kind":"enum_member","module":"etc.c.curl","name":"ccc_none","package":"phobos","parentType":"","signature":"ccc_none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpSSL"},{"doc":"Let the server initiate the shutdown","kind":"enum_member","module":"etc.c.curl","name":"ccc_passive","package":"phobos","parentType":"","signature":"ccc_passive = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpSSL"},{"doc":"Initiate the shutdown","kind":"enum_member","module":"etc.c.curl","name":"ccc_active","package":"phobos","parentType":"","signature":"ccc_active = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpSSL"},{"doc":"not an option, never use","kind":"enum_member","module":"etc.c.curl","name":"ccc_last","package":"phobos","parentType":"","signature":"ccc_last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpSSL"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_ftpccc","package":"phobos","parentType":"","signature":"curl_ftpccc = int","url":"/ddoc/phobos/etc/c/curl.html#curl_ftpccc"},{"doc":"parameter for the CURLOPT_FTPSSLAUTH option","kind":"enum","module":"etc.c.curl","name":"CurlFtpAuth","package":"phobos","parentType":"","signature":"CurlFtpAuth","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpAuth"},{"doc":"let libcurl decide","kind":"enum_member","module":"etc.c.curl","name":"defaultauth","package":"phobos","parentType":"","signature":"defaultauth = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpAuth"},{"doc":"use \"AUTH SSL\"","kind":"enum_member","module":"etc.c.curl","name":"ssl","package":"phobos","parentType":"","signature":"ssl = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpAuth"},{"doc":"use \"AUTH TLS\"","kind":"enum_member","module":"etc.c.curl","name":"tls","package":"phobos","parentType":"","signature":"tls = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpAuth"},{"doc":"not an option, never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpAuth"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_ftpauth","package":"phobos","parentType":"","signature":"curl_ftpauth = int","url":"/ddoc/phobos/etc/c/curl.html#curl_ftpauth"},{"doc":"parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option","kind":"enum","module":"etc.c.curl","name":"CurlFtp","package":"phobos","parentType":"","signature":"CurlFtp","url":"/ddoc/phobos/etc/c/curl.html#CurlFtp"},{"doc":"do NOT create missing dirs!","kind":"enum_member","module":"etc.c.curl","name":"create_dir_none","package":"phobos","parentType":"","signature":"create_dir_none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtp"},{"doc":"(FTP/SFTP) if CWD fails, try MKD and then CWD again if MKD succeeded, for SFTP this does similar magic","kind":"enum_member","module":"etc.c.curl","name":"create_dir","package":"phobos","parentType":"","signature":"create_dir = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtp"},{"doc":"(FTP only) if CWD fails, try MKD and then CWD again even if MKD failed!","kind":"enum_member","module":"etc.c.curl","name":"create_dir_retry","package":"phobos","parentType":"","signature":"create_dir_retry = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtp"},{"doc":"not an option, never use","kind":"enum_member","module":"etc.c.curl","name":"create_dir_last","package":"phobos","parentType":"","signature":"create_dir_last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtp"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_ftpcreatedir","package":"phobos","parentType":"","signature":"curl_ftpcreatedir = int","url":"/ddoc/phobos/etc/c/curl.html#curl_ftpcreatedir"},{"doc":"parameter for the CURLOPT_FTP_FILEMETHOD option","kind":"enum","module":"etc.c.curl","name":"CurlFtpMethod","package":"phobos","parentType":"","signature":"CurlFtpMethod","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"let libcurl pick","kind":"enum_member","module":"etc.c.curl","name":"defaultmethod","package":"phobos","parentType":"","signature":"defaultmethod = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"single CWD operation for each path part","kind":"enum_member","module":"etc.c.curl","name":"multicwd","package":"phobos","parentType":"","signature":"multicwd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"no CWD at all","kind":"enum_member","module":"etc.c.curl","name":"nocwd","package":"phobos","parentType":"","signature":"nocwd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"one CWD to full dir, then work on file","kind":"enum_member","module":"etc.c.curl","name":"singlecwd","package":"phobos","parentType":"","signature":"singlecwd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"not an option, never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFtpMethod"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_ftpmethod","package":"phobos","parentType":"","signature":"curl_ftpmethod = int","url":"/ddoc/phobos/etc/c/curl.html#curl_ftpmethod"},{"doc":"CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options","kind":"enum","module":"etc.c.curl","name":"CurlProto","package":"phobos","parentType":"","signature":"CurlProto","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"http","package":"phobos","parentType":"","signature":"http = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"https","package":"phobos","parentType":"","signature":"https = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ftp","package":"phobos","parentType":"","signature":"ftp = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ftps","package":"phobos","parentType":"","signature":"ftps = 8","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"scp","package":"phobos","parentType":"","signature":"scp = 16","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"sftp","package":"phobos","parentType":"","signature":"sftp = 32","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"telnet","package":"phobos","parentType":"","signature":"telnet = 64","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ldap","package":"phobos","parentType":"","signature":"ldap = 128","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ldaps","package":"phobos","parentType":"","signature":"ldaps = 256","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"dict","package":"phobos","parentType":"","signature":"dict = 512","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"file","package":"phobos","parentType":"","signature":"file = 1024","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"tftp","package":"phobos","parentType":"","signature":"tftp = 2048","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"imap","package":"phobos","parentType":"","signature":"imap = 4096","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"imaps","package":"phobos","parentType":"","signature":"imaps = 8192","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"pop3","package":"phobos","parentType":"","signature":"pop3 = 16_384","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"pop3s","package":"phobos","parentType":"","signature":"pop3s = 32_768","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"smtp","package":"phobos","parentType":"","signature":"smtp = 65_536","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"smtps","package":"phobos","parentType":"","signature":"smtps = 131_072","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtsp","package":"phobos","parentType":"","signature":"rtsp = 262_144","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmp","package":"phobos","parentType":"","signature":"rtmp = 524_288","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmpt","package":"phobos","parentType":"","signature":"rtmpt = 1_048_576","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmpe","package":"phobos","parentType":"","signature":"rtmpe = 2_097_152","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmpte","package":"phobos","parentType":"","signature":"rtmpte = 4_194_304","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmps","package":"phobos","parentType":"","signature":"rtmps = 8_388_608","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtmpts","package":"phobos","parentType":"","signature":"rtmpts = 16_777_216","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"gopher","package":"phobos","parentType":"","signature":"gopher = 33_554_432","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"enable everything","kind":"enum_member","module":"etc.c.curl","name":"all","package":"phobos","parentType":"","signature":"all = - 1","url":"/ddoc/phobos/etc/c/curl.html#CurlProto"},{"doc":"name is uppercase CURLOPT_$(LT)name$(GT), type is one of the defined CURLOPTTYPE_$(LT)type$(GT) number is unique identifier The macro \"##\" is ISO C...","kind":"alias","module":"etc.c.curl","name":"LONG","package":"phobos","parentType":"","signature":"LONG = CURLOPTTYPE_LONG","url":"/ddoc/phobos/etc/c/curl.html#LONG"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"OBJECTPOINT","package":"phobos","parentType":"","signature":"OBJECTPOINT = CURLOPTTYPE_OBJECTPOINT","url":"/ddoc/phobos/etc/c/curl.html#OBJECTPOINT"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"FUNCTIONPOINT","package":"phobos","parentType":"","signature":"FUNCTIONPOINT = CURLOPTTYPE_FUNCTIONPOINT","url":"/ddoc/phobos/etc/c/curl.html#FUNCTIONPOINT"},{"doc":"ditto","kind":"alias","module":"etc.c.curl","name":"OFF_T","package":"phobos","parentType":"","signature":"OFF_T = CURLOPTTYPE_OFF_T","url":"/ddoc/phobos/etc/c/curl.html#OFF_T"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlOption","package":"phobos","parentType":"","signature":"CurlOption","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"This is the FILE * or void * the regular output should be written to.","kind":"enum_member","module":"etc.c.curl","name":"file","package":"phobos","parentType":"","signature":"file = 10_001","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The full URL to get/put","kind":"enum_member","module":"etc.c.curl","name":"url","package":"phobos","parentType":"","signature":"url = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Port number to connect to, if other than default.","kind":"enum_member","module":"etc.c.curl","name":"port","package":"phobos","parentType":"","signature":"port = 3","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Name of proxy to use.","kind":"enum_member","module":"etc.c.curl","name":"proxy","package":"phobos","parentType":"","signature":"proxy = 10_004","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"\"name:password\" to use when fetching.","kind":"enum_member","module":"etc.c.curl","name":"userpwd","package":"phobos","parentType":"","signature":"userpwd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"\"name:password\" to use with proxy.","kind":"enum_member","module":"etc.c.curl","name":"proxyuserpwd","package":"phobos","parentType":"","signature":"proxyuserpwd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Range to get, specified as an ASCII string.","kind":"enum_member","module":"etc.c.curl","name":"range","package":"phobos","parentType":"","signature":"range = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"not used Specified file stream to upload from (use as input):","kind":"enum_member","module":"etc.c.curl","name":"infile","package":"phobos","parentType":"","signature":"infile = 10_009","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Buffer to receive error messages in, must be at least CURL_ERROR_SIZE bytes big. If this is not used, error messages go to stderr instead:","kind":"enum_member","module":"etc.c.curl","name":"errorbuffer","package":"phobos","parentType":"","signature":"errorbuffer = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to store the output (instead of fwrite). The parameters will use fwrite() syntax, make sure to follow them.","kind":"enum_member","module":"etc.c.curl","name":"writefunction","package":"phobos","parentType":"","signature":"writefunction = 20_011","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to read the input (instead of fread). The parameters will use fread() syntax, make sure to follow them.","kind":"enum_member","module":"etc.c.curl","name":"readfunction","package":"phobos","parentType":"","signature":"readfunction = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Time-out the read operation after this amount of seconds","kind":"enum_member","module":"etc.c.curl","name":"timeout","package":"phobos","parentType":"","signature":"timeout = 13","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"If the CURLOPT_INFILE is used, this can be used to inform libcurl about how large the file being sent really is. That allows better error checking ...","kind":"enum_member","module":"etc.c.curl","name":"infilesize","package":"phobos","parentType":"","signature":"infilesize = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"POST static input fields.","kind":"enum_member","module":"etc.c.curl","name":"postfields","package":"phobos","parentType":"","signature":"postfields = 10_015","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the referrer page (needed by some CGIs)","kind":"enum_member","module":"etc.c.curl","name":"referer","package":"phobos","parentType":"","signature":"referer = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the FTP PORT string (interface name, named or numerical IP address) Use i.e '-' to use default address.","kind":"enum_member","module":"etc.c.curl","name":"ftpport","package":"phobos","parentType":"","signature":"ftpport = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the User-Agent string (examined by some CGIs)","kind":"enum_member","module":"etc.c.curl","name":"useragent","package":"phobos","parentType":"","signature":"useragent = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"If the download receives less than \"low speed limit\" bytes/second during \"low speed time\" seconds, the operations is aborted. You could i.e if you ...","kind":"enum_member","module":"etc.c.curl","name":"low_speed_limit","package":"phobos","parentType":"","signature":"low_speed_limit = 19","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the \"low speed time\"","kind":"enum_member","module":"etc.c.curl","name":"low_speed_time","package":"phobos","parentType":"","signature":"low_speed_time = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the continuation offset.","kind":"enum_member","module":"etc.c.curl","name":"resume_from","package":"phobos","parentType":"","signature":"resume_from = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set cookie in request:","kind":"enum_member","module":"etc.c.curl","name":"cookie","package":"phobos","parentType":"","signature":"cookie = 10_022","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"This points to a linked list of headers, struct curl_slist kind","kind":"enum_member","module":"etc.c.curl","name":"httpheader","package":"phobos","parentType":"","signature":"httpheader = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"This points to a linked list of post entries, struct curl_httppost","kind":"enum_member","module":"etc.c.curl","name":"httppost","package":"phobos","parentType":"","signature":"httppost = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"name of the file keeping your private SSL-certificate","kind":"enum_member","module":"etc.c.curl","name":"sslcert","package":"phobos","parentType":"","signature":"sslcert = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"password for the SSL or SSH private key","kind":"enum_member","module":"etc.c.curl","name":"keypasswd","package":"phobos","parentType":"","signature":"keypasswd = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send TYPE parameter?","kind":"enum_member","module":"etc.c.curl","name":"crlf","package":"phobos","parentType":"","signature":"crlf = 27","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send linked-list of QUOTE commands","kind":"enum_member","module":"etc.c.curl","name":"quote","package":"phobos","parentType":"","signature":"quote = 10_028","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send FILE * or void * to store headers to, if you use a callback it is simply passed to the callback unmodified","kind":"enum_member","module":"etc.c.curl","name":"writeheader","package":"phobos","parentType":"","signature":"writeheader = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"point to a file to read the initial cookies from, also enables \"cookie awareness\"","kind":"enum_member","module":"etc.c.curl","name":"cookiefile","package":"phobos","parentType":"","signature":"cookiefile = 10_031","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"What version to specifically try to use. See CURL_SSLVERSION defines below.","kind":"enum_member","module":"etc.c.curl","name":"sslversion","package":"phobos","parentType":"","signature":"sslversion = 32","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"What kind of HTTP time condition to use, see defines","kind":"enum_member","module":"etc.c.curl","name":"timecondition","package":"phobos","parentType":"","signature":"timecondition = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Time to use with the above condition. Specified in number of seconds since 1 Jan 1970","kind":"enum_member","module":"etc.c.curl","name":"timevalue","package":"phobos","parentType":"","signature":"timevalue = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Custom request, for customizing the get command like HTTP: DELETE, TRACE and others FTP: to use a different list command","kind":"enum_member","module":"etc.c.curl","name":"customrequest","package":"phobos","parentType":"","signature":"customrequest = 10_036","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"HTTP request, for odd commands like DELETE, TRACE and others","kind":"enum_member","module":"etc.c.curl","name":"stderr","package":"phobos","parentType":"","signature":"stderr = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send linked-list of post-transfer QUOTE commands","kind":"enum_member","module":"etc.c.curl","name":"postquote","package":"phobos","parentType":"","signature":"postquote = 10_039","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Pass a pointer to string of the output using full variable-replacement as described elsewhere.","kind":"enum_member","module":"etc.c.curl","name":"writeinfo","package":"phobos","parentType":"","signature":"writeinfo = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"talk a lot","kind":"enum_member","module":"etc.c.curl","name":"verbose","package":"phobos","parentType":"","signature":"verbose = 41","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"throw the header out too","kind":"enum_member","module":"etc.c.curl","name":"header","package":"phobos","parentType":"","signature":"header = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"shut off the progress meter","kind":"enum_member","module":"etc.c.curl","name":"noprogress","package":"phobos","parentType":"","signature":"noprogress = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"use HEAD to get http document","kind":"enum_member","module":"etc.c.curl","name":"nobody","package":"phobos","parentType":"","signature":"nobody = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"no output on http error codes >= 300","kind":"enum_member","module":"etc.c.curl","name":"failonerror","package":"phobos","parentType":"","signature":"failonerror = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"this is an upload","kind":"enum_member","module":"etc.c.curl","name":"upload","package":"phobos","parentType":"","signature":"upload = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"HTTP POST method","kind":"enum_member","module":"etc.c.curl","name":"post","package":"phobos","parentType":"","signature":"post = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"return bare names when listing directories","kind":"enum_member","module":"etc.c.curl","name":"dirlistonly","package":"phobos","parentType":"","signature":"dirlistonly = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Append instead of overwrite on upload!","kind":"enum_member","module":"etc.c.curl","name":"append","package":"phobos","parentType":"","signature":"append = 50","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specify whether to read the user+password from the .netrc or the URL. This must be one of the CURL_NETRC_* enums below.","kind":"enum_member","module":"etc.c.curl","name":"netrc","package":"phobos","parentType":"","signature":"netrc = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"use Location: Luke!","kind":"enum_member","module":"etc.c.curl","name":"followlocation","package":"phobos","parentType":"","signature":"followlocation = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"transfer data in text/ASCII format","kind":"enum_member","module":"etc.c.curl","name":"transfertext","package":"phobos","parentType":"","signature":"transfertext = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"HTTP PUT","kind":"enum_member","module":"etc.c.curl","name":"put","package":"phobos","parentType":"","signature":"put = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called instead of the internal progress display function. This function should be defined as the curl_progress_callback proto...","kind":"enum_member","module":"etc.c.curl","name":"progressfunction","package":"phobos","parentType":"","signature":"progressfunction = 20_056","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Data passed to the progress callback","kind":"enum_member","module":"etc.c.curl","name":"progressdata","package":"phobos","parentType":"","signature":"progressdata = 10_057","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"We want the referrer field set automatically when following locations","kind":"enum_member","module":"etc.c.curl","name":"autoreferer","package":"phobos","parentType":"","signature":"autoreferer = 58","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Port of the proxy, can be set in the proxy string as well with: `[host]:[port]`","kind":"enum_member","module":"etc.c.curl","name":"proxyport","package":"phobos","parentType":"","signature":"proxyport = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"size of the POST input data, if strlen() is not good to use","kind":"enum_member","module":"etc.c.curl","name":"postfieldsize","package":"phobos","parentType":"","signature":"postfieldsize = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"tunnel non-http operations through a HTTP proxy","kind":"enum_member","module":"etc.c.curl","name":"httpproxytunnel","package":"phobos","parentType":"","signature":"httpproxytunnel = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the interface string to use as outgoing network interface","kind":"enum_member","module":"etc.c.curl","name":"intrface","package":"phobos","parentType":"","signature":"intrface = 10_062","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the krb4/5 security level, this also enables krb4/5 awareness.  This is a string, 'clear', 'safe', 'confidential' or 'private'.  If the string ...","kind":"enum_member","module":"etc.c.curl","name":"krblevel","package":"phobos","parentType":"","signature":"krblevel = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set if we should verify the peer in ssl handshake, set 1 to verify.","kind":"enum_member","module":"etc.c.curl","name":"ssl_verifypeer","package":"phobos","parentType":"","signature":"ssl_verifypeer = 64","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The CApath or CAfile used to validate the peer certificate this option is used only if SSL_VERIFYPEER is true","kind":"enum_member","module":"etc.c.curl","name":"cainfo","package":"phobos","parentType":"","signature":"cainfo = 10_065","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Maximum number of http redirects to follow","kind":"enum_member","module":"etc.c.curl","name":"maxredirs","package":"phobos","parentType":"","signature":"maxredirs = 68","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Pass a long set to 1 to get the date of the requested document (if possible)! Pass a zero to shut it off.","kind":"enum_member","module":"etc.c.curl","name":"filetime","package":"phobos","parentType":"","signature":"filetime = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"This points to a linked list of telnet options","kind":"enum_member","module":"etc.c.curl","name":"telnetoptions","package":"phobos","parentType":"","signature":"telnetoptions = 10_070","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Max amount of cached alive connections","kind":"enum_member","module":"etc.c.curl","name":"maxconnects","package":"phobos","parentType":"","signature":"maxconnects = 71","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"What policy to use when closing connections when the cache is filled up","kind":"enum_member","module":"etc.c.curl","name":"closepolicy","package":"phobos","parentType":"","signature":"closepolicy = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set to explicitly use a new connection for the upcoming transfer. Do not use this unless you're absolutely sure of this, as it makes the operation ...","kind":"enum_member","module":"etc.c.curl","name":"fresh_connect","package":"phobos","parentType":"","signature":"fresh_connect = 74","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set to explicitly forbid the upcoming transfer's connection to be re-used when done. Do not use this unless you're absolutely sure of this, as it m...","kind":"enum_member","module":"etc.c.curl","name":"forbid_reuse","package":"phobos","parentType":"","signature":"forbid_reuse = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set to a file name that contains random data for libcurl to use to seed the random engine when doing SSL connects.","kind":"enum_member","module":"etc.c.curl","name":"random_file","package":"phobos","parentType":"","signature":"random_file = 10_076","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set to the Entropy Gathering Daemon socket pathname","kind":"enum_member","module":"etc.c.curl","name":"egdsocket","package":"phobos","parentType":"","signature":"egdsocket = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Time-out connect operations after this amount of seconds, if connects are OK within this time, then fine... This only aborts the connect phase. [On...","kind":"enum_member","module":"etc.c.curl","name":"connecttimeout","package":"phobos","parentType":"","signature":"connecttimeout = 78","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to store headers (instead of fwrite). The parameters will use fwrite() syntax, make sure to follow them.","kind":"enum_member","module":"etc.c.curl","name":"headerfunction","package":"phobos","parentType":"","signature":"headerfunction = 20_079","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this to force the HTTP request to get back to GET. Only really usable if POST, PUT or a custom request have been used first.","kind":"enum_member","module":"etc.c.curl","name":"httpget","package":"phobos","parentType":"","signature":"httpget = 80","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set if we should verify the Common name from the peer certificate in ssl handshake, set 1 to check existence, 2 to ensure that it matches the provi...","kind":"enum_member","module":"etc.c.curl","name":"ssl_verifyhost","package":"phobos","parentType":"","signature":"ssl_verifyhost = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specify which file name to write all known cookies in after completed operation. Set file name to \"-\" (dash) to make it go to stdout.","kind":"enum_member","module":"etc.c.curl","name":"cookiejar","package":"phobos","parentType":"","signature":"cookiejar = 10_082","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specify which SSL ciphers to use","kind":"enum_member","module":"etc.c.curl","name":"ssl_cipher_list","package":"phobos","parentType":"","signature":"ssl_cipher_list = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specify which HTTP version to use! This must be set to one of the CURL_HTTP_VERSION* enums set below.","kind":"enum_member","module":"etc.c.curl","name":"http_version","package":"phobos","parentType":"","signature":"http_version = 84","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specifically switch on or off the FTP engine's use of the EPSV command. By default, that one will always be attempted before the more traditional P...","kind":"enum_member","module":"etc.c.curl","name":"ftp_use_epsv","package":"phobos","parentType":"","signature":"ftp_use_epsv = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"type of the file keeping your SSL-certificate (\"DER\", \"PEM\", \"ENG\")","kind":"enum_member","module":"etc.c.curl","name":"sslcerttype","package":"phobos","parentType":"","signature":"sslcerttype = 10_086","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"name of the file keeping your private SSL-key","kind":"enum_member","module":"etc.c.curl","name":"sslkey","package":"phobos","parentType":"","signature":"sslkey = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"type of the file keeping your private SSL-key (\"DER\", \"PEM\", \"ENG\")","kind":"enum_member","module":"etc.c.curl","name":"sslkeytype","package":"phobos","parentType":"","signature":"sslkeytype = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"crypto engine for the SSL-sub system","kind":"enum_member","module":"etc.c.curl","name":"sslengine","package":"phobos","parentType":"","signature":"sslengine = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the crypto engine for the SSL-sub system as default the param has no meaning...","kind":"enum_member","module":"etc.c.curl","name":"sslengine_default","package":"phobos","parentType":"","signature":"sslengine_default = 90","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Non-zero value means to use the global dns cache","kind":"enum_member","module":"etc.c.curl","name":"dns_use_global_cache","package":"phobos","parentType":"","signature":"dns_use_global_cache = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"DNS cache timeout","kind":"enum_member","module":"etc.c.curl","name":"dns_cache_timeout","package":"phobos","parentType":"","signature":"dns_cache_timeout = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send linked-list of pre-transfer QUOTE commands","kind":"enum_member","module":"etc.c.curl","name":"prequote","package":"phobos","parentType":"","signature":"prequote = 10_093","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the debug function","kind":"enum_member","module":"etc.c.curl","name":"debugfunction","package":"phobos","parentType":"","signature":"debugfunction = 20_094","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the data for the debug function","kind":"enum_member","module":"etc.c.curl","name":"debugdata","package":"phobos","parentType":"","signature":"debugdata = 10_095","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"mark this as start of a cookie session","kind":"enum_member","module":"etc.c.curl","name":"cookiesession","package":"phobos","parentType":"","signature":"cookiesession = 96","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The CApath directory used to validate the peer certificate this option is used only if SSL_VERIFYPEER is true","kind":"enum_member","module":"etc.c.curl","name":"capath","package":"phobos","parentType":"","signature":"capath = 10_097","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Instruct libcurl to use a smaller receive buffer","kind":"enum_member","module":"etc.c.curl","name":"buffersize","package":"phobos","parentType":"","signature":"buffersize = 98","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Instruct libcurl to not use any signal/alarm handlers, even when using timeouts. This option is useful for multi-threaded applications. See libcurl...","kind":"enum_member","module":"etc.c.curl","name":"nosignal","package":"phobos","parentType":"","signature":"nosignal = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Provide a CURLShare for mutexing non-ts data","kind":"enum_member","module":"etc.c.curl","name":"share","package":"phobos","parentType":"","signature":"share = 10_100","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"indicates type of proxy. accepted values are CURLPROXY_HTTP (default), CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5.","kind":"enum_member","module":"etc.c.curl","name":"proxytype","package":"phobos","parentType":"","signature":"proxytype = 101","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the Accept-Encoding string. Use this to tell a server you would like the response to be compressed.","kind":"enum_member","module":"etc.c.curl","name":"encoding","package":"phobos","parentType":"","signature":"encoding = 10_102","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set pointer to private data","kind":"enum_member","module":"etc.c.curl","name":"private_opt","package":"phobos","parentType":"","signature":"private_opt = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set aliases for HTTP 200 in the HTTP Response header","kind":"enum_member","module":"etc.c.curl","name":"http200aliases","package":"phobos","parentType":"","signature":"http200aliases = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Continue to send authentication (user+password) when following locations, even when hostname changed. This can potentially send off the name and pa...","kind":"enum_member","module":"etc.c.curl","name":"unrestricted_auth","package":"phobos","parentType":"","signature":"unrestricted_auth = 105","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Specifically switch on or off the FTP engine's use of the EPRT command ( it also disables the LPRT attempt). By default, those ones will always be ...","kind":"enum_member","module":"etc.c.curl","name":"ftp_use_eprt","package":"phobos","parentType":"","signature":"ftp_use_eprt = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this to a bitmask value to enable the particular authentications methods you like. Use this in combination with CURLOPT_USERPWD. Note that sett...","kind":"enum_member","module":"etc.c.curl","name":"httpauth","package":"phobos","parentType":"","signature":"httpauth = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the ssl context callback function, currently only for OpenSSL ssl_ctx in second argument. The function must be matching the curl_ssl_ctx_callba...","kind":"enum_member","module":"etc.c.curl","name":"ssl_ctx_function","package":"phobos","parentType":"","signature":"ssl_ctx_function = 20_108","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the userdata for the ssl context callback function's third argument","kind":"enum_member","module":"etc.c.curl","name":"ssl_ctx_data","package":"phobos","parentType":"","signature":"ssl_ctx_data = 10_109","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"FTP Option that causes missing dirs to be created on the remote server. In 7.19.4 we introduced the convenience enums for this option using the CUR...","kind":"enum_member","module":"etc.c.curl","name":"ftp_create_missing_dirs","package":"phobos","parentType":"","signature":"ftp_create_missing_dirs = 110","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this to a bitmask value to enable the particular authentications methods you like. Use this in combination with CURLOPT_PROXYUSERPWD. Note that...","kind":"enum_member","module":"etc.c.curl","name":"proxyauth","package":"phobos","parentType":"","signature":"proxyauth = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"FTP option that changes the timeout, in seconds, associated with getting a response.  This is different from transfer timeout time and essentially ...","kind":"enum_member","module":"etc.c.curl","name":"ftp_response_timeout","package":"phobos","parentType":"","signature":"ftp_response_timeout = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this option to one of the CURL_IPRESOLVE_* defines (see below) to tell libcurl to resolve names to those IP versions only. This only has affect...","kind":"enum_member","module":"etc.c.curl","name":"ipresolve","package":"phobos","parentType":"","signature":"ipresolve = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this option to limit the size of a file that will be downloaded from an HTTP or FTP server.","kind":"enum_member","module":"etc.c.curl","name":"maxfilesize","package":"phobos","parentType":"","signature":"maxfilesize = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"See the comment for INFILESIZE above, but in short, specifies the size of the file being uploaded.  -1 means unknown.","kind":"enum_member","module":"etc.c.curl","name":"infilesize_large","package":"phobos","parentType":"","signature":"infilesize_large = 30_115","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Sets the continuation offset.  There is also a LONG version of this; look above for RESUME_FROM.","kind":"enum_member","module":"etc.c.curl","name":"resume_from_large","package":"phobos","parentType":"","signature":"resume_from_large = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Sets the maximum size of data that will be downloaded from an HTTP or FTP server.  See MAXFILESIZE above for the LONG version.","kind":"enum_member","module":"etc.c.curl","name":"maxfilesize_large","package":"phobos","parentType":"","signature":"maxfilesize_large = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set this option to the file name of your .netrc file you want libcurl to parse (using the CURLOPT_NETRC option). If not set, libcurl will do a poor...","kind":"enum_member","module":"etc.c.curl","name":"netrc_file","package":"phobos","parentType":"","signature":"netrc_file = 10_118","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Enable SSL/TLS for FTP, pick one of: CURLFTPSSL_TRY     - try using SSL, proceed anyway otherwise CURLFTPSSL_CONTROL - SSL for the control connecti...","kind":"enum_member","module":"etc.c.curl","name":"use_ssl","package":"phobos","parentType":"","signature":"use_ssl = 119","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The _LARGE version of the standard POSTFIELDSIZE option","kind":"enum_member","module":"etc.c.curl","name":"postfieldsize_large","package":"phobos","parentType":"","signature":"postfieldsize_large = 30_120","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Enable/disable the TCP Nagle algorithm","kind":"enum_member","module":"etc.c.curl","name":"tcp_nodelay","package":"phobos","parentType":"","signature":"tcp_nodelay = 121","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option can be used to change libcurl's default action which is to first try \"AUTH SS...","kind":"enum_member","module":"etc.c.curl","name":"ftpsslauth","package":"phobos","parentType":"","signature":"ftpsslauth = 129","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ioctlfunction","package":"phobos","parentType":"","signature":"ioctlfunction = 20_130","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ioctldata","package":"phobos","parentType":"","signature":"ioctldata = 10_131","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"zero terminated string for pass on to the FTP server when asked for \"account\" info","kind":"enum_member","module":"etc.c.curl","name":"ftp_account","package":"phobos","parentType":"","signature":"ftp_account = 10_134","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"feed cookies into cookie engine","kind":"enum_member","module":"etc.c.curl","name":"cookielist","package":"phobos","parentType":"","signature":"cookielist = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ignore Content-Length","kind":"enum_member","module":"etc.c.curl","name":"ignore_content_length","package":"phobos","parentType":"","signature":"ignore_content_length = 136","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set to non-zero to skip the IP address received in a 227 PASV FTP server response. Typically used for FTP-SSL purposes but is not restricted to tha...","kind":"enum_member","module":"etc.c.curl","name":"ftp_skip_pasv_ip","package":"phobos","parentType":"","signature":"ftp_skip_pasv_ip = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Select \"file method\" to use when doing FTP, see the curl_ftpmethod above.","kind":"enum_member","module":"etc.c.curl","name":"ftp_filemethod","package":"phobos","parentType":"","signature":"ftp_filemethod = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Local port number to bind the socket to","kind":"enum_member","module":"etc.c.curl","name":"localport","package":"phobos","parentType":"","signature":"localport = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Number of ports to try, including the first one set with LOCALPORT. Thus, setting it to 1 will make no additional attempts but the first.","kind":"enum_member","module":"etc.c.curl","name":"localportrange","package":"phobos","parentType":"","signature":"localportrange = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"no transfer, set up connection and let application use the socket by extracting it with CURLINFO_LASTSOCKET","kind":"enum_member","module":"etc.c.curl","name":"connect_only","package":"phobos","parentType":"","signature":"connect_only = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to convert from the network encoding (instead of using the iconv calls in libcurl)","kind":"enum_member","module":"etc.c.curl","name":"conv_from_network_function","package":"phobos","parentType":"","signature":"conv_from_network_function = 20_142","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to convert to the network encoding (instead of using the iconv calls in libcurl)","kind":"enum_member","module":"etc.c.curl","name":"conv_to_network_function","package":"phobos","parentType":"","signature":"conv_to_network_function = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Function that will be called to convert from UTF8 (instead of using the iconv calls in libcurl) Note that this is used only for SSL certificate pro...","kind":"enum_member","module":"etc.c.curl","name":"conv_from_utf8_function","package":"phobos","parentType":"","signature":"conv_from_utf8_function = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"If the connection proceeds too quickly then need to slow it down","kind":"enum_member","module":"etc.c.curl","name":"max_send_speed_large","package":"phobos","parentType":"","signature":"max_send_speed_large = 30_145","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"max_recv_speed_large","package":"phobos","parentType":"","signature":"max_recv_speed_large = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Pointer to command string to send if USER/PASS fails.","kind":"enum_member","module":"etc.c.curl","name":"ftp_alternative_to_user","package":"phobos","parentType":"","signature":"ftp_alternative_to_user = 10_147","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"callback function for setting socket options","kind":"enum_member","module":"etc.c.curl","name":"sockoptfunction","package":"phobos","parentType":"","signature":"sockoptfunction = 20_148","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"sockoptdata","package":"phobos","parentType":"","signature":"sockoptdata = 10_149","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set to 0 to disable session ID re-use for this transfer, default is enabled (== 1)","kind":"enum_member","module":"etc.c.curl","name":"ssl_sessionid_cache","package":"phobos","parentType":"","signature":"ssl_sessionid_cache = 150","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"allowed SSH authentication methods","kind":"enum_member","module":"etc.c.curl","name":"ssh_auth_types","package":"phobos","parentType":"","signature":"ssh_auth_types = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Used by scp/sftp to do public/private key authentication","kind":"enum_member","module":"etc.c.curl","name":"ssh_public_keyfile","package":"phobos","parentType":"","signature":"ssh_public_keyfile = 10_152","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssh_private_keyfile","package":"phobos","parentType":"","signature":"ssh_private_keyfile = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Send CCC (Clear Command Channel) after authentication","kind":"enum_member","module":"etc.c.curl","name":"ftp_ssl_ccc","package":"phobos","parentType":"","signature":"ftp_ssl_ccc = 154","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution","kind":"enum_member","module":"etc.c.curl","name":"timeout_ms","package":"phobos","parentType":"","signature":"timeout_ms = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"connecttimeout_ms","package":"phobos","parentType":"","signature":"connecttimeout_ms = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set to zero to disable the libcurl's decoding and thus pass the raw body data to the application even when it is encoded/compressed","kind":"enum_member","module":"etc.c.curl","name":"http_transfer_decoding","package":"phobos","parentType":"","signature":"http_transfer_decoding = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"http_content_decoding","package":"phobos","parentType":"","signature":"http_content_decoding = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Permission used when creating new files and directories on the remote server for protocols that support it, SFTP/SCP/FILE","kind":"enum_member","module":"etc.c.curl","name":"new_file_perms","package":"phobos","parentType":"","signature":"new_file_perms = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"new_directory_perms","package":"phobos","parentType":"","signature":"new_directory_perms = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set the behaviour of POST when redirecting. Values must be set to one of CURL_REDIR* defines below. This used to be called CURLOPT_POST301","kind":"enum_member","module":"etc.c.curl","name":"postredir","package":"phobos","parentType":"","signature":"postredir = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"used by scp/sftp to verify the host's public key","kind":"enum_member","module":"etc.c.curl","name":"ssh_host_public_key_md5","package":"phobos","parentType":"","signature":"ssh_host_public_key_md5 = 10_162","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Callback function for opening socket (instead of socket(2)). Optionally, callback is able change the address or refuse to connect returning CURL_SO...","kind":"enum_member","module":"etc.c.curl","name":"opensocketfunction","package":"phobos","parentType":"","signature":"opensocketfunction = 20_163","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"opensocketdata","package":"phobos","parentType":"","signature":"opensocketdata = 10_164","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"POST volatile input fields.","kind":"enum_member","module":"etc.c.curl","name":"copypostfields","package":"phobos","parentType":"","signature":"copypostfields = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set transfer mode (;type=$(LT)a|i$(GT)) when doing FTP via an HTTP proxy","kind":"enum_member","module":"etc.c.curl","name":"proxy_transfer_mode","package":"phobos","parentType":"","signature":"proxy_transfer_mode = 166","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Callback function for seeking in the input stream","kind":"enum_member","module":"etc.c.curl","name":"seekfunction","package":"phobos","parentType":"","signature":"seekfunction = 20_167","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"seekdata","package":"phobos","parentType":"","signature":"seekdata = 10_168","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"CRL file","kind":"enum_member","module":"etc.c.curl","name":"crlfile","package":"phobos","parentType":"","signature":"crlfile = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Issuer certificate","kind":"enum_member","module":"etc.c.curl","name":"issuercert","package":"phobos","parentType":"","signature":"issuercert = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"(IPv6) Address scope","kind":"enum_member","module":"etc.c.curl","name":"address_scope","package":"phobos","parentType":"","signature":"address_scope = 171","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Collect certificate chain info and allow it to get retrievable with CURLINFO_CERTINFO after the transfer is complete. (Unfortunately) only working ...","kind":"enum_member","module":"etc.c.curl","name":"certinfo","package":"phobos","parentType":"","signature":"certinfo = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"\"name\" and \"pwd\" to use when fetching.","kind":"enum_member","module":"etc.c.curl","name":"username","package":"phobos","parentType":"","signature":"username = 10_173","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"password","package":"phobos","parentType":"","signature":"password = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"\"name\" and \"pwd\" to use with Proxy when fetching.","kind":"enum_member","module":"etc.c.curl","name":"proxyusername","package":"phobos","parentType":"","signature":"proxyusername = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"proxypassword","package":"phobos","parentType":"","signature":"proxypassword = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Comma separated list of hostnames defining no-proxy zones. These should match both hostnames directly, and hostnames within a domain. For example, ...","kind":"enum_member","module":"etc.c.curl","name":"noproxy","package":"phobos","parentType":"","signature":"noproxy = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"block size for TFTP transfers","kind":"enum_member","module":"etc.c.curl","name":"tftp_blksize","package":"phobos","parentType":"","signature":"tftp_blksize = 178","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Socks Service","kind":"enum_member","module":"etc.c.curl","name":"socks5_gssapi_service","package":"phobos","parentType":"","signature":"socks5_gssapi_service = 10_179","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Socks Service","kind":"enum_member","module":"etc.c.curl","name":"socks5_gssapi_nec","package":"phobos","parentType":"","signature":"socks5_gssapi_nec = 180","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the bitmask for the protocols that are allowed to be used for the transfer, which thus helps the app which takes URLs from users or other exter...","kind":"enum_member","module":"etc.c.curl","name":"protocols","package":"phobos","parentType":"","signature":"protocols = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the bitmask for the protocols that libcurl is allowed to follow to, as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs to...","kind":"enum_member","module":"etc.c.curl","name":"redir_protocols","package":"phobos","parentType":"","signature":"redir_protocols = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the SSH knownhost file name to use","kind":"enum_member","module":"etc.c.curl","name":"ssh_knownhosts","package":"phobos","parentType":"","signature":"ssh_knownhosts = 10_183","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the SSH host key callback, must point to a curl_sshkeycallback function","kind":"enum_member","module":"etc.c.curl","name":"ssh_keyfunction","package":"phobos","parentType":"","signature":"ssh_keyfunction = 20_184","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the SSH host key callback custom pointer","kind":"enum_member","module":"etc.c.curl","name":"ssh_keydata","package":"phobos","parentType":"","signature":"ssh_keydata = 10_185","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the SMTP mail originator","kind":"enum_member","module":"etc.c.curl","name":"mail_from","package":"phobos","parentType":"","signature":"mail_from = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"set the SMTP mail receiver(s)","kind":"enum_member","module":"etc.c.curl","name":"mail_rcpt","package":"phobos","parentType":"","signature":"mail_rcpt = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"FTP: send PRET before PASV","kind":"enum_member","module":"etc.c.curl","name":"ftp_use_pret","package":"phobos","parentType":"","signature":"ftp_use_pret = 188","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"RTSP request method (OPTIONS, SETUP, PLAY, etc...)","kind":"enum_member","module":"etc.c.curl","name":"rtsp_request","package":"phobos","parentType":"","signature":"rtsp_request = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The RTSP session identifier","kind":"enum_member","module":"etc.c.curl","name":"rtsp_session_id","package":"phobos","parentType":"","signature":"rtsp_session_id = 10_190","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The RTSP stream URI","kind":"enum_member","module":"etc.c.curl","name":"rtsp_stream_uri","package":"phobos","parentType":"","signature":"rtsp_stream_uri = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The Transport: header to use in RTSP requests","kind":"enum_member","module":"etc.c.curl","name":"rtsp_transport","package":"phobos","parentType":"","signature":"rtsp_transport = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Manually initialize the client RTSP CSeq for this handle","kind":"enum_member","module":"etc.c.curl","name":"rtsp_client_cseq","package":"phobos","parentType":"","signature":"rtsp_client_cseq = 193","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Manually initialize the server RTSP CSeq for this handle","kind":"enum_member","module":"etc.c.curl","name":"rtsp_server_cseq","package":"phobos","parentType":"","signature":"rtsp_server_cseq = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"The stream to pass to INTERLEAVEFUNCTION.","kind":"enum_member","module":"etc.c.curl","name":"interleavedata","package":"phobos","parentType":"","signature":"interleavedata = 10_195","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Let the application define a custom write method for RTP data","kind":"enum_member","module":"etc.c.curl","name":"interleavefunction","package":"phobos","parentType":"","signature":"interleavefunction = 20_196","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Turn on wildcard matching","kind":"enum_member","module":"etc.c.curl","name":"wildcardmatch","package":"phobos","parentType":"","signature":"wildcardmatch = 197","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Directory matching callback called before downloading of an individual file (chunk) started","kind":"enum_member","module":"etc.c.curl","name":"chunk_bgn_function","package":"phobos","parentType":"","signature":"chunk_bgn_function = 20_198","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Directory matching callback called after the file (chunk) was downloaded, or skipped","kind":"enum_member","module":"etc.c.curl","name":"chunk_end_function","package":"phobos","parentType":"","signature":"chunk_end_function = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Change match (fnmatch-like) callback for wildcard matching","kind":"enum_member","module":"etc.c.curl","name":"fnmatch_function","package":"phobos","parentType":"","signature":"fnmatch_function = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Let the application define custom chunk data pointer","kind":"enum_member","module":"etc.c.curl","name":"chunk_data","package":"phobos","parentType":"","signature":"chunk_data = 10_201","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"FNMATCH_FUNCTION user pointer","kind":"enum_member","module":"etc.c.curl","name":"fnmatch_data","package":"phobos","parentType":"","signature":"fnmatch_data = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"send linked-list of name:port:address sets","kind":"enum_member","module":"etc.c.curl","name":"resolve","package":"phobos","parentType":"","signature":"resolve = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set a username for authenticated TLS","kind":"enum_member","module":"etc.c.curl","name":"tlsauth_username","package":"phobos","parentType":"","signature":"tlsauth_username = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set a password for authenticated TLS","kind":"enum_member","module":"etc.c.curl","name":"tlsauth_password","package":"phobos","parentType":"","signature":"tlsauth_password = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"Set authentication type for authenticated TLS","kind":"enum_member","module":"etc.c.curl","name":"tlsauth_type","package":"phobos","parentType":"","signature":"tlsauth_type = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"the last unused","kind":"enum_member","module":"etc.c.curl","name":"lastentry","package":"phobos","parentType":"","signature":"lastentry = ","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"convenient alias","kind":"enum_member","module":"etc.c.curl","name":"writedata","package":"phobos","parentType":"","signature":"writedata = file","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"readdata","package":"phobos","parentType":"","signature":"readdata = infile","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"headerdata","package":"phobos","parentType":"","signature":"headerdata = writeheader","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"ditto","kind":"enum_member","module":"etc.c.curl","name":"rtspheader","package":"phobos","parentType":"","signature":"rtspheader = httpheader","url":"/ddoc/phobos/etc/c/curl.html#CurlOption"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLoption","package":"phobos","parentType":"","signature":"CURLoption = int","url":"/ddoc/phobos/etc/c/curl.html#CURLoption"},{"doc":"Below here follows defines for the CURLOPT_IPRESOLVE option. If a host name resolves addresses using more than one IP protocol version, this option...","kind":"enum","module":"etc.c.curl","name":"CurlIpResolve","package":"phobos","parentType":"","signature":"CurlIpResolve","url":"/ddoc/phobos/etc/c/curl.html#CurlIpResolve"},{"doc":"default, resolves addresses to all IP versions that your system allows","kind":"enum_member","module":"etc.c.curl","name":"whatever","package":"phobos","parentType":"","signature":"whatever = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlIpResolve"},{"doc":"resolve to ipv4 addresses","kind":"enum_member","module":"etc.c.curl","name":"v4","package":"phobos","parentType":"","signature":"v4 = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlIpResolve"},{"doc":"resolve to ipv6 addresses","kind":"enum_member","module":"etc.c.curl","name":"v6","package":"phobos","parentType":"","signature":"v6 = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlIpResolve"},{"doc":"These enums are for use with the CURLOPT_HTTP_VERSION option.","kind":"enum","module":"etc.c.curl","name":"CurlHttpVersion","package":"phobos","parentType":"","signature":"CurlHttpVersion","url":"/ddoc/phobos/etc/c/curl.html#CurlHttpVersion"},{"doc":"setting this means we don't care, and that we'd like the library to choose the best possible for us!","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlHttpVersion"},{"doc":"please use HTTP 1.0 in the request","kind":"enum_member","module":"etc.c.curl","name":"v1_0","package":"phobos","parentType":"","signature":"v1_0 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlHttpVersion"},{"doc":"please use HTTP 1.1 in the request","kind":"enum_member","module":"etc.c.curl","name":"v1_1","package":"phobos","parentType":"","signature":"v1_1 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlHttpVersion"},{"doc":"*ILLEGAL* http version","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlHttpVersion"},{"doc":"Public API enums for RTSP requests","kind":"enum","module":"etc.c.curl","name":"CurlRtspReq","package":"phobos","parentType":"","signature":"CurlRtspReq","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"options","package":"phobos","parentType":"","signature":"options = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"describe","package":"phobos","parentType":"","signature":"describe = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"announce","package":"phobos","parentType":"","signature":"announce = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"setup","package":"phobos","parentType":"","signature":"setup = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"play","package":"phobos","parentType":"","signature":"play = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"pause","package":"phobos","parentType":"","signature":"pause = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"teardown","package":"phobos","parentType":"","signature":"teardown = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"get_parameter","package":"phobos","parentType":"","signature":"get_parameter = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"set_parameter","package":"phobos","parentType":"","signature":"set_parameter = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"record","package":"phobos","parentType":"","signature":"record = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"receive","package":"phobos","parentType":"","signature":"receive = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlRtspReq"},{"doc":"These enums are for use with the CURLOPT_NETRC option.","kind":"enum","module":"etc.c.curl","name":"CurlNetRcOption","package":"phobos","parentType":"","signature":"CurlNetRcOption","url":"/ddoc/phobos/etc/c/curl.html#CurlNetRcOption"},{"doc":"The .netrc will never be read. This is the default.","kind":"enum_member","module":"etc.c.curl","name":"ignored","package":"phobos","parentType":"","signature":"ignored = ","url":"/ddoc/phobos/etc/c/curl.html#CurlNetRcOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"optional","package":"phobos","parentType":"","signature":"optional = ","url":"/ddoc/phobos/etc/c/curl.html#CurlNetRcOption"},{"doc":"A user:password in the URL will be ignored. Unless one is set programmatically, the .netrc will be queried.","kind":"enum_member","module":"etc.c.curl","name":"required","package":"phobos","parentType":"","signature":"required = ","url":"/ddoc/phobos/etc/c/curl.html#CurlNetRcOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlNetRcOption"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlSslVersion","package":"phobos","parentType":"","signature":"CurlSslVersion","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"default_version","package":"phobos","parentType":"","signature":"default_version = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"tlsv1","package":"phobos","parentType":"","signature":"tlsv1 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"sslv2","package":"phobos","parentType":"","signature":"sslv2 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"sslv3","package":"phobos","parentType":"","signature":"sslv3 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlSslVersion"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlTlsAuth","package":"phobos","parentType":"","signature":"CurlTlsAuth","url":"/ddoc/phobos/etc/c/curl.html#CurlTlsAuth"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTlsAuth"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"srp","package":"phobos","parentType":"","signature":"srp = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTlsAuth"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTlsAuth"},{"doc":"symbols to use with CURLOPT_POSTREDIR. CURL_REDIR_POST_301 and CURL_REDIR_POST_302 can be bitwise ORed so that CURL_REDIR_POST_301 | CURL_REDIR_POS...","kind":"enum","module":"etc.c.curl","name":"CurlRedir","package":"phobos","parentType":"","signature":"CurlRedir","url":"/ddoc/phobos/etc/c/curl.html#CurlRedir"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"get_all","package":"phobos","parentType":"","signature":"get_all = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlRedir"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"post_301","package":"phobos","parentType":"","signature":"post_301 = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlRedir"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"post_302","package":"phobos","parentType":"","signature":"post_302 = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlRedir"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"post_all","package":"phobos","parentType":"","signature":"post_all = (1 |  2)","url":"/ddoc/phobos/etc/c/curl.html#CurlRedir"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlTimeCond","package":"phobos","parentType":"","signature":"CurlTimeCond","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ifmodsince","package":"phobos","parentType":"","signature":"ifmodsince = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ifunmodsince","package":"phobos","parentType":"","signature":"ifunmodsince = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"lastmod","package":"phobos","parentType":"","signature":"lastmod = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlTimeCond"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_TimeCond","package":"phobos","parentType":"","signature":"curl_TimeCond = int","url":"/ddoc/phobos/etc/c/curl.html#curl_TimeCond"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlForm","package":"phobos","parentType":"","signature":"CurlForm","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"the first one is unused ***********","kind":"enum_member","module":"etc.c.curl","name":"nothing","package":"phobos","parentType":"","signature":"nothing = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"copyname","package":"phobos","parentType":"","signature":"copyname = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ptrname","package":"phobos","parentType":"","signature":"ptrname = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"namelength","package":"phobos","parentType":"","signature":"namelength = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"copycontents","package":"phobos","parentType":"","signature":"copycontents = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ptrcontents","package":"phobos","parentType":"","signature":"ptrcontents = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"contentslength","package":"phobos","parentType":"","signature":"contentslength = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"filecontent","package":"phobos","parentType":"","signature":"filecontent = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"array","package":"phobos","parentType":"","signature":"array = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"obsolete","package":"phobos","parentType":"","signature":"obsolete = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"file","package":"phobos","parentType":"","signature":"file = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"buffer","package":"phobos","parentType":"","signature":"buffer = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"bufferptr","package":"phobos","parentType":"","signature":"bufferptr = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"bufferlength","package":"phobos","parentType":"","signature":"bufferlength = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"contenttype","package":"phobos","parentType":"","signature":"contenttype = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"contentheader","package":"phobos","parentType":"","signature":"contentheader = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"filename","package":"phobos","parentType":"","signature":"filename = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"end","package":"phobos","parentType":"","signature":"end = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"obsolete2","package":"phobos","parentType":"","signature":"obsolete2 = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"stream","package":"phobos","parentType":"","signature":"stream = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"the last unused","kind":"enum_member","module":"etc.c.curl","name":"lastentry","package":"phobos","parentType":"","signature":"lastentry = ","url":"/ddoc/phobos/etc/c/curl.html#CurlForm"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLformoption","package":"phobos","parentType":"","signature":"CURLformoption = int","url":"/ddoc/phobos/etc/c/curl.html#CURLformoption"},{"doc":"structure to be used as parameter for CURLFORM_ARRAY","kind":"struct","module":"etc.c.curl","name":"curl_forms","package":"phobos","parentType":"","signature":"curl_forms","url":"/ddoc/phobos/etc/c/curl.html#curl_forms"},{"doc":"Use this for multipart formpost building","kind":"enum","module":"etc.c.curl","name":"CurlFormAdd","package":"phobos","parentType":"","signature":"CurlFormAdd","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"first, no error","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"memory","package":"phobos","parentType":"","signature":"memory = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"option_twice","package":"phobos","parentType":"","signature":"option_twice = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"null_ptr","package":"phobos","parentType":"","signature":"null_ptr = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"unknown_option","package":"phobos","parentType":"","signature":"unknown_option = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"incomplete","package":"phobos","parentType":"","signature":"incomplete = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"illegal_array","package":"phobos","parentType":"","signature":"illegal_array = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"libcurl was built with this disabled","kind":"enum_member","module":"etc.c.curl","name":"disabled","package":"phobos","parentType":"","signature":"disabled = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlFormAdd"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLFORMcode","package":"phobos","parentType":"","signature":"CURLFORMcode = int","url":"/ddoc/phobos/etc/c/curl.html#CURLFORMcode"},{"doc":"callback function for curl_formget() The void *arg pointer will be the one passed as second argument to curl_formget(). The character buffer passed...","kind":"alias","module":"etc.c.curl","name":"curl_formget_callback","package":"phobos","parentType":"","signature":"curl_formget_callback = size_t function(void  * arg,  const(char)  * buf,  size_t len)","url":"/ddoc/phobos/etc/c/curl.html#curl_formget_callback"},{"doc":"linked-list structure for the CURLOPT_QUOTE option (and other)","kind":"struct","module":"etc.c.curl","name":"curl_slist","package":"phobos","parentType":"","signature":"curl_slist","url":"/ddoc/phobos/etc/c/curl.html#curl_slist"},{"doc":"info about the certificate chain, only for OpenSSL builds. Asked for with CURLOPT_CERTINFO / CURLINFO_CERTINFO","kind":"struct","module":"etc.c.curl","name":"curl_certinfo","package":"phobos","parentType":"","signature":"curl_certinfo","url":"/ddoc/phobos/etc/c/curl.html#curl_certinfo"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlInfo","package":"phobos","parentType":"","signature":"CurlInfo","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"effective_url","package":"phobos","parentType":"","signature":"effective_url = 1_048_577","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"response_code","package":"phobos","parentType":"","signature":"response_code = 2_097_154","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"total_time","package":"phobos","parentType":"","signature":"total_time = 3_145_731","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"namelookup_time","package":"phobos","parentType":"","signature":"namelookup_time = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"connect_time","package":"phobos","parentType":"","signature":"connect_time = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"pretransfer_time","package":"phobos","parentType":"","signature":"pretransfer_time = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"size_upload","package":"phobos","parentType":"","signature":"size_upload = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"size_download","package":"phobos","parentType":"","signature":"size_download = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"speed_download","package":"phobos","parentType":"","signature":"speed_download = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"speed_upload","package":"phobos","parentType":"","signature":"speed_upload = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"header_size","package":"phobos","parentType":"","signature":"header_size = 2_097_163","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"request_size","package":"phobos","parentType":"","signature":"request_size = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl_verifyresult","package":"phobos","parentType":"","signature":"ssl_verifyresult = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"filetime","package":"phobos","parentType":"","signature":"filetime = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"content_length_download","package":"phobos","parentType":"","signature":"content_length_download = 3_145_743","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"content_length_upload","package":"phobos","parentType":"","signature":"content_length_upload = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"starttransfer_time","package":"phobos","parentType":"","signature":"starttransfer_time = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"content_type","package":"phobos","parentType":"","signature":"content_type = 1_048_594","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"redirect_time","package":"phobos","parentType":"","signature":"redirect_time = 3_145_747","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"redirect_count","package":"phobos","parentType":"","signature":"redirect_count = 2_097_172","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"private_info","package":"phobos","parentType":"","signature":"private_info = 1_048_597","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"http_connectcode","package":"phobos","parentType":"","signature":"http_connectcode = 2_097_174","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"httpauth_avail","package":"phobos","parentType":"","signature":"httpauth_avail = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"proxyauth_avail","package":"phobos","parentType":"","signature":"proxyauth_avail = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"os_errno","package":"phobos","parentType":"","signature":"os_errno = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"num_connects","package":"phobos","parentType":"","signature":"num_connects = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl_engines","package":"phobos","parentType":"","signature":"ssl_engines = 4_194_331","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"cookielist","package":"phobos","parentType":"","signature":"cookielist = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"lastsocket","package":"phobos","parentType":"","signature":"lastsocket = 2_097_181","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ftp_entry_path","package":"phobos","parentType":"","signature":"ftp_entry_path = 1_048_606","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"redirect_url","package":"phobos","parentType":"","signature":"redirect_url = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"primary_ip","package":"phobos","parentType":"","signature":"primary_ip = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"appconnect_time","package":"phobos","parentType":"","signature":"appconnect_time = 3_145_761","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"certinfo","package":"phobos","parentType":"","signature":"certinfo = 4_194_338","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"condition_unmet","package":"phobos","parentType":"","signature":"condition_unmet = 2_097_187","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtsp_session_id","package":"phobos","parentType":"","signature":"rtsp_session_id = 1_048_612","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtsp_client_cseq","package":"phobos","parentType":"","signature":"rtsp_client_cseq = 2_097_189","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtsp_server_cseq","package":"phobos","parentType":"","signature":"rtsp_server_cseq = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"rtsp_cseq_recv","package":"phobos","parentType":"","signature":"rtsp_cseq_recv = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"primary_port","package":"phobos","parentType":"","signature":"primary_port = ","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"local_ip","package":"phobos","parentType":"","signature":"local_ip = 1_048_617","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"local_port","package":"phobos","parentType":"","signature":"local_port = 2_097_194","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"Fill in new entries below here!","kind":"enum_member","module":"etc.c.curl","name":"lastone","package":"phobos","parentType":"","signature":"lastone = 42","url":"/ddoc/phobos/etc/c/curl.html#CurlInfo"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLINFO","package":"phobos","parentType":"","signature":"CURLINFO = int","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlClosePolicy","package":"phobos","parentType":"","signature":"CurlClosePolicy","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"oldest","package":"phobos","parentType":"","signature":"oldest = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"least_recently_used","package":"phobos","parentType":"","signature":"least_recently_used = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"least_traffic","package":"phobos","parentType":"","signature":"least_traffic = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"slowest","package":"phobos","parentType":"","signature":"slowest = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"callback","package":"phobos","parentType":"","signature":"callback = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlClosePolicy"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_closepolicy","package":"phobos","parentType":"","signature":"curl_closepolicy = int","url":"/ddoc/phobos/etc/c/curl.html#curl_closepolicy"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlGlobal","package":"phobos","parentType":"","signature":"CurlGlobal","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl","package":"phobos","parentType":"","signature":"ssl = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"win32","package":"phobos","parentType":"","signature":"win32 = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"all","package":"phobos","parentType":"","signature":"all = (1 |  2)","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"nothing","package":"phobos","parentType":"","signature":"nothing = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"all","kind":"enum_member","module":"etc.c.curl","name":"default_","package":"phobos","parentType":"","signature":"default_ = (1 |  2)","url":"/ddoc/phobos/etc/c/curl.html#CurlGlobal"},{"doc":"Setup defines, protos etc for the sharing stuff. Different data locks for a single share","kind":"enum","module":"etc.c.curl","name":"CurlLockData","package":"phobos","parentType":"","signature":"CurlLockData","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"CURL_LOCK_DATA_SHARE is used internally to say that the locking is just made to change the internal state of the share itself.","kind":"enum_member","module":"etc.c.curl","name":"share","package":"phobos","parentType":"","signature":"share = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"cookie","package":"phobos","parentType":"","signature":"cookie = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"dns","package":"phobos","parentType":"","signature":"dns = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ssl_session","package":"phobos","parentType":"","signature":"ssl_session = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"connect","package":"phobos","parentType":"","signature":"connect = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockData"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_lock_data","package":"phobos","parentType":"","signature":"curl_lock_data = int","url":"/ddoc/phobos/etc/c/curl.html#curl_lock_data"},{"doc":"Different lock access types","kind":"enum","module":"etc.c.curl","name":"CurlLockAccess","package":"phobos","parentType":"","signature":"CurlLockAccess","url":"/ddoc/phobos/etc/c/curl.html#CurlLockAccess"},{"doc":"unspecified action","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockAccess"},{"doc":"for read perhaps","kind":"enum_member","module":"etc.c.curl","name":"shared_access","package":"phobos","parentType":"","signature":"shared_access = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockAccess"},{"doc":"for write perhaps","kind":"enum_member","module":"etc.c.curl","name":"single","package":"phobos","parentType":"","signature":"single = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockAccess"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlLockAccess"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_lock_access","package":"phobos","parentType":"","signature":"curl_lock_access = int","url":"/ddoc/phobos/etc/c/curl.html#curl_lock_access"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_lock_function","package":"phobos","parentType":"","signature":"curl_lock_function = void  function(CURL * handle,  curl_lock_data data,  curl_lock_access locktype,  void  * userptr)","url":"/ddoc/phobos/etc/c/curl.html#curl_lock_function"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_unlock_function","package":"phobos","parentType":"","signature":"curl_unlock_function = void  function(CURL * handle,  curl_lock_data data,  void  * userptr)","url":"/ddoc/phobos/etc/c/curl.html#curl_unlock_function"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLSH","package":"phobos","parentType":"","signature":"CURLSH = void","url":"/ddoc/phobos/etc/c/curl.html#CURLSH"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlShError","package":"phobos","parentType":"","signature":"CurlShError","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"all is fine","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"1","kind":"enum_member","module":"etc.c.curl","name":"bad_option","package":"phobos","parentType":"","signature":"bad_option = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"2","kind":"enum_member","module":"etc.c.curl","name":"in_use","package":"phobos","parentType":"","signature":"in_use = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"3","kind":"enum_member","module":"etc.c.curl","name":"invalid","package":"phobos","parentType":"","signature":"invalid = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"out of memory","kind":"enum_member","module":"etc.c.curl","name":"nomem","package":"phobos","parentType":"","signature":"nomem = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShError"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLSHcode","package":"phobos","parentType":"","signature":"CURLSHcode = int","url":"/ddoc/phobos/etc/c/curl.html#CURLSHcode"},{"doc":"pass in a user data pointer used in the lock/unlock callback functions","kind":"enum","module":"etc.c.curl","name":"CurlShOption","package":"phobos","parentType":"","signature":"CurlShOption","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"don't use","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"specify a data type to share","kind":"enum_member","module":"etc.c.curl","name":"share","package":"phobos","parentType":"","signature":"share = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"specify which data type to stop sharing","kind":"enum_member","module":"etc.c.curl","name":"unshare","package":"phobos","parentType":"","signature":"unshare = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"pass in a 'curl_lock_function' pointer","kind":"enum_member","module":"etc.c.curl","name":"lockfunc","package":"phobos","parentType":"","signature":"lockfunc = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"pass in a 'curl_unlock_function' pointer","kind":"enum_member","module":"etc.c.curl","name":"unlockfunc","package":"phobos","parentType":"","signature":"unlockfunc = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"pass in a user data pointer used in the lock/unlock callback functions","kind":"enum_member","module":"etc.c.curl","name":"userdata","package":"phobos","parentType":"","signature":"userdata = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"never use","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlShOption"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLSHoption","package":"phobos","parentType":"","signature":"CURLSHoption = int","url":"/ddoc/phobos/etc/c/curl.html#CURLSHoption"},{"doc":"Structures for querying information about the curl library at runtime.","kind":"enum","module":"etc.c.curl","name":"CurlVer","package":"phobos","parentType":"","signature":"CurlVer","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"first","package":"phobos","parentType":"","signature":"first = ","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"second","package":"phobos","parentType":"","signature":"second = ","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"third","package":"phobos","parentType":"","signature":"third = ","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"fourth","package":"phobos","parentType":"","signature":"fourth = ","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlVer"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLversion","package":"phobos","parentType":"","signature":"CURLversion = int","url":"/ddoc/phobos/etc/c/curl.html#CURLversion"},{"doc":"","kind":"struct","module":"etc.c.curl","name":"_N28","package":"phobos","parentType":"","signature":"_N28","url":"/ddoc/phobos/etc/c/curl.html#_N28"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"curl_version_info_data","package":"phobos","parentType":"","signature":"curl_version_info_data = _N28","url":"/ddoc/phobos/etc/c/curl.html#curl_version_info_data"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlVersion","package":"phobos","parentType":"","signature":"CurlVersion","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"IPv6-enabled","kind":"enum_member","module":"etc.c.curl","name":"ipv6","package":"phobos","parentType":"","signature":"ipv6 = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"kerberos auth is supported","kind":"enum_member","module":"etc.c.curl","name":"kerberos4","package":"phobos","parentType":"","signature":"kerberos4 = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"SSL options are present","kind":"enum_member","module":"etc.c.curl","name":"ssl","package":"phobos","parentType":"","signature":"ssl = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"libz features are present","kind":"enum_member","module":"etc.c.curl","name":"libz","package":"phobos","parentType":"","signature":"libz = 8","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"NTLM auth is supported","kind":"enum_member","module":"etc.c.curl","name":"ntlm","package":"phobos","parentType":"","signature":"ntlm = 16","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"Negotiate auth support","kind":"enum_member","module":"etc.c.curl","name":"gssnegotiate","package":"phobos","parentType":"","signature":"gssnegotiate = 32","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"built with debug capabilities","kind":"enum_member","module":"etc.c.curl","name":"dbg","package":"phobos","parentType":"","signature":"dbg = 64","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"asynchronous dns resolves","kind":"enum_member","module":"etc.c.curl","name":"asynchdns","package":"phobos","parentType":"","signature":"asynchdns = 128","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"SPNEGO auth","kind":"enum_member","module":"etc.c.curl","name":"spnego","package":"phobos","parentType":"","signature":"spnego = 256","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"supports files bigger than 2GB","kind":"enum_member","module":"etc.c.curl","name":"largefile","package":"phobos","parentType":"","signature":"largefile = 512","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"International Domain Names support","kind":"enum_member","module":"etc.c.curl","name":"idn","package":"phobos","parentType":"","signature":"idn = 1024","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"SSPI is supported","kind":"enum_member","module":"etc.c.curl","name":"sspi","package":"phobos","parentType":"","signature":"sspi = 2048","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"character conversions supported","kind":"enum_member","module":"etc.c.curl","name":"conv","package":"phobos","parentType":"","signature":"conv = 4096","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"debug memory tracking supported","kind":"enum_member","module":"etc.c.curl","name":"curldebug","package":"phobos","parentType":"","signature":"curldebug = 8192","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"TLS-SRP auth is supported","kind":"enum_member","module":"etc.c.curl","name":"tlsauth_srp","package":"phobos","parentType":"","signature":"tlsauth_srp = 16_384","url":"/ddoc/phobos/etc/c/curl.html#CurlVersion"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlPause","package":"phobos","parentType":"","signature":"CurlPause","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"recv","package":"phobos","parentType":"","signature":"recv = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"recv_cont","package":"phobos","parentType":"","signature":"recv_cont = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"send","package":"phobos","parentType":"","signature":"send = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"send_cont","package":"phobos","parentType":"","signature":"send_cont = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"all","package":"phobos","parentType":"","signature":"all = (1 |  4)","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"cont","package":"phobos","parentType":"","signature":"cont = (0 |  0)","url":"/ddoc/phobos/etc/c/curl.html#CurlPause"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLM","package":"phobos","parentType":"","signature":"CURLM = void","url":"/ddoc/phobos/etc/c/curl.html#CURLM"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlM","package":"phobos","parentType":"","signature":"CurlM","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"please call curl_multi_perform() or curl_multi_socket*() soon","kind":"enum_member","module":"etc.c.curl","name":"call_multi_perform","package":"phobos","parentType":"","signature":"call_multi_perform = - 1","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"ok","package":"phobos","parentType":"","signature":"ok = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"the passed-in handle is not a valid CURLM handle","kind":"enum_member","module":"etc.c.curl","name":"bad_handle","package":"phobos","parentType":"","signature":"bad_handle = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"an easy handle was not good/valid","kind":"enum_member","module":"etc.c.curl","name":"bad_easy_handle","package":"phobos","parentType":"","signature":"bad_easy_handle = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"if you ever get this, you're in deep sh*t","kind":"enum_member","module":"etc.c.curl","name":"out_of_memory","package":"phobos","parentType":"","signature":"out_of_memory = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"this is a libcurl bug","kind":"enum_member","module":"etc.c.curl","name":"internal_error","package":"phobos","parentType":"","signature":"internal_error = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"the passed in socket argument did not match","kind":"enum_member","module":"etc.c.curl","name":"bad_socket","package":"phobos","parentType":"","signature":"bad_socket = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"curl_multi_setopt() with unsupported option","kind":"enum_member","module":"etc.c.curl","name":"unknown_option","package":"phobos","parentType":"","signature":"unknown_option = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlM"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLMcode","package":"phobos","parentType":"","signature":"CURLMcode = int","url":"/ddoc/phobos/etc/c/curl.html#CURLMcode"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlMsg","package":"phobos","parentType":"","signature":"CurlMsg","url":"/ddoc/phobos/etc/c/curl.html#CurlMsg"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/etc/c/curl.html#CurlMsg"},{"doc":"This easy handle has completed. 'result' contains the CURLcode of the transfer","kind":"enum_member","module":"etc.c.curl","name":"done","package":"phobos","parentType":"","signature":"done = ","url":"/ddoc/phobos/etc/c/curl.html#CurlMsg"},{"doc":"no used","kind":"enum_member","module":"etc.c.curl","name":"last","package":"phobos","parentType":"","signature":"last = ","url":"/ddoc/phobos/etc/c/curl.html#CurlMsg"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLMSG","package":"phobos","parentType":"","signature":"CURLMSG = int","url":"/ddoc/phobos/etc/c/curl.html#CURLMSG"},{"doc":"","kind":"union","module":"etc.c.curl","name":"_N31","package":"phobos","parentType":"","signature":"_N31","url":"/ddoc/phobos/etc/c/curl.html#_N31"},{"doc":"","kind":"struct","module":"etc.c.curl","name":"CURLMsg","package":"phobos","parentType":"","signature":"CURLMsg","url":"/ddoc/phobos/etc/c/curl.html#CURLMsg"},{"doc":"Name:    curl_multi_fdset()","kind":"alias","module":"etc.c.curl","name":"fd_set","package":"phobos","parentType":"","signature":"fd_set = int","url":"/ddoc/phobos/etc/c/curl.html#fd_set"},{"doc":"Name:    curl_multi_socket() and curl_multi_socket_all()","kind":"enum","module":"etc.c.curl","name":"CurlPoll","package":"phobos","parentType":"","signature":"CurlPoll","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"jdrewsen - underscored in order not to clash with reserved D symbols","kind":"enum_member","module":"etc.c.curl","name":"none_","package":"phobos","parentType":"","signature":"none_ = 0","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"in_","package":"phobos","parentType":"","signature":"in_ = 1","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"out_","package":"phobos","parentType":"","signature":"out_ = 2","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"inout_","package":"phobos","parentType":"","signature":"inout_ = 3","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"remove_","package":"phobos","parentType":"","signature":"remove_ = 4","url":"/ddoc/phobos/etc/c/curl.html#CurlPoll"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURL_SOCKET_TIMEOUT","package":"phobos","parentType":"","signature":"CURL_SOCKET_TIMEOUT = CURL_SOCKET_BAD","url":"/ddoc/phobos/etc/c/curl.html#CURL_SOCKET_TIMEOUT"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlCSelect","package":"phobos","parentType":"","signature":"CurlCSelect","url":"/ddoc/phobos/etc/c/curl.html#CurlCSelect"},{"doc":"jdrewsen - underscored in order not to clash with reserved D symbols","kind":"enum_member","module":"etc.c.curl","name":"in_","package":"phobos","parentType":"","signature":"in_ = 0x01","url":"/ddoc/phobos/etc/c/curl.html#CurlCSelect"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"out_","package":"phobos","parentType":"","signature":"out_ = 0x02","url":"/ddoc/phobos/etc/c/curl.html#CurlCSelect"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"err_","package":"phobos","parentType":"","signature":"err_ = 0x04","url":"/ddoc/phobos/etc/c/curl.html#CurlCSelect"},{"doc":"private socket pointer","kind":"alias","module":"etc.c.curl","name":"curl_socket_callback","package":"phobos","parentType":"","signature":"curl_socket_callback = int  function(CURL * easy,            /** easy handle */\n                      curl_socket_t s,       /** socket */\n                      int  what,              /** see above */\n                      void  * userp,           /** private callback pointer */\n                      void  * socketp)","url":"/ddoc/phobos/etc/c/curl.html#curl_socket_callback"},{"doc":"Name:    curl_multi_timer_callback","kind":"alias","module":"etc.c.curl","name":"curl_multi_timer_callback","package":"phobos","parentType":"","signature":"curl_multi_timer_callback = int  function(CURLM * multi,          /** multi handle */\n                      c_long timeout_ms,     /** see above */\n                      void  * userp)","url":"/ddoc/phobos/etc/c/curl.html#curl_multi_timer_callback"},{"doc":"","kind":"enum","module":"etc.c.curl","name":"CurlMOption","package":"phobos","parentType":"","signature":"CurlMOption","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"This is the socket callback function pointer","kind":"enum_member","module":"etc.c.curl","name":"socketfunction","package":"phobos","parentType":"","signature":"socketfunction = 20_001","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"This is the argument passed to the socket callback","kind":"enum_member","module":"etc.c.curl","name":"socketdata","package":"phobos","parentType":"","signature":"socketdata = 10_002","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"set to 1 to enable pipelining for this multi handle","kind":"enum_member","module":"etc.c.curl","name":"pipelining","package":"phobos","parentType":"","signature":"pipelining = 3","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"This is the timer callback function pointer","kind":"enum_member","module":"etc.c.curl","name":"timerfunction","package":"phobos","parentType":"","signature":"timerfunction = 20_004","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"This is the argument passed to the timer callback","kind":"enum_member","module":"etc.c.curl","name":"timerdata","package":"phobos","parentType":"","signature":"timerdata = 10_005","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"maximum number of entries in the connection cache","kind":"enum_member","module":"etc.c.curl","name":"maxconnects","package":"phobos","parentType":"","signature":"maxconnects = 6","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"","kind":"enum_member","module":"etc.c.curl","name":"lastentry","package":"phobos","parentType":"","signature":"lastentry = ","url":"/ddoc/phobos/etc/c/curl.html#CurlMOption"},{"doc":"","kind":"alias","module":"etc.c.curl","name":"CURLMoption","package":"phobos","parentType":"","signature":"CURLMoption = int","url":"/ddoc/phobos/etc/c/curl.html#CURLMoption"},{"doc":"This is the global package copyright","kind":"variable","module":"etc.c.curl","name":"LIBCURL_COPYRIGHT","package":"phobos","parentType":"","signature":"LIBCURL_COPYRIGHT","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_COPYRIGHT"},{"doc":"This is the version number of the libcurl package from which this header file origins:","kind":"variable","module":"etc.c.curl","name":"LIBCURL_VERSION","package":"phobos","parentType":"","signature":"LIBCURL_VERSION","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_VERSION"},{"doc":"The numeric version number is also available \"in parts\" by using these constants","kind":"variable","module":"etc.c.curl","name":"LIBCURL_VERSION_MAJOR","package":"phobos","parentType":"","signature":"LIBCURL_VERSION_MAJOR","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_VERSION_MAJOR"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"LIBCURL_VERSION_MINOR","package":"phobos","parentType":"","signature":"LIBCURL_VERSION_MINOR","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_VERSION_MINOR"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"LIBCURL_VERSION_PATCH","package":"phobos","parentType":"","signature":"LIBCURL_VERSION_PATCH","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_VERSION_PATCH"},{"doc":"This is the numeric version of the libcurl version number, meant for easier parsing and comparions by programs. The LIBCURL_VERSION_NUM define will...","kind":"variable","module":"etc.c.curl","name":"LIBCURL_VERSION_NUM","package":"phobos","parentType":"","signature":"LIBCURL_VERSION_NUM","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_VERSION_NUM"},{"doc":"This is the date and time when the full source package was created. The timestamp is not stored in git, as the timestamp is properly set in the tar...","kind":"variable","module":"etc.c.curl","name":"LIBCURL_TIMESTAMP","package":"phobos","parentType":"","signature":"LIBCURL_TIMESTAMP","url":"/ddoc/phobos/etc/c/curl.html#LIBCURL_TIMESTAMP"},{"doc":"specified content is a file name","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_FILENAME","package":"phobos","parentType":"","signature":"HTTPPOST_FILENAME","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_FILENAME"},{"doc":"specified content is a file name","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_READFILE","package":"phobos","parentType":"","signature":"HTTPPOST_READFILE","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_READFILE"},{"doc":"name is only stored pointer do not free in formfree","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_PTRNAME","package":"phobos","parentType":"","signature":"HTTPPOST_PTRNAME","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_PTRNAME"},{"doc":"contents is only stored pointer do not free in formfree","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_PTRCONTENTS","package":"phobos","parentType":"","signature":"HTTPPOST_PTRCONTENTS","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_PTRCONTENTS"},{"doc":"upload file from buffer","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_BUFFER","package":"phobos","parentType":"","signature":"HTTPPOST_BUFFER","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_BUFFER"},{"doc":"upload file from pointer contents","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_PTRBUFFER","package":"phobos","parentType":"","signature":"HTTPPOST_PTRBUFFER","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_PTRBUFFER"},{"doc":"upload file contents by using the regular read callback to get the data and pass the given pointer as custom pointer","kind":"variable","module":"etc.c.curl","name":"HTTPPOST_CALLBACK","package":"phobos","parentType":"","signature":"HTTPPOST_CALLBACK","url":"/ddoc/phobos/etc/c/curl.html#HTTPPOST_CALLBACK"},{"doc":"Tests have proven that 20K is a very bad buffer size for uploads on Windows, while 16K for some odd reason performed a lot better. We do the ifndef...","kind":"variable","module":"etc.c.curl","name":"CURL_MAX_WRITE_SIZE","package":"phobos","parentType":"","signature":"CURL_MAX_WRITE_SIZE","url":"/ddoc/phobos/etc/c/curl.html#CURL_MAX_WRITE_SIZE"},{"doc":"The only reason to have a max limit for this is to avoid the risk of a bad server feeding libcurl with a never-ending header that will cause reallo...","kind":"variable","module":"etc.c.curl","name":"CURL_MAX_HTTP_HEADER","package":"phobos","parentType":"","signature":"CURL_MAX_HTTP_HEADER","url":"/ddoc/phobos/etc/c/curl.html#CURL_MAX_HTTP_HEADER"},{"doc":"This is a magic return code for the write callback that, when returned, will signal libcurl to pause receiving on the current transfer.","kind":"variable","module":"etc.c.curl","name":"CURL_WRITEFUNC_PAUSE","package":"phobos","parentType":"","signature":"CURL_WRITEFUNC_PAUSE","url":"/ddoc/phobos/etc/c/curl.html#CURL_WRITEFUNC_PAUSE"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURL_ERROR_SIZE","package":"phobos","parentType":"","signature":"CURL_ERROR_SIZE","url":"/ddoc/phobos/etc/c/curl.html#CURL_ERROR_SIZE"},{"doc":"long may be 32 or 64 bits, but we should never depend on anything else but 32","kind":"variable","module":"etc.c.curl","name":"CURLOPTTYPE_LONG","package":"phobos","parentType":"","signature":"CURLOPTTYPE_LONG","url":"/ddoc/phobos/etc/c/curl.html#CURLOPTTYPE_LONG"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPTTYPE_OBJECTPOINT","package":"phobos","parentType":"","signature":"CURLOPTTYPE_OBJECTPOINT","url":"/ddoc/phobos/etc/c/curl.html#CURLOPTTYPE_OBJECTPOINT"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPTTYPE_FUNCTIONPOINT","package":"phobos","parentType":"","signature":"CURLOPTTYPE_FUNCTIONPOINT","url":"/ddoc/phobos/etc/c/curl.html#CURLOPTTYPE_FUNCTIONPOINT"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPTTYPE_OFF_T","package":"phobos","parentType":"","signature":"CURLOPTTYPE_OFF_T","url":"/ddoc/phobos/etc/c/curl.html#CURLOPTTYPE_OFF_T"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLOPT_SERVER_RESPONSE_TIMEOUT","package":"phobos","parentType":"","signature":"CURLOPT_SERVER_RESPONSE_TIMEOUT","url":"/ddoc/phobos/etc/c/curl.html#CURLOPT_SERVER_RESPONSE_TIMEOUT"},{"doc":"three convenient \"aliases\" that follow the name scheme better","kind":"variable","module":"etc.c.curl","name":"CURLOPT_WRITEDATA","package":"phobos","parentType":"","signature":"CURLOPT_WRITEDATA","url":"/ddoc/phobos/etc/c/curl.html#CURLOPT_WRITEDATA"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPT_READDATA","package":"phobos","parentType":"","signature":"CURLOPT_READDATA","url":"/ddoc/phobos/etc/c/curl.html#CURLOPT_READDATA"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPT_HEADERDATA","package":"phobos","parentType":"","signature":"CURLOPT_HEADERDATA","url":"/ddoc/phobos/etc/c/curl.html#CURLOPT_HEADERDATA"},{"doc":"ditto","kind":"variable","module":"etc.c.curl","name":"CURLOPT_RTSPHEADER","package":"phobos","parentType":"","signature":"CURLOPT_RTSPHEADER","url":"/ddoc/phobos/etc/c/curl.html#CURLOPT_RTSPHEADER"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_STRING","package":"phobos","parentType":"","signature":"CURLINFO_STRING","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_STRING"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_LONG","package":"phobos","parentType":"","signature":"CURLINFO_LONG","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_LONG"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_DOUBLE","package":"phobos","parentType":"","signature":"CURLINFO_DOUBLE","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_SLIST","package":"phobos","parentType":"","signature":"CURLINFO_SLIST","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_SLIST"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_MASK","package":"phobos","parentType":"","signature":"CURLINFO_MASK","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_MASK"},{"doc":"","kind":"variable","module":"etc.c.curl","name":"CURLINFO_TYPEMASK","package":"phobos","parentType":"","signature":"CURLINFO_TYPEMASK","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_TYPEMASK"},{"doc":"CURLINFO_RESPONSE_CODE is the new name for the option previously known as CURLINFO_HTTP_CODE","kind":"variable","module":"etc.c.curl","name":"CURLINFO_HTTP_CODE","package":"phobos","parentType":"","signature":"CURLINFO_HTTP_CODE","url":"/ddoc/phobos/etc/c/curl.html#CURLINFO_HTTP_CODE"},{"doc":"The 'CURLVERSION_NOW' is the symbolic name meant to be used by basically all programs ever that want to get version information. It is meant to be ...","kind":"variable","module":"etc.c.curl","name":"CURLVERSION_NOW","package":"phobos","parentType":"","signature":"CURLVERSION_NOW","url":"/ddoc/phobos/etc/c/curl.html#CURLVERSION_NOW"},{"doc":"just to make code nicer when using curl_multi_socket() you can now check for CURLM_CALL_MULTI_SOCKET too in the same style it works for curl_multi_...","kind":"variable","module":"etc.c.curl","name":"CURLM_CALL_MULTI_SOCKET","package":"phobos","parentType":"","signature":"CURLM_CALL_MULTI_SOCKET","url":"/ddoc/phobos/etc/c/curl.html#CURLM_CALL_MULTI_SOCKET"},{"doc":"","kind":"module","module":"etc.c.odbc.odbc32","name":"etc.c.odbc.odbc32","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/odbc32.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocConnect(SQLHENV EnvironmentHandle,  SQLHDBC *  ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocEnv(SQLHENV *  EnvironmentHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle,  SQLHANDLE *  OutputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocStmt(SQLHDBC ConnectionHandle,  SQLHSTMT *  StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBindCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindCol(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLSMALLINT TargetType,  SQLPOINTER TargetValue,  SQLINTEGER BufferLength,  SQLINTEGER *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBindCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBindParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindParam(SQLHSTMT StatementHandle,  SQLUSMALLINT ParameterNumber,  SQLSMALLINT ValueType,  SQLSMALLINT ParameterType,  SQLUINTEGER LengthPrecision,  SQLSMALLINT ParameterScale,  SQLPOINTER ParameterValue,  SQLINTEGER *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBindParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLCancel","package":"phobos","parentType":"","signature":"SQLRETURN SQLCancel(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLCancel.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLCancelHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLCancelHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLCancelHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLCloseCursor","package":"phobos","parentType":"","signature":"SQLRETURN SQLCloseCursor(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLCloseCursor.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttribute","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttribute(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLUSMALLINT FieldIdentifier,  SQLPOINTER CharacterAttribute,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLength,  SQLPOINTER NumericAttribute)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttribute.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumns(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLCHAR *  ColumnName,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLCompleteAsync","package":"phobos","parentType":"","signature":"SQLRETURN SQLCompleteAsync(SQLSMALLINT HandleType,  SQLHANDLE Handle,  RETCODE *  AsyncRetCodePtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLCompleteAsync.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnect(SQLHDBC ConnectionHandle,  SQLCHAR *  ServerName,  SQLSMALLINT NameLength1,  SQLCHAR *  UserName,  SQLSMALLINT NameLength2,  SQLCHAR *  Authentication,  SQLSMALLINT NameLength3)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLCopyDesc","package":"phobos","parentType":"","signature":"SQLRETURN SQLCopyDesc(SQLHDESC SourceDescHandle,  SQLHDESC TargetDescHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLCopyDesc.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDataSources","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSources(SQLHENV EnvironmentHandle,  SQLUSMALLINT Direction,  SQLCHAR *  ServerName,  SQLSMALLINT BufferLength1,  SQLSMALLINT *  NameLength1Ptr,  SQLCHAR *  Description,  SQLSMALLINT BufferLength2,  SQLSMALLINT *  NameLength2Ptr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDataSources.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDescribeCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeCol(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLCHAR *  ColumnName,  SQLSMALLINT BufferLength,  SQLSMALLINT *  NameLength,  SQLSMALLINT *  DataType,  SQLUINTEGER *  ColumnSize,  SQLSMALLINT *  DecimalDigits,  SQLSMALLINT *  Nullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDescribeCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDisconnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDisconnect(SQLHDBC ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDisconnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLEndTran","package":"phobos","parentType":"","signature":"SQLRETURN SQLEndTran(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT CompletionType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLEndTran.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLError","package":"phobos","parentType":"","signature":"SQLRETURN SQLError(SQLHENV EnvironmentHandle,  SQLHDBC ConnectionHandle,  SQLHSTMT StatementHandle,  SQLCHAR *  Sqlstate,  SQLINTEGER *  NativeError,  SQLCHAR *  MessageText,  SQLSMALLINT BufferLength,  SQLSMALLINT *  TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLError.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLExecDirect","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirect(SQLHSTMT StatementHandle,  SQLCHAR *  StatementText,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLExecDirect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLExecute","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecute(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLExecute.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLFetch(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFetchScroll","package":"phobos","parentType":"","signature":"SQLRETURN SQLFetchScroll(SQLHSTMT StatementHandle,  SQLSMALLINT FetchOrientation,  SQLINTEGER FetchOffset)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFetchScroll.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFreeConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeConnect(SQLHDBC ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFreeConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFreeEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeEnv(SQLHENV EnvironmentHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFreeEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFreeHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeHandle(SQLSMALLINT HandleType,  SQLHANDLE Handle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFreeHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLFreeStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeStmt(SQLHSTMT StatementHandle,  SQLUSMALLINT Option)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLFreeStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttr(SQLHDBC ConnectionHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOption(SQLHDBC ConnectionHandle,  SQLUSMALLINT Option,  SQLPOINTER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorName(SQLHSTMT StatementHandle,  SQLCHAR *  CursorName,  SQLSMALLINT BufferLength,  SQLSMALLINT *  NameLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetData","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetData(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLSMALLINT TargetType,  SQLPOINTER TargetValue,  SQLINTEGER BufferLength,  SQLINTEGER *  StrLen_or_IndPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescField","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescField(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRec(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLCHAR *  Name,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLengthPtr,  SQLSMALLINT *  TypePtr,  SQLSMALLINT *  SubTypePtr,  SQLINTEGER *  LengthPtr,  SQLSMALLINT *  PrecisionPtr,  SQLSMALLINT *  ScalePtr,  SQLSMALLINT *  NullablePtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagField","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagField(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT RecNumber,  SQLSMALLINT DiagIdentifier,  SQLPOINTER DiagInfo,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRec(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT RecNumber,  SQLCHAR *  Sqlstate,  SQLINTEGER *  NativeError,  SQLCHAR *  MessageText,  SQLSMALLINT BufferLength,  SQLSMALLINT *  TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetEnvAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetEnvAttr(SQLHENV EnvironmentHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetEnvAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetFunctions","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetFunctions(SQLHDBC ConnectionHandle,  SQLUSMALLINT FunctionId,  SQLUSMALLINT *  Supported)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetFunctions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle,  SQLUSMALLINT InfoType,  SQLPOINTER InfoValue,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetStmtAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttr(SQLHSTMT StatementHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetStmtAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtOption(SQLHSTMT StatementHandle,  SQLUSMALLINT Option,  SQLPOINTER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetTypeInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfo(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetTypeInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNumResultCols","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumResultCols(SQLHSTMT StatementHandle,  SQLSMALLINT *  ColumnCount)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNumResultCols.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLParamData","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamData(SQLHSTMT StatementHandle,  SQLPOINTER *  Value)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLParamData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrepare","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepare(SQLHSTMT StatementHandle,  SQLCHAR *  StatementText,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrepare.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPutData","package":"phobos","parentType":"","signature":"SQLRETURN SQLPutData(SQLHSTMT StatementHandle,  SQLPOINTER Data,  SQLINTEGER StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPutData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLRowCount","package":"phobos","parentType":"","signature":"SQLRETURN SQLRowCount(SQLHSTMT StatementHandle,  SQLINTEGER *  RowCount)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLRowCount.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttr(SQLHDBC ConnectionHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOption(SQLHDBC ConnectionHandle,  SQLUSMALLINT Option,  SQLUINTEGER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorName(SQLHSTMT StatementHandle,  SQLCHAR *  CursorName,  SQLSMALLINT NameLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetDescField","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescField(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetDescField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetDescRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescRec(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT Type,  SQLSMALLINT SubType,  SQLINTEGER Length,  SQLSMALLINT Precision,  SQLSMALLINT Scale,  SQLPOINTER Data,  SQLINTEGER *  StringLength,  SQLINTEGER *  Indicator)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetDescRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetEnvAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetEnvAttr(SQLHENV EnvironmentHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetEnvAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetParam(SQLHSTMT StatementHandle,  SQLUSMALLINT ParameterNumber,  SQLSMALLINT ValueType,  SQLSMALLINT ParameterType,  SQLUINTEGER LengthPrecision,  SQLSMALLINT ParameterScale,  SQLPOINTER ParameterValue,  SQLINTEGER *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetStmtAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtAttr(SQLHSTMT StatementHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetStmtAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtOption(SQLHSTMT StatementHandle,  SQLUSMALLINT Option,  SQLUINTEGER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSpecialColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumns(SQLHSTMT StatementHandle,  SQLUSMALLINT IdentifierType,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLUSMALLINT Scope,  SQLUSMALLINT Nullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSpecialColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStatistics","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatistics(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLUSMALLINT Unique,  SQLUSMALLINT Reserved)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStatistics.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTables","package":"phobos","parentType":"","signature":"SQLRETURN SQLTables(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLCHAR *  TableType,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTables.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTransact","package":"phobos","parentType":"","signature":"SQLRETURN SQLTransact(SQLHENV EnvironmentHandle,  SQLHDBC ConnectionHandle,  SQLUSMALLINT CompletionType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTransact.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDriverConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnect(SQLHDBC hdbc,  SQLHWND hwnd,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDriverConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBrowseConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnect(SQLHDBC hdbc,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBrowseConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBulkOperations","package":"phobos","parentType":"","signature":"SQLRETURN SQLBulkOperations(SQLHSTMT StatementHandle,  SQLSMALLINT Operation)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBulkOperations.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttributes","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributes(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLINTEGER *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttributes.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumnPrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivileges(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumnPrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDescribeParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeParam(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT *  pfSqlType,  SQLUINTEGER *  pcbParamDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDescribeParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLExtendedFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLExtendedFetch(SQLHSTMT hstmt,  SQLUSMALLINT fFetchType,  SQLINTEGER irow,  SQLUINTEGER *  pcrow,  SQLUSMALLINT *  rgfRowStatus)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLExtendedFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLForeignKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeys(SQLHSTMT hstmt,  SQLCHAR *  szPkCatalogName,  SQLSMALLINT cchPkCatalogName,  SQLCHAR *  szPkSchemaName,  SQLSMALLINT cchPkSchemaName,  SQLCHAR *  szPkTableName,  SQLSMALLINT cchPkTableName,  SQLCHAR *  szFkCatalogName,  SQLSMALLINT cchFkCatalogName,  SQLCHAR *  szFkSchemaName,  SQLSMALLINT cchFkSchemaName,  SQLCHAR *  szFkTableName,  SQLSMALLINT cchFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLForeignKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLMoreResults","package":"phobos","parentType":"","signature":"SQLRETURN SQLMoreResults(SQLHSTMT hstmt)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLMoreResults.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNativeSql","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSql(SQLHDBC hdbc,  SQLCHAR *  szSqlStrIn,  SQLINTEGER cchSqlStrIn,  SQLCHAR *  szSqlStr,  SQLINTEGER cchSqlStrMax,  SQLINTEGER *  pcbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNativeSql.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNumParams","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumParams(SQLHSTMT hstmt,  SQLSMALLINT *  pcpar)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNumParams.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLParamOptions","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamOptions(SQLHSTMT hstmt,  SQLUINTEGER crow,  SQLUINTEGER *  pirow)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLParamOptions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrimaryKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeys(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrimaryKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProcedureColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumns(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cchProcName,  SQLCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProcedureColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProcedures","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedures(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cchProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProcedures.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetPos","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetPos(SQLHSTMT hstmt,  SQLUSMALLINT irow,  SQLUSMALLINT fOption,  SQLUSMALLINT fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetPos.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTablePrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivileges(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTablePrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDrivers","package":"phobos","parentType":"","signature":"SQLRETURN SQLDrivers(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDriverDesc,  SQLSMALLINT cchDriverDescMax,  SQLSMALLINT *  pcchDriverDesc,  SQLCHAR *  szDriverAttributes,  SQLSMALLINT cchDrvrAttrMax,  SQLSMALLINT *  pcchDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDrivers.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBindParameter","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindParameter(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT fParamType,  SQLSMALLINT fCType,  SQLSMALLINT fSqlType,  SQLUINTEGER cbColDef,  SQLSMALLINT ibScale,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBindParameter.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle,  SQLHANDLE *  OutputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetNestedHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetNestedHandle(SQLHSTMT ParentStatementHandle,  SQLUSMALLINT Col_or_Param_Num,  SQLHSTMT *  OutputChildStatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetNestedHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypes","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypes(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TypeName,  SQLSMALLINT NameLength3)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypes.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypeColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumns(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TypeName,  SQLSMALLINT NameLength3,  SQLCHAR *  ColumnName,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypeColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNextColumn","package":"phobos","parentType":"","signature":"SQLRETURN SQLNextColumn(SQLHSTMT StatementHandle,  SQLUSMALLINT *  ColumnCount)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNextColumn.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLAllocHandleStd","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandleStd(SQLSMALLINT fHandleType,  SQLHANDLE hInput,  SQLHANDLE *  phOutput)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLAllocHandleStd.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttributeW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeW(SQLHSTMT hstmt,  SQLUSMALLINT iCol,  SQLUSMALLINT iField,  SQLPOINTER pCharAttr,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbCharAttr,  SQLPOINTER pNumAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttributeW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttributesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesW(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLINTEGER *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttributesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectW(SQLHDBC hdbc,  SQLWCHAR *  szDSN,  SQLSMALLINT cchDSN,  SQLWCHAR *  szUID,  SQLSMALLINT cchUID,  SQLWCHAR *  szAuthStr,  SQLSMALLINT cchAuthStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDescribeColW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColW(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLWCHAR *  szColName,  SQLSMALLINT cchColNameMax,  SQLSMALLINT *  pcchColName,  SQLSMALLINT *  pfSqlType,  SQLUINTEGER *  pcbColDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDescribeColW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLErrorW","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorW(SQLHENV henv,  SQLHDBC hdbc,  SQLHSTMT hstmt,  SQLWCHAR *  wszSqlState,  SQLINTEGER *  pfNativeError,  SQLWCHAR *  wszErrorMsg,  SQLSMALLINT cchErrorMsgMax,  SQLSMALLINT *  pcchErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLErrorW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLExecDirectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectW(SQLHSTMT hstmt,  SQLWCHAR *  szSqlStr,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLExecDirectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrW(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameW(SQLHSTMT hstmt,  SQLWCHAR *  szCursor,  SQLSMALLINT cchCursorMax,  SQLSMALLINT *  pcchCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetDescFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescFieldW(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetDescFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescFieldW(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLSMALLINT iField,  SQLPOINTER rgbValue,  SQLINTEGER cbBufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescRecW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRecW(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLWCHAR *  szName,  SQLSMALLINT cchNameMax,  SQLSMALLINT *  pcchName,  SQLSMALLINT *  pfType,  SQLSMALLINT *  pfSubType,  SQLINTEGER *  pLength,  SQLSMALLINT *  pPrecision,  SQLSMALLINT *  pScale,  SQLSMALLINT *  pNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescRecW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagFieldW(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLSMALLINT fDiagField,  SQLPOINTER rgbDiagInfo,  SQLSMALLINT cbBufferLength,  SQLSMALLINT *  pcbStringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagRecW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRecW(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLWCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLWCHAR *  szErrorMsg,  SQLSMALLINT cchErrorMsgMax,  SQLSMALLINT *  pcchErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagRecW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrepareW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareW(SQLHSTMT hstmt,  SQLWCHAR *  szSqlStr,  SQLINTEGER cchSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrepareW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrW(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameW(SQLHSTMT hstmt,  SQLWCHAR *  szCursor,  SQLSMALLINT cchCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionW(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoW(SQLHDBC hdbc,  SQLUSMALLINT fInfoType,  SQLPOINTER rgbInfoValue,  SQLSMALLINT cbInfoValueMax,  SQLSMALLINT *  pcbInfoValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetTypeInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoW(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetTypeInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionW(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLUINTEGER vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSpecialColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsW(SQLHSTMT hstmt,  SQLUSMALLINT fColType,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLUSMALLINT fScope,  SQLUSMALLINT fNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSpecialColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStatisticsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLUSMALLINT fUnique,  SQLUSMALLINT fAccuracy)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStatisticsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTablesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szTableType,  SQLSMALLINT cchTableType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTablesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDataSourcesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesW(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLWCHAR *  szDSN,  SQLSMALLINT cchDSNMax,  SQLSMALLINT *  pcchDSN,  SQLWCHAR *  wszDescription,  SQLSMALLINT cchDescriptionMax,  SQLSMALLINT *  pcchDescription)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDataSourcesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDriverConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectW(SQLHDBC hdbc,  SQLHWND hwnd,  SQLWCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLWCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDriverConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBrowseConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectW(SQLHDBC hdbc,  SQLWCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLWCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBrowseConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumnPrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumnPrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetStmtAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttrW(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetStmtAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetStmtAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtAttrW(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetStmtAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLForeignKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysW(SQLHSTMT hstmt,  SQLWCHAR *  szPkCatalogName,  SQLSMALLINT cchPkCatalogName,  SQLWCHAR *  szPkSchemaName,  SQLSMALLINT cchPkSchemaName,  SQLWCHAR *  szPkTableName,  SQLSMALLINT cchPkTableName,  SQLWCHAR *  szFkCatalogName,  SQLSMALLINT cchFkCatalogName,  SQLWCHAR *  szFkSchemaName,  SQLSMALLINT cchFkSchemaName,  SQLWCHAR *  szFkTableName,  SQLSMALLINT cchFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLForeignKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNativeSqlW","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlW(SQLHDBC hdbc,  SQLWCHAR *  szSqlStrIn,  SQLINTEGER cchSqlStrIn,  SQLWCHAR *  szSqlStr,  SQLINTEGER cchSqlStrMax,  SQLINTEGER *  pcchSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNativeSqlW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrimaryKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrimaryKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProcedureColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szProcName,  SQLSMALLINT cchProcName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProcedureColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProceduresW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szProcName,  SQLSMALLINT cchProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProceduresW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTablePrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTablePrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDriversW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversW(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLWCHAR *  szDriverDesc,  SQLSMALLINT cchDriverDescMax,  SQLSMALLINT *  pcchDriverDesc,  SQLWCHAR *  szDriverAttributes,  SQLSMALLINT cchDrvrAttrMax,  SQLSMALLINT *  pcchDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDriversW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTypeName,  SQLSMALLINT cchTypeName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypeColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTypeName,  SQLSMALLINT cchTypeName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypeColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttributeA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeA(SQLHSTMT hstmt,  SQLSMALLINT iCol,  SQLSMALLINT iField,  SQLPOINTER pCharAttr,  SQLSMALLINT cbCharAttrMax,  SQLSMALLINT *  pcbCharAttr,  SQLPOINTER pNumAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttributeA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColAttributesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesA(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLINTEGER *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColAttributesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectA(SQLHDBC hdbc,  SQLCHAR *  szDSN,  SQLSMALLINT cbDSN,  SQLCHAR *  szUID,  SQLSMALLINT cbUID,  SQLCHAR *  szAuthStr,  SQLSMALLINT cbAuthStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDescribeColA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColA(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLCHAR *  szColName,  SQLSMALLINT cbColNameMax,  SQLSMALLINT *  pcbColName,  SQLSMALLINT *  pfSqlType,  SQLUINTEGER *  pcbColDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDescribeColA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLErrorA","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorA(SQLHENV henv,  SQLHDBC hdbc,  SQLHSTMT hstmt,  SQLCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLCHAR *  szErrorMsg,  SQLSMALLINT cbErrorMsgMax,  SQLSMALLINT *  pcbErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLErrorA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLExecDirectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectA(SQLHSTMT hstmt,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLExecDirectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrA(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameA(SQLHSTMT hstmt,  SQLCHAR *  szCursor,  SQLSMALLINT cbCursorMax,  SQLSMALLINT *  pcbCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescFieldA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescFieldA(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLSMALLINT iField,  SQLPOINTER rgbValue,  SQLINTEGER cbBufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescFieldA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDescRecA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRecA(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLCHAR *  szName,  SQLSMALLINT cbNameMax,  SQLSMALLINT *  pcbName,  SQLSMALLINT *  pfType,  SQLSMALLINT *  pfSubType,  SQLINTEGER *  pLength,  SQLSMALLINT *  pPrecision,  SQLSMALLINT *  pScale,  SQLSMALLINT *  pNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDescRecA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagFieldA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagFieldA(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLSMALLINT fDiagField,  SQLPOINTER rgbDiagInfo,  SQLSMALLINT cbDiagInfoMax,  SQLSMALLINT *  pcbDiagInfo)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagFieldA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetDiagRecA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRecA(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLCHAR *  szErrorMsg,  SQLSMALLINT cbErrorMsgMax,  SQLSMALLINT *  pcbErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetDiagRecA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetStmtAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttrA(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetStmtAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetTypeInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoA(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetTypeInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrepareA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareA(SQLHSTMT hstmt,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrepareA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrA(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameA(SQLHSTMT hstmt,  SQLCHAR *  szCursor,  SQLSMALLINT cbCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionA(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoA(SQLHDBC hdbc,  SQLUSMALLINT fInfoType,  SQLPOINTER rgbInfoValue,  SQLSMALLINT cbInfoValueMax,  SQLSMALLINT *  pcbInfoValue)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLGetStmtOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtOptionA(SQLHSTMT hstmt,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLGetStmtOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionA(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLUINTEGER vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSetStmtOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtOptionA(SQLHSTMT hstmt,  SQLUSMALLINT fOption,  SQLUINTEGER vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSetStmtOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLSpecialColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsA(SQLHSTMT hstmt,  SQLUSMALLINT fColType,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLUSMALLINT fScope,  SQLUSMALLINT fNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLSpecialColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStatisticsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLUSMALLINT fUnique,  SQLUSMALLINT fAccuracy)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStatisticsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTablesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szTableType,  SQLSMALLINT cbTableType)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTablesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDataSourcesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesA(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDSN,  SQLSMALLINT cbDSNMax,  SQLSMALLINT *  pcbDSN,  SQLCHAR *  szDescription,  SQLSMALLINT cbDescriptionMax,  SQLSMALLINT *  pcbDescription)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDataSourcesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDriverConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectA(SQLHDBC hdbc,  SQLHWND hwnd,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cbConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cbConnStrOutMax,  SQLSMALLINT *  pcbConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDriverConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLBrowseConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectA(SQLHDBC hdbc,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cbConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cbConnStrOutMax,  SQLSMALLINT *  pcbConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLBrowseConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLColumnPrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLColumnPrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDescribeParamA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeParamA(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT *  pfSqlType,  SQLUINTEGER *  pcbParamDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDescribeParamA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLForeignKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysA(SQLHSTMT hstmt,  SQLCHAR *  szPkCatalogName,  SQLSMALLINT cbPkCatalogName,  SQLCHAR *  szPkSchemaName,  SQLSMALLINT cbPkSchemaName,  SQLCHAR *  szPkTableName,  SQLSMALLINT cbPkTableName,  SQLCHAR *  szFkCatalogName,  SQLSMALLINT cbFkCatalogName,  SQLCHAR *  szFkSchemaName,  SQLSMALLINT cbFkSchemaName,  SQLCHAR *  szFkTableName,  SQLSMALLINT cbFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLForeignKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLNativeSqlA","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlA(SQLHDBC hdbc,  SQLCHAR *  szSqlStrIn,  SQLINTEGER cbSqlStrIn,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStrMax,  SQLINTEGER *  pcbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLNativeSqlA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLPrimaryKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLPrimaryKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProcedureColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cbProcName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProcedureColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLProceduresA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cbProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLProceduresA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLTablePrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLTablePrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLDriversA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversA(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDriverDesc,  SQLSMALLINT cbDriverDescMax,  SQLSMALLINT *  pcbDriverDesc,  SQLCHAR *  szDriverAttributes,  SQLSMALLINT cbDrvrAttrMax,  SQLSMALLINT *  pcbDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLDriversA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTypeName,  SQLSMALLINT cbTypeName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQLStructuredTypeColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTypeName,  SQLSMALLINT cbTypeName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQLStructuredTypeColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NULL_DATA","package":"phobos","parentType":"","signature":"auto SQL_NULL_DATA()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NULL_DATA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DATA_AT_EXEC","package":"phobos","parentType":"","signature":"auto SQL_DATA_AT_EXEC()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DATA_AT_EXEC.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ERROR","package":"phobos","parentType":"","signature":"auto SQL_ERROR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ERROR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INVALID_HANDLE","package":"phobos","parentType":"","signature":"auto SQL_INVALID_HANDLE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INVALID_HANDLE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_SUCCEEDED","package":"phobos","parentType":"","signature":"auto SQL_SUCCEEDED(__MP1)(__MP1 rc)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_SUCCEEDED.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NTS","package":"phobos","parentType":"","signature":"auto SQL_NTS()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NTS.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NTSL","package":"phobos","parentType":"","signature":"auto SQL_NTSL()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NTSL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CURSOR_SCROLLABLE","package":"phobos","parentType":"","signature":"auto SQL_ATTR_CURSOR_SCROLLABLE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ATTR_CURSOR_SCROLLABLE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CURSOR_SENSITIVITY","package":"phobos","parentType":"","signature":"auto SQL_ATTR_CURSOR_SENSITIVITY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ATTR_CURSOR_SENSITIVITY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_INDEX","package":"phobos","parentType":"","signature":"auto SQL_DIAG_CREATE_INDEX()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DIAG_CREATE_INDEX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_INDEX","package":"phobos","parentType":"","signature":"auto SQL_DIAG_DROP_INDEX()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DIAG_DROP_INDEX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ARD_TYPE","package":"phobos","parentType":"","signature":"auto SQL_ARD_TYPE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ARD_TYPE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_APD_TYPE","package":"phobos","parentType":"","signature":"auto SQL_APD_TYPE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_APD_TYPE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IS_POINTER","package":"phobos","parentType":"","signature":"auto SQL_IS_POINTER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IS_POINTER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IS_UINTEGER","package":"phobos","parentType":"","signature":"auto SQL_IS_UINTEGER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IS_UINTEGER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IS_INTEGER","package":"phobos","parentType":"","signature":"auto SQL_IS_INTEGER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IS_INTEGER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IS_USMALLINT","package":"phobos","parentType":"","signature":"auto SQL_IS_USMALLINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IS_USMALLINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IS_SMALLINT","package":"phobos","parentType":"","signature":"auto SQL_IS_SMALLINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IS_SMALLINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CURSOR_ROW_COUNT","package":"phobos","parentType":"","signature":"auto SQL_DIAG_CURSOR_ROW_COUNT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DIAG_CURSOR_ROW_COUNT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_ROW_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_DIAG_ROW_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DIAG_ROW_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_COLUMN_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_DIAG_COLUMN_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DIAG_COLUMN_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LONGVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_LONGVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LONGVARCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_BINARY","package":"phobos","parentType":"","signature":"auto SQL_BINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_BINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_VARBINARY","package":"phobos","parentType":"","signature":"auto SQL_VARBINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_VARBINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LONGVARBINARY","package":"phobos","parentType":"","signature":"auto SQL_LONGVARBINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LONGVARBINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_BIGINT","package":"phobos","parentType":"","signature":"auto SQL_BIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_BIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_TINYINT","package":"phobos","parentType":"","signature":"auto SQL_TINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_TINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_BIT","package":"phobos","parentType":"","signature":"auto SQL_BIT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_BIT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_GUID","package":"phobos","parentType":"","signature":"auto SQL_GUID()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_GUID.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_YEAR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_YEAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_YEAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_MONTH","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MONTH()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_MONTH.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_DAY","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_DAY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_HOUR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_HOUR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_YEAR_TO_MONTH()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_YEAR_TO_MONTH.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_HOUR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_DAY_TO_HOUR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_DAY_TO_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_DAY_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR_TO_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_HOUR_TO_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_HOUR_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MINUTE_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_INTERVAL_MINUTE_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_SIGNED_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_SIGNED_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_SIGNED_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_UNSIGNED_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_UNSIGNED_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_UNSIGNED_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_SBIGINT","package":"phobos","parentType":"","signature":"auto SQL_C_SBIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_SBIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_UBIGINT","package":"phobos","parentType":"","signature":"auto SQL_C_UBIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_UBIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_SLONG","package":"phobos","parentType":"","signature":"auto SQL_C_SLONG()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_SLONG.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_SSHORT","package":"phobos","parentType":"","signature":"auto SQL_C_SSHORT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_SSHORT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_STINYINT","package":"phobos","parentType":"","signature":"auto SQL_C_STINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_STINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_ULONG","package":"phobos","parentType":"","signature":"auto SQL_C_ULONG()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_ULONG.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_USHORT","package":"phobos","parentType":"","signature":"auto SQL_C_USHORT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_USHORT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_C_UTINYINT","package":"phobos","parentType":"","signature":"auto SQL_C_UTINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_C_UTINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NO_ROW_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_NO_ROW_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NO_ROW_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NO_COLUMN_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_NO_COLUMN_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NO_COLUMN_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ROW_NUMBER_UNKNOWN","package":"phobos","parentType":"","signature":"auto SQL_ROW_NUMBER_UNKNOWN()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ROW_NUMBER_UNKNOWN.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_NUMBER_UNKNOWN","package":"phobos","parentType":"","signature":"auto SQL_COLUMN_NUMBER_UNKNOWN()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_COLUMN_NUMBER_UNKNOWN.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DEFAULT_PARAM","package":"phobos","parentType":"","signature":"auto SQL_DEFAULT_PARAM()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DEFAULT_PARAM.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IGNORE","package":"phobos","parentType":"","signature":"auto SQL_IGNORE()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IGNORE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LEN_DATA_AT_EXEC_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_LEN_DATA_AT_EXEC_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LEN_DATA_AT_EXEC_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LEN_DATA_AT_EXEC","package":"phobos","parentType":"","signature":"auto SQL_LEN_DATA_AT_EXEC(__MP2)(__MP2 length)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LEN_DATA_AT_EXEC.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LEN_BINARY_ATTR_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_LEN_BINARY_ATTR_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LEN_BINARY_ATTR_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LEN_BINARY_ATTR","package":"phobos","parentType":"","signature":"auto SQL_LEN_BINARY_ATTR(__MP3)(__MP3 length)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LEN_BINARY_ATTR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_SETPARAM_VALUE_MAX","package":"phobos","parentType":"","signature":"auto SQL_SETPARAM_VALUE_MAX()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_SETPARAM_VALUE_MAX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_EXCEPTION","package":"phobos","parentType":"","signature":"auto SQL_TYPE_EXCEPTION()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_TYPE_EXCEPTION.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_NO_TOTAL","package":"phobos","parentType":"","signature":"auto SQL_NO_TOTAL()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_NO_TOTAL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_IK_ALL","package":"phobos","parentType":"","signature":"auto SQL_IK_ALL()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_IK_ALL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_SINGLE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_SINGLE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_INSERT_SINGLE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_MULTIPLE_ROWID","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_MULTIPLE_ROWID()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_INSERT_MULTIPLE_ROWID.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_MULTIPLE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_MULTIPLE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_INSERT_MULTIPLE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_SELECT_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_SELECT_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_INSERT_SELECT_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_UPDATE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_UPDATE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_UPDATE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_DELETE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_DELETE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_DELETE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_RC_SELECT_INTO_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_SELECT_INTO_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_RC_SELECT_INTO_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_POSITION_TO","package":"phobos","parentType":"","signature":"auto SQL_POSITION_TO(__MP4,  __MP5)(__MP4 hstmt,  __MP5 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_POSITION_TO.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_LOCK_RECORD","package":"phobos","parentType":"","signature":"auto SQL_LOCK_RECORD(__MP6,  __MP7,  __MP8)(__MP6 hstmt,  __MP7 irow,  __MP8 fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_LOCK_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_REFRESH_RECORD","package":"phobos","parentType":"","signature":"auto SQL_REFRESH_RECORD(__MP9,  __MP10,  __MP11)(__MP9 hstmt,  __MP10 irow,  __MP11 fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_REFRESH_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_UPDATE_RECORD","package":"phobos","parentType":"","signature":"auto SQL_UPDATE_RECORD(__MP12,  __MP13)(__MP12 hstmt,  __MP13 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_UPDATE_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_DELETE_RECORD","package":"phobos","parentType":"","signature":"auto SQL_DELETE_RECORD(__MP14,  __MP15)(__MP14 hstmt,  __MP15 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_DELETE_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_ADD_RECORD","package":"phobos","parentType":"","signature":"auto SQL_ADD_RECORD(__MP16,  __MP17)(__MP16 hstmt,  __MP17 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_ADD_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_WCHAR","package":"phobos","parentType":"","signature":"auto SQL_WCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_WCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_WVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_WVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_WVARCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc32","name":"SQL_WLONGVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_WLONGVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc32/SQL_WLONGVARCHAR.html"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLCHAR","package":"phobos","parentType":"","signature":"SQLCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLSCHAR","package":"phobos","parentType":"","signature":"SQLSCHAR = byte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLSCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLDATE","package":"phobos","parentType":"","signature":"SQLDATE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLDATE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLDECIMAL","package":"phobos","parentType":"","signature":"SQLDECIMAL = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLDECIMAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLDOUBLE","package":"phobos","parentType":"","signature":"SQLDOUBLE = double","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLDOUBLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLFLOAT","package":"phobos","parentType":"","signature":"SQLFLOAT = double","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLFLOAT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLINTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTEGER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLUINTEGER","package":"phobos","parentType":"","signature":"SQLUINTEGER = uint","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLUINTEGER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLNUMERIC","package":"phobos","parentType":"","signature":"SQLNUMERIC = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLNUMERIC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLPOINTER","package":"phobos","parentType":"","signature":"SQLPOINTER = void *","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLPOINTER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLREAL","package":"phobos","parentType":"","signature":"SQLREAL = float","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLREAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLSMALLINT","package":"phobos","parentType":"","signature":"SQLSMALLINT = short","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLSMALLINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLUSMALLINT","package":"phobos","parentType":"","signature":"SQLUSMALLINT = ushort","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLUSMALLINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLTIME","package":"phobos","parentType":"","signature":"SQLTIME = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLTIME"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLTIMESTAMP","package":"phobos","parentType":"","signature":"SQLTIMESTAMP = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLTIMESTAMP"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLVARCHAR","package":"phobos","parentType":"","signature":"SQLVARCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLVARCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLTIMEWITHTIMEZONE","package":"phobos","parentType":"","signature":"SQLTIMEWITHTIMEZONE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLTIMEWITHTIMEZONE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLTIMESTAMPWITHTIMEZONE","package":"phobos","parentType":"","signature":"SQLTIMESTAMPWITHTIMEZONE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLTIMESTAMPWITHTIMEZONE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLRETURN","package":"phobos","parentType":"","signature":"SQLRETURN = short","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLRETURN"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHANDLE","package":"phobos","parentType":"","signature":"SQLHANDLE = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHANDLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHENV","package":"phobos","parentType":"","signature":"SQLHENV = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHENV"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHDBC","package":"phobos","parentType":"","signature":"SQLHDBC = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHDBC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHSTMT","package":"phobos","parentType":"","signature":"SQLHSTMT = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHSTMT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHDESC","package":"phobos","parentType":"","signature":"SQLHDESC = int","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHDESC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"RETCODE","package":"phobos","parentType":"","signature":"RETCODE = short","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#RETCODE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLHWND","package":"phobos","parentType":"","signature":"SQLHWND = void *","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLHWND"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagDATE_STRUCT","package":"phobos","parentType":"","signature":"tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagDATE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"DATE_STRUCT","package":"phobos","parentType":"","signature":"DATE_STRUCT = tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#DATE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_DATE_STRUCT","package":"phobos","parentType":"","signature":"SQL_DATE_STRUCT = tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATE_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagTIME_STRUCT","package":"phobos","parentType":"","signature":"tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagTIME_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"TIME_STRUCT","package":"phobos","parentType":"","signature":"TIME_STRUCT = tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#TIME_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_TIME_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIME_STRUCT = tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIME_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagTIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagTIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"TIMESTAMP_STRUCT = tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#TIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP_STRUCT = tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMESTAMP_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagTIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagTIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"TIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"TIME_WITH_TIMEZONE_STRUCT = tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#TIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_TIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIME_WITH_TIMEZONE_STRUCT = tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagTIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagTIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"TIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"TIMESTAMP_WITH_TIMEZONE_STRUCT = tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#TIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT = tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"enum","module":"etc.c.odbc.odbc32","name":"SQLINTERVAL","package":"phobos","parentType":"","signature":"SQLINTERVAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_YEAR","package":"phobos","parentType":"","signature":"SQL_IS_YEAR = 1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_MONTH = 2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY","package":"phobos","parentType":"","signature":"SQL_IS_DAY = 3","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_HOUR = 4","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE = 5","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_SECOND = 6","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = 7","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = 8","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = 9","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = 10","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = 11","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = 12","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc32","name":"SQL_IS_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = 13","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLINTERVAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_YEAR","package":"phobos","parentType":"","signature":"SQL_IS_YEAR = SQLINTERVAL.SQL_IS_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_YEAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_MONTH = SQLINTERVAL.SQL_IS_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY","package":"phobos","parentType":"","signature":"SQL_IS_DAY = SQLINTERVAL.SQL_IS_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_DAY"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_HOUR = SQLINTERVAL.SQL_IS_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_HOUR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE = SQLINTERVAL.SQL_IS_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_SECOND = SQLINTERVAL.SQL_IS_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = SQLINTERVAL.SQL_IS_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_YEAR_TO_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = SQLINTERVAL.SQL_IS_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_DAY_TO_HOUR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = SQLINTERVAL.SQL_IS_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_DAY_TO_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = SQLINTERVAL.SQL_IS_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_DAY_TO_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = SQLINTERVAL.SQL_IS_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_HOUR_TO_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = SQLINTERVAL.SQL_IS_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_HOUR_TO_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_IS_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = SQLINTERVAL.SQL_IS_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_MINUTE_TO_SECOND"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagSQL_YEAR_MONTH","package":"phobos","parentType":"","signature":"tagSQL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagSQL_YEAR_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_YEAR_MONTH_STRUCT","package":"phobos","parentType":"","signature":"SQL_YEAR_MONTH_STRUCT = tagSQL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_YEAR_MONTH_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagSQL_DAY_SECOND","package":"phobos","parentType":"","signature":"tagSQL_DAY_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagSQL_DAY_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_DAY_SECOND_STRUCT","package":"phobos","parentType":"","signature":"SQL_DAY_SECOND_STRUCT = tagSQL_DAY_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DAY_SECOND_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagSQL_INTERVAL_STRUCT","package":"phobos","parentType":"","signature":"tagSQL_INTERVAL_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagSQL_INTERVAL_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL_STRUCT","package":"phobos","parentType":"","signature":"SQL_INTERVAL_STRUCT = tagSQL_INTERVAL_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INTERVAL_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLBIGINT","package":"phobos","parentType":"","signature":"SQLBIGINT = long","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLBIGINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLUBIGINT","package":"phobos","parentType":"","signature":"SQLUBIGINT = ulong","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLUBIGINT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagSQL_NUMERIC_STRUCT","package":"phobos","parentType":"","signature":"tagSQL_NUMERIC_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagSQL_NUMERIC_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQL_NUMERIC_STRUCT","package":"phobos","parentType":"","signature":"SQL_NUMERIC_STRUCT = tagSQL_NUMERIC_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NUMERIC_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc32","name":"tagSQLGUID","package":"phobos","parentType":"","signature":"tagSQLGUID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#tagSQLGUID"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLGUID","package":"phobos","parentType":"","signature":"SQLGUID = tagSQLGUID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLGUID"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"BOOKMARK","package":"phobos","parentType":"","signature":"BOOKMARK = uint","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#BOOKMARK"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLWCHAR","package":"phobos","parentType":"","signature":"SQLWCHAR = ushort","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLWCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLTCHAR","package":"phobos","parentType":"","signature":"SQLTCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLTCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc32","name":"SQLSTATE","package":"phobos","parentType":"","signature":"SQLSTATE = ubyte[SQL_SQLSTATE_SIZE +  1]","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQLSTATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"ODBCVER","package":"phobos","parentType":"","signature":"SQLINTEGER ODBCVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#ODBCVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_NUMERIC_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_NUMERIC_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_NUMERIC_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NO_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NO_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_DATA_AVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_DATA_AVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_DATA_AVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STILL_EXECUTING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STILL_EXECUTING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STILL_EXECUTING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NEED_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NEED_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NEED_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_MESSAGE_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_MESSAGE_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_MESSAGE_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATE_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATE_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATE_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIMESTAMP_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMESTAMP_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMESTAMP_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_HANDLE_ENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_ENV","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_HANDLE_ENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_HANDLE_DBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_DBC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_HANDLE_DBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_HANDLE_STMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_STMT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_HANDLE_STMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_HANDLE_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_HANDLE_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_OUTPUT_NTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_OUTPUT_NTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_OUTPUT_NTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_AUTO_IPD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_AUTO_IPD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_AUTO_IPD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_METADATA_ID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_METADATA_ID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_METADATA_ID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_APP_ROW_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APP_ROW_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_APP_ROW_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_APP_PARAM_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APP_PARAM_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_APP_PARAM_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_IMP_ROW_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_IMP_ROW_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_IMP_ROW_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_IMP_PARAM_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_IMP_PARAM_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_IMP_PARAM_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NONSCROLLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NONSCROLLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NONSCROLLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCROLLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCROLLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_OCTET_LENGTH_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_OCTET_LENGTH_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_OCTET_LENGTH_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_DATETIME_INTERVAL_CODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATETIME_INTERVAL_CODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_DATETIME_INTERVAL_CODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_INDICATOR_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_INDICATOR_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_INDICATOR_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_DATA_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATA_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_DATA_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_UNNAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_UNNAMED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_UNNAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ALLOC_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ALLOC_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_CHARACTER_SET_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_CHARACTER_SET_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_CHARACTER_SET_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_CHARACTER_SET_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_CHARACTER_SET_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_CHARACTER_SET_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_COLLATION_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_COLLATION_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_COLLATION_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_COLLATION_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_COLLATION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_COLLATION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_USER_DEFINED_TYPE_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_USER_DEFINED_TYPE_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_USER_DEFINED_TYPE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_USER_DEFINED_TYPE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_USER_DEFINED_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_USER_DEFINED_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_RETURNCODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_RETURNCODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_RETURNCODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_NUMBER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_NUMBER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_NUMBER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_ROW_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ROW_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_ROW_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_SQLSTATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SQLSTATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_SQLSTATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_NATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_NATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_NATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_MESSAGE_TEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_MESSAGE_TEXT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_MESSAGE_TEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DYNAMIC_FUNCTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_FUNCTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DYNAMIC_FUNCTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CLASS_ORIGIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CLASS_ORIGIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CLASS_ORIGIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_SUBCLASS_ORIGIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SUBCLASS_ORIGIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_SUBCLASS_ORIGIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CONNECTION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CONNECTION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CONNECTION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_SERVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SERVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_SERVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_FUNCTION_CODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DYNAMIC_FUNCTION_CODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_ALTER_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ALTER_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_ALTER_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_ALTER_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ALTER_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_ALTER_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CALL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DELETE_WHERE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DELETE_WHERE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DELETE_WHERE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_DELETE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DYNAMIC_DELETE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_UPDATE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_DYNAMIC_UPDATE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_GRANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_GRANT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_GRANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_REVOKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_REVOKE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_REVOKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_SELECT_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SELECT_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_SELECT_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_UNKNOWN_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_UNKNOWN_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_UNKNOWN_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DIAG_UPDATE_WHERE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_UPDATE_WHERE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DIAG_UPDATE_WHERE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNKNOWN_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNKNOWN_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNKNOWN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATETIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATETIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATETIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UDT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UDT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UDT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ARRAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ARRAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ARRAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MULTISET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULTISET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MULTISET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_TIME_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIME_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_TIME_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_TIMESTAMP_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIMESTAMP_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_TIMESTAMP_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNSPECIFIED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNSPECIFIED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNSPECIFIED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INSENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INSENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INSENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALL_TYPES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALL_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALL_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_TIME_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIME_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_TIME_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_TIMESTAMP_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIMESTAMP_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_TIMESTAMP_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NO_NULLS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_NULLS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NO_NULLS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULLABLE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULLABLE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULLABLE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PRED_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PRED_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PRED_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PRED_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PRED_BASIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_BASIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PRED_BASIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NAMED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNNAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNNAMED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNNAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ALLOC_AUTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_AUTO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ALLOC_AUTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ALLOC_USER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_USER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ALLOC_USER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNBIND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNBIND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNBIND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RESET_PARAMS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESET_PARAMS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RESET_PARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_LAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROLLBACK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROLLBACK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROLLBACK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_HENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_HDBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HDBC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_HDESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HDESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_HDESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_HANDLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HANDLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_HANDLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCOPE_CURROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_CURROW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCOPE_CURROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCOPE_TRANSACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCOPE_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCOPE_SESSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_SESSION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCOPE_SESSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PC_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PC_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PC_NON_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_NON_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PC_NON_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PC_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PC_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_IDENTIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_IDENTIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_IDENTIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_CLUSTERED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_CLUSTERED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_CLUSTERED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_HASHED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_HASHED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_HASHED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_OTHER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_OTHER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_OTHER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_DRIVER_CONNECTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_DRIVER_CONNECTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_DRIVER_CONNECTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_CONCURRENT_ACTIVITIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CONCURRENT_ACTIVITIES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_CONCURRENT_ACTIVITIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATA_SOURCE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_SOURCE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATA_SOURCE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_DIRECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_DIRECTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_DIRECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SERVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SERVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SERVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SEARCH_PATTERN_ESCAPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SEARCH_PATTERN_ESCAPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SEARCH_PATTERN_ESCAPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DBMS_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DBMS_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DBMS_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DBMS_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DBMS_VER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DBMS_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACCESSIBLE_TABLES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESSIBLE_TABLES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACCESSIBLE_TABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACCESSIBLE_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESSIBLE_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACCESSIBLE_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_COMMIT_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_COMMIT_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_COMMIT_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATA_SOURCE_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_SOURCE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATA_SOURCE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DEFAULT_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DEFAULT_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DEFAULT_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IDENTIFIER_QUOTE_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IDENTIFIER_QUOTE_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IDENTIFIER_QUOTE_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMN_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMN_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMN_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_CURSOR_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CURSOR_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_CURSOR_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_SCHEMA_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_SCHEMA_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_SCHEMA_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_CATALOG_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CATALOG_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_CATALOG_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_TABLE_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_TABLE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_TABLE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCROLL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCROLL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_USER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_USER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_USER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_ISOLATION_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_ISOLATION_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INTEGRITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTEGRITY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INTEGRITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GETDATA_EXTENSIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GETDATA_EXTENSIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GETDATA_EXTENSIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NULL_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NULL_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALTER_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALTER_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALTER_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ORDER_BY_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ORDER_BY_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SPECIAL_CHARACTERS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPECIAL_CHARACTERS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SPECIAL_CHARACTERS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMNS_IN_GROUP_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMNS_IN_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMNS_IN_ORDER_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_ORDER_BY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_COLUMNS_IN_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_COLUMNS_IN_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_INDEX_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_INDEX_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_INDEX_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_ROW_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROW_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_ROW_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_STATEMENT_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_STATEMENT_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_STATEMENT_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_TABLES_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_TABLES_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_USER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_USER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_USER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_CAPABILITIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_CAPABILITIES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_CAPABILITIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_XOPEN_CLI_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_XOPEN_CLI_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_XOPEN_CLI_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_SENSITIVITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_SENSITIVITY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_SENSITIVITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESCRIBE_PARAMETER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESCRIBE_PARAMETER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESCRIBE_PARAMETER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CATALOG_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CATALOG_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CATALOG_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLLATION_SEQ","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLLATION_SEQ","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLLATION_SEQ"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_IDENTIFIER_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_IDENTIFIER_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_IDENTIFIER_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AM_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AM_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AM_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AM_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AM_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AM_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CB_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CB_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CB_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CB_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CB_PRESERVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CB_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_LAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_ANY_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_ANY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_ANY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_ANY_ORDER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_ANY_ORDER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_ANY_ORDER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IC_UPPER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_UPPER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IC_UPPER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IC_LOWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_LOWER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IC_LOWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IC_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IC_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IC_MIXED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_MIXED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IC_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_LEFT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_LEFT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_LEFT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_RIGHT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_RIGHT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_RIGHT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_NESTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_NESTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_NESTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_NOT_ORDERED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_NOT_ORDERED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_NOT_ORDERED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_INNER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_INNER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_INNER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OJ_ALL_COMPARISON_OPS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_ALL_COMPARISON_OPS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OJ_ALL_COMPARISON_OPS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCCO_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCCO_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCCO_LOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_LOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCCO_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCCO_OPT_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_OPT_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCCO_OPT_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCCO_OPT_VALUES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_OPT_VALUES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCCO_OPT_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TC_DML","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DML","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TC_DML"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TC_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TC_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TC_DDL_COMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DDL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TC_DDL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TC_DDL_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DDL_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TC_DDL_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_READ_UNCOMMITTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_READ_UNCOMMITTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_READ_COMMITTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_READ_COMMITTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_READ_COMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_REPEATABLE_READ","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_REPEATABLE_READ","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_SERIALIZABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_SERIALIZABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_SERIALIZABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NC_HIGH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_HIGH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NC_HIGH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NC_LOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_LOW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NC_LOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SPEC_MAJOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPEC_MAJOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SPEC_MAJOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SPEC_MINOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPEC_MINOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SPEC_MINOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SPEC_STRING","package":"phobos","parentType":"","signature":"SQL_SPEC_STRING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SPEC_STRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQLSTATE_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQLSTATE_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQLSTATE_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_DSN_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_DSN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_DSN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_OPTION_STRING_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_OPTION_STRING_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_OPTION_STRING_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATA_AVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_AVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATA_AVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_METADATA_CHANGED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_METADATA_CHANGED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_METADATA_CHANGED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MORE_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MORE_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MORE_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_HANDLE_SENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_SENV","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_HANDLE_SENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ODBC_VERSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ODBC_VERSION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ODBC_VERSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CONNECTION_POOLING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_POOLING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_CONNECTION_POOLING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CP_MATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CP_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_CP_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_APPLICATION_KEY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APPLICATION_KEY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_APPLICATION_KEY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_ONE_PER_DRIVER","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_ONE_PER_DRIVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_ONE_PER_DRIVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_ONE_PER_HENV","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_ONE_PER_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_ONE_PER_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_DRIVER_AWARE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_DRIVER_AWARE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_DRIVER_AWARE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_STRICT_MATCH","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_STRICT_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_STRICT_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CP_RELAXED_MATCH","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_RELAXED_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CP_RELAXED_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OV_ODBC2","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OV_ODBC2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OV_ODBC3","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC3","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OV_ODBC3"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OV_ODBC3_80","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC3_80","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OV_ODBC3_80"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OV_ODBC4","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC4","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OV_ODBC4"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACCESS_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESS_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACCESS_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AUTOCOMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AUTOCOMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AUTOCOMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOGIN_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOGIN_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOGIN_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OPT_TRACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OPT_TRACE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OPT_TRACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OPT_TRACEFILE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OPT_TRACEFILE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OPT_TRACEFILE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TRANSLATE_DLL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRANSLATE_DLL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TRANSLATE_DLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TRANSLATE_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRANSLATE_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TRANSLATE_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURRENT_QUALIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURRENT_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURRENT_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_CURSORS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_CURSORS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_CURSORS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUIET_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUIET_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUIET_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PACKET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PACKET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PACKET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CONNECTION_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_CONNECTION_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_DISCONNECT_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_DISCONNECT_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_DISCONNECT_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ENLIST_IN_DTC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENLIST_IN_DTC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ENLIST_IN_DTC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ENLIST_IN_XA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENLIST_IN_XA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ENLIST_IN_XA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CONNECTION_DEAD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_DEAD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_CONNECTION_DEAD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ANSI_APP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ANSI_APP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ANSI_APP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_RESET_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_RESET_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_RESET_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ASYNC_DBC_EVENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_DBC_EVENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ASYNC_DBC_EVENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_CREDENTIALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CREDENTIALS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_CREDENTIALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_REFRESH_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_REFRESH_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_REFRESH_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MODE_READ_WRITE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MODE_READ_WRITE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MODE_READ_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MODE_READ_ONLY","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MODE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MODE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AUTOCOMMIT_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_AUTOCOMMIT_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AUTOCOMMIT_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AUTOCOMMIT_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_AUTOCOMMIT_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AUTOCOMMIT_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOGIN_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_LOGIN_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOGIN_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OPT_TRACE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OPT_TRACE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OPT_TRACE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OPT_TRACE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OPT_TRACE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OPT_TRACE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OPT_TRACE_FILE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_FILE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OPT_TRACE_FILE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CUR_USE_IF_NEEDED","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_IF_NEEDED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CUR_USE_IF_NEEDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CUR_USE_ODBC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_ODBC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CUR_USE_ODBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CUR_USE_DRIVER","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_DRIVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CUR_USE_DRIVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DB_RETURN_TO_POOL","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_DB_RETURN_TO_POOL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DB_RETURN_TO_POOL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DB_DISCONNECT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_DB_DISCONNECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DB_DISCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DTC_DONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_DONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DTC_DONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CD_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CD_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CD_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CD_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CD_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CD_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AA_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AA_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AA_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AA_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AA_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AA_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RESET_CONNECTION_YES","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RESET_CONNECTION_YES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RESET_CONNECTION_YES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_DBC_ENABLE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_DBC_ENABLE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_DBC_ENABLE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_DBC_ENABLE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_DBC_ENABLE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_DBC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_REFRESH_NOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_NOW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_REFRESH_NOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_REFRESH_AUTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_AUTO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_REFRESH_AUTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_REFRESH_MANUAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_MANUAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_REFRESH_MANUAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUERY_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUERY_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUERY_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_ROWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROWS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_ROWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NOSCAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NOSCAN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NOSCAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_ENABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_ENABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_ENABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_KEYSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_KEYSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROWSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROWSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROWSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SIMULATE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SIMULATE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SIMULATE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RETRIEVE_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETRIEVE_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RETRIEVE_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_USE_BOOKMARKS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_USE_BOOKMARKS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_USE_BOOKMARKS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GET_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GET_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GET_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_NUMBER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_NUMBER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_NUMBER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ENABLE_AUTO_IPD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENABLE_AUTO_IPD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ENABLE_AUTO_IPD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_FETCH_BOOKMARK_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_FETCH_BOOKMARK_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_FETCH_BOOKMARK_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAM_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAM_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAM_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAM_OPERATION_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_OPERATION_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAM_OPERATION_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAM_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAM_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAMS_PROCESSED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAMS_PROCESSED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAMS_PROCESSED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_PARAMSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAMSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_PARAMSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ROW_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ROW_OPERATION_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_OPERATION_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ROW_OPERATION_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ROW_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ROW_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ROWS_FETCHED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROWS_FETCHED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ROWS_FETCHED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ROW_ARRAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_ARRAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ROW_ARRAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_ASYNC_STMT_EVENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_STMT_EVENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_ASYNC_STMT_EVENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_SAMPLE_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_SAMPLE_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_SAMPLE_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_DYNAMIC_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_DYNAMIC_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_DYNAMIC_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TE_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TE_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TE_CONTINUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_CONTINUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TE_CONTINUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TE_REPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_REPORT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TE_REPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LE_CONTINUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LE_CONTINUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LE_CONTINUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LE_REPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LE_REPORT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LE_REPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_BIND_BY_COLUMN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_PARAM_BIND_BY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUERY_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_QUERY_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUERY_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_ROWS_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MAX_ROWS_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_ROWS_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NOSCAN_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_NOSCAN_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NOSCAN_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NOSCAN_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_NOSCAN_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NOSCAN_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_LENGTH_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MAX_LENGTH_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_LENGTH_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_ENABLE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_ENABLE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_ENABLE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_ENABLE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_ENABLE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BIND_BY_COLUMN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_BIND_BY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCUR_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCUR_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCUR_LOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_LOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCUR_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCUR_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCUR_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCUR_VALUES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_VALUES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCUR_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_DYNAMIC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_STATIC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_STATIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROWSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ROWSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROWSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_KEYSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_KEYSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_KEYSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_NON_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_NON_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_NON_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_TRY_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_TRY_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RD_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RD_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RD_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RD_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RD_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RD_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UB_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UB_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UB_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_ON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UB_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UB_VARIABLE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_VARIABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UB_VARIABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ARRAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ARRAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ARRAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ARRAY_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ARRAY_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ARRAY_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_BASE_COLUMN_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BASE_COLUMN_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_BASE_COLUMN_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_BASE_TABLE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BASE_TABLE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_BASE_TABLE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATETIME_INTERVAL_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_DATETIME_INTERVAL_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_LITERAL_PREFIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LITERAL_PREFIX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_LITERAL_PREFIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_LITERAL_SUFFIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LITERAL_SUFFIX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_LITERAL_SUFFIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_LOCAL_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LOCAL_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_LOCAL_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_MAXIMUM_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MAXIMUM_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_MAXIMUM_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_MINIMUM_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MINIMUM_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_MINIMUM_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_NUM_PREC_RADIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NUM_PREC_RADIX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_NUM_PREC_RADIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_PARAMETER_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_PARAMETER_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_PARAMETER_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ROWS_PROCESSED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ROWS_PROCESSED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ROWS_PROCESSED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DESC_MIME_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MIME_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DESC_MIME_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INTERVAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTERVAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INTERVAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_YEAR_TO_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_DAY_TO_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_DAY_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_DAY_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_HOUR_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_HOUR_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CODE_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CODE_MINUTE_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_C_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_C_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_C_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TYPE_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TYPE_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_C_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_C_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_C_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_SQL_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_SQL_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_SQL_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_DESC_FIELD_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_DESC_FIELD_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_DESC_FIELD_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_DIAG_FIELD_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_DIAG_FIELD_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_DIAG_FIELD_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_INFO_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_INFO_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_INFO_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_CONN_ATTR_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_CONN_ATTR_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_CONN_ATTR_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_STMT_ATTR_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_STMT_ATTR_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_STMT_ATTR_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_DISPLAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_DISPLAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_DISPLAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_UNSIGNED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_UNSIGNED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_UNSIGNED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_MONEY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_MONEY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_MONEY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_UPDATABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_UPDATABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_UPDATABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_AUTO_INCREMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_AUTO_INCREMENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_AUTO_INCREMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_CASE_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_CASE_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_SEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_TABLE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TABLE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_TABLE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_OWNER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_OWNER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_OWNER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_QUALIFIER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_QUALIFIER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_QUALIFIER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_LABEL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_LABEL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_LABEL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_READONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_READONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_READONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_WRITE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_WRITE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ATTR_READWRITE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_READWRITE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ATTR_READWRITE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNSEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNSEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNSEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LIKE_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIKE_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LIKE_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALL_EXCEPT_LIKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALL_EXCEPT_LIKE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALL_EXCEPT_LIKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INFO_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INFO_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INFO_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACTIVE_CONNECTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_CONNECTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACTIVE_CONNECTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACTIVE_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACTIVE_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_HDBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HDBC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_HENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_VER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_API_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_API_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_API_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_SAG_CLI_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SAG_CLI_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_SAG_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_SQL_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SQL_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONCAT_NULL_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCAT_NULL_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONCAT_NULL_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_ROLLBACK_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CURSOR_ROLLBACK_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_EXPRESSIONS_IN_ORDERBY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_EXPRESSIONS_IN_ORDERBY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_EXPRESSIONS_IN_ORDERBY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_OWNER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_OWNER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_OWNER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_PROCEDURE_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_PROCEDURE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_PROCEDURE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_QUALIFIER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_QUALIFIER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_QUALIFIER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MULT_RESULT_SETS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULT_RESULT_SETS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MULT_RESULT_SETS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MULTIPLE_ACTIVE_TXN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULTIPLE_ACTIVE_TXN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MULTIPLE_ACTIVE_TXN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OUTER_JOINS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OUTER_JOINS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OUTER_JOINS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OWNER_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OWNER_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OWNER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PROCEDURE_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PROCEDURE_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PROCEDURE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUALIFIER_NAME_SEPARATOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_NAME_SEPARATOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUALIFIER_NAME_SEPARATOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUALIFIER_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUALIFIER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCROLL_OPTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLL_OPTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCROLL_OPTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TABLE_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TABLE_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TABLE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NUMERIC_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NUMERIC_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NUMERIC_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SYSTEM_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SYSTEM_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SYSTEM_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIMEDATE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMEDATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_BIGINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_BIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_TINYINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_VARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_SQL_OPT_IEF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SQL_OPT_IEF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_SQL_OPT_IEF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CORRELATION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CORRELATION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CORRELATION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NON_NULLABLE_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NON_NULLABLE_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NON_NULLABLE_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_HLIB","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HLIB","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_HLIB"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_ODBC_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOCK_TYPES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOCK_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_OPERATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_OPERATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_OPERATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POSITIONED_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POSITIONED_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POSITIONED_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BOOKMARK_PERSISTENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BOOKMARK_PERSISTENCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BOOKMARK_PERSISTENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STATIC_SENSITIVITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_SENSITIVITY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STATIC_SENSITIVITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FILE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FILE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_COLUMN_ALIAS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_ALIAS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_COLUMN_ALIAS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GROUP_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_KEYWORDS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_KEYWORDS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OWNER_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OWNER_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OWNER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUALIFIER_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUALIFIER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUOTED_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUOTED_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUOTED_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SUBQUERIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UNION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROW_SIZE_INCLUDES_LONG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_ROW_SIZE_INCLUDES_LONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_CHAR_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CHAR_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_CHAR_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIMEDATE_ADD_INTERVALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_ADD_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMEDATE_ADD_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TIMEDATE_DIFF_INTERVALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_DIFF_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TIMEDATE_DIFF_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NEED_LONG_DATA_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NEED_LONG_DATA_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NEED_LONG_DATA_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_BINARY_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_BINARY_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_BINARY_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LIKE_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIKE_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LIKE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUALIFIER_LOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_LOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUALIFIER_LOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ACTIVE_ENVIRONMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_ENVIRONMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ACTIVE_ENVIRONMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALTER_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALTER_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALTER_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DATETIME_LITERALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATETIME_LITERALS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DATETIME_LITERALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BATCH_ROW_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BATCH_ROW_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BATCH_ROW_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BATCH_SUPPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BATCH_SUPPORT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BATCH_SUPPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_WCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_INTERVAL_DAY_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTERVAL_DAY_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_INTERVAL_DAY_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTERVAL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_INTERVAL_YEAR_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_WLONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WLONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_WVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_WVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_HDESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HDESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_HDESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DYNAMIC_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DYNAMIC_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DYNAMIC_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DYNAMIC_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INDEX_KEYWORDS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INDEX_KEYWORDS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INFO_SCHEMA_VIEWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INFO_SCHEMA_VIEWS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INFO_SCHEMA_VIEWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_KEYSET_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_KEYSET_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_MAX_ASYNC_CONCURRENT_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ODBC_INTERFACE_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_INTERFACE_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ODBC_INTERFACE_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_ARRAY_ROW_COUNTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ARRAY_ROW_COUNTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_ARRAY_ROW_COUNTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_ARRAY_SELECTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ARRAY_SELECTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_ARRAY_SELECTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_DATETIME_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_DATETIME_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_DATETIME_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_FOREIGN_KEY_DELETE_RULE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_FOREIGN_KEY_DELETE_RULE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_FOREIGN_KEY_UPDATE_RULE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_GRANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_GRANT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_GRANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_NUMERIC_VALUE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_PREDICATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_PREDICATES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_PREDICATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_RELATIONAL_JOIN_OPERATORS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_RELATIONAL_JOIN_OPERATORS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_REVOKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_REVOKE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_REVOKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_ROW_VALUE_CONSTRUCTOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_ROW_VALUE_CONSTRUCTOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQL92_VALUE_EXPRESSIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_VALUE_EXPRESSIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQL92_VALUE_EXPRESSIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STANDARD_CLI_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STANDARD_CLI_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STANDARD_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STATIC_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STATIC_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_STATIC_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_STATIC_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AGGREGATE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AGGREGATE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AGGREGATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DDL_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DDL_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DDL_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DM_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DM_VER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DM_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INSERT_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INSERT_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INSERT_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CONVERT_GUID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_GUID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CONVERT_GUID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCHEMA_INFERENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCHEMA_INFERENCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCHEMA_INFERENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BINARY_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BINARY_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BINARY_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISO_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISO_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISO_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISO_BINARY_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISO_BINARY_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISO_BINARY_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LIMIT_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIMIT_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LIMIT_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NATIVE_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NATIVE_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NATIVE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RETURN_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETURN_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RETURN_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FORMAT_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORMAT_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FORMAT_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_DBC_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_DBC_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_AWARE_POOLING_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_NOTIFICATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_NOTIFICATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_NOTIFICATION_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_NOTIFICATION_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_NOTIFICATION_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DTC_TRANSITION_COST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_TRANSITION_COST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DTC_TRANSITION_COST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_COLUMN_SINGLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_SINGLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_COLUMN_SINGLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_COLUMN_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_COLUMN_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_SET_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_SET_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_SET_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_COLUMN_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_COLUMN_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_COLUMN_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_COLUMN_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_ADD_TABLE_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_TABLE_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_ADD_TABLE_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AT_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_VARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_BIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_TINYINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_BIGINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_INTERVAL_YEAR_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTERVAL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_INTERVAL_YEAR_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_INTERVAL_DAY_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTERVAL_DAY_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_INTERVAL_DAY_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_WCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_WLONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WLONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_WVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_WVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CVT_GUID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_GUID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CVT_GUID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_CVT_CONVERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_CVT_CONVERT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_CVT_CONVERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_CVT_CAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_CVT_CAST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_CVT_CAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_CONCAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CONCAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_CONCAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LEFT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LEFT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LEFT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LTRIM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LTRIM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LOCATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LOCATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LOCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LCASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LCASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_REPEAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_REPEAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_REPEAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_REPLACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_REPLACE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_REPLACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_RIGHT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_RIGHT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_RIGHT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_RTRIM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_RTRIM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_RTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_SUBSTRING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SUBSTRING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_SUBSTRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_UCASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_UCASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_UCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_ASCII","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_ASCII","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_ASCII"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_DIFFERENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_DIFFERENCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_DIFFERENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_LOCATE_2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LOCATE_2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_LOCATE_2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_SOUNDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SOUNDEX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_SOUNDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_SPACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SPACE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_SPACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_BIT_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_BIT_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_BIT_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_CHAR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHAR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_CHAR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_CHARACTER_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHARACTER_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_CHARACTER_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_STR_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_STR_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_CONVERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_CONVERT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_CONVERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_LOWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_LOWER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_LOWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_UPPER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_UPPER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_UPPER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_SUBSTRING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_SUBSTRING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_SUBSTRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_TRANSLATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRANSLATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_TRANSLATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_TRIM_BOTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_BOTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_TRIM_BOTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_TRIM_LEADING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_LEADING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_TRIM_LEADING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_TRIM_TRAILING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_TRAILING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_TRIM_TRAILING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_OVERLAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_OVERLAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_OVERLAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SSF_CONCAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_CONCAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SSF_CONCAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ABS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ABS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ABS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ACOS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ACOS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ACOS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ASIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ASIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ASIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ATAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ATAN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ATAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ATAN2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ATAN2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ATAN2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_CEILING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_CEILING","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_CEILING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_COS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_COS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_COS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_COT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_COT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_COT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_EXP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_EXP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_EXP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_FLOOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_FLOOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_FLOOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_LOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_LOG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_LOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_MOD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_MOD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_MOD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_SIGN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SIGN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_SIGN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_SIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_SIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_SQRT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SQRT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_SQRT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_TAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_TAN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_TAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_PI","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_PI","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_PI"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_RAND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_RAND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_RAND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_DEGREES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_DEGREES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_DEGREES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_LOG10","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_LOG10","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_LOG10"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_POWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_POWER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_POWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_RADIANS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_RADIANS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_RADIANS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_ROUND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ROUND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_ROUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_NUM_TRUNCATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_TRUNCATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_NUM_TRUNCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_BIT_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_BIT_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_BIT_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_CHAR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_CHAR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_CHAR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_CHARACTER_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_CHARACTER_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_CHARACTER_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_EXTRACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_EXTRACT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_EXTRACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SNVF_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SNVF_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_NOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_NOW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_NOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_CURDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_CURDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_DAYOFMONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFMONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_DAYOFMONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_DAYOFWEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFWEEK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_DAYOFWEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_DAYOFYEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFYEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_DAYOFYEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_QUARTER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_QUARTER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_WEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_WEEK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_CURTIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURTIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_CURTIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_TIMESTAMPADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_TIMESTAMPADD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_TIMESTAMPADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_TIMESTAMPDIFF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_TIMESTAMPDIFF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_TIMESTAMPDIFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_DAYNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYNAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_DAYNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_MONTHNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MONTHNAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_MONTHNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_CURRENT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_CURRENT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_CURRENT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_CURRENT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_CURRENT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_CURRENT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TD_EXTRACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_EXTRACT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TD_EXTRACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SDF_CURRENT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SDF_CURRENT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SDF_CURRENT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SDF_CURRENT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SDF_CURRENT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SDF_CURRENT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_SYS_USERNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_USERNAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_SYS_USERNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_SYS_DBNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_DBNAME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_SYS_DBNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_SYS_IFNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_IFNULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_SYS_IFNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_FRAC_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_FRAC_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_FRAC_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_WEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_WEEK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_QUARTER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_QUARTER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FN_TSI_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FN_TSI_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_LOCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_LOCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_LOCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POS_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POS_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POS_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POS_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POSITIONED_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POSITIONED_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_POSITIONED_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POSITIONED_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_SELECT_FOR_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_SELECT_FOR_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_BULK_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_BULK_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_UPDATE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_BULK_UPDATE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_DELETE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_BULK_DELETE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_FETCH_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA1_BULK_FETCH_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_READ_ONLY_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_READ_ONLY_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_READ_ONLY_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_LOCK_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_LOCK_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_LOCK_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_OPT_ROWVER_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_OPT_ROWVER_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_OPT_VALUES_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_OPT_VALUES_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_OPT_VALUES_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SENSITIVITY_ADDITIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_ADDITIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SENSITIVITY_ADDITIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SENSITIVITY_DELETIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_DELETIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SENSITIVITY_DELETIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SENSITIVITY_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SENSITIVITY_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_MAX_ROWS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_MAX_ROWS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_MAX_ROWS_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_MAX_ROWS_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_MAX_ROWS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_MAX_ROWS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_MAX_ROWS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_MAX_ROWS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_MAX_ROWS_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_MAX_ROWS_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_CRC_EXACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_CRC_EXACT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_CRC_EXACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_CRC_APPROXIMATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_CRC_APPROXIMATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_CRC_APPROXIMATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SIMULATE_NON_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_NON_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SIMULATE_NON_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SIMULATE_TRY_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_TRY_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SIMULATE_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA2_SIMULATE_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA2_SIMULATE_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OAC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OAC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OAC_LEVEL1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_LEVEL1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OAC_LEVEL1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OAC_LEVEL2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_LEVEL2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OAC_LEVEL2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OSCC_NOT_COMPLIANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSCC_NOT_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OSCC_NOT_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OSCC_COMPLIANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSCC_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OSCC_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OSC_MINIMUM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_MINIMUM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OSC_MINIMUM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OSC_CORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_CORE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OSC_CORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OSC_EXTENDED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_EXTENDED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OSC_EXTENDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CB_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CB_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CB_NON_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CB_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SO_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SO_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SO_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SO_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SO_DYNAMIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SO_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SO_MIXED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_MIXED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SO_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SO_STATIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_STATIC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SO_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FD_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FD_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CN_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CN_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CN_DIFFERENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_DIFFERENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CN_DIFFERENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CN_ANY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_ANY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CN_ANY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NNC_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NNC_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NNC_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NNC_NON_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NNC_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NNC_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NC_START","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_START","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NC_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NC_END","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_END","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NC_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FILE_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FILE_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FILE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FILE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FILE_QUALIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FILE_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_BLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_BLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_BLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_BOUND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_BOUND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_BOUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_OUTPUT_PARAMS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_OUTPUT_PARAMS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_OUTPUT_PARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GD_CONCURRENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_CONCURRENT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GD_CONCURRENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PS_POSITIONED_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_POSITIONED_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PS_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PS_POSITIONED_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_POSITIONED_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PS_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PS_SELECT_FOR_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_SELECT_FOR_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PS_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GB_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GB_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GB_GROUP_BY_EQUALS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_GROUP_BY_EQUALS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GB_GROUP_BY_EQUALS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_GROUP_BY_CONTAINS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GB_GROUP_BY_CONTAINS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GB_NO_RELATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_NO_RELATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GB_NO_RELATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_GB_COLLATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_COLLATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_GB_COLLATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQ_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQ_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQ_EXISTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_EXISTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQ_EXISTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQ_IN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_IN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQ_IN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQ_QUANTIFIED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_QUANTIFIED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQ_QUANTIFIED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQ_CORRELATED_SUBQUERIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_CORRELATED_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQ_CORRELATED_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_U_UNION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_U_UNION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_U_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_U_UNION_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_U_UNION_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_U_UNION_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_DROP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_DROP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_TRANSACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_OTHER_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_OTHER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_OTHER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BP_SCROLL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_SCROLL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BP_SCROLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SS_ADDITIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_ADDITIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SS_ADDITIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SS_DELETIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_DELETIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SS_DELETIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SS_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SS_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CV_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CV_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CV_CHECK_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CHECK_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CV_CHECK_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CV_CASCADED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CASCADED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CV_CASCADED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CV_LOCAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_LOCAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CV_LOCAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POS_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POS_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QL_START","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QL_START","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QL_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QL_END","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QL_END","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QL_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_AVG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_AVG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_AVG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_MAX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_MAX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_MAX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_MIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_MIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_MIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_SUM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_SUM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_SUM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_DISTINCT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_DISTINCT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_DISTINCT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_EVERY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_EVERY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_EVERY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_ANY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ANY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_ANY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_STDEV_OP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_STDEV_OP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_STDEV_OP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_STDEV_SAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_STDEV_SAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_STDEV_SAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_VAR_SAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_VAR_SAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_VAR_SAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_VAR_POP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_VAR_POP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_VAR_POP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_ARRAY_AGG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ARRAY_AGG","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_ARRAY_AGG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_COLLECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_COLLECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_COLLECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_FUSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_FUSION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_FUSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AF_INTERSECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_INTERSECTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AF_INTERSECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_SQL92_ENTRY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_ENTRY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_SQL92_ENTRY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_FIPS127_2_TRANSITIONAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_FIPS127_2_TRANSITIONAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_FIPS127_2_TRANSITIONAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_SQL92_INTERMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_INTERMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_SQL92_INTERMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SC_SQL92_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SC_SQL92_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BRC_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BRC_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BRC_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BRC_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BRC_ROLLED_UP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_ROLLED_UP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BRC_ROLLED_UP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BS_SELECT_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_SELECT_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BS_SELECT_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BS_ROW_COUNT_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_ROW_COUNT_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BS_ROW_COUNT_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BS_SELECT_PROC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_SELECT_PROC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BS_SELECT_PROC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BS_ROW_COUNT_PROC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_ROW_COUNT_PROC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BS_ROW_COUNT_PROC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARC_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARC_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARC_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARC_NO_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARC_NO_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARC_NO_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PAS_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PAS_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PAS_NO_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_NO_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PAS_NO_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PAS_NO_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_NO_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PAS_NO_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IK_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IK_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IK_ASC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_ASC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IK_ASC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IK_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IK_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_ASSERTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_ASSERTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_ASSERTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_CHARACTER_SETS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CHARACTER_SETS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_CHARACTER_SETS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_CHECK_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CHECK_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_CHECK_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_COLLATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLLATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_COLLATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_COLUMN_DOMAIN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMN_DOMAIN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_COLUMN_DOMAIN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_COLUMN_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMN_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_COLUMN_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CONSTRAINT_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_CONSTRAINT_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CONSTRAINT_TABLE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_CONSTRAINT_TABLE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_DOMAIN_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_DOMAIN_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_DOMAIN_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_DOMAINS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_DOMAINS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_DOMAINS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_KEY_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_KEY_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_KEY_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_REFERENTIAL_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_REFERENTIAL_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_SCHEMATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_SCHEMATA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_SCHEMATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_SQL_LANGUAGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_SQL_LANGUAGES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_SQL_LANGUAGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_TABLE_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLE_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_TABLE_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_TABLE_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLE_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_TABLE_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_TABLES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_TABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_TRANSLATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TRANSLATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_TRANSLATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_USAGE_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_USAGE_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_USAGE_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_VIEW_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEW_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_VIEW_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_VIEW_TABLE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEW_TABLE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_VIEW_TABLE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ISV_VIEWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEWS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ISV_VIEWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_DOMAIN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_DOMAIN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_DROP_DOMAIN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_DROP_DOMAIN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_DOMAIN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_DOMAIN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_DOMAIN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_DROP_DOMAIN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_DROP_DOMAIN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_DROP_DOMAIN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CS_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CS_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CS_AUTHORIZATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_AUTHORIZATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CS_AUTHORIZATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CS_DEFAULT_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_DEFAULT_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CS_DEFAULT_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CTR_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CTR_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CTR_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CA_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CCS_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CCS_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CCS_COLLATE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_COLLATE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CCS_COLLATE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CCS_LIMITED_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_LIMITED_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CCS_LIMITED_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CCOL_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCOL_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CCOL_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CDO_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_COMMIT_PRESERVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COMMIT_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_COMMIT_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_COMMIT_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COMMIT_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_COMMIT_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_GLOBAL_TEMPORARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_GLOBAL_TEMPORARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_GLOBAL_TEMPORARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_LOCAL_TEMPORARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_LOCAL_TEMPORARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_LOCAL_TEMPORARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_COLUMN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_COLUMN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_COLUMN_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_COLUMN_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_TABLE_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_TABLE_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_TABLE_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CT_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DI_CREATE_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DI_CREATE_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DI_CREATE_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DI_DROP_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DI_DROP_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DI_DROP_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DC_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DC_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DC_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DD_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DD_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DD_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DD_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DD_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DD_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DS_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DS_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DS_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DS_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DS_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DS_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DCS_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DCS_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DCS_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DA_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DA_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DA_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DT_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DT_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DT_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DT_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DT_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DT_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DTR_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTR_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DTR_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DV_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DV_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DV_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DV_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DV_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DV_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IS_INSERT_LITERALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_INSERT_LITERALS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_INSERT_LITERALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IS_INSERT_SEARCHED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_INSERT_SEARCHED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_INSERT_SEARCHED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_IS_SELECT_INTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_SELECT_INTO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_IS_SELECT_INTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OIC_CORE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_CORE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OIC_CORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OIC_LEVEL1","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_LEVEL1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OIC_LEVEL1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_OIC_LEVEL2","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_LEVEL2","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_OIC_LEVEL2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKD_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKD_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKD_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKD_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKD_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKD_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKD_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKD_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKU_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKU_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKU_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKU_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKU_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKU_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SFKU_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SFKU_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_USAGE_ON_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_USAGE_ON_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_USAGE_ON_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_USAGE_ON_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_USAGE_ON_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_USAGE_ON_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_USAGE_ON_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_USAGE_ON_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_WITH_GRANT_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_WITH_GRANT_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_WITH_GRANT_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_DELETE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_DELETE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_DELETE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_INSERT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_INSERT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_INSERT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_INSERT_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_INSERT_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_INSERT_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_REFERENCES_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_REFERENCES_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_REFERENCES_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_REFERENCES_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_REFERENCES_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_REFERENCES_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_SELECT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_SELECT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_SELECT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_UPDATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_UPDATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_UPDATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SG_UPDATE_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_UPDATE_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SG_UPDATE_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_EXISTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_EXISTS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_EXISTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_ISNOTNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_ISNOTNULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_ISNOTNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_ISNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_ISNULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_ISNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_MATCH_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_MATCH_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_MATCH_PARTIAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_PARTIAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_MATCH_PARTIAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_MATCH_UNIQUE_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_UNIQUE_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_MATCH_UNIQUE_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_MATCH_UNIQUE_PARTIAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_UNIQUE_PARTIAL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_MATCH_UNIQUE_PARTIAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_OVERLAPS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_OVERLAPS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_OVERLAPS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_LIKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_LIKE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_LIKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_IN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_IN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_IN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_BETWEEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_BETWEEN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_BETWEEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SP_QUANTIFIED_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_QUANTIFIED_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SP_QUANTIFIED_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_CORRESPONDING_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_CORRESPONDING_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_CORRESPONDING_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_CROSS_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_CROSS_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_CROSS_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_EXCEPT_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_EXCEPT_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_EXCEPT_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_FULL_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_FULL_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_FULL_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_INNER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_INNER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_INNER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_INTERSECT_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_INTERSECT_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_INTERSECT_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_LEFT_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_LEFT_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_LEFT_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_NATURAL_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_NATURAL_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_NATURAL_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_RIGHT_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_RIGHT_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_RIGHT_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRJO_UNION_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_UNION_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRJO_UNION_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_USAGE_ON_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_USAGE_ON_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_USAGE_ON_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_USAGE_ON_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_USAGE_ON_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_USAGE_ON_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_USAGE_ON_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_USAGE_ON_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_GRANT_OPTION_FOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_GRANT_OPTION_FOR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_GRANT_OPTION_FOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_DELETE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_DELETE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_DELETE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_INSERT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_INSERT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_INSERT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_INSERT_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_INSERT_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_INSERT_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_REFERENCES_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_REFERENCES_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_REFERENCES_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_REFERENCES_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_REFERENCES_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_REFERENCES_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_SELECT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_SELECT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_SELECT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_UPDATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_UPDATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_UPDATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SR_UPDATE_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_UPDATE_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SR_UPDATE_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRVC_VALUE_EXPRESSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_VALUE_EXPRESSION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRVC_VALUE_EXPRESSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRVC_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRVC_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRVC_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRVC_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SRVC_ROW_SUBQUERY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_ROW_SUBQUERY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SRVC_ROW_SUBQUERY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SVE_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SVE_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SVE_CAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_CAST","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SVE_CAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SVE_COALESCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_COALESCE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SVE_COALESCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SVE_NULLIF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_NULLIF","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SVE_NULLIF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCC_XOPEN_CLI_VERSION1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCC_XOPEN_CLI_VERSION1","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCC_XOPEN_CLI_VERSION1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SCC_ISO92_CLI","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCC_ISO92_CLI","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SCC_ISO92_CLI"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_AWARE_POOLING_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DTC_ENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_ENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DTC_ENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DTC_UNENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_UNENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DTC_UNENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_DBC_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_DBC_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ASYNC_DBC_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ASYNC_DBC_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LC_TAKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_TAKE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LC_TAKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LC_SKIP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_SKIP","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LC_SKIP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_SINGLE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_INSERT_SINGLE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_INSERT_SINGLE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_INSERT_SELECT_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_INSERT_SELECT_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_INSERT_SELECT_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_UPDATE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_UPDATE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_UPDATE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_DELETE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_DELETE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_DELETE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RC_SELECT_INTO_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_SELECT_INTO_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RC_SELECT_INTO_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FC_JSON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_JSON","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FC_JSON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FC_JSON_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_JSON_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FC_JSON_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_FIRST_USER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST_USER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_FIRST_USER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_FIRST_SYSTEM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST_SYSTEM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_FIRST_SYSTEM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ENTIRE_ROWSET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ENTIRE_ROWSET","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ENTIRE_ROWSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_UPDATE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UPDATE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_UPDATE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DELETE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DELETE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DELETE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_LOCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_BEST_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BEST_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_BEST_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PC_NOT_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_NOT_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PC_NOT_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_QUICK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUICK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_QUICK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ENSURE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ENSURE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ENSURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_TABLE_STAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TABLE_STAT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_TABLE_STAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALL_CATALOGS","package":"phobos","parentType":"","signature":"SQL_ALL_CATALOGS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALL_CATALOGS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALL_SCHEMAS","package":"phobos","parentType":"","signature":"SQL_ALL_SCHEMAS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALL_SCHEMAS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ALL_TABLE_TYPES","package":"phobos","parentType":"","signature":"SQL_ALL_TABLE_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ALL_TABLE_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_NOPROMPT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_NOPROMPT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_NOPROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_COMPLETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_COMPLETE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_COMPLETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_PROMPT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_PROMPT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_PROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_DRIVER_COMPLETE_REQUIRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_COMPLETE_REQUIRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_DRIVER_COMPLETE_REQUIRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_DELETED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_DELETED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_DELETED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_UPDATED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_UPDATED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_UPDATED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_NOROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_NOROW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_NOROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_ADDED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_ADDED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_ADDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_PROCEED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_PROCEED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_PROCEED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_ROW_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_ROW_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_UNUSED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_UNUSED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_UNUSED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_DIAG_UNAVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_DIAG_UNAVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_DIAG_UNAVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_PROCEED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_PROCEED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_PROCEED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_NOT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NOT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_NOT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_TYPE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_TYPE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_TYPE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_INPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_INPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_INPUT_OUTPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_INPUT_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RESULT_COL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESULT_COL","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RESULT_COL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_OUTPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_RETURN_VALUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETURN_VALUE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_RETURN_VALUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_INPUT_OUTPUT_STREAM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT_OUTPUT_STREAM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_INPUT_OUTPUT_STREAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PARAM_OUTPUT_STREAM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_OUTPUT_STREAM","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PARAM_OUTPUT_STREAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PT_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PT_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PT_PROCEDURE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_PROCEDURE","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PT_PROCEDURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_PT_FUNCTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_FUNCTION","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_PT_FUNCTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc32","name":"SQL_SQLSTATE_SIZEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQLSTATE_SIZEW","url":"/ddoc/phobos/etc/c/odbc/odbc32.html#SQL_SQLSTATE_SIZEW"},{"doc":"","kind":"module","module":"etc.c.odbc.odbc64","name":"etc.c.odbc.odbc64","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/odbc64.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocConnect(SQLHENV EnvironmentHandle,  SQLHDBC *  ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocEnv(SQLHENV *  EnvironmentHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle,  SQLHANDLE *  OutputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocStmt(SQLHDBC ConnectionHandle,  SQLHSTMT *  StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBindCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindCol(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLSMALLINT TargetType,  SQLPOINTER TargetValue,  SQLLEN BufferLength,  SQLLEN *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBindCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBindParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindParam(SQLHSTMT StatementHandle,  SQLUSMALLINT ParameterNumber,  SQLSMALLINT ValueType,  SQLSMALLINT ParameterType,  SQLULEN LengthPrecision,  SQLSMALLINT ParameterScale,  SQLPOINTER ParameterValue,  SQLLEN *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBindParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLCancel","package":"phobos","parentType":"","signature":"SQLRETURN SQLCancel(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLCancel.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLCancelHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLCancelHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLCancelHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLCloseCursor","package":"phobos","parentType":"","signature":"SQLRETURN SQLCloseCursor(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLCloseCursor.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttribute","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttribute(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLUSMALLINT FieldIdentifier,  SQLPOINTER CharacterAttribute,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLength,  SQLLEN *  NumericAttribute)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttribute.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumns(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLCHAR *  ColumnName,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLCompleteAsync","package":"phobos","parentType":"","signature":"SQLRETURN SQLCompleteAsync(SQLSMALLINT HandleType,  SQLHANDLE Handle,  RETCODE *  AsyncRetCodePtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLCompleteAsync.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnect(SQLHDBC ConnectionHandle,  SQLCHAR *  ServerName,  SQLSMALLINT NameLength1,  SQLCHAR *  UserName,  SQLSMALLINT NameLength2,  SQLCHAR *  Authentication,  SQLSMALLINT NameLength3)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLCopyDesc","package":"phobos","parentType":"","signature":"SQLRETURN SQLCopyDesc(SQLHDESC SourceDescHandle,  SQLHDESC TargetDescHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLCopyDesc.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDataSources","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSources(SQLHENV EnvironmentHandle,  SQLUSMALLINT Direction,  SQLCHAR *  ServerName,  SQLSMALLINT BufferLength1,  SQLSMALLINT *  NameLength1Ptr,  SQLCHAR *  Description,  SQLSMALLINT BufferLength2,  SQLSMALLINT *  NameLength2Ptr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDataSources.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDescribeCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeCol(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLCHAR *  ColumnName,  SQLSMALLINT BufferLength,  SQLSMALLINT *  NameLength,  SQLSMALLINT *  DataType,  SQLULEN *  ColumnSize,  SQLSMALLINT *  DecimalDigits,  SQLSMALLINT *  Nullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDescribeCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDisconnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDisconnect(SQLHDBC ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDisconnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLEndTran","package":"phobos","parentType":"","signature":"SQLRETURN SQLEndTran(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT CompletionType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLEndTran.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLError","package":"phobos","parentType":"","signature":"SQLRETURN SQLError(SQLHENV EnvironmentHandle,  SQLHDBC ConnectionHandle,  SQLHSTMT StatementHandle,  SQLCHAR *  Sqlstate,  SQLINTEGER *  NativeError,  SQLCHAR *  MessageText,  SQLSMALLINT BufferLength,  SQLSMALLINT *  TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLError.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLExecDirect","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirect(SQLHSTMT StatementHandle,  SQLCHAR *  StatementText,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLExecDirect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLExecute","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecute(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLExecute.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLFetch(SQLHSTMT StatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFetchScroll","package":"phobos","parentType":"","signature":"SQLRETURN SQLFetchScroll(SQLHSTMT StatementHandle,  SQLSMALLINT FetchOrientation,  SQLLEN FetchOffset)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFetchScroll.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFreeConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeConnect(SQLHDBC ConnectionHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFreeConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFreeEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeEnv(SQLHENV EnvironmentHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFreeEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFreeHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeHandle(SQLSMALLINT HandleType,  SQLHANDLE Handle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFreeHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLFreeStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeStmt(SQLHSTMT StatementHandle,  SQLUSMALLINT Option)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLFreeStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttr(SQLHDBC ConnectionHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOption(SQLHDBC ConnectionHandle,  SQLUSMALLINT Option,  SQLPOINTER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorName(SQLHSTMT StatementHandle,  SQLCHAR *  CursorName,  SQLSMALLINT BufferLength,  SQLSMALLINT *  NameLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetData","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetData(SQLHSTMT StatementHandle,  SQLUSMALLINT ColumnNumber,  SQLSMALLINT TargetType,  SQLPOINTER TargetValue,  SQLLEN BufferLength,  SQLLEN *  StrLen_or_IndPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescField","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescField(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRec(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLCHAR *  Name,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLengthPtr,  SQLSMALLINT *  TypePtr,  SQLSMALLINT *  SubTypePtr,  SQLLEN *  LengthPtr,  SQLSMALLINT *  PrecisionPtr,  SQLSMALLINT *  ScalePtr,  SQLSMALLINT *  NullablePtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagField","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagField(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT RecNumber,  SQLSMALLINT DiagIdentifier,  SQLPOINTER DiagInfo,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRec(SQLSMALLINT HandleType,  SQLHANDLE Handle,  SQLSMALLINT RecNumber,  SQLCHAR *  Sqlstate,  SQLINTEGER *  NativeError,  SQLCHAR *  MessageText,  SQLSMALLINT BufferLength,  SQLSMALLINT *  TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetEnvAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetEnvAttr(SQLHENV EnvironmentHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetEnvAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetFunctions","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetFunctions(SQLHDBC ConnectionHandle,  SQLUSMALLINT FunctionId,  SQLUSMALLINT *  Supported)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetFunctions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle,  SQLUSMALLINT InfoType,  SQLPOINTER InfoValue,  SQLSMALLINT BufferLength,  SQLSMALLINT *  StringLengthPtr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetStmtAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttr(SQLHSTMT StatementHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER BufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetStmtAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtOption(SQLHSTMT StatementHandle,  SQLUSMALLINT Option,  SQLPOINTER Value)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetTypeInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfo(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetTypeInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNumResultCols","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumResultCols(SQLHSTMT StatementHandle,  SQLSMALLINT *  ColumnCount)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNumResultCols.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLParamData","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamData(SQLHSTMT StatementHandle,  SQLPOINTER *  Value)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLParamData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrepare","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepare(SQLHSTMT StatementHandle,  SQLCHAR *  StatementText,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrepare.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPutData","package":"phobos","parentType":"","signature":"SQLRETURN SQLPutData(SQLHSTMT StatementHandle,  SQLPOINTER Data,  SQLLEN StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPutData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLRowCount","package":"phobos","parentType":"","signature":"SQLRETURN SQLRowCount(SQLHSTMT StatementHandle,  SQLLEN *  RowCount)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLRowCount.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttr(SQLHDBC ConnectionHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOption(SQLHDBC ConnectionHandle,  SQLUSMALLINT Option,  SQLULEN Value)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorName(SQLHSTMT StatementHandle,  SQLCHAR *  CursorName,  SQLSMALLINT NameLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetDescField","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescField(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetDescField.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetDescRec","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescRec(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT Type,  SQLSMALLINT SubType,  SQLLEN Length,  SQLSMALLINT Precision,  SQLSMALLINT Scale,  SQLPOINTER Data,  SQLLEN *  StringLength,  SQLLEN *  Indicator)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetDescRec.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetEnvAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetEnvAttr(SQLHENV EnvironmentHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetEnvAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetParam(SQLHSTMT StatementHandle,  SQLUSMALLINT ParameterNumber,  SQLSMALLINT ValueType,  SQLSMALLINT ParameterType,  SQLULEN LengthPrecision,  SQLSMALLINT ParameterScale,  SQLPOINTER ParameterValue,  SQLLEN *  StrLen_or_Ind)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetStmtAttr","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtAttr(SQLHSTMT StatementHandle,  SQLINTEGER Attribute,  SQLPOINTER Value,  SQLINTEGER StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetStmtAttr.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtOption(SQLHSTMT StatementHandle,  SQLUSMALLINT Option,  SQLULEN Value)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSpecialColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumns(SQLHSTMT StatementHandle,  SQLUSMALLINT IdentifierType,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLUSMALLINT Scope,  SQLUSMALLINT Nullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSpecialColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStatistics","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatistics(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLUSMALLINT Unique,  SQLUSMALLINT Reserved)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStatistics.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTables","package":"phobos","parentType":"","signature":"SQLRETURN SQLTables(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TableName,  SQLSMALLINT NameLength3,  SQLCHAR *  TableType,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTables.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTransact","package":"phobos","parentType":"","signature":"SQLRETURN SQLTransact(SQLHENV EnvironmentHandle,  SQLHDBC ConnectionHandle,  SQLUSMALLINT CompletionType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTransact.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDriverConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnect(SQLHDBC hdbc,  SQLHWND hwnd,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDriverConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBrowseConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnect(SQLHDBC hdbc,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBrowseConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBulkOperations","package":"phobos","parentType":"","signature":"SQLRETURN SQLBulkOperations(SQLHSTMT StatementHandle,  SQLSMALLINT Operation)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBulkOperations.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttributes","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributes(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLLEN *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttributes.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumnPrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivileges(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumnPrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDescribeParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeParam(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT *  pfSqlType,  SQLULEN *  pcbParamDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDescribeParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLExtendedFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLExtendedFetch(SQLHSTMT hstmt,  SQLUSMALLINT fFetchType,  SQLLEN irow,  SQLULEN *  pcrow,  SQLUSMALLINT *  rgfRowStatus)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLExtendedFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLForeignKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeys(SQLHSTMT hstmt,  SQLCHAR *  szPkCatalogName,  SQLSMALLINT cchPkCatalogName,  SQLCHAR *  szPkSchemaName,  SQLSMALLINT cchPkSchemaName,  SQLCHAR *  szPkTableName,  SQLSMALLINT cchPkTableName,  SQLCHAR *  szFkCatalogName,  SQLSMALLINT cchFkCatalogName,  SQLCHAR *  szFkSchemaName,  SQLSMALLINT cchFkSchemaName,  SQLCHAR *  szFkTableName,  SQLSMALLINT cchFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLForeignKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLMoreResults","package":"phobos","parentType":"","signature":"SQLRETURN SQLMoreResults(SQLHSTMT hstmt)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLMoreResults.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNativeSql","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSql(SQLHDBC hdbc,  SQLCHAR *  szSqlStrIn,  SQLINTEGER cchSqlStrIn,  SQLCHAR *  szSqlStr,  SQLINTEGER cchSqlStrMax,  SQLINTEGER *  pcbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNativeSql.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNumParams","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumParams(SQLHSTMT hstmt,  SQLSMALLINT *  pcpar)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNumParams.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLParamOptions","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamOptions(SQLHSTMT hstmt,  SQLULEN crow,  SQLULEN *  pirow)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLParamOptions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrimaryKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeys(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrimaryKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProcedureColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumns(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cchProcName,  SQLCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProcedureColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProcedures","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedures(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cchProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProcedures.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetPos","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetPos(SQLHSTMT hstmt,  SQLSETPOSIROW irow,  SQLUSMALLINT fOption,  SQLUSMALLINT fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetPos.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTablePrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivileges(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTablePrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDrivers","package":"phobos","parentType":"","signature":"SQLRETURN SQLDrivers(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDriverDesc,  SQLSMALLINT cchDriverDescMax,  SQLSMALLINT *  pcchDriverDesc,  SQLCHAR *  szDriverAttributes,  SQLSMALLINT cchDrvrAttrMax,  SQLSMALLINT *  pcchDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDrivers.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBindParameter","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindParameter(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT fParamType,  SQLSMALLINT fCType,  SQLSMALLINT fSqlType,  SQLULEN cbColDef,  SQLSMALLINT ibScale,  SQLPOINTER rgbValue,  SQLLEN cbValueMax,  SQLLEN *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBindParameter.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType,  SQLHANDLE InputHandle,  SQLHANDLE *  OutputHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetNestedHandle","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetNestedHandle(SQLHSTMT ParentStatementHandle,  SQLUSMALLINT Col_or_Param_Num,  SQLHSTMT *  OutputChildStatementHandle)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetNestedHandle.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypes","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypes(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TypeName,  SQLSMALLINT NameLength3)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypes.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypeColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumns(SQLHSTMT StatementHandle,  SQLCHAR *  CatalogName,  SQLSMALLINT NameLength1,  SQLCHAR *  SchemaName,  SQLSMALLINT NameLength2,  SQLCHAR *  TypeName,  SQLSMALLINT NameLength3,  SQLCHAR *  ColumnName,  SQLSMALLINT NameLength4)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypeColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNextColumn","package":"phobos","parentType":"","signature":"SQLRETURN SQLNextColumn(SQLHSTMT StatementHandle,  SQLUSMALLINT *  ColumnCount)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNextColumn.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLAllocHandleStd","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandleStd(SQLSMALLINT fHandleType,  SQLHANDLE hInput,  SQLHANDLE *  phOutput)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLAllocHandleStd.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttributeW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeW(SQLHSTMT hstmt,  SQLUSMALLINT iCol,  SQLUSMALLINT iField,  SQLPOINTER pCharAttr,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbCharAttr,  SQLLEN *  pNumAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttributeW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttributesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesW(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLLEN *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttributesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectW(SQLHDBC hdbc,  SQLWCHAR *  szDSN,  SQLSMALLINT cchDSN,  SQLWCHAR *  szUID,  SQLSMALLINT cchUID,  SQLWCHAR *  szAuthStr,  SQLSMALLINT cchAuthStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDescribeColW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColW(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLWCHAR *  szColName,  SQLSMALLINT cchColNameMax,  SQLSMALLINT *  pcchColName,  SQLSMALLINT *  pfSqlType,  SQLULEN *  pcbColDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDescribeColW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLErrorW","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorW(SQLHENV henv,  SQLHDBC hdbc,  SQLHSTMT hstmt,  SQLWCHAR *  wszSqlState,  SQLINTEGER *  pfNativeError,  SQLWCHAR *  wszErrorMsg,  SQLSMALLINT cchErrorMsgMax,  SQLSMALLINT *  pcchErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLErrorW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLExecDirectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectW(SQLHSTMT hstmt,  SQLWCHAR *  szSqlStr,  SQLINTEGER TextLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLExecDirectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrW(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameW(SQLHSTMT hstmt,  SQLWCHAR *  szCursor,  SQLSMALLINT cchCursorMax,  SQLSMALLINT *  pcchCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetDescFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetDescFieldW(SQLHDESC DescriptorHandle,  SQLSMALLINT RecNumber,  SQLSMALLINT FieldIdentifier,  SQLPOINTER Value,  SQLINTEGER BufferLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetDescFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescFieldW(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLSMALLINT iField,  SQLPOINTER rgbValue,  SQLINTEGER cbBufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescRecW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRecW(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLWCHAR *  szName,  SQLSMALLINT cchNameMax,  SQLSMALLINT *  pcchName,  SQLSMALLINT *  pfType,  SQLSMALLINT *  pfSubType,  SQLLEN *  pLength,  SQLSMALLINT *  pPrecision,  SQLSMALLINT *  pScale,  SQLSMALLINT *  pNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescRecW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagFieldW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagFieldW(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLSMALLINT fDiagField,  SQLPOINTER rgbDiagInfo,  SQLSMALLINT cbBufferLength,  SQLSMALLINT *  pcbStringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagFieldW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagRecW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRecW(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLWCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLWCHAR *  szErrorMsg,  SQLSMALLINT cchErrorMsgMax,  SQLSMALLINT *  pcchErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagRecW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrepareW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareW(SQLHSTMT hstmt,  SQLWCHAR *  szSqlStr,  SQLINTEGER cchSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrepareW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrW(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameW(SQLHSTMT hstmt,  SQLWCHAR *  szCursor,  SQLSMALLINT cchCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionW(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoW(SQLHDBC hdbc,  SQLUSMALLINT fInfoType,  SQLPOINTER rgbInfoValue,  SQLSMALLINT cbInfoValueMax,  SQLSMALLINT *  pcbInfoValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetTypeInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoW(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetTypeInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionW(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLULEN vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSpecialColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsW(SQLHSTMT hstmt,  SQLUSMALLINT fColType,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLUSMALLINT fScope,  SQLUSMALLINT fNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSpecialColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStatisticsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLUSMALLINT fUnique,  SQLUSMALLINT fAccuracy)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStatisticsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTablesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szTableType,  SQLSMALLINT cchTableType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTablesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDataSourcesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesW(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLWCHAR *  szDSN,  SQLSMALLINT cchDSNMax,  SQLSMALLINT *  pcchDSN,  SQLWCHAR *  wszDescription,  SQLSMALLINT cchDescriptionMax,  SQLSMALLINT *  pcchDescription)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDataSourcesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDriverConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectW(SQLHDBC hdbc,  SQLHWND hwnd,  SQLWCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLWCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDriverConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBrowseConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectW(SQLHDBC hdbc,  SQLWCHAR *  szConnStrIn,  SQLSMALLINT cchConnStrIn,  SQLWCHAR *  szConnStrOut,  SQLSMALLINT cchConnStrOutMax,  SQLSMALLINT *  pcchConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBrowseConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumnPrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumnPrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetStmtAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttrW(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetStmtAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetStmtAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtAttrW(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetStmtAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLForeignKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysW(SQLHSTMT hstmt,  SQLWCHAR *  szPkCatalogName,  SQLSMALLINT cchPkCatalogName,  SQLWCHAR *  szPkSchemaName,  SQLSMALLINT cchPkSchemaName,  SQLWCHAR *  szPkTableName,  SQLSMALLINT cchPkTableName,  SQLWCHAR *  szFkCatalogName,  SQLSMALLINT cchFkCatalogName,  SQLWCHAR *  szFkSchemaName,  SQLSMALLINT cchFkSchemaName,  SQLWCHAR *  szFkTableName,  SQLSMALLINT cchFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLForeignKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNativeSqlW","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlW(SQLHDBC hdbc,  SQLWCHAR *  szSqlStrIn,  SQLINTEGER cchSqlStrIn,  SQLWCHAR *  szSqlStr,  SQLINTEGER cchSqlStrMax,  SQLINTEGER *  pcchSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNativeSqlW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrimaryKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrimaryKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProcedureColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szProcName,  SQLSMALLINT cchProcName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProcedureColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProceduresW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szProcName,  SQLSMALLINT cchProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProceduresW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTablePrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTableName,  SQLSMALLINT cchTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTablePrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDriversW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversW(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLWCHAR *  szDriverDesc,  SQLSMALLINT cchDriverDescMax,  SQLSMALLINT *  pcchDriverDesc,  SQLWCHAR *  szDriverAttributes,  SQLSMALLINT cchDrvrAttrMax,  SQLSMALLINT *  pcchDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDriversW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypesW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTypeName,  SQLSMALLINT cchTypeName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypeColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumnsW(SQLHSTMT hstmt,  SQLWCHAR *  szCatalogName,  SQLSMALLINT cchCatalogName,  SQLWCHAR *  szSchemaName,  SQLSMALLINT cchSchemaName,  SQLWCHAR *  szTypeName,  SQLSMALLINT cchTypeName,  SQLWCHAR *  szColumnName,  SQLSMALLINT cchColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypeColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttributeA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeA(SQLHSTMT hstmt,  SQLSMALLINT iCol,  SQLSMALLINT iField,  SQLPOINTER pCharAttr,  SQLSMALLINT cbCharAttrMax,  SQLSMALLINT *  pcbCharAttr,  SQLLEN *  pNumAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttributeA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColAttributesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesA(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLUSMALLINT fDescType,  SQLPOINTER rgbDesc,  SQLSMALLINT cbDescMax,  SQLSMALLINT *  pcbDesc,  SQLLEN *  pfDesc)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColAttributesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectA(SQLHDBC hdbc,  SQLCHAR *  szDSN,  SQLSMALLINT cbDSN,  SQLCHAR *  szUID,  SQLSMALLINT cbUID,  SQLCHAR *  szAuthStr,  SQLSMALLINT cbAuthStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDescribeColA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColA(SQLHSTMT hstmt,  SQLUSMALLINT icol,  SQLCHAR *  szColName,  SQLSMALLINT cbColNameMax,  SQLSMALLINT *  pcbColName,  SQLSMALLINT *  pfSqlType,  SQLULEN *  pcbColDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDescribeColA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLErrorA","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorA(SQLHENV henv,  SQLHDBC hdbc,  SQLHSTMT hstmt,  SQLCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLCHAR *  szErrorMsg,  SQLSMALLINT cbErrorMsgMax,  SQLSMALLINT *  pcbErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLErrorA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLExecDirectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectA(SQLHSTMT hstmt,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLExecDirectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrA(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameA(SQLHSTMT hstmt,  SQLCHAR *  szCursor,  SQLSMALLINT cbCursorMax,  SQLSMALLINT *  pcbCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescFieldA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescFieldA(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLSMALLINT iField,  SQLPOINTER rgbValue,  SQLINTEGER cbBufferLength,  SQLINTEGER *  StringLength)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescFieldA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDescRecA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDescRecA(SQLHDESC hdesc,  SQLSMALLINT iRecord,  SQLCHAR *  szName,  SQLSMALLINT cbNameMax,  SQLSMALLINT *  pcbName,  SQLSMALLINT *  pfType,  SQLSMALLINT *  pfSubType,  SQLLEN *  pLength,  SQLSMALLINT *  pPrecision,  SQLSMALLINT *  pScale,  SQLSMALLINT *  pNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDescRecA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagFieldA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagFieldA(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLSMALLINT fDiagField,  SQLPOINTER rgbDiagInfo,  SQLSMALLINT cbDiagInfoMax,  SQLSMALLINT *  pcbDiagInfo)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagFieldA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetDiagRecA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetDiagRecA(SQLSMALLINT fHandleType,  SQLHANDLE handle,  SQLSMALLINT iRecord,  SQLCHAR *  szSqlState,  SQLINTEGER *  pfNativeError,  SQLCHAR *  szErrorMsg,  SQLSMALLINT cbErrorMsgMax,  SQLSMALLINT *  pcbErrorMsg)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetDiagRecA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetStmtAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtAttrA(SQLHSTMT hstmt,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValueMax,  SQLINTEGER *  pcbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetStmtAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetTypeInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoA(SQLHSTMT StatementHandle,  SQLSMALLINT DataType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetTypeInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrepareA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareA(SQLHSTMT hstmt,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrepareA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrA(SQLHDBC hdbc,  SQLINTEGER fAttribute,  SQLPOINTER rgbValue,  SQLINTEGER cbValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameA(SQLHSTMT hstmt,  SQLCHAR *  szCursor,  SQLSMALLINT cbCursor)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionA(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoA(SQLHDBC hdbc,  SQLUSMALLINT fInfoType,  SQLPOINTER rgbInfoValue,  SQLSMALLINT cbInfoValueMax,  SQLSMALLINT *  pcbInfoValue)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLGetStmtOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtOptionA(SQLHSTMT hstmt,  SQLUSMALLINT fOption,  SQLPOINTER pvParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLGetStmtOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionA(SQLHDBC hdbc,  SQLUSMALLINT fOption,  SQLULEN vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSetStmtOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtOptionA(SQLHSTMT hstmt,  SQLUSMALLINT fOption,  SQLULEN vParam)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSetStmtOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLSpecialColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsA(SQLHSTMT hstmt,  SQLUSMALLINT fColType,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLUSMALLINT fScope,  SQLUSMALLINT fNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLSpecialColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStatisticsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLUSMALLINT fUnique,  SQLUSMALLINT fAccuracy)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStatisticsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTablesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szTableType,  SQLSMALLINT cbTableType)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTablesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDataSourcesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesA(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDSN,  SQLSMALLINT cbDSNMax,  SQLSMALLINT *  pcbDSN,  SQLCHAR *  szDescription,  SQLSMALLINT cbDescriptionMax,  SQLSMALLINT *  pcbDescription)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDataSourcesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDriverConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectA(SQLHDBC hdbc,  SQLHWND hwnd,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cbConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cbConnStrOutMax,  SQLSMALLINT *  pcbConnStrOut,  SQLUSMALLINT fDriverCompletion)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDriverConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLBrowseConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectA(SQLHDBC hdbc,  SQLCHAR *  szConnStrIn,  SQLSMALLINT cbConnStrIn,  SQLCHAR *  szConnStrOut,  SQLSMALLINT cbConnStrOutMax,  SQLSMALLINT *  pcbConnStrOut)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLBrowseConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLColumnPrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLColumnPrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDescribeParamA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeParamA(SQLHSTMT hstmt,  SQLUSMALLINT ipar,  SQLSMALLINT *  pfSqlType,  SQLUINTEGER *  pcbParamDef,  SQLSMALLINT *  pibScale,  SQLSMALLINT *  pfNullable)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDescribeParamA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLForeignKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysA(SQLHSTMT hstmt,  SQLCHAR *  szPkCatalogName,  SQLSMALLINT cbPkCatalogName,  SQLCHAR *  szPkSchemaName,  SQLSMALLINT cbPkSchemaName,  SQLCHAR *  szPkTableName,  SQLSMALLINT cbPkTableName,  SQLCHAR *  szFkCatalogName,  SQLSMALLINT cbFkCatalogName,  SQLCHAR *  szFkSchemaName,  SQLSMALLINT cbFkSchemaName,  SQLCHAR *  szFkTableName,  SQLSMALLINT cbFkTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLForeignKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLNativeSqlA","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlA(SQLHDBC hdbc,  SQLCHAR *  szSqlStrIn,  SQLINTEGER cbSqlStrIn,  SQLCHAR *  szSqlStr,  SQLINTEGER cbSqlStrMax,  SQLINTEGER *  pcbSqlStr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLNativeSqlA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLPrimaryKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLPrimaryKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProcedureColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cbProcName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProcedureColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLProceduresA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szProcName,  SQLSMALLINT cbProcName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLProceduresA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLTablePrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTableName,  SQLSMALLINT cbTableName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLTablePrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLDriversA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversA(SQLHENV henv,  SQLUSMALLINT fDirection,  SQLCHAR *  szDriverDesc,  SQLSMALLINT cbDriverDescMax,  SQLSMALLINT *  pcbDriverDesc,  SQLCHAR *  szDriverAttributes,  SQLSMALLINT cbDrvrAttrMax,  SQLSMALLINT *  pcbDrvrAttr)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLDriversA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypesA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTypeName,  SQLSMALLINT cbTypeName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQLStructuredTypeColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStructuredTypeColumnsA(SQLHSTMT hstmt,  SQLCHAR *  szCatalogName,  SQLSMALLINT cbCatalogName,  SQLCHAR *  szSchemaName,  SQLSMALLINT cbSchemaName,  SQLCHAR *  szTypeName,  SQLSMALLINT cbTypeName,  SQLCHAR *  szColumnName,  SQLSMALLINT cbColumnName)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQLStructuredTypeColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NULL_DATA","package":"phobos","parentType":"","signature":"auto SQL_NULL_DATA()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NULL_DATA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DATA_AT_EXEC","package":"phobos","parentType":"","signature":"auto SQL_DATA_AT_EXEC()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DATA_AT_EXEC.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ERROR","package":"phobos","parentType":"","signature":"auto SQL_ERROR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ERROR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INVALID_HANDLE","package":"phobos","parentType":"","signature":"auto SQL_INVALID_HANDLE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INVALID_HANDLE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_SUCCEEDED","package":"phobos","parentType":"","signature":"auto SQL_SUCCEEDED(__MP1)(__MP1 rc)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_SUCCEEDED.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NTS","package":"phobos","parentType":"","signature":"auto SQL_NTS()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NTS.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NTSL","package":"phobos","parentType":"","signature":"auto SQL_NTSL()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NTSL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CURSOR_SCROLLABLE","package":"phobos","parentType":"","signature":"auto SQL_ATTR_CURSOR_SCROLLABLE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ATTR_CURSOR_SCROLLABLE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CURSOR_SENSITIVITY","package":"phobos","parentType":"","signature":"auto SQL_ATTR_CURSOR_SENSITIVITY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ATTR_CURSOR_SENSITIVITY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_INDEX","package":"phobos","parentType":"","signature":"auto SQL_DIAG_CREATE_INDEX()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DIAG_CREATE_INDEX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_INDEX","package":"phobos","parentType":"","signature":"auto SQL_DIAG_DROP_INDEX()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DIAG_DROP_INDEX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ARD_TYPE","package":"phobos","parentType":"","signature":"auto SQL_ARD_TYPE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ARD_TYPE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_APD_TYPE","package":"phobos","parentType":"","signature":"auto SQL_APD_TYPE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_APD_TYPE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IS_POINTER","package":"phobos","parentType":"","signature":"auto SQL_IS_POINTER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IS_POINTER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IS_UINTEGER","package":"phobos","parentType":"","signature":"auto SQL_IS_UINTEGER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IS_UINTEGER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IS_INTEGER","package":"phobos","parentType":"","signature":"auto SQL_IS_INTEGER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IS_INTEGER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IS_USMALLINT","package":"phobos","parentType":"","signature":"auto SQL_IS_USMALLINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IS_USMALLINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IS_SMALLINT","package":"phobos","parentType":"","signature":"auto SQL_IS_SMALLINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IS_SMALLINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CURSOR_ROW_COUNT","package":"phobos","parentType":"","signature":"auto SQL_DIAG_CURSOR_ROW_COUNT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DIAG_CURSOR_ROW_COUNT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_ROW_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_DIAG_ROW_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DIAG_ROW_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_COLUMN_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_DIAG_COLUMN_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DIAG_COLUMN_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LONGVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_LONGVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LONGVARCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_BINARY","package":"phobos","parentType":"","signature":"auto SQL_BINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_BINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_VARBINARY","package":"phobos","parentType":"","signature":"auto SQL_VARBINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_VARBINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LONGVARBINARY","package":"phobos","parentType":"","signature":"auto SQL_LONGVARBINARY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LONGVARBINARY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_BIGINT","package":"phobos","parentType":"","signature":"auto SQL_BIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_BIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_TINYINT","package":"phobos","parentType":"","signature":"auto SQL_TINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_TINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_BIT","package":"phobos","parentType":"","signature":"auto SQL_BIT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_BIT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_GUID","package":"phobos","parentType":"","signature":"auto SQL_GUID()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_GUID.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_YEAR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_YEAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_YEAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_MONTH","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MONTH()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_MONTH.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_DAY","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_DAY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_HOUR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_HOUR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_YEAR_TO_MONTH()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_YEAR_TO_MONTH.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_HOUR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_DAY_TO_HOUR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_DAY_TO_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_DAY_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_DAY_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR_TO_MINUTE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_HOUR_TO_MINUTE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_HOUR_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_HOUR_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"auto SQL_INTERVAL_MINUTE_TO_SECOND()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_INTERVAL_MINUTE_TO_SECOND.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_SIGNED_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_SIGNED_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_SIGNED_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_UNSIGNED_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_UNSIGNED_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_UNSIGNED_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_SBIGINT","package":"phobos","parentType":"","signature":"auto SQL_C_SBIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_SBIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_UBIGINT","package":"phobos","parentType":"","signature":"auto SQL_C_UBIGINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_UBIGINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_SLONG","package":"phobos","parentType":"","signature":"auto SQL_C_SLONG()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_SLONG.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_SSHORT","package":"phobos","parentType":"","signature":"auto SQL_C_SSHORT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_SSHORT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_STINYINT","package":"phobos","parentType":"","signature":"auto SQL_C_STINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_STINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_ULONG","package":"phobos","parentType":"","signature":"auto SQL_C_ULONG()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_ULONG.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_USHORT","package":"phobos","parentType":"","signature":"auto SQL_C_USHORT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_USHORT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_C_UTINYINT","package":"phobos","parentType":"","signature":"auto SQL_C_UTINYINT()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_C_UTINYINT.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NO_ROW_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_NO_ROW_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NO_ROW_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NO_COLUMN_NUMBER","package":"phobos","parentType":"","signature":"auto SQL_NO_COLUMN_NUMBER()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NO_COLUMN_NUMBER.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ROW_NUMBER_UNKNOWN","package":"phobos","parentType":"","signature":"auto SQL_ROW_NUMBER_UNKNOWN()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ROW_NUMBER_UNKNOWN.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_NUMBER_UNKNOWN","package":"phobos","parentType":"","signature":"auto SQL_COLUMN_NUMBER_UNKNOWN()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_COLUMN_NUMBER_UNKNOWN.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DEFAULT_PARAM","package":"phobos","parentType":"","signature":"auto SQL_DEFAULT_PARAM()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DEFAULT_PARAM.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IGNORE","package":"phobos","parentType":"","signature":"auto SQL_IGNORE()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IGNORE.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LEN_DATA_AT_EXEC_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_LEN_DATA_AT_EXEC_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LEN_DATA_AT_EXEC_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LEN_DATA_AT_EXEC","package":"phobos","parentType":"","signature":"auto SQL_LEN_DATA_AT_EXEC(__MP2)(__MP2 length)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LEN_DATA_AT_EXEC.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LEN_BINARY_ATTR_OFFSET","package":"phobos","parentType":"","signature":"auto SQL_LEN_BINARY_ATTR_OFFSET()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LEN_BINARY_ATTR_OFFSET.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LEN_BINARY_ATTR","package":"phobos","parentType":"","signature":"auto SQL_LEN_BINARY_ATTR(__MP3)(__MP3 length)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LEN_BINARY_ATTR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_SETPARAM_VALUE_MAX","package":"phobos","parentType":"","signature":"auto SQL_SETPARAM_VALUE_MAX()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_SETPARAM_VALUE_MAX.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_EXCEPTION","package":"phobos","parentType":"","signature":"auto SQL_TYPE_EXCEPTION()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_TYPE_EXCEPTION.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_NO_TOTAL","package":"phobos","parentType":"","signature":"auto SQL_NO_TOTAL()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_NO_TOTAL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_IK_ALL","package":"phobos","parentType":"","signature":"auto SQL_IK_ALL()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_IK_ALL.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_SINGLE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_SINGLE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_INSERT_SINGLE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_MULTIPLE_ROWID","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_MULTIPLE_ROWID()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_INSERT_MULTIPLE_ROWID.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_MULTIPLE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_MULTIPLE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_INSERT_MULTIPLE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_SELECT_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_INSERT_SELECT_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_INSERT_SELECT_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_UPDATE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_UPDATE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_UPDATE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_DELETE_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_DELETE_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_DELETE_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_RC_SELECT_INTO_ANY","package":"phobos","parentType":"","signature":"auto SQL_RC_SELECT_INTO_ANY()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_RC_SELECT_INTO_ANY.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_POSITION_TO","package":"phobos","parentType":"","signature":"auto SQL_POSITION_TO(__MP4,  __MP5)(__MP4 hstmt,  __MP5 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_POSITION_TO.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_LOCK_RECORD","package":"phobos","parentType":"","signature":"auto SQL_LOCK_RECORD(__MP6,  __MP7,  __MP8)(__MP6 hstmt,  __MP7 irow,  __MP8 fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_LOCK_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_REFRESH_RECORD","package":"phobos","parentType":"","signature":"auto SQL_REFRESH_RECORD(__MP9,  __MP10,  __MP11)(__MP9 hstmt,  __MP10 irow,  __MP11 fLock)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_REFRESH_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_UPDATE_RECORD","package":"phobos","parentType":"","signature":"auto SQL_UPDATE_RECORD(__MP12,  __MP13)(__MP12 hstmt,  __MP13 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_UPDATE_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_DELETE_RECORD","package":"phobos","parentType":"","signature":"auto SQL_DELETE_RECORD(__MP14,  __MP15)(__MP14 hstmt,  __MP15 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_DELETE_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_ADD_RECORD","package":"phobos","parentType":"","signature":"auto SQL_ADD_RECORD(__MP16,  __MP17)(__MP16 hstmt,  __MP17 irow)","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_ADD_RECORD.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_WCHAR","package":"phobos","parentType":"","signature":"auto SQL_WCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_WCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_WVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_WVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_WVARCHAR.html"},{"doc":"","kind":"function","module":"etc.c.odbc.odbc64","name":"SQL_WLONGVARCHAR","package":"phobos","parentType":"","signature":"auto SQL_WLONGVARCHAR()()","url":"/ddoc/phobos/etc/c/odbc/odbc64/SQL_WLONGVARCHAR.html"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLCHAR","package":"phobos","parentType":"","signature":"SQLCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLSCHAR","package":"phobos","parentType":"","signature":"SQLSCHAR = byte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLSCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLDATE","package":"phobos","parentType":"","signature":"SQLDATE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLDATE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLDECIMAL","package":"phobos","parentType":"","signature":"SQLDECIMAL = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLDECIMAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLDOUBLE","package":"phobos","parentType":"","signature":"SQLDOUBLE = double","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLDOUBLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLFLOAT","package":"phobos","parentType":"","signature":"SQLFLOAT = double","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLFLOAT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLINTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER = int","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTEGER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLUINTEGER","package":"phobos","parentType":"","signature":"SQLUINTEGER = uint","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLUINTEGER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLLEN","package":"phobos","parentType":"","signature":"SQLLEN = long","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLLEN"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLULEN","package":"phobos","parentType":"","signature":"SQLULEN = ulong","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLULEN"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLSETPOSIROW","package":"phobos","parentType":"","signature":"SQLSETPOSIROW = ulong","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLSETPOSIROW"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLNUMERIC","package":"phobos","parentType":"","signature":"SQLNUMERIC = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLNUMERIC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLPOINTER","package":"phobos","parentType":"","signature":"SQLPOINTER = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLPOINTER"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLREAL","package":"phobos","parentType":"","signature":"SQLREAL = float","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLREAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLSMALLINT","package":"phobos","parentType":"","signature":"SQLSMALLINT = short","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLSMALLINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLUSMALLINT","package":"phobos","parentType":"","signature":"SQLUSMALLINT = ushort","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLUSMALLINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLTIME","package":"phobos","parentType":"","signature":"SQLTIME = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLTIME"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLTIMESTAMP","package":"phobos","parentType":"","signature":"SQLTIMESTAMP = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLTIMESTAMP"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLVARCHAR","package":"phobos","parentType":"","signature":"SQLVARCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLVARCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLTIMEWITHTIMEZONE","package":"phobos","parentType":"","signature":"SQLTIMEWITHTIMEZONE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLTIMEWITHTIMEZONE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLTIMESTAMPWITHTIMEZONE","package":"phobos","parentType":"","signature":"SQLTIMESTAMPWITHTIMEZONE = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLTIMESTAMPWITHTIMEZONE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLRETURN","package":"phobos","parentType":"","signature":"SQLRETURN = short","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLRETURN"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHANDLE","package":"phobos","parentType":"","signature":"SQLHANDLE = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHANDLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHENV","package":"phobos","parentType":"","signature":"SQLHENV = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHENV"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHDBC","package":"phobos","parentType":"","signature":"SQLHDBC = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHDBC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHSTMT","package":"phobos","parentType":"","signature":"SQLHSTMT = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHSTMT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHDESC","package":"phobos","parentType":"","signature":"SQLHDESC = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHDESC"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"RETCODE","package":"phobos","parentType":"","signature":"RETCODE = short","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#RETCODE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLHWND","package":"phobos","parentType":"","signature":"SQLHWND = void *","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLHWND"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagDATE_STRUCT","package":"phobos","parentType":"","signature":"tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagDATE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"DATE_STRUCT","package":"phobos","parentType":"","signature":"DATE_STRUCT = tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#DATE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_DATE_STRUCT","package":"phobos","parentType":"","signature":"SQL_DATE_STRUCT = tagDATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATE_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagTIME_STRUCT","package":"phobos","parentType":"","signature":"tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagTIME_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"TIME_STRUCT","package":"phobos","parentType":"","signature":"TIME_STRUCT = tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#TIME_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_TIME_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIME_STRUCT = tagTIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIME_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagTIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagTIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"TIMESTAMP_STRUCT = tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#TIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP_STRUCT = tagTIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMESTAMP_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagTIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagTIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"TIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"TIME_WITH_TIMEZONE_STRUCT = tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#TIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_TIME_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIME_WITH_TIMEZONE_STRUCT = tagTIME_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIME_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagTIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagTIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"TIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"TIMESTAMP_WITH_TIMEZONE_STRUCT = tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#TIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT = tagTIMESTAMP_WITH_TIMEZONE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMESTAMP_WITH_TIMEZONE_STRUCT"},{"doc":"","kind":"enum","module":"etc.c.odbc.odbc64","name":"SQLINTERVAL","package":"phobos","parentType":"","signature":"SQLINTERVAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_YEAR","package":"phobos","parentType":"","signature":"SQL_IS_YEAR = 1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_MONTH = 2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY","package":"phobos","parentType":"","signature":"SQL_IS_DAY = 3","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_HOUR = 4","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE = 5","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_SECOND = 6","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = 7","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = 8","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = 9","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = 10","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = 11","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = 12","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.odbc64","name":"SQL_IS_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = 13","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLINTERVAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_YEAR","package":"phobos","parentType":"","signature":"SQL_IS_YEAR = SQLINTERVAL.SQL_IS_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_YEAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_MONTH = SQLINTERVAL.SQL_IS_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY","package":"phobos","parentType":"","signature":"SQL_IS_DAY = SQLINTERVAL.SQL_IS_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_DAY"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_HOUR = SQLINTERVAL.SQL_IS_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_HOUR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE = SQLINTERVAL.SQL_IS_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_SECOND = SQLINTERVAL.SQL_IS_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = SQLINTERVAL.SQL_IS_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_YEAR_TO_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = SQLINTERVAL.SQL_IS_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_DAY_TO_HOUR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = SQLINTERVAL.SQL_IS_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_DAY_TO_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = SQLINTERVAL.SQL_IS_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_DAY_TO_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = SQLINTERVAL.SQL_IS_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_HOUR_TO_MINUTE"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = SQLINTERVAL.SQL_IS_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_HOUR_TO_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_IS_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = SQLINTERVAL.SQL_IS_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_MINUTE_TO_SECOND"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagSQL_YEAR_MONTH","package":"phobos","parentType":"","signature":"tagSQL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagSQL_YEAR_MONTH"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_YEAR_MONTH_STRUCT","package":"phobos","parentType":"","signature":"SQL_YEAR_MONTH_STRUCT = tagSQL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_YEAR_MONTH_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagSQL_DAY_SECOND","package":"phobos","parentType":"","signature":"tagSQL_DAY_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagSQL_DAY_SECOND"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_DAY_SECOND_STRUCT","package":"phobos","parentType":"","signature":"SQL_DAY_SECOND_STRUCT = tagSQL_DAY_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DAY_SECOND_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagSQL_INTERVAL_STRUCT","package":"phobos","parentType":"","signature":"tagSQL_INTERVAL_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagSQL_INTERVAL_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL_STRUCT","package":"phobos","parentType":"","signature":"SQL_INTERVAL_STRUCT = tagSQL_INTERVAL_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INTERVAL_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLBIGINT","package":"phobos","parentType":"","signature":"SQLBIGINT = long","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLBIGINT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLUBIGINT","package":"phobos","parentType":"","signature":"SQLUBIGINT = ulong","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLUBIGINT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagSQL_NUMERIC_STRUCT","package":"phobos","parentType":"","signature":"tagSQL_NUMERIC_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagSQL_NUMERIC_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQL_NUMERIC_STRUCT","package":"phobos","parentType":"","signature":"SQL_NUMERIC_STRUCT = tagSQL_NUMERIC_STRUCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NUMERIC_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.odbc64","name":"tagSQLGUID","package":"phobos","parentType":"","signature":"tagSQLGUID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#tagSQLGUID"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLGUID","package":"phobos","parentType":"","signature":"SQLGUID = tagSQLGUID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLGUID"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"BOOKMARK","package":"phobos","parentType":"","signature":"BOOKMARK = ulong","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#BOOKMARK"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLWCHAR","package":"phobos","parentType":"","signature":"SQLWCHAR = ushort","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLWCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLTCHAR","package":"phobos","parentType":"","signature":"SQLTCHAR = ubyte","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLTCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.odbc64","name":"SQLSTATE","package":"phobos","parentType":"","signature":"SQLSTATE = ubyte[SQL_SQLSTATE_SIZE +  1]","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQLSTATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"ODBCVER","package":"phobos","parentType":"","signature":"SQLINTEGER ODBCVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#ODBCVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_NUMERIC_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_NUMERIC_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_NUMERIC_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NO_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NO_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_DATA_AVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_DATA_AVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_DATA_AVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STILL_EXECUTING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STILL_EXECUTING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STILL_EXECUTING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NEED_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NEED_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NEED_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_MESSAGE_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_MESSAGE_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_MESSAGE_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATE_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATE_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATE_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIMESTAMP_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMESTAMP_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMESTAMP_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_HANDLE_ENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_ENV","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_HANDLE_ENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_HANDLE_DBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_DBC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_HANDLE_DBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_HANDLE_STMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_STMT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_HANDLE_STMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_HANDLE_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_HANDLE_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_OUTPUT_NTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_OUTPUT_NTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_OUTPUT_NTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_AUTO_IPD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_AUTO_IPD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_AUTO_IPD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_METADATA_ID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_METADATA_ID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_METADATA_ID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_APP_ROW_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APP_ROW_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_APP_ROW_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_APP_PARAM_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APP_PARAM_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_APP_PARAM_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_IMP_ROW_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_IMP_ROW_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_IMP_ROW_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_IMP_PARAM_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_IMP_PARAM_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_IMP_PARAM_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NONSCROLLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NONSCROLLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NONSCROLLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCROLLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCROLLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_OCTET_LENGTH_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_OCTET_LENGTH_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_OCTET_LENGTH_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_DATETIME_INTERVAL_CODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATETIME_INTERVAL_CODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_DATETIME_INTERVAL_CODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_INDICATOR_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_INDICATOR_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_INDICATOR_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_DATA_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATA_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_DATA_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_UNNAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_UNNAMED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_UNNAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ALLOC_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ALLOC_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_CHARACTER_SET_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_CHARACTER_SET_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_CHARACTER_SET_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_CHARACTER_SET_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_CHARACTER_SET_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_CHARACTER_SET_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_CHARACTER_SET_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_COLLATION_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_COLLATION_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_COLLATION_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_COLLATION_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_COLLATION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_COLLATION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_COLLATION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_USER_DEFINED_TYPE_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_USER_DEFINED_TYPE_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_USER_DEFINED_TYPE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_USER_DEFINED_TYPE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_USER_DEFINED_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_USER_DEFINED_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_USER_DEFINED_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_RETURNCODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_RETURNCODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_RETURNCODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_NUMBER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_NUMBER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_NUMBER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_ROW_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ROW_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_ROW_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_SQLSTATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SQLSTATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_SQLSTATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_NATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_NATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_NATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_MESSAGE_TEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_MESSAGE_TEXT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_MESSAGE_TEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DYNAMIC_FUNCTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_FUNCTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DYNAMIC_FUNCTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CLASS_ORIGIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CLASS_ORIGIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CLASS_ORIGIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_SUBCLASS_ORIGIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SUBCLASS_ORIGIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_SUBCLASS_ORIGIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CONNECTION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CONNECTION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CONNECTION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_SERVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SERVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_SERVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_FUNCTION_CODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DYNAMIC_FUNCTION_CODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_ALTER_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ALTER_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_ALTER_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_ALTER_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_ALTER_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_ALTER_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CALL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DELETE_WHERE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DELETE_WHERE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DELETE_WHERE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_DELETE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DYNAMIC_DELETE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_DYNAMIC_UPDATE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_DYNAMIC_UPDATE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_GRANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_GRANT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_GRANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_REVOKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_REVOKE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_REVOKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_SELECT_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_SELECT_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_SELECT_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_UNKNOWN_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_UNKNOWN_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_UNKNOWN_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DIAG_UPDATE_WHERE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DIAG_UPDATE_WHERE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DIAG_UPDATE_WHERE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNKNOWN_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNKNOWN_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNKNOWN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATETIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATETIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATETIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UDT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UDT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UDT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ARRAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ARRAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ARRAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MULTISET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULTISET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MULTISET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_TIME_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIME_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_TIME_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_TIMESTAMP_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_TIMESTAMP_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_TIMESTAMP_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNSPECIFIED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNSPECIFIED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNSPECIFIED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INSENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INSENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INSENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALL_TYPES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALL_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALL_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_TIME_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIME_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_TIME_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_TIMESTAMP_WITH_TIMEZONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_TIMESTAMP_WITH_TIMEZONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_TIMESTAMP_WITH_TIMEZONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NO_NULLS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_NULLS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NO_NULLS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULLABLE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULLABLE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULLABLE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PRED_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PRED_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PRED_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PRED_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PRED_BASIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PRED_BASIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PRED_BASIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NAMED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNNAMED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNNAMED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNNAMED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ALLOC_AUTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_AUTO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ALLOC_AUTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ALLOC_USER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ALLOC_USER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ALLOC_USER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNBIND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNBIND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNBIND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RESET_PARAMS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESET_PARAMS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RESET_PARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_LAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROLLBACK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROLLBACK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROLLBACK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_HENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_HDBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HDBC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_HDESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HDESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_HDESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_HANDLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_HANDLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_HANDLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCOPE_CURROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_CURROW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCOPE_CURROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCOPE_TRANSACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCOPE_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCOPE_SESSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCOPE_SESSION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCOPE_SESSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PC_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PC_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PC_NON_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_NON_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PC_NON_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PC_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PC_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_IDENTIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_IDENTIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_IDENTIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_CLUSTERED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_CLUSTERED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_CLUSTERED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_HASHED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_HASHED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_HASHED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_OTHER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_OTHER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_OTHER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_DRIVER_CONNECTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_DRIVER_CONNECTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_DRIVER_CONNECTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_CONCURRENT_ACTIVITIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CONCURRENT_ACTIVITIES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_CONCURRENT_ACTIVITIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATA_SOURCE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_SOURCE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATA_SOURCE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_DIRECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_DIRECTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_DIRECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SERVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SERVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SERVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SEARCH_PATTERN_ESCAPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SEARCH_PATTERN_ESCAPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SEARCH_PATTERN_ESCAPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DBMS_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DBMS_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DBMS_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DBMS_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DBMS_VER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DBMS_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACCESSIBLE_TABLES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESSIBLE_TABLES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACCESSIBLE_TABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACCESSIBLE_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESSIBLE_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACCESSIBLE_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_COMMIT_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_COMMIT_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_COMMIT_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATA_SOURCE_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_SOURCE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATA_SOURCE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DEFAULT_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DEFAULT_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DEFAULT_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IDENTIFIER_QUOTE_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IDENTIFIER_QUOTE_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IDENTIFIER_QUOTE_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMN_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMN_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMN_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_CURSOR_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CURSOR_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_CURSOR_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_SCHEMA_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_SCHEMA_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_SCHEMA_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_CATALOG_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CATALOG_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_CATALOG_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_TABLE_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_TABLE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_TABLE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCROLL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCROLL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_USER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_USER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_USER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_ISOLATION_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_ISOLATION_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INTEGRITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTEGRITY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INTEGRITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GETDATA_EXTENSIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GETDATA_EXTENSIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GETDATA_EXTENSIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NULL_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NULL_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NULL_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALTER_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALTER_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALTER_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ORDER_BY_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ORDER_BY_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SPECIAL_CHARACTERS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPECIAL_CHARACTERS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SPECIAL_CHARACTERS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMNS_IN_GROUP_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMNS_IN_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMNS_IN_ORDER_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_ORDER_BY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_COLUMNS_IN_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_COLUMNS_IN_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_COLUMNS_IN_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_INDEX_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_INDEX_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_INDEX_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_ROW_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROW_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_ROW_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_STATEMENT_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_STATEMENT_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_STATEMENT_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_TABLES_IN_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_TABLES_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_USER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_USER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_USER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_CAPABILITIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_CAPABILITIES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_CAPABILITIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_XOPEN_CLI_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_XOPEN_CLI_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_XOPEN_CLI_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_SENSITIVITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_SENSITIVITY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_SENSITIVITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESCRIBE_PARAMETER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESCRIBE_PARAMETER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESCRIBE_PARAMETER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CATALOG_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CATALOG_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CATALOG_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLLATION_SEQ","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLLATION_SEQ","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLLATION_SEQ"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_IDENTIFIER_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_IDENTIFIER_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_IDENTIFIER_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AM_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AM_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AM_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AM_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AM_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AM_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AM_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CB_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CB_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CB_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CB_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CB_PRESERVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CB_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_LAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_ANY_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_ANY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_ANY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_ANY_ORDER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_ANY_ORDER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_ANY_ORDER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IC_UPPER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_UPPER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IC_UPPER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IC_LOWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_LOWER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IC_LOWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IC_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IC_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IC_MIXED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IC_MIXED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IC_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_LEFT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_LEFT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_LEFT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_RIGHT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_RIGHT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_RIGHT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_NESTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_NESTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_NESTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_NOT_ORDERED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_NOT_ORDERED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_NOT_ORDERED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_INNER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_INNER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_INNER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OJ_ALL_COMPARISON_OPS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OJ_ALL_COMPARISON_OPS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OJ_ALL_COMPARISON_OPS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCCO_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCCO_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCCO_LOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_LOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCCO_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCCO_OPT_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_OPT_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCCO_OPT_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCCO_OPT_VALUES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCCO_OPT_VALUES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCCO_OPT_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TC_DML","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DML","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TC_DML"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TC_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TC_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TC_DDL_COMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DDL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TC_DDL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TC_DDL_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TC_DDL_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TC_DDL_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_READ_UNCOMMITTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_READ_UNCOMMITTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_READ_COMMITTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_READ_COMMITTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_READ_COMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_REPEATABLE_READ","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_REPEATABLE_READ","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_SERIALIZABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_SERIALIZABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_SERIALIZABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NC_HIGH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_HIGH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NC_HIGH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NC_LOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_LOW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NC_LOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SPEC_MAJOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPEC_MAJOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SPEC_MAJOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SPEC_MINOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SPEC_MINOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SPEC_MINOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SPEC_STRING","package":"phobos","parentType":"","signature":"SQL_SPEC_STRING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SPEC_STRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQLSTATE_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQLSTATE_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQLSTATE_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_DSN_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_DSN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_DSN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_OPTION_STRING_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_OPTION_STRING_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_OPTION_STRING_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATA_AVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATA_AVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATA_AVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_METADATA_CHANGED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_METADATA_CHANGED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_METADATA_CHANGED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MORE_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MORE_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MORE_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_HANDLE_SENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_HANDLE_SENV","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_HANDLE_SENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ODBC_VERSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ODBC_VERSION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ODBC_VERSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CONNECTION_POOLING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_POOLING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_CONNECTION_POOLING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CP_MATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CP_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_CP_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_APPLICATION_KEY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_APPLICATION_KEY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_APPLICATION_KEY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_ONE_PER_DRIVER","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_ONE_PER_DRIVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_ONE_PER_DRIVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_ONE_PER_HENV","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_ONE_PER_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_ONE_PER_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_DRIVER_AWARE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_DRIVER_AWARE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_DRIVER_AWARE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_STRICT_MATCH","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_STRICT_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_STRICT_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CP_RELAXED_MATCH","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CP_RELAXED_MATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CP_RELAXED_MATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OV_ODBC2","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OV_ODBC2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OV_ODBC3","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC3","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OV_ODBC3"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OV_ODBC3_80","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC3_80","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OV_ODBC3_80"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OV_ODBC4","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OV_ODBC4","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OV_ODBC4"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACCESS_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACCESS_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACCESS_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AUTOCOMMIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AUTOCOMMIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AUTOCOMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOGIN_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOGIN_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOGIN_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OPT_TRACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OPT_TRACE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OPT_TRACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OPT_TRACEFILE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OPT_TRACEFILE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OPT_TRACEFILE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TRANSLATE_DLL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRANSLATE_DLL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TRANSLATE_DLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TRANSLATE_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TRANSLATE_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TRANSLATE_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURRENT_QUALIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURRENT_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURRENT_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_CURSORS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_CURSORS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_CURSORS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUIET_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUIET_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUIET_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PACKET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PACKET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PACKET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CONNECTION_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_CONNECTION_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_DISCONNECT_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_DISCONNECT_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_DISCONNECT_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ENLIST_IN_DTC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENLIST_IN_DTC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ENLIST_IN_DTC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ENLIST_IN_XA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENLIST_IN_XA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ENLIST_IN_XA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CONNECTION_DEAD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CONNECTION_DEAD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_CONNECTION_DEAD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ANSI_APP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ANSI_APP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ANSI_APP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_RESET_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_RESET_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_RESET_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ASYNC_DBC_EVENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_DBC_EVENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ASYNC_DBC_EVENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_CREDENTIALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_CREDENTIALS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_CREDENTIALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_REFRESH_CONNECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_REFRESH_CONNECTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_REFRESH_CONNECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MODE_READ_WRITE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MODE_READ_WRITE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MODE_READ_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MODE_READ_ONLY","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MODE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MODE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AUTOCOMMIT_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_AUTOCOMMIT_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AUTOCOMMIT_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AUTOCOMMIT_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_AUTOCOMMIT_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AUTOCOMMIT_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOGIN_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_LOGIN_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOGIN_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OPT_TRACE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OPT_TRACE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OPT_TRACE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OPT_TRACE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OPT_TRACE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OPT_TRACE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OPT_TRACE_FILE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_FILE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OPT_TRACE_FILE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CUR_USE_IF_NEEDED","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_IF_NEEDED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CUR_USE_IF_NEEDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CUR_USE_ODBC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_ODBC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CUR_USE_ODBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CUR_USE_DRIVER","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CUR_USE_DRIVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CUR_USE_DRIVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DB_RETURN_TO_POOL","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_DB_RETURN_TO_POOL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DB_RETURN_TO_POOL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DB_DISCONNECT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_DB_DISCONNECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DB_DISCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DTC_DONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_DONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DTC_DONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CD_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CD_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CD_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CD_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CD_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CD_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AA_TRUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AA_TRUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AA_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AA_FALSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AA_FALSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AA_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RESET_CONNECTION_YES","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RESET_CONNECTION_YES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RESET_CONNECTION_YES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_DBC_ENABLE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_DBC_ENABLE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_DBC_ENABLE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_DBC_ENABLE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_DBC_ENABLE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_DBC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_REFRESH_NOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_NOW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_REFRESH_NOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_REFRESH_AUTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_AUTO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_REFRESH_AUTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_REFRESH_MANUAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH_MANUAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_REFRESH_MANUAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUERY_TIMEOUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUERY_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUERY_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_ROWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROWS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_ROWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NOSCAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NOSCAN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NOSCAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_ENABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_ENABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_ENABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_KEYSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_KEYSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROWSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROWSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROWSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SIMULATE_CURSOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SIMULATE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SIMULATE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RETRIEVE_DATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETRIEVE_DATA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RETRIEVE_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_USE_BOOKMARKS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_USE_BOOKMARKS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_USE_BOOKMARKS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GET_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GET_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GET_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_NUMBER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_NUMBER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_NUMBER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ENABLE_AUTO_IPD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ENABLE_AUTO_IPD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ENABLE_AUTO_IPD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_FETCH_BOOKMARK_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_FETCH_BOOKMARK_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_FETCH_BOOKMARK_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAM_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAM_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAM_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAM_OPERATION_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_OPERATION_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAM_OPERATION_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAM_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAM_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAM_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAMS_PROCESSED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAMS_PROCESSED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAMS_PROCESSED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_PARAMSET_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_PARAMSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_PARAMSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ROW_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ROW_OPERATION_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_OPERATION_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ROW_OPERATION_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ROW_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ROW_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ROWS_FETCHED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROWS_FETCHED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ROWS_FETCHED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ROW_ARRAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ROW_ARRAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ROW_ARRAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_ASYNC_STMT_EVENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_ASYNC_STMT_EVENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_ASYNC_STMT_EVENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_SAMPLE_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_SAMPLE_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_SAMPLE_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_DYNAMIC_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_DYNAMIC_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_DYNAMIC_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_TYPE_EXCEPTION_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_LENGTH_EXCEPTION_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TE_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TE_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TE_CONTINUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_CONTINUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TE_CONTINUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TE_REPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TE_REPORT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TE_REPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LE_CONTINUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LE_CONTINUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LE_CONTINUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LE_REPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LE_REPORT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LE_REPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_BIND_BY_COLUMN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_PARAM_BIND_BY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUERY_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_QUERY_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUERY_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_ROWS_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MAX_ROWS_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_ROWS_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NOSCAN_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_NOSCAN_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NOSCAN_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NOSCAN_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_NOSCAN_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NOSCAN_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_LENGTH_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_MAX_LENGTH_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_LENGTH_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_ENABLE_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_ENABLE_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_ENABLE_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ASYNC_ENABLE_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_ENABLE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BIND_BY_COLUMN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_BIND_BY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCUR_READ_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCUR_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCUR_LOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_LOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCUR_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCUR_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCUR_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCUR_VALUES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCUR_VALUES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCUR_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_DYNAMIC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_STATIC","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_CURSOR_STATIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROWSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_ROWSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROWSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_KEYSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_KEYSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_KEYSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_NON_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_NON_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_NON_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_TRY_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_TRY_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_UNIQUE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_SC_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RD_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RD_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RD_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RD_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_RD_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RD_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UB_OFF","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_OFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UB_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UB_ON","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_ON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UB_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UB_VARIABLE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_UB_VARIABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UB_VARIABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ARRAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ARRAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ARRAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ARRAY_STATUS_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ARRAY_STATUS_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ARRAY_STATUS_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_BASE_COLUMN_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BASE_COLUMN_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_BASE_COLUMN_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_BASE_TABLE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BASE_TABLE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_BASE_TABLE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_BIND_OFFSET_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BIND_OFFSET_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_BIND_OFFSET_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_BIND_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_DATETIME_INTERVAL_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_DATETIME_INTERVAL_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_LITERAL_PREFIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LITERAL_PREFIX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_LITERAL_PREFIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_LITERAL_SUFFIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LITERAL_SUFFIX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_LITERAL_SUFFIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_LOCAL_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_LOCAL_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_LOCAL_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_MAXIMUM_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MAXIMUM_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_MAXIMUM_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_MINIMUM_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MINIMUM_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_MINIMUM_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_NUM_PREC_RADIX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_NUM_PREC_RADIX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_NUM_PREC_RADIX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_PARAMETER_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_PARAMETER_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_PARAMETER_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ROWS_PROCESSED_PTR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ROWS_PROCESSED_PTR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ROWS_PROCESSED_PTR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DESC_MIME_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DESC_MIME_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DESC_MIME_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INTERVAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INTERVAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INTERVAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_YEAR_TO_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_DAY_TO_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_DAY_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_DAY_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_HOUR_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_HOUR_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CODE_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CODE_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CODE_MINUTE_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_C_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_C_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_C_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TYPE_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TYPE_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TYPE_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_C_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_C_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_C_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_SQL_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_SQL_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_SQL_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_DESC_FIELD_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_DESC_FIELD_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_DESC_FIELD_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_DIAG_FIELD_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_DIAG_FIELD_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_DIAG_FIELD_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_INFO_TYPE_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_INFO_TYPE_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_INFO_TYPE_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_CONN_ATTR_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_CONN_ATTR_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_CONN_ATTR_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_STMT_ATTR_BASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_STMT_ATTR_BASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_STMT_ATTR_BASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_TYPE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TYPE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_PRECISION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_PRECISION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_SCALE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_SCALE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_DISPLAY_SIZE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_DISPLAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_DISPLAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_NULLABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_UNSIGNED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_UNSIGNED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_UNSIGNED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_MONEY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_MONEY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_MONEY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_UPDATABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_UPDATABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_UPDATABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_AUTO_INCREMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_AUTO_INCREMENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_AUTO_INCREMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_CASE_SENSITIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_CASE_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_SEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_TYPE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_TABLE_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_TABLE_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_TABLE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_OWNER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_OWNER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_OWNER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_QUALIFIER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_QUALIFIER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_QUALIFIER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_LABEL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_LABEL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_LABEL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_READONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_READONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_READONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_WRITE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_WRITE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ATTR_READWRITE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ATTR_READWRITE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ATTR_READWRITE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNSEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNSEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNSEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LIKE_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIKE_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LIKE_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALL_EXCEPT_LIKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALL_EXCEPT_LIKE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALL_EXCEPT_LIKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SEARCHABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INFO_FIRST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INFO_FIRST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INFO_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACTIVE_CONNECTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_CONNECTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACTIVE_CONNECTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACTIVE_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACTIVE_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_HDBC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HDBC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_HENV","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HENV","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_VER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_API_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_API_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_API_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_SAG_CLI_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SAG_CLI_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_SAG_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_SQL_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SQL_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONCAT_NULL_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONCAT_NULL_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONCAT_NULL_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CURSOR_ROLLBACK_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CURSOR_ROLLBACK_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_EXPRESSIONS_IN_ORDERBY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_EXPRESSIONS_IN_ORDERBY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_EXPRESSIONS_IN_ORDERBY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_OWNER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_OWNER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_OWNER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_PROCEDURE_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_PROCEDURE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_PROCEDURE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_QUALIFIER_NAME_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_QUALIFIER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_QUALIFIER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MULT_RESULT_SETS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULT_RESULT_SETS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MULT_RESULT_SETS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MULTIPLE_ACTIVE_TXN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MULTIPLE_ACTIVE_TXN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MULTIPLE_ACTIVE_TXN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OUTER_JOINS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OUTER_JOINS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OUTER_JOINS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OWNER_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OWNER_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OWNER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PROCEDURE_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PROCEDURE_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PROCEDURE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUALIFIER_NAME_SEPARATOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_NAME_SEPARATOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUALIFIER_NAME_SEPARATOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUALIFIER_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUALIFIER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCROLL_OPTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCROLL_OPTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCROLL_OPTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TABLE_TERM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TABLE_TERM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TABLE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NUMERIC_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NUMERIC_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NUMERIC_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SYSTEM_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SYSTEM_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SYSTEM_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIMEDATE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMEDATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_BIGINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_BIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_BIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_TINYINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_VARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_SQL_OPT_IEF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_SQL_OPT_IEF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_SQL_OPT_IEF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CORRELATION_NAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CORRELATION_NAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CORRELATION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NON_NULLABLE_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NON_NULLABLE_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NON_NULLABLE_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_HLIB","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HLIB","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_HLIB"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_ODBC_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOCK_TYPES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOCK_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_OPERATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_OPERATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_OPERATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POSITIONED_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POSITIONED_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POSITIONED_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BOOKMARK_PERSISTENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BOOKMARK_PERSISTENCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BOOKMARK_PERSISTENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STATIC_SENSITIVITY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_SENSITIVITY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STATIC_SENSITIVITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FILE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FILE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_COLUMN_ALIAS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_COLUMN_ALIAS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_COLUMN_ALIAS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GROUP_BY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_KEYWORDS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_KEYWORDS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OWNER_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OWNER_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OWNER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUALIFIER_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUALIFIER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUOTED_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUOTED_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUOTED_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SUBQUERIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UNION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UNION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ROW_SIZE_INCLUDES_LONG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_ROW_SIZE_INCLUDES_LONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_CHAR_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_CHAR_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_CHAR_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIMEDATE_ADD_INTERVALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_ADD_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMEDATE_ADD_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TIMEDATE_DIFF_INTERVALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TIMEDATE_DIFF_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TIMEDATE_DIFF_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NEED_LONG_DATA_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NEED_LONG_DATA_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NEED_LONG_DATA_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_BINARY_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_BINARY_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_BINARY_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LIKE_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIKE_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LIKE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUALIFIER_LOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUALIFIER_LOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUALIFIER_LOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ACTIVE_ENVIRONMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ACTIVE_ENVIRONMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ACTIVE_ENVIRONMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALTER_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ALTER_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALTER_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DATETIME_LITERALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DATETIME_LITERALS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DATETIME_LITERALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_MODE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_MODE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BATCH_ROW_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BATCH_ROW_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BATCH_ROW_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BATCH_SUPPORT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BATCH_SUPPORT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BATCH_SUPPORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_WCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_INTERVAL_DAY_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTERVAL_DAY_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_INTERVAL_DAY_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_INTERVAL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_INTERVAL_YEAR_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_WLONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WLONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_WVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_WVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_WVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_HDESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_HDESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_HDESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DYNAMIC_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DYNAMIC_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DYNAMIC_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DYNAMIC_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INDEX_KEYWORDS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INDEX_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INDEX_KEYWORDS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INFO_SCHEMA_VIEWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INFO_SCHEMA_VIEWS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INFO_SCHEMA_VIEWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_KEYSET_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_KEYSET_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_KEYSET_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_MAX_ASYNC_CONCURRENT_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ODBC_INTERFACE_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ODBC_INTERFACE_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ODBC_INTERFACE_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_ARRAY_ROW_COUNTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ARRAY_ROW_COUNTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_ARRAY_ROW_COUNTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_ARRAY_SELECTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ARRAY_SELECTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_ARRAY_SELECTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_DATETIME_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_DATETIME_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_DATETIME_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_FOREIGN_KEY_DELETE_RULE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_FOREIGN_KEY_DELETE_RULE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_FOREIGN_KEY_UPDATE_RULE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_GRANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_GRANT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_GRANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_NUMERIC_VALUE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_PREDICATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_PREDICATES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_PREDICATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_RELATIONAL_JOIN_OPERATORS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_RELATIONAL_JOIN_OPERATORS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_REVOKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_REVOKE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_REVOKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_ROW_VALUE_CONSTRUCTOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_ROW_VALUE_CONSTRUCTOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQL92_VALUE_EXPRESSIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQL92_VALUE_EXPRESSIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQL92_VALUE_EXPRESSIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STANDARD_CLI_CONFORMANCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STANDARD_CLI_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STANDARD_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STATIC_CURSOR_ATTRIBUTES1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_CURSOR_ATTRIBUTES1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STATIC_CURSOR_ATTRIBUTES1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_STATIC_CURSOR_ATTRIBUTES2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_STATIC_CURSOR_ATTRIBUTES2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_STATIC_CURSOR_ATTRIBUTES2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AGGREGATE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AGGREGATE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AGGREGATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DDL_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DDL_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DDL_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DM_VER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DM_VER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DM_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INSERT_STATEMENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INSERT_STATEMENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INSERT_STATEMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CONVERT_GUID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CONVERT_GUID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CONVERT_GUID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCHEMA_INFERENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCHEMA_INFERENCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCHEMA_INFERENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BINARY_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BINARY_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BINARY_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISO_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISO_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISO_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISO_BINARY_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISO_BINARY_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISO_BINARY_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LIMIT_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LIMIT_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LIMIT_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NATIVE_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NATIVE_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NATIVE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RETURN_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETURN_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RETURN_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FORMAT_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FORMAT_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FORMAT_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_DBC_FUNCTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_DBC_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_AWARE_POOLING_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_NOTIFICATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_NOTIFICATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_NOTIFICATION_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_NOTIFICATION_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_NOTIFICATION_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_NOTIFICATION_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DTC_TRANSITION_COST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_TRANSITION_COST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DTC_TRANSITION_COST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_COLUMN_SINGLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_SINGLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_COLUMN_SINGLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_COLUMN_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_COLUMN_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_COLUMN_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_SET_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_SET_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_SET_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_COLUMN_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_COLUMN_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_COLUMN_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_COLUMN_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_COLUMN_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_ADD_TABLE_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_ADD_TABLE_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_ADD_TABLE_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AT_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AT_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_NUMERIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_DECIMAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_INTEGER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_SMALLINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_FLOAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_REAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_REAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_DOUBLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_VARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_VARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_BIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_TINYINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_BIGINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_INTERVAL_YEAR_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTERVAL_YEAR_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_INTERVAL_YEAR_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_INTERVAL_DAY_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_INTERVAL_DAY_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_INTERVAL_DAY_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_WCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_WLONGVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WLONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_WVARCHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_WVARCHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_WVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CVT_GUID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CVT_GUID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CVT_GUID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_CVT_CONVERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_CVT_CONVERT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_CVT_CONVERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_CVT_CAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_CVT_CAST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_CVT_CAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_CONCAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CONCAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_CONCAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LEFT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LEFT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LEFT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LTRIM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LTRIM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LOCATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LOCATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LOCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LCASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LCASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_REPEAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_REPEAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_REPEAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_REPLACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_REPLACE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_REPLACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_RIGHT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_RIGHT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_RIGHT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_RTRIM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_RTRIM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_RTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_SUBSTRING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SUBSTRING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_SUBSTRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_UCASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_UCASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_UCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_ASCII","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_ASCII","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_ASCII"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_CHAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_DIFFERENCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_DIFFERENCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_DIFFERENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_LOCATE_2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_LOCATE_2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_LOCATE_2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_SOUNDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SOUNDEX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_SOUNDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_SPACE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_SPACE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_SPACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_BIT_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_BIT_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_BIT_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_CHAR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHAR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_CHAR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_CHARACTER_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_CHARACTER_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_CHARACTER_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_STR_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_STR_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_STR_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_CONVERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_CONVERT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_CONVERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_LOWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_LOWER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_LOWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_UPPER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_UPPER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_UPPER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_SUBSTRING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_SUBSTRING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_SUBSTRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_TRANSLATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRANSLATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_TRANSLATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_TRIM_BOTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_BOTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_TRIM_BOTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_TRIM_LEADING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_LEADING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_TRIM_LEADING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_TRIM_TRAILING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_TRIM_TRAILING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_TRIM_TRAILING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_OVERLAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_OVERLAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_OVERLAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SSF_CONCAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SSF_CONCAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SSF_CONCAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ABS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ABS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ABS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ACOS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ACOS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ACOS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ASIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ASIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ASIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ATAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ATAN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ATAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ATAN2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ATAN2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ATAN2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_CEILING","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_CEILING","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_CEILING"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_COS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_COS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_COS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_COT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_COT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_COT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_EXP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_EXP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_EXP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_FLOOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_FLOOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_FLOOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_LOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_LOG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_LOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_MOD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_MOD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_MOD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_SIGN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SIGN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_SIGN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_SIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_SIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_SQRT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_SQRT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_SQRT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_TAN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_TAN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_TAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_PI","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_PI","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_PI"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_RAND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_RAND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_RAND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_DEGREES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_DEGREES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_DEGREES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_LOG10","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_LOG10","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_LOG10"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_POWER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_POWER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_POWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_RADIANS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_RADIANS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_RADIANS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_ROUND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_ROUND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_ROUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_NUM_TRUNCATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_NUM_TRUNCATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_NUM_TRUNCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_BIT_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_BIT_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_BIT_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_CHAR_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_CHAR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_CHAR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_CHARACTER_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_CHARACTER_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_CHARACTER_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_EXTRACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_EXTRACT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_EXTRACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_OCTET_LENGTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_OCTET_LENGTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_OCTET_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SNVF_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SNVF_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SNVF_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_NOW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_NOW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_NOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_CURDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_CURDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_DAYOFMONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFMONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_DAYOFMONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_DAYOFWEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFWEEK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_DAYOFWEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_DAYOFYEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYOFYEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_DAYOFYEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_QUARTER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_QUARTER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_WEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_WEEK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_CURTIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURTIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_CURTIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_TIMESTAMPADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_TIMESTAMPADD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_TIMESTAMPADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_TIMESTAMPDIFF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_TIMESTAMPDIFF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_TIMESTAMPDIFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_DAYNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_DAYNAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_DAYNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_MONTHNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_MONTHNAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_MONTHNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_CURRENT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_CURRENT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_CURRENT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_CURRENT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_CURRENT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_CURRENT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_CURRENT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TD_EXTRACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TD_EXTRACT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TD_EXTRACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SDF_CURRENT_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SDF_CURRENT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SDF_CURRENT_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SDF_CURRENT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SDF_CURRENT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SDF_CURRENT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SDF_CURRENT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_SYS_USERNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_USERNAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_SYS_USERNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_SYS_DBNAME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_DBNAME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_SYS_DBNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_SYS_IFNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_SYS_IFNULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_SYS_IFNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_FRAC_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_FRAC_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_FRAC_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_WEEK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_WEEK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_QUARTER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_QUARTER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FN_TSI_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FN_TSI_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FN_TSI_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_NEXT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_NEXT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_ABSOLUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_RELATIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_LOCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_LOCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_LOCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_LOCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POS_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POS_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POS_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POS_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POS_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POSITIONED_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POSITIONED_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_POSITIONED_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_POSITIONED_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_SELECT_FOR_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_SELECT_FOR_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_BULK_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_BULK_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_UPDATE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_BULK_UPDATE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_DELETE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_BULK_DELETE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA1_BULK_FETCH_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA1_BULK_FETCH_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_READ_ONLY_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_READ_ONLY_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_READ_ONLY_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_LOCK_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_LOCK_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_LOCK_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_OPT_ROWVER_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_OPT_ROWVER_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_OPT_VALUES_CONCURRENCY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_OPT_VALUES_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_OPT_VALUES_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SENSITIVITY_ADDITIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_ADDITIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SENSITIVITY_ADDITIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SENSITIVITY_DELETIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_DELETIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SENSITIVITY_DELETIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SENSITIVITY_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SENSITIVITY_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SENSITIVITY_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_MAX_ROWS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_MAX_ROWS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_MAX_ROWS_INSERT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_INSERT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_MAX_ROWS_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_MAX_ROWS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_MAX_ROWS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_MAX_ROWS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_MAX_ROWS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_MAX_ROWS_CATALOG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_MAX_ROWS_CATALOG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_MAX_ROWS_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_CRC_EXACT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_CRC_EXACT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_CRC_EXACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_CRC_APPROXIMATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_CRC_APPROXIMATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_CRC_APPROXIMATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SIMULATE_NON_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_NON_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SIMULATE_NON_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SIMULATE_TRY_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_TRY_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SIMULATE_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA2_SIMULATE_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA2_SIMULATE_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA2_SIMULATE_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OAC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OAC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OAC_LEVEL1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_LEVEL1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OAC_LEVEL1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OAC_LEVEL2","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OAC_LEVEL2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OAC_LEVEL2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OSCC_NOT_COMPLIANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSCC_NOT_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OSCC_NOT_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OSCC_COMPLIANT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSCC_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OSCC_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OSC_MINIMUM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_MINIMUM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OSC_MINIMUM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OSC_CORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_CORE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OSC_CORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OSC_EXTENDED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OSC_EXTENDED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OSC_EXTENDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CB_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CB_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CB_NON_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CB_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CB_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SO_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SO_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SO_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SO_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SO_DYNAMIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SO_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SO_MIXED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_MIXED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SO_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SO_STATIC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SO_STATIC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SO_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FD_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FD_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FD_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CN_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CN_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CN_DIFFERENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_DIFFERENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CN_DIFFERENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CN_ANY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CN_ANY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CN_ANY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NNC_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NNC_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NNC_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NNC_NON_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NNC_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NNC_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NC_START","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_START","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NC_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NC_END","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NC_END","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NC_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FILE_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FILE_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FILE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FILE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FILE_QUALIFIER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FILE_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FILE_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_BLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_BLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_BLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_BOUND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_BOUND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_BOUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_OUTPUT_PARAMS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_OUTPUT_PARAMS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_OUTPUT_PARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GD_CONCURRENT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GD_CONCURRENT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GD_CONCURRENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PS_POSITIONED_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_POSITIONED_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PS_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PS_POSITIONED_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_POSITIONED_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PS_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PS_SELECT_FOR_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PS_SELECT_FOR_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PS_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GB_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GB_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GB_GROUP_BY_EQUALS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_GROUP_BY_EQUALS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GB_GROUP_BY_EQUALS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_GROUP_BY_CONTAINS_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GB_GROUP_BY_CONTAINS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GB_NO_RELATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_NO_RELATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GB_NO_RELATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_GB_COLLATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_GB_COLLATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_GB_COLLATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_OU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQ_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQ_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQ_EXISTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_EXISTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQ_EXISTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQ_IN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_IN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQ_IN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQ_QUANTIFIED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_QUANTIFIED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQ_QUANTIFIED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQ_CORRELATED_SUBQUERIES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQ_CORRELATED_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQ_CORRELATED_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_U_UNION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_U_UNION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_U_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_U_UNION_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_U_UNION_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_U_UNION_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_CLOSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_CLOSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_DROP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_DROP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_TRANSACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_OTHER_HSTMT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_OTHER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_OTHER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BP_SCROLL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BP_SCROLL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BP_SCROLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SS_ADDITIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_ADDITIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SS_ADDITIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SS_DELETIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_DELETIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SS_DELETIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SS_UPDATES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SS_UPDATES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SS_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CV_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CV_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CV_CHECK_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CHECK_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CV_CHECK_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CV_CASCADED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_CASCADED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CV_CASCADED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CV_LOCAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CV_LOCAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CV_LOCAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POS_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POS_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POS_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QL_START","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QL_START","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QL_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QL_END","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QL_END","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QL_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_AVG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_AVG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_AVG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_COUNT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_COUNT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_MAX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_MAX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_MAX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_MIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_MIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_MIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_SUM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_SUM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_SUM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_DISTINCT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_DISTINCT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_DISTINCT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_ALL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ALL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_EVERY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_EVERY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_EVERY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_ANY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ANY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_ANY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_STDEV_OP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_STDEV_OP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_STDEV_OP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_STDEV_SAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_STDEV_SAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_STDEV_SAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_VAR_SAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_VAR_SAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_VAR_SAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_VAR_POP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_VAR_POP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_VAR_POP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_ARRAY_AGG","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_ARRAY_AGG","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_ARRAY_AGG"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_COLLECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_COLLECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_COLLECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_FUSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_FUSION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_FUSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AF_INTERSECTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AF_INTERSECTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AF_INTERSECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_SQL92_ENTRY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_ENTRY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_SQL92_ENTRY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_FIPS127_2_TRANSITIONAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_FIPS127_2_TRANSITIONAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_FIPS127_2_TRANSITIONAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_SQL92_INTERMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_INTERMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_SQL92_INTERMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SC_SQL92_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SC_SQL92_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SC_SQL92_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_DATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_DATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_TIME","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_TIME","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_TIMESTAMP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_YEAR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_YEAR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_DAY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BRC_PROCEDURES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BRC_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BRC_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BRC_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BRC_ROLLED_UP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BRC_ROLLED_UP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BRC_ROLLED_UP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BS_SELECT_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_SELECT_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BS_SELECT_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BS_ROW_COUNT_EXPLICIT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_ROW_COUNT_EXPLICIT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BS_ROW_COUNT_EXPLICIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BS_SELECT_PROC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_SELECT_PROC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BS_SELECT_PROC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BS_ROW_COUNT_PROC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BS_ROW_COUNT_PROC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BS_ROW_COUNT_PROC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARC_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARC_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARC_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARC_NO_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARC_NO_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARC_NO_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PAS_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PAS_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PAS_NO_BATCH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_NO_BATCH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PAS_NO_BATCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PAS_NO_SELECT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PAS_NO_SELECT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PAS_NO_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IK_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IK_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IK_ASC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_ASC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IK_ASC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IK_DESC","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IK_DESC","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IK_DESC"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_ASSERTIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_ASSERTIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_ASSERTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_CHARACTER_SETS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CHARACTER_SETS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_CHARACTER_SETS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_CHECK_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CHECK_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_CHECK_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_COLLATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLLATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_COLLATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_COLUMN_DOMAIN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMN_DOMAIN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_COLUMN_DOMAIN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_COLUMN_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMN_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_COLUMN_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_COLUMNS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CONSTRAINT_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_CONSTRAINT_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_CONSTRAINT_TABLE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_CONSTRAINT_TABLE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_DOMAIN_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_DOMAIN_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_DOMAIN_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_DOMAINS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_DOMAINS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_DOMAINS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_KEY_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_KEY_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_KEY_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_REFERENTIAL_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_REFERENTIAL_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_SCHEMATA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_SCHEMATA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_SCHEMATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_SQL_LANGUAGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_SQL_LANGUAGES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_SQL_LANGUAGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_TABLE_CONSTRAINTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLE_CONSTRAINTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_TABLE_CONSTRAINTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_TABLE_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLE_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_TABLE_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_TABLES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TABLES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_TABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_TRANSLATIONS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_TRANSLATIONS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_TRANSLATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_USAGE_PRIVILEGES","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_USAGE_PRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_USAGE_PRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_VIEW_COLUMN_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEW_COLUMN_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_VIEW_COLUMN_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_VIEW_TABLE_USAGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEW_TABLE_USAGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_VIEW_TABLE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ISV_VIEWS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ISV_VIEWS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ISV_VIEWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_DOMAIN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_DOMAIN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_DROP_DOMAIN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_DROP_DOMAIN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_DOMAIN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_DOMAIN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_DOMAIN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_DROP_DOMAIN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_DROP_DOMAIN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_DROP_DOMAIN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CS_CREATE_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_CREATE_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CS_CREATE_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CS_AUTHORIZATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_AUTHORIZATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CS_AUTHORIZATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CS_DEFAULT_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CS_DEFAULT_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CS_DEFAULT_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CTR_CREATE_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CTR_CREATE_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CTR_CREATE_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA_CREATE_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CREATE_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA_CREATE_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CA_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CA_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CCS_CREATE_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_CREATE_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CCS_CREATE_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CCS_COLLATE_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_COLLATE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CCS_COLLATE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CCS_LIMITED_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCS_LIMITED_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CCS_LIMITED_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CCOL_CREATE_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CCOL_CREATE_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CCOL_CREATE_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CREATE_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CREATE_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CREATE_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CDO_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CDO_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CREATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CREATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CREATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_COMMIT_PRESERVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COMMIT_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_COMMIT_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_COMMIT_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COMMIT_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_COMMIT_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_GLOBAL_TEMPORARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_GLOBAL_TEMPORARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_GLOBAL_TEMPORARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_LOCAL_TEMPORARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_LOCAL_TEMPORARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_LOCAL_TEMPORARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CONSTRAINT_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CONSTRAINT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CONSTRAINT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_NON_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CONSTRAINT_NON_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_COLUMN_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_COLUMN_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_COLUMN_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_COLUMN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_COLUMN_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_COLUMN_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_COLUMN_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_TABLE_CONSTRAINT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_TABLE_CONSTRAINT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_TABLE_CONSTRAINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CT_CONSTRAINT_NAME_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CT_CONSTRAINT_NAME_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DI_CREATE_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DI_CREATE_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DI_CREATE_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DI_DROP_INDEX","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DI_DROP_INDEX","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DI_DROP_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DC_DROP_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DC_DROP_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DC_DROP_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DD_DROP_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_DROP_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DD_DROP_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DD_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DD_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DD_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DD_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DD_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DS_DROP_SCHEMA","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_DROP_SCHEMA","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DS_DROP_SCHEMA"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DS_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DS_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DS_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DS_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DS_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DCS_DROP_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DCS_DROP_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DCS_DROP_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DA_DROP_ASSERTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DA_DROP_ASSERTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DA_DROP_ASSERTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DT_DROP_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_DROP_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DT_DROP_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DT_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DT_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DT_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DT_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DT_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DTR_DROP_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTR_DROP_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DTR_DROP_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DV_DROP_VIEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_DROP_VIEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DV_DROP_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DV_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DV_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DV_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DV_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DV_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IS_INSERT_LITERALS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_INSERT_LITERALS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_INSERT_LITERALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IS_INSERT_SEARCHED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_INSERT_SEARCHED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_INSERT_SEARCHED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_IS_SELECT_INTO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_IS_SELECT_INTO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_IS_SELECT_INTO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OIC_CORE","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_CORE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OIC_CORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OIC_LEVEL1","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_LEVEL1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OIC_LEVEL1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_OIC_LEVEL2","package":"phobos","parentType":"","signature":"SQLUINTEGER SQL_OIC_LEVEL2","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_OIC_LEVEL2"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKD_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKD_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKD_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKD_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKD_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKD_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKD_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKD_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKD_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKU_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKU_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKU_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKU_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKU_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKU_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SFKU_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SFKU_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SFKU_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_USAGE_ON_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_USAGE_ON_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_USAGE_ON_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_USAGE_ON_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_USAGE_ON_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_USAGE_ON_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_USAGE_ON_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_USAGE_ON_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_USAGE_ON_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_WITH_GRANT_OPTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_WITH_GRANT_OPTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_WITH_GRANT_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_DELETE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_DELETE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_DELETE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_INSERT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_INSERT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_INSERT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_INSERT_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_INSERT_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_INSERT_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_REFERENCES_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_REFERENCES_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_REFERENCES_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_REFERENCES_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_REFERENCES_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_REFERENCES_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_SELECT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_SELECT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_SELECT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_UPDATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_UPDATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_UPDATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SG_UPDATE_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SG_UPDATE_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SG_UPDATE_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_EXISTS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_EXISTS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_EXISTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_ISNOTNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_ISNOTNULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_ISNOTNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_ISNULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_ISNULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_ISNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_MATCH_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_MATCH_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_MATCH_PARTIAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_PARTIAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_MATCH_PARTIAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_MATCH_UNIQUE_FULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_UNIQUE_FULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_MATCH_UNIQUE_FULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_MATCH_UNIQUE_PARTIAL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_MATCH_UNIQUE_PARTIAL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_MATCH_UNIQUE_PARTIAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_OVERLAPS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_OVERLAPS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_OVERLAPS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_UNIQUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_LIKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_LIKE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_LIKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_IN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_IN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_IN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_BETWEEN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_BETWEEN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_BETWEEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SP_QUANTIFIED_COMPARISON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SP_QUANTIFIED_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SP_QUANTIFIED_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_CORRESPONDING_CLAUSE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_CORRESPONDING_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_CORRESPONDING_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_CROSS_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_CROSS_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_CROSS_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_EXCEPT_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_EXCEPT_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_EXCEPT_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_FULL_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_FULL_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_FULL_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_INNER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_INNER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_INNER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_INTERSECT_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_INTERSECT_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_INTERSECT_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_LEFT_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_LEFT_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_LEFT_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_NATURAL_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_NATURAL_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_NATURAL_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_RIGHT_OUTER_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_RIGHT_OUTER_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_RIGHT_OUTER_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRJO_UNION_JOIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRJO_UNION_JOIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRJO_UNION_JOIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_USAGE_ON_DOMAIN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_DOMAIN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_USAGE_ON_DOMAIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_USAGE_ON_CHARACTER_SET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_CHARACTER_SET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_USAGE_ON_CHARACTER_SET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_USAGE_ON_COLLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_COLLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_USAGE_ON_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_USAGE_ON_TRANSLATION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_USAGE_ON_TRANSLATION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_USAGE_ON_TRANSLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_GRANT_OPTION_FOR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_GRANT_OPTION_FOR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_GRANT_OPTION_FOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_DELETE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_DELETE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_DELETE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_INSERT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_INSERT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_INSERT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_INSERT_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_INSERT_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_INSERT_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_REFERENCES_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_REFERENCES_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_REFERENCES_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_REFERENCES_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_REFERENCES_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_REFERENCES_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_SELECT_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_SELECT_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_SELECT_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_UPDATE_TABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_UPDATE_TABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_UPDATE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SR_UPDATE_COLUMN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SR_UPDATE_COLUMN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SR_UPDATE_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRVC_VALUE_EXPRESSION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_VALUE_EXPRESSION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRVC_VALUE_EXPRESSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRVC_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRVC_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRVC_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRVC_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SRVC_ROW_SUBQUERY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SRVC_ROW_SUBQUERY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SRVC_ROW_SUBQUERY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SVE_CASE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_CASE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SVE_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SVE_CAST","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_CAST","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SVE_CAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SVE_COALESCE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_COALESCE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SVE_COALESCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SVE_NULLIF","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SVE_NULLIF","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SVE_NULLIF"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCC_XOPEN_CLI_VERSION1","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCC_XOPEN_CLI_VERSION1","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCC_XOPEN_CLI_VERSION1"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SCC_ISO92_CLI","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SCC_ISO92_CLI","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SCC_ISO92_CLI"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_AWARE_POOLING_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_AWARE_POOLING_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DTC_ENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_ENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DTC_ENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DTC_UNENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DTC_UNENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DTC_UNENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_DBC_NOT_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_NOT_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_DBC_NOT_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ASYNC_DBC_CAPABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ASYNC_DBC_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ASYNC_DBC_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LC_TAKE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_TAKE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LC_TAKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LC_SKIP","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LC_SKIP","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LC_SKIP"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_SINGLE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_INSERT_SINGLE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_INSERT_SINGLE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_INSERT_SELECT_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_INSERT_SELECT_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_INSERT_SELECT_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_UPDATE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_UPDATE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_UPDATE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_DELETE_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_DELETE_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_DELETE_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RC_SELECT_INTO_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RC_SELECT_INTO_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RC_SELECT_INTO_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FC_NONE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_NONE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FC_JSON","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_JSON","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FC_JSON"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FC_JSON_BINARY","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FC_JSON_BINARY","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FC_JSON_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_FIRST_USER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST_USER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_FIRST_USER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_FIRST_SYSTEM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_FIRST_SYSTEM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_FIRST_SYSTEM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ENTIRE_ROWSET","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ENTIRE_ROWSET","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ENTIRE_ROWSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_POSITION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_POSITION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_REFRESH","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_REFRESH","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UPDATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UPDATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DELETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DELETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ADD","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ADD","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_UPDATE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_UPDATE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_UPDATE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DELETE_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DELETE_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DELETE_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_BY_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_BY_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_BY_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_LOCK_UNLOCK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_LOCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_BEST_ROWID","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_BEST_ROWID","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_BEST_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROWVER","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROWVER","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PC_NOT_PSEUDO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PC_NOT_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PC_NOT_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_QUICK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_QUICK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_QUICK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ENSURE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ENSURE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ENSURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_TABLE_STAT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_TABLE_STAT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_TABLE_STAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALL_CATALOGS","package":"phobos","parentType":"","signature":"SQL_ALL_CATALOGS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALL_CATALOGS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALL_SCHEMAS","package":"phobos","parentType":"","signature":"SQL_ALL_SCHEMAS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALL_SCHEMAS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ALL_TABLE_TYPES","package":"phobos","parentType":"","signature":"SQL_ALL_TABLE_TYPES","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ALL_TABLE_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_NOPROMPT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_NOPROMPT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_NOPROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_COMPLETE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_COMPLETE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_COMPLETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_PROMPT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_PROMPT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_PROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_DRIVER_COMPLETE_REQUIRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_DRIVER_COMPLETE_REQUIRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_DRIVER_COMPLETE_REQUIRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_DELETED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_DELETED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_DELETED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_UPDATED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_UPDATED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_UPDATED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_NOROW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_NOROW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_NOROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_ADDED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_ADDED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_ADDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_PROCEED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_PROCEED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_PROCEED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_ROW_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_ROW_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_ROW_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_SUCCESS","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_ERROR","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_ERROR","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_UNUSED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_UNUSED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_UNUSED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_DIAG_UNAVAILABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_DIAG_UNAVAILABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_DIAG_UNAVAILABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_PROCEED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_PROCEED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_PROCEED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_IGNORE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_IGNORE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_CASCADE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_CASCADE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RESTRICT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SET_NULL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NO_ACTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NO_ACTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NO_ACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SET_DEFAULT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SET_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SET_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INITIALLY_DEFERRED","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INITIALLY_DEFERRED","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INITIALLY_DEFERRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_INITIALLY_IMMEDIATE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_INITIALLY_IMMEDIATE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_INITIALLY_IMMEDIATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_NOT_DEFERRABLE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_NOT_DEFERRABLE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_NOT_DEFERRABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_TYPE_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_TYPE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_TYPE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_INPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_INPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_INPUT_OUTPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_INPUT_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RESULT_COL","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RESULT_COL","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RESULT_COL"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_OUTPUT","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_RETURN_VALUE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_RETURN_VALUE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_RETURN_VALUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_INPUT_OUTPUT_STREAM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_INPUT_OUTPUT_STREAM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_INPUT_OUTPUT_STREAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PARAM_OUTPUT_STREAM","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PARAM_OUTPUT_STREAM","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PARAM_OUTPUT_STREAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PT_UNKNOWN","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PT_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PT_PROCEDURE","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_PROCEDURE","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PT_PROCEDURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_PT_FUNCTION","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_PT_FUNCTION","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_PT_FUNCTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.odbc64","name":"SQL_SQLSTATE_SIZEW","package":"phobos","parentType":"","signature":"SQLINTEGER SQL_SQLSTATE_SIZEW","url":"/ddoc/phobos/etc/c/odbc/odbc64.html#SQL_SQLSTATE_SIZEW"},{"doc":"* ODBC Header Module * * ImportC translation from the $(LINK2 https://github.com/microsoft/ODBC-Specification, ODBC 4.0 Specification) Headers. * *...","kind":"module","module":"etc.c.odbc","name":"etc.c.odbc","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc.html"},{"doc":"","kind":"variable","module":"etc.c.odbc","name":"SQL_CA2_MAX_ROWS_AFFECTS_ALL","package":"phobos","parentType":"","signature":"int SQL_CA2_MAX_ROWS_AFFECTS_ALL","url":"/ddoc/phobos/etc/c/odbc.html#SQL_CA2_MAX_ROWS_AFFECTS_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc","name":"SQL_ODBC_KEYWORDS","package":"phobos","parentType":"","signature":"string SQL_ODBC_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc.html#SQL_ODBC_KEYWORDS"},{"doc":"","kind":"module","module":"etc.c.odbc.sql","name":"etc.c.odbc.sql","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/sql.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLAllocConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocConnect(SQLHENV,  SQLHDBC *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLAllocConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLAllocEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocEnv(SQLHENV *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLAllocEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLAllocStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocStmt(SQLHDBC,  SQLHSTMT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLAllocStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLError","package":"phobos","parentType":"","signature":"SQLRETURN SQLError(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLCHAR *,  SQLINTEGER *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLError.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLFreeConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeConnect(SQLHDBC)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLFreeConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLFreeEnv","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeEnv(SQLHENV)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLFreeEnv.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLSetParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetParam(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLULEN,  SQLSMALLINT,  SQLPOINTER,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLSetParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOption(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetStmtOption(SQLHSTMT,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLSetConnectOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOption(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLSetConnectOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLSetStmtOption","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetStmtOption(SQLHSTMT,  SQLUSMALLINT,  SQLROWCOUNT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLSetStmtOption.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLBindCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindCol(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLBindCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLCancel","package":"phobos","parentType":"","signature":"SQLRETURN SQLCancel(SQLHSTMT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLCancel.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnect(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLDescribeCol","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeCol(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLDescribeCol.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLDisconnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDisconnect(SQLHDBC)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLDisconnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLExecDirect","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirect(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLExecDirect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLExecute","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecute(SQLHSTMT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLExecute.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLFetch(SQLHSTMT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLFreeStmt","package":"phobos","parentType":"","signature":"SQLRETURN SQLFreeStmt(SQLHSTMT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLFreeStmt.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorName(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLNumResultCols","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumResultCols(SQLHSTMT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLNumResultCols.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLPrepare","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepare(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLPrepare.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLRowCount","package":"phobos","parentType":"","signature":"SQLRETURN SQLRowCount(SQLHSTMT,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLRowCount.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLSetCursorName","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorName(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLSetCursorName.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLTransact","package":"phobos","parentType":"","signature":"SQLRETURN SQLTransact(SQLHENV,  SQLHDBC,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLTransact.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumns(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetData","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetData(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetFunctions","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetFunctions(SQLHDBC,  SQLUSMALLINT,  SQLUSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetFunctions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfo(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLGetTypeInfo","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfo(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLGetTypeInfo.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLParamData","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamData(SQLHSTMT,  SQLPOINTER *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLParamData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLPutData","package":"phobos","parentType":"","signature":"SQLRETURN SQLPutData(SQLHSTMT,  SQLPOINTER,  SQLLEN)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLPutData.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLSpecialColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumns(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLSpecialColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLStatistics","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatistics(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLStatistics.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLTables","package":"phobos","parentType":"","signature":"SQLRETURN SQLTables(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLTables.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sql","name":"SQLDataSources","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSources(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sql/SQLDataSources.html"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"ODBCVER","package":"phobos","parentType":"","signature":"ODBCVER","url":"/ddoc/phobos/etc/c/odbc/sql.html#ODBCVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ACCESSIBLE_PROCEDURES","package":"phobos","parentType":"","signature":"SQL_ACCESSIBLE_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ACCESSIBLE_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ACCESSIBLE_TABLES","package":"phobos","parentType":"","signature":"SQL_ACCESSIBLE_TABLES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ACCESSIBLE_TABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ALL_TYPES","package":"phobos","parentType":"","signature":"SQL_ALL_TYPES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ALL_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ALTER_TABLE","package":"phobos","parentType":"","signature":"SQL_ALTER_TABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ALTER_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLALLOCCONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLALLOCCONNECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLALLOCCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLALLOCENV","package":"phobos","parentType":"","signature":"SQL_API_SQLALLOCENV","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLALLOCENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLALLOCSTMT","package":"phobos","parentType":"","signature":"SQL_API_SQLALLOCSTMT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLALLOCSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLBINDCOL","package":"phobos","parentType":"","signature":"SQL_API_SQLBINDCOL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLBINDCOL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLCANCEL","package":"phobos","parentType":"","signature":"SQL_API_SQLCANCEL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLCANCEL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLCOLUMNS","package":"phobos","parentType":"","signature":"SQL_API_SQLCOLUMNS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLCOLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLCONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLCONNECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLDATASOURCES","package":"phobos","parentType":"","signature":"SQL_API_SQLDATASOURCES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLDATASOURCES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLDESCRIBECOL","package":"phobos","parentType":"","signature":"SQL_API_SQLDESCRIBECOL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLDESCRIBECOL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLDISCONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLDISCONNECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLDISCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLERROR","package":"phobos","parentType":"","signature":"SQL_API_SQLERROR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLEXECDIRECT","package":"phobos","parentType":"","signature":"SQL_API_SQLEXECDIRECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLEXECDIRECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLEXECUTE","package":"phobos","parentType":"","signature":"SQL_API_SQLEXECUTE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLEXECUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLFETCH","package":"phobos","parentType":"","signature":"SQL_API_SQLFETCH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLFETCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLFREECONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLFREECONNECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLFREECONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLFREEENV","package":"phobos","parentType":"","signature":"SQL_API_SQLFREEENV","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLFREEENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLFREESTMT","package":"phobos","parentType":"","signature":"SQL_API_SQLFREESTMT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLFREESTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETCONNECTOPTION","package":"phobos","parentType":"","signature":"SQL_API_SQLGETCONNECTOPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETCONNECTOPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETCURSORNAME","package":"phobos","parentType":"","signature":"SQL_API_SQLGETCURSORNAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETCURSORNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETDATA","package":"phobos","parentType":"","signature":"SQL_API_SQLGETDATA","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETDATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETFUNCTIONS","package":"phobos","parentType":"","signature":"SQL_API_SQLGETFUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETFUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETINFO","package":"phobos","parentType":"","signature":"SQL_API_SQLGETINFO","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETINFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETSTMTOPTION","package":"phobos","parentType":"","signature":"SQL_API_SQLGETSTMTOPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETSTMTOPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLGETTYPEINFO","package":"phobos","parentType":"","signature":"SQL_API_SQLGETTYPEINFO","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLGETTYPEINFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLNUMRESULTCOLS","package":"phobos","parentType":"","signature":"SQL_API_SQLNUMRESULTCOLS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLNUMRESULTCOLS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLPARAMDATA","package":"phobos","parentType":"","signature":"SQL_API_SQLPARAMDATA","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLPARAMDATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLPREPARE","package":"phobos","parentType":"","signature":"SQL_API_SQLPREPARE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLPREPARE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLPUTDATA","package":"phobos","parentType":"","signature":"SQL_API_SQLPUTDATA","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLPUTDATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLROWCOUNT","package":"phobos","parentType":"","signature":"SQL_API_SQLROWCOUNT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLROWCOUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSETCONNECTOPTION","package":"phobos","parentType":"","signature":"SQL_API_SQLSETCONNECTOPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSETCONNECTOPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSETCURSORNAME","package":"phobos","parentType":"","signature":"SQL_API_SQLSETCURSORNAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSETCURSORNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSETPARAM","package":"phobos","parentType":"","signature":"SQL_API_SQLSETPARAM","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSETPARAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSETSTMTOPTION","package":"phobos","parentType":"","signature":"SQL_API_SQLSETSTMTOPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSETSTMTOPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSPECIALCOLUMNS","package":"phobos","parentType":"","signature":"SQL_API_SQLSPECIALCOLUMNS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSPECIALCOLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLSTATISTICS","package":"phobos","parentType":"","signature":"SQL_API_SQLSTATISTICS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLSTATISTICS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLTABLES","package":"phobos","parentType":"","signature":"SQL_API_SQLTABLES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLTABLES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_API_SQLTRANSACT","package":"phobos","parentType":"","signature":"SQL_API_SQLTRANSACT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_API_SQLTRANSACT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CB_DELETE","package":"phobos","parentType":"","signature":"SQL_CB_DELETE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CB_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CB_CLOSE","package":"phobos","parentType":"","signature":"SQL_CB_CLOSE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CB_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CB_PRESERVE","package":"phobos","parentType":"","signature":"SQL_CB_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CB_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CHAR","package":"phobos","parentType":"","signature":"SQL_CHAR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CLOSE","package":"phobos","parentType":"","signature":"SQL_CLOSE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_COMMIT","package":"phobos","parentType":"","signature":"SQL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_CURSOR_COMMIT_BEHAVIOR","package":"phobos","parentType":"","signature":"SQL_CURSOR_COMMIT_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_CURSOR_COMMIT_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DATA_AT_EXEC","package":"phobos","parentType":"","signature":"SQL_DATA_AT_EXEC","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DATA_AT_EXEC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DATA_SOURCE_NAME","package":"phobos","parentType":"","signature":"SQL_DATA_SOURCE_NAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DATA_SOURCE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DATA_SOURCE_READ_ONLY","package":"phobos","parentType":"","signature":"SQL_DATA_SOURCE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DATA_SOURCE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DBMS_NAME","package":"phobos","parentType":"","signature":"SQL_DBMS_NAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DBMS_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DBMS_VER","package":"phobos","parentType":"","signature":"SQL_DBMS_VER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DBMS_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DECIMAL","package":"phobos","parentType":"","signature":"SQL_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DEFAULT_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQL_DEFAULT_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DEFAULT_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DOUBLE","package":"phobos","parentType":"","signature":"SQL_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_DROP","package":"phobos","parentType":"","signature":"SQL_DROP","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ERROR","package":"phobos","parentType":"","signature":"SQL_ERROR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_LAST","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FD_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FD_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_ABSOLUTE","package":"phobos","parentType":"","signature":"SQL_FETCH_ABSOLUTE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_ABSOLUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_DIRECTION","package":"phobos","parentType":"","signature":"SQL_FETCH_DIRECTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_DIRECTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_FIRST","package":"phobos","parentType":"","signature":"SQL_FETCH_FIRST","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_LAST","package":"phobos","parentType":"","signature":"SQL_FETCH_LAST","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_LAST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_NEXT","package":"phobos","parentType":"","signature":"SQL_FETCH_NEXT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_NEXT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_PRIOR","package":"phobos","parentType":"","signature":"SQL_FETCH_PRIOR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_PRIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FETCH_RELATIVE","package":"phobos","parentType":"","signature":"SQL_FETCH_RELATIVE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FETCH_RELATIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_FLOAT","package":"phobos","parentType":"","signature":"SQL_FLOAT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_GD_ANY_COLUMN","package":"phobos","parentType":"","signature":"SQL_GD_ANY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_GD_ANY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_GD_ANY_ORDER","package":"phobos","parentType":"","signature":"SQL_GD_ANY_ORDER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_GD_ANY_ORDER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_GETDATA_EXTENSIONS","package":"phobos","parentType":"","signature":"SQL_GETDATA_EXTENSIONS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_GETDATA_EXTENSIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IC_LOWER","package":"phobos","parentType":"","signature":"SQL_IC_LOWER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IC_LOWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IC_MIXED","package":"phobos","parentType":"","signature":"SQL_IC_MIXED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IC_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IC_SENSITIVE","package":"phobos","parentType":"","signature":"SQL_IC_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IC_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IC_UPPER","package":"phobos","parentType":"","signature":"SQL_IC_UPPER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IC_UPPER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQL_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_IDENTIFIER_QUOTE_CHAR","package":"phobos","parentType":"","signature":"SQL_IDENTIFIER_QUOTE_CHAR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_IDENTIFIER_QUOTE_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INDEX_ALL","package":"phobos","parentType":"","signature":"SQL_INDEX_ALL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INDEX_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INDEX_CLUSTERED","package":"phobos","parentType":"","signature":"SQL_INDEX_CLUSTERED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INDEX_CLUSTERED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INDEX_HASHED","package":"phobos","parentType":"","signature":"SQL_INDEX_HASHED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INDEX_HASHED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INDEX_OTHER","package":"phobos","parentType":"","signature":"SQL_INDEX_OTHER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INDEX_OTHER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INDEX_UNIQUE","package":"phobos","parentType":"","signature":"SQL_INDEX_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INDEX_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INTEGER","package":"phobos","parentType":"","signature":"SQL_INTEGER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INTEGRITY","package":"phobos","parentType":"","signature":"SQL_INTEGRITY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INTEGRITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_INVALID_HANDLE","package":"phobos","parentType":"","signature":"SQL_INVALID_HANDLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_INVALID_HANDLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_CATALOG_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_CATALOG_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_CATALOG_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMN_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMN_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMN_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMNS_IN_GROUP_BY","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMNS_IN_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMNS_IN_INDEX","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMNS_IN_INDEX","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMNS_IN_ORDER_BY","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMNS_IN_ORDER_BY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_COLUMNS_IN_TABLE","package":"phobos","parentType":"","signature":"SQL_MAX_COLUMNS_IN_TABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_COLUMNS_IN_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_CURSOR_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_CURSOR_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_CURSOR_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_INDEX_SIZE","package":"phobos","parentType":"","signature":"SQL_MAX_INDEX_SIZE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_INDEX_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_MESSAGE_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAX_MESSAGE_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_MESSAGE_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_ROW_SIZE","package":"phobos","parentType":"","signature":"SQL_MAX_ROW_SIZE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_ROW_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_SCHEMA_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_SCHEMA_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_SCHEMA_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_STATEMENT_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_STATEMENT_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_STATEMENT_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_TABLE_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_TABLE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_TABLE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_TABLES_IN_SELECT","package":"phobos","parentType":"","signature":"SQL_MAX_TABLES_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAX_USER_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_USER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAX_USER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_CATALOG_NAME_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_COLUMN_NAME_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_COLUMNS_IN_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_INDEX","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_COLUMNS_IN_INDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_COLUMNS_IN_ORDER_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_CURSOR_NAME_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_INDEX_SIZE","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_INDEX_SIZE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_INDEX_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_ROW_SIZE","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_ROW_SIZE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_ROW_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_SCHEMA_NAME_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_STATEMENT_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_STATEMENT_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_STATEMENT_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_TABLES_IN_SELECT","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_TABLES_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_TABLES_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_MAXIMUM_USER_NAME_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAXIMUM_USER_NAME_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_MAXIMUM_USER_NAME_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NC_HIGH","package":"phobos","parentType":"","signature":"SQL_NC_HIGH","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NC_HIGH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NC_LOW","package":"phobos","parentType":"","signature":"SQL_NC_LOW","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NC_LOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NEED_DATA","package":"phobos","parentType":"","signature":"SQL_NEED_DATA","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NEED_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NO_NULLS","package":"phobos","parentType":"","signature":"SQL_NO_NULLS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NO_NULLS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NTS","package":"phobos","parentType":"","signature":"SQL_NTS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NTSL","package":"phobos","parentType":"","signature":"LONG SQL_NTSL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NTSL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULL_COLLATION","package":"phobos","parentType":"","signature":"SQL_NULL_COLLATION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULL_COLLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULL_DATA","package":"phobos","parentType":"","signature":"SQL_NULL_DATA","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULL_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULL_HDBC","package":"phobos","parentType":"","signature":"SQL_NULL_HDBC","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULL_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULL_HENV","package":"phobos","parentType":"","signature":"SQL_NULL_HENV","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULL_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULL_HSTMT","package":"phobos","parentType":"","signature":"SQL_NULL_HSTMT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULL_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULLABLE","package":"phobos","parentType":"","signature":"SQL_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NULLABLE_UNKNOWN","package":"phobos","parentType":"","signature":"SQL_NULLABLE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NULLABLE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_NUMERIC","package":"phobos","parentType":"","signature":"SQL_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","package":"phobos","parentType":"","signature":"SQL_ORDER_BY_COLUMNS_IN_SELECT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ORDER_BY_COLUMNS_IN_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_PC_PSEUDO","package":"phobos","parentType":"","signature":"SQL_PC_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_PC_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_PC_UNKNOWN","package":"phobos","parentType":"","signature":"SQL_PC_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_PC_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_REAL","package":"phobos","parentType":"","signature":"SQL_REAL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_RESET_PARAMS","package":"phobos","parentType":"","signature":"SQL_RESET_PARAMS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_RESET_PARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_ROLLBACK","package":"phobos","parentType":"","signature":"SQL_ROLLBACK","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_ROLLBACK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCCO_LOCK","package":"phobos","parentType":"","signature":"SQL_SCCO_LOCK","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCCO_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCCO_OPT_ROWVER","package":"phobos","parentType":"","signature":"SQL_SCCO_OPT_ROWVER","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCCO_OPT_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCCO_OPT_VALUES","package":"phobos","parentType":"","signature":"SQL_SCCO_OPT_VALUES","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCCO_OPT_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCCO_READ_ONLY","package":"phobos","parentType":"","signature":"SQL_SCCO_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCCO_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCOPE_CURROW","package":"phobos","parentType":"","signature":"SQL_SCOPE_CURROW","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCOPE_CURROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCOPE_SESSION","package":"phobos","parentType":"","signature":"SQL_SCOPE_SESSION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCOPE_SESSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCOPE_TRANSACTION","package":"phobos","parentType":"","signature":"SQL_SCOPE_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCOPE_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SCROLL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQL_SCROLL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SCROLL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SEARCH_PATTERN_ESCAPE","package":"phobos","parentType":"","signature":"SQL_SEARCH_PATTERN_ESCAPE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SEARCH_PATTERN_ESCAPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SERVER_NAME","package":"phobos","parentType":"","signature":"SQL_SERVER_NAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SERVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SMALLINT","package":"phobos","parentType":"","signature":"SQL_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SPECIAL_CHARACTERS","package":"phobos","parentType":"","signature":"SQL_SPECIAL_CHARACTERS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SPECIAL_CHARACTERS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_STILL_EXECUTING","package":"phobos","parentType":"","signature":"SQL_STILL_EXECUTING","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_STILL_EXECUTING"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SUCCESS","package":"phobos","parentType":"","signature":"SQL_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_SUCCESS_WITH_INFO","package":"phobos","parentType":"","signature":"SQL_SUCCESS_WITH_INFO","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_SUCCESS_WITH_INFO"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TC_ALL","package":"phobos","parentType":"","signature":"SQL_TC_ALL","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TC_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TC_DDL_COMMIT","package":"phobos","parentType":"","signature":"SQL_TC_DDL_COMMIT","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TC_DDL_COMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TC_DDL_IGNORE","package":"phobos","parentType":"","signature":"SQL_TC_DDL_IGNORE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TC_DDL_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TC_DML","package":"phobos","parentType":"","signature":"SQL_TC_DML","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TC_DML"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TC_NONE","package":"phobos","parentType":"","signature":"SQL_TC_NONE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_CAPABLE","package":"phobos","parentType":"","signature":"SQL_TXN_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_ISOLATION_OPTION","package":"phobos","parentType":"","signature":"SQL_TXN_ISOLATION_OPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_READ_COMMITTED","package":"phobos","parentType":"","signature":"SQL_TXN_READ_COMMITTED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_READ_COMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_READ_UNCOMMITTED","package":"phobos","parentType":"","signature":"SQL_TXN_READ_UNCOMMITTED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_REPEATABLE_READ","package":"phobos","parentType":"","signature":"SQL_TXN_REPEATABLE_READ","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TXN_SERIALIZABLE","package":"phobos","parentType":"","signature":"SQL_TXN_SERIALIZABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TXN_SERIALIZABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_CAPABLE","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_CAPABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_CAPABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_ISOLATION_OPTION","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_ISOLATION_OPTION","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_ISOLATION_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_READ_COMMITTED","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_READ_COMMITTED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_READ_COMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_READ_UNCOMMITTED","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_READ_UNCOMMITTED","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_READ_UNCOMMITTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_REPEATABLE_READ","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_REPEATABLE_READ","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_REPEATABLE_READ"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_TRANSACTION_SERIALIZABLE","package":"phobos","parentType":"","signature":"SQL_TRANSACTION_SERIALIZABLE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_TRANSACTION_SERIALIZABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_UNBIND","package":"phobos","parentType":"","signature":"SQL_UNBIND","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_UNBIND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_UNKNOWN_TYPE","package":"phobos","parentType":"","signature":"SQL_UNKNOWN_TYPE","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_UNKNOWN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_USER_NAME","package":"phobos","parentType":"","signature":"SQL_USER_NAME","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_USER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sql","name":"SQL_VARCHAR","package":"phobos","parentType":"","signature":"SQL_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/sql.html#SQL_VARCHAR"},{"doc":"","kind":"module","module":"etc.c.odbc.sqlext","name":"etc.c.odbc.sqlext","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/sqlext.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLDriverConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnect(SQLHDBC,  SQLHWND,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLDriverConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLBrowseConnect","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnect(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLBrowseConnect.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLColumnPrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivileges(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLColumnPrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLColAttributes","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributes(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLColAttributes.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLDescribeParam","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeParam(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLDescribeParam.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLExtendedFetch","package":"phobos","parentType":"","signature":"SQLRETURN SQLExtendedFetch(SQLHSTMT,  SQLUSMALLINT,  SQLINTEGER,  SQLUINTEGER *,  SQLUSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLExtendedFetch.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLForeignKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeys(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLForeignKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLMoreResults","package":"phobos","parentType":"","signature":"SQLRETURN SQLMoreResults(SQLHSTMT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLMoreResults.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLNativeSql","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSql(SQLHDBC,  SQLCHAR *,  SQLINTEGER,  SQLCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLNativeSql.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLNumParams","package":"phobos","parentType":"","signature":"SQLRETURN SQLNumParams(SQLHSTMT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLNumParams.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLParamOptions","package":"phobos","parentType":"","signature":"SQLRETURN SQLParamOptions(SQLHSTMT,  SQLUINTEGER,  SQLUINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLParamOptions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLPrimaryKeys","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeys(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLPrimaryKeys.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLProcedureColumns","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumns(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLProcedureColumns.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLProcedures","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedures(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLProcedures.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLSetPos","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetPos(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLSetPos.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLTablePrivileges","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivileges(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLTablePrivileges.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLDrivers","package":"phobos","parentType":"","signature":"SQLRETURN SQLDrivers(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLDrivers.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLBindParameter","package":"phobos","parentType":"","signature":"SQLRETURN SQLBindParameter(SQLHSTMT,  SQLUSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLSMALLINT,  SQLULEN,  SQLSMALLINT,  SQLPOINTER,  SQLLEN,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLBindParameter.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLSetScrollOptions","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetScrollOptions(SQLHSTMT,  SQLUSMALLINT,  SQLLEN,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLSetScrollOptions.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"ODBCGetTryWaitValue","package":"phobos","parentType":"","signature":"DWORD ODBCGetTryWaitValue()","url":"/ddoc/phobos/etc/c/odbc/sqlext/ODBCGetTryWaitValue.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"ODBCSetTryWaitValue","package":"phobos","parentType":"","signature":"BOOL ODBCSetTryWaitValue(DWORD)","url":"/ddoc/phobos/etc/c/odbc/sqlext/ODBCSetTryWaitValue.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"TraceOpenLogFile","package":"phobos","parentType":"","signature":"RETCODE TraceOpenLogFile(LPWSTR,  LPWSTR,  DWORD)","url":"/ddoc/phobos/etc/c/odbc/sqlext/TraceOpenLogFile.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"TraceCloseLogFile","package":"phobos","parentType":"","signature":"RETCODE TraceCloseLogFile()","url":"/ddoc/phobos/etc/c/odbc/sqlext/TraceCloseLogFile.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"TraceReturn","package":"phobos","parentType":"","signature":"VOID TraceReturn(RETCODE,  RETCODE)","url":"/ddoc/phobos/etc/c/odbc/sqlext/TraceReturn.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"TraceVersion","package":"phobos","parentType":"","signature":"DWORD TraceVersion()","url":"/ddoc/phobos/etc/c/odbc/sqlext/TraceVersion.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLBulkOperations","package":"phobos","parentType":"","signature":"SQLRETURN SQLBulkOperations(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLBulkOperations.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlext","name":"SQLAllocHandleStd","package":"phobos","parentType":"","signature":"SQLRETURN SQLAllocHandleStd(  SQLSMALLINT,  SQLHANDLE,  SQLHANDLE *)","url":"/ddoc/phobos/etc/c/odbc/sqlext/SQLAllocHandleStd.html"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SPEC_MAJOR","package":"phobos","parentType":"","signature":"SQL_SPEC_MAJOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SPEC_MAJOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SPEC_MINOR","package":"phobos","parentType":"","signature":"SQL_SPEC_MINOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SPEC_MINOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SPEC_STRING","package":"phobos","parentType":"","signature":"char[] SQL_SPEC_STRING","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SPEC_STRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ACCESS_MODE","package":"phobos","parentType":"","signature":"SQL_ACCESS_MODE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ACCESS_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ACTIVE_CONNECTIONS","package":"phobos","parentType":"","signature":"SQL_ACTIVE_CONNECTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ACTIVE_CONNECTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ACTIVE_STATEMENTS","package":"phobos","parentType":"","signature":"SQL_ACTIVE_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ACTIVE_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DATE","package":"phobos","parentType":"","signature":"SQL_DATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TIME","package":"phobos","parentType":"","signature":"SQL_TIME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SIGNED_OFFSET","package":"phobos","parentType":"","signature":"SQL_SIGNED_OFFSET","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SIGNED_OFFSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TINYINT","package":"phobos","parentType":"","signature":"SQL_TINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UNSIGNED_OFFSET","package":"phobos","parentType":"","signature":"SQL_UNSIGNED_OFFSET","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UNSIGNED_OFFSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ADD","package":"phobos","parentType":"","signature":"SQL_ADD","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ALL_EXCEPT_LIKE","package":"phobos","parentType":"","signature":"SQL_ALL_EXCEPT_LIKE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ALL_EXCEPT_LIKE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_ALL_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_API_ALL_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_ALL_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLCOLATTRIBUTES","package":"phobos","parentType":"","signature":"SQL_API_SQLCOLATTRIBUTES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLCOLATTRIBUTES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLDRIVERCONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLDRIVERCONNECT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLDRIVERCONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLBROWSECONNECT","package":"phobos","parentType":"","signature":"SQL_API_SQLBROWSECONNECT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLBROWSECONNECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLCOLUMNPRIVILEGES","package":"phobos","parentType":"","signature":"SQL_API_SQLCOLUMNPRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLCOLUMNPRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLDESCRIBEPARAM","package":"phobos","parentType":"","signature":"SQL_API_SQLDESCRIBEPARAM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLDESCRIBEPARAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLEXTENDEDFETCH","package":"phobos","parentType":"","signature":"SQL_API_SQLEXTENDEDFETCH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLEXTENDEDFETCH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLFOREIGNKEYS","package":"phobos","parentType":"","signature":"SQL_API_SQLFOREIGNKEYS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLFOREIGNKEYS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLMORERESULTS","package":"phobos","parentType":"","signature":"SQL_API_SQLMORERESULTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLMORERESULTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLNATIVESQL","package":"phobos","parentType":"","signature":"SQL_API_SQLNATIVESQL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLNATIVESQL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLNUMPARAMS","package":"phobos","parentType":"","signature":"SQL_API_SQLNUMPARAMS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLNUMPARAMS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLPARAMOPTIONS","package":"phobos","parentType":"","signature":"SQL_API_SQLPARAMOPTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLPARAMOPTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLPRIMARYKEYS","package":"phobos","parentType":"","signature":"SQL_API_SQLPRIMARYKEYS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLPRIMARYKEYS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLPROCEDURECOLUMNS","package":"phobos","parentType":"","signature":"SQL_API_SQLPROCEDURECOLUMNS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLPROCEDURECOLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLPROCEDURES","package":"phobos","parentType":"","signature":"SQL_API_SQLPROCEDURES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLPROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLSETPOS","package":"phobos","parentType":"","signature":"SQL_API_SQLSETPOS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLSETPOS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLSETSCROLLOPTIONS","package":"phobos","parentType":"","signature":"SQL_API_SQLSETSCROLLOPTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLSETSCROLLOPTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLTABLEPRIVILEGES","package":"phobos","parentType":"","signature":"SQL_API_SQLTABLEPRIVILEGES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLTABLEPRIVILEGES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLDRIVERS","package":"phobos","parentType":"","signature":"SQL_API_SQLDRIVERS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLDRIVERS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_SQLBINDPARAMETER","package":"phobos","parentType":"","signature":"SQL_API_SQLBINDPARAMETER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_SQLBINDPARAMETER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_API_LOADBYORDINAL","package":"phobos","parentType":"","signature":"SQL_API_LOADBYORDINAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_API_LOADBYORDINAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ASYNC_ENABLE","package":"phobos","parentType":"","signature":"SQL_ASYNC_ENABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ASYNC_ENABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ASYNC_ENABLE_OFF","package":"phobos","parentType":"","signature":"SQL_ASYNC_ENABLE_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ASYNC_ENABLE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ASYNC_ENABLE_ON","package":"phobos","parentType":"","signature":"SQL_ASYNC_ENABLE_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ASYNC_ENABLE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ASYNC_ENABLE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_ASYNC_ENABLE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ASYNC_ENABLE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ATTR_CONNECTION_DEAD","package":"phobos","parentType":"","signature":"SQL_ATTR_CONNECTION_DEAD","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ATTR_CONNECTION_DEAD"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ATTR_READONLY","package":"phobos","parentType":"","signature":"SQL_ATTR_READONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ATTR_READONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ATTR_READWRITE_UNKNOWN","package":"phobos","parentType":"","signature":"SQL_ATTR_READWRITE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ATTR_READWRITE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ATTR_WRITE","package":"phobos","parentType":"","signature":"SQL_ATTR_WRITE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ATTR_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AUTOCOMMIT","package":"phobos","parentType":"","signature":"SQL_AUTOCOMMIT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AUTOCOMMIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AUTOCOMMIT_OFF","package":"phobos","parentType":"","signature":"SQL_AUTOCOMMIT_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AUTOCOMMIT_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AUTOCOMMIT_ON","package":"phobos","parentType":"","signature":"SQL_AUTOCOMMIT_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AUTOCOMMIT_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AUTOCOMMIT_DEFAULT","package":"phobos","parentType":"","signature":"SQL_AUTOCOMMIT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AUTOCOMMIT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BEST_ROWID","package":"phobos","parentType":"","signature":"SQL_BEST_ROWID","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BEST_ROWID"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BIGINT","package":"phobos","parentType":"","signature":"SQL_BIGINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BINARY","package":"phobos","parentType":"","signature":"SQL_BINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BIND_BY_COLUMN","package":"phobos","parentType":"","signature":"SQL_BIND_BY_COLUMN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BIND_BY_COLUMN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BIND_TYPE","package":"phobos","parentType":"","signature":"SQL_BIND_TYPE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BIND_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BIND_TYPE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_BIND_TYPE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BIND_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BIT","package":"phobos","parentType":"","signature":"SQL_BIT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BOOKMARK_PERSISTENCE","package":"phobos","parentType":"","signature":"SQL_BOOKMARK_PERSISTENCE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BOOKMARK_PERSISTENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_CLOSE","package":"phobos","parentType":"","signature":"SQL_BP_CLOSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_DELETE","package":"phobos","parentType":"","signature":"SQL_BP_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_DROP","package":"phobos","parentType":"","signature":"SQL_BP_DROP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_DROP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_TRANSACTION","package":"phobos","parentType":"","signature":"SQL_BP_TRANSACTION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_TRANSACTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_UPDATE","package":"phobos","parentType":"","signature":"SQL_BP_UPDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_OTHER_HSTMT","package":"phobos","parentType":"","signature":"SQL_BP_OTHER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_OTHER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_BP_SCROLL","package":"phobos","parentType":"","signature":"SQL_BP_SCROLL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_BP_SCROLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_BINARY","package":"phobos","parentType":"","signature":"SQL_C_BINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_BIT","package":"phobos","parentType":"","signature":"SQL_C_BIT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_CHAR","package":"phobos","parentType":"","signature":"SQL_C_CHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_DATE","package":"phobos","parentType":"","signature":"SQL_C_DATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_DOUBLE","package":"phobos","parentType":"","signature":"SQL_C_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_FLOAT","package":"phobos","parentType":"","signature":"SQL_C_FLOAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_LONG","package":"phobos","parentType":"","signature":"SQL_C_LONG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_LONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_SHORT","package":"phobos","parentType":"","signature":"SQL_C_SHORT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_SHORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_SLONG","package":"phobos","parentType":"","signature":"SQL_C_SLONG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_SLONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_SSHORT","package":"phobos","parentType":"","signature":"SQL_C_SSHORT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_SSHORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_STINYINT","package":"phobos","parentType":"","signature":"SQL_C_STINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_STINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_TIME","package":"phobos","parentType":"","signature":"SQL_C_TIME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_C_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_TINYINT","package":"phobos","parentType":"","signature":"SQL_C_TINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_ULONG","package":"phobos","parentType":"","signature":"SQL_C_ULONG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_ULONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_USHORT","package":"phobos","parentType":"","signature":"SQL_C_USHORT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_USHORT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_UTINYINT","package":"phobos","parentType":"","signature":"SQL_C_UTINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_UTINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_BOOKMARK","package":"phobos","parentType":"","signature":"SQL_C_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_C_DEFAULT","package":"phobos","parentType":"","signature":"SQL_C_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_C_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CASCADE","package":"phobos","parentType":"","signature":"SQL_CASCADE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CASCADE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CB_NON_NULL","package":"phobos","parentType":"","signature":"SQL_CB_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CB_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CB_NULL","package":"phobos","parentType":"","signature":"SQL_CB_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CB_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CC_CLOSE","package":"phobos","parentType":"","signature":"SQL_CC_CLOSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CC_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CC_DELETE","package":"phobos","parentType":"","signature":"SQL_CC_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CC_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CC_PRESERVE","package":"phobos","parentType":"","signature":"SQL_CC_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CC_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CD_FALSE","package":"phobos","parentType":"","signature":"SQL_CD_FALSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CD_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CD_TRUE","package":"phobos","parentType":"","signature":"SQL_CD_TRUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CD_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CN_ANY","package":"phobos","parentType":"","signature":"SQL_CN_ANY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CN_ANY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CN_DIFFERENT","package":"phobos","parentType":"","signature":"SQL_CN_DIFFERENT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CN_DIFFERENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CN_NONE","package":"phobos","parentType":"","signature":"SQL_CN_NONE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CN_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_ALIAS","package":"phobos","parentType":"","signature":"SQL_COLUMN_ALIAS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_ALIAS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_COUNT","package":"phobos","parentType":"","signature":"SQL_COLUMN_COUNT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_COUNT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_NAME","package":"phobos","parentType":"","signature":"SQL_COLUMN_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_DISPLAY_SIZE","package":"phobos","parentType":"","signature":"SQL_COLUMN_DISPLAY_SIZE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_DISPLAY_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_LABEL","package":"phobos","parentType":"","signature":"SQL_COLUMN_LABEL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_LABEL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_LENGTH","package":"phobos","parentType":"","signature":"SQL_COLUMN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_MONEY","package":"phobos","parentType":"","signature":"SQL_COLUMN_MONEY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_MONEY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_NULLABLE","package":"phobos","parentType":"","signature":"SQL_COLUMN_NULLABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_NULLABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_OWNER_NAME","package":"phobos","parentType":"","signature":"SQL_COLUMN_OWNER_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_OWNER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_PRECISION","package":"phobos","parentType":"","signature":"SQL_COLUMN_PRECISION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_PRECISION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_QUALIFIER_NAME","package":"phobos","parentType":"","signature":"SQL_COLUMN_QUALIFIER_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_QUALIFIER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_SCALE","package":"phobos","parentType":"","signature":"SQL_COLUMN_SCALE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_SCALE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_UNSIGNED","package":"phobos","parentType":"","signature":"SQL_COLUMN_UNSIGNED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_UNSIGNED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_UPDATABLE","package":"phobos","parentType":"","signature":"SQL_COLUMN_UPDATABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_UPDATABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_AUTO_INCREMENT","package":"phobos","parentType":"","signature":"SQL_COLUMN_AUTO_INCREMENT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_AUTO_INCREMENT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_CASE_SENSITIVE","package":"phobos","parentType":"","signature":"SQL_COLUMN_CASE_SENSITIVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_CASE_SENSITIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_SEARCHABLE","package":"phobos","parentType":"","signature":"SQL_COLUMN_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_TYPE","package":"phobos","parentType":"","signature":"SQL_COLUMN_TYPE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_TYPE_NAME","package":"phobos","parentType":"","signature":"SQL_COLUMN_TYPE_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_TYPE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLUMN_TABLE_NAME","package":"phobos","parentType":"","signature":"SQL_COLUMN_TABLE_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLUMN_TABLE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCAT_NULL_BEHAVIOR","package":"phobos","parentType":"","signature":"SQL_CONCAT_NULL_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCAT_NULL_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_READ_ONLY","package":"phobos","parentType":"","signature":"SQL_CONCUR_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_DEFAULT","package":"phobos","parentType":"","signature":"SQL_CONCUR_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_LOCK","package":"phobos","parentType":"","signature":"SQL_CONCUR_LOCK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_LOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_ROWVER","package":"phobos","parentType":"","signature":"SQL_CONCUR_ROWVER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_CONCUR_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCUR_VALUES","package":"phobos","parentType":"","signature":"SQL_CONCUR_VALUES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCUR_VALUES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONCURRENCY","package":"phobos","parentType":"","signature":"SQL_CONCURRENCY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONCURRENCY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_BIGINT","package":"phobos","parentType":"","signature":"SQL_CONVERT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_BINARY","package":"phobos","parentType":"","signature":"SQL_CONVERT_BINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_BIT","package":"phobos","parentType":"","signature":"SQL_CONVERT_BIT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_CHAR","package":"phobos","parentType":"","signature":"SQL_CONVERT_CHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_DATE","package":"phobos","parentType":"","signature":"SQL_CONVERT_DATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_DECIMAL","package":"phobos","parentType":"","signature":"SQL_CONVERT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_DOUBLE","package":"phobos","parentType":"","signature":"SQL_CONVERT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_FLOAT","package":"phobos","parentType":"","signature":"SQL_CONVERT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_CONVERT_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_INTEGER","package":"phobos","parentType":"","signature":"SQL_CONVERT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQL_CONVERT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQL_CONVERT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_NUMERIC","package":"phobos","parentType":"","signature":"SQL_CONVERT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_REAL","package":"phobos","parentType":"","signature":"SQL_CONVERT_REAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_SMALLINT","package":"phobos","parentType":"","signature":"SQL_CONVERT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_TIME","package":"phobos","parentType":"","signature":"SQL_CONVERT_TIME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_CONVERT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_TINYINT","package":"phobos","parentType":"","signature":"SQL_CONVERT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_VARBINARY","package":"phobos","parentType":"","signature":"SQL_CONVERT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CONVERT_VARCHAR","package":"phobos","parentType":"","signature":"SQL_CONVERT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CONVERT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CORRELATION_NAME","package":"phobos","parentType":"","signature":"SQL_CORRELATION_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CORRELATION_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CR_CLOSE","package":"phobos","parentType":"","signature":"SQL_CR_CLOSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CR_CLOSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CR_DELETE","package":"phobos","parentType":"","signature":"SQL_CR_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CR_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CR_PRESERVE","package":"phobos","parentType":"","signature":"SQL_CR_PRESERVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CR_PRESERVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURRENT_QUALIFIER","package":"phobos","parentType":"","signature":"SQL_CURRENT_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURRENT_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_DYNAMIC","package":"phobos","parentType":"","signature":"SQL_CURSOR_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQL_CURSOR_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQL_CURSOR_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","package":"phobos","parentType":"","signature":"SQL_CURSOR_ROLLBACK_BEHAVIOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_ROLLBACK_BEHAVIOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_STATIC","package":"phobos","parentType":"","signature":"SQL_CURSOR_STATIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_TYPE","package":"phobos","parentType":"","signature":"SQL_CURSOR_TYPE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_TYPE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CURSOR_TYPE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_CURSOR_TYPE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CURSOR_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CV_CASCADED","package":"phobos","parentType":"","signature":"SQL_CV_CASCADED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CV_CASCADED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CV_CHECK_OPTION","package":"phobos","parentType":"","signature":"SQL_CV_CHECK_OPTION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CV_CHECK_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CV_CREATE_VIEW","package":"phobos","parentType":"","signature":"SQL_CV_CREATE_VIEW","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CV_CREATE_VIEW"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CV_LOCAL","package":"phobos","parentType":"","signature":"SQL_CV_LOCAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CV_LOCAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_BIGINT","package":"phobos","parentType":"","signature":"SQL_CVT_BIGINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_BIGINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_BINARY","package":"phobos","parentType":"","signature":"SQL_CVT_BINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_BINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_BIT","package":"phobos","parentType":"","signature":"SQL_CVT_BIT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_BIT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_CHAR","package":"phobos","parentType":"","signature":"SQL_CVT_CHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_DATE","package":"phobos","parentType":"","signature":"SQL_CVT_DATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_DATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_DECIMAL","package":"phobos","parentType":"","signature":"SQL_CVT_DECIMAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_DECIMAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_DOUBLE","package":"phobos","parentType":"","signature":"SQL_CVT_DOUBLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_DOUBLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_FLOAT","package":"phobos","parentType":"","signature":"SQL_CVT_FLOAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_FLOAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_INTEGER","package":"phobos","parentType":"","signature":"SQL_CVT_INTEGER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_INTEGER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQL_CVT_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQL_CVT_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_NUMERIC","package":"phobos","parentType":"","signature":"SQL_CVT_NUMERIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_NUMERIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_REAL","package":"phobos","parentType":"","signature":"SQL_CVT_REAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_REAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_SMALLINT","package":"phobos","parentType":"","signature":"SQL_CVT_SMALLINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_SMALLINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_TIME","package":"phobos","parentType":"","signature":"SQL_CVT_TIME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_TIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_CVT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_TINYINT","package":"phobos","parentType":"","signature":"SQL_CVT_TINYINT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_TINYINT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_VARBINARY","package":"phobos","parentType":"","signature":"SQL_CVT_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_CVT_VARCHAR","package":"phobos","parentType":"","signature":"SQL_CVT_VARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_CVT_VARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DATABASE_NAME","package":"phobos","parentType":"","signature":"SQL_DATABASE_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DATABASE_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DEFAULT_PARAM","package":"phobos","parentType":"","signature":"SQL_DEFAULT_PARAM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DEFAULT_PARAM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DELETE","package":"phobos","parentType":"","signature":"SQL_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_COMPLETE","package":"phobos","parentType":"","signature":"SQL_DRIVER_COMPLETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_COMPLETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_COMPLETE_REQUIRED","package":"phobos","parentType":"","signature":"SQL_DRIVER_COMPLETE_REQUIRED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_COMPLETE_REQUIRED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_HDBC","package":"phobos","parentType":"","signature":"SQL_DRIVER_HDBC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_HDBC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_HENV","package":"phobos","parentType":"","signature":"SQL_DRIVER_HENV","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_HENV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_HLIB","package":"phobos","parentType":"","signature":"SQL_DRIVER_HLIB","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_HLIB"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_HSTMT","package":"phobos","parentType":"","signature":"SQL_DRIVER_HSTMT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_HSTMT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_NAME","package":"phobos","parentType":"","signature":"SQL_DRIVER_NAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_NAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_NOPROMPT","package":"phobos","parentType":"","signature":"SQL_DRIVER_NOPROMPT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_NOPROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_ODBC_VER","package":"phobos","parentType":"","signature":"SQL_DRIVER_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_PROMPT","package":"phobos","parentType":"","signature":"SQL_DRIVER_PROMPT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_PROMPT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DRIVER_VER","package":"phobos","parentType":"","signature":"SQL_DRIVER_VER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DRIVER_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DTC_ENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQL_DTC_ENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DTC_ENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DTC_UNENLIST_EXPENSIVE","package":"phobos","parentType":"","signature":"SQL_DTC_UNENLIST_EXPENSIVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DTC_UNENLIST_EXPENSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_DTC_TRANSITION_COST","package":"phobos","parentType":"","signature":"SQL_DTC_TRANSITION_COST","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_DTC_TRANSITION_COST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ENSURE","package":"phobos","parentType":"","signature":"SQL_ENSURE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ENSURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ENTIRE_ROWSET","package":"phobos","parentType":"","signature":"SQL_ENTIRE_ROWSET","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ENTIRE_ROWSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_EXPRESSIONS_IN_ORDERBY","package":"phobos","parentType":"","signature":"SQL_EXPRESSIONS_IN_ORDERBY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_EXPRESSIONS_IN_ORDERBY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FD_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FD_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FD_FETCH_PREV","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_PREV","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FD_FETCH_PREV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FD_FETCH_RESUME","package":"phobos","parentType":"","signature":"SQL_FD_FETCH_RESUME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FD_FETCH_RESUME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FETCH_BOOKMARK","package":"phobos","parentType":"","signature":"SQL_FETCH_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FETCH_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FETCH_PREV","package":"phobos","parentType":"","signature":"SQL_FETCH_PREV","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FETCH_PREV"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FETCH_RESUME","package":"phobos","parentType":"","signature":"SQL_FETCH_RESUME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FETCH_RESUME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FILE_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQL_FILE_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FILE_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FILE_TABLE","package":"phobos","parentType":"","signature":"SQL_FILE_TABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FILE_TABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FILE_QUALIFIER","package":"phobos","parentType":"","signature":"SQL_FILE_QUALIFIER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FILE_QUALIFIER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FILE_CATALOG","package":"phobos","parentType":"","signature":"SQL_FILE_CATALOG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FILE_CATALOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FILE_USAGE","package":"phobos","parentType":"","signature":"SQL_FILE_USAGE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FILE_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_CVT_CONVERT","package":"phobos","parentType":"","signature":"SQL_FN_CVT_CONVERT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_CVT_CONVERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ABS","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ABS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ABS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ACOS","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ACOS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ACOS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ASIN","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ASIN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ASIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ATAN","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ATAN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ATAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ATAN2","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ATAN2","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ATAN2"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_CEILING","package":"phobos","parentType":"","signature":"SQL_FN_NUM_CEILING","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_CEILING"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_COS","package":"phobos","parentType":"","signature":"SQL_FN_NUM_COS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_COS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_COT","package":"phobos","parentType":"","signature":"SQL_FN_NUM_COT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_COT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_DEGREES","package":"phobos","parentType":"","signature":"SQL_FN_NUM_DEGREES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_DEGREES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_EXP","package":"phobos","parentType":"","signature":"SQL_FN_NUM_EXP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_EXP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_FLOOR","package":"phobos","parentType":"","signature":"SQL_FN_NUM_FLOOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_FLOOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_LOG","package":"phobos","parentType":"","signature":"SQL_FN_NUM_LOG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_LOG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_LOG10","package":"phobos","parentType":"","signature":"SQL_FN_NUM_LOG10","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_LOG10"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_MOD","package":"phobos","parentType":"","signature":"SQL_FN_NUM_MOD","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_MOD"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_PI","package":"phobos","parentType":"","signature":"SQL_FN_NUM_PI","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_PI"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_POWER","package":"phobos","parentType":"","signature":"SQL_FN_NUM_POWER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_POWER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_RADIANS","package":"phobos","parentType":"","signature":"SQL_FN_NUM_RADIANS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_RADIANS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_RAND","package":"phobos","parentType":"","signature":"SQL_FN_NUM_RAND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_RAND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_ROUND","package":"phobos","parentType":"","signature":"SQL_FN_NUM_ROUND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_ROUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_SIGN","package":"phobos","parentType":"","signature":"SQL_FN_NUM_SIGN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_SIGN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_SIN","package":"phobos","parentType":"","signature":"SQL_FN_NUM_SIN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_SIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_SQRT","package":"phobos","parentType":"","signature":"SQL_FN_NUM_SQRT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_SQRT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_TAN","package":"phobos","parentType":"","signature":"SQL_FN_NUM_TAN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_TAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_NUM_TRUNCATE","package":"phobos","parentType":"","signature":"SQL_FN_NUM_TRUNCATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_NUM_TRUNCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_ASCII","package":"phobos","parentType":"","signature":"SQL_FN_STR_ASCII","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_ASCII"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_CHAR","package":"phobos","parentType":"","signature":"SQL_FN_STR_CHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_CHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_CONCAT","package":"phobos","parentType":"","signature":"SQL_FN_STR_CONCAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_CONCAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_DIFFERENCE","package":"phobos","parentType":"","signature":"SQL_FN_STR_DIFFERENCE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_DIFFERENCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_INSERT","package":"phobos","parentType":"","signature":"SQL_FN_STR_INSERT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_INSERT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LCASE","package":"phobos","parentType":"","signature":"SQL_FN_STR_LCASE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LEFT","package":"phobos","parentType":"","signature":"SQL_FN_STR_LEFT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LEFT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LENGTH","package":"phobos","parentType":"","signature":"SQL_FN_STR_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LOCATE","package":"phobos","parentType":"","signature":"SQL_FN_STR_LOCATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LOCATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LOCATE_2","package":"phobos","parentType":"","signature":"SQL_FN_STR_LOCATE_2","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LOCATE_2"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_LTRIM","package":"phobos","parentType":"","signature":"SQL_FN_STR_LTRIM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_LTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_REPEAT","package":"phobos","parentType":"","signature":"SQL_FN_STR_REPEAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_REPEAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_REPLACE","package":"phobos","parentType":"","signature":"SQL_FN_STR_REPLACE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_REPLACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_RIGHT","package":"phobos","parentType":"","signature":"SQL_FN_STR_RIGHT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_RIGHT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_RTRIM","package":"phobos","parentType":"","signature":"SQL_FN_STR_RTRIM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_RTRIM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_SOUNDEX","package":"phobos","parentType":"","signature":"SQL_FN_STR_SOUNDEX","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_SOUNDEX"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_SPACE","package":"phobos","parentType":"","signature":"SQL_FN_STR_SPACE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_SPACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_SUBSTRING","package":"phobos","parentType":"","signature":"SQL_FN_STR_SUBSTRING","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_SUBSTRING"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_STR_UCASE","package":"phobos","parentType":"","signature":"SQL_FN_STR_UCASE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_STR_UCASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_SYS_DBNAME","package":"phobos","parentType":"","signature":"SQL_FN_SYS_DBNAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_SYS_DBNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_SYS_IFNULL","package":"phobos","parentType":"","signature":"SQL_FN_SYS_IFNULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_SYS_IFNULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_SYS_USERNAME","package":"phobos","parentType":"","signature":"SQL_FN_SYS_USERNAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_SYS_USERNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_CURDATE","package":"phobos","parentType":"","signature":"SQL_FN_TD_CURDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_CURDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_CURTIME","package":"phobos","parentType":"","signature":"SQL_FN_TD_CURTIME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_CURTIME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_DAYNAME","package":"phobos","parentType":"","signature":"SQL_FN_TD_DAYNAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_DAYNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_DAYOFMONTH","package":"phobos","parentType":"","signature":"SQL_FN_TD_DAYOFMONTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_DAYOFMONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_DAYOFWEEK","package":"phobos","parentType":"","signature":"SQL_FN_TD_DAYOFWEEK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_DAYOFWEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_DAYOFYEAR","package":"phobos","parentType":"","signature":"SQL_FN_TD_DAYOFYEAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_DAYOFYEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_HOUR","package":"phobos","parentType":"","signature":"SQL_FN_TD_HOUR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_MINUTE","package":"phobos","parentType":"","signature":"SQL_FN_TD_MINUTE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_MONTH","package":"phobos","parentType":"","signature":"SQL_FN_TD_MONTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_MONTHNAME","package":"phobos","parentType":"","signature":"SQL_FN_TD_MONTHNAME","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_MONTHNAME"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_NOW","package":"phobos","parentType":"","signature":"SQL_FN_TD_NOW","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_NOW"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_QUARTER","package":"phobos","parentType":"","signature":"SQL_FN_TD_QUARTER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_SECOND","package":"phobos","parentType":"","signature":"SQL_FN_TD_SECOND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_TIMESTAMPADD","package":"phobos","parentType":"","signature":"SQL_FN_TD_TIMESTAMPADD","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_TIMESTAMPADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_TIMESTAMPDIFF","package":"phobos","parentType":"","signature":"SQL_FN_TD_TIMESTAMPDIFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_TIMESTAMPDIFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_WEEK","package":"phobos","parentType":"","signature":"SQL_FN_TD_WEEK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TD_YEAR","package":"phobos","parentType":"","signature":"SQL_FN_TD_YEAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TD_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_DAY","package":"phobos","parentType":"","signature":"SQL_FN_TSI_DAY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_DAY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_FRAC_SECOND","package":"phobos","parentType":"","signature":"SQL_FN_TSI_FRAC_SECOND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_FRAC_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_HOUR","package":"phobos","parentType":"","signature":"SQL_FN_TSI_HOUR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_HOUR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_MINUTE","package":"phobos","parentType":"","signature":"SQL_FN_TSI_MINUTE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_MINUTE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_MONTH","package":"phobos","parentType":"","signature":"SQL_FN_TSI_MONTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_MONTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_QUARTER","package":"phobos","parentType":"","signature":"SQL_FN_TSI_QUARTER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_QUARTER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_SECOND","package":"phobos","parentType":"","signature":"SQL_FN_TSI_SECOND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_SECOND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_WEEK","package":"phobos","parentType":"","signature":"SQL_FN_TSI_WEEK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_WEEK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_FN_TSI_YEAR","package":"phobos","parentType":"","signature":"SQL_FN_TSI_YEAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_FN_TSI_YEAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","package":"phobos","parentType":"","signature":"SQL_GB_GROUP_BY_CONTAINS_SELECT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GB_GROUP_BY_CONTAINS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GB_GROUP_BY_EQUALS_SELECT","package":"phobos","parentType":"","signature":"SQL_GB_GROUP_BY_EQUALS_SELECT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GB_GROUP_BY_EQUALS_SELECT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GB_NO_RELATION","package":"phobos","parentType":"","signature":"SQL_GB_NO_RELATION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GB_NO_RELATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GB_NOT_SUPPORTED","package":"phobos","parentType":"","signature":"SQL_GB_NOT_SUPPORTED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GB_NOT_SUPPORTED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GD_BLOCK","package":"phobos","parentType":"","signature":"SQL_GD_BLOCK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GD_BLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GD_BOUND","package":"phobos","parentType":"","signature":"SQL_GD_BOUND","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GD_BOUND"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GET_BOOKMARK","package":"phobos","parentType":"","signature":"SQL_GET_BOOKMARK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GET_BOOKMARK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_GROUP_BY","package":"phobos","parentType":"","signature":"SQL_GROUP_BY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_GROUP_BY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_IGNORE","package":"phobos","parentType":"","signature":"SQL_IGNORE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_IGNORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_INFO_FIRST","package":"phobos","parentType":"","signature":"SQL_INFO_FIRST","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_INFO_FIRST"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_KEYSET_SIZE","package":"phobos","parentType":"","signature":"SQL_KEYSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_KEYSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_KEYSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_KEYSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_KEYSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_KEYWORDS","package":"phobos","parentType":"","signature":"SQL_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_KEYWORDS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQL_LCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQL_LCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LCK_UNLOCK","package":"phobos","parentType":"","signature":"SQL_LCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LEN_BINARY_ATTR_OFFSET","package":"phobos","parentType":"","signature":"SQL_LEN_BINARY_ATTR_OFFSET","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LEN_BINARY_ATTR_OFFSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LEN_DATA_AT_EXEC_OFFSET","package":"phobos","parentType":"","signature":"SQL_LEN_DATA_AT_EXEC_OFFSET","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LEN_DATA_AT_EXEC_OFFSET"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LIKE_ESCAPE_CLAUSE","package":"phobos","parentType":"","signature":"SQL_LIKE_ESCAPE_CLAUSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LIKE_ESCAPE_CLAUSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LIKE_ONLY","package":"phobos","parentType":"","signature":"SQL_LIKE_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LIKE_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOCK_EXCLUSIVE","package":"phobos","parentType":"","signature":"SQL_LOCK_EXCLUSIVE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOCK_EXCLUSIVE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOCK_NO_CHANGE","package":"phobos","parentType":"","signature":"SQL_LOCK_NO_CHANGE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOCK_NO_CHANGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOCK_TYPES","package":"phobos","parentType":"","signature":"SQL_LOCK_TYPES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOCK_TYPES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOCK_UNLOCK","package":"phobos","parentType":"","signature":"SQL_LOCK_UNLOCK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOCK_UNLOCK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOGIN_TIMEOUT","package":"phobos","parentType":"","signature":"SQL_LOGIN_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOGIN_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LOGIN_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQL_LOGIN_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LOGIN_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LONGVARBINARY","package":"phobos","parentType":"","signature":"SQL_LONGVARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LONGVARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_LONGVARCHAR","package":"phobos","parentType":"","signature":"SQL_LONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_LONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_BINARY_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_BINARY_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_BINARY_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_CHAR_LITERAL_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_CHAR_LITERAL_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_CHAR_LITERAL_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_DSN_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAX_DSN_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_DSN_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAX_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_LENGTH_DEFAULT","package":"phobos","parentType":"","signature":"SQL_MAX_LENGTH_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_LENGTH_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_OPTION_STRING_LENGTH","package":"phobos","parentType":"","signature":"SQL_MAX_OPTION_STRING_LENGTH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_OPTION_STRING_LENGTH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_OWNER_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_OWNER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_OWNER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_PROCEDURE_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_PROCEDURE_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_PROCEDURE_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_QUALIFIER_NAME_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_QUALIFIER_NAME_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_QUALIFIER_NAME_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","package":"phobos","parentType":"","signature":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_ROW_SIZE_INCLUDES_LONG"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_ROWS","package":"phobos","parentType":"","signature":"SQL_MAX_ROWS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_ROWS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MAX_ROWS_DEFAULT","package":"phobos","parentType":"","signature":"SQL_MAX_ROWS_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MAX_ROWS_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MODE_READ_WRITE","package":"phobos","parentType":"","signature":"SQL_MODE_READ_WRITE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MODE_READ_WRITE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MODE_READ_ONLY","package":"phobos","parentType":"","signature":"SQL_MODE_READ_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MODE_READ_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MODE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_MODE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MODE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MULT_RESULT_SETS","package":"phobos","parentType":"","signature":"SQL_MULT_RESULT_SETS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MULT_RESULT_SETS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_MULTIPLE_ACTIVE_TXN","package":"phobos","parentType":"","signature":"SQL_MULTIPLE_ACTIVE_TXN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_MULTIPLE_ACTIVE_TXN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NC_END","package":"phobos","parentType":"","signature":"SQL_NC_END","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NC_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NC_START","package":"phobos","parentType":"","signature":"SQL_NC_START","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NC_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NEED_LONG_DATA_LEN","package":"phobos","parentType":"","signature":"SQL_NEED_LONG_DATA_LEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NEED_LONG_DATA_LEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NNC_NON_NULL","package":"phobos","parentType":"","signature":"SQL_NNC_NON_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NNC_NON_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NNC_NULL","package":"phobos","parentType":"","signature":"SQL_NNC_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NNC_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NO_TOTAL","package":"phobos","parentType":"","signature":"SQL_NO_TOTAL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NO_TOTAL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NON_NULLABLE_COLUMNS","package":"phobos","parentType":"","signature":"SQL_NON_NULLABLE_COLUMNS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NON_NULLABLE_COLUMNS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NOSCAN_OFF","package":"phobos","parentType":"","signature":"SQL_NOSCAN_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NOSCAN_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NOSCAN_ON","package":"phobos","parentType":"","signature":"SQL_NOSCAN_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NOSCAN_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NOSCAN","package":"phobos","parentType":"","signature":"SQL_NOSCAN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NOSCAN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NOSCAN_DEFAULT","package":"phobos","parentType":"","signature":"SQL_NOSCAN_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NOSCAN_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_NUMERIC_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_NUMERIC_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_NUMERIC_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OAC_LEVEL1","package":"phobos","parentType":"","signature":"SQL_OAC_LEVEL1","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OAC_LEVEL1"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OAC_LEVEL2","package":"phobos","parentType":"","signature":"SQL_OAC_LEVEL2","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OAC_LEVEL2"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OAC_NONE","package":"phobos","parentType":"","signature":"SQL_OAC_NONE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OAC_NONE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_API_CONFORMANCE","package":"phobos","parentType":"","signature":"SQL_ODBC_API_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_API_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_CURSORS","package":"phobos","parentType":"","signature":"SQL_ODBC_CURSORS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_CURSORS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_SAG_CLI_CONFORMANCE","package":"phobos","parentType":"","signature":"SQL_ODBC_SAG_CLI_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_SAG_CLI_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_SQL_CONFORMANCE","package":"phobos","parentType":"","signature":"SQL_ODBC_SQL_CONFORMANCE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_SQL_CONFORMANCE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_SQL_OPT_IEF","package":"phobos","parentType":"","signature":"SQL_ODBC_SQL_OPT_IEF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_SQL_OPT_IEF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_VER","package":"phobos","parentType":"","signature":"SQL_ODBC_VER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_VER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACE","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACE_FILE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_FILE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACE_FILE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACE_OFF","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACE_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACE_ON","package":"phobos","parentType":"","signature":"SQL_OPT_TRACE_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OPT_TRACEFILE","package":"phobos","parentType":"","signature":"SQL_OPT_TRACEFILE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OPT_TRACEFILE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OSC_CORE","package":"phobos","parentType":"","signature":"SQL_OSC_CORE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OSC_CORE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OSC_EXTENDED","package":"phobos","parentType":"","signature":"SQL_OSC_EXTENDED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OSC_EXTENDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OSC_MINIMUM","package":"phobos","parentType":"","signature":"SQL_OSC_MINIMUM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OSC_MINIMUM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OSCC_COMPLIANT","package":"phobos","parentType":"","signature":"SQL_OSCC_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OSCC_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OSCC_NOT_COMPLIANT","package":"phobos","parentType":"","signature":"SQL_OSCC_NOT_COMPLIANT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OSCC_NOT_COMPLIANT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQL_OU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQL_OU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQL_OU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQL_OU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQL_OU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OUTER_JOINS","package":"phobos","parentType":"","signature":"SQL_OUTER_JOINS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OUTER_JOINS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OWNER_TERM","package":"phobos","parentType":"","signature":"SQL_OWNER_TERM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OWNER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_OWNER_USAGE","package":"phobos","parentType":"","signature":"SQL_OWNER_USAGE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_OWNER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PACKET_SIZE","package":"phobos","parentType":"","signature":"SQL_PACKET_SIZE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PACKET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PARAM_INPUT","package":"phobos","parentType":"","signature":"SQL_PARAM_INPUT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PARAM_INPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PARAM_INPUT_OUTPUT","package":"phobos","parentType":"","signature":"SQL_PARAM_INPUT_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PARAM_INPUT_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PARAM_OUTPUT","package":"phobos","parentType":"","signature":"SQL_PARAM_OUTPUT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PARAM_OUTPUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PARAM_TYPE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_PARAM_TYPE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PARAM_TYPE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PARAM_TYPE_UNKNOWN","package":"phobos","parentType":"","signature":"SQL_PARAM_TYPE_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PARAM_TYPE_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PC_NOT_PSEUDO","package":"phobos","parentType":"","signature":"SQL_PC_NOT_PSEUDO","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PC_NOT_PSEUDO"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_ADD","package":"phobos","parentType":"","signature":"SQL_POS_ADD","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_ADD"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_DELETE","package":"phobos","parentType":"","signature":"SQL_POS_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_OPERATIONS","package":"phobos","parentType":"","signature":"SQL_POS_OPERATIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_OPERATIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_POSITION","package":"phobos","parentType":"","signature":"SQL_POS_POSITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_REFRESH","package":"phobos","parentType":"","signature":"SQL_POS_REFRESH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POS_UPDATE","package":"phobos","parentType":"","signature":"SQL_POS_UPDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POS_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POSITION","package":"phobos","parentType":"","signature":"SQL_POSITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POSITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_POSITIONED_STATEMENTS","package":"phobos","parentType":"","signature":"SQL_POSITIONED_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_POSITIONED_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PROCEDURE_TERM","package":"phobos","parentType":"","signature":"SQL_PROCEDURE_TERM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PROCEDURE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PROCEDURES","package":"phobos","parentType":"","signature":"SQL_PROCEDURES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PROCEDURES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PS_POSITIONED_DELETE","package":"phobos","parentType":"","signature":"SQL_PS_POSITIONED_DELETE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PS_POSITIONED_DELETE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PS_POSITIONED_UPDATE","package":"phobos","parentType":"","signature":"SQL_PS_POSITIONED_UPDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PS_POSITIONED_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PS_SELECT_FOR_UPDATE","package":"phobos","parentType":"","signature":"SQL_PS_SELECT_FOR_UPDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PS_SELECT_FOR_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PT_FUNCTION","package":"phobos","parentType":"","signature":"SQL_PT_FUNCTION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PT_FUNCTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PT_PROCEDURE","package":"phobos","parentType":"","signature":"SQL_PT_PROCEDURE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PT_PROCEDURE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PT_UNKNOWN","package":"phobos","parentType":"","signature":"SQL_PT_UNKNOWN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PT_UNKNOWN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QL_END","package":"phobos","parentType":"","signature":"SQL_QL_END","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QL_END"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QL_START","package":"phobos","parentType":"","signature":"SQL_QL_START","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QL_START"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QU_DML_STATEMENTS","package":"phobos","parentType":"","signature":"SQL_QU_DML_STATEMENTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QU_DML_STATEMENTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QU_INDEX_DEFINITION","package":"phobos","parentType":"","signature":"SQL_QU_INDEX_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QU_INDEX_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QU_PRIVILEGE_DEFINITION","package":"phobos","parentType":"","signature":"SQL_QU_PRIVILEGE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QU_PRIVILEGE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QU_PROCEDURE_INVOCATION","package":"phobos","parentType":"","signature":"SQL_QU_PROCEDURE_INVOCATION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QU_PROCEDURE_INVOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QU_TABLE_DEFINITION","package":"phobos","parentType":"","signature":"SQL_QU_TABLE_DEFINITION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QU_TABLE_DEFINITION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUALIFIER_LOCATION","package":"phobos","parentType":"","signature":"SQL_QUALIFIER_LOCATION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUALIFIER_LOCATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUALIFIER_NAME_SEPARATOR","package":"phobos","parentType":"","signature":"SQL_QUALIFIER_NAME_SEPARATOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUALIFIER_NAME_SEPARATOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUALIFIER_TERM","package":"phobos","parentType":"","signature":"SQL_QUALIFIER_TERM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUALIFIER_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUALIFIER_USAGE","package":"phobos","parentType":"","signature":"SQL_QUALIFIER_USAGE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUALIFIER_USAGE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUERY_TIMEOUT","package":"phobos","parentType":"","signature":"SQL_QUERY_TIMEOUT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUERY_TIMEOUT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUERY_TIMEOUT_DEFAULT","package":"phobos","parentType":"","signature":"SQL_QUERY_TIMEOUT_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUERY_TIMEOUT_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUICK","package":"phobos","parentType":"","signature":"SQL_QUICK","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUICK"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUIET_MODE","package":"phobos","parentType":"","signature":"SQL_QUIET_MODE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUIET_MODE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_QUOTED_IDENTIFIER_CASE","package":"phobos","parentType":"","signature":"SQL_QUOTED_IDENTIFIER_CASE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_QUOTED_IDENTIFIER_CASE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RD_OFF","package":"phobos","parentType":"","signature":"SQL_RD_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RD_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RD_ON","package":"phobos","parentType":"","signature":"SQL_RD_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RD_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RD_DEFAULT","package":"phobos","parentType":"","signature":"SQL_RD_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RD_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_REFRESH","package":"phobos","parentType":"","signature":"SQL_REFRESH","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_REFRESH"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RESTRICT","package":"phobos","parentType":"","signature":"SQL_RESTRICT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RESTRICT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RESULT_COL","package":"phobos","parentType":"","signature":"SQL_RESULT_COL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RESULT_COL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RETRIEVE_DATA","package":"phobos","parentType":"","signature":"SQL_RETRIEVE_DATA","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RETRIEVE_DATA"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_RETURN_VALUE","package":"phobos","parentType":"","signature":"SQL_RETURN_VALUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_RETURN_VALUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_ADDED","package":"phobos","parentType":"","signature":"SQL_ROW_ADDED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_ADDED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_DELETED","package":"phobos","parentType":"","signature":"SQL_ROW_DELETED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_DELETED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_ERROR","package":"phobos","parentType":"","signature":"SQL_ROW_ERROR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_ERROR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_NOROW","package":"phobos","parentType":"","signature":"SQL_ROW_NOROW","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_NOROW"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_NUMBER","package":"phobos","parentType":"","signature":"SQL_ROW_NUMBER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_NUMBER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_SUCCESS","package":"phobos","parentType":"","signature":"SQL_ROW_SUCCESS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_SUCCESS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_UPDATED","package":"phobos","parentType":"","signature":"SQL_ROW_UPDATED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_UPDATED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROW_UPDATES","package":"phobos","parentType":"","signature":"SQL_ROW_UPDATES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROW_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROWSET_SIZE","package":"phobos","parentType":"","signature":"SQL_ROWSET_SIZE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROWSET_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROWSET_SIZE_DEFAULT","package":"phobos","parentType":"","signature":"SQL_ROWSET_SIZE_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROWSET_SIZE_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ROWVER","package":"phobos","parentType":"","signature":"SQL_ROWVER","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ROWVER"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SC_NON_UNIQUE","package":"phobos","parentType":"","signature":"SQL_SC_NON_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SC_NON_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SC_TRY_UNIQUE","package":"phobos","parentType":"","signature":"SQL_SC_TRY_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SC_TRY_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SC_UNIQUE","package":"phobos","parentType":"","signature":"SQL_SC_UNIQUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SC_UNIQUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCCO_OPT_TIMESTAMP","package":"phobos","parentType":"","signature":"SQL_SCCO_OPT_TIMESTAMP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCCO_OPT_TIMESTAMP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCROLL_DYNAMIC","package":"phobos","parentType":"","signature":"SQL_SCROLL_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCROLL_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCROLL_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQL_SCROLL_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCROLL_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCROLL_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQL_SCROLL_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCROLL_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCROLL_OPTIONS","package":"phobos","parentType":"","signature":"SQL_SCROLL_OPTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCROLL_OPTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SCROLL_STATIC","package":"phobos","parentType":"","signature":"SQL_SCROLL_STATIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SCROLL_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SEARCHABLE","package":"phobos","parentType":"","signature":"SQL_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SET_NULL","package":"phobos","parentType":"","signature":"SQL_SET_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SET_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SETPARAM_VALUE_MAX","package":"phobos","parentType":"","signature":"SQL_SETPARAM_VALUE_MAX","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SETPARAM_VALUE_MAX"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SETPOS_MAX_LOCK_VALUE","package":"phobos","parentType":"","signature":"SQL_SETPOS_MAX_LOCK_VALUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SETPOS_MAX_LOCK_VALUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SETPOS_MAX_OPTION_VALUE","package":"phobos","parentType":"","signature":"SQL_SETPOS_MAX_OPTION_VALUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SETPOS_MAX_OPTION_VALUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SIMULATE_CURSOR","package":"phobos","parentType":"","signature":"SQL_SIMULATE_CURSOR","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SIMULATE_CURSOR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SO_DYNAMIC","package":"phobos","parentType":"","signature":"SQL_SO_DYNAMIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SO_DYNAMIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SO_FORWARD_ONLY","package":"phobos","parentType":"","signature":"SQL_SO_FORWARD_ONLY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SO_FORWARD_ONLY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SO_KEYSET_DRIVEN","package":"phobos","parentType":"","signature":"SQL_SO_KEYSET_DRIVEN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SO_KEYSET_DRIVEN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SO_MIXED","package":"phobos","parentType":"","signature":"SQL_SO_MIXED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SO_MIXED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SO_STATIC","package":"phobos","parentType":"","signature":"SQL_SO_STATIC","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SO_STATIC"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQ_COMPARISON","package":"phobos","parentType":"","signature":"SQL_SQ_COMPARISON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQ_COMPARISON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQ_CORRELATED_SUBQUERIES","package":"phobos","parentType":"","signature":"SQL_SQ_CORRELATED_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQ_CORRELATED_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQ_EXISTS","package":"phobos","parentType":"","signature":"SQL_SQ_EXISTS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQ_EXISTS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQ_IN","package":"phobos","parentType":"","signature":"SQL_SQ_IN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQ_IN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQ_QUANTIFIED","package":"phobos","parentType":"","signature":"SQL_SQ_QUANTIFIED","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQ_QUANTIFIED"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SQLSTATE_SIZE","package":"phobos","parentType":"","signature":"SQL_SQLSTATE_SIZE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SQLSTATE_SIZE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SS_ADDITIONS","package":"phobos","parentType":"","signature":"SQL_SS_ADDITIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SS_ADDITIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SS_DELETIONS","package":"phobos","parentType":"","signature":"SQL_SS_DELETIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SS_DELETIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SS_UPDATES","package":"phobos","parentType":"","signature":"SQL_SS_UPDATES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SS_UPDATES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_STATIC_SENSITIVITY","package":"phobos","parentType":"","signature":"SQL_STATIC_SENSITIVITY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_STATIC_SENSITIVITY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_STRING_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_STRING_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_STRING_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SUBQUERIES","package":"phobos","parentType":"","signature":"SQL_SUBQUERIES","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SUBQUERIES"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_SYSTEM_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_SYSTEM_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_SYSTEM_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TABLE_STAT","package":"phobos","parentType":"","signature":"SQL_TABLE_STAT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TABLE_STAT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TABLE_TERM","package":"phobos","parentType":"","signature":"SQL_TABLE_TERM","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TABLE_TERM"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TIMEDATE_ADD_INTERVALS","package":"phobos","parentType":"","signature":"SQL_TIMEDATE_ADD_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TIMEDATE_ADD_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TIMEDATE_DIFF_INTERVALS","package":"phobos","parentType":"","signature":"SQL_TIMEDATE_DIFF_INTERVALS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TIMEDATE_DIFF_INTERVALS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TIMEDATE_FUNCTIONS","package":"phobos","parentType":"","signature":"SQL_TIMEDATE_FUNCTIONS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TIMEDATE_FUNCTIONS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TRANSLATE_DLL","package":"phobos","parentType":"","signature":"SQL_TRANSLATE_DLL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TRANSLATE_DLL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TRANSLATE_OPTION","package":"phobos","parentType":"","signature":"SQL_TRANSLATE_OPTION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TRANSLATE_OPTION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TXN_ISOLATION","package":"phobos","parentType":"","signature":"SQL_TXN_ISOLATION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TXN_ISOLATION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TXN_VERSIONING","package":"phobos","parentType":"","signature":"SQL_TXN_VERSIONING","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TXN_VERSIONING"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_TYPE_NULL","package":"phobos","parentType":"","signature":"SQL_TYPE_NULL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_TYPE_NULL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_U_UNION","package":"phobos","parentType":"","signature":"SQL_U_UNION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_U_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_U_UNION_ALL","package":"phobos","parentType":"","signature":"SQL_U_UNION_ALL","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_U_UNION_ALL"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UB_OFF","package":"phobos","parentType":"","signature":"SQL_UB_OFF","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UB_OFF"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UB_DEFAULT","package":"phobos","parentType":"","signature":"SQL_UB_DEFAULT","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UB_DEFAULT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UB_ON","package":"phobos","parentType":"","signature":"SQL_UB_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UB_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UNION","package":"phobos","parentType":"","signature":"SQL_UNION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UNION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UNSEARCHABLE","package":"phobos","parentType":"","signature":"SQL_UNSEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UNSEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_UPDATE","package":"phobos","parentType":"","signature":"SQL_UPDATE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_UPDATE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_USE_BOOKMARKS","package":"phobos","parentType":"","signature":"SQL_USE_BOOKMARKS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_USE_BOOKMARKS"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_VARBINARY","package":"phobos","parentType":"","signature":"SQL_VARBINARY","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_VARBINARY"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLATT_OPT_MAX","package":"phobos","parentType":"","signature":"SQL_COLATT_OPT_MAX","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLATT_OPT_MAX"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_COLATT_OPT_MIN","package":"phobos","parentType":"","signature":"SQL_COLATT_OPT_MIN","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_COLATT_OPT_MIN"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_PRED_SEARCHABLE","package":"phobos","parentType":"","signature":"SQL_PRED_SEARCHABLE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_PRED_SEARCHABLE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ATTR_ANSI_APP","package":"phobos","parentType":"","signature":"SQL_ATTR_ANSI_APP","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ATTR_ANSI_APP"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AA_TRUE","package":"phobos","parentType":"","signature":"SQL_AA_TRUE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AA_TRUE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_AA_FALSE","package":"phobos","parentType":"","signature":"SQL_AA_FALSE","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_AA_FALSE"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"TRACE_VERSION","package":"phobos","parentType":"","signature":"TRACE_VERSION","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#TRACE_VERSION"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"TRACE_ON","package":"phobos","parentType":"","signature":"TRACE_ON","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#TRACE_ON"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlext","name":"SQL_ODBC_KEYWORDS","package":"phobos","parentType":"","signature":"char [] SQL_ODBC_KEYWORDS","url":"/ddoc/phobos/etc/c/odbc/sqlext.html#SQL_ODBC_KEYWORDS"},{"doc":"","kind":"module","module":"etc.c.odbc.sqltypes","name":"etc.c.odbc.sqltypes","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLGUID","package":"phobos","parentType":"","signature":"SQLGUID = GUID","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLGUID"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SCHAR","package":"phobos","parentType":"","signature":"SCHAR = byte","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SDWORD","package":"phobos","parentType":"","signature":"SDWORD = int","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SDWORD"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SWORD","package":"phobos","parentType":"","signature":"SWORD = short","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SWORD"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"UDWORD","package":"phobos","parentType":"","signature":"UDWORD = ULONG","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#UDWORD"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"UWORD","package":"phobos","parentType":"","signature":"UWORD = USHORT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#UWORD"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SDOUBLE","package":"phobos","parentType":"","signature":"SDOUBLE = double","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SDOUBLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SFLOAT","package":"phobos","parentType":"","signature":"SFLOAT = float","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SFLOAT"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"PTR","package":"phobos","parentType":"","signature":"PTR = PVOID","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#PTR"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLCHAR","package":"phobos","parentType":"","signature":"SQLCHAR = UCHAR","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLUINTEGER","package":"phobos","parentType":"","signature":"SQLUINTEGER = UDWORD","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLUINTEGER"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLHANDLE","package":"phobos","parentType":"","signature":"SQLHANDLE = HANDLE","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLHANDLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLHENV","package":"phobos","parentType":"","signature":"SQLHENV = SQLHANDLE","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLHENV"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLRETURN","package":"phobos","parentType":"","signature":"SQLRETURN = SQLSMALLINT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLRETURN"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLHWND","package":"phobos","parentType":"","signature":"SQLHWND = HWND","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLHWND"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"BOOKMARK","package":"phobos","parentType":"","signature":"BOOKMARK = ULONG","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#BOOKMARK"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLLEN","package":"phobos","parentType":"","signature":"SQLLEN = SQLINTEGER","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLLEN"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLROWCOUNT","package":"phobos","parentType":"","signature":"SQLROWCOUNT = SQLUINTEGER","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLROWCOUNT"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLTRANSID","package":"phobos","parentType":"","signature":"SQLTRANSID = DWORD","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLTRANSID"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLSETPOSIROW","package":"phobos","parentType":"","signature":"SQLSETPOSIROW = SQLUSMALLINT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLSETPOSIROW"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLWCHAR","package":"phobos","parentType":"","signature":"SQLWCHAR = wchar","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLWCHAR"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLDATE","package":"phobos","parentType":"","signature":"SQLDATE = ubyte","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLDATE"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLDOUBLE","package":"phobos","parentType":"","signature":"SQLDOUBLE = double","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLDOUBLE"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLNUMERIC","package":"phobos","parentType":"","signature":"SQLNUMERIC = ubyte","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLNUMERIC"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLREAL","package":"phobos","parentType":"","signature":"SQLREAL = float","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLREAL"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLTIME","package":"phobos","parentType":"","signature":"SQLTIME = ubyte","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLTIME"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"ODBCINT64","package":"phobos","parentType":"","signature":"ODBCINT64 = long","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#ODBCINT64"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQLUBIGINT","package":"phobos","parentType":"","signature":"SQLUBIGINT = ulong","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLUBIGINT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"DATE_STRUCT","package":"phobos","parentType":"","signature":"DATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#DATE_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"TIME_STRUCT","package":"phobos","parentType":"","signature":"TIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#TIME_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"TIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#TIMESTAMP_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQL_DATE_STRUCT","package":"phobos","parentType":"","signature":"SQL_DATE_STRUCT = DATE_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_DATE_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQL_TIME_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIME_STRUCT = TIME_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_TIME_STRUCT"},{"doc":"","kind":"alias","module":"etc.c.odbc.sqltypes","name":"SQL_TIMESTAMP_STRUCT","package":"phobos","parentType":"","signature":"SQL_TIMESTAMP_STRUCT = TIMESTAMP_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_TIMESTAMP_STRUCT"},{"doc":"","kind":"enum","module":"etc.c.odbc.sqltypes","name":"SQLINTERVAL","package":"phobos","parentType":"","signature":"SQLINTERVAL","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_YEAR","package":"phobos","parentType":"","signature":"SQL_IS_YEAR = 1","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_MONTH = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_DAY","package":"phobos","parentType":"","signature":"SQL_IS_DAY = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_HOUR = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_SECOND = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_YEAR_TO_MONTH","package":"phobos","parentType":"","signature":"SQL_IS_YEAR_TO_MONTH = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_DAY_TO_HOUR","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_HOUR = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_DAY_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_MINUTE = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_DAY_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_DAY_TO_SECOND = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_HOUR_TO_MINUTE","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_MINUTE = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_HOUR_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_HOUR_TO_SECOND = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"enum_member","module":"etc.c.odbc.sqltypes","name":"SQL_IS_MINUTE_TO_SECOND","package":"phobos","parentType":"","signature":"SQL_IS_MINUTE_TO_SECOND = ","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQLINTERVAL"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"SQL_YEAR_MONTH_STRUCT","package":"phobos","parentType":"","signature":"SQL_YEAR_MONTH_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_YEAR_MONTH_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"SQL_DAY_SECOND_STRUCT","package":"phobos","parentType":"","signature":"SQL_DAY_SECOND_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_DAY_SECOND_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"SQL_INTERVAL_STRUCT","package":"phobos","parentType":"","signature":"SQL_INTERVAL_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_INTERVAL_STRUCT"},{"doc":"","kind":"struct","module":"etc.c.odbc.sqltypes","name":"SQL_NUMERIC_STRUCT","package":"phobos","parentType":"","signature":"SQL_NUMERIC_STRUCT","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_NUMERIC_STRUCT"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqltypes","name":"SQL_MAX_NUMERIC_LEN","package":"phobos","parentType":"","signature":"SQL_MAX_NUMERIC_LEN","url":"/ddoc/phobos/etc/c/odbc/sqltypes.html#SQL_MAX_NUMERIC_LEN"},{"doc":"","kind":"module","module":"etc.c.odbc.sqlucode","name":"etc.c.odbc.sqlucode","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLBrowseConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectA(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLBrowseConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLBrowseConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLBrowseConnectW(SQLHDBC,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLBrowseConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColAttributeA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeA(SQLHSTMT,  SQLSMALLINT,  SQLSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColAttributeA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColAttributeW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributeW(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColAttributeW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColAttributesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesA(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColAttributesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColAttributesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColAttributesW(SQLHSTMT,  SQLUSMALLINT,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *,  SQLLEN *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColAttributesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColumnPrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesA(  SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColumnPrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColumnPrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnPrivilegesW(  SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColumnPrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLColumnsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectA(SQLHDBC,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLConnectW(SQLHDBC,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDataSourcesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesA(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDataSourcesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDataSourcesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDataSourcesW(SQLHENV,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDataSourcesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDescribeColA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColA(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDescribeColA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDescribeColW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDescribeColW(SQLHSTMT,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLSMALLINT *,  SQLULEN *,  SQLSMALLINT *,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDescribeColW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDriverConnectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectA(SQLHDBC,  SQLHWND,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDriverConnectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDriverConnectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriverConnectW(SQLHDBC,  SQLHWND,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDriverConnectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDriversA","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversA(SQLHENV,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDriversA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLDriversW","package":"phobos","parentType":"","signature":"SQLRETURN SQLDriversW(SQLHENV,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLDriversW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLErrorA","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorA(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLCHAR *,  SQLINTEGER *,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLErrorA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLErrorW","package":"phobos","parentType":"","signature":"SQLRETURN SQLErrorW(SQLHENV,  SQLHDBC,  SQLHSTMT,  SQLWCHAR *,  SQLINTEGER *,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLErrorW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLExecDirectA","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectA(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLExecDirectA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLExecDirectW","package":"phobos","parentType":"","signature":"SQLRETURN SQLExecDirectW(SQLHSTMT,  SQLWCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLExecDirectW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLForeignKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLForeignKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLForeignKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLForeignKeysW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLForeignKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrA(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectAttrW(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionA(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetConnectOptionW(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetCursorNameW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoA(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetInfoW(SQLHDBC,  SQLUSMALLINT,  SQLPOINTER,  SQLSMALLINT,  SQLSMALLINT *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetTypeInfoA","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoA(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetTypeInfoA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLGetTypeInfoW","package":"phobos","parentType":"","signature":"SQLRETURN SQLGetTypeInfoW(SQLHSTMT,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLGetTypeInfoW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLNativeSqlA","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlA(SQLHDBC,  SQLCHAR *,  SQLINTEGER,  SQLCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLNativeSqlA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLNativeSqlW","package":"phobos","parentType":"","signature":"SQLRETURN SQLNativeSqlW(SQLHDBC,  SQLWCHAR *,  SQLINTEGER,  SQLWCHAR *,  SQLINTEGER,  SQLINTEGER *)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLNativeSqlW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLPrepareA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareA(SQLHSTMT,  SQLCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLPrepareA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLPrepareW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrepareW(SQLHSTMT,  SQLWCHAR *,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLPrepareW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLPrimaryKeysA","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLPrimaryKeysA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLPrimaryKeysW","package":"phobos","parentType":"","signature":"SQLRETURN SQLPrimaryKeysW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLPrimaryKeysW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLProcedureColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLProcedureColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLProcedureColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProcedureColumnsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLProcedureColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLProceduresA","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLProceduresA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLProceduresW","package":"phobos","parentType":"","signature":"SQLRETURN SQLProceduresW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLProceduresW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetConnectAttrA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrA(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetConnectAttrA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetConnectAttrW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectAttrW(SQLHDBC,  SQLINTEGER,  SQLPOINTER,  SQLINTEGER)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetConnectAttrW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetConnectOptionA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionA(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetConnectOptionA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetConnectOptionW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetConnectOptionW(SQLHDBC,  SQLUSMALLINT,  SQLULEN)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetConnectOptionW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetCursorNameA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetCursorNameA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSetCursorNameW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSetCursorNameW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSetCursorNameW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSpecialColumnsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsA(SQLHSTMT,  SQLUSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSpecialColumnsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLSpecialColumnsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLSpecialColumnsW(SQLHSTMT,  SQLUSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLSpecialColumnsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLStatisticsA","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLStatisticsA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLStatisticsW","package":"phobos","parentType":"","signature":"SQLRETURN SQLStatisticsW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT ,  SQLUSMALLINT,  SQLUSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLStatisticsW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLTablePrivilegesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLTablePrivilegesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLTablePrivilegesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablePrivilegesW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT )","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLTablePrivilegesW.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLTablesA","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesA(SQLHSTMT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT,  SQLCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLTablesA.html"},{"doc":"","kind":"function","module":"etc.c.odbc.sqlucode","name":"SQLTablesW","package":"phobos","parentType":"","signature":"SQLRETURN SQLTablesW(SQLHSTMT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT,  SQLWCHAR *,  SQLSMALLINT)","url":"/ddoc/phobos/etc/c/odbc/sqlucode/SQLTablesW.html"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlucode","name":"SQL_WCHAR","package":"phobos","parentType":"","signature":"SQL_WCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html#SQL_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlucode","name":"SQL_WVARCHAR","package":"phobos","parentType":"","signature":"SQL_WVARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html#SQL_WVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlucode","name":"SQL_WLONGVARCHAR","package":"phobos","parentType":"","signature":"SQL_WLONGVARCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html#SQL_WLONGVARCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlucode","name":"SQL_C_WCHAR","package":"phobos","parentType":"","signature":"SQL_C_WCHAR","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html#SQL_C_WCHAR"},{"doc":"","kind":"variable","module":"etc.c.odbc.sqlucode","name":"SQL_SQLSTATE_SIZEW","package":"phobos","parentType":"","signature":"SQL_SQLSTATE_SIZEW","url":"/ddoc/phobos/etc/c/odbc/sqlucode.html#SQL_SQLSTATE_SIZEW"},{"doc":"","kind":"module","module":"etc.c.sqlite3","name":"etc.c.sqlite3","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/sqlite3.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_libversion","package":"phobos","parentType":"","signature":"immutable(char) * sqlite3_libversion()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_libversion.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_sourceid","package":"phobos","parentType":"","signature":"immutable(char) * sqlite3_sourceid()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_sourceid.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_libversion_number","package":"phobos","parentType":"","signature":"int sqlite3_libversion_number()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_libversion_number.html"},{"doc":"CAPI3REF: Run-Time Library Compilation Options Diagnostics","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_compileoption_used","package":"phobos","parentType":"","signature":"int sqlite3_compileoption_used(const  char  * zOptName)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_compileoption_used.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_compileoption_get","package":"phobos","parentType":"","signature":"immutable(char) * sqlite3_compileoption_get(int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_compileoption_get.html"},{"doc":"CAPI3REF: Test To See If The Library Is Threadsafe","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_threadsafe","package":"phobos","parentType":"","signature":"int sqlite3_threadsafe()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_threadsafe.html"},{"doc":"CAPI3REF: Closing A Database Connection","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_close","package":"phobos","parentType":"","signature":"int sqlite3_close(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_close.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_close_v2","package":"phobos","parentType":"","signature":"int sqlite3_close_v2(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_close_v2.html"},{"doc":"CAPI3REF: One-Step Query Execution Interface","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_exec","package":"phobos","parentType":"","signature":"int sqlite3_exec(\n     sqlite3 *,                                         /** An open database */\n     const(char) * sql,                                  /** SQL to be evaluated */\n     int  function (void *, int, char * *, char * *)  callback,  /** Callback function */\n     void  *,                                           /** 1st argument to callback */\n     char  * * errmsg                                     /** Error msg written here */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_exec.html"},{"doc":"CAPI3REF: Initialize The SQLite Library","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_initialize","package":"phobos","parentType":"","signature":"int sqlite3_initialize()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_initialize.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_shutdown","package":"phobos","parentType":"","signature":"int sqlite3_shutdown()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_shutdown.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_os_init","package":"phobos","parentType":"","signature":"int sqlite3_os_init()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_os_init.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_os_end","package":"phobos","parentType":"","signature":"int sqlite3_os_end()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_os_end.html"},{"doc":"CAPI3REF: Configuring The SQLite Library","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_config","package":"phobos","parentType":"","signature":"int sqlite3_config(int, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_config.html"},{"doc":"CAPI3REF: Configure database connections","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_config","package":"phobos","parentType":"","signature":"int sqlite3_db_config(sqlite3 *,  int  op, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_config.html"},{"doc":"CAPI3REF: Enable Or Disable Extended Result Codes","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_extended_result_codes","package":"phobos","parentType":"","signature":"int sqlite3_extended_result_codes(sqlite3 *,  int  onoff)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_extended_result_codes.html"},{"doc":"CAPI3REF: Last Insert Rowid","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_last_insert_rowid","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_last_insert_rowid(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_last_insert_rowid.html"},{"doc":"CAPI3REF: Set the Last Insert Rowid value","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_set_last_insert_rowid","package":"phobos","parentType":"","signature":"void sqlite3_set_last_insert_rowid(sqlite3 *, sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_set_last_insert_rowid.html"},{"doc":"CAPI3REF: Count The Number Of Rows Modified","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_changes","package":"phobos","parentType":"","signature":"int sqlite3_changes(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_changes.html"},{"doc":"CAPI3REF: Total Number Of Rows Modified","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_total_changes","package":"phobos","parentType":"","signature":"int sqlite3_total_changes(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_total_changes.html"},{"doc":"CAPI3REF: Interrupt A Long-Running Query","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_interrupt","package":"phobos","parentType":"","signature":"void sqlite3_interrupt(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_interrupt.html"},{"doc":"CAPI3REF: Determine If An SQL Statement Is Complete","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_complete","package":"phobos","parentType":"","signature":"int sqlite3_complete(const  char  * sql)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_complete.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_complete16","package":"phobos","parentType":"","signature":"int sqlite3_complete16(const  void  * sql)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_complete16.html"},{"doc":"CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_busy_handler","package":"phobos","parentType":"","signature":"int sqlite3_busy_handler(sqlite3 *,  int  function (void *, int),  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_busy_handler.html"},{"doc":"CAPI3REF: Set A Busy Timeout","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_busy_timeout","package":"phobos","parentType":"","signature":"int sqlite3_busy_timeout(sqlite3 *,  int  ms)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_busy_timeout.html"},{"doc":"CAPI3REF: Convenience Routines For Running Queries","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_get_table","package":"phobos","parentType":"","signature":"int sqlite3_get_table(\n     sqlite3 * db,          /** An open database */\n     const(char) * zSql,     /** SQL to be evaluated */\n     char  * * * pazResult,    /** Results of the query */\n     int  * pnRow,           /** Number of result rows written here */\n     int  * pnColumn,        /** Number of result columns written here */\n     char  * * pzErrmsg       /** Error msg written here */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_get_table.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_free_table","package":"phobos","parentType":"","signature":"void sqlite3_free_table(char  * * result)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_free_table.html"},{"doc":"CAPI3REF: Formatted String Printing Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mprintf","package":"phobos","parentType":"","signature":"char  *sqlite3_mprintf sqlite3_mprintf(const  char *,...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mprintf.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vmprintf","package":"phobos","parentType":"","signature":"char  *sqlite3_vmprintf sqlite3_vmprintf(const  char *,  va_list)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vmprintf.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snprintf","package":"phobos","parentType":"","signature":"char  *sqlite3_snprintf sqlite3_snprintf(int, char *, const  char *, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snprintf.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vsnprintf","package":"phobos","parentType":"","signature":"char  *sqlite3_vsnprintf sqlite3_vsnprintf(int, char *, const  char *,  va_list)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vsnprintf.html"},{"doc":"CAPI3REF: Memory Allocation Subsystem","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_malloc","package":"phobos","parentType":"","signature":"void  *sqlite3_malloc sqlite3_malloc(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_malloc.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_malloc64","package":"phobos","parentType":"","signature":"void  *sqlite3_malloc64 sqlite3_malloc64(sqlite3_uint64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_malloc64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_realloc","package":"phobos","parentType":"","signature":"void  *sqlite3_realloc sqlite3_realloc(void *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_realloc.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_realloc64","package":"phobos","parentType":"","signature":"void  *sqlite3_realloc64 sqlite3_realloc64(void *,  sqlite3_uint64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_realloc64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_free","package":"phobos","parentType":"","signature":"void sqlite3_free(void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_free.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_msize","package":"phobos","parentType":"","signature":"sqlite3_uint64 sqlite3_msize(void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_msize.html"},{"doc":"CAPI3REF: Memory Allocator Statistics","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_memory_used","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_memory_used()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_memory_used.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_memory_highwater","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_memory_highwater(int  resetFlag)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_memory_highwater.html"},{"doc":"CAPI3REF: Pseudo-Random Number Generator","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_randomness","package":"phobos","parentType":"","signature":"void sqlite3_randomness(int  N,  void  * P)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_randomness.html"},{"doc":"CAPI3REF: Compile-Time Authorization Callbacks","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_set_authorizer","package":"phobos","parentType":"","signature":"int sqlite3_set_authorizer(\n     sqlite3 *,\n     int  function (void *, int, const  char *, const  char *, const  char *, const  char *)  xAuth,\n     void  * pUserData\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_set_authorizer.html"},{"doc":"CAPI3REF: Tracing And Profiling Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_trace","package":"phobos","parentType":"","signature":"void  *sqlite3_trace sqlite3_trace(sqlite3 *,  void  function (void *, const  char *)  xTrace,  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_trace.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_profile","package":"phobos","parentType":"","signature":"void  *sqlite3_profile sqlite3_profile(sqlite3 *,  void  function (void *, const  char *, sqlite3_uint64)  xProfile,  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_profile.html"},{"doc":"CAPI3REF: SQL Trace Hook","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_trace_v2","package":"phobos","parentType":"","signature":"int sqlite3_trace_v2(\n     sqlite3 *,\n     uint  uMask,\n     int  function (uint,  void *,  void *,  void *)  xCallback,\n     void *  pCtx\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_trace_v2.html"},{"doc":"CAPI3REF: Query Progress Callbacks","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_progress_handler","package":"phobos","parentType":"","signature":"void sqlite3_progress_handler(sqlite3 *,  int,  int  function (void *),  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_progress_handler.html"},{"doc":"CAPI3REF: Opening A New Database Connection","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_open","package":"phobos","parentType":"","signature":"int sqlite3_open(\n     const(char) * filename,   /** Database filename (UTF-8) */\n     sqlite3 * * ppDb          /** OUT: SQLite db handle */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_open.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_open16","package":"phobos","parentType":"","signature":"int sqlite3_open16(\n     const(void) * filename,   /** Database filename (UTF-16) */\n     sqlite3 * * ppDb          /** OUT: SQLite db handle */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_open16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_open_v2","package":"phobos","parentType":"","signature":"int sqlite3_open_v2(\n     const(char) * filename,   /** Database filename (UTF-8) */\n     sqlite3 * * ppDb,         /** OUT: SQLite db handle */\n     int  flags,              /** Flags */\n     const(char) * zVfs        /** Name of VFS module to use */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_open_v2.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_uri_parameter","package":"phobos","parentType":"","signature":"const(char) * sqlite3_uri_parameter(const(char) *  zFilename,  const(char) *  zParam)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_uri_parameter.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_uri_boolean","package":"phobos","parentType":"","signature":"int sqlite3_uri_boolean(const(char) *  zFile,  const(char) *  zParam,  int  bDefault)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_uri_boolean.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_uri_int64","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_uri_int64(const  char *,  const  char *,  sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_uri_int64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_uri_key","package":"phobos","parentType":"","signature":"const(char) * sqlite3_uri_key(const(char) *  zFilename,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_uri_key.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_filename_database","package":"phobos","parentType":"","signature":"const(char) * sqlite3_filename_database(const(char) *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_filename_database.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_filename_journal","package":"phobos","parentType":"","signature":"const(char) * sqlite3_filename_journal(const(char) *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_filename_journal.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_filename_wal","package":"phobos","parentType":"","signature":"const(char) * sqlite3_filename_wal(const(char) *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_filename_wal.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_database_file_object","package":"phobos","parentType":"","signature":"sqlite3_file * sqlite3_database_file_object(const(char) *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_database_file_object.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_filename","package":"phobos","parentType":"","signature":"char * sqlite3_create_filename(\n     const(char) *  zDatabase,\n     const(char) *  zJournal,\n     const(char) *  zWal,\n     int  nParam,\n     const(char *) *  azParam\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_filename.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_free_filename","package":"phobos","parentType":"","signature":"void sqlite3_free_filename(char *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_free_filename.html"},{"doc":"CAPI3REF: Error Codes And Messages","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_errcode","package":"phobos","parentType":"","signature":"int sqlite3_errcode(sqlite3 * db)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_errcode.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_extended_errcode","package":"phobos","parentType":"","signature":"int sqlite3_extended_errcode(sqlite3 * db)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_extended_errcode.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_errmsg","package":"phobos","parentType":"","signature":"const(char) * sqlite3_errmsg(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_errmsg.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_errmsg16","package":"phobos","parentType":"","signature":"const(void) * sqlite3_errmsg16(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_errmsg16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_errstr","package":"phobos","parentType":"","signature":"const(char) * sqlite3_errstr(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_errstr.html"},{"doc":"CAPI3REF: Run-time Limits","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_limit","package":"phobos","parentType":"","signature":"int sqlite3_limit(sqlite3 *,  int  id,  int  newVal)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_limit.html"},{"doc":"CAPI3REF: Compiling An SQL Statement","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare","package":"phobos","parentType":"","signature":"int sqlite3_prepare(\n     sqlite3 * db,            /** Database handle */\n     const(char) * zSql,       /** SQL statement, UTF-8 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     sqlite3_stmt * * ppStmt,  /** OUT: Statement handle */\n     const(char *) * pzTail     /** OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare_v2","package":"phobos","parentType":"","signature":"int sqlite3_prepare_v2(\n     sqlite3 * db,            /** Database handle */\n     const(char) * zSql,       /** SQL statement, UTF-8 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     sqlite3_stmt * * ppStmt,  /** OUT: Statement handle */\n     const(char *) * pzTail     /** OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare_v2.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare_v3","package":"phobos","parentType":"","signature":"int sqlite3_prepare_v3(\n     sqlite3 * db,            /** Database handle */\n     const(char) *  zSql,      /** SQL statement, UTF-8 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     uint  prepFlags,         /** Zero or more SQLITE_PREPARE_ flags */\n     sqlite3_stmt * * ppStmt,  /* OUT: Statement handle */\n     const(char *) * pzTail     /* OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare_v3.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare16","package":"phobos","parentType":"","signature":"int sqlite3_prepare16(\n     sqlite3 * db,            /** Database handle */\n     const(void) * zSql,       /** SQL statement, UTF-16 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     sqlite3_stmt * * ppStmt,  /** OUT: Statement handle */\n     const(void *) * pzTail     /** OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare16_v2","package":"phobos","parentType":"","signature":"int sqlite3_prepare16_v2(\n     sqlite3 * db,            /** Database handle */\n     const(void) * zSql,       /** SQL statement, UTF-16 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     sqlite3_stmt * * ppStmt,  /** OUT: Statement handle */\n     const(void *) * pzTail     /** OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare16_v2.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_prepare16_v3","package":"phobos","parentType":"","signature":"int sqlite3_prepare16_v3(\n     sqlite3 * db,            /** Database handle */\n     const(void) * zSql,       /** SQL statement, UTF-16 encoded */\n     int  nByte,              /** Maximum length of zSql in bytes. */\n     uint  prepFlags,         /** Zero or more SQLITE_PREPARE_ flags */\n     sqlite3_stmt * * ppStmt,  /** OUT: Statement handle */\n     const(void *) * pzTail     /** OUT: Pointer to unused portion of zSql */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_prepare16_v3.html"},{"doc":"CAPI3REF: Retrieving Statement SQL","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_sql","package":"phobos","parentType":"","signature":"const(char) * sqlite3_sql(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_sql.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_expanded_sql","package":"phobos","parentType":"","signature":"char * sqlite3_expanded_sql(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_expanded_sql.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_normalized_sql","package":"phobos","parentType":"","signature":"const(char) * sqlite3_normalized_sql(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_normalized_sql.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_readonly","package":"phobos","parentType":"","signature":"int sqlite3_stmt_readonly(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_readonly.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_isexplain","package":"phobos","parentType":"","signature":"int sqlite3_stmt_isexplain(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_isexplain.html"},{"doc":"CAPI3REF: Determine If A Prepared Statement Has Been Reset","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_busy","package":"phobos","parentType":"","signature":"int sqlite3_stmt_busy(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_busy.html"},{"doc":"CAPI3REF: Binding Values To Prepared Statements","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_blob","package":"phobos","parentType":"","signature":"int sqlite3_bind_blob(sqlite3_stmt *,  int,  const  void *,  int  n,  void  function (void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_blob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_blob64","package":"phobos","parentType":"","signature":"int sqlite3_bind_blob64(sqlite3_stmt *,  int,  const  void *,  sqlite3_uint64, void  function (void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_blob64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_double","package":"phobos","parentType":"","signature":"int sqlite3_bind_double(sqlite3_stmt *,  int,  double)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_double.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_int","package":"phobos","parentType":"","signature":"int sqlite3_bind_int(sqlite3_stmt *,  int,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_int.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_int64","package":"phobos","parentType":"","signature":"int sqlite3_bind_int64(sqlite3_stmt *,  int,  sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_int64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_null","package":"phobos","parentType":"","signature":"int sqlite3_bind_null(sqlite3_stmt *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_null.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_text","package":"phobos","parentType":"","signature":"int sqlite3_bind_text(sqlite3_stmt *,  int,  const  char *,  int  n,  void  function (void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_text.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_text16","package":"phobos","parentType":"","signature":"int sqlite3_bind_text16(sqlite3_stmt *,  int,  const  void *,  int,  void  function (void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_text16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_text64","package":"phobos","parentType":"","signature":"int sqlite3_bind_text64(sqlite3_stmt *,  int,  const  char *,  sqlite3_uint64, void  function (void *),  ubyte  encoding)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_text64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_value","package":"phobos","parentType":"","signature":"int sqlite3_bind_value(sqlite3_stmt *,  int,  const  sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_value.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_zeroblob","package":"phobos","parentType":"","signature":"int sqlite3_bind_zeroblob(sqlite3_stmt *,  int,  int  n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_zeroblob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_zeroblob64","package":"phobos","parentType":"","signature":"int sqlite3_bind_zeroblob64(sqlite3_stmt *,  int,  sqlite3_uint64 n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_zeroblob64.html"},{"doc":"CAPI3REF: Number Of SQL Parameters","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_parameter_count","package":"phobos","parentType":"","signature":"int sqlite3_bind_parameter_count(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_parameter_count.html"},{"doc":"CAPI3REF: Name Of A Host Parameter","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_parameter_name","package":"phobos","parentType":"","signature":"const(char) * sqlite3_bind_parameter_name(sqlite3_stmt *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_parameter_name.html"},{"doc":"CAPI3REF: Index Of A Parameter With A Given Name","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_bind_parameter_index","package":"phobos","parentType":"","signature":"int sqlite3_bind_parameter_index(sqlite3_stmt *,  const  char  * zName)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_bind_parameter_index.html"},{"doc":"CAPI3REF: Reset All Bindings On A Prepared Statement","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_clear_bindings","package":"phobos","parentType":"","signature":"int sqlite3_clear_bindings(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_clear_bindings.html"},{"doc":"CAPI3REF: Number Of Columns In A Result Set","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_count","package":"phobos","parentType":"","signature":"int sqlite3_column_count(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_count.html"},{"doc":"CAPI3REF: Column Names In A Result Set","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_name","package":"phobos","parentType":"","signature":"const(char) * sqlite3_column_name(sqlite3_stmt *,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_name.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_name16","package":"phobos","parentType":"","signature":"const(void) * sqlite3_column_name16(sqlite3_stmt *,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_name16.html"},{"doc":"CAPI3REF: Source Of Data In A Query Result","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_database_name","package":"phobos","parentType":"","signature":"const(char) * sqlite3_column_database_name(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_database_name.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_database_name16","package":"phobos","parentType":"","signature":"const(void) * sqlite3_column_database_name16(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_database_name16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_table_name","package":"phobos","parentType":"","signature":"const(char) * sqlite3_column_table_name(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_table_name.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_table_name16","package":"phobos","parentType":"","signature":"const (void) * sqlite3_column_table_name16(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_table_name16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_origin_name","package":"phobos","parentType":"","signature":"const (char) * sqlite3_column_origin_name(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_origin_name.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_origin_name16","package":"phobos","parentType":"","signature":"const (void) * sqlite3_column_origin_name16(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_origin_name16.html"},{"doc":"CAPI3REF: Declared Datatype Of A Query Result","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_decltype","package":"phobos","parentType":"","signature":"const (char) * sqlite3_column_decltype(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_decltype.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_decltype16","package":"phobos","parentType":"","signature":"const (void) * sqlite3_column_decltype16(sqlite3_stmt *, int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_decltype16.html"},{"doc":"CAPI3REF: Evaluate An SQL Statement","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_step","package":"phobos","parentType":"","signature":"int sqlite3_step(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_step.html"},{"doc":"CAPI3REF: Number of columns in a result set","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_data_count","package":"phobos","parentType":"","signature":"int sqlite3_data_count(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_data_count.html"},{"doc":"CAPI3REF: Result Values From A Query","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_blob","package":"phobos","parentType":"","signature":"const (void) * sqlite3_column_blob(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_blob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_double","package":"phobos","parentType":"","signature":"double sqlite3_column_double(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_double.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_int","package":"phobos","parentType":"","signature":"int sqlite3_column_int(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_int.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_int64","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_column_int64(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_int64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_text","package":"phobos","parentType":"","signature":"const (char) * sqlite3_column_text(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_text.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_text16","package":"phobos","parentType":"","signature":"const (void) * sqlite3_column_text16(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_text16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_value","package":"phobos","parentType":"","signature":"sqlite3_value *sqlite3_column_value sqlite3_column_value(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_value.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_bytes","package":"phobos","parentType":"","signature":"int sqlite3_column_bytes(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_bytes.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_bytes16","package":"phobos","parentType":"","signature":"int sqlite3_column_bytes16(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_bytes16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_column_type","package":"phobos","parentType":"","signature":"int sqlite3_column_type(sqlite3_stmt *,  int  iCol)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_column_type.html"},{"doc":"CAPI3REF: Destroy A Prepared Statement Object","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_finalize","package":"phobos","parentType":"","signature":"int sqlite3_finalize(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_finalize.html"},{"doc":"CAPI3REF: Reset A Prepared Statement Object","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_reset","package":"phobos","parentType":"","signature":"int sqlite3_reset(sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_reset.html"},{"doc":"CAPI3REF: Create Or Redefine SQL Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_function","package":"phobos","parentType":"","signature":"int sqlite3_create_function(\n     sqlite3 * db,\n     const(char) * zFunctionName,\n     int  nArg,\n     int  eTextRep,\n     void  * pApp,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xFunc,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xStep,\n     void  function (sqlite3_context *)  xFinal\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_function.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_function16","package":"phobos","parentType":"","signature":"int sqlite3_create_function16(\n     sqlite3 * db,\n     const(void) * zFunctionName,\n     int  nArg,\n     int  eTextRep,\n     void  * pApp,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xFunc,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xStep,\n     void  function (sqlite3_context *)  xFinal\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_function16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_function_v2","package":"phobos","parentType":"","signature":"int sqlite3_create_function_v2(\n     sqlite3 * db,\n     const(char) * zFunctionName,\n     int  nArg,\n     int  eTextRep,\n     void  * pApp,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xFunc,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xStep,\n     void  function (sqlite3_context *)  xFinal,\n     void  function (void *)  xDestroy\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_function_v2.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_window_function","package":"phobos","parentType":"","signature":"int sqlite3_create_window_function(\n     sqlite3 * db,\n     const(char) * zFunctionName,\n     int  nArg,\n     int  eTextRep,\n     void  * pApp,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xStep,\n     void  function (sqlite3_context *)  xFinal,\n     void  function (sqlite3_context *)  xValue,\n     void  function (sqlite3_context *, int, sqlite3_value * *)  xInverse,\n     void  function (void *)  xDestroy\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_window_function.html"},{"doc":"CAPI3REF: Deprecated Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_aggregate_count","package":"phobos","parentType":"","signature":"int sqlite3_aggregate_count(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_aggregate_count.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_expired","package":"phobos","parentType":"","signature":"int sqlite3_expired(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_expired.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_transfer_bindings","package":"phobos","parentType":"","signature":"int sqlite3_transfer_bindings(sqlite3_stmt *,  sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_transfer_bindings.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_global_recover","package":"phobos","parentType":"","signature":"int sqlite3_global_recover()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_global_recover.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_thread_cleanup","package":"phobos","parentType":"","signature":"void sqlite3_thread_cleanup()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_thread_cleanup.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_memory_alarm","package":"phobos","parentType":"","signature":"int sqlite3_memory_alarm(void  function(void *, sqlite3_int64, int), void *, sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_memory_alarm.html"},{"doc":"CAPI3REF: Obtaining SQL Function Parameter Values","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_blob","package":"phobos","parentType":"","signature":"const (void) * sqlite3_value_blob(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_blob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_bytes","package":"phobos","parentType":"","signature":"int sqlite3_value_bytes(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_bytes.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_bytes16","package":"phobos","parentType":"","signature":"int sqlite3_value_bytes16(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_bytes16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_double","package":"phobos","parentType":"","signature":"double sqlite3_value_double(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_double.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_int","package":"phobos","parentType":"","signature":"int sqlite3_value_int(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_int.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_int64","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_value_int64(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_int64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_text","package":"phobos","parentType":"","signature":"const (char) * sqlite3_value_text(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_text.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_text16","package":"phobos","parentType":"","signature":"const (void) * sqlite3_value_text16(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_text16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_text16le","package":"phobos","parentType":"","signature":"const (void) * sqlite3_value_text16le(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_text16le.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_text16be","package":"phobos","parentType":"","signature":"const (void) * sqlite3_value_text16be(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_text16be.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_type","package":"phobos","parentType":"","signature":"int sqlite3_value_type(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_type.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_numeric_type","package":"phobos","parentType":"","signature":"int sqlite3_value_numeric_type(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_numeric_type.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_nochange","package":"phobos","parentType":"","signature":"int sqlite3_value_nochange(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_nochange.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_frombind","package":"phobos","parentType":"","signature":"int sqlite3_value_frombind(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_frombind.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_subtype","package":"phobos","parentType":"","signature":"uint sqlite3_value_subtype(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_subtype.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_dup","package":"phobos","parentType":"","signature":"sqlite3_value * sqlite3_value_dup(const  sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_dup.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_value_free","package":"phobos","parentType":"","signature":"void sqlite3_value_free(sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_value_free.html"},{"doc":"CAPI3REF: Obtain Aggregate Function Context","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_aggregate_context","package":"phobos","parentType":"","signature":"void  *sqlite3_aggregate_context sqlite3_aggregate_context(sqlite3_context *,  int  nBytes)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_aggregate_context.html"},{"doc":"CAPI3REF: User Data For Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_user_data","package":"phobos","parentType":"","signature":"void  *sqlite3_user_data sqlite3_user_data(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_user_data.html"},{"doc":"CAPI3REF: Database Connection For Functions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_context_db_handle","package":"phobos","parentType":"","signature":"sqlite3 *sqlite3_context_db_handle sqlite3_context_db_handle(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_context_db_handle.html"},{"doc":"CAPI3REF: Function Auxiliary Data","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_get_auxdata","package":"phobos","parentType":"","signature":"void  *sqlite3_get_auxdata sqlite3_get_auxdata(sqlite3_context *,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_get_auxdata.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_set_auxdata","package":"phobos","parentType":"","signature":"void sqlite3_set_auxdata(sqlite3_context *,  int  N,  void *,  void  function (void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_set_auxdata.html"},{"doc":"CAPI3REF: Setting The Result Of An SQL Function","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_blob","package":"phobos","parentType":"","signature":"void sqlite3_result_blob(sqlite3_context *,  const  void *,  int,  void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_blob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_blob64","package":"phobos","parentType":"","signature":"void sqlite3_result_blob64(sqlite3_context *, const  void *, sqlite3_uint64, void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_blob64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_double","package":"phobos","parentType":"","signature":"void sqlite3_result_double(sqlite3_context *,  double)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_double.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_error","package":"phobos","parentType":"","signature":"void sqlite3_result_error(sqlite3_context *,  const  char *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_error.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_error16","package":"phobos","parentType":"","signature":"void sqlite3_result_error16(sqlite3_context *,  const  void *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_error16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_error_toobig","package":"phobos","parentType":"","signature":"void sqlite3_result_error_toobig(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_error_toobig.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_error_nomem","package":"phobos","parentType":"","signature":"void sqlite3_result_error_nomem(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_error_nomem.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_error_code","package":"phobos","parentType":"","signature":"void sqlite3_result_error_code(sqlite3_context *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_error_code.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_int","package":"phobos","parentType":"","signature":"void sqlite3_result_int(sqlite3_context *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_int.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_int64","package":"phobos","parentType":"","signature":"void sqlite3_result_int64(sqlite3_context *,  sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_int64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_null","package":"phobos","parentType":"","signature":"void sqlite3_result_null(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_null.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_text","package":"phobos","parentType":"","signature":"void sqlite3_result_text(sqlite3_context *,  const  char *,  int,  void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_text.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_text64","package":"phobos","parentType":"","signature":"void sqlite3_result_text64(sqlite3_context *,  const  char *, sqlite3_uint64, void  function(void *),  ubyte  encoding)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_text64.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_text16","package":"phobos","parentType":"","signature":"void sqlite3_result_text16(sqlite3_context *,  const  void *,  int,  void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_text16.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_text16le","package":"phobos","parentType":"","signature":"void sqlite3_result_text16le(sqlite3_context *,  const  void *,  int,  void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_text16le.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_text16be","package":"phobos","parentType":"","signature":"void sqlite3_result_text16be(sqlite3_context *,  const  void *,  int,  void  function(void *))","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_text16be.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_value","package":"phobos","parentType":"","signature":"void sqlite3_result_value(sqlite3_context *,  sqlite3_value *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_value.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_zeroblob","package":"phobos","parentType":"","signature":"void sqlite3_result_zeroblob(sqlite3_context *,  int  n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_zeroblob.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_zeroblob64","package":"phobos","parentType":"","signature":"int sqlite3_result_zeroblob64(sqlite3_context *,  sqlite3_uint64 n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_zeroblob64.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_result_subtype","package":"phobos","parentType":"","signature":"void sqlite3_result_subtype(sqlite3_context *, uint)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_result_subtype.html"},{"doc":"CAPI3REF: Define New Collating Sequences","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_collation","package":"phobos","parentType":"","signature":"int sqlite3_create_collation(\n     sqlite3 *,\n     const(char) * zName,\n     int  eTextRep,\n     void  * pArg,\n     int  function (void *, int, const  void *, int, const  void *)  xCompare\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_collation.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_collation_v2","package":"phobos","parentType":"","signature":"int sqlite3_create_collation_v2(\n     sqlite3 *,\n     const(char) * zName,\n     int  eTextRep,\n     void  * pArg,\n     int  function (void *, int, const  void *, int, const  void *)  xCompare,\n     void  function (void *)  xDestroy\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_collation_v2.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_collation16","package":"phobos","parentType":"","signature":"int sqlite3_create_collation16(\n     sqlite3 *,\n     const(void) * zName,\n     int  eTextRep,\n     void  * pArg,\n     int  function (void *, int, const  void *, int, const  void *)  xCompare\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_collation16.html"},{"doc":"CAPI3REF: Collation Needed Callbacks","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_collation_needed","package":"phobos","parentType":"","signature":"int sqlite3_collation_needed(\n     sqlite3 *,\n     void *,\n     void  function (void *, sqlite3 *, int  eTextRep, const  char *)\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_collation_needed.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_collation_needed16","package":"phobos","parentType":"","signature":"int sqlite3_collation_needed16(\n     sqlite3 *,\n     void *,\n     void  function (void *, sqlite3 *, int  eTextRep, const  void *)\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_collation_needed16.html"},{"doc":"Specify the activation key for a CEROD database.  Unless activated, none of the CEROD routines will work.","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_activate_cerod","package":"phobos","parentType":"","signature":"void sqlite3_activate_cerod(\n     const(char) * zPassPhrase        /** Activation phrase */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_activate_cerod.html"},{"doc":"CAPI3REF: Suspend Execution For A Short Time","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_sleep","package":"phobos","parentType":"","signature":"int sqlite3_sleep(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_sleep.html"},{"doc":"CAPI3REF: Win32 Specific Interface","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_win32_set_directory","package":"phobos","parentType":"","signature":"int sqlite3_win32_set_directory(\n     c_ulong type,        /** Identifier for directory being set or reset */\n     void *  zValue        /** New value for directory being set or reset */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_win32_set_directory.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_win32_set_directory8","package":"phobos","parentType":"","signature":"int sqlite3_win32_set_directory8(\n     c_ulong type,        /** Identifier for directory being set or reset */\n     void *  zValue        /** New value for directory being set or reset */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_win32_set_directory8.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_win32_set_directory16","package":"phobos","parentType":"","signature":"int sqlite3_win32_set_directory16(\n     c_ulong type,        /** Identifier for directory being set or reset */\n     void *  zValue        /** New value for directory being set or reset */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_win32_set_directory16.html"},{"doc":"CAPI3REF: Test For Auto-Commit Mode","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_get_autocommit","package":"phobos","parentType":"","signature":"int sqlite3_get_autocommit(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_get_autocommit.html"},{"doc":"CAPI3REF: Find The Database Handle Of A Prepared Statement","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_handle","package":"phobos","parentType":"","signature":"sqlite3 *sqlite3_db_handle sqlite3_db_handle(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_handle.html"},{"doc":"CAPI3REF: Return The Filename For A Database Connection","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_filename","package":"phobos","parentType":"","signature":"const(char) * sqlite3_db_filename(sqlite3 * db,  const  char *  zDbName)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_filename.html"},{"doc":"CAPI3REF: Determine if a database is read-only","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_readonly","package":"phobos","parentType":"","signature":"int sqlite3_db_readonly(sqlite3 * db,  const  char  *  zDbName)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_readonly.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_next_stmt","package":"phobos","parentType":"","signature":"sqlite3_stmt *sqlite3_next_stmt sqlite3_next_stmt(sqlite3 * pDb,  sqlite3_stmt * pStmt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_next_stmt.html"},{"doc":"CAPI3REF: Commit And Rollback Notification Callbacks","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_commit_hook","package":"phobos","parentType":"","signature":"void  *sqlite3_commit_hook sqlite3_commit_hook(sqlite3 *,  int  function (void *),  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_commit_hook.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_rollback_hook","package":"phobos","parentType":"","signature":"void  *sqlite3_rollback_hook sqlite3_rollback_hook(sqlite3 *,  void  function (void  *),  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_rollback_hook.html"},{"doc":"CAPI3REF: Data Change Notification Callbacks","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_update_hook","package":"phobos","parentType":"","signature":"void  *sqlite3_update_hook sqlite3_update_hook(\n     sqlite3 *,\n     void  function (void  *, int , char  *,  char  *,  sqlite3_int64),\n     void *\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_update_hook.html"},{"doc":"CAPI3REF: Enable Or Disable Shared Pager Cache","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_enable_shared_cache","package":"phobos","parentType":"","signature":"int sqlite3_enable_shared_cache(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_enable_shared_cache.html"},{"doc":"CAPI3REF: Attempt To Free Heap Memory","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_release_memory","package":"phobos","parentType":"","signature":"int sqlite3_release_memory(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_release_memory.html"},{"doc":"CAPI3REF: Free Memory Used By A Database Connection","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_release_memory","package":"phobos","parentType":"","signature":"int sqlite3_db_release_memory(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_release_memory.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_soft_heap_limit64","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_soft_heap_limit64.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_hard_heap_limit64","package":"phobos","parentType":"","signature":"sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_hard_heap_limit64.html"},{"doc":"CAPI3REF: Deprecated Soft Heap Limit Interface","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_soft_heap_limit","package":"phobos","parentType":"","signature":"void sqlite3_soft_heap_limit(int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_soft_heap_limit.html"},{"doc":"CAPI3REF: Extract Metadata About A Column Of A Table","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_table_column_metadata","package":"phobos","parentType":"","signature":"int sqlite3_table_column_metadata(\n     sqlite3 * db,                /** Connection handle */\n     const(char) * zDbName,        /** Database name or NULL */\n     const(char) * zTableName,     /** Table name */\n     const(char) * zColumnName,    /** Column name */\n     char  * * pzDataType,    /** OUTPUT: Declared data type */\n     char  * * pzCollSeq,     /** OUTPUT: Collation sequence name */\n     int  * pNotNull,              /** OUTPUT: True if NOT NULL constraint exists */\n     int  * pPrimaryKey,           /** OUTPUT: True if column part of PK */\n     int  * pAutoinc               /** OUTPUT: True if column is auto-increment */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_table_column_metadata.html"},{"doc":"CAPI3REF: Load An Extension","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_load_extension","package":"phobos","parentType":"","signature":"int sqlite3_load_extension(\n     sqlite3 * db,          /** Load the extension into this database connection */\n     const(char) * zFile,    /** Name of the shared library containing extension */\n     const(char) * zProc,    /** Entry point.  Derived from zFile if 0 */\n     char  * * pzErrMsg       /** Put error message here if not 0 */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_load_extension.html"},{"doc":"CAPI3REF: Enable Or Disable Extension Loading","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_enable_load_extension","package":"phobos","parentType":"","signature":"int sqlite3_enable_load_extension(sqlite3 * db,  int  onoff)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_enable_load_extension.html"},{"doc":"CAPI3REF: Automatically Load Statically Linked Extensions","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_auto_extension","package":"phobos","parentType":"","signature":"int sqlite3_auto_extension(void  function ()  xEntryPoint)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_auto_extension.html"},{"doc":"CAPI3REF: Cancel Automatic Extension Loading","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_cancel_auto_extension","package":"phobos","parentType":"","signature":"int sqlite3_cancel_auto_extension(void  function()  xEntryPoint)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_cancel_auto_extension.html"},{"doc":"CAPI3REF: Reset Automatic Extension Loading","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_reset_auto_extension","package":"phobos","parentType":"","signature":"void sqlite3_reset_auto_extension()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_reset_auto_extension.html"},{"doc":"CAPI3REF: Register A Virtual Table Implementation","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_module","package":"phobos","parentType":"","signature":"int sqlite3_create_module(\n     sqlite3 * db,                    /* SQLite connection to register module with */\n     const(char) * zName,              /* Name of the module */\n     const(sqlite3_module) * p,        /* Methods for the module */\n     void  * pClientData               /* Client data for xCreate/xConnect */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_module.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_create_module_v2","package":"phobos","parentType":"","signature":"int sqlite3_create_module_v2(\n     sqlite3 * db,                    /* SQLite connection to register module with */\n     const(char) * zName,              /* Name of the module */\n     const(sqlite3_module) * p,        /* Methods for the module */\n     void  * pClientData,              /* Client data for xCreate/xConnect */\n     void  function (void *)  xDestroy  /* Module destructor function */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_create_module_v2.html"},{"doc":"CAPI3REF: Remove Unnecessary Virtual Table Implementations","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_drop_modules","package":"phobos","parentType":"","signature":"int sqlite3_drop_modules(\n     sqlite3 * db,                    /* Remove modules from this connection */\n     const(char *) *  azKeep            /* Except, do not remove the ones named here */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_drop_modules.html"},{"doc":"CAPI3REF: Declare The Schema Of A Virtual Table","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_declare_vtab","package":"phobos","parentType":"","signature":"int sqlite3_declare_vtab(sqlite3 *,  const  char  * zSQL)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_declare_vtab.html"},{"doc":"CAPI3REF: Overload A Function For A Virtual Table","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_overload_function","package":"phobos","parentType":"","signature":"int sqlite3_overload_function(sqlite3 *,  const  char  * zFuncName,  int  nArg)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_overload_function.html"},{"doc":"CAPI3REF: Open A BLOB For Incremental I/O","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_open","package":"phobos","parentType":"","signature":"int sqlite3_blob_open(\n     sqlite3 *,\n     const(char) *  zDb,\n     const(char) *  zTable,\n     const(char) *  zColumn,\n     sqlite3_int64 iRow,\n     int  flags,\n     sqlite3_blob * * ppBlob\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_open.html"},{"doc":"CAPI3REF: Move a BLOB Handle to a New Row","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_reopen","package":"phobos","parentType":"","signature":"int sqlite3_blob_reopen(sqlite3_blob *,  sqlite3_int64)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_reopen.html"},{"doc":"CAPI3REF: Close A BLOB Handle","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_close","package":"phobos","parentType":"","signature":"int sqlite3_blob_close(sqlite3_blob *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_close.html"},{"doc":"CAPI3REF: Return The Size Of An Open BLOB","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_bytes","package":"phobos","parentType":"","signature":"int sqlite3_blob_bytes(sqlite3_blob *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_bytes.html"},{"doc":"CAPI3REF: Read Data From A BLOB Incrementally","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_read","package":"phobos","parentType":"","signature":"int sqlite3_blob_read(sqlite3_blob *,  void  * Z,  int  N,  int  iOffset)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_read.html"},{"doc":"CAPI3REF: Write Data Into A BLOB Incrementally","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_blob_write","package":"phobos","parentType":"","signature":"int sqlite3_blob_write(sqlite3_blob *,  const  void  * z,  int  n,  int  iOffset)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_blob_write.html"},{"doc":"CAPI3REF: Virtual File System Objects","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vfs_find","package":"phobos","parentType":"","signature":"sqlite3_vfs *sqlite3_vfs_find sqlite3_vfs_find(const  char  * zVfsName)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vfs_find.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vfs_register","package":"phobos","parentType":"","signature":"int sqlite3_vfs_register(sqlite3_vfs *,  int  makeDflt)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vfs_register.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vfs_unregister","package":"phobos","parentType":"","signature":"int sqlite3_vfs_unregister(sqlite3_vfs *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vfs_unregister.html"},{"doc":"CAPI3REF: Mutexes","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_alloc","package":"phobos","parentType":"","signature":"sqlite3_mutex *sqlite3_mutex_alloc sqlite3_mutex_alloc(int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_alloc.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_free","package":"phobos","parentType":"","signature":"void sqlite3_mutex_free(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_free.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_enter","package":"phobos","parentType":"","signature":"void sqlite3_mutex_enter(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_enter.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_try","package":"phobos","parentType":"","signature":"int sqlite3_mutex_try(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_try.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_leave","package":"phobos","parentType":"","signature":"void sqlite3_mutex_leave(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_leave.html"},{"doc":"CAPI3REF: Mutex Verification Routines","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_held","package":"phobos","parentType":"","signature":"int sqlite3_mutex_held(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_held.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_mutex_notheld","package":"phobos","parentType":"","signature":"int sqlite3_mutex_notheld(sqlite3_mutex *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_mutex_notheld.html"},{"doc":"CAPI3REF: Retrieve the mutex for a database connection","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_mutex","package":"phobos","parentType":"","signature":"sqlite3_mutex *sqlite3_db_mutex sqlite3_db_mutex(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_mutex.html"},{"doc":"CAPI3REF: Low-Level Control Of Database Files","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_file_control","package":"phobos","parentType":"","signature":"int sqlite3_file_control(sqlite3 *,  const  char  * zDbName,  int  op,  void *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_file_control.html"},{"doc":"CAPI3REF: Testing Interface","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_test_control","package":"phobos","parentType":"","signature":"int sqlite3_test_control(int  op, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_test_control.html"},{"doc":"CAPI3REF: SQL Keyword Checking","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_keyword_count","package":"phobos","parentType":"","signature":"int sqlite3_keyword_count()","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_keyword_count.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_keyword_name","package":"phobos","parentType":"","signature":"int sqlite3_keyword_name(int,  const(char *) *,  int *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_keyword_name.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_keyword_check","package":"phobos","parentType":"","signature":"int sqlite3_keyword_check(const(char) *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_keyword_check.html"},{"doc":"CAPI3REF: Create A New Dynamic String Object","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_new","package":"phobos","parentType":"","signature":"sqlite3_str * sqlite3_str_new(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_new.html"},{"doc":"CAPI3REF: Finalize A Dynamic String","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_finish","package":"phobos","parentType":"","signature":"char * sqlite3_str_finish(sqlite3_str *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_finish.html"},{"doc":"CAPI3REF: Add Content To A Dynamic String","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_appendf","package":"phobos","parentType":"","signature":"void sqlite3_str_appendf(sqlite3_str *,  const(char) *  zFormat, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_appendf.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_vappendf","package":"phobos","parentType":"","signature":"void sqlite3_str_vappendf(sqlite3_str *,  const(char) *  zFormat,  va_list)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_vappendf.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_append","package":"phobos","parentType":"","signature":"void sqlite3_str_append(sqlite3_str *,  const(char) *  zIn,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_append.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_appendall","package":"phobos","parentType":"","signature":"void sqlite3_str_appendall(sqlite3_str *,  const(char) *  zIn)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_appendall.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_appendchar","package":"phobos","parentType":"","signature":"void sqlite3_str_appendchar(sqlite3_str *,  int  N,  char  C)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_appendchar.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_reset","package":"phobos","parentType":"","signature":"void sqlite3_str_reset(sqlite3_str *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_reset.html"},{"doc":"CAPI3REF: Status Of A Dynamic String","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_errcode","package":"phobos","parentType":"","signature":"int sqlite3_str_errcode(sqlite3_str *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_errcode.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_length","package":"phobos","parentType":"","signature":"int sqlite3_str_length(sqlite3_str *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_length.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_str_value","package":"phobos","parentType":"","signature":"char * sqlite3_str_value(sqlite3_str *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_str_value.html"},{"doc":"CAPI3REF: SQLite Runtime Status","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_status","package":"phobos","parentType":"","signature":"int sqlite3_status(int  op,  int  * pCurrent,  int  * pHighwater,  int  resetFlag)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_status.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_status64","package":"phobos","parentType":"","signature":"int sqlite3_status64(int  op,  long  * pCurrent,  long  * pHighwater,  int  resetFlag)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_status64.html"},{"doc":"CAPI3REF: Database Connection Status","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_status","package":"phobos","parentType":"","signature":"int sqlite3_db_status(sqlite3 *,  int  op,  int  * pCur,  int  * pHiwtr,  int  resetFlg)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_status.html"},{"doc":"CAPI3REF: Prepared Statement Status","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_status","package":"phobos","parentType":"","signature":"int sqlite3_stmt_status(sqlite3_stmt *,  int  op, int  resetFlg)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_status.html"},{"doc":"CAPI3REF: Online Backup API.","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_backup_init","package":"phobos","parentType":"","signature":"sqlite3_backup *sqlite3_backup_init sqlite3_backup_init(\n     sqlite3 * pDest,                        /** Destination database handle */\n     const(char) * zDestName,                 /** Destination database name */\n     sqlite3 * pSource,                      /** Source database handle */\n     const(char) * zSourceName                /** Source database name */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_backup_init.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_backup_step","package":"phobos","parentType":"","signature":"int sqlite3_backup_step(sqlite3_backup * p,  int  nPage)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_backup_step.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_backup_finish","package":"phobos","parentType":"","signature":"int sqlite3_backup_finish(sqlite3_backup * p)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_backup_finish.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_backup_remaining","package":"phobos","parentType":"","signature":"int sqlite3_backup_remaining(sqlite3_backup * p)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_backup_remaining.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_backup_pagecount","package":"phobos","parentType":"","signature":"int sqlite3_backup_pagecount(sqlite3_backup * p)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_backup_pagecount.html"},{"doc":"CAPI3REF: Unlock Notification","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_unlock_notify","package":"phobos","parentType":"","signature":"int sqlite3_unlock_notify(\n     sqlite3 * pBlocked,                               /** Waiting connection */\n     void  function (void  * * apArg,  int  nArg)  xNotify,  /** Callback function to invoke */\n     void  * pNotifyArg                                 /** Argument to pass to xNotify */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_unlock_notify.html"},{"doc":"CAPI3REF: String Comparison","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stricmp","package":"phobos","parentType":"","signature":"int sqlite3_stricmp(const  char  * ,  const  char  * )","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stricmp.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_strnicmp","package":"phobos","parentType":"","signature":"int sqlite3_strnicmp(const  char  * ,  const  char  * ,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_strnicmp.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_strglob","package":"phobos","parentType":"","signature":"int sqlite3_strglob(const(char) *  zGlob,  const(char) *  zStr)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_strglob.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_strlike","package":"phobos","parentType":"","signature":"int sqlite3_strlike(const(char) *  zGlob,  const(char) *  zStr,  uint  cEsc)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_strlike.html"},{"doc":"CAPI3REF: Error Logging Interface","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_log","package":"phobos","parentType":"","signature":"void sqlite3_log(int  iErrCode,  const  char  * zFormat, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_log.html"},{"doc":"CAPI3REF: Write-Ahead Log Commit Hook","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_wal_hook","package":"phobos","parentType":"","signature":"void  *sqlite3_wal_hook sqlite3_wal_hook(\n     sqlite3 *,\n     int  function (void  *, sqlite3 *, const  char *, int),\n     void *\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_wal_hook.html"},{"doc":"CAPI3REF: Configure an auto-checkpoint","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_wal_autocheckpoint","package":"phobos","parentType":"","signature":"int sqlite3_wal_autocheckpoint(sqlite3 * db,  int  N)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_wal_autocheckpoint.html"},{"doc":"CAPI3REF: Checkpoint a database","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_wal_checkpoint","package":"phobos","parentType":"","signature":"int sqlite3_wal_checkpoint(sqlite3 * db,  const  char  * zDb)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_wal_checkpoint.html"},{"doc":"CAPI3REF: Checkpoint a database","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_wal_checkpoint_v2","package":"phobos","parentType":"","signature":"int sqlite3_wal_checkpoint_v2(\n     sqlite3 * db,                    /** Database handle */\n     const(char) * zDb,                /** Name of attached database (or NULL) */\n     int  eMode,                      /** SQLITE_CHECKPOINT_* value */\n     int  * pnLog,                     /** OUT: Size of WAL log in frames */\n     int  * pnCkpt                     /** OUT: Total number of frames checkpointed */\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_wal_checkpoint_v2.html"},{"doc":"CAPI3REF: Checkpoint operation parameters","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vtab_config","package":"phobos","parentType":"","signature":"int sqlite3_vtab_config(sqlite3 *,  int  op, ...)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vtab_config.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vtab_on_conflict","package":"phobos","parentType":"","signature":"int sqlite3_vtab_on_conflict(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vtab_on_conflict.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vtab_nochange","package":"phobos","parentType":"","signature":"int sqlite3_vtab_nochange(sqlite3_context *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vtab_nochange.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_vtab_collation","package":"phobos","parentType":"","signature":"const(char) * sqlite3_vtab_collation(sqlite3_index_info *,  int)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_vtab_collation.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_scanstatus","package":"phobos","parentType":"","signature":"int sqlite3_stmt_scanstatus(sqlite3_stmt * pStmt,  int  idx,  int  iScanStatusOp,  void  * pOut)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_scanstatus.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_stmt_scanstatus_reset","package":"phobos","parentType":"","signature":"void sqlite3_stmt_scanstatus_reset(sqlite3_stmt *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_stmt_scanstatus_reset.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_db_cacheflush","package":"phobos","parentType":"","signature":"int sqlite3_db_cacheflush(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_db_cacheflush.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_preupdate_hook","package":"phobos","parentType":"","signature":"void * sqlite3_preupdate_hook(\n     sqlite3 *  db,\n     void  function(\n         void *  pCtx,\n         sqlite3 *  db,                  /** Database handle */\n         int  op,                       /** SQLITE_UPDATE, DELETE or INSERT */\n         const(char) *  zDb,             /** Database name */\n         const(char) *  zName,           /** Table name */\n         sqlite3_int64 iKey1,          /** Rowid of row about to be deleted/updated */\n         sqlite3_int64 iKey2\n    )  xPreUpdate,\n     void *\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_preupdate_hook.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_preupdate_old","package":"phobos","parentType":"","signature":"int sqlite3_preupdate_old(sqlite3 *,  int,  sqlite3_value * *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_preupdate_old.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_preupdate_count","package":"phobos","parentType":"","signature":"int sqlite3_preupdate_count(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_preupdate_count.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_preupdate_depth","package":"phobos","parentType":"","signature":"int sqlite3_preupdate_depth(sqlite3 *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_preupdate_depth.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_preupdate_new","package":"phobos","parentType":"","signature":"int sqlite3_preupdate_new(sqlite3 *,  int,  sqlite3_value * *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_preupdate_new.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snapshot_get","package":"phobos","parentType":"","signature":"int sqlite3_snapshot_get(sqlite3 * db,  char  * zSchema,  sqlite3_snapshot * * ppSnapshot)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snapshot_get.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snapshot_open","package":"phobos","parentType":"","signature":"int sqlite3_snapshot_open(sqlite3 * db,  char  * zSchema,  sqlite3_snapshot * pSnapshot)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snapshot_open.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snapshot_free","package":"phobos","parentType":"","signature":"void sqlite3_snapshot_free(sqlite3_snapshot *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snapshot_free.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snapshot_cmp","package":"phobos","parentType":"","signature":"int sqlite3_snapshot_cmp(sqlite3_snapshot *  p1,  sqlite3_snapshot *  p2)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snapshot_cmp.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_snapshot_recover","package":"phobos","parentType":"","signature":"int sqlite3_snapshot_recover(sqlite3 *  db,  const(char) *  zDb)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_snapshot_recover.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_serialize","package":"phobos","parentType":"","signature":"ubyte * sqlite3_serialize(\n     sqlite3 *  db,\n     const(char) *  zSchema,\n     sqlite3_int64 *  piSize,\n     uint  mFlags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_serialize.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_deserialize","package":"phobos","parentType":"","signature":"int sqlite3_deserialize(\n     sqlite3 *  db,\n     const(char) *  zSchema,\n     ubyte *  pData,\n     sqlite3_int64 szDb,\n     sqlite3_int64 szBuf,\n     uint  mFlags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_deserialize.html"},{"doc":"Register a geometry callback named zGeom that can be used as part of an R-Tree geometry query as follows:","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_rtree_geometry_callback","package":"phobos","parentType":"","signature":"int sqlite3_rtree_geometry_callback(\n     sqlite3 * db,\n     const(char) * zGeom,\n     int  function (sqlite3_rtree_geometry *,  int  nCoord,  double  * aCoord,  int  * pRes)  xGeom,\n     void  * pContext\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_rtree_geometry_callback.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3_rtree_query_callback","package":"phobos","parentType":"","signature":"int sqlite3_rtree_query_callback(\n     sqlite3 * db,\n     const(char) *  zQueryFunc,\n     int  function(sqlite3_rtree_query_info *)  xQueryFunc,\n     void  * pContext,\n     void  function(void *)  xDestructor\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3_rtree_query_callback.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_create","package":"phobos","parentType":"","signature":"int sqlite3session_create(\n     sqlite3 *  db,\n     const(char) *  zDb,\n     sqlite3_session * *  ppSession\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_create.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_delete","package":"phobos","parentType":"","signature":"void sqlite3session_delete(sqlite3_session *  pSession)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_delete.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_enable","package":"phobos","parentType":"","signature":"int sqlite3session_enable(sqlite3_session *  pSession,  int  bEnable)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_enable.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_indirect","package":"phobos","parentType":"","signature":"int sqlite3session_indirect(sqlite3_session *  pSession,  int  bIndirect)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_indirect.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_attach","package":"phobos","parentType":"","signature":"int sqlite3session_attach(sqlite3_session *  pSession,  const(char) *  zTab)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_attach.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_table_filter","package":"phobos","parentType":"","signature":"void sqlite3session_table_filter(\n     sqlite3_session *  pSession,\n     int  function (void *  pCtx,  const(char) *  zTab)  xFilter,\n     void *  pCtx\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_table_filter.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_changeset","package":"phobos","parentType":"","signature":"int sqlite3session_changeset(\n     sqlite3_session *  pSession,\n     int *  pnChangeset,\n     void * *  ppChangeset\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_changeset.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_diff","package":"phobos","parentType":"","signature":"int sqlite3session_diff(\n     sqlite3_session *  pSession,\n     const(char) *  zFromDb,\n     const(char) *  zTbl,\n     char * *  pzErrMsg\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_diff.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_patchset","package":"phobos","parentType":"","signature":"int sqlite3session_patchset(\n     sqlite3_session *  pSession,\n     int *  pnPatchset,\n     void * *  ppPatchset\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_patchset.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_isempty","package":"phobos","parentType":"","signature":"int sqlite3session_isempty(sqlite3_session *  pSession)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_isempty.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_start","package":"phobos","parentType":"","signature":"int sqlite3changeset_start(\n     sqlite3_changeset_iter * *  pp,\n     int  nChangeset,\n     void *  pChangeset\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_start.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_start_v2","package":"phobos","parentType":"","signature":"int sqlite3changeset_start_v2(\n     sqlite3_changeset_iter * *  pp,\n     int  nChangeset,\n     void *  pChangeset,\n     int  flags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_start_v2.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_next","package":"phobos","parentType":"","signature":"int sqlite3changeset_next(sqlite3_changeset_iter *  pIter)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_next.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_op","package":"phobos","parentType":"","signature":"int sqlite3changeset_op(\n     sqlite3_changeset_iter *  pIter,\n     const(char *) *  pzTab,\n     int *  pnCol,\n     int *  pOp,\n     int *  pbIndirect\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_op.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_pk","package":"phobos","parentType":"","signature":"int sqlite3changeset_pk(\n     sqlite3_changeset_iter *  pIter,\n     ubyte * *  pabPK,\n     int *  pnCol\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_pk.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_old","package":"phobos","parentType":"","signature":"int sqlite3changeset_old(\n     sqlite3_changeset_iter *  pIter,\n     int  iVal,\n     sqlite3_value * *  ppValue\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_old.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_new","package":"phobos","parentType":"","signature":"int sqlite3changeset_new(\n     sqlite3_changeset_iter *  pIter,\n     int  iVal,\n     sqlite3_value * *  ppValue\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_new.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_conflict","package":"phobos","parentType":"","signature":"int sqlite3changeset_conflict(\n     sqlite3_changeset_iter *  pIter,\n     int  iVal,\n     sqlite3_value * *  ppValue\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_conflict.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_fk_conflicts","package":"phobos","parentType":"","signature":"int sqlite3changeset_fk_conflicts(sqlite3_changeset_iter *  pIter,  int *  pnOut)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_fk_conflicts.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_finalize","package":"phobos","parentType":"","signature":"int sqlite3changeset_finalize(sqlite3_changeset_iter *  pIter)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_finalize.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_invert","package":"phobos","parentType":"","signature":"int sqlite3changeset_invert(\n     int  nIn,\n     const(void) *  pIn,\n     int *  pnOut,\n     void * *  ppOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_invert.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_concat","package":"phobos","parentType":"","signature":"int sqlite3changeset_concat(\n     int  nA,\n     void *  pA,\n     int  nB,\n     void *  pB,\n     int *  pnOut,\n     void * *  ppOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_concat.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_new","package":"phobos","parentType":"","signature":"int sqlite3changegroup_new(sqlite3_changegroup * *  pp)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_new.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_add","package":"phobos","parentType":"","signature":"int sqlite3changegroup_add(sqlite3_changegroup *,  int  nData,  void *  pData)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_add.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_output","package":"phobos","parentType":"","signature":"int sqlite3changegroup_output(\n     sqlite3_changegroup *,\n     int *  pnData,\n     void * *  ppData\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_output.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_delete","package":"phobos","parentType":"","signature":"void sqlite3changegroup_delete(sqlite3_changegroup *)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_delete.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_apply","package":"phobos","parentType":"","signature":"int sqlite3changeset_apply(\n     sqlite3 *  db,\n     int  nChangeset,\n     void *  pChangeset,\n     int  function(void *  pCtx,  const(char) *  zTab)  xFilter,\n     int  function(void *  pCtx,  int  eConflict,  sqlite3_changeset_iter *  p)  xConflict,\n     void *  pCtx\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_apply.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_apply_v2","package":"phobos","parentType":"","signature":"int sqlite3changeset_apply_v2(\n     sqlite3 *  db,\n     int  nChangeset,\n     void *  pChangeset,\n     int  function(void *  pCtx,  const(char) *  zTab)  xFilter,\n     int  function(void *  pCtx,  int  eConflict,  sqlite3_changeset_iter *  p)  xConflict,\n     void *  pCtx,\n     void * *  ppRebase,\n     int *  pnRebase,\n     int  flags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_apply_v2.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3rebaser_create","package":"phobos","parentType":"","signature":"int sqlite3rebaser_create(sqlite3_rebaser * *  ppNew)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3rebaser_create.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3rebaser_configure","package":"phobos","parentType":"","signature":"int sqlite3rebaser_configure(\n     sqlite3_rebaser *,\n     int  nRebase,\n     const(void) *  pRebase\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3rebaser_configure.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3rebaser_rebase","package":"phobos","parentType":"","signature":"int sqlite3rebaser_rebase(\n     sqlite3_rebaser *,\n     int  nIn,\n     const(void) *  pIn,\n     int *  pnOut,\n     void * *  ppOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3rebaser_rebase.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3rebaser_delete","package":"phobos","parentType":"","signature":"void sqlite3rebaser_delete(sqlite3_rebaser *  p)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3rebaser_delete.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_apply_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_apply_strm(\n     sqlite3 *  db,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn,\n     int  function (void *  pCtx,  const(char) *  zTab)  xFilter,\n     int  function (void *  pCtx,  int  eConflict,  sqlite3_changeset_iter *  p)  xConflict,\n     void *  pCtx\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_apply_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_apply_v2_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_apply_v2_strm(\n     sqlite3 *  db,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn,\n     int  function (void *  pCtx,  const(char) *  zTab)  xFilter,\n     int  function (void *  pCtx,  int  eConflict,  sqlite3_changeset_iter *  p)  xConflict,\n     void *  pCtx,\n     void * *  ppRebase,\n     int *  pnRebase,\n     int  flags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_apply_v2_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_concat_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_concat_strm(\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInputA,\n     void *  pInA,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInputB,\n     void *  pInB,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_concat_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_invert_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_invert_strm(\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_invert_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_start_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_start_strm(\n     sqlite3_changeset_iter * *  pp,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_start_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changeset_start_v2_strm","package":"phobos","parentType":"","signature":"int sqlite3changeset_start_v2_strm(\n     sqlite3_changeset_iter * *  pp,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn,\n     int  flags\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changeset_start_v2_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_changeset_strm","package":"phobos","parentType":"","signature":"int sqlite3session_changeset_strm(\n     sqlite3_session *  pSession,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_changeset_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_patchset_strm","package":"phobos","parentType":"","signature":"int sqlite3session_patchset_strm(\n     sqlite3_session *  pSession,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_patchset_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_add_strm","package":"phobos","parentType":"","signature":"int sqlite3changegroup_add_strm(\n     sqlite3_changegroup *,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_add_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3changegroup_output_strm","package":"phobos","parentType":"","signature":"int sqlite3changegroup_output_strm(\n     sqlite3_changegroup *,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3changegroup_output_strm.html"},{"doc":"Ditto","kind":"function","module":"etc.c.sqlite3","name":"sqlite3rebaser_rebase_strm","package":"phobos","parentType":"","signature":"int sqlite3rebaser_rebase_strm(\n     sqlite3_rebaser *  pRebaser,\n     int  function (void *  pIn,  void *  pData,  int *  pnData)  xInput,\n     void *  pIn,\n     int  function (void *  pOut,  const(void) *  pData,  int  nData)  xOutput,\n     void *  pOut\n)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3rebaser_rebase_strm.html"},{"doc":"","kind":"function","module":"etc.c.sqlite3","name":"sqlite3session_config","package":"phobos","parentType":"","signature":"int sqlite3session_config(int  op,  void *  pArg)","url":"/ddoc/phobos/etc/c/sqlite3/sqlite3session_config.html"},{"doc":"CAPI3REF: Database Connection Handle","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3","package":"phobos","parentType":"","signature":"sqlite3","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3"},{"doc":"","kind":"alias","module":"etc.c.sqlite3","name":"sqlite3_int64","package":"phobos","parentType":"","signature":"sqlite3_int64 = long","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_int64"},{"doc":"","kind":"alias","module":"etc.c.sqlite3","name":"sqlite3_uint64","package":"phobos","parentType":"","signature":"sqlite3_uint64 = ulong","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_uint64"},{"doc":"The type for a callback function. This is legacy and deprecated.  It is included for historical compatibility and is not documented.","kind":"alias","module":"etc.c.sqlite3","name":"sqlite3_callback","package":"phobos","parentType":"","signature":"sqlite3_callback = int  function (void *, int, char * *,  char * *)","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_callback"},{"doc":"CAPI3REF: Flags For File Open Operations VFS only","kind":"alias","module":"etc.c.sqlite3","name":"SQLITE_OPEN_MASTER_JOURNAL","package":"phobos","parentType":"","signature":"SQLITE_OPEN_MASTER_JOURNAL = SQLITE_OPEN_SUPER_JOURNAL","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_OPEN_MASTER_JOURNAL"},{"doc":"CAPI3REF: OS Interface Open File Handle","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_file","package":"phobos","parentType":"","signature":"sqlite3_file","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_file"},{"doc":"CAPI3REF: OS Interface File Virtual Methods Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_io_methods","package":"phobos","parentType":"","signature":"sqlite3_io_methods","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_io_methods"},{"doc":"CAPI3REF: Standard File Control Opcodes","kind":"alias","module":"etc.c.sqlite3","name":"SQLITE_GET_LOCKPROXYFILE","package":"phobos","parentType":"","signature":"SQLITE_GET_LOCKPROXYFILE = SQLITE_FCNTL_GET_LOCKPROXYFILE","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_GET_LOCKPROXYFILE"},{"doc":"","kind":"alias","module":"etc.c.sqlite3","name":"SQLITE_SET_LOCKPROXYFILE","package":"phobos","parentType":"","signature":"SQLITE_SET_LOCKPROXYFILE = SQLITE_FCNTL_SET_LOCKPROXYFILE","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_SET_LOCKPROXYFILE"},{"doc":"","kind":"alias","module":"etc.c.sqlite3","name":"SQLITE_LAST_ERRNO","package":"phobos","parentType":"","signature":"SQLITE_LAST_ERRNO = SQLITE_FCNTL_LAST_ERRNO","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_LAST_ERRNO"},{"doc":"CAPI3REF: Mutex Handle","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_mutex","package":"phobos","parentType":"","signature":"sqlite3_mutex","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_mutex"},{"doc":"CAPI3REF: Loadable Extension Thunk","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_api_routines","package":"phobos","parentType":"","signature":"sqlite3_api_routines","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_api_routines"},{"doc":"CAPI3REF: OS Interface Object","kind":"alias","module":"etc.c.sqlite3","name":"xDlSymReturn","package":"phobos","parentType":"","signature":"xDlSymReturn = void  *  function()","url":"/ddoc/phobos/etc/c/sqlite3.html#xDlSymReturn"},{"doc":"Ditto","kind":"alias","module":"etc.c.sqlite3","name":"sqlite3_syscall_ptr","package":"phobos","parentType":"","signature":"sqlite3_syscall_ptr = void  function()","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_syscall_ptr"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_vfs","package":"phobos","parentType":"","signature":"sqlite3_vfs","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_vfs"},{"doc":"CAPI3REF: Memory Allocation Routines","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_mem_methods","package":"phobos","parentType":"","signature":"sqlite3_mem_methods","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_mem_methods"},{"doc":"CAPI3REF: SQL Statement Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_stmt","package":"phobos","parentType":"","signature":"sqlite3_stmt","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_stmt"},{"doc":"CAPI3REF: Dynamically Typed Value Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_value","package":"phobos","parentType":"","signature":"sqlite3_value","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_value"},{"doc":"CAPI3REF: SQL Function Context Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_context","package":"phobos","parentType":"","signature":"sqlite3_context","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_context"},{"doc":"CAPI3REF: Constants Defining Special Destructor Behavior","kind":"alias","module":"etc.c.sqlite3","name":"sqlite3_destructor_type","package":"phobos","parentType":"","signature":"sqlite3_destructor_type = void  function (void *)","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_destructor_type"},{"doc":"The interface to the virtual-table mechanism is currently considered to be experimental.  The interface might change in incompatible ways. If this ...","kind":"alias","module":"etc.c.sqlite3","name":"mapFunction","package":"phobos","parentType":"","signature":"mapFunction = void  function (sqlite3_context *, int, sqlite3_value * *)","url":"/ddoc/phobos/etc/c/sqlite3.html#mapFunction"},{"doc":"Ditto","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_module","package":"phobos","parentType":"","signature":"sqlite3_module","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_module"},{"doc":"CAPI3REF: Virtual Table Indexing Information","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_index_info","package":"phobos","parentType":"","signature":"sqlite3_index_info","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_index_info"},{"doc":"CAPI3REF: Virtual Table Instance Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_vtab","package":"phobos","parentType":"","signature":"sqlite3_vtab","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_vtab"},{"doc":"CAPI3REF: Virtual Table Cursor Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_vtab_cursor","package":"phobos","parentType":"","signature":"sqlite3_vtab_cursor","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_vtab_cursor"},{"doc":"The interface to the virtual-table mechanism defined above (back up to a comment remarkably similar to this one) is currently considered to be expe...","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_blob","package":"phobos","parentType":"","signature":"sqlite3_blob","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_blob"},{"doc":"CAPI3REF: Mutex Methods Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_mutex_methods","package":"phobos","parentType":"","signature":"sqlite3_mutex_methods","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_mutex_methods"},{"doc":"CAPI3REF: Mutex Types","kind":"alias","module":"etc.c.sqlite3","name":"SQLITE_MUTEX_STATIC_MASTER","package":"phobos","parentType":"","signature":"SQLITE_MUTEX_STATIC_MASTER = SQLITE_MUTEX_STATIC_MAIN","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_MUTEX_STATIC_MASTER"},{"doc":"CAPI3REF: Dynamic String Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_str","package":"phobos","parentType":"","signature":"sqlite3_str","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_str"},{"doc":"CAPI3REF: Custom Page Cache Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_pcache","package":"phobos","parentType":"","signature":"sqlite3_pcache","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_pcache"},{"doc":"CAPI3REF: Custom Page Cache Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_pcache_page","package":"phobos","parentType":"","signature":"sqlite3_pcache_page","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_pcache_page"},{"doc":"CAPI3REF: Application Defined Page Cache.","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_pcache_methods2","package":"phobos","parentType":"","signature":"sqlite3_pcache_methods2","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_pcache_methods2"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_pcache_methods","package":"phobos","parentType":"","signature":"sqlite3_pcache_methods","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_pcache_methods"},{"doc":"CAPI3REF: Online Backup Object","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_backup","package":"phobos","parentType":"","signature":"sqlite3_backup","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_backup"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_snapshot","package":"phobos","parentType":"","signature":"sqlite3_snapshot","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_snapshot"},{"doc":"A pointer to a structure of the following type is passed as the first argument to callbacks registered using rtree_geometry_callback().","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_rtree_geometry","package":"phobos","parentType":"","signature":"sqlite3_rtree_geometry","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_rtree_geometry"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_rtree_query_info","package":"phobos","parentType":"","signature":"sqlite3_rtree_query_info","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_rtree_query_info"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_session","package":"phobos","parentType":"","signature":"sqlite3_session","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_session"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_changeset_iter","package":"phobos","parentType":"","signature":"sqlite3_changeset_iter","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_changeset_iter"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_changegroup","package":"phobos","parentType":"","signature":"sqlite3_changegroup","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_changegroup"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"sqlite3_rebaser","package":"phobos","parentType":"","signature":"sqlite3_rebaser","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_rebaser"},{"doc":"Interfaces to extend FTS5.","kind":"struct","module":"etc.c.sqlite3","name":"Fts5Context","package":"phobos","parentType":"","signature":"Fts5Context","url":"/ddoc/phobos/etc/c/sqlite3.html#Fts5Context"},{"doc":"Ditto","kind":"alias","module":"etc.c.sqlite3","name":"fts5_extension_function","package":"phobos","parentType":"","signature":"fts5_extension_function = void  function(\n     const  Fts5ExtensionApi * pApi,\n     Fts5Context * pFts,\n     sqlite3_context * pCtx,\n     int  nVal,\n     sqlite3_value * * apVal\n)","url":"/ddoc/phobos/etc/c/sqlite3.html#fts5_extension_function"},{"doc":"Ditto","kind":"struct","module":"etc.c.sqlite3","name":"Fts5PhraseIter","package":"phobos","parentType":"","signature":"Fts5PhraseIter","url":"/ddoc/phobos/etc/c/sqlite3.html#Fts5PhraseIter"},{"doc":"Ditto","kind":"struct","module":"etc.c.sqlite3","name":"Fts5ExtensionApi","package":"phobos","parentType":"","signature":"Fts5ExtensionApi","url":"/ddoc/phobos/etc/c/sqlite3.html#Fts5ExtensionApi"},{"doc":"Ditto","kind":"struct","module":"etc.c.sqlite3","name":"Fts5Tokenizer","package":"phobos","parentType":"","signature":"Fts5Tokenizer","url":"/ddoc/phobos/etc/c/sqlite3.html#Fts5Tokenizer"},{"doc":"","kind":"struct","module":"etc.c.sqlite3","name":"fts5_tokenizer","package":"phobos","parentType":"","signature":"fts5_tokenizer","url":"/ddoc/phobos/etc/c/sqlite3.html#fts5_tokenizer"},{"doc":"Ditto","kind":"struct","module":"etc.c.sqlite3","name":"fts5_api","package":"phobos","parentType":"","signature":"fts5_api","url":"/ddoc/phobos/etc/c/sqlite3.html#fts5_api"},{"doc":"CAPI3REF: Compile-Time Library Version Numbers","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_VERSION","package":"phobos","parentType":"","signature":"SQLITE_VERSION","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_VERSION"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_VERSION_NUMBER","package":"phobos","parentType":"","signature":"SQLITE_VERSION_NUMBER","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_VERSION_NUMBER"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_SOURCE_ID","package":"phobos","parentType":"","signature":"SQLITE_SOURCE_ID","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_SOURCE_ID"},{"doc":"CAPI3REF: Run-Time Library Version Numbers","kind":"variable","module":"etc.c.sqlite3","name":"sqlite3_version","package":"phobos","parentType":"","signature":"immutable(char) * sqlite3_version","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_version"},{"doc":"CAPI3REF: Maximum xShmLock index","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_SHM_NLOCK","package":"phobos","parentType":"","signature":"SQLITE_SHM_NLOCK","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_SHM_NLOCK"},{"doc":"CAPI3REF: Function Flags","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_DETERMINISTIC","package":"phobos","parentType":"","signature":"SQLITE_DETERMINISTIC","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_DETERMINISTIC"},{"doc":"","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_DIRECTONLY","package":"phobos","parentType":"","signature":"SQLITE_DIRECTONLY","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_DIRECTONLY"},{"doc":"","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_SUBTYPE","package":"phobos","parentType":"","signature":"SQLITE_SUBTYPE","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_SUBTYPE"},{"doc":"","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_INNOCUOUS","package":"phobos","parentType":"","signature":"SQLITE_INNOCUOUS","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_INNOCUOUS"},{"doc":"CAPI3REF: Name Of The Folder Holding Temporary Files","kind":"variable","module":"etc.c.sqlite3","name":"sqlite3_temp_directory","package":"phobos","parentType":"","signature":"char  *sqlite3_temp_directory sqlite3_temp_directory","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_temp_directory"},{"doc":"CAPI3REF: Name Of The Folder Holding Database Files","kind":"variable","module":"etc.c.sqlite3","name":"sqlite3_data_directory","package":"phobos","parentType":"","signature":"char  *sqlite3_data_directory sqlite3_data_directory","url":"/ddoc/phobos/etc/c/sqlite3.html#sqlite3_data_directory"},{"doc":"CAPI3REF: Virtual Table Configuration Options","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_VTAB_CONSTRAINT_SUPPORT","package":"phobos","parentType":"","signature":"SQLITE_VTAB_CONSTRAINT_SUPPORT","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_VTAB_CONSTRAINT_SUPPORT"},{"doc":"","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_VTAB_INNOCUOUS","package":"phobos","parentType":"","signature":"SQLITE_VTAB_INNOCUOUS","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_VTAB_INNOCUOUS"},{"doc":"","kind":"variable","module":"etc.c.sqlite3","name":"SQLITE_VTAB_DIRECTONLY","package":"phobos","parentType":"","signature":"SQLITE_VTAB_DIRECTONLY","url":"/ddoc/phobos/etc/c/sqlite3.html#SQLITE_VTAB_DIRECTONLY"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"FTS5_TOKENIZE_QUERY","package":"phobos","parentType":"","signature":"FTS5_TOKENIZE_QUERY","url":"/ddoc/phobos/etc/c/sqlite3.html#FTS5_TOKENIZE_QUERY"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"FTS5_TOKENIZE_PREFIX","package":"phobos","parentType":"","signature":"FTS5_TOKENIZE_PREFIX","url":"/ddoc/phobos/etc/c/sqlite3.html#FTS5_TOKENIZE_PREFIX"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"FTS5_TOKENIZE_DOCUMENT","package":"phobos","parentType":"","signature":"FTS5_TOKENIZE_DOCUMENT","url":"/ddoc/phobos/etc/c/sqlite3.html#FTS5_TOKENIZE_DOCUMENT"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"FTS5_TOKENIZE_AUX","package":"phobos","parentType":"","signature":"FTS5_TOKENIZE_AUX","url":"/ddoc/phobos/etc/c/sqlite3.html#FTS5_TOKENIZE_AUX"},{"doc":"Ditto","kind":"variable","module":"etc.c.sqlite3","name":"FTS5_TOKEN_COLOCATED","package":"phobos","parentType":"","signature":"FTS5_TOKEN_COLOCATED","url":"/ddoc/phobos/etc/c/sqlite3.html#FTS5_TOKEN_COLOCATED"},{"doc":"","kind":"module","module":"etc.c.zlib","name":"etc.c.zlib","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/etc/c/zlib.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"zlibVersion","package":"phobos","parentType":"","signature":"const(char) * zlibVersion()","url":"/ddoc/phobos/etc/c/zlib/zlibVersion.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateInit","package":"phobos","parentType":"","signature":"int deflateInit(z_streamp strm,  int  level)","url":"/ddoc/phobos/etc/c/zlib/deflateInit.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflate","package":"phobos","parentType":"","signature":"int deflate(z_streamp strm,  int  flush)","url":"/ddoc/phobos/etc/c/zlib/deflate.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateEnd","package":"phobos","parentType":"","signature":"int deflateEnd(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/deflateEnd.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateInit","package":"phobos","parentType":"","signature":"int inflateInit(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/inflateInit.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflate","package":"phobos","parentType":"","signature":"int inflate(z_streamp strm,  int  flush)","url":"/ddoc/phobos/etc/c/zlib/inflate.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateEnd","package":"phobos","parentType":"","signature":"int inflateEnd(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/inflateEnd.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateInit2","package":"phobos","parentType":"","signature":"int deflateInit2(z_streamp strm,\n                  int   level,\n                  int   method,\n                  int   windowBits,\n                  int   memLevel,\n                  int   strategy)","url":"/ddoc/phobos/etc/c/zlib/deflateInit2.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateSetDictionary","package":"phobos","parentType":"","signature":"int deflateSetDictionary(z_streamp strm,  const(ubyte) *  dictionary,  uint   dictLength)","url":"/ddoc/phobos/etc/c/zlib/deflateSetDictionary.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateGetDictionary","package":"phobos","parentType":"","signature":"int deflateGetDictionary(z_streamp strm,  ubyte  * dictionary,  uint   dictLength)","url":"/ddoc/phobos/etc/c/zlib/deflateGetDictionary.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateCopy","package":"phobos","parentType":"","signature":"int deflateCopy(z_streamp dest,  z_streamp source)","url":"/ddoc/phobos/etc/c/zlib/deflateCopy.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateReset","package":"phobos","parentType":"","signature":"int deflateReset(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/deflateReset.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateParams","package":"phobos","parentType":"","signature":"int deflateParams(z_streamp strm,  int  level,  int  strategy)","url":"/ddoc/phobos/etc/c/zlib/deflateParams.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateTune","package":"phobos","parentType":"","signature":"int deflateTune(z_streamp strm,  int  good_length,  int  max_lazy,  int  nice_length,\n         int  max_chain)","url":"/ddoc/phobos/etc/c/zlib/deflateTune.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateBound","package":"phobos","parentType":"","signature":"size_t deflateBound(z_streamp strm,  size_t sourceLen)","url":"/ddoc/phobos/etc/c/zlib/deflateBound.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflatePending","package":"phobos","parentType":"","signature":"int deflatePending(z_streamp strm,  uint *  pending,  int *  bits)","url":"/ddoc/phobos/etc/c/zlib/deflatePending.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflatePrime","package":"phobos","parentType":"","signature":"int deflatePrime(z_streamp strm,  int  bits,  int  value)","url":"/ddoc/phobos/etc/c/zlib/deflatePrime.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateSetHeader","package":"phobos","parentType":"","signature":"int deflateSetHeader(z_streamp strm,  gz_headerp head)","url":"/ddoc/phobos/etc/c/zlib/deflateSetHeader.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateInit2","package":"phobos","parentType":"","signature":"int inflateInit2(z_streamp strm,  int  windowBits)","url":"/ddoc/phobos/etc/c/zlib/inflateInit2.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateSetDictionary","package":"phobos","parentType":"","signature":"int inflateSetDictionary(z_streamp strm,  const(ubyte) *  dictionary,  uint   dictLength)","url":"/ddoc/phobos/etc/c/zlib/inflateSetDictionary.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateGetDictionary","package":"phobos","parentType":"","signature":"int inflateGetDictionary(z_streamp strm,  ubyte *  dictionary,  uint *  dictLength)","url":"/ddoc/phobos/etc/c/zlib/inflateGetDictionary.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateSync","package":"phobos","parentType":"","signature":"int inflateSync(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/inflateSync.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateCopy","package":"phobos","parentType":"","signature":"int inflateCopy(z_streamp dest,  z_streamp source)","url":"/ddoc/phobos/etc/c/zlib/inflateCopy.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateReset","package":"phobos","parentType":"","signature":"int inflateReset(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/inflateReset.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateReset2","package":"phobos","parentType":"","signature":"int inflateReset2(z_streamp strm,  int  windowBits)","url":"/ddoc/phobos/etc/c/zlib/inflateReset2.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflatePrime","package":"phobos","parentType":"","signature":"int inflatePrime(z_streamp strm,  int  bits,  int  value)","url":"/ddoc/phobos/etc/c/zlib/inflatePrime.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateMark","package":"phobos","parentType":"","signature":"c_long inflateMark(z_streamp strm)","url":"/ddoc/phobos/etc/c/zlib/inflateMark.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateGetHeader","package":"phobos","parentType":"","signature":"int inflateGetHeader(z_streamp strm,  gz_headerp head)","url":"/ddoc/phobos/etc/c/zlib/inflateGetHeader.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateBackInit","package":"phobos","parentType":"","signature":"int inflateBackInit(z_stream *  strm,  int  windowBits,  ubyte *  window)","url":"/ddoc/phobos/etc/c/zlib/inflateBackInit.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateBack","package":"phobos","parentType":"","signature":"int inflateBack(z_stream *  strm,\n                 in_func f_in,\n                 void *  in_desc,\n                 out_func f_out,\n                 void *  out_desc)","url":"/ddoc/phobos/etc/c/zlib/inflateBack.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateBackEnd","package":"phobos","parentType":"","signature":"int inflateBackEnd(z_stream *  strm)","url":"/ddoc/phobos/etc/c/zlib/inflateBackEnd.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"zlibCompileFlags","package":"phobos","parentType":"","signature":"uint zlibCompileFlags()","url":"/ddoc/phobos/etc/c/zlib/zlibCompileFlags.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"compress","package":"phobos","parentType":"","signature":"int compress(ubyte *  dest,\n              size_t *  destLen,\n              const(ubyte) *  source,\n              size_t sourceLen)","url":"/ddoc/phobos/etc/c/zlib/compress.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"compress2","package":"phobos","parentType":"","signature":"int compress2(ubyte *  dest,\n               size_t *  destLen,\n               const(ubyte) *  source,\n               size_t sourceLen,\n               int  level)","url":"/ddoc/phobos/etc/c/zlib/compress2.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"compressBound","package":"phobos","parentType":"","signature":"size_t compressBound(size_t sourceLen)","url":"/ddoc/phobos/etc/c/zlib/compressBound.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"uncompress","package":"phobos","parentType":"","signature":"int uncompress(ubyte *  dest,\n                size_t *  destLen,\n                const(ubyte) *  source,\n                size_t sourceLen)","url":"/ddoc/phobos/etc/c/zlib/uncompress.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"uncompress2","package":"phobos","parentType":"","signature":"int uncompress2(ubyte *  dest,\n                 size_t *  destLen,\n                 const(ubyte) *  source,\n                 size_t *  sourceLen)","url":"/ddoc/phobos/etc/c/zlib/uncompress2.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzopen","package":"phobos","parentType":"","signature":"gzFile gzopen(const(char) *  path,  const(char) *  mode)","url":"/ddoc/phobos/etc/c/zlib/gzopen.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzdopen","package":"phobos","parentType":"","signature":"gzFile gzdopen(int  fd,  const(char) *  mode)","url":"/ddoc/phobos/etc/c/zlib/gzdopen.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzbuffer","package":"phobos","parentType":"","signature":"int gzbuffer(gzFile file,  uint  size)","url":"/ddoc/phobos/etc/c/zlib/gzbuffer.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzsetparams","package":"phobos","parentType":"","signature":"int gzsetparams(gzFile file,  int  level,  int  strategy)","url":"/ddoc/phobos/etc/c/zlib/gzsetparams.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzread","package":"phobos","parentType":"","signature":"int gzread(gzFile file,  void *  buf,  uint  len)","url":"/ddoc/phobos/etc/c/zlib/gzread.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzfread","package":"phobos","parentType":"","signature":"z_size_t gzfread(void *  buf,  z_size_t size,  z_size_t nitems,  gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzfread.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzwrite","package":"phobos","parentType":"","signature":"int gzwrite(gzFile file,  void *  buf,  uint  len)","url":"/ddoc/phobos/etc/c/zlib/gzwrite.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzfwrite","package":"phobos","parentType":"","signature":"z_size_t gzfwrite(void *  buf,  z_size_t size,  z_size_t nitems,  gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzfwrite.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzprintf","package":"phobos","parentType":"","signature":"int gzprintf(gzFile file,  const(char) *  format, ...)","url":"/ddoc/phobos/etc/c/zlib/gzprintf.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzputs","package":"phobos","parentType":"","signature":"int gzputs(gzFile file,  const(char) *  s)","url":"/ddoc/phobos/etc/c/zlib/gzputs.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzgets","package":"phobos","parentType":"","signature":"const(char) * gzgets(gzFile file,  const(char) *  buf,  int  len)","url":"/ddoc/phobos/etc/c/zlib/gzgets.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzputc","package":"phobos","parentType":"","signature":"int gzputc(gzFile file,  int  c)","url":"/ddoc/phobos/etc/c/zlib/gzputc.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzgetc","package":"phobos","parentType":"","signature":"int gzgetc(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzgetc.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzungetc","package":"phobos","parentType":"","signature":"int gzungetc(int  c,  gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzungetc.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzflush","package":"phobos","parentType":"","signature":"int gzflush(gzFile file,  int  flush)","url":"/ddoc/phobos/etc/c/zlib/gzflush.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzseek","package":"phobos","parentType":"","signature":"z_off_t gzseek(gzFile file,  z_off_t offset,  int  whence)","url":"/ddoc/phobos/etc/c/zlib/gzseek.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzrewind","package":"phobos","parentType":"","signature":"int gzrewind(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzrewind.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gztell","package":"phobos","parentType":"","signature":"z_off_t gztell(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gztell.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzoffset","package":"phobos","parentType":"","signature":"z_off_t gzoffset(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzoffset.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzeof","package":"phobos","parentType":"","signature":"int gzeof(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzeof.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzdirect","package":"phobos","parentType":"","signature":"int gzdirect(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzdirect.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzclose","package":"phobos","parentType":"","signature":"int gzclose(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzclose.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzclose_r","package":"phobos","parentType":"","signature":"int gzclose_r(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzclose_r.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzclose_w","package":"phobos","parentType":"","signature":"int gzclose_w(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzclose_w.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzerror","package":"phobos","parentType":"","signature":"const(char) * gzerror(gzFile file,  int *  errnum)","url":"/ddoc/phobos/etc/c/zlib/gzerror.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"gzclearerr","package":"phobos","parentType":"","signature":"void gzclearerr(gzFile file)","url":"/ddoc/phobos/etc/c/zlib/gzclearerr.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"adler32","package":"phobos","parentType":"","signature":"uint adler32(uint  adler,  const(ubyte) *  buf,  uint  len)","url":"/ddoc/phobos/etc/c/zlib/adler32.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"adler32_z","package":"phobos","parentType":"","signature":"uint adler32_z(uint  adler,  const(ubyte) *  buf,  z_size_t len)","url":"/ddoc/phobos/etc/c/zlib/adler32_z.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"adler32_combine","package":"phobos","parentType":"","signature":"uint adler32_combine(uint  adler1,  uint  adler2,  z_off_t len2)","url":"/ddoc/phobos/etc/c/zlib/adler32_combine.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"crc32","package":"phobos","parentType":"","signature":"uint crc32(uint  crc,  const(ubyte) *  buf,  uint  len)","url":"/ddoc/phobos/etc/c/zlib/crc32.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"crc32_z","package":"phobos","parentType":"","signature":"uint crc32_z(uint  crc,  const(ubyte) *  buf,  z_size_t len)","url":"/ddoc/phobos/etc/c/zlib/crc32_z.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"crc32_combine","package":"phobos","parentType":"","signature":"uint crc32_combine(uint  crc1,  uint  crc2,  z_off_t len2)","url":"/ddoc/phobos/etc/c/zlib/crc32_combine.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"crc32_combine_gen","package":"phobos","parentType":"","signature":"uint crc32_combine_gen(z_off_t len2)","url":"/ddoc/phobos/etc/c/zlib/crc32_combine_gen.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"crc32_combine_op","package":"phobos","parentType":"","signature":"uint crc32_combine_op(uint  crc1,  uint  crc2,  uint  op)","url":"/ddoc/phobos/etc/c/zlib/crc32_combine_op.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateInit_","package":"phobos","parentType":"","signature":"int deflateInit_(z_streamp strm,\n                  int  level,\n                  const(char) *  versionx,\n                  int  stream_size)","url":"/ddoc/phobos/etc/c/zlib/deflateInit_.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateInit_","package":"phobos","parentType":"","signature":"int inflateInit_(z_streamp strm,\n                  const(char) *  versionx,\n                  int  stream_size)","url":"/ddoc/phobos/etc/c/zlib/inflateInit_.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"deflateInit2_","package":"phobos","parentType":"","signature":"int deflateInit2_(z_streamp strm,\n                   int  level,\n                   int  method,\n                   int  windowBits,\n                   int  memLevel,\n                   int  strategy,\n                   const(char) *  versionx,\n                   int  stream_size)","url":"/ddoc/phobos/etc/c/zlib/deflateInit2_.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateBackInit_","package":"phobos","parentType":"","signature":"int inflateBackInit_(z_stream *  strm,\n                      int  windowBits,\n                      ubyte *  window,\n                      const(char) *  z_version,\n                      int  stream_size)","url":"/ddoc/phobos/etc/c/zlib/inflateBackInit_.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateInit2_","package":"phobos","parentType":"","signature":"int inflateInit2_(z_streamp strm,\n                   int  windowBits,\n                   const(char) *  versionx,\n                   int  stream_size)","url":"/ddoc/phobos/etc/c/zlib/inflateInit2_.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"zError","package":"phobos","parentType":"","signature":"const(char) * zError(int  err)","url":"/ddoc/phobos/etc/c/zlib/zError.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"inflateSyncPoint","package":"phobos","parentType":"","signature":"int inflateSyncPoint(z_streamp z)","url":"/ddoc/phobos/etc/c/zlib/inflateSyncPoint.html"},{"doc":"","kind":"function","module":"etc.c.zlib","name":"get_crc_table","package":"phobos","parentType":"","signature":"const(uint) * get_crc_table()","url":"/ddoc/phobos/etc/c/zlib/get_crc_table.html"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"alloc_func","package":"phobos","parentType":"","signature":"alloc_func = void *  function (void *  opaque,  uint  items,  uint  size)","url":"/ddoc/phobos/etc/c/zlib.html#alloc_func"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"free_func","package":"phobos","parentType":"","signature":"free_func = void   function (void *  opaque,  void *  address)","url":"/ddoc/phobos/etc/c/zlib.html#free_func"},{"doc":"","kind":"struct","module":"etc.c.zlib","name":"z_stream","package":"phobos","parentType":"","signature":"z_stream","url":"/ddoc/phobos/etc/c/zlib.html#z_stream"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"z_streamp","package":"phobos","parentType":"","signature":"z_streamp = z_stream *","url":"/ddoc/phobos/etc/c/zlib.html#z_streamp"},{"doc":"","kind":"struct","module":"etc.c.zlib","name":"gz_header","package":"phobos","parentType":"","signature":"gz_header","url":"/ddoc/phobos/etc/c/zlib.html#gz_header"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"gz_headerp","package":"phobos","parentType":"","signature":"gz_headerp = gz_header *","url":"/ddoc/phobos/etc/c/zlib.html#gz_headerp"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"in_func","package":"phobos","parentType":"","signature":"in_func = uint  function(void *,  ubyte * *)","url":"/ddoc/phobos/etc/c/zlib.html#in_func"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"out_func","package":"phobos","parentType":"","signature":"out_func = int  function(void *,  ubyte *,  uint)","url":"/ddoc/phobos/etc/c/zlib.html#out_func"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"gzFile","package":"phobos","parentType":"","signature":"gzFile = void *","url":"/ddoc/phobos/etc/c/zlib.html#gzFile"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"z_off_t","package":"phobos","parentType":"","signature":"z_off_t = int","url":"/ddoc/phobos/etc/c/zlib.html#z_off_t"},{"doc":"","kind":"alias","module":"etc.c.zlib","name":"z_size_t","package":"phobos","parentType":"","signature":"z_size_t = size_t","url":"/ddoc/phobos/etc/c/zlib.html#z_size_t"},{"doc":"","kind":"variable","module":"etc.c.zlib","name":"ZLIB_VERSION","package":"phobos","parentType":"","signature":"string ZLIB_VERSION","url":"/ddoc/phobos/etc/c/zlib.html#ZLIB_VERSION"},{"doc":"","kind":"variable","module":"etc.c.zlib","name":"ZLIB_VERNUM","package":"phobos","parentType":"","signature":"ZLIB_VERNUM","url":"/ddoc/phobos/etc/c/zlib.html#ZLIB_VERNUM"},{"doc":"for initializing zalloc, zfree, opaque (extern(D) for mangling)","kind":"variable","module":"etc.c.zlib","name":"Z_NULL","package":"phobos","parentType":"","signature":"void * Z_NULL","url":"/ddoc/phobos/etc/c/zlib.html#Z_NULL"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic comparison algorithms.","kind":"module","module":"std.algorithm.comparison","name":"std.algorithm.comparison","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/comparison.html"},{"doc":"Find `value` _among `values`, returning the 1-based index of the first matching value in `values`, or `0` if `value` is not _among `values`. The pr...","kind":"function","module":"std.algorithm.comparison","name":"among","package":"phobos","parentType":"","signature":"uint among(alias  pred = (a,  b)  =>  a ==  b,  Value,  Values...)(Value value,  Values values) if (Values.length !=  0)","url":"/ddoc/phobos/std/algorithm/comparison/among.html"},{"doc":"Executes and returns one of a collection of handlers based on the type of the switch object.","kind":"function","module":"std.algorithm.comparison","name":"castSwitch","package":"phobos","parentType":"","signature":"auto castSwitch(choices...)(Object switchObject)","url":"/ddoc/phobos/std/algorithm/comparison/castSwitch.html"},{"doc":"Clamps `val` into the given bounds. Result has the same type as `val`.","kind":"function","module":"std.algorithm.comparison","name":"clamp","package":"phobos","parentType":"","signature":"T1 clamp(T1,  T2,  T3)(T1 val,  T2 lower,  T3 upper)","url":"/ddoc/phobos/std/algorithm/comparison/clamp.html"},{"doc":"Performs a lexicographical comparison on two $(REF_ALTTEXT input ranges, isInputRange, std,range,primitives). Iterating `r1` and `r2` in lockstep, ...","kind":"function","module":"std.algorithm.comparison","name":"cmp","package":"phobos","parentType":"","signature":"auto cmp(R1,  R2)(R1 r1,  R2 r2) if (isInputRange!R1 &&  isInputRange!R2)","url":"/ddoc/phobos/std/algorithm/comparison/cmp.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"cmp","package":"phobos","parentType":"","signature":"int cmp(alias  pred,  R1,  R2)(R1 r1,  R2 r2) if (isInputRange!R1 &&  isInputRange!R2)","url":"/ddoc/phobos/std/algorithm/comparison/cmp.html"},{"doc":"Returns the $(HTTP wikipedia.org/wiki/Levenshtein_distance, Levenshtein distance) between `s` and `t`. The Levenshtein distance computes the minima...","kind":"function","module":"std.algorithm.comparison","name":"levenshteinDistance","package":"phobos","parentType":"","signature":"size_t levenshteinDistance(alias  equals = (a, b)  =>  a ==  b,  Range1,  Range2)(Range1 s,  Range2 t) if (isForwardRange!(Range1)  &&  isForwardRange!(Range2))","url":"/ddoc/phobos/std/algorithm/comparison/levenshteinDistance.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"levenshteinDistance","package":"phobos","parentType":"","signature":"size_t levenshteinDistance(alias  equals = (a, b)  =>  a ==  b,  Range1,  Range2)(auto  ref  Range1 s,  auto  ref  Range2 t) if (isConvertibleToString!Range1 ||  isConvertibleToString!Range2)","url":"/ddoc/phobos/std/algorithm/comparison/levenshteinDistance.html"},{"doc":"Returns the Levenshtein distance and the edit path between `s` and `t`.","kind":"function","module":"std.algorithm.comparison","name":"levenshteinDistanceAndPath","package":"phobos","parentType":"","signature":"Tuple!(size_t,  EditOp[]) levenshteinDistanceAndPath(alias  equals = (a, b)  =>  a ==  b,  Range1,  Range2)(Range1 s,  Range2 t) if (isForwardRange!(Range1)  &&  isForwardRange!(Range2))","url":"/ddoc/phobos/std/algorithm/comparison/levenshteinDistanceAndPath.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"levenshteinDistanceAndPath","package":"phobos","parentType":"","signature":"Tuple!(size_t,  EditOp[]) levenshteinDistanceAndPath(alias  equals = (a, b)  =>  a ==  b,  Range1,  Range2)(auto  ref  Range1 s,  auto  ref  Range2 t) if (isConvertibleToString!Range1 ||  isConvertibleToString!Range2)","url":"/ddoc/phobos/std/algorithm/comparison/levenshteinDistanceAndPath.html"},{"doc":"Iterates the passed arguments and returns the maximum value.","kind":"function","module":"std.algorithm.comparison","name":"max","package":"phobos","parentType":"","signature":"auto max(T...)(T args) if (T.length >=  2 && !is(CommonType!T ==  void))","url":"/ddoc/phobos/std/algorithm/comparison/max.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"max","package":"phobos","parentType":"","signature":"T max(T,  U)(T a,  U b) if (is(T ==  U)  &&  is(typeof(a <  b)))","url":"/ddoc/phobos/std/algorithm/comparison/max.html"},{"doc":"Iterates the passed arguments and returns the minimum value.","kind":"function","module":"std.algorithm.comparison","name":"min","package":"phobos","parentType":"","signature":"auto min(T...)(T args) if (T.length >=  2 && !is(CommonType!T ==  void))","url":"/ddoc/phobos/std/algorithm/comparison/min.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"min","package":"phobos","parentType":"","signature":"T min(T,  U)(T a,  U b) if (is(T ==  U)  &&  is(typeof(a <  b)))","url":"/ddoc/phobos/std/algorithm/comparison/min.html"},{"doc":"Sequentially compares elements in `rs` in lockstep, and stops at the first mismatch (according to `pred`, by default equality). Returns a tuple wit...","kind":"function","module":"std.algorithm.comparison","name":"mismatch","package":"phobos","parentType":"","signature":"Tuple!(Ranges) mismatch(alias  pred = (a,  b)  =>  a ==  b,  Ranges...)(Ranges rs) if (rs.length >=  2 &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/algorithm/comparison/mismatch.html"},{"doc":"Returns one of a collection of expressions based on the value of the switch expression.","kind":"function","module":"std.algorithm.comparison","name":"predSwitch","package":"phobos","parentType":"","signature":"auto predSwitch(alias  pred =  \"a == b\",  T,  R ...)(T switchExpression,  lazy  R choices)","url":"/ddoc/phobos/std/algorithm/comparison/predSwitch.html"},{"doc":"Checks if two or more ranges have the same number of elements. This function is optimized to always take advantage of the `length` member of either...","kind":"function","module":"std.algorithm.comparison","name":"isSameLength","package":"phobos","parentType":"","signature":"bool isSameLength(Ranges...)(Ranges rs) if (allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/algorithm/comparison/isSameLength.html"},{"doc":"Checks if both ranges are permutations of each other.","kind":"function","module":"std.algorithm.comparison","name":"isPermutation","package":"phobos","parentType":"","signature":"bool isPermutation(Flag!\"allocateGC\" allocateGC,  Range1,  Range2)(Range1 r1,  Range2 r2) if (allocateGC ==  Yes.allocateGC &&\n     isForwardRange!Range1 &&\n     isForwardRange!Range2 &&\n    !isInfinite!Range1 &&\n    !isInfinite!Range2)","url":"/ddoc/phobos/std/algorithm/comparison/isPermutation.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.comparison","name":"isPermutation","package":"phobos","parentType":"","signature":"bool isPermutation(alias  pred =  \"a == b\",  Range1,  Range2)(Range1 r1,  Range2 r2) if (is(typeof(binaryFun!(pred)))  &&\n     isForwardRange!Range1 &&\n     isForwardRange!Range2 &&\n    !isInfinite!Range1 &&\n    !isInfinite!Range2)","url":"/ddoc/phobos/std/algorithm/comparison/isPermutation.html"},{"doc":"Get the _first argument `a` that passes an `if (unaryFun!pred(a))` test.  If no argument passes the test, return the last argument.","kind":"function","module":"std.algorithm.comparison","name":"either","package":"phobos","parentType":"","signature":"CommonType!(T,  Ts) either(alias  pred =  a =>  a,  T,  Ts...)(T first,  lazy  Ts alternatives) if (alternatives.length >=  1 &&\n    !is(CommonType!(T,  Ts)  ==  void)  &&\n     allSatisfy!(ifTestable,  T,  Ts))","url":"/ddoc/phobos/std/algorithm/comparison/either.html"},{"doc":"Encodes $(HTTP realityinteractive.com/rgrzywinski/archives/000249.html, edit operations) necessary to transform one sequence into another. Given se...","kind":"enum","module":"std.algorithm.comparison","name":"EditOp","package":"phobos","parentType":"","signature":"EditOp : char","url":"/ddoc/phobos/std/algorithm/comparison.html#EditOp"},{"doc":"Current items are equal; no editing is necessary.","kind":"enum_member","module":"std.algorithm.comparison","name":"none","package":"phobos","parentType":"","signature":"none = 'n'","url":"/ddoc/phobos/std/algorithm/comparison.html#EditOp"},{"doc":"Substitute current item in target with current item in source.","kind":"enum_member","module":"std.algorithm.comparison","name":"substitute","package":"phobos","parentType":"","signature":"substitute = 's'","url":"/ddoc/phobos/std/algorithm/comparison.html#EditOp"},{"doc":"Insert current item from the source into the target.","kind":"enum_member","module":"std.algorithm.comparison","name":"insert","package":"phobos","parentType":"","signature":"insert = 'i'","url":"/ddoc/phobos/std/algorithm/comparison.html#EditOp"},{"doc":"Remove current item from the target.","kind":"enum_member","module":"std.algorithm.comparison","name":"remove","package":"phobos","parentType":"","signature":"remove = 'r'","url":"/ddoc/phobos/std/algorithm/comparison.html#EditOp"},{"doc":"","kind":"struct","module":"std.algorithm.comparison","name":"Levenshtein","package":"phobos","parentType":"","signature":"Levenshtein(Range,  alias  equals,  CostType =  size_t)","url":"/ddoc/phobos/std/algorithm/comparison.html#Levenshtein"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"path","package":"phobos","parentType":"Levenshtein","signature":"EditOp[] path()","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.path.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"matrix","package":"phobos","parentType":"Levenshtein","signature":"CostType matrix(size_t row,  size_t col)","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.matrix.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"AllocMatrix","package":"phobos","parentType":"Levenshtein","signature":"void AllocMatrix(size_t r,  size_t c)","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.AllocMatrix.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"FreeMatrix","package":"phobos","parentType":"Levenshtein","signature":"void FreeMatrix()","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.FreeMatrix.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"InitMatrix","package":"phobos","parentType":"Levenshtein","signature":"void InitMatrix()","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.InitMatrix.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"min_index","package":"phobos","parentType":"Levenshtein","signature":"uint min_index(CostType i0,  CostType i1,  CostType i2)","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.min_index.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"distanceWithPath","package":"phobos","parentType":"Levenshtein","signature":"CostType distanceWithPath(Range s,  Range t)","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.distanceWithPath.html"},{"doc":"","kind":"method","module":"std.algorithm.comparison","name":"distanceLowMem","package":"phobos","parentType":"Levenshtein","signature":"CostType distanceLowMem(Range s,  Range t,  CostType slen,  CostType tlen)","url":"/ddoc/phobos/std/algorithm/comparison/Levenshtein.distanceLowMem.html"},{"doc":"","kind":"alias","module":"std.algorithm.comparison","name":"AllocateGC","package":"phobos","parentType":"","signature":"AllocateGC = Flag!\"allocateGC\"","url":"/ddoc/phobos/std/algorithm/comparison.html#AllocateGC"},{"doc":"Ditto","kind":"template","module":"std.algorithm.comparison","name":"among","package":"phobos","parentType":"","signature":"among(values...)","url":"/ddoc/phobos/std/algorithm/comparison.html#among"},{"doc":"","kind":"function","module":"std.algorithm.comparison","name":"among","package":"phobos","parentType":"","signature":"uint among(Value)(Value value) if (!is(CommonType!(Value,  values)  ==  void))","url":"/ddoc/phobos/std/algorithm/comparison.html#among"},{"doc":"","kind":"template","module":"std.algorithm.comparison","name":"indexOfFirstOvershadowingChoiceOnLast","package":"phobos","parentType":"","signature":"indexOfFirstOvershadowingChoiceOnLast(choices...)","url":"/ddoc/phobos/std/algorithm/comparison.html#indexOfFirstOvershadowingChoiceOnLast"},{"doc":"Compares two or more ranges for equality, as defined by predicate `pred` (which is `==` by default).","kind":"template","module":"std.algorithm.comparison","name":"equal","package":"phobos","parentType":"","signature":"equal(alias  pred =  \"a == b\")","url":"/ddoc/phobos/std/algorithm/comparison.html#equal"},{"doc":"Compares two or more ranges for equality. The ranges may have different element types, as long as all are comparable by means of the `pred`. Perfor...","kind":"function","module":"std.algorithm.comparison","name":"equal","package":"phobos","parentType":"","signature":"bool equal(Ranges...)(Ranges rs) if (rs.length >  1\n        &&  allSatisfy!(isInputRange,  Ranges)\n         && !allSatisfy!(isInfinite,  Ranges)\n         &&  is(typeof(binaryFun!pred(rs[0].front,  rs[1].front)))\n         && (rs.length ==  2 ||  is(typeof(equal!pred(rs[1 ..  $]))  ==  bool))\n        )","url":"/ddoc/phobos/std/algorithm/comparison.html#equal"},{"doc":"","kind":"function","module":"std.algorithm.comparison","name":"equalLoop","package":"phobos","parentType":"","signature":"bool equalLoop(Rs...)(ref  Rs rs)","url":"/ddoc/phobos/std/algorithm/comparison.html#equal"},{"doc":"Helper functions for std.algorithm package.","kind":"module","module":"std.algorithm.internal","name":"std.algorithm.internal","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/internal.html"},{"doc":"","kind":"function","module":"std.algorithm.internal","name":"addressOf","package":"phobos","parentType":"","signature":"T * addressOf(T)(ref  T val)","url":"/ddoc/phobos/std/algorithm/internal/addressOf.html"},{"doc":"","kind":"template","module":"std.algorithm.internal","name":"algoFormat","package":"phobos","parentType":"","signature":"algoFormat()","url":"/ddoc/phobos/std/algorithm/internal.html#algoFormat"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic iteration algorithms.","kind":"module","module":"std.algorithm.iteration","name":"std.algorithm.iteration","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/iteration.html"},{"doc":"`cache` eagerly evaluates $(REF_ALTTEXT front, front, std,range,primitives) of `range` on each construction or call to $(REF_ALTTEXT popFront, popF...","kind":"function","module":"std.algorithm.iteration","name":"cache","package":"phobos","parentType":"","signature":"auto cache(Range)(Range range) if (isInputRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration/cache.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"cacheBidirectional","package":"phobos","parentType":"","signature":"auto cacheBidirectional(Range)(Range range) if (isBidirectionalRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration/cacheBidirectional.html"},{"doc":"Similar to `cache`, but lazily evaluates the elements. Unlike `cache`, this function does not eagerly evaluate the front of the range until it's ex...","kind":"function","module":"std.algorithm.iteration","name":"lazyCache","package":"phobos","parentType":"","signature":"auto lazyCache(Range)(Range range) if (isInputRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration/lazyCache.html"},{"doc":"Groups consecutively equivalent elements into a single tuple of the element and the number of its repetitions.","kind":"function","module":"std.algorithm.iteration","name":"group","package":"phobos","parentType":"","signature":"Group!(pred,  Range) group(alias  pred =  \"a == b\",  Range)(Range r)","url":"/ddoc/phobos/std/algorithm/iteration/group.html"},{"doc":"Chunks an input range into subranges of equivalent adjacent elements. In other languages this is often called `partitionBy`, `groupBy` or `sliceWhen`.","kind":"function","module":"std.algorithm.iteration","name":"chunkBy","package":"phobos","parentType":"","signature":"auto chunkBy(alias  pred,  Range)(Range r) if (isInputRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration/chunkBy.html"},{"doc":"Splits a forward range into subranges in places determined by a binary predicate called with adjacent elements.","kind":"function","module":"std.algorithm.iteration","name":"splitWhen","package":"phobos","parentType":"","signature":"auto splitWhen(alias  pred,  Range)(Range r) if (is(typeof(binaryFun!pred(r.front,  r.front)) :  bool)  &&  isForwardRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration/splitWhen.html"},{"doc":"Lazily joins a range of ranges with a separator. The separator itself is a range. If a separator is not provided, then the ranges are joined direct...","kind":"function","module":"std.algorithm.iteration","name":"joiner","package":"phobos","parentType":"","signature":"auto joiner(RoR,  Separator)(RoR r,  Separator sep)","url":"/ddoc/phobos/std/algorithm/iteration/joiner.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.iteration","name":"joiner","package":"phobos","parentType":"","signature":"auto joiner(RoR)(RoR r) if (isInputRange!RoR &&  isInputRange!(Unqual!(ElementType!RoR)))","url":"/ddoc/phobos/std/algorithm/iteration/joiner.html"},{"doc":"Lazily splits a range using an element or range as a separator. Separator ranges can be any narrow string type or sliceable range type.","kind":"function","module":"std.algorithm.iteration","name":"splitter","package":"phobos","parentType":"","signature":"auto splitter(alias  pred =  \"a == b\",\n               Flag!\"keepSeparators\" keepSeparators =  No.keepSeparators,\n               Range,\n               Separator)(Range r,  Separator s) if (is(typeof(binaryFun!pred(r.front,  s)) :  bool)\n         && ((hasSlicing!Range &&  hasLength!Range)  ||  isNarrowString!Range))","url":"/ddoc/phobos/std/algorithm/iteration/splitter.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"splitter","package":"phobos","parentType":"","signature":"auto splitter(alias  pred =  \"a == b\",\n               Flag!\"keepSeparators\" keepSeparators =  No.keepSeparators,\n               Range,\n               Separator)(Range r,  Separator s) if (is(typeof(binaryFun!pred(r.front,  s.front)) :  bool)\n         && (hasSlicing!Range ||  isNarrowString!Range)\n         &&  isForwardRange!Separator\n        && (hasLength!Separator ||  isNarrowString!Separator))","url":"/ddoc/phobos/std/algorithm/iteration/splitter.html"},{"doc":"Lazily splits a range `r` whenever a predicate `isTerminator` returns true for an element.","kind":"function","module":"std.algorithm.iteration","name":"splitter","package":"phobos","parentType":"","signature":"auto splitter(alias  isTerminator,  Range)(Range r) if (isForwardRange!Range &&  is(typeof(unaryFun!isTerminator(r.front))))","url":"/ddoc/phobos/std/algorithm/iteration/splitter.html"},{"doc":"Lazily splits the character-based range `s` into words, using whitespace as the delimiter.","kind":"function","module":"std.algorithm.iteration","name":"splitter","package":"phobos","parentType":"","signature":"auto splitter(Range)(Range s) if (isSomeString!Range ||\n     isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&\n    !isConvertibleToString!Range &&\n     isSomeChar!(ElementEncodingType!Range))","url":"/ddoc/phobos/std/algorithm/iteration/splitter.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"substitute","package":"phobos","parentType":"","signature":"auto substitute(alias  pred = (a,  b)  =>  a ==  b,  R,  Substs...)(R r,  Substs substs) if (isInputRange!R &&  Substs.length >=  2 && !is(CommonType!(Substs)  ==  void))","url":"/ddoc/phobos/std/algorithm/iteration/substitute.html"},{"doc":"Sums elements of `r`, which must be a finite $(REF_ALTTEXT input range, isInputRange, std,range,primitives). Although conceptually `sum(r)` is equi...","kind":"function","module":"std.algorithm.iteration","name":"sum","package":"phobos","parentType":"","signature":"auto sum(R)(R r) if (isInputRange!R && !isInfinite!R &&  is(typeof(r.front +  r.front)))","url":"/ddoc/phobos/std/algorithm/iteration/sum.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"sum","package":"phobos","parentType":"","signature":"auto sum(R,  E)(R r,  E seed) if (isInputRange!R && !isInfinite!R &&  is(typeof(seed =  seed +  r.front)))","url":"/ddoc/phobos/std/algorithm/iteration/sum.html"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"sumPairwise","package":"phobos","parentType":"","signature":"auto sumPairwise(F,  R)(R data) if (isInputRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/algorithm/iteration/sumPairwise.html"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"sumPairwise16","package":"phobos","parentType":"","signature":"auto sumPairwise16(F,  R)(R r) if (isRandomAccessRange!R)","url":"/ddoc/phobos/std/algorithm/iteration/sumPairwise16.html"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"sumPair","package":"phobos","parentType":"","signature":"auto sumPair(bool  needEmptyChecks,  F,  R)(ref  R r) if (isForwardRange!R && !isRandomAccessRange!R)","url":"/ddoc/phobos/std/algorithm/iteration/sumPair.html"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"sumPairwiseN","package":"phobos","parentType":"","signature":"auto sumPairwiseN(size_t N,  bool  needEmptyChecks,  F,  R)(ref  R r) if (isForwardRange!R && !isRandomAccessRange!R)","url":"/ddoc/phobos/std/algorithm/iteration/sumPairwiseN.html"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"sumKahan","package":"phobos","parentType":"","signature":"auto sumKahan(Result,  R)(Result result,  R r)","url":"/ddoc/phobos/std/algorithm/iteration/sumKahan.html"},{"doc":"Finds the mean (colloquially known as the average) of a range.","kind":"function","module":"std.algorithm.iteration","name":"mean","package":"phobos","parentType":"","signature":"T mean(T =  double,  R)(R r) if (isInputRange!R &&\n     isNumeric!(ElementType!R)  &&\n    !isInfinite!R)","url":"/ddoc/phobos/std/algorithm/iteration/mean.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"mean","package":"phobos","parentType":"","signature":"auto mean(R,  T)(R r,  T seed) if (isInputRange!R &&\n    !isNumeric!(ElementType!R)  &&\n     is(typeof(r.front +  seed))  &&\n     is(typeof(r.front /  size_t(1)))  &&\n    !isInfinite!R)","url":"/ddoc/phobos/std/algorithm/iteration/mean.html"},{"doc":"Lazily iterates unique consecutive elements of the given range, which is assumed to be sorted (functionality akin to the $(HTTP wikipedia.org/wiki/...","kind":"function","module":"std.algorithm.iteration","name":"uniq","package":"phobos","parentType":"","signature":"auto uniq(alias  pred =  \"a == b\",  Range)(Range r) if (isInputRange!Range &&  is(typeof(binaryFun!pred(r.front,  r.front))  ==  bool))","url":"/ddoc/phobos/std/algorithm/iteration/uniq.html"},{"doc":"Lazily computes all _permutations of `r` using $(HTTP en.wikipedia.org/wiki/Heap%27s_algorithm, Heap's algorithm).","kind":"function","module":"std.algorithm.iteration","name":"permutations","package":"phobos","parentType":"","signature":"Permutations!Range permutations(Range)(Range r)","url":"/ddoc/phobos/std/algorithm/iteration/permutations.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"_Cache","package":"phobos","parentType":"","signature":"_Cache(R,  bool  bidir)","url":"/ddoc/phobos/std/algorithm/iteration.html#_Cache"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"_Cache","signature":"E front()","url":"/ddoc/phobos/std/algorithm/iteration/_Cache.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"_Cache","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/_Cache.popFront.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"LazyCache","package":"phobos","parentType":"","signature":"LazyCache(R,  bool  bidir)","url":"/ddoc/phobos/std/algorithm/iteration.html#LazyCache"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"LazyCache","signature":"E front()","url":"/ddoc/phobos/std/algorithm/iteration/LazyCache.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"LazyCache","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/LazyCache.popFront.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"MapResult","package":"phobos","parentType":"","signature":"MapResult(alias  fun,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#MapResult"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"MapResult","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/MapResult.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"MapResult","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/iteration/MapResult.front.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"FilterResult","package":"phobos","parentType":"","signature":"FilterResult(alias  pred,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#FilterResult"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"prime","package":"phobos","parentType":"FilterResult","signature":"void prime()","url":"/ddoc/phobos/std/algorithm/iteration/FilterResult.prime.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"opSlice","package":"phobos","parentType":"FilterResult","signature":"auto opSlice()","url":"/ddoc/phobos/std/algorithm/iteration/FilterResult.opSlice.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"FilterResult","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/FilterResult.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"FilterResult","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/iteration/FilterResult.front.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"FilterBidiResult","package":"phobos","parentType":"","signature":"FilterBidiResult(alias  pred,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#FilterBidiResult"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"FilterBidiResult","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"FilterBidiResult","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"FilterBidiResult","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popBack","package":"phobos","parentType":"FilterBidiResult","signature":"void popBack()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.popBack.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"back","package":"phobos","parentType":"FilterBidiResult","signature":"@property auto ref back()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.back.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"save","package":"phobos","parentType":"FilterBidiResult","signature":"@property auto save()","url":"/ddoc/phobos/std/algorithm/iteration/FilterBidiResult.save.html"},{"doc":"ditto","kind":"struct","module":"std.algorithm.iteration","name":"Group","package":"phobos","parentType":"","signature":"Group(alias  pred,  R) if (isInputRange!R)","url":"/ddoc/phobos/std/algorithm/iteration.html#Group"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"Group","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/Group.popFront.html"},{"doc":"Returns: the front of the range","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"Group","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/iteration/Group.front.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"ChunkByChunkImpl","package":"phobos","parentType":"","signature":"ChunkByChunkImpl(alias  pred,  Range) if (isInputRange!Range && !isForwardRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByChunkImpl"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"ChunkByChunkImpl","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByChunkImpl.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"ChunkByChunkImpl","signature":"ElementType!Range front()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByChunkImpl.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"ChunkByChunkImpl","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByChunkImpl.popFront.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"ChunkByImpl","package":"phobos","parentType":"","signature":"ChunkByImpl(alias  pred,  Range) if (isInputRange!Range && !isForwardRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByImpl"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"ChunkByImpl","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"ChunkByImpl","signature":"@property auto front()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"ChunkByImpl","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.popFront.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"ChunkByOuter","package":"phobos","parentType":"","signature":"ChunkByOuter(Range,  bool  eqEquivalenceAssured)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByOuter"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"ChunkByGroup","package":"phobos","parentType":"","signature":"ChunkByGroup(alias  eq,  Range,  bool  eqEquivalenceAssured)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByGroup"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"cargo","package":"phobos","parentType":"ChunkByGroup","signature":"@trusted ref cargo()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByGroup.cargo.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"ChunkByGroup","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByGroup.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"ChunkByGroup","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByGroup.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"ChunkByGroup","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByGroup.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"save","package":"phobos","parentType":"ChunkByGroup","signature":"@property auto save()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByGroup.save.html"},{"doc":"","kind":"enum","module":"std.algorithm.iteration","name":"GroupingOpType","package":"phobos","parentType":"","signature":"GroupingOpType","url":"/ddoc/phobos/std/algorithm/iteration.html#GroupingOpType"},{"doc":"","kind":"enum_member","module":"std.algorithm.iteration","name":"binaryEquivalent","package":"phobos","parentType":"","signature":"binaryEquivalent = ","url":"/ddoc/phobos/std/algorithm/iteration.html#GroupingOpType"},{"doc":"","kind":"enum_member","module":"std.algorithm.iteration","name":"binaryAny","package":"phobos","parentType":"","signature":"binaryAny = ","url":"/ddoc/phobos/std/algorithm/iteration.html#GroupingOpType"},{"doc":"","kind":"enum_member","module":"std.algorithm.iteration","name":"unary","package":"phobos","parentType":"","signature":"unary = ","url":"/ddoc/phobos/std/algorithm/iteration.html#GroupingOpType"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"ChunkByImpl","package":"phobos","parentType":"","signature":"ChunkByImpl(alias  pred,  alias  eq,  GroupingOpType opType,  Range) if (isForwardRange!Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByImpl"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"impl","package":"phobos","parentType":"ChunkByImpl","signature":"@trusted ref impl()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.impl.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"implPL","package":"phobos","parentType":"ChunkByImpl","signature":"@trusted ref implPL()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.implPL.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"ChunkByImpl","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"save","package":"phobos","parentType":"ChunkByImpl","signature":"@property auto save()","url":"/ddoc/phobos/std/algorithm/iteration/ChunkByImpl.save.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"SplitterResult","package":"phobos","parentType":"","signature":"SplitterResult(alias  isTerminator,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#SplitterResult"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"findTerminator","package":"phobos","parentType":"SplitterResult","signature":"void findTerminator()","url":"/ddoc/phobos/std/algorithm/iteration/SplitterResult.findTerminator.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"SplitterResult","signature":"@property auto front()","url":"/ddoc/phobos/std/algorithm/iteration/SplitterResult.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"SplitterResult","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/SplitterResult.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"save","package":"phobos","parentType":"SplitterResult","signature":"typeof(this) save()","url":"/ddoc/phobos/std/algorithm/iteration/SplitterResult.save.html"},{"doc":"","kind":"struct","module":"std.algorithm.iteration","name":"UniqResult","package":"phobos","parentType":"","signature":"UniqResult(alias  pred,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#UniqResult"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"opSlice","package":"phobos","parentType":"UniqResult","signature":"auto opSlice()","url":"/ddoc/phobos/std/algorithm/iteration/UniqResult.opSlice.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"UniqResult","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/UniqResult.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"UniqResult","signature":"ElementType!Range front()","url":"/ddoc/phobos/std/algorithm/iteration/UniqResult.front.html"},{"doc":"ditto","kind":"struct","module":"std.algorithm.iteration","name":"Permutations","package":"phobos","parentType":"","signature":"Permutations(Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#Permutations"},{"doc":"Returns: `true` if the range is empty, `false` otherwise.","kind":"method","module":"std.algorithm.iteration","name":"empty","package":"phobos","parentType":"Permutations","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/iteration/Permutations.empty.html"},{"doc":"Returns: the front of the range","kind":"method","module":"std.algorithm.iteration","name":"front","package":"phobos","parentType":"Permutations","signature":"@property auto front()","url":"/ddoc/phobos/std/algorithm/iteration/Permutations.front.html"},{"doc":"","kind":"method","module":"std.algorithm.iteration","name":"popFront","package":"phobos","parentType":"Permutations","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/iteration/Permutations.popFront.html"},{"doc":"Returns: an independent copy of the permutations range.","kind":"method","module":"std.algorithm.iteration","name":"save","package":"phobos","parentType":"Permutations","signature":"auto save()","url":"/ddoc/phobos/std/algorithm/iteration/Permutations.save.html"},{"doc":"Implements the homonym function (also known as `transform`) present in many languages of functional flavor. The call `map!(fun)(range)` returns a r...","kind":"template","module":"std.algorithm.iteration","name":"map","package":"phobos","parentType":"","signature":"map(fun...)","url":"/ddoc/phobos/std/algorithm/iteration.html#map"},{"doc":"Params: r = an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) Returns: A range with each fun applied to all the elements. If there ...","kind":"function","module":"std.algorithm.iteration","name":"map","package":"phobos","parentType":"","signature":"auto map(Range)(Range r) if (isInputRange!(Unqual!Range))","url":"/ddoc/phobos/std/algorithm/iteration.html#map"},{"doc":"Eagerly iterates over `r` and calls `fun` with _each element.","kind":"template","module":"std.algorithm.iteration","name":"each","package":"phobos","parentType":"","signature":"each(alias  fun =  \"a\")","url":"/ddoc/phobos/std/algorithm/iteration.html#each"},{"doc":"Params: r = range or iterable over which each iterates","kind":"function","module":"std.algorithm.iteration","name":"each","package":"phobos","parentType":"","signature":"Flag!\"each\" each(Range)(Range r) if (!isForeachIterable!Range && (\n         isRangeIterable!Range ||\n        // Tuples get automatically expanded if function takes right number of args\n        (isInputRange!Range &&  isInstanceOf!(Tuple,  typeof(r.front)))))","url":"/ddoc/phobos/std/algorithm/iteration.html#each"},{"doc":"ditto","kind":"function","module":"std.algorithm.iteration","name":"each","package":"phobos","parentType":"","signature":"Flag!\"each\" each(Iterable)(auto  ref  Iterable r) if (isForeachIterable!Iterable ||\n         __traits(compiles,  Parameters!(Parameters!(r.opApply))))","url":"/ddoc/phobos/std/algorithm/iteration.html#each"},{"doc":"`filter!(predicate)(range)` returns a new range containing only elements `x` in `range` for which `predicate(x)` returns `true`.","kind":"template","module":"std.algorithm.iteration","name":"filter","package":"phobos","parentType":"","signature":"filter(alias  predicate)","url":"/ddoc/phobos/std/algorithm/iteration.html#filter"},{"doc":"Params: range = An $(REF_ALTTEXT input range, isInputRange, std,range,primitives) of elements Returns: A range containing only elements `x` in `ran...","kind":"function","module":"std.algorithm.iteration","name":"filter","package":"phobos","parentType":"","signature":"auto filter(Range)(Range range) if (isInputRange!(Unqual!Range))","url":"/ddoc/phobos/std/algorithm/iteration.html#filter"},{"doc":"Similar to `filter`, except it defines a $(REF_ALTTEXT bidirectional range, isBidirectionalRange, std,range,primitives). There is a speed disadvant...","kind":"template","module":"std.algorithm.iteration","name":"filterBidirectional","package":"phobos","parentType":"","signature":"filterBidirectional(alias  pred)","url":"/ddoc/phobos/std/algorithm/iteration.html#filterBidirectional"},{"doc":"Params: r = Bidirectional range of elements Returns: A range containing only the elements in `r` for which `pred` returns `true`.","kind":"function","module":"std.algorithm.iteration","name":"filterBidirectional","package":"phobos","parentType":"","signature":"auto filterBidirectional(Range)(Range r) if (isBidirectionalRange!(Unqual!Range))","url":"/ddoc/phobos/std/algorithm/iteration.html#filterBidirectional"},{"doc":"","kind":"template","module":"std.algorithm.iteration","name":"ChunkByImplIsUnary","package":"phobos","parentType":"","signature":"ChunkByImplIsUnary(alias  pred,  Range)","url":"/ddoc/phobos/std/algorithm/iteration.html#ChunkByImplIsUnary"},{"doc":"Implements the homonym function (also known as `accumulate`, $(D compress), `inject`, or `foldl`) present in various programming languages of funct...","kind":"template","module":"std.algorithm.iteration","name":"reduce","package":"phobos","parentType":"","signature":"reduce(fun...)","url":"/ddoc/phobos/std/algorithm/iteration.html#reduce"},{"doc":"No-seed version. The first element of `r` is used as the seed's value.","kind":"function","module":"std.algorithm.iteration","name":"reduce","package":"phobos","parentType":"","signature":"auto reduce(R)(R r) if (isIterable!R)","url":"/ddoc/phobos/std/algorithm/iteration.html#reduce"},{"doc":"Seed version. The seed should be a single value if `fun` is a single function. If `fun` is multiple functions, then `seed` should be a $(REF Tuple,...","kind":"function","module":"std.algorithm.iteration","name":"reduce","package":"phobos","parentType":"","signature":"auto reduce(S,  R)(S seed,  R r) if (isIterable!R)","url":"/ddoc/phobos/std/algorithm/iteration.html#reduce"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"reducePreImpl","package":"phobos","parentType":"","signature":"auto reducePreImpl(R,  Args...)(R r,  ref  Args args)","url":"/ddoc/phobos/std/algorithm/iteration.html#reduce"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"reduceImpl","package":"phobos","parentType":"","signature":"auto reduceImpl(bool  mustInitialize,  R,  Args...)(R r,  ref  Args args) if (isIterable!R)","url":"/ddoc/phobos/std/algorithm/iteration.html#reduce"},{"doc":"","kind":"template","module":"std.algorithm.iteration","name":"ReduceSeedType","package":"phobos","parentType":"","signature":"ReduceSeedType(E)","url":"/ddoc/phobos/std/algorithm/iteration.html#ReduceSeedType"},{"doc":"Implements the homonym function (also known as `accumulate`, $(D compress), `inject`, or `foldl`) present in various programming languages of funct...","kind":"template","module":"std.algorithm.iteration","name":"fold","package":"phobos","parentType":"","signature":"fold(fun...)","url":"/ddoc/phobos/std/algorithm/iteration.html#fold"},{"doc":"Params: r = the $(REF_ALTTEXT input range, isInputRange, std,range,primitives) to fold seeds = the initial values of each accumulator (optional), o...","kind":"function","module":"std.algorithm.iteration","name":"fold","package":"phobos","parentType":"","signature":"auto fold(R,  S...)(R r,  S seeds)","url":"/ddoc/phobos/std/algorithm/iteration.html#fold"},{"doc":"Similar to `fold`, but returns a range containing the successive reduced values. The call `cumulativeFold!(fun)(range, seed)` first assigns `seed` ...","kind":"template","module":"std.algorithm.iteration","name":"cumulativeFold","package":"phobos","parentType":"","signature":"cumulativeFold(fun...)","url":"/ddoc/phobos/std/algorithm/iteration.html#cumulativeFold"},{"doc":"No-seed version. The first element of `r` is used as the seed's value. For each function `f` in `fun`, the corresponding seed type `S` is `Unqual!(...","kind":"function","module":"std.algorithm.iteration","name":"cumulativeFold","package":"phobos","parentType":"","signature":"auto cumulativeFold(R)(R range) if (isInputRange!(Unqual!R))","url":"/ddoc/phobos/std/algorithm/iteration.html#cumulativeFold"},{"doc":"Seed version. The seed should be a single value if `fun` is a single function. If `fun` is multiple functions, then `seed` should be a $(REF Tuple,...","kind":"function","module":"std.algorithm.iteration","name":"cumulativeFold","package":"phobos","parentType":"","signature":"auto cumulativeFold(R,  S)(R range,  S seed) if (isInputRange!(Unqual!R))","url":"/ddoc/phobos/std/algorithm/iteration.html#cumulativeFold"},{"doc":"","kind":"function","module":"std.algorithm.iteration","name":"cumulativeFoldImpl","package":"phobos","parentType":"","signature":"auto cumulativeFoldImpl(R,  Args...)(R range,  ref  Args args)","url":"/ddoc/phobos/std/algorithm/iteration.html#cumulativeFold"},{"doc":"","kind":"template","module":"std.algorithm.iteration","name":"hasDifferentAutodecoding","package":"phobos","parentType":"","signature":"hasDifferentAutodecoding(Range,  Needles...)","url":"/ddoc/phobos/std/algorithm/iteration.html#hasDifferentAutodecoding"},{"doc":"Returns a range with all occurrences of `substs` in `r`. replaced with their substitution.","kind":"template","module":"std.algorithm.iteration","name":"substitute","package":"phobos","parentType":"","signature":"substitute(substs...)","url":"/ddoc/phobos/std/algorithm/iteration.html#substitute"},{"doc":"Substitute single values with compile-time substitution mappings. Complexity: $(BIGOH 1) due to D's `switch` guaranteeing $(BIGOH 1);","kind":"function","module":"std.algorithm.iteration","name":"substitute","package":"phobos","parentType":"","signature":"auto substitute(Value)(Value value) if (isInputRange!Value || !is(CommonType!(Value,  typeof(substs[0]))  ==  void))","url":"/ddoc/phobos/std/algorithm/iteration.html#substitute"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic mutation algorithms.","kind":"module","module":"std.algorithm.mutation","name":"std.algorithm.mutation","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/mutation.html"},{"doc":"`bringToFront` takes two ranges `front` and `back`, which may be of different types. Considering the concatenation of `front` and `back` one unifie...","kind":"function","module":"std.algorithm.mutation","name":"bringToFront","package":"phobos","parentType":"","signature":"size_t bringToFront(InputRange,  ForwardRange)(InputRange front,  ForwardRange back) if (isInputRange!InputRange &&  isForwardRange!ForwardRange)","url":"/ddoc/phobos/std/algorithm/mutation/bringToFront.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"bringToFrontImpl","package":"phobos","parentType":"","signature":"size_t bringToFrontImpl(InputRange,  ForwardRange)(InputRange front,  ForwardRange back) if (isInputRange!InputRange &&  isForwardRange!ForwardRange)","url":"/ddoc/phobos/std/algorithm/mutation/bringToFrontImpl.html"},{"doc":"Copies the content of `source` into `target` and returns the remaining (unfilled) part of `target`.","kind":"function","module":"std.algorithm.mutation","name":"copy","package":"phobos","parentType":"","signature":"TargetRange copy(SourceRange,  TargetRange)(SourceRange source,  TargetRange target) if (isInputRange!SourceRange &&  isOutputRange!(TargetRange,  ElementType!SourceRange))","url":"/ddoc/phobos/std/algorithm/mutation/copy.html"},{"doc":"Assigns `value` to each element of input range `range`.","kind":"function","module":"std.algorithm.mutation","name":"fill","package":"phobos","parentType":"","signature":"void fill(Range,  Value)(auto  ref  Range range,  auto  ref  Value value) if ((isInputRange!Range &&  is(typeof(range.front =  value))  ||\n     isSomeChar!Value &&  is(typeof(range[]  =  value))))","url":"/ddoc/phobos/std/algorithm/mutation/fill.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"fill","package":"phobos","parentType":"","signature":"void fill(InputRange,  ForwardRange)(InputRange range,  ForwardRange filler) if (isInputRange!InputRange\n    && (isForwardRange!ForwardRange\n    || (isInputRange!ForwardRange &&  isInfinite!ForwardRange))\n     &&  is(typeof(InputRange.init.front =  ForwardRange.init.front)))","url":"/ddoc/phobos/std/algorithm/mutation/fill.html"},{"doc":"Initializes all elements of `range` with their `.init` value. Assumes that the elements of the range are uninitialized.","kind":"function","module":"std.algorithm.mutation","name":"initializeAll","package":"phobos","parentType":"","signature":"void initializeAll(Range)(Range range) if (isInputRange!Range &&  hasLvalueElements!Range &&  hasAssignableElements!Range\n    &&  __traits(compiles,  {  static  ElementType!Range _;  }))","url":"/ddoc/phobos/std/algorithm/mutation/initializeAll.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"initializeAll","package":"phobos","parentType":"","signature":"void initializeAll(Range)(Range range) if (is(Range ==  char[])  ||  is(Range ==  wchar[]))","url":"/ddoc/phobos/std/algorithm/mutation/initializeAll.html"},{"doc":"Moves `source` into `target`, via a destructive copy when necessary.","kind":"function","module":"std.algorithm.mutation","name":"move","package":"phobos","parentType":"","signature":"void move(T)(ref  T source,  ref  T target) if (__traits(compiles,  target =  T.init))","url":"/ddoc/phobos/std/algorithm/mutation/move.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.mutation","name":"move","package":"phobos","parentType":"","signature":"T move(T)(return  scope  ref  T source)","url":"/ddoc/phobos/std/algorithm/mutation/move.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"moveImpl","package":"phobos","parentType":"","signature":"void moveImpl(T)(ref  scope  T target,  ref  return  scope  T source)","url":"/ddoc/phobos/std/algorithm/mutation/moveImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"moveImpl","package":"phobos","parentType":"","signature":"T moveImpl(T)(ref  return  scope  T source)","url":"/ddoc/phobos/std/algorithm/mutation/moveImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"trustedMoveImpl","package":"phobos","parentType":"","signature":"T trustedMoveImpl(T)(ref  return  scope  T source)","url":"/ddoc/phobos/std/algorithm/mutation/trustedMoveImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"moveEmplaceImpl","package":"phobos","parentType":"","signature":"void moveEmplaceImpl(T)(ref  scope  T target,  ref  return  scope  T source)","url":"/ddoc/phobos/std/algorithm/mutation/moveEmplaceImpl.html"},{"doc":"Similar to $(LREF move) but assumes `target` is uninitialized. This is more efficient because `source` can be blitted over `target` without destroy...","kind":"function","module":"std.algorithm.mutation","name":"moveEmplace","package":"phobos","parentType":"","signature":"void moveEmplace(T)(ref  T source,  ref  T target)","url":"/ddoc/phobos/std/algorithm/mutation/moveEmplace.html"},{"doc":"Calls `move(a, b)` for each element `a` in `src` and the corresponding element `b` in `tgt`, in increasing order.","kind":"function","module":"std.algorithm.mutation","name":"moveAll","package":"phobos","parentType":"","signature":"InputRange2 moveAll(InputRange1,  InputRange2)(InputRange1 src,  InputRange2 tgt) if (isInputRange!InputRange1 &&  isInputRange!InputRange2\n        &&  is(typeof(move(src.front,  tgt.front))))","url":"/ddoc/phobos/std/algorithm/mutation/moveAll.html"},{"doc":"Similar to $(LREF moveAll) but assumes all elements in `tgt` are uninitialized. Uses $(LREF moveEmplace) to move elements from `src` over elements ...","kind":"function","module":"std.algorithm.mutation","name":"moveEmplaceAll","package":"phobos","parentType":"","signature":"InputRange2 moveEmplaceAll(InputRange1,  InputRange2)(InputRange1 src,  InputRange2 tgt) if (isInputRange!InputRange1 &&  isInputRange!InputRange2\n        &&  is(typeof(moveEmplace(src.front,  tgt.front))))","url":"/ddoc/phobos/std/algorithm/mutation/moveEmplaceAll.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"moveAllImpl","package":"phobos","parentType":"","signature":"InputRange2 moveAllImpl(alias  moveOp,  InputRange1,  InputRange2)(\n     ref  InputRange1 src,  ref  InputRange2 tgt)","url":"/ddoc/phobos/std/algorithm/mutation/moveAllImpl.html"},{"doc":"Calls `move(a, b)` for each element `a` in `src` and the corresponding element `b` in `tgt`, in increasing order, stopping when either range has be...","kind":"function","module":"std.algorithm.mutation","name":"moveSome","package":"phobos","parentType":"","signature":"Tuple!(InputRange1,  InputRange2) moveSome(InputRange1,  InputRange2)(InputRange1 src,  InputRange2 tgt) if (isInputRange!InputRange1 &&  isInputRange!InputRange2\n        &&  is(typeof(move(src.front,  tgt.front))))","url":"/ddoc/phobos/std/algorithm/mutation/moveSome.html"},{"doc":"Same as $(LREF moveSome) but assumes all elements in `tgt` are uninitialized. Uses $(LREF moveEmplace) to move elements from `src` over elements fr...","kind":"function","module":"std.algorithm.mutation","name":"moveEmplaceSome","package":"phobos","parentType":"","signature":"Tuple!(InputRange1,  InputRange2) moveEmplaceSome(InputRange1,  InputRange2)(InputRange1 src,  InputRange2 tgt) if (isInputRange!InputRange1 &&  isInputRange!InputRange2\n        &&  is(typeof(move(src.front,  tgt.front))))","url":"/ddoc/phobos/std/algorithm/mutation/moveEmplaceSome.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"moveSomeImpl","package":"phobos","parentType":"","signature":"Tuple!(InputRange1,  InputRange2) moveSomeImpl(alias  moveOp,  InputRange1,  InputRange2)(\n     ref  InputRange1 src,  ref  InputRange2 tgt)","url":"/ddoc/phobos/std/algorithm/mutation/moveSomeImpl.html"},{"doc":"Eliminates elements at given offsets from `range` and returns the shortened range.","kind":"function","module":"std.algorithm.mutation","name":"remove","package":"phobos","parentType":"","signature":"Range remove(SwapStrategy s =  SwapStrategy.stable,  Range,  Offset ...)(Range range,  Offset offset) if (Offset.length >=  1 &&  allSatisfy!(isValidIntegralTuple,  Offset))","url":"/ddoc/phobos/std/algorithm/mutation/remove.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"remove","package":"phobos","parentType":"","signature":"Range remove(SwapStrategy s =  SwapStrategy.stable,  Range,  Offset ...)(Range range,  Offset offset) if (Offset.length >=  1 && !allSatisfy!(isValidIntegralTuple,  Offset))","url":"/ddoc/phobos/std/algorithm/mutation/remove.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removeImpl","package":"phobos","parentType":"","signature":"auto removeImpl(SwapStrategy s,  Range,  Offset...)(Range range,  Offset offset)","url":"/ddoc/phobos/std/algorithm/mutation/removeImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removeUnstable","package":"phobos","parentType":"","signature":"Range removeUnstable(Range,  Offset...)(Range range,  Offset offset)","url":"/ddoc/phobos/std/algorithm/mutation/removeUnstable.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removeStable","package":"phobos","parentType":"","signature":"Range removeStable(Range,  Offset...)(Range range,  Offset offset)","url":"/ddoc/phobos/std/algorithm/mutation/removeStable.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removeStableString","package":"phobos","parentType":"","signature":"Range removeStableString(Range,  Offset...)(Range range,  Offset offsets)","url":"/ddoc/phobos/std/algorithm/mutation/removeStableString.html"},{"doc":"Reduces the length of the $(REF_ALTTEXT bidirectional range, isBidirectionalRange, std,range,primitives) `range` by removing elements that satisfy ...","kind":"function","module":"std.algorithm.mutation","name":"remove","package":"phobos","parentType":"","signature":"Range remove(alias  pred,  SwapStrategy s =  SwapStrategy.stable,  Range)(Range range)","url":"/ddoc/phobos/std/algorithm/mutation/remove.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removePredUnstable","package":"phobos","parentType":"","signature":"Range removePredUnstable(alias  pred,  Range)(Range range)","url":"/ddoc/phobos/std/algorithm/mutation/removePredUnstable.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removePredStable","package":"phobos","parentType":"","signature":"Range removePredStable(alias  pred,  Range)(Range range)","url":"/ddoc/phobos/std/algorithm/mutation/removePredStable.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"removePredString","package":"phobos","parentType":"","signature":"Range removePredString(alias  pred,  SwapStrategy s =  SwapStrategy.stable,  Range)(Range range)","url":"/ddoc/phobos/std/algorithm/mutation/removePredString.html"},{"doc":"Reverses `r` in-place.  Performs `r.length / 2` evaluations of `swap`. UTF sequences consisting of multiple code units are preserved properly.","kind":"function","module":"std.algorithm.mutation","name":"reverse","package":"phobos","parentType":"","signature":"Range reverse(Range)(Range r) if (isBidirectionalRange!Range &&\n        (hasSwappableElements!Range ||\n         (hasAssignableElements!Range &&  hasLength!Range &&  isRandomAccessRange!Range)  ||\n         (isNarrowString!Range &&  isAssignable!(ElementType!Range))))","url":"/ddoc/phobos/std/algorithm/mutation/reverse.html"},{"doc":"The strip group of functions allow stripping of either leading, trailing, or both leading and trailing elements.","kind":"function","module":"std.algorithm.mutation","name":"strip","package":"phobos","parentType":"","signature":"Range strip(Range,  E)(Range range,  E element) if (isBidirectionalRange!Range &&  is(typeof(range.front ==  element) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/strip.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"strip","package":"phobos","parentType":"","signature":"Range strip(alias  pred,  Range)(Range range) if (isBidirectionalRange!Range &&  is(typeof(pred(range.back)) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/strip.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"stripLeft","package":"phobos","parentType":"","signature":"Range stripLeft(Range,  E)(Range range,  E element) if (isInputRange!Range &&  is(typeof(range.front ==  element) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/stripLeft.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"stripLeft","package":"phobos","parentType":"","signature":"Range stripLeft(alias  pred,  Range)(Range range) if (isInputRange!Range &&  is(typeof(pred(range.front)) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/stripLeft.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"stripRight","package":"phobos","parentType":"","signature":"Range stripRight(Range,  E)(Range range,  E element) if (isBidirectionalRange!Range &&  is(typeof(range.back ==  element) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/stripRight.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"stripRight","package":"phobos","parentType":"","signature":"Range stripRight(alias  pred,  Range)(Range range) if (isBidirectionalRange!Range &&  is(typeof(pred(range.back)) :  bool))","url":"/ddoc/phobos/std/algorithm/mutation/stripRight.html"},{"doc":"Swaps `lhs` and `rhs`. The instances `lhs` and `rhs` are moved in memory, without ever calling `opAssign`, nor any other function. `T` need not be ...","kind":"function","module":"std.algorithm.mutation","name":"swap","package":"phobos","parentType":"","signature":"void swap(T)(ref  T lhs,  ref  T rhs) if (is(typeof(lhs.proxySwap(rhs))))","url":"/ddoc/phobos/std/algorithm/mutation/swap.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.mutation","name":"swap","package":"phobos","parentType":"","signature":"void swap(T)(ref  T lhs,  ref  T rhs) if (isBlitAssignable!T && !is(typeof(lhs.proxySwap(rhs))))","url":"/ddoc/phobos/std/algorithm/mutation/swap.html"},{"doc":"Swaps two elements in-place of a range `r`, specified by their indices `i1` and `i2`.","kind":"function","module":"std.algorithm.mutation","name":"swapAt","package":"phobos","parentType":"","signature":"void swapAt(R)(auto  ref  R r,  size_t i1,  size_t i2)","url":"/ddoc/phobos/std/algorithm/mutation/swapAt.html"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"swapFront","package":"phobos","parentType":"","signature":"void swapFront(R1,  R2)(R1 r1,  R2 r2) if (isInputRange!R1 &&  isInputRange!R2)","url":"/ddoc/phobos/std/algorithm/mutation/swapFront.html"},{"doc":"Swaps all elements of `r1` with successive elements in `r2`. Returns a tuple containing the remainder portions of `r1` and $(D r2) that were not sw...","kind":"function","module":"std.algorithm.mutation","name":"swapRanges","package":"phobos","parentType":"","signature":"Tuple!(InputRange1,  InputRange2) swapRanges(InputRange1,  InputRange2)(InputRange1 r1,  InputRange2 r2) if (hasSwappableElements!InputRange1 &&  hasSwappableElements!InputRange2\n    &&  is(ElementType!InputRange1 ==  ElementType!InputRange2))","url":"/ddoc/phobos/std/algorithm/mutation/swapRanges.html"},{"doc":"Initializes each element of `range` with `value`. Assumes that the elements of the range are uninitialized. This is of interest for structs that de...","kind":"function","module":"std.algorithm.mutation","name":"uninitializedFill","package":"phobos","parentType":"","signature":"void uninitializedFill(Range,  Value)(Range range,  Value value) if (isInputRange!Range &&  hasLvalueElements!Range &&  is(typeof(range.front =  value)))","url":"/ddoc/phobos/std/algorithm/mutation/uninitializedFill.html"},{"doc":"Defines the swapping strategy for algorithms that need to swap elements in a range (such as partition and sort). The strategy concerns the swapping...","kind":"enum","module":"std.algorithm.mutation","name":"SwapStrategy","package":"phobos","parentType":"","signature":"SwapStrategy","url":"/ddoc/phobos/std/algorithm/mutation.html#SwapStrategy"},{"doc":"Allows freely swapping of elements as long as the output satisfies the algorithm's requirements.","kind":"enum_member","module":"std.algorithm.mutation","name":"unstable","package":"phobos","parentType":"","signature":"unstable = ","url":"/ddoc/phobos/std/algorithm/mutation.html#SwapStrategy"},{"doc":"In algorithms partitioning ranges in two, preserve relative ordering of elements only to the left of the partition point.","kind":"enum_member","module":"std.algorithm.mutation","name":"semistable","package":"phobos","parentType":"","signature":"semistable = ","url":"/ddoc/phobos/std/algorithm/mutation.html#SwapStrategy"},{"doc":"Preserve the relative ordering of elements to the largest extent allowed by the algorithm's requirements.","kind":"enum_member","module":"std.algorithm.mutation","name":"stable","package":"phobos","parentType":"","signature":"stable = ","url":"/ddoc/phobos/std/algorithm/mutation.html#SwapStrategy"},{"doc":"ditto","kind":"template","module":"std.algorithm.mutation","name":"move","package":"phobos","parentType":"","signature":"move(T)","url":"/ddoc/phobos/std/algorithm/mutation.html#move"},{"doc":"","kind":"function","module":"std.algorithm.mutation","name":"move","package":"phobos","parentType":"","signature":"void move(ref  T source,  ref  T target)","url":"/ddoc/phobos/std/algorithm/mutation.html#move"},{"doc":"","kind":"template","module":"std.algorithm.mutation","name":"isValidIntegralTuple","package":"phobos","parentType":"","signature":"isValidIntegralTuple(T)","url":"/ddoc/phobos/std/algorithm/mutation.html#isValidIntegralTuple"},{"doc":"","kind":"variable","module":"std.algorithm.mutation","name":"areCopyCompatibleArrays","package":"phobos","parentType":"","signature":"bool areCopyCompatibleArrays","url":"/ddoc/phobos/std/algorithm/mutation.html#areCopyCompatibleArrays"},{"doc":"This package implements generic algorithms oriented towards the processing of sequences. Sequences processed by these functions define range-based ...","kind":"module","module":"std.algorithm","name":"std.algorithm","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm.html"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic searching algorithms.","kind":"module","module":"std.algorithm.searching","name":"std.algorithm.searching","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/searching.html"},{"doc":"Checks whether `r` has \"balanced parentheses\", i.e. all instances of `lPar` are closed by corresponding instances of `rPar`. The parameter `maxNest...","kind":"function","module":"std.algorithm.searching","name":"balancedParens","package":"phobos","parentType":"","signature":"bool balancedParens(Range,  E)(Range r,  E lPar,  E rPar,\n         size_t maxNestingLevel =  size_t.max) if (isInputRange!(Range)  &&  is(typeof(r.front ==  lPar)))","url":"/ddoc/phobos/std/algorithm/searching/balancedParens.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"boyerMooreFinder","package":"phobos","parentType":"","signature":"BoyerMooreFinder!(binaryFun!(pred),  Range) boyerMooreFinder(alias  pred =  \"a == b\",  Range)(Range needle) if ((isRandomAccessRange!(Range)  &&  hasSlicing!Range)  ||  isSomeString!Range)","url":"/ddoc/phobos/std/algorithm/searching/boyerMooreFinder.html"},{"doc":"Returns the common prefix of two ranges.","kind":"function","module":"std.algorithm.searching","name":"commonPrefix","package":"phobos","parentType":"","signature":"auto commonPrefix(alias  pred =  \"a == b\",  R1,  R2)(R1 r1,  R2 r2) if (isForwardRange!R1 &&  isInputRange!R2 &&\n    !isNarrowString!R1 &&\n     is(typeof(binaryFun!pred(r1.front,  r2.front))))","url":"/ddoc/phobos/std/algorithm/searching/commonPrefix.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"commonPrefix","package":"phobos","parentType":"","signature":"auto commonPrefix(alias  pred,  R1,  R2)(R1 r1,  R2 r2) if (isNarrowString!R1 &&  isInputRange!R2 &&\n     is(typeof(binaryFun!pred(r1.front,  r2.front))))","url":"/ddoc/phobos/std/algorithm/searching/commonPrefix.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"commonPrefix","package":"phobos","parentType":"","signature":"auto commonPrefix(R1,  R2)(R1 r1,  R2 r2) if (isNarrowString!R1 &&  isInputRange!R2 && !isNarrowString!R2 &&\n     is(typeof(r1.front ==  r2.front)))","url":"/ddoc/phobos/std/algorithm/searching/commonPrefix.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"commonPrefix","package":"phobos","parentType":"","signature":"auto commonPrefix(R1,  R2)(R1 r1,  R2 r2) if (isNarrowString!R1 &&  isNarrowString!R2)","url":"/ddoc/phobos/std/algorithm/searching/commonPrefix.html"},{"doc":"Counts matches of `needle` in `haystack`.","kind":"function","module":"std.algorithm.searching","name":"count","package":"phobos","parentType":"","signature":"size_t count(alias  pred =  \"a == b\",  Range,  E)(Range haystack,  E needle) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(haystack.front,  needle))))","url":"/ddoc/phobos/std/algorithm/searching/count.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"count","package":"phobos","parentType":"","signature":"size_t count(alias  pred =  \"a == b\",  R1,  R2)(R1 haystack,  R2 needle) if (isForwardRange!R1 && !isInfinite!R1 &&\n     isForwardRange!R2 &&\n     is(typeof(binaryFun!pred(haystack.front,  needle.front))))","url":"/ddoc/phobos/std/algorithm/searching/count.html"},{"doc":"Counts all elements or elements satisfying a predicate in `haystack`.","kind":"function","module":"std.algorithm.searching","name":"count","package":"phobos","parentType":"","signature":"size_t count(alias  pred,  R)(R haystack) if (isInputRange!R && !isInfinite!R &&\n     is(typeof(unaryFun!pred(haystack.front))))","url":"/ddoc/phobos/std/algorithm/searching/count.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"count","package":"phobos","parentType":"","signature":"size_t count(R)(R haystack) if (isInputRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/algorithm/searching/count.html"},{"doc":"Counts elements in the given $(REF_ALTTEXT input range, isInputRange, std,range,primitives) until the given predicate is true for one of the given ...","kind":"function","module":"std.algorithm.searching","name":"countUntil","package":"phobos","parentType":"","signature":"auto countUntil(alias  pred =  \"a == b\",  R,  Rs...)(R haystack,  Rs needles) if (isForwardRange!R\n    &&  Rs.length >  0\n    &&  isForwardRange!(Rs[0])  ==  isInputRange!(Rs[0])\n     &&  allSatisfy!(canTestStartsWith!(pred,  R),  Rs))","url":"/ddoc/phobos/std/algorithm/searching/countUntil.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"countUntil","package":"phobos","parentType":"","signature":"ptrdiff_t countUntil(alias  pred =  \"a == b\",  R,  N)(R haystack,  N needle) if (isInputRange!R &&\n     is(typeof(binaryFun!pred(haystack.front,  needle)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/countUntil.html"},{"doc":"Counts elements in the given $(REF_ALTTEXT input range, isInputRange, std,range,primitives) until the given predicate is true for one of the elemen...","kind":"function","module":"std.algorithm.searching","name":"countUntil","package":"phobos","parentType":"","signature":"ptrdiff_t countUntil(alias  pred,  R)(R haystack) if (isInputRange!R &&\n     is(typeof(unaryFun!pred(haystack.front)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/countUntil.html"},{"doc":"Checks if the given range ends with (one of) the given needle(s). The reciprocal of `startsWith`.","kind":"function","module":"std.algorithm.searching","name":"endsWith","package":"phobos","parentType":"","signature":"uint endsWith(alias  pred =  \"a == b\",  Range,  Needles...)(Range doesThisEnd,  Needles withOneOfThese) if (isBidirectionalRange!Range &&  Needles.length >  1 &&\n     allSatisfy!(canTestStartsWith!(pred,  Range),  Needles))","url":"/ddoc/phobos/std/algorithm/searching/endsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"endsWith","package":"phobos","parentType":"","signature":"bool endsWith(alias  pred =  \"a == b\",  R1,  R2)(R1 doesThisEnd,  R2 withThis) if (isBidirectionalRange!R1 &&\n     isBidirectionalRange!R2 &&\n     is(typeof(binaryFun!pred(doesThisEnd.back,  withThis.back)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/endsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"endsWith","package":"phobos","parentType":"","signature":"bool endsWith(alias  pred =  \"a == b\",  R,  E)(R doesThisEnd,  E withThis) if (isBidirectionalRange!R &&\n     is(typeof(binaryFun!pred(doesThisEnd.back,  withThis)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/endsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"endsWith","package":"phobos","parentType":"","signature":"bool endsWith(alias  pred,  R)(R doesThisEnd) if (isInputRange!R &&\n     ifTestable!(typeof(doesThisEnd.front),  unaryFun!pred))","url":"/ddoc/phobos/std/algorithm/searching/endsWith.html"},{"doc":"Iterates the passed range and selects the extreme element with `less`. If the extreme element occurs multiple time, the first occurrence will be re...","kind":"function","module":"std.algorithm.searching","name":"extremum","package":"phobos","parentType":"","signature":"auto extremum(alias  map,  alias  selector =  \"a < b\",  Range)(Range r) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(unaryFun!map(ElementType!(Range).init))))","url":"/ddoc/phobos/std/algorithm/searching/extremum.html"},{"doc":"","kind":"function","module":"std.algorithm.searching","name":"extremum","package":"phobos","parentType":"","signature":"auto extremum(alias  map,  alias  selector =  \"a < b\",  Range,\n                       RangeElementType =  ElementType!Range)(Range r,  RangeElementType seedElement) if (isInputRange!Range && !isInfinite!Range &&\n    !is(CommonType!(ElementType!Range,  RangeElementType)  ==  void)  &&\n      is(typeof(unaryFun!map(ElementType!(Range).init))))","url":"/ddoc/phobos/std/algorithm/searching/extremum.html"},{"doc":"","kind":"function","module":"std.algorithm.searching","name":"extremum","package":"phobos","parentType":"","signature":"auto extremum(alias  selector =  \"a < b\",  Range)(Range r) if (isInputRange!Range && !isInfinite!Range &&\n    !is(typeof(unaryFun!selector(ElementType!(Range).init))))","url":"/ddoc/phobos/std/algorithm/searching/extremum.html"},{"doc":"","kind":"function","module":"std.algorithm.searching","name":"extremum","package":"phobos","parentType":"","signature":"auto extremum(alias  selector =  \"a < b\",  Range,\n                       RangeElementType =  ElementType!Range)(Range r,  RangeElementType seedElement) if (isInputRange!Range && !isInfinite!Range &&\n    !is(CommonType!(ElementType!Range,  RangeElementType)  ==  void)  &&\n    !is(typeof(unaryFun!selector(ElementType!(Range).init))))","url":"/ddoc/phobos/std/algorithm/searching/extremum.html"},{"doc":"Finds an element `e` of an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) where `pred(e)` is `true`. $(P $(PANEL $(UL $(LI `find` b...","kind":"function","module":"std.algorithm.searching","name":"find","package":"phobos","parentType":"","signature":"InputRange find(alias  pred,  InputRange)(InputRange haystack) if (isInputRange!InputRange)","url":"/ddoc/phobos/std/algorithm/searching/find.html"},{"doc":"Finds an individual element in an $(REF_ALTTEXT input range, isInputRange, std,range,primitives). Elements of `haystack` are compared with `needle`...","kind":"function","module":"std.algorithm.searching","name":"find","package":"phobos","parentType":"","signature":"InputRange find(alias  pred =  \"a == b\",  InputRange,  Element)(InputRange haystack,  scope  Element needle) if (isInputRange!InputRange &&\n     is (typeof(binaryFun!pred(haystack.front,  needle)) :  bool)  &&\n   !is (typeof(binaryFun!pred(haystack.front,  needle.front)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/find.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"find","package":"phobos","parentType":"","signature":"R1 find(alias  pred =  \"a == b\",  R1,  R2)(R1 haystack,  scope  R2 needle) if (isForwardRange!R1 &&  isForwardRange!R2\n        &&  is(typeof(binaryFun!pred(haystack.front,  needle.front)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/find.html"},{"doc":"","kind":"function","module":"std.algorithm.searching","name":"simpleMindedFind","package":"phobos","parentType":"","signature":"R1 simpleMindedFind(alias  pred,  R1,  R2)(R1 haystack,  scope  R2 needle)","url":"/ddoc/phobos/std/algorithm/searching/simpleMindedFind.html"},{"doc":"Finds two or more `needles` into a `haystack`. The predicate $(D pred) is used throughout to compare elements. By default, elements are compared fo...","kind":"function","module":"std.algorithm.searching","name":"find","package":"phobos","parentType":"","signature":"Tuple!(Range,  size_t) find(alias  pred =  \"a == b\",  Range,  Needles...)(Range haystack,  Needles needles) if (Needles.length >  1 &&  is(typeof(startsWith!pred(haystack,  needles))))","url":"/ddoc/phobos/std/algorithm/searching/find.html"},{"doc":"Finds `needle` in `haystack` efficiently using the $(LINK2 https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm, Boyer-Moore) ...","kind":"function","module":"std.algorithm.searching","name":"find","package":"phobos","parentType":"","signature":"RandomAccessRange find(RandomAccessRange,  alias  pred,  InputRange)(\n     RandomAccessRange haystack,  scope  BoyerMooreFinder!(pred,  InputRange)  needle)","url":"/ddoc/phobos/std/algorithm/searching/find.html"},{"doc":"Advances `r` until it finds the first two adjacent elements `a`, `b` that satisfy `pred(a, b)`. Performs $(BIGOH r.length) evaluations of `pred`.","kind":"function","module":"std.algorithm.searching","name":"findAdjacent","package":"phobos","parentType":"","signature":"Range findAdjacent(alias  pred =  \"a == b\",  Range)(Range r) if (isForwardRange!(Range))","url":"/ddoc/phobos/std/algorithm/searching/findAdjacent.html"},{"doc":"Searches the given range for an element that matches one of the given choices.","kind":"function","module":"std.algorithm.searching","name":"findAmong","package":"phobos","parentType":"","signature":"InputRange findAmong(alias  pred =  \"a == b\",  InputRange,  ForwardRange)(\n     InputRange seq,  ForwardRange choices) if (isInputRange!InputRange &&  isForwardRange!ForwardRange)","url":"/ddoc/phobos/std/algorithm/searching/findAmong.html"},{"doc":"* Finds `needle` in `haystack` and positions `haystack` * right after the first occurrence of `needle`. * * If no needle is provided, the `haystack...","kind":"function","module":"std.algorithm.searching","name":"findSkip","package":"phobos","parentType":"","signature":"bool findSkip(alias  pred =  \"a == b\",  R1,  R2)(ref  R1 haystack,  R2 needle) if (isForwardRange!R1 &&  isForwardRange!R2\n        &&  is(typeof(binaryFun!pred(haystack.front,  needle.front))))","url":"/ddoc/phobos/std/algorithm/searching/findSkip.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"findSkip","package":"phobos","parentType":"","signature":"size_t findSkip(alias  pred,  R1)(ref  R1 haystack) if (isForwardRange!R1 &&  ifTestable!(typeof(haystack.front),  unaryFun!pred))","url":"/ddoc/phobos/std/algorithm/searching/findSkip.html"},{"doc":"These functions find the first occurrence of `needle` in `haystack` and then split `haystack` as follows.","kind":"function","module":"std.algorithm.searching","name":"findSplit","package":"phobos","parentType":"","signature":"auto findSplit(alias  pred =  \"a == b\",  R1,  R2)(R1 haystack,  R2 needle) if (isForwardRange!R1 &&  isForwardRange!R2)","url":"/ddoc/phobos/std/algorithm/searching/findSplit.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"findSplitBefore","package":"phobos","parentType":"","signature":"auto findSplitBefore(alias  pred =  \"a == b\",  R1,  R2)(R1 haystack,  R2 needle) if (isForwardRange!R1 &&  isForwardRange!R2)","url":"/ddoc/phobos/std/algorithm/searching/findSplitBefore.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"findSplitAfter","package":"phobos","parentType":"","signature":"auto findSplitAfter(alias  pred =  \"a == b\",  R1,  R2)(R1 haystack,  R2 needle) if (isForwardRange!R1 &&  isForwardRange!R2)","url":"/ddoc/phobos/std/algorithm/searching/findSplitAfter.html"},{"doc":"Computes the minimum (respectively maximum) of `range` along with its number of occurrences. Formally, the minimum is a value `x` in `range` such t...","kind":"function","module":"std.algorithm.searching","name":"minCount","package":"phobos","parentType":"","signature":"Tuple!(ElementType!Range,  size_t) minCount(alias  pred =  \"a < b\",  Range)(Range range) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/minCount.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"maxCount","package":"phobos","parentType":"","signature":"Tuple!(ElementType!Range,  size_t) maxCount(alias  pred =  \"a < b\",  Range)(Range range) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/maxCount.html"},{"doc":"Iterates the passed range and returns the minimal element. A custom mapping function can be passed to `map`. In other languages this is sometimes c...","kind":"function","module":"std.algorithm.searching","name":"minElement","package":"phobos","parentType":"","signature":"auto minElement(alias  map = (a =>  a),  Range)(Range r) if (isInputRange!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/algorithm/searching/minElement.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"minElement","package":"phobos","parentType":"","signature":"auto minElement(alias  map = (a =>  a),  Range,  RangeElementType =  ElementType!Range)(Range r,  RangeElementType seed) if (isInputRange!Range && !isInfinite!Range &&\n    !is(CommonType!(ElementType!Range,  RangeElementType)  ==  void))","url":"/ddoc/phobos/std/algorithm/searching/minElement.html"},{"doc":"Iterates the passed range and returns the maximal element. A custom mapping function can be passed to `map`. In other languages this is sometimes c...","kind":"function","module":"std.algorithm.searching","name":"maxElement","package":"phobos","parentType":"","signature":"auto maxElement(alias  map = (a =>  a),  Range)(Range r) if (isInputRange!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/algorithm/searching/maxElement.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.searching","name":"maxElement","package":"phobos","parentType":"","signature":"auto maxElement(alias  map = (a =>  a),  Range,  RangeElementType =  ElementType!Range)(Range r,  RangeElementType seed) if (isInputRange!Range && !isInfinite!Range &&\n    !is(CommonType!(ElementType!Range,  RangeElementType)  ==  void))","url":"/ddoc/phobos/std/algorithm/searching/maxElement.html"},{"doc":"Returns an array of the minimum and maximum element in `r`. Performs `< 3n/2` comparisons, unlike the naive `< 2n`. Params: r = The range to traverse.","kind":"function","module":"std.algorithm.searching","name":"extrema","package":"phobos","parentType":"","signature":"ElementType!Range[2] extrema(Range)(Range r) if (isInputRange!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/algorithm/searching/extrema.html"},{"doc":"Computes a subrange of `range` starting at the first occurrence of `range`'s minimum (respectively maximum) and with the same ending as `range`, or...","kind":"function","module":"std.algorithm.searching","name":"minPos","package":"phobos","parentType":"","signature":"Range minPos(alias  pred =  \"a < b\",  Range)(Range range) if (isForwardRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/minPos.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"maxPos","package":"phobos","parentType":"","signature":"Range maxPos(alias  pred =  \"a < b\",  Range)(Range range) if (isForwardRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/maxPos.html"},{"doc":"Computes the index of the first occurrence of `range`'s minimum element.","kind":"function","module":"std.algorithm.searching","name":"minIndex","package":"phobos","parentType":"","signature":"ptrdiff_t minIndex(alias  pred =  \"a < b\",  Range)(Range range) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/minIndex.html"},{"doc":"Computes the index of the first occurrence of `range`'s maximum element.","kind":"function","module":"std.algorithm.searching","name":"maxIndex","package":"phobos","parentType":"","signature":"ptrdiff_t maxIndex(alias  pred =  \"a < b\",  Range)(Range range) if (isInputRange!Range && !isInfinite!Range &&\n     is(typeof(binaryFun!pred(range.front,  range.front))))","url":"/ddoc/phobos/std/algorithm/searching/maxIndex.html"},{"doc":"Checks whether the given $(REF_ALTTEXT input range, isInputRange, std,range,primitives) starts with (one of) the given needle(s) or, if no needles ...","kind":"function","module":"std.algorithm.searching","name":"startsWith","package":"phobos","parentType":"","signature":"uint startsWith(alias  pred = (a,  b)  =>  a ==  b,  Range,  Needles...)(Range doesThisStart,  Needles withOneOfThese) if (isInputRange!Range &&  Needles.length >  1 &&\n     allSatisfy!(canTestStartsWith!(pred,  Range),  Needles))","url":"/ddoc/phobos/std/algorithm/searching/startsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"startsWith","package":"phobos","parentType":"","signature":"bool startsWith(alias  pred =  \"a == b\",  R1,  R2)(R1 doesThisStart,  R2 withThis) if (isInputRange!R1 &&\n     isInputRange!R2 &&\n     is(typeof(binaryFun!pred(doesThisStart.front,  withThis.front)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/startsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"startsWith","package":"phobos","parentType":"","signature":"bool startsWith(alias  pred =  \"a == b\",  R,  E)(R doesThisStart,  E withThis) if (isInputRange!R &&\n     is(typeof(binaryFun!pred(doesThisStart.front,  withThis)) :  bool))","url":"/ddoc/phobos/std/algorithm/searching/startsWith.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"startsWith","package":"phobos","parentType":"","signature":"bool startsWith(alias  pred,  R)(R doesThisStart) if (isInputRange!R &&\n     ifTestable!(typeof(doesThisStart.front),  unaryFun!pred))","url":"/ddoc/phobos/std/algorithm/searching/startsWith.html"},{"doc":"","kind":"function","module":"std.algorithm.searching","name":"skipAll","package":"phobos","parentType":"","signature":"void skipAll(alias  pred =  \"a == b\",  R,  Es...)(ref  R r,  Es es)","url":"/ddoc/phobos/std/algorithm/searching/skipAll.html"},{"doc":"Lazily iterates `range` _until the element `e` for which `pred(e, sentinel)` is true.","kind":"function","module":"std.algorithm.searching","name":"until","package":"phobos","parentType":"","signature":"Until!(pred,  Range,  Sentinel) until(alias  pred =  \"a == b\",  Range,  Sentinel)(Range range,  Sentinel sentinel,  OpenRight openRight =  Yes.openRight) if (!is(Sentinel ==  OpenRight))","url":"/ddoc/phobos/std/algorithm/searching/until.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"until","package":"phobos","parentType":"","signature":"Until!(pred,  Range,  void) until(alias  pred,  Range)(Range range,  OpenRight openRight =  Yes.openRight)","url":"/ddoc/phobos/std/algorithm/searching/until.html"},{"doc":"Sets up Boyer-Moore matching for use with `find` below. By default, elements are compared for equality.","kind":"struct","module":"std.algorithm.searching","name":"BoyerMooreFinder","package":"phobos","parentType":"","signature":"BoyerMooreFinder(alias  pred,  Range)","url":"/ddoc/phobos/std/algorithm/searching.html#BoyerMooreFinder"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"occurrence","package":"phobos","parentType":"BoyerMooreFinder","signature":"ptrdiff_t occurrence(ElementType!(Range)  c)","url":"/ddoc/phobos/std/algorithm/searching/BoyerMooreFinder.occurrence.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"needlematch","package":"phobos","parentType":"BoyerMooreFinder","signature":"bool needlematch(R)(R needle,\n                               size_t portion,  size_t offset)","url":"/ddoc/phobos/std/algorithm/searching/BoyerMooreFinder.needlematch.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"beFound","package":"phobos","parentType":"BoyerMooreFinder","signature":"Range beFound(Range haystack)","url":"/ddoc/phobos/std/algorithm/searching/BoyerMooreFinder.beFound.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"length","package":"phobos","parentType":"BoyerMooreFinder","signature":"size_t length()","url":"/ddoc/phobos/std/algorithm/searching/BoyerMooreFinder.length.html"},{"doc":"","kind":"struct","module":"std.algorithm.searching","name":"FindSplitResult","package":"phobos","parentType":"","signature":"FindSplitResult(ubyte  emptyRangeIndex,  Types...)","url":"/ddoc/phobos/std/algorithm/searching.html#FindSplitResult"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"opAssign","package":"phobos","parentType":"FindSplitResult","signature":"void opAssign(typeof(asTuple)  rhs)","url":"/ddoc/phobos/std/algorithm/searching/FindSplitResult.opAssign.html"},{"doc":"Interval option specifier for `until` (below) and others.","kind":"alias","module":"std.algorithm.searching","name":"OpenRight","package":"phobos","parentType":"","signature":"OpenRight = Flag!\"openRight\"","url":"/ddoc/phobos/std/algorithm/searching.html#OpenRight"},{"doc":"ditto","kind":"struct","module":"std.algorithm.searching","name":"Until","package":"phobos","parentType":"","signature":"Until(alias  pred,  Range,  Sentinel) if (isInputRange!Range)","url":"/ddoc/phobos/std/algorithm/searching.html#Until"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"empty","package":"phobos","parentType":"Until","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/searching/Until.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"front","package":"phobos","parentType":"Until","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/searching/Until.front.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"predSatisfied","package":"phobos","parentType":"Until","signature":"bool predSatisfied()","url":"/ddoc/phobos/std/algorithm/searching/Until.predSatisfied.html"},{"doc":"","kind":"method","module":"std.algorithm.searching","name":"popFront","package":"phobos","parentType":"Until","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/searching/Until.popFront.html"},{"doc":"Checks if $(I _all) of the elements satisfy `pred`.","kind":"template","module":"std.algorithm.searching","name":"all","package":"phobos","parentType":"","signature":"all(alias  pred =  \"a\")","url":"/ddoc/phobos/std/algorithm/searching.html#all"},{"doc":"Returns `true` if and only if the input range `range` is empty or $(I _all) values found in `range` satisfy the predicate `pred`. Performs (at most...","kind":"function","module":"std.algorithm.searching","name":"all","package":"phobos","parentType":"","signature":"bool all(Range)(Range range) if (isInputRange!Range &&\n        (__traits(isTemplate,  pred)  ||  is(typeof(unaryFun!pred(range.front)))))","url":"/ddoc/phobos/std/algorithm/searching.html#all"},{"doc":"Checks if $(I _any) of the elements satisfies `pred`. `!any` can be used to verify that $(I none) of the elements satisfy `pred`. This is sometimes...","kind":"template","module":"std.algorithm.searching","name":"any","package":"phobos","parentType":"","signature":"any(alias  pred =  \"a\")","url":"/ddoc/phobos/std/algorithm/searching.html#any"},{"doc":"Returns `true` if and only if the input range `range` is non-empty and $(I _any) value found in `range` satisfies the predicate `pred`. Performs (a...","kind":"function","module":"std.algorithm.searching","name":"any","package":"phobos","parentType":"","signature":"bool any(Range)(Range range) if (isInputRange!Range &&\n        (__traits(isTemplate,  pred)  ||  is(typeof(unaryFun!pred(range.front)))))","url":"/ddoc/phobos/std/algorithm/searching.html#any"},{"doc":"Convenience function. Like find, but only returns whether or not the search was successful.","kind":"template","module":"std.algorithm.searching","name":"canFind","package":"phobos","parentType":"","signature":"canFind(alias  pred = \"a == b\")","url":"/ddoc/phobos/std/algorithm/searching.html#canFind"},{"doc":"Returns `true` if and only if `pred(e)` is true for any value `e` in the input range `range`. Performs (at most) $(BIGOH haystack.length) evaluatio...","kind":"function","module":"std.algorithm.searching","name":"canFind","package":"phobos","parentType":"","signature":"bool canFind(Range)(Range haystack) if (is(typeof(find!pred(haystack))))","url":"/ddoc/phobos/std/algorithm/searching.html#canFind"},{"doc":"Returns `true` if and only if `needle` can be found in $(D range). Performs $(BIGOH haystack.length) evaluations of `pred`.","kind":"function","module":"std.algorithm.searching","name":"canFind","package":"phobos","parentType":"","signature":"bool canFind(Range,  Element)(Range haystack,  scope  Element needle) if (is(typeof(find!pred(haystack,  needle))))","url":"/ddoc/phobos/std/algorithm/searching.html#canFind"},{"doc":"Returns the 1-based index of the first needle found in `haystack`. If no needle is found, then `0` is returned.","kind":"function","module":"std.algorithm.searching","name":"canFind","package":"phobos","parentType":"","signature":"size_t canFind(Range,  Needles...)(Range haystack,  scope  Needles needles) if (Needles.length >  1 &&\n         is(typeof(find!pred(haystack,  needles))))","url":"/ddoc/phobos/std/algorithm/searching.html#canFind"},{"doc":"Skip over the initial portion of the first given range (`haystack`) that matches any of the additionally given ranges (`needles`) fully, or if no s...","kind":"template","module":"std.algorithm.searching","name":"skipOver","package":"phobos","parentType":"","signature":"skipOver(alias  pred = (a,  b)  =>  a ==  b)","url":"/ddoc/phobos/std/algorithm/searching.html#skipOver"},{"doc":"Params: haystack = The $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) to move forward. needles = The $(REF_ALTTEXT input ranges...","kind":"function","module":"std.algorithm.searching","name":"skipOver","package":"phobos","parentType":"","signature":"bool skipOver(Haystack,  Needles...)(ref  Haystack haystack,  Needles needles) if (is(typeof(binaryFun!pred(haystack.front,  needles[0].front)))  &&\n         isForwardRange!Haystack &&\n         allSatisfy!(isInputRange,  Needles)  &&\n        !is(CommonType!(staticMap!(ElementType,  staticMap!(Unqual,  Needles)))  ==  void))","url":"/ddoc/phobos/std/algorithm/searching.html#skipOver"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"skipOver","package":"phobos","parentType":"","signature":"bool skipOver(R)(ref  R r1) if (isForwardRange!R &&\n         ifTestable!(typeof(r1.front),  unaryFun!pred))","url":"/ddoc/phobos/std/algorithm/searching.html#skipOver"},{"doc":"Ditto","kind":"function","module":"std.algorithm.searching","name":"skipOver","package":"phobos","parentType":"","signature":"bool skipOver(R,  Es...)(ref  R r,  Es es) if (isInputRange!R &&  is(typeof(binaryFun!pred(r.front,  es[0]))))","url":"/ddoc/phobos/std/algorithm/searching.html#skipOver"},{"doc":"","kind":"template","module":"std.algorithm.searching","name":"canTestStartsWith","package":"phobos","parentType":"","signature":"canTestStartsWith(alias  pred,  Haystack)","url":"/ddoc/phobos/std/algorithm/searching.html#canTestStartsWith"},{"doc":"","kind":"variable","module":"std.algorithm.searching","name":"hasConstEmptyMember","package":"phobos","parentType":"","signature":"bool hasConstEmptyMember","url":"/ddoc/phobos/std/algorithm/searching.html#hasConstEmptyMember"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic algorithms that implement set operations.","kind":"module","module":"std.algorithm.setops","name":"std.algorithm.setops","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/setops.html"},{"doc":"Lazily computes the Cartesian product of two or more ranges. The product is a range of tuples of elements from each respective range.","kind":"function","module":"std.algorithm.setops","name":"cartesianProduct","package":"phobos","parentType":"","signature":"auto cartesianProduct(R1,  R2)(R1 range1,  R2 range2) if (!allSatisfy!(isForwardRange,  R1,  R2)  ||\n     anySatisfy!(isInfinite,  R1,  R2))","url":"/ddoc/phobos/std/algorithm/setops/cartesianProduct.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.setops","name":"cartesianProduct","package":"phobos","parentType":"","signature":"auto cartesianProduct(RR...)(RR ranges) if (ranges.length >=  2 &&\n     allSatisfy!(isForwardRange,  RR)  &&\n    !anySatisfy!(isInfinite,  RR))","url":"/ddoc/phobos/std/algorithm/setops/cartesianProduct.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.setops","name":"cartesianProduct","package":"phobos","parentType":"","signature":"auto cartesianProduct(R1,  R2,  RR...)(R1 range1,  R2 range2,  RR otherRanges) if (!allSatisfy!(isForwardRange,  R1,  R2,  RR)  ||\n     anySatisfy!(isInfinite,  R1,  R2,  RR))","url":"/ddoc/phobos/std/algorithm/setops/cartesianProduct.html"},{"doc":"Given a range of sorted $(REF_ALTTEXT forward ranges, isForwardRange, std,range,primitives) `ror`, copies to `tgt` the elements that are common to ...","kind":"function","module":"std.algorithm.setops","name":"largestPartialIntersection","package":"phobos","parentType":"","signature":"void largestPartialIntersection(alias  less =  \"a < b\",  RangeOfRanges,  Range)(RangeOfRanges ror,  Range tgt,  SortOutput sorted =  No.sortOutput)","url":"/ddoc/phobos/std/algorithm/setops/largestPartialIntersection.html"},{"doc":"Similar to `largestPartialIntersection`, but associates a weight with each distinct element in the intersection.","kind":"function","module":"std.algorithm.setops","name":"largestPartialIntersectionWeighted","package":"phobos","parentType":"","signature":"void largestPartialIntersectionWeighted(alias  less =  \"a < b\",  RangeOfRanges,  Range,  WeightsAA)(RangeOfRanges ror,  Range tgt,  WeightsAA weights,  SortOutput sorted =  No.sortOutput)","url":"/ddoc/phobos/std/algorithm/setops/largestPartialIntersectionWeighted.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.setops","name":"multiwayMerge","package":"phobos","parentType":"","signature":"MultiwayMerge!(less,  RangeOfRanges) multiwayMerge(alias  less =  \"a < b\",  RangeOfRanges)(RangeOfRanges ror)","url":"/ddoc/phobos/std/algorithm/setops/multiwayMerge.html"},{"doc":"Computes the union of multiple ranges. The $(REF_ALTTEXT input ranges, isInputRange, std,range,primitives) are passed as a range of ranges and each...","kind":"function","module":"std.algorithm.setops","name":"multiwayUnion","package":"phobos","parentType":"","signature":"auto multiwayUnion(alias  less =  \"a < b\",  RangeOfRanges)(RangeOfRanges ror)","url":"/ddoc/phobos/std/algorithm/setops/multiwayUnion.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.setops","name":"setDifference","package":"phobos","parentType":"","signature":"SetDifference!(less,  R1,  R2) setDifference(alias  less =  \"a < b\",  R1,  R2)(R1 r1,  R2 r2)","url":"/ddoc/phobos/std/algorithm/setops/setDifference.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.setops","name":"setIntersection","package":"phobos","parentType":"","signature":"SetIntersection!(less,  Rs) setIntersection(alias  less =  \"a < b\",  Rs...)(Rs ranges) if (Rs.length >=  2 &&  allSatisfy!(isInputRange,  Rs)  &&\n    !is(CommonType!(staticMap!(ElementType,  Rs))  ==  void))","url":"/ddoc/phobos/std/algorithm/setops/setIntersection.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.setops","name":"setSymmetricDifference","package":"phobos","parentType":"","signature":"SetSymmetricDifference!(less,  R1,  R2) setSymmetricDifference(alias  less =  \"a < b\",  R1,  R2)(R1 r1,  R2 r2)","url":"/ddoc/phobos/std/algorithm/setops/setSymmetricDifference.html"},{"doc":"Merges multiple sets. The input sets are passed as a range of ranges and each is assumed to be sorted by $(D less). Computation is done lazily, one...","kind":"struct","module":"std.algorithm.setops","name":"MultiwayMerge","package":"phobos","parentType":"","signature":"MultiwayMerge(alias  less,  RangeOfRanges)","url":"/ddoc/phobos/std/algorithm/setops.html#MultiwayMerge"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"compFront","package":"phobos","parentType":"MultiwayMerge","signature":"bool compFront(.ElementType!RangeOfRanges a,\n            .ElementType!RangeOfRanges b)","url":"/ddoc/phobos/std/algorithm/setops/MultiwayMerge.compFront.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"empty","package":"phobos","parentType":"MultiwayMerge","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/setops/MultiwayMerge.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"front","package":"phobos","parentType":"MultiwayMerge","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/setops/MultiwayMerge.front.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"popFront","package":"phobos","parentType":"MultiwayMerge","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/setops/MultiwayMerge.popFront.html"},{"doc":"","kind":"alias","module":"std.algorithm.setops","name":"nWayUnion","package":"phobos","parentType":"","signature":"nWayUnion = multiwayMerge","url":"/ddoc/phobos/std/algorithm/setops.html#nWayUnion"},{"doc":"","kind":"alias","module":"std.algorithm.setops","name":"NWayUnion","package":"phobos","parentType":"","signature":"NWayUnion = MultiwayMerge","url":"/ddoc/phobos/std/algorithm/setops.html#NWayUnion"},{"doc":"Lazily computes the difference of `r1` and `r2`. The two ranges are assumed to be sorted by `less`. The element types of the two ranges must have a...","kind":"struct","module":"std.algorithm.setops","name":"SetDifference","package":"phobos","parentType":"","signature":"SetDifference(alias  less =  \"a < b\",  R1,  R2) if (isInputRange!(R1)  &&  isInputRange!(R2))","url":"/ddoc/phobos/std/algorithm/setops.html#SetDifference"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"adjustPosition","package":"phobos","parentType":"SetDifference","signature":"void adjustPosition()","url":"/ddoc/phobos/std/algorithm/setops/SetDifference.adjustPosition.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"popFront","package":"phobos","parentType":"SetDifference","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/setops/SetDifference.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"front","package":"phobos","parentType":"SetDifference","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/setops/SetDifference.front.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"empty","package":"phobos","parentType":"SetDifference","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/setops/SetDifference.empty.html"},{"doc":"Lazily computes the intersection of two or more $(REF_ALTTEXT input ranges, isInputRange, std,range,primitives) `ranges`. The ranges are assumed to...","kind":"struct","module":"std.algorithm.setops","name":"SetIntersection","package":"phobos","parentType":"","signature":"SetIntersection(alias  less =  \"a < b\",  Rs...) if (Rs.length >=  2 &&  allSatisfy!(isInputRange,  Rs)  &&\n    !is(CommonType!(staticMap!(ElementType,  Rs))  ==  void))","url":"/ddoc/phobos/std/algorithm/setops.html#SetIntersection"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"adjustPosition","package":"phobos","parentType":"SetIntersection","signature":"void adjustPosition()","url":"/ddoc/phobos/std/algorithm/setops/SetIntersection.adjustPosition.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"empty","package":"phobos","parentType":"SetIntersection","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/setops/SetIntersection.empty.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"popFront","package":"phobos","parentType":"SetIntersection","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/setops/SetIntersection.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"front","package":"phobos","parentType":"SetIntersection","signature":"ElementType front()","url":"/ddoc/phobos/std/algorithm/setops/SetIntersection.front.html"},{"doc":"Lazily computes the symmetric difference of `r1` and `r2`, i.e. the elements that are present in exactly one of `r1` and $(D r2). The two ranges ar...","kind":"struct","module":"std.algorithm.setops","name":"SetSymmetricDifference","package":"phobos","parentType":"","signature":"SetSymmetricDifference(alias  less =  \"a < b\",  R1,  R2) if (isInputRange!(R1)  &&  isInputRange!(R2))","url":"/ddoc/phobos/std/algorithm/setops.html#SetSymmetricDifference"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"adjustPosition","package":"phobos","parentType":"SetSymmetricDifference","signature":"void adjustPosition()","url":"/ddoc/phobos/std/algorithm/setops/SetSymmetricDifference.adjustPosition.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"popFront","package":"phobos","parentType":"SetSymmetricDifference","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/setops/SetSymmetricDifference.popFront.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"front","package":"phobos","parentType":"SetSymmetricDifference","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/setops/SetSymmetricDifference.front.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"opSlice","package":"phobos","parentType":"SetSymmetricDifference","signature":"ref auto opSlice()","url":"/ddoc/phobos/std/algorithm/setops/SetSymmetricDifference.opSlice.html"},{"doc":"","kind":"method","module":"std.algorithm.setops","name":"empty","package":"phobos","parentType":"SetSymmetricDifference","signature":"bool empty()","url":"/ddoc/phobos/std/algorithm/setops/SetSymmetricDifference.empty.html"},{"doc":"This is a submodule of $(MREF std, algorithm). It contains generic sorting algorithms.","kind":"module","module":"std.algorithm.sorting","name":"std.algorithm.sorting","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/algorithm/sorting.html"},{"doc":"Sorts the random-access range `chain(lhs, rhs)` according to predicate `less`.","kind":"function","module":"std.algorithm.sorting","name":"completeSort","package":"phobos","parentType":"","signature":"void completeSort(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,\n         Lhs ,  Rhs)(SortedRange!(Lhs,  less)  lhs,  Rhs rhs) if (hasLength!(Rhs)  &&  hasSlicing!(Rhs)\n         &&  hasSwappableElements!Lhs &&  hasSwappableElements!Rhs)","url":"/ddoc/phobos/std/algorithm/sorting/completeSort.html"},{"doc":"Checks whether a $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) is sorted according to the comparison operation `less`. Perform...","kind":"function","module":"std.algorithm.sorting","name":"isSorted","package":"phobos","parentType":"","signature":"bool isSorted(alias  less =  \"a < b\",  Range)(Range r) if (isForwardRange!(Range))","url":"/ddoc/phobos/std/algorithm/sorting/isSorted.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.sorting","name":"isStrictlyMonotonic","package":"phobos","parentType":"","signature":"bool isStrictlyMonotonic(alias  less =  \"a < b\",  Range)(Range r) if (isForwardRange!Range)","url":"/ddoc/phobos/std/algorithm/sorting/isStrictlyMonotonic.html"},{"doc":"Like `isSorted`, returns `true` if the given `values` are ordered according to the comparison operation `less`. Unlike `isSorted`, takes values dir...","kind":"function","module":"std.algorithm.sorting","name":"ordered","package":"phobos","parentType":"","signature":"bool ordered(alias  less =  \"a < b\",  T...)(T values) if ((T.length ==  2 &&  is(typeof(binaryFun!less(values[1],  values[0])) :  bool))\n     ||\n    (T.length >  2 &&  is(typeof(ordered!less(values[0 ..  1 +  $  /  2])))\n         &&  is(typeof(ordered!less(values[$  /  2 ..  $]))))\n    )","url":"/ddoc/phobos/std/algorithm/sorting/ordered.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.sorting","name":"strictlyOrdered","package":"phobos","parentType":"","signature":"bool strictlyOrdered(alias  less =  \"a < b\",  T...)(T values) if (is(typeof(ordered!less(values))))","url":"/ddoc/phobos/std/algorithm/sorting/strictlyOrdered.html"},{"doc":"Partitions a range in two using the given `predicate`.","kind":"function","module":"std.algorithm.sorting","name":"partition","package":"phobos","parentType":"","signature":"Range partition(alias  predicate,  SwapStrategy ss,  Range)(Range r) if (ss ==  SwapStrategy.stable &&  isRandomAccessRange!(Range)  &&  hasLength!Range &&\n         hasSlicing!Range &&  hasSwappableElements!Range)","url":"/ddoc/phobos/std/algorithm/sorting/partition.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.sorting","name":"partition","package":"phobos","parentType":"","signature":"Range partition(alias  predicate,  SwapStrategy ss =  SwapStrategy.unstable,  Range)(Range r) if (ss !=  SwapStrategy.stable &&  isInputRange!Range &&  hasSwappableElements!Range)","url":"/ddoc/phobos/std/algorithm/sorting/partition.html"},{"doc":"Partitions `r` around `pivot` using comparison function `less`, algorithm akin to $(LINK2 https://en.wikipedia.org/wiki/Quicksort#Hoare_partition_s...","kind":"function","module":"std.algorithm.sorting","name":"pivotPartition","package":"phobos","parentType":"","signature":"size_t pivotPartition(alias  less =  \"a < b\",  Range)(Range r,  size_t pivot) if (isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&  hasAssignableElements!Range)","url":"/ddoc/phobos/std/algorithm/sorting/pivotPartition.html"},{"doc":"Params: pred = The predicate that the range should be partitioned by. r = The range to check. Returns: `true` if `r` is partitioned according to pr...","kind":"function","module":"std.algorithm.sorting","name":"isPartitioned","package":"phobos","parentType":"","signature":"bool isPartitioned(alias  pred,  Range)(Range r) if (isForwardRange!(Range))","url":"/ddoc/phobos/std/algorithm/sorting/isPartitioned.html"},{"doc":"Rearranges elements in `r` in three adjacent ranges and returns them.","kind":"function","module":"std.algorithm.sorting","name":"partition3","package":"phobos","parentType":"","signature":"auto partition3(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,  Range,  E)(Range r,  E pivot) if (ss ==  SwapStrategy.unstable &&  isRandomAccessRange!Range\n        &&  hasSwappableElements!Range &&  hasLength!Range &&  hasSlicing!Range\n        &&  is(typeof(binaryFun!less(r.front,  pivot))  ==  bool)\n         &&  is(typeof(binaryFun!less(pivot,  r.front))  ==  bool)\n         &&  is(typeof(binaryFun!less(r.front,  r.front))  ==  bool))","url":"/ddoc/phobos/std/algorithm/sorting/partition3.html"},{"doc":"Computes an index for `r` based on the comparison `less`.","kind":"function","module":"std.algorithm.sorting","name":"makeIndex","package":"phobos","parentType":"","signature":"SortedRange!(RangeIndex, (a,  b)  =>  binaryFun!less(* a,  * b)) makeIndex(\n     alias  less =  \"a < b\",\n     SwapStrategy ss =  SwapStrategy.unstable,\n     Range,\n     RangeIndex)(Range r,  RangeIndex index) if (isForwardRange!(Range)  &&  isRandomAccessRange!(RangeIndex)\n     &&  is(ElementType!(RangeIndex) :  ElementType!(Range) *)  &&  hasAssignableElements!RangeIndex)","url":"/ddoc/phobos/std/algorithm/sorting/makeIndex.html"},{"doc":"Ditto","kind":"function","module":"std.algorithm.sorting","name":"makeIndex","package":"phobos","parentType":"","signature":"void makeIndex(\n     alias  less =  \"a < b\",\n     SwapStrategy ss =  SwapStrategy.unstable,\n     Range,\n     RangeIndex)(Range r,  RangeIndex index) if (isRandomAccessRange!Range && !isInfinite!Range &&\n     isRandomAccessRange!RangeIndex && !isInfinite!RangeIndex &&\n     isIntegral!(ElementType!RangeIndex)  &&  hasAssignableElements!RangeIndex)","url":"/ddoc/phobos/std/algorithm/sorting/makeIndex.html"},{"doc":"Merge multiple sorted ranges `rs` with less-than predicate function `pred` into one single sorted output range containing the sorted union of the e...","kind":"function","module":"std.algorithm.sorting","name":"merge","package":"phobos","parentType":"","signature":"Merge!(less,  Rs) merge(alias  less =  \"a < b\",  Rs...)(Rs rs) if (Rs.length >=  2 &&\n     allSatisfy!(isInputRange,  Rs)  &&\n    !is(CommonType!(staticMap!(ElementType,  Rs))  ==  void))","url":"/ddoc/phobos/std/algorithm/sorting/merge.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"multiSortPredFun","package":"phobos","parentType":"","signature":"bool multiSortPredFun(Range,  funs...)(ElementType!Range a,  ElementType!Range b)","url":"/ddoc/phobos/std/algorithm/sorting/multiSortPredFun.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"multiSortImpl","package":"phobos","parentType":"","signature":"void multiSortImpl(Range,  SwapStrategy ss,  funs...)(Range r)","url":"/ddoc/phobos/std/algorithm/sorting/multiSortImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"getPivot","package":"phobos","parentType":"","signature":"size_t getPivot(alias  less,  Range)(Range r)","url":"/ddoc/phobos/std/algorithm/sorting/getPivot.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"shortSort","package":"phobos","parentType":"","signature":"void shortSort(alias  less,  Range)(Range r)","url":"/ddoc/phobos/std/algorithm/sorting/shortSort.html"},{"doc":"@trusted wrapper for moveEmplace","kind":"function","module":"std.algorithm.sorting","name":"trustedMoveEmplace","package":"phobos","parentType":"","signature":"void trustedMoveEmplace(T)(ref  T source,  ref  T target)","url":"/ddoc/phobos/std/algorithm/sorting/trustedMoveEmplace.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"sort5","package":"phobos","parentType":"","signature":"void sort5(alias  lt,  Range)(Range r)","url":"/ddoc/phobos/std/algorithm/sorting/sort5.html"},{"doc":"Sorts a random-access range according to the predicate `less`.","kind":"function","module":"std.algorithm.sorting","name":"sort","package":"phobos","parentType":"","signature":"SortedRange!(Range,  less) sort(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,  Range)(Range r)","url":"/ddoc/phobos/std/algorithm/sorting/sort.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"quickSortImpl","package":"phobos","parentType":"","signature":"void quickSortImpl(alias  less,  Range)(Range r,  size_t depth)","url":"/ddoc/phobos/std/algorithm/sorting/quickSortImpl.html"},{"doc":"Alternative sorting method that should be used when comparing keys involves an expensive computation.","kind":"function","module":"std.algorithm.sorting","name":"schwartzSort","package":"phobos","parentType":"","signature":"SortedRange!(R, ((a,  b)  =>  binaryFun!less(unaryFun!transform(a),\n                                           unaryFun!transform(b)))) schwartzSort(alias  transform,  alias  less =  \"a < b\",\n         SwapStrategy ss =  SwapStrategy.unstable,  R)(R r) if (isRandomAccessRange!R &&  hasLength!R &&  hasSwappableElements!R &&\n    !is(typeof(binaryFun!less)  ==  SwapStrategy))","url":"/ddoc/phobos/std/algorithm/sorting/schwartzSort.html"},{"doc":"ditto","kind":"function","module":"std.algorithm.sorting","name":"schwartzSort","package":"phobos","parentType":"","signature":"auto schwartzSort(alias  transform,  SwapStrategy ss,  R)(R r) if (isRandomAccessRange!R &&  hasLength!R &&  hasSwappableElements!R)","url":"/ddoc/phobos/std/algorithm/sorting/schwartzSort.html"},{"doc":"Reorders the random-access range `r` such that the range `r[0 .. mid]` is the same as if the entire `r` were sorted, and leaves the range `r[mid .....","kind":"function","module":"std.algorithm.sorting","name":"partialSort","package":"phobos","parentType":"","signature":"void partialSort(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,\n     Range)(Range r,  size_t n) if (isRandomAccessRange!(Range)  &&  hasLength!(Range)  &&  hasSlicing!(Range))","url":"/ddoc/phobos/std/algorithm/sorting/partialSort.html"},{"doc":"Stores the smallest elements of the two ranges in the left-hand range in sorted order.","kind":"function","module":"std.algorithm.sorting","name":"partialSort","package":"phobos","parentType":"","signature":"void partialSort(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,\n     Range1,  Range2)(Range1 r1,  Range2 r2) if (isRandomAccessRange!(Range1)  &&  hasLength!Range1 &&\n     isInputRange!Range2 &&  is(ElementType!Range1 ==  ElementType!Range2)  &&\n     hasLvalueElements!Range1 &&  hasLvalueElements!Range2)","url":"/ddoc/phobos/std/algorithm/sorting/partialSort.html"},{"doc":"Reorders the range `r` using $(REF_ALTTEXT swap, swap, std,algorithm,mutation) such that `r[nth]` refers to the element that would fall there if th...","kind":"function","module":"std.algorithm.sorting","name":"topN","package":"phobos","parentType":"","signature":"auto topN(alias  less =  \"a < b\",\n         SwapStrategy ss =  SwapStrategy.unstable,\n         Range)(Range r,  size_t nth) if (isRandomAccessRange!(Range)  &&  hasLength!Range &&\n     hasSlicing!Range &&  hasAssignableElements!Range)","url":"/ddoc/phobos/std/algorithm/sorting/topN.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"topNImpl","package":"phobos","parentType":"","signature":"void topNImpl(alias  less,  R)(R r,  size_t n,  ref  bool  useSampling)","url":"/ddoc/phobos/std/algorithm/sorting/topNImpl.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"topNPartition","package":"phobos","parentType":"","signature":"size_t topNPartition(alias  lp,  R)(R r,  size_t n,  bool  useSampling)","url":"/ddoc/phobos/std/algorithm/sorting/topNPartition.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"p3","package":"phobos","parentType":"","signature":"void p3(alias  less,  Range)(Range r,  size_t lo,  immutable  size_t hi)","url":"/ddoc/phobos/std/algorithm/sorting/p3.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"p4","package":"phobos","parentType":"","signature":"void p4(alias  less,  Flag!\"leanRight\" f,  Range)(Range r,  size_t lo,  immutable  size_t hi)","url":"/ddoc/phobos/std/algorithm/sorting/p4.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"topNPartitionOffMedian","package":"phobos","parentType":"","signature":"size_t topNPartitionOffMedian(alias  lp,  Flag!\"leanRight\" f,  R)(R r,  size_t n,  bool  useSampling)","url":"/ddoc/phobos/std/algorithm/sorting/topNPartitionOffMedian.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"expandPartition","package":"phobos","parentType":"","signature":"size_t expandPartition(alias  lp,  R)(R r,  size_t lo,  size_t pivot,  size_t hi)","url":"/ddoc/phobos/std/algorithm/sorting/expandPartition.html"},{"doc":"Stores the smallest elements of the two ranges in the left-hand range.","kind":"function","module":"std.algorithm.sorting","name":"topN","package":"phobos","parentType":"","signature":"auto topN(alias  less =  \"a < b\",\n         SwapStrategy ss =  SwapStrategy.unstable,\n         Range1,  Range2)(Range1 r1,  Range2 r2) if (isRandomAccessRange!(Range1)  &&  hasLength!Range1 &&\n     isInputRange!Range2 &&  is(ElementType!Range1 ==  ElementType!Range2)  &&\n     hasLvalueElements!Range1 &&  hasLvalueElements!Range2)","url":"/ddoc/phobos/std/algorithm/sorting/topN.html"},{"doc":"Copies the top `n` elements of the $(REF_ALTTEXT input range, isInputRange, std,range,primitives) `source` into the random-access range `target`, w...","kind":"function","module":"std.algorithm.sorting","name":"topNCopy","package":"phobos","parentType":"","signature":"TRange topNCopy(alias  less =  \"a < b\",  SRange,  TRange)(SRange source,  TRange target,  SortOutput sorted =  No.sortOutput) if (isInputRange!(SRange)  &&  isRandomAccessRange!(TRange)\n     &&  hasLength!(TRange)  &&  hasSlicing!(TRange))","url":"/ddoc/phobos/std/algorithm/sorting/topNCopy.html"},{"doc":"Given a range of elements, constructs an index of its top $(I n) elements (i.e., the first $(I n) elements if the range were sorted).","kind":"function","module":"std.algorithm.sorting","name":"topNIndex","package":"phobos","parentType":"","signature":"void topNIndex(alias  less =  \"a < b\",  SwapStrategy ss =  SwapStrategy.unstable,\n                Range,  RangeIndex)(Range r,  RangeIndex index,  SortOutput sorted =  No.sortOutput) if (isRandomAccessRange!Range &&\n     isRandomAccessRange!RangeIndex &&\n     hasAssignableElements!RangeIndex)","url":"/ddoc/phobos/std/algorithm/sorting/topNIndex.html"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"medianOf","package":"phobos","parentType":"","signature":"void medianOf(\n         alias  less =  \"a < b\",\n         Flag!\"leanRight\" flag =  No.leanRight,\n         Range,\n         Indexes...)(Range r,  Indexes i) if (isRandomAccessRange!Range &&  hasLength!Range &&\n     Indexes.length >=  2 &&  Indexes.length <=  5 &&\n     allSatisfy!(isUnsigned,  Indexes))","url":"/ddoc/phobos/std/algorithm/sorting/medianOf.html"},{"doc":"* Permutes `range` in-place to the next lexicographically greater * permutation. * * The predicate `less` defines the lexicographical ordering to b...","kind":"function","module":"std.algorithm.sorting","name":"nextPermutation","package":"phobos","parentType":"","signature":"bool nextPermutation(alias  less = \"a < b\",  BidirectionalRange)(BidirectionalRange range) if (isBidirectionalRange!BidirectionalRange &&\n     hasSwappableElements!BidirectionalRange)","url":"/ddoc/phobos/std/algorithm/sorting/nextPermutation.html"},{"doc":"* Permutes `range` in-place to the next lexicographically greater $(I even) * permutation. * * The predicate `less` defines the lexicographical ord...","kind":"function","module":"std.algorithm.sorting","name":"nextEvenPermutation","package":"phobos","parentType":"","signature":"bool nextEvenPermutation(alias  less = \"a < b\",  BidirectionalRange)(BidirectionalRange range) if (isBidirectionalRange!BidirectionalRange &&\n     hasSwappableElements!BidirectionalRange)","url":"/ddoc/phobos/std/algorithm/sorting/nextEvenPermutation.html"},{"doc":"Permutes `range` into the `perm` permutation.","kind":"function","module":"std.algorithm.sorting","name":"nthPermutation","package":"phobos","parentType":"","signature":"Range nthPermutation(Range)(auto  ref  Range range,  const  ulong  perm) if (isRandomAccessRange!Range &&  hasLength!Range)","url":"/ddoc/phobos/std/algorithm/sorting/nthPermutation.html"},{"doc":"Returns: `true` in case the permutation worked, `false` in case `perm` had more digits in the factorial number system than range had elements. This...","kind":"function","module":"std.algorithm.sorting","name":"nthPermutationImpl","package":"phobos","parentType":"","signature":"bool nthPermutationImpl(Range)(auto  ref  Range range,  ulong  perm) if (isRandomAccessRange!Range &&  hasLength!Range)","url":"/ddoc/phobos/std/algorithm/sorting/nthPermutationImpl.html"},{"doc":"Specifies whether the output of certain algorithm is desired in sorted format.","kind":"alias","module":"std.algorithm.sorting","name":"SortOutput","package":"phobos","parentType":"","signature":"SortOutput = Flag!\"sortOutput\"","url":"/ddoc/phobos/std/algorithm/sorting.html#SortOutput"},{"doc":"","kind":"struct","module":"std.algorithm.sorting","name":"Merge","package":"phobos","parentType":"","signature":"Merge(alias  less =  \"a < b\",  Rs...) if (Rs.length >=  2 &&\n     allSatisfy!(isInputRange,  Rs)  &&\n    !is(CommonType!(staticMap!(ElementType,  Rs))  ==  void))","url":"/ddoc/phobos/std/algorithm/sorting.html#Merge"},{"doc":"","kind":"method","module":"std.algorithm.sorting","name":"front","package":"phobos","parentType":"Merge","signature":"@property auto ref front()","url":"/ddoc/phobos/std/algorithm/sorting/Merge.front.html"},{"doc":"","kind":"method","module":"std.algorithm.sorting","name":"frontIndex","package":"phobos","parentType":"Merge","signature":"size_t frontIndex()","url":"/ddoc/phobos/std/algorithm/sorting/Merge.frontIndex.html"},{"doc":"","kind":"method","module":"std.algorithm.sorting","name":"popFront","package":"phobos","parentType":"Merge","signature":"void popFront()","url":"/ddoc/phobos/std/algorithm/sorting/Merge.popFront.html"},{"doc":"","kind":"template","module":"std.algorithm.sorting","name":"validPredicates","package":"phobos","parentType":"","signature":"validPredicates(E,  less...)","url":"/ddoc/phobos/std/algorithm/sorting.html#validPredicates"},{"doc":"Sorts a range by multiple keys.","kind":"template","module":"std.algorithm.sorting","name":"multiSort","package":"phobos","parentType":"","signature":"multiSort(less...)","url":"/ddoc/phobos/std/algorithm/sorting.html#multiSort"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"multiSort","package":"phobos","parentType":"","signature":"auto multiSort(Range)(Range r) if (validPredicates!(ElementType!Range,  less)  &&  hasSwappableElements!Range)","url":"/ddoc/phobos/std/algorithm/sorting.html#multiSort"},{"doc":"","kind":"template","module":"std.algorithm.sorting","name":"HeapOps","package":"phobos","parentType":"","signature":"HeapOps(alias  less,  Range)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"heapSort","package":"phobos","parentType":"","signature":"void heapSort()(Range r)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"buildHeap","package":"phobos","parentType":"","signature":"void buildHeap()(Range r)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"isHeap","package":"phobos","parentType":"","signature":"bool isHeap()(Range r)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"siftDown","package":"phobos","parentType":"","signature":"void siftDown()(Range r,  size_t parent,  immutable  size_t end)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"percolate","package":"phobos","parentType":"","signature":"void percolate()(Range r,  size_t parent,  immutable  size_t end)","url":"/ddoc/phobos/std/algorithm/sorting.html#HeapOps"},{"doc":"","kind":"template","module":"std.algorithm.sorting","name":"TimSortImpl","package":"phobos","parentType":"","signature":"TimSortImpl(alias  pred,  R)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"greater","package":"phobos","parentType":"","signature":"bool greater()(auto  ref  T a,  auto  ref  T b)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"greaterEqual","package":"phobos","parentType":"","signature":"bool greaterEqual()(auto  ref  T a,  auto  ref  T b)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"lessEqual","package":"phobos","parentType":"","signature":"bool lessEqual()(auto  ref  T a,  auto  ref  T b)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"sort","package":"phobos","parentType":"","signature":"void sort()(R range,  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"minRunLength","package":"phobos","parentType":"","signature":"size_t minRunLength()(size_t n)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"firstRun","package":"phobos","parentType":"","signature":"size_t firstRun()(R range)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"binaryInsertionSort","package":"phobos","parentType":"","signature":"void binaryInsertionSort()(R range,  size_t sortedLen =  1)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"mergeAt","package":"phobos","parentType":"","signature":"void mergeAt()(R range,  Slice[]  stack,  immutable  size_t at,  ref  size_t minGallop,  ref  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"merge","package":"phobos","parentType":"","signature":"void merge()(R range,  size_t mid,  ref  size_t minGallop,  ref  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"ensureCapacity","package":"phobos","parentType":"","signature":"T[] ensureCapacity()(size_t minCapacity,  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"mergeLo","package":"phobos","parentType":"","signature":"size_t mergeLo()(R range,  immutable  size_t mid,  size_t minGallop,  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"function","module":"std.algorithm.sorting","name":"mergeHi","package":"phobos","parentType":"","signature":"size_t mergeHi()(R range,  immutable  size_t mid,  size_t minGallop,  T[]  temp)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"Helper method that moves from[fIdx] into to[tIdx] if both are lvalues and uses a plain assignment if not (necessary for backwards compatibility)","kind":"function","module":"std.algorithm.sorting","name":"moveEntry","package":"phobos","parentType":"","signature":"void moveEntry(X,  Y)(ref  X from,  const  size_t fIdx,  ref  Y to,  const  size_t tIdx)","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"","kind":"struct","module":"std.algorithm.sorting","name":"Slice","package":"phobos","parentType":"","signature":"Slice","url":"/ddoc/phobos/std/algorithm/sorting.html#TimSortImpl"},{"doc":"Functions and types that manipulate built-in arrays and associative arrays.","kind":"module","module":"std.array","name":"std.array","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/array.html"},{"doc":"Allocates an array and initializes it with copies of the elements of range `r`.","kind":"function","module":"std.array","name":"array","package":"phobos","parentType":"","signature":"ForeachType!Range[] array(Range)(Range r) if (isIterable!Range && !isAutodecodableString!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/array/array.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"array","package":"phobos","parentType":"","signature":"ForeachType!(typeof((* Range).init))[] array(Range)(Range r) if (is(Range ==  U *,  U)  &&  isIterable!U && !isAutodecodableString!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/array/array.html"},{"doc":"Convert a narrow autodecoding string to an array type that fully supports random access.  This is handled as a special case and always returns an a...","kind":"function","module":"std.array","name":"array","package":"phobos","parentType":"","signature":"CopyTypeQualifiers!(ElementType!String, dchar)[] array(String)(scope  String str) if (isAutodecodableString!String)","url":"/ddoc/phobos/std/array/array.html"},{"doc":"Returns a newly allocated associative array from a range of key/value tuples or from a range of keys and a range of values.","kind":"function","module":"std.array","name":"assocArray","package":"phobos","parentType":"","signature":"auto assocArray(Range)(Range r) if (isInputRange!Range)","url":"/ddoc/phobos/std/array/assocArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"assocArray","package":"phobos","parentType":"","signature":"auto assocArray(Keys,  Values)(Keys keys,  Values values) if (isInputRange!Values &&  isInputRange!Keys)","url":"/ddoc/phobos/std/array/assocArray.html"},{"doc":"Construct a range iterating over an associative array by key/value tuples.","kind":"function","module":"std.array","name":"byPair","package":"phobos","parentType":"","signature":"auto byPair(AA)(AA aa) if (isAssociativeArray!AA)","url":"/ddoc/phobos/std/array/byPair.html"},{"doc":"Returns a new array of type `T` allocated on the garbage collected heap without initializing its elements. This can be a useful optimization if eve...","kind":"function","module":"std.array","name":"uninitializedArray","package":"phobos","parentType":"","signature":"auto uninitializedArray(T,  I...)(I sizes) if (isDynamicArray!T &&  allSatisfy!(isIntegral,  I)  &&  hasIndirections!(ElementEncodingType!T))","url":"/ddoc/phobos/std/array/uninitializedArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"uninitializedArray","package":"phobos","parentType":"","signature":"auto uninitializedArray(T,  I...)(I sizes) if (isDynamicArray!T &&  allSatisfy!(isIntegral,  I)  && !hasIndirections!(ElementEncodingType!T))","url":"/ddoc/phobos/std/array/uninitializedArray.html"},{"doc":"Returns a new array of type `T` allocated on the garbage collected heap.","kind":"function","module":"std.array","name":"minimallyInitializedArray","package":"phobos","parentType":"","signature":"auto minimallyInitializedArray(T,  I...)(I sizes) if (isDynamicArray!T &&  allSatisfy!(isIntegral,  I))","url":"/ddoc/phobos/std/array/minimallyInitializedArray.html"},{"doc":"","kind":"function","module":"std.array","name":"arrayAllocImpl","package":"phobos","parentType":"","signature":"auto arrayAllocImpl(bool  minimallyInitialized,  T,  I...)(I sizes)","url":"/ddoc/phobos/std/array/arrayAllocImpl.html"},{"doc":"Returns the overlapping portion, if any, of two arrays. Unlike `equal`, `overlap` only compares the pointers and lengths in the ranges, not the val...","kind":"function","module":"std.array","name":"overlap","package":"phobos","parentType":"","signature":"CommonType!(T[],  U[]) overlap(T,  U)(T[]  a,  U[]  b) if (is(typeof(a.ptr <  b.ptr)  ==  bool))","url":"/ddoc/phobos/std/array/overlap.html"},{"doc":"","kind":"function","module":"std.array","name":"copyBackwards","package":"phobos","parentType":"","signature":"void copyBackwards(T)(T[]  src,  T[]  dest)","url":"/ddoc/phobos/std/array/copyBackwards.html"},{"doc":"Inserts `stuff` (which must be an input range or any number of implicitly convertible items) in `array` at position `pos`.","kind":"function","module":"std.array","name":"insertInPlace","package":"phobos","parentType":"","signature":"void insertInPlace(T,  U...)(ref  T[]  array,  size_t pos,  U stuff) if (!isSomeString!(T[])\n     &&  allSatisfy!(isInputRangeOrConvertible!T,  U)  &&  U.length >  0)","url":"/ddoc/phobos/std/array/insertInPlace.html"},{"doc":"Ditto","kind":"function","module":"std.array","name":"insertInPlace","package":"phobos","parentType":"","signature":"void insertInPlace(T,  U...)(ref  T[]  array,  size_t pos,  U stuff) if (isSomeString!(T[])  &&  allSatisfy!(isCharOrStringOrDcharRange,  U))","url":"/ddoc/phobos/std/array/insertInPlace.html"},{"doc":"Returns whether the `front`s of `lhs` and `rhs` both refer to the same place in memory, making one of the arrays a slice of the other which starts ...","kind":"function","module":"std.array","name":"sameHead","package":"phobos","parentType":"","signature":"bool sameHead(T)(in  T[]  lhs,  in  T[]  rhs)","url":"/ddoc/phobos/std/array/sameHead.html"},{"doc":"Returns whether the `back`s of `lhs` and `rhs` both refer to the same place in memory, making one of the arrays a slice of the other which end at i...","kind":"function","module":"std.array","name":"sameTail","package":"phobos","parentType":"","signature":"bool sameTail(T)(in  T[]  lhs,  in  T[]  rhs)","url":"/ddoc/phobos/std/array/sameTail.html"},{"doc":"Params: s = an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) or a dynamic array n = number of times to repeat `s`","kind":"function","module":"std.array","name":"replicate","package":"phobos","parentType":"","signature":"ElementEncodingType!S[] replicate(S)(S s,  size_t n) if (isDynamicArray!S)","url":"/ddoc/phobos/std/array/replicate.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"replicate","package":"phobos","parentType":"","signature":"ElementType!S[] replicate(S)(S s,  size_t n) if (isInputRange!S && !isDynamicArray!S)","url":"/ddoc/phobos/std/array/replicate.html"},{"doc":"Eagerly splits `range` into an array, using `sep` as the delimiter.","kind":"function","module":"std.array","name":"split","package":"phobos","parentType":"","signature":"S[] split(S)(S s) if (isSomeString!S)","url":"/ddoc/phobos/std/array/split.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"split","package":"phobos","parentType":"","signature":"auto split(Range,  Separator)(Range range,  Separator sep) if (isForwardRange!Range && (\n     is(typeof(ElementType!Range.init ==  Separator.init))  ||\n     is(typeof(ElementType!Range.init ==  ElementType!Separator.init))  &&  isForwardRange!Separator\n    ))","url":"/ddoc/phobos/std/array/split.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"split","package":"phobos","parentType":"","signature":"auto split(alias  isTerminator,  Range)(Range range) if (isForwardRange!Range &&  is(typeof(unaryFun!isTerminator(range.front))))","url":"/ddoc/phobos/std/array/split.html"},{"doc":"Eagerly concatenates all of the ranges in `ror` together (with the GC) into one array using `sep` as the separator if present.","kind":"function","module":"std.array","name":"join","package":"phobos","parentType":"","signature":"ElementEncodingType!(ElementType!RoR)[] join(RoR,  R)(RoR ror,  R sep) if (isInputRange!RoR &&\n     isInputRange!(Unqual!(ElementType!RoR))  &&\n     isInputRange!R &&\n    (is(immutable  ElementType!(ElementType!RoR)  ==  immutable  ElementType!R)  ||\n     (isSomeChar!(ElementType!(ElementType!RoR))  &&  isSomeChar!(ElementType!R))\n    ))","url":"/ddoc/phobos/std/array/join.html"},{"doc":"Ditto","kind":"function","module":"std.array","name":"join","package":"phobos","parentType":"","signature":"ElementEncodingType!(ElementType!RoR)[] join(RoR,  E)(RoR ror,  scope  E sep) if (isInputRange!RoR &&\n     isInputRange!(Unqual!(ElementType!RoR))  &&\n    ((is(E :  ElementType!(ElementType!RoR)))  ||\n     (!autodecodeStrings &&  isSomeChar!(ElementType!(ElementType!RoR))  &&\n       isSomeChar!E)))","url":"/ddoc/phobos/std/array/join.html"},{"doc":"Ditto","kind":"function","module":"std.array","name":"join","package":"phobos","parentType":"","signature":"ElementEncodingType!(ElementType!RoR)[] join(RoR)(RoR ror) if (isInputRange!RoR &&\n     isInputRange!(Unqual!(ElementType!RoR)))","url":"/ddoc/phobos/std/array/join.html"},{"doc":"Replace occurrences of `from` with `to` in `subject` in a new array.","kind":"function","module":"std.array","name":"replace","package":"phobos","parentType":"","signature":"E[] replace(E,  R1,  R2)(E[]  subject,  R1 from,  R2 to) if ((isForwardRange!R1 &&  isForwardRange!R2 && (hasLength!R2 ||  isSomeString!R2))  ||\n     is(Unqual!E :  Unqual!R1))","url":"/ddoc/phobos/std/array/replace.html"},{"doc":"Replace occurrences of `from` with `to` in `subject` in a new array. `changed` counts how many replacements took place.","kind":"function","module":"std.array","name":"replace","package":"phobos","parentType":"","signature":"E[] replace(E,  R1,  R2)(E[]  subject,  R1 from,  R2 to,  ref  size_t changed) if ((isForwardRange!R1 &&  isForwardRange!R2 && (hasLength!R2 ||  isSomeString!R2))  ||\n     is(Unqual!E :  Unqual!R1))","url":"/ddoc/phobos/std/array/replace.html"},{"doc":"Replace occurrences of `from` with `to` in `subject` and output the result into `sink`.","kind":"function","module":"std.array","name":"replaceInto","package":"phobos","parentType":"","signature":"void replaceInto(E,  Sink,  R1,  R2)(Sink sink,  E[]  subject,  R1 from,  R2 to) if (isOutputRange!(Sink,  E)  &&\n    ((isForwardRange!R1 &&  isForwardRange!R2 && (hasLength!R2 ||  isSomeString!R2))  ||\n     is(Unqual!E :  Unqual!R1)))","url":"/ddoc/phobos/std/array/replaceInto.html"},{"doc":"Replace occurrences of `from` with `to` in `subject` and output the result into `sink`. `changed` counts how many replacements took place.","kind":"function","module":"std.array","name":"replaceInto","package":"phobos","parentType":"","signature":"void replaceInto(E,  Sink,  R1,  R2)(Sink sink,  E[]  subject,  R1 from,  R2 to,  ref  size_t changed) if (isOutputRange!(Sink,  E)  &&\n    ((isForwardRange!R1 &&  isForwardRange!R2 && (hasLength!R2 ||  isSomeString!R2))  ||\n     is(Unqual!E :  Unqual!R1)))","url":"/ddoc/phobos/std/array/replaceInto.html"},{"doc":"Replaces elements from `array` with indices ranging from `from` (inclusive) to `to` (exclusive) with the range `stuff`.","kind":"function","module":"std.array","name":"replace","package":"phobos","parentType":"","signature":"T[] replace(T,  Range)(T[]  subject,  size_t from,  size_t to,  Range stuff) if (isInputRange!Range &&\n    (is(ElementType!Range :  T)  ||\n     isSomeString!(T[])  &&  is(ElementType!Range :  dchar)))","url":"/ddoc/phobos/std/array/replace.html"},{"doc":"Replaces elements from `array` with indices ranging from `from` (inclusive) to `to` (exclusive) with the range `stuff`. Expands or shrinks the arra...","kind":"function","module":"std.array","name":"replaceInPlace","package":"phobos","parentType":"","signature":"void replaceInPlace(T,  Range)(ref  T[]  array,  size_t from,  size_t to,  Range stuff) if (is(typeof(replace(array,  from,  to,  stuff))))","url":"/ddoc/phobos/std/array/replaceInPlace.html"},{"doc":"Replaces the first occurrence of `from` with `to` in `subject`.","kind":"function","module":"std.array","name":"replaceFirst","package":"phobos","parentType":"","signature":"E[] replaceFirst(E,  R1,  R2)(E[]  subject,  R1 from,  R2 to) if (isDynamicArray!(E[])  &&\n     isForwardRange!R1 &&  is(typeof(appender!(E[])().put(from[0 ..  1])))  &&\n     isForwardRange!R2 &&  is(typeof(appender!(E[])().put(to[0 ..  1]))))","url":"/ddoc/phobos/std/array/replaceFirst.html"},{"doc":"Replaces the last occurrence of `from` with `to` in `subject`.","kind":"function","module":"std.array","name":"replaceLast","package":"phobos","parentType":"","signature":"E[] replaceLast(E,  R1,  R2)(E[]  subject,  R1 from ,  R2 to) if (isDynamicArray!(E[])  &&\n     isForwardRange!R1 &&  is(typeof(appender!(E[])().put(from[0 ..  1])))  &&\n     isForwardRange!R2 &&  is(typeof(appender!(E[])().put(to[0 ..  1]))))","url":"/ddoc/phobos/std/array/replaceLast.html"},{"doc":"Creates a new array such that the items in `slice` are replaced with the items in `replacement`. `slice` and `replacement` do not need to be the sa...","kind":"function","module":"std.array","name":"replaceSlice","package":"phobos","parentType":"","signature":"inout(T)[] replaceSlice(T)(inout(T)[]  s,  in  T[]  slice,  in  T[]  replacement)","url":"/ddoc/phobos/std/array/replaceSlice.html"},{"doc":"","kind":"function","module":"std.array","name":"appenderNewCapacity","package":"phobos","parentType":"","signature":"size_t appenderNewCapacity(size_t TSizeOf)(size_t curLen,  size_t reqLen)","url":"/ddoc/phobos/std/array/appenderNewCapacity.html"},{"doc":"Convenience function that returns an $(LREF Appender) instance, optionally initialized with `array`.","kind":"function","module":"std.array","name":"appender","package":"phobos","parentType":"","signature":"Appender!A appender(A)() if (isDynamicArray!A)","url":"/ddoc/phobos/std/array/appender.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"appender","package":"phobos","parentType":"","signature":"Appender!(E[]) appender(A :  E[],  E)(auto  ref  A array)","url":"/ddoc/phobos/std/array/appender.html"},{"doc":"Convenience function that returns a $(LREF RefAppender) instance initialized with `arrayPtr`. Don't use null for the array pointer, use the other v...","kind":"function","module":"std.array","name":"appender","package":"phobos","parentType":"","signature":"RefAppender!(E[]) appender(P :  E[] *,  E)(P arrayPtr)","url":"/ddoc/phobos/std/array/appender.html"},{"doc":"Constructs a static array from a dynamic array whose length is known at compile-time. The element type can be inferred or specified explicitly:","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"T[n] staticArray(T,  size_t n)(auto  ref  T[n]  a)","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"U[n] staticArray(U,  T,  size_t n)(auto  ref  T[n]  a) if (!is(T ==  U)  &&  is(T :  U))","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"Constructs a static array from a range. When `a.length` is not known at compile time, the number of elements must be given as a template argument (...","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(size_t n,  T)(scope  T a) if (isInputRange!T)","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(size_t n,  T)(scope  T a,  out  size_t rangeLength) if (isInputRange!T)","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(Un :  U[n],  U,  size_t n,  T)(scope  T a) if (isInputRange!T &&  is(ElementType!T :  U))","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(Un :  U[n],  U,  size_t n,  T)(scope  T a,  out  size_t rangeLength) if (isInputRange!T &&  is(ElementType!T :  U))","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(alias  a)() if (isInputRange!(typeof(a)))","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"ditto","kind":"function","module":"std.array","name":"staticArray","package":"phobos","parentType":"","signature":"auto staticArray(U,  alias  a)() if (isInputRange!(typeof(a)))","url":"/ddoc/phobos/std/array/staticArray.html"},{"doc":"Implements an output range that appends data to an array. This is recommended over $(D array ~= data) when appending many elements because it is mo...","kind":"struct","module":"std.array","name":"Appender","package":"phobos","parentType":"","signature":"Appender(A) if (isDynamicArray!A)","url":"/ddoc/phobos/std/array.html#Appender"},{"doc":"Reserve at least newCapacity elements for appending.  Note that more elements may be reserved than requested. If `newCapacity <= capacity`, then no...","kind":"method","module":"std.array","name":"reserve","package":"phobos","parentType":"Appender","signature":"void reserve(size_t newCapacity)","url":"/ddoc/phobos/std/array/Appender.reserve.html"},{"doc":"Returns: the capacity of the array (the maximum number of elements the managed array can accommodate before triggering a reallocation). If any appe...","kind":"method","module":"std.array","name":"capacity","package":"phobos","parentType":"Appender","signature":"size_t capacity()","url":"/ddoc/phobos/std/array/Appender.capacity.html"},{"doc":"Returns: The number of elements appended.","kind":"method","module":"std.array","name":"length","package":"phobos","parentType":"Appender","signature":"size_t length()","url":"/ddoc/phobos/std/array/Appender.length.html"},{"doc":"Use opSlice() from now on. Returns: The managed array.","kind":"method","module":"std.array","name":"data","package":"phobos","parentType":"Appender","signature":"inout(T)[] data()","url":"/ddoc/phobos/std/array/Appender.data.html"},{"doc":"Returns: The managed array.","kind":"method","module":"std.array","name":"opSlice","package":"phobos","parentType":"Appender","signature":"inout(T)[] opSlice()","url":"/ddoc/phobos/std/array/Appender.opSlice.html"},{"doc":"","kind":"method","module":"std.array","name":"ensureAddable","package":"phobos","parentType":"Appender","signature":"void ensureAddable(size_t nelems)","url":"/ddoc/phobos/std/array/Appender.ensureAddable.html"},{"doc":"Appends `item` to the managed array. Performs encoding for `char` types if `A` is a differently typed `char` array.","kind":"method","module":"std.array","name":"put","package":"phobos","parentType":"Appender","signature":"void put(U)(U item) if (canPutItem!U)","url":"/ddoc/phobos/std/array/Appender.put.html"},{"doc":"","kind":"method","module":"std.array","name":"put","package":"phobos","parentType":"Appender","signature":"void put(Range)(Range items) if (canPutConstRange!Range)","url":"/ddoc/phobos/std/array/Appender.put.html"},{"doc":"Appends an entire range to the managed array. Performs encoding for `char` elements if `A` is a differently typed `char` array.","kind":"method","module":"std.array","name":"put","package":"phobos","parentType":"Appender","signature":"void put(Range)(Range items) if (canPutRange!Range)","url":"/ddoc/phobos/std/array/Appender.put.html"},{"doc":"Gives a string in the form of `Appender!(A)(data)`.","kind":"method","module":"std.array","name":"toString","package":"phobos","parentType":"Appender","signature":"string toString()()","url":"/ddoc/phobos/std/array/Appender.toString.html"},{"doc":"A version of $(LREF Appender) that can update an array in-place. It forwards all calls to an underlying appender implementation. Any calls made to ...","kind":"struct","module":"std.array","name":"RefAppender","package":"phobos","parentType":"","signature":"RefAppender(A) if (isDynamicArray!A)","url":"/ddoc/phobos/std/array.html#RefAppender"},{"doc":"Wraps remaining `Appender` methods such as $(LREF put). Params: fn = Method name to call. args = Arguments to pass to the method.","kind":"method","module":"std.array","name":"opDispatch","package":"phobos","parentType":"RefAppender","signature":"void opDispatch(string fn,  Args...)(Args args) if (__traits(compiles, (Appender!A a)  =>  mixin(\"a.\" ~  fn ~  \"(args)\")))","url":"/ddoc/phobos/std/array/RefAppender.opDispatch.html"},{"doc":"Appends `rhs` to the managed array. Params: rhs = Element or range.","kind":"method","module":"std.array","name":"opOpAssign","package":"phobos","parentType":"RefAppender","signature":"void opOpAssign(string op :  \"~\",  U)(U rhs) if (__traits(compiles, (Appender!A a) {  a.put(rhs);  }))","url":"/ddoc/phobos/std/array/RefAppender.opOpAssign.html"},{"doc":"Returns the capacity of the array (the maximum number of elements the managed array can accommodate before triggering a reallocation).  If any appe...","kind":"method","module":"std.array","name":"capacity","package":"phobos","parentType":"RefAppender","signature":"size_t capacity()","url":"/ddoc/phobos/std/array/RefAppender.capacity.html"},{"doc":"Returns: The number of elements appended.","kind":"method","module":"std.array","name":"length","package":"phobos","parentType":"RefAppender","signature":"size_t length()","url":"/ddoc/phobos/std/array/RefAppender.length.html"},{"doc":"","kind":"method","module":"std.array","name":"data","package":"phobos","parentType":"RefAppender","signature":"inout(T)[] data()","url":"/ddoc/phobos/std/array/RefAppender.data.html"},{"doc":"Returns: the managed array.","kind":"method","module":"std.array","name":"opSlice","package":"phobos","parentType":"RefAppender","signature":"inout(ElementEncodingType!A)[] opSlice()","url":"/ddoc/phobos/std/array/RefAppender.opSlice.html"},{"doc":"","kind":"template","module":"std.array","name":"blockAttribute","package":"phobos","parentType":"","signature":"blockAttribute(T)","url":"/ddoc/phobos/std/array.html#blockAttribute"},{"doc":"","kind":"template","module":"std.array","name":"nDimensions","package":"phobos","parentType":"","signature":"nDimensions(T)","url":"/ddoc/phobos/std/array.html#nDimensions"},{"doc":"","kind":"template","module":"std.array","name":"isInputRangeWithLengthOrConvertible","package":"phobos","parentType":"","signature":"isInputRangeWithLengthOrConvertible(E)","url":"/ddoc/phobos/std/array.html#isInputRangeWithLengthOrConvertible"},{"doc":"","kind":"template","module":"std.array","name":"isCharOrStringOrDcharRange","package":"phobos","parentType":"","signature":"isCharOrStringOrDcharRange(T)","url":"/ddoc/phobos/std/array.html#isCharOrStringOrDcharRange"},{"doc":"","kind":"template","module":"std.array","name":"isInputRangeOrConvertible","package":"phobos","parentType":"","signature":"isInputRangeOrConvertible(E)","url":"/ddoc/phobos/std/array.html#isInputRangeOrConvertible"},{"doc":"","kind":"variable","module":"std.array","name":"hasCheapIteration","package":"phobos","parentType":"","signature":"bool hasCheapIteration","url":"/ddoc/phobos/std/array.html#hasCheapIteration"},{"doc":"Functions which operate on ASCII characters.","kind":"module","module":"std.ascii","name":"std.ascii","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/ascii.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a letter or a number (0 .. 9, a .. z, A .. Z).","kind":"function","module":"std.ascii","name":"isAlphaNum","package":"phobos","parentType":"","signature":"bool isAlphaNum(dchar  c)","url":"/ddoc/phobos/std/ascii/isAlphaNum.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is an ASCII letter (A .. Z, a .. z).","kind":"function","module":"std.ascii","name":"isAlpha","package":"phobos","parentType":"","signature":"bool isAlpha(dchar  c)","url":"/ddoc/phobos/std/ascii/isAlpha.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a lowercase ASCII letter (a .. z).","kind":"function","module":"std.ascii","name":"isLower","package":"phobos","parentType":"","signature":"bool isLower(dchar  c)","url":"/ddoc/phobos/std/ascii/isLower.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is an uppercase ASCII letter (A .. Z).","kind":"function","module":"std.ascii","name":"isUpper","package":"phobos","parentType":"","signature":"bool isUpper(dchar  c)","url":"/ddoc/phobos/std/ascii/isUpper.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a digit (0 .. 9).","kind":"function","module":"std.ascii","name":"isDigit","package":"phobos","parentType":"","signature":"bool isDigit(dchar  c)","url":"/ddoc/phobos/std/ascii/isDigit.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a digit in base 8 (0 .. 7).","kind":"function","module":"std.ascii","name":"isOctalDigit","package":"phobos","parentType":"","signature":"bool isOctalDigit(dchar  c)","url":"/ddoc/phobos/std/ascii/isOctalDigit.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a digit in base 16 (0 .. 9, A .. F, a .. f).","kind":"function","module":"std.ascii","name":"isHexDigit","package":"phobos","parentType":"","signature":"bool isHexDigit(dchar  c)","url":"/ddoc/phobos/std/ascii/isHexDigit.html"},{"doc":"Params: c = The character to test. Returns: Whether or not `c` is a whitespace character. That includes the space, tab, vertical tab, form feed, ca...","kind":"function","module":"std.ascii","name":"isWhite","package":"phobos","parentType":"","signature":"bool isWhite(dchar  c)","url":"/ddoc/phobos/std/ascii/isWhite.html"},{"doc":"Params: c = The character to test. Returns: Whether `c` is a control character.","kind":"function","module":"std.ascii","name":"isControl","package":"phobos","parentType":"","signature":"bool isControl(dchar  c)","url":"/ddoc/phobos/std/ascii/isControl.html"},{"doc":"Params: c = The character to test. Returns: Whether or not `c` is a punctuation character. That includes all ASCII characters which are not control...","kind":"function","module":"std.ascii","name":"isPunctuation","package":"phobos","parentType":"","signature":"bool isPunctuation(dchar  c)","url":"/ddoc/phobos/std/ascii/isPunctuation.html"},{"doc":"Params: c = The character to test. Returns: Whether or not `c` is a printable character other than the space character.","kind":"function","module":"std.ascii","name":"isGraphical","package":"phobos","parentType":"","signature":"bool isGraphical(dchar  c)","url":"/ddoc/phobos/std/ascii/isGraphical.html"},{"doc":"Params: c = The character to test. Returns: Whether or not `c` is a printable character - including the space character.","kind":"function","module":"std.ascii","name":"isPrintable","package":"phobos","parentType":"","signature":"bool isPrintable(dchar  c)","url":"/ddoc/phobos/std/ascii/isPrintable.html"},{"doc":"Params: c = The character to test. Returns: Whether or not `c` is in the ASCII character set - i.e. in the range 0 .. 0x7F.","kind":"function","module":"std.ascii","name":"isASCII","package":"phobos","parentType":"","signature":"bool isASCII(dchar  c)","url":"/ddoc/phobos/std/ascii/isASCII.html"},{"doc":"Converts an ASCII letter to lowercase.","kind":"function","module":"std.ascii","name":"toLower","package":"phobos","parentType":"","signature":"auto toLower(C)(C c) if (is(C :  dchar))","url":"/ddoc/phobos/std/ascii/toLower.html"},{"doc":"Converts an ASCII letter to uppercase.","kind":"function","module":"std.ascii","name":"toUpper","package":"phobos","parentType":"","signature":"auto toUpper(C)(C c) if (is(C :  dchar))","url":"/ddoc/phobos/std/ascii/toUpper.html"},{"doc":"Letter case specifier.","kind":"enum","module":"std.ascii","name":"LetterCase","package":"phobos","parentType":"","signature":"LetterCase : bool","url":"/ddoc/phobos/std/ascii.html#LetterCase"},{"doc":"Upper case letters","kind":"enum_member","module":"std.ascii","name":"upper","package":"phobos","parentType":"","signature":"upper = ","url":"/ddoc/phobos/std/ascii.html#LetterCase"},{"doc":"Lower case letters","kind":"enum_member","module":"std.ascii","name":"lower","package":"phobos","parentType":"","signature":"lower = ","url":"/ddoc/phobos/std/ascii.html#LetterCase"},{"doc":"All control characters in the ASCII table ($(HTTPS www.asciitable.com, source)).","kind":"enum","module":"std.ascii","name":"ControlChar","package":"phobos","parentType":"","signature":"ControlChar : char","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Null","kind":"enum_member","module":"std.ascii","name":"nul","package":"phobos","parentType":"","signature":"nul = '\\x00'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Start of heading","kind":"enum_member","module":"std.ascii","name":"soh","package":"phobos","parentType":"","signature":"soh = '\\x01'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Start of text","kind":"enum_member","module":"std.ascii","name":"stx","package":"phobos","parentType":"","signature":"stx = '\\x02'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"End of text","kind":"enum_member","module":"std.ascii","name":"etx","package":"phobos","parentType":"","signature":"etx = '\\x03'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"End of transmission","kind":"enum_member","module":"std.ascii","name":"eot","package":"phobos","parentType":"","signature":"eot = '\\x04'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Enquiry","kind":"enum_member","module":"std.ascii","name":"enq","package":"phobos","parentType":"","signature":"enq = '\\x05'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Acknowledge","kind":"enum_member","module":"std.ascii","name":"ack","package":"phobos","parentType":"","signature":"ack = '\\x06'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Bell","kind":"enum_member","module":"std.ascii","name":"bel","package":"phobos","parentType":"","signature":"bel = '\\x07'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Backspace","kind":"enum_member","module":"std.ascii","name":"bs","package":"phobos","parentType":"","signature":"bs = '\\x08'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Horizontal tab","kind":"enum_member","module":"std.ascii","name":"tab","package":"phobos","parentType":"","signature":"tab = '\\x09'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"NL line feed, new line","kind":"enum_member","module":"std.ascii","name":"lf","package":"phobos","parentType":"","signature":"lf = '\\x0A'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Vertical tab","kind":"enum_member","module":"std.ascii","name":"vt","package":"phobos","parentType":"","signature":"vt = '\\x0B'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"NP form feed, new page","kind":"enum_member","module":"std.ascii","name":"ff","package":"phobos","parentType":"","signature":"ff = '\\x0C'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Carriage return","kind":"enum_member","module":"std.ascii","name":"cr","package":"phobos","parentType":"","signature":"cr = '\\x0D'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Shift out","kind":"enum_member","module":"std.ascii","name":"so","package":"phobos","parentType":"","signature":"so = '\\x0E'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Shift in","kind":"enum_member","module":"std.ascii","name":"si","package":"phobos","parentType":"","signature":"si = '\\x0F'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Data link escape","kind":"enum_member","module":"std.ascii","name":"dle","package":"phobos","parentType":"","signature":"dle = '\\x10'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Device control 1","kind":"enum_member","module":"std.ascii","name":"dc1","package":"phobos","parentType":"","signature":"dc1 = '\\x11'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Device control 2","kind":"enum_member","module":"std.ascii","name":"dc2","package":"phobos","parentType":"","signature":"dc2 = '\\x12'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Device control 3","kind":"enum_member","module":"std.ascii","name":"dc3","package":"phobos","parentType":"","signature":"dc3 = '\\x13'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Device control 4","kind":"enum_member","module":"std.ascii","name":"dc4","package":"phobos","parentType":"","signature":"dc4 = '\\x14'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Negative acknowledge","kind":"enum_member","module":"std.ascii","name":"nak","package":"phobos","parentType":"","signature":"nak = '\\x15'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Synchronous idle","kind":"enum_member","module":"std.ascii","name":"syn","package":"phobos","parentType":"","signature":"syn = '\\x16'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"End of transmission block","kind":"enum_member","module":"std.ascii","name":"etb","package":"phobos","parentType":"","signature":"etb = '\\x17'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Cancel","kind":"enum_member","module":"std.ascii","name":"can","package":"phobos","parentType":"","signature":"can = '\\x18'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"End of medium","kind":"enum_member","module":"std.ascii","name":"em","package":"phobos","parentType":"","signature":"em = '\\x19'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Substitute","kind":"enum_member","module":"std.ascii","name":"sub","package":"phobos","parentType":"","signature":"sub = '\\x1A'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Escape","kind":"enum_member","module":"std.ascii","name":"esc","package":"phobos","parentType":"","signature":"esc = '\\x1B'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"File separator","kind":"enum_member","module":"std.ascii","name":"fs","package":"phobos","parentType":"","signature":"fs = '\\x1C'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Group separator","kind":"enum_member","module":"std.ascii","name":"gs","package":"phobos","parentType":"","signature":"gs = '\\x1D'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Record separator","kind":"enum_member","module":"std.ascii","name":"rs","package":"phobos","parentType":"","signature":"rs = '\\x1E'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Unit separator","kind":"enum_member","module":"std.ascii","name":"us","package":"phobos","parentType":"","signature":"us = '\\x1F'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"Delete","kind":"enum_member","module":"std.ascii","name":"del","package":"phobos","parentType":"","signature":"del = '\\x7F'","url":"/ddoc/phobos/std/ascii.html#ControlChar"},{"doc":"0 .. 9A .. Fa .. f","kind":"variable","module":"std.ascii","name":"fullHexDigits","package":"phobos","parentType":"","signature":"fullHexDigits","url":"/ddoc/phobos/std/ascii.html#fullHexDigits"},{"doc":"0 .. 9A .. F","kind":"variable","module":"std.ascii","name":"hexDigits","package":"phobos","parentType":"","signature":"hexDigits","url":"/ddoc/phobos/std/ascii.html#hexDigits"},{"doc":"0 .. 9a .. f","kind":"variable","module":"std.ascii","name":"lowerHexDigits","package":"phobos","parentType":"","signature":"lowerHexDigits","url":"/ddoc/phobos/std/ascii.html#lowerHexDigits"},{"doc":"0 .. 9","kind":"variable","module":"std.ascii","name":"digits","package":"phobos","parentType":"","signature":"digits","url":"/ddoc/phobos/std/ascii.html#digits"},{"doc":"0 .. 7","kind":"variable","module":"std.ascii","name":"octalDigits","package":"phobos","parentType":"","signature":"octalDigits","url":"/ddoc/phobos/std/ascii.html#octalDigits"},{"doc":"A .. Za .. z","kind":"variable","module":"std.ascii","name":"letters","package":"phobos","parentType":"","signature":"letters","url":"/ddoc/phobos/std/ascii.html#letters"},{"doc":"A .. Z","kind":"variable","module":"std.ascii","name":"uppercase","package":"phobos","parentType":"","signature":"uppercase","url":"/ddoc/phobos/std/ascii.html#uppercase"},{"doc":"a .. z","kind":"variable","module":"std.ascii","name":"lowercase","package":"phobos","parentType":"","signature":"lowercase","url":"/ddoc/phobos/std/ascii.html#lowercase"},{"doc":"ASCII _whitespace","kind":"variable","module":"std.ascii","name":"whitespace","package":"phobos","parentType":"","signature":"whitespace","url":"/ddoc/phobos/std/ascii.html#whitespace"},{"doc":"Support for Base64 encoding and decoding.","kind":"module","module":"std.base64","name":"std.base64","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/base64.html"},{"doc":"Implementation of standard _Base64 encoding.","kind":"alias","module":"std.base64","name":"Base64","package":"phobos","parentType":"","signature":"Base64 = Base64Impl!('+',  '/')","url":"/ddoc/phobos/std/base64.html#Base64"},{"doc":"Variation of Base64 encoding that is safe for use in URLs and filenames.","kind":"alias","module":"std.base64","name":"Base64URL","package":"phobos","parentType":"","signature":"Base64URL = Base64Impl!('-',  '_')","url":"/ddoc/phobos/std/base64.html#Base64URL"},{"doc":"Unpadded variation of Base64 encoding that is safe for use in URLs and filenames, as used in RFCs 4648 and 7515 (JWS/JWT/JWE).","kind":"alias","module":"std.base64","name":"Base64URLNoPadding","package":"phobos","parentType":"","signature":"Base64URLNoPadding = Base64Impl!('-',  '_',  Base64.NoPadding)","url":"/ddoc/phobos/std/base64.html#Base64URLNoPadding"},{"doc":"Exception thrown upon encountering Base64 encoding or decoding errors.","kind":"class","module":"std.base64","name":"Base64Exception","package":"phobos","parentType":"","signature":"Base64Exception : Exception","url":"/ddoc/phobos/std/base64.html#Base64Exception"},{"doc":"Template for implementing Base64 encoding and decoding.","kind":"template","module":"std.base64","name":"Base64Impl","package":"phobos","parentType":"","signature":"Base64Impl(char  Map62th,  char  Map63th,  char  Padding =  '=')","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Calculates the length needed to store the encoded string corresponding to an input of the given length.","kind":"function","module":"std.base64","name":"encodeLength","package":"phobos","parentType":"","signature":"size_t encodeLength(in  size_t sourceLength)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Encode $(D_PARAM source) into a `char[]` buffer using Base64 encoding.","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"char[] encode(R1,  R2)(const  scope  R1 source,  return  scope  R2 buffer) if (isArray!R1 &&  is(ElementType!R1 :  ubyte)  &&  is(R2 ==  char[]))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"char[] encode(R1,  R2)(R1 source,  R2 buffer) if (!isArray!R1 &&  isInputRange!R1 &&\n         is(ElementType!R1 :  ubyte)  &&  hasLength!R1 &&\n         is(R2 ==  char[]))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Encodes $(D_PARAM source) into an $(REF_ALTTEXT output range, isOutputRange, std,range,primitives) using Base64 encoding.","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(E,  R)(scope  const(E)[]  source,  auto  ref  R range) if (is(E :  ubyte)  &&  isOutputRange!(R,  char)  && !is(R ==  char[]))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(R1,  R2)(R1 source,  auto  ref  R2 range) if (!isArray!R1 &&  isInputRange!R1 &&  is(ElementType!R1 :  ubyte)  &&\n         hasLength!R1 && !is(R2 ==  char[])  &&  isOutputRange!(R2,  char))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Encodes $(D_PARAM source) to newly-allocated buffer.","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"char[] encode(Range)(Range source) if (isArray!Range &&  is(ElementType!Range :  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"encode","package":"phobos","parentType":"","signature":"char[] encode(Range)(Range source) if (!isArray!Range &&  isInputRange!Range &&\n         is(ElementType!Range :  ubyte)  &&  hasLength!Range)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Construct an `Encoder` that iterates over the Base64 encoding of the given $(REF_ALTTEXT input range, isInputRange, std,range,primitives).","kind":"function","module":"std.base64","name":"encoder","package":"phobos","parentType":"","signature":"Encoder!(Range) encoder(Range)(Range range) if (isInputRange!Range)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Given a Base64 encoded string, calculates the length of the decoded string.","kind":"function","module":"std.base64","name":"decodeLength","package":"phobos","parentType":"","signature":"size_t decodeLength(in  size_t sourceLength)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"","kind":"function","module":"std.base64","name":"realDecodeLength","package":"phobos","parentType":"","signature":"size_t realDecodeLength(R)(R source)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Decodes $(D_PARAM source) into the given buffer.","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"ubyte[] decode(R1,  R2)(in  R1 source,  return  scope  R2 buffer) if (isArray!R1 &&  is(ElementType!R1 :  dchar)  &&\n         is(R2 ==  ubyte[])  &&  isOutputRange!(R2,  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"ubyte[] decode(R1,  R2)(R1 source,  R2 buffer) if (!isArray!R1 &&  isInputRange!R1 &&\n         is(ElementType!R1 :  dchar)  &&  hasLength!R1 &&\n         is(R2 ==  ubyte[])  &&  isOutputRange!(R2,  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Decodes $(D_PARAM source) into a given $(REF_ALTTEXT output range, isOutputRange, std,range,primitives).","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"size_t decode(R1,  R2)(in  R1 source,  auto  ref  R2 range) if (isArray!R1 &&  is(ElementType!R1 :  dchar)  &&\n        !is(R2 ==  ubyte[])  &&  isOutputRange!(R2,  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"size_t decode(R1,  R2)(R1 source,  auto  ref  R2 range) if (!isArray!R1 &&  isInputRange!R1 &&  is(ElementType!R1 :  dchar)  &&\n         hasLength!R1 && !is(R2 ==  ubyte[])  &&  isOutputRange!(R2,  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Decodes $(D_PARAM source) into newly-allocated buffer.","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"ubyte[] decode(Range)(Range source) if (isArray!Range &&  is(ElementType!Range :  dchar))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"decode","package":"phobos","parentType":"","signature":"ubyte[] decode(Range)(Range source) if (!isArray!Range &&  isInputRange!Range &&\n         is(ElementType!Range :  dchar)  &&  hasLength!Range)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Construct a `Decoder` that iterates over the decoding of the given Base64 encoded data.","kind":"function","module":"std.base64","name":"decoder","package":"phobos","parentType":"","signature":"Decoder!(Range) decoder(Range)(Range range) if (isInputRange!Range)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"ditto","kind":"function","module":"std.base64","name":"decoder","package":"phobos","parentType":"","signature":"Decoder!(const(ubyte)[]) decoder()(const(char)[]  range)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"","kind":"function","module":"std.base64","name":"decodeChar","package":"phobos","parentType":"","signature":"int decodeChar()(char  chr)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"","kind":"function","module":"std.base64","name":"decodeChar","package":"phobos","parentType":"","signature":"int decodeChar()(dchar  chr)","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"An $(REF_ALTTEXT input range, isInputRange, std,range,primitives) that iterates over the respective Base64 encodings of a range of data items.","kind":"struct","module":"std.base64","name":"Encoder","package":"phobos","parentType":"","signature":"Encoder(Range) if (isInputRange!Range && (is(ElementType!Range :  const(ubyte)[])  ||\n         is(ElementType!Range :  const(char)[])))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"An $(REF_ALTTEXT input range, isInputRange, std,range,primitives) that iterates over the encoded bytes of the given source data.","kind":"struct","module":"std.base64","name":"Encoder","package":"phobos","parentType":"","signature":"Encoder(Range) if (isInputRange!Range &&  is(ElementType!Range :  ubyte))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"An $(REF_ALTTEXT input range, isInputRange, std,range,primitives) that iterates over the decoded data of a range of Base64 encodings.","kind":"struct","module":"std.base64","name":"Decoder","package":"phobos","parentType":"","signature":"Decoder(Range) if (isInputRange!Range && (is(ElementType!Range :  const(char)[])  ||\n         is(ElementType!Range :  const(ubyte)[])))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"An $(REF_ALTTEXT input range, isInputRange, std,range,primitives) that iterates over the bytes of data decoded from a Base64 encoded string.","kind":"struct","module":"std.base64","name":"Decoder","package":"phobos","parentType":"","signature":"Decoder(Range) if (isInputRange!Range &&  is(ElementType!Range :  char))","url":"/ddoc/phobos/std/base64.html#Base64Impl"},{"doc":"Arbitrary-precision ('bignum') arithmetic.","kind":"module","module":"std.bigint","name":"std.bigint","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/bigint.html"},{"doc":"Params: x = The `BigInt` to convert to a decimal `string`.","kind":"function","module":"std.bigint","name":"toDecimalString","package":"phobos","parentType":"","signature":"string toDecimalString(const(BigInt)  x)","url":"/ddoc/phobos/std/bigint/toDecimalString.html"},{"doc":"Params: x = The `BigInt` to convert to a hexadecimal `string`.","kind":"function","module":"std.bigint","name":"toHex","package":"phobos","parentType":"","signature":"string toHex(const(BigInt)  x)","url":"/ddoc/phobos/std/bigint/toHex.html"},{"doc":"Returns the absolute value of x converted to the corresponding unsigned type.","kind":"function","module":"std.bigint","name":"absUnsign","package":"phobos","parentType":"","signature":"Unsigned!T absUnsign(T)(T x) if (isIntegral!T)","url":"/ddoc/phobos/std/bigint/absUnsign.html"},{"doc":"Finds the quotient and remainder for the given dividend and divisor in one operation.","kind":"function","module":"std.bigint","name":"divMod","package":"phobos","parentType":"","signature":"void divMod(const  BigInt dividend,  const  BigInt divisor,  out  BigInt quotient,  out  BigInt remainder)","url":"/ddoc/phobos/std/bigint/divMod.html"},{"doc":"Fast power modulus calculation for $(LREF BigInt) operands. Params: base = the $(LREF BigInt) is basic operands. exponent = the $(LREF BigInt) is p...","kind":"function","module":"std.bigint","name":"powmod","package":"phobos","parentType":"","signature":"BigInt powmod(BigInt base,  BigInt exponent,  BigInt modulus)","url":"/ddoc/phobos/std/bigint/powmod.html"},{"doc":"A struct representing an arbitrary precision integer.","kind":"struct","module":"std.bigint","name":"BigInt","package":"phobos","parentType":"","signature":"BigInt","url":"/ddoc/phobos/std/bigint.html#BigInt"},{"doc":"Assignment from built-in integer types.","kind":"method","module":"std.bigint","name":"opAssign","package":"phobos","parentType":"BigInt","signature":"BigInt opAssign(T)(T x) if (isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opAssign.html"},{"doc":"Assignment from another BigInt.","kind":"method","module":"std.bigint","name":"opAssign","package":"phobos","parentType":"BigInt","signature":"BigInt opAssign(T: BigInt)(T x)","url":"/ddoc/phobos/std/bigint/BigInt.opAssign.html"},{"doc":"Implements assignment operators from built-in integers of the form `BigInt op= integer`.","kind":"method","module":"std.bigint","name":"opOpAssign","package":"phobos","parentType":"BigInt","signature":"BigInt opOpAssign(string op,  T)(T y) if ((op == \"+\" ||  op == \"-\" ||  op == \"*\" ||  op == \"/\" ||  op == \"%\"\n        ||  op == \">>\" ||  op == \"<<\" ||  op == \"^^\" ||  op == \"|\" ||  op == \"&\" ||  op == \"^\")  &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opOpAssign.html"},{"doc":"Implements assignment operators of the form `BigInt op= BigInt`.","kind":"method","module":"std.bigint","name":"opOpAssign","package":"phobos","parentType":"BigInt","signature":"BigInt opOpAssign(string op,  T)(T y) if ((op == \"+\" ||  op ==  \"-\" ||  op == \"*\" ||  op == \"|\" ||  op == \"&\" ||  op == \"^\" ||  op == \"/\" ||  op == \"%\")  &&  is (T:  BigInt))","url":"/ddoc/phobos/std/bigint/BigInt.opOpAssign.html"},{"doc":"Implements binary operators between `BigInt`s.","kind":"method","module":"std.bigint","name":"opBinary","package":"phobos","parentType":"BigInt","signature":"BigInt opBinary(string op,  T)(T y) if ((op == \"+\" ||  op ==  \"*\" ||  op == \"-\" ||  op == \"|\" ||  op == \"&\" ||  op == \"^\" ||\n         op == \"/\" ||  op == \"%\")  &&  is (T:  BigInt))","url":"/ddoc/phobos/std/bigint/BigInt.opBinary.html"},{"doc":"Implements binary operators between `BigInt`'s and built-in integers.","kind":"method","module":"std.bigint","name":"opBinary","package":"phobos","parentType":"BigInt","signature":"BigInt opBinary(string op,  T)(T y) if ((op == \"+\" ||  op ==  \"*\" ||  op == \"-\" ||  op == \"/\" ||  op == \"|\" ||  op == \"&\" ||\n         op == \"^\" ||  op == \">>\" ||  op == \"<<\" ||  op == \"^^\")\n         &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opBinary.html"},{"doc":"Implements a narrowing remainder operation with built-in integer types.","kind":"method","module":"std.bigint","name":"opBinary","package":"phobos","parentType":"BigInt","signature":"auto opBinary(string op,  T)(T y) if (op ==  \"%\" &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opBinary.html"},{"doc":"Implements operators with built-in integers on the left-hand side and `BigInt` on the right-hand side.","kind":"method","module":"std.bigint","name":"opBinaryRight","package":"phobos","parentType":"BigInt","signature":"BigInt opBinaryRight(string op,  T)(T y) if ((op == \"+\" ||  op == \"*\" ||  op == \"|\" ||  op == \"&\" ||  op == \"^\")  &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opBinaryRight","package":"phobos","parentType":"BigInt","signature":"BigInt opBinaryRight(string op,  T)(T y) if (op ==  \"-\" &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opBinaryRight","package":"phobos","parentType":"BigInt","signature":"T opBinaryRight(string op,  T)(T x) if ((op == \"%\" ||  op == \"/\")  &&  isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opBinaryRight.html"},{"doc":"Implements `BigInt` unary operators.","kind":"method","module":"std.bigint","name":"opUnary","package":"phobos","parentType":"BigInt","signature":"BigInt opUnary(string op)() if (op == \"+\" ||  op == \"-\" ||  op == \"~\")","url":"/ddoc/phobos/std/bigint/BigInt.opUnary.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opUnary","package":"phobos","parentType":"BigInt","signature":"BigInt opUnary(string op)() if (op == \"++\" ||  op == \"--\")","url":"/ddoc/phobos/std/bigint/BigInt.opUnary.html"},{"doc":"Implements `BigInt` equality test with other `BigInt`'s and built-in numeric types.","kind":"method","module":"std.bigint","name":"opEquals","package":"phobos","parentType":"BigInt","signature":"bool opEquals()(auto  ref  const  BigInt y)","url":"/ddoc/phobos/std/bigint/BigInt.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opEquals","package":"phobos","parentType":"BigInt","signature":"bool opEquals(T)(const  T y) if (isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opEquals","package":"phobos","parentType":"BigInt","signature":"bool opEquals(T)(const  T y) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/bigint/BigInt.opEquals.html"},{"doc":"Implements casting to `bool`.","kind":"method","module":"std.bigint","name":"opCast","package":"phobos","parentType":"BigInt","signature":"T opCast(T: bool)()","url":"/ddoc/phobos/std/bigint/BigInt.opCast.html"},{"doc":"Implements casting to integer types.","kind":"method","module":"std.bigint","name":"opCast","package":"phobos","parentType":"BigInt","signature":"T opCast(T: ulong)()","url":"/ddoc/phobos/std/bigint/BigInt.opCast.html"},{"doc":"Implements casting to floating point types.","kind":"method","module":"std.bigint","name":"opCast","package":"phobos","parentType":"BigInt","signature":"T opCast(T)() if (isFloatingPoint!T)","url":"/ddoc/phobos/std/bigint/BigInt.opCast.html"},{"doc":"","kind":"method","module":"std.bigint","name":"toFloat","package":"phobos","parentType":"BigInt","signature":"T toFloat(T,  string roundingMode)() if (__traits(isFloating,  T)  && (roundingMode ==  \"nearest\" ||  roundingMode ==  \"truncate\"))","url":"/ddoc/phobos/std/bigint/BigInt.toFloat.html"},{"doc":"Implements casting to/from qualified `BigInt`'s.","kind":"method","module":"std.bigint","name":"opCast","package":"phobos","parentType":"BigInt","signature":"T opCast(T)() if (is(immutable  T ==  immutable  BigInt))","url":"/ddoc/phobos/std/bigint/BigInt.opCast.html"},{"doc":"Implements 3-way comparisons of `BigInt` with `BigInt` or `BigInt` with built-in numeric types.","kind":"method","module":"std.bigint","name":"opCmp","package":"phobos","parentType":"BigInt","signature":"int opCmp(ref  const  BigInt y)","url":"/ddoc/phobos/std/bigint/BigInt.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opCmp","package":"phobos","parentType":"BigInt","signature":"int opCmp(T)(const  T y) if (isIntegral!T)","url":"/ddoc/phobos/std/bigint/BigInt.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opCmp","package":"phobos","parentType":"BigInt","signature":"int opCmp(T)(const  T y) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/bigint/BigInt.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"opCmp","package":"phobos","parentType":"BigInt","signature":"int opCmp(T: BigInt)(const  T y)","url":"/ddoc/phobos/std/bigint/BigInt.opCmp.html"},{"doc":"Returns: The value of this `BigInt` as a `long`, or `long.max`/`long.min` if outside the representable range.","kind":"method","module":"std.bigint","name":"toLong","package":"phobos","parentType":"BigInt","signature":"long toLong()","url":"/ddoc/phobos/std/bigint/BigInt.toLong.html"},{"doc":"Returns: The value of this `BigInt` as an `int`, or `int.max`/`int.min` if outside the representable range.","kind":"method","module":"std.bigint","name":"toInt","package":"phobos","parentType":"BigInt","signature":"int toInt()","url":"/ddoc/phobos/std/bigint/BigInt.toInt.html"},{"doc":"Number of significant `uint`s which are used in storing this number. The absolute value of this `BigInt` is always &lt; 2$(SUPERSCRIPT 32*uintLength)","kind":"method","module":"std.bigint","name":"uintLength","package":"phobos","parentType":"BigInt","signature":"size_t uintLength()","url":"/ddoc/phobos/std/bigint/BigInt.uintLength.html"},{"doc":"Number of significant `ulong`s which are used in storing this number. The absolute value of this `BigInt` is always &lt; 2$(SUPERSCRIPT 64*ulongLen...","kind":"method","module":"std.bigint","name":"ulongLength","package":"phobos","parentType":"BigInt","signature":"size_t ulongLength()","url":"/ddoc/phobos/std/bigint/BigInt.ulongLength.html"},{"doc":"Convert the `BigInt` to `string`, passing it to the given sink.","kind":"method","module":"std.bigint","name":"toString","package":"phobos","parentType":"BigInt","signature":"void toString(Writer)(scope  ref  Writer sink,  string formatString)","url":"/ddoc/phobos/std/bigint/BigInt.toString.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"toString","package":"phobos","parentType":"BigInt","signature":"void toString(Writer)(scope  ref  Writer sink,  scope  const  ref  FormatSpec!char  f)","url":"/ddoc/phobos/std/bigint/BigInt.toString.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"toString","package":"phobos","parentType":"BigInt","signature":"void toString(scope  void  delegate(scope  const(char)[])  sink,  string formatString)","url":"/ddoc/phobos/std/bigint/BigInt.toString.html"},{"doc":"ditto","kind":"method","module":"std.bigint","name":"toString","package":"phobos","parentType":"BigInt","signature":"void toString(scope  void  delegate(scope  const(char)[])  sink,  scope  const  ref  FormatSpec!char  f)","url":"/ddoc/phobos/std/bigint/BigInt.toString.html"},{"doc":"Returns: A unique hash of the `BigInt`'s value suitable for use in a hash table.","kind":"method","module":"std.bigint","name":"toHash","package":"phobos","parentType":"BigInt","signature":"size_t toHash()","url":"/ddoc/phobos/std/bigint/BigInt.toHash.html"},{"doc":"Gets the nth number in the underlying representation that makes up the whole `BigInt`.","kind":"method","module":"std.bigint","name":"getDigit","package":"phobos","parentType":"BigInt","signature":"T getDigit(T =  ulong)(size_t n) if (is(T ==  ulong)  ||  is(T ==  uint))","url":"/ddoc/phobos/std/bigint/BigInt.getDigit.html"},{"doc":"","kind":"method","module":"std.bigint","name":"negate","package":"phobos","parentType":"BigInt","signature":"void negate()","url":"/ddoc/phobos/std/bigint/BigInt.negate.html"},{"doc":"","kind":"method","module":"std.bigint","name":"isZero","package":"phobos","parentType":"BigInt","signature":"bool isZero()","url":"/ddoc/phobos/std/bigint/BigInt.isZero.html"},{"doc":"","kind":"method","module":"std.bigint","name":"checkDivByZero","package":"phobos","parentType":"BigInt","signature":"void checkDivByZero()","url":"/ddoc/phobos/std/bigint/BigInt.checkDivByZero.html"},{"doc":"Bit-level manipulation facilities.","kind":"module","module":"std.bitmanip","name":"std.bitmanip","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/bitmanip.html"},{"doc":"","kind":"function","module":"std.bitmanip","name":"myToString","package":"phobos","parentType":"","signature":"string myToString(ulong  n)","url":"/ddoc/phobos/std/bitmanip/myToString.html"},{"doc":"","kind":"function","module":"std.bitmanip","name":"getBitsForAlign","package":"phobos","parentType":"","signature":"ulong getBitsForAlign(ulong  a)","url":"/ddoc/phobos/std/bitmanip/getBitsForAlign.html"},{"doc":"Allows creating `bitfields` inside `structs`, `classes` and `unions`.","kind":"function","module":"std.bitmanip","name":"bitfields","package":"phobos","parentType":"","signature":"string bitfields(T...)()","url":"/ddoc/phobos/std/bitmanip/bitfields.html"},{"doc":"Swaps the endianness of the given integral value or character.","kind":"function","module":"std.bitmanip","name":"swapEndian","package":"phobos","parentType":"","signature":"T swapEndian(T)(const  T val) if (isIntegral!T ||  isSomeChar!T ||  isBoolean!T)","url":"/ddoc/phobos/std/bitmanip/swapEndian.html"},{"doc":"Converts the given value from the native endianness to big endian and returns it as a `ubyte[n]` where `n` is the size of the given type.","kind":"function","module":"std.bitmanip","name":"nativeToBigEndian","package":"phobos","parentType":"","signature":"auto nativeToBigEndian(T)(const  T val) if (canSwapEndianness!T)","url":"/ddoc/phobos/std/bitmanip/nativeToBigEndian.html"},{"doc":"Converts the given value from big endian to the native endianness and returns it. The value is given as a `ubyte[n]` where `n` is the size of the t...","kind":"function","module":"std.bitmanip","name":"bigEndianToNative","package":"phobos","parentType":"","signature":"T bigEndianToNative(T,  size_t n)(ubyte[n]  val) if (canSwapEndianness!T &&  n ==  T.sizeof)","url":"/ddoc/phobos/std/bitmanip/bigEndianToNative.html"},{"doc":"Converts the given value from the native endianness to little endian and returns it as a `ubyte[n]` where `n` is the size of the given type.","kind":"function","module":"std.bitmanip","name":"nativeToLittleEndian","package":"phobos","parentType":"","signature":"auto nativeToLittleEndian(T)(const  T val) if (canSwapEndianness!T)","url":"/ddoc/phobos/std/bitmanip/nativeToLittleEndian.html"},{"doc":"Converts the given value from little endian to the native endianness and returns it. The value is given as a `ubyte[n]` where `n` is the size of th...","kind":"function","module":"std.bitmanip","name":"littleEndianToNative","package":"phobos","parentType":"","signature":"T littleEndianToNative(T,  size_t n)(ubyte[n]  val) if (canSwapEndianness!T &&  n ==  T.sizeof)","url":"/ddoc/phobos/std/bitmanip/littleEndianToNative.html"},{"doc":"Takes a range of `ubyte`s and converts the first `T.sizeof` bytes to `T`. The value returned is converted from the given endianness to the native e...","kind":"function","module":"std.bitmanip","name":"peek","package":"phobos","parentType":"","signature":"T peek(T,  Endian endianness =  Endian.bigEndian,  R)(R range) if (canSwapEndianness!T &&\n     isForwardRange!R &&\n     is(ElementType!R :  const  ubyte))","url":"/ddoc/phobos/std/bitmanip/peek.html"},{"doc":"Ditto","kind":"function","module":"std.bitmanip","name":"peek","package":"phobos","parentType":"","signature":"T peek(T,  Endian endianness =  Endian.bigEndian,  R)(R range,  size_t index) if (canSwapEndianness!T &&\n     isForwardRange!R &&\n     hasSlicing!R &&\n     is(ElementType!R :  const  ubyte))","url":"/ddoc/phobos/std/bitmanip/peek.html"},{"doc":"Ditto","kind":"function","module":"std.bitmanip","name":"peek","package":"phobos","parentType":"","signature":"T peek(T,  Endian endianness =  Endian.bigEndian,  R)(R range,  size_t *  index) if (canSwapEndianness!T &&\n     isForwardRange!R &&\n     hasSlicing!R &&\n     is(ElementType!R :  const  ubyte))","url":"/ddoc/phobos/std/bitmanip/peek.html"},{"doc":"Takes a range of `ubyte`s and converts the first `T.sizeof` bytes to `T`. The value returned is converted from the given endianness to the native e...","kind":"function","module":"std.bitmanip","name":"read","package":"phobos","parentType":"","signature":"T read(T,  Endian endianness =  Endian.bigEndian,  R)(ref  R range) if (canSwapEndianness!T &&  isInputRange!R &&  is(ElementType!R :  const  ubyte))","url":"/ddoc/phobos/std/bitmanip/read.html"},{"doc":"Takes an integral value, converts it to the given endianness, and writes it to the given range of `ubyte`s as a sequence of `T.sizeof` `ubyte`s sta...","kind":"function","module":"std.bitmanip","name":"write","package":"phobos","parentType":"","signature":"void write(T,  Endian endianness =  Endian.bigEndian,  R)(R range,  const  T value,  size_t index) if (canSwapEndianness!T &&\n     isForwardRange!R &&\n     hasSlicing!R &&\n     is(ElementType!R :  ubyte))","url":"/ddoc/phobos/std/bitmanip/write.html"},{"doc":"Ditto","kind":"function","module":"std.bitmanip","name":"write","package":"phobos","parentType":"","signature":"void write(T,  Endian endianness =  Endian.bigEndian,  R)(R range,  const  T value,  size_t *  index) if (canSwapEndianness!T &&\n     isForwardRange!R &&\n     hasSlicing!R &&\n     is(ElementType!R :  ubyte))","url":"/ddoc/phobos/std/bitmanip/write.html"},{"doc":"Takes an integral value, converts it to the given endianness, and appends it to the given range of `ubyte`s (using `put`) as a sequence of `T.sizeo...","kind":"function","module":"std.bitmanip","name":"append","package":"phobos","parentType":"","signature":"void append(T,  Endian endianness =  Endian.bigEndian,  R)(R range,  const  T value) if (canSwapEndianness!T &&  isOutputRange!(R,  ubyte))","url":"/ddoc/phobos/std/bitmanip/append.html"},{"doc":"Counts the number of set bits in the binary representation of `value`. For signed integers, the sign bit is included in the count.","kind":"function","module":"std.bitmanip","name":"countBitsSet","package":"phobos","parentType":"","signature":"uint countBitsSet(T)(const  T value) if (isIntegral!T)","url":"/ddoc/phobos/std/bitmanip/countBitsSet.html"},{"doc":"Range that iterates the indices of the set bits in `value`. Index 0 corresponds to the least significant bit. For signed integers, the highest inde...","kind":"function","module":"std.bitmanip","name":"bitsSet","package":"phobos","parentType":"","signature":"auto bitsSet(T)(const  T value) if (isIntegral!T)","url":"/ddoc/phobos/std/bitmanip/bitsSet.html"},{"doc":"","kind":"struct","module":"std.bitmanip","name":"FloatingPointRepresentation","package":"phobos","parentType":"","signature":"FloatingPointRepresentation(T)","url":"/ddoc/phobos/std/bitmanip.html#FloatingPointRepresentation"},{"doc":"Allows manipulating the fraction, exponent, and sign parts of a `float` separately. The definition is:","kind":"alias","module":"std.bitmanip","name":"FloatRep","package":"phobos","parentType":"","signature":"FloatRep = FloatingPointRepresentation!float","url":"/ddoc/phobos/std/bitmanip.html#FloatRep"},{"doc":"Allows manipulating the fraction, exponent, and sign parts of a `double` separately. The definition is:","kind":"alias","module":"std.bitmanip","name":"DoubleRep","package":"phobos","parentType":"","signature":"DoubleRep = FloatingPointRepresentation!double","url":"/ddoc/phobos/std/bitmanip.html#DoubleRep"},{"doc":"A dynamic array of bits. Each bit in a `BitArray` can be manipulated individually or by the standard bitwise operators `&`, `|`, `^`, `~`, `>>`, `<...","kind":"struct","module":"std.bitmanip","name":"BitArray","package":"phobos","parentType":"","signature":"BitArray","url":"/ddoc/phobos/std/bitmanip.html#BitArray"},{"doc":"","kind":"method","module":"std.bitmanip","name":"fullWords","package":"phobos","parentType":"BitArray","signature":"size_t fullWords()","url":"/ddoc/phobos/std/bitmanip/BitArray.fullWords.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"endBits","package":"phobos","parentType":"BitArray","signature":"size_t endBits()","url":"/ddoc/phobos/std/bitmanip/BitArray.endBits.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"endMask","package":"phobos","parentType":"BitArray","signature":"size_t endMask()","url":"/ddoc/phobos/std/bitmanip/BitArray.endMask.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"lenToDim","package":"phobos","parentType":"BitArray","signature":"size_t lenToDim(size_t len)","url":"/ddoc/phobos/std/bitmanip/BitArray.lenToDim.html"},{"doc":"Returns: Dimension i.e. the number of native words backing this `BitArray`.","kind":"method","module":"std.bitmanip","name":"dim","package":"phobos","parentType":"BitArray","signature":"size_t dim()","url":"/ddoc/phobos/std/bitmanip/BitArray.dim.html"},{"doc":"Returns: Number of bits in the `BitArray`.","kind":"method","module":"std.bitmanip","name":"length","package":"phobos","parentType":"BitArray","signature":"size_t length()","url":"/ddoc/phobos/std/bitmanip/BitArray.length.html"},{"doc":"Sets the amount of bits in the `BitArray`. $(RED Warning: increasing length may overwrite bits in the final word of the current underlying data reg...","kind":"method","module":"std.bitmanip","name":"length","package":"phobos","parentType":"BitArray","signature":"size_t length(size_t newlen)","url":"/ddoc/phobos/std/bitmanip/BitArray.length.html"},{"doc":"Gets the `i`'th bit in the `BitArray`.","kind":"method","module":"std.bitmanip","name":"opIndex","package":"phobos","parentType":"BitArray","signature":"bool opIndex(size_t i)","url":"/ddoc/phobos/std/bitmanip/BitArray.opIndex.html"},{"doc":"Sets the `i`'th bit in the `BitArray`.","kind":"method","module":"std.bitmanip","name":"opIndexAssign","package":"phobos","parentType":"BitArray","signature":"bool opIndexAssign(bool  b,  size_t i)","url":"/ddoc/phobos/std/bitmanip/BitArray.opIndexAssign.html"},{"doc":"Sets all the values in the `BitArray` to the value specified by `val`.","kind":"method","module":"std.bitmanip","name":"opSliceAssign","package":"phobos","parentType":"BitArray","signature":"void opSliceAssign(bool  val)","url":"/ddoc/phobos/std/bitmanip/BitArray.opSliceAssign.html"},{"doc":"Sets the bits of a slice of `BitArray` starting at index `start` and ends at index $(D end - 1) with the values specified by `val`.","kind":"method","module":"std.bitmanip","name":"opSliceAssign","package":"phobos","parentType":"BitArray","signature":"void opSliceAssign(bool  val,  size_t start,  size_t end)","url":"/ddoc/phobos/std/bitmanip/BitArray.opSliceAssign.html"},{"doc":"Flips all the bits in the `BitArray`","kind":"method","module":"std.bitmanip","name":"flip","package":"phobos","parentType":"BitArray","signature":"void flip()","url":"/ddoc/phobos/std/bitmanip/BitArray.flip.html"},{"doc":"Flips a single bit, specified by `pos`","kind":"method","module":"std.bitmanip","name":"flip","package":"phobos","parentType":"BitArray","signature":"void flip(size_t pos)","url":"/ddoc/phobos/std/bitmanip/BitArray.flip.html"},{"doc":"Counts all the set bits in the `BitArray`","kind":"method","module":"std.bitmanip","name":"count","package":"phobos","parentType":"BitArray","signature":"size_t count()","url":"/ddoc/phobos/std/bitmanip/BitArray.count.html"},{"doc":"Duplicates the `BitArray` and its contents.","kind":"method","module":"std.bitmanip","name":"dup","package":"phobos","parentType":"BitArray","signature":"BitArray dup()","url":"/ddoc/phobos/std/bitmanip/BitArray.dup.html"},{"doc":"Support for `foreach` loops for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opApply","package":"phobos","parentType":"BitArray","signature":"int opApply(scope  int  delegate(ref  bool)  dg)","url":"/ddoc/phobos/std/bitmanip/BitArray.opApply.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opApply","package":"phobos","parentType":"BitArray","signature":"int opApply(scope  int  delegate(bool)  dg)","url":"/ddoc/phobos/std/bitmanip/BitArray.opApply.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opApply","package":"phobos","parentType":"BitArray","signature":"int opApply(scope  int  delegate(size_t,  ref  bool)  dg)","url":"/ddoc/phobos/std/bitmanip/BitArray.opApply.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opApply","package":"phobos","parentType":"BitArray","signature":"int opApply(scope  int  delegate(size_t,  bool)  dg)","url":"/ddoc/phobos/std/bitmanip/BitArray.opApply.html"},{"doc":"Reverses the bits of the `BitArray`.","kind":"method","module":"std.bitmanip","name":"reverse","package":"phobos","parentType":"BitArray","signature":"BitArray reverse()","url":"/ddoc/phobos/std/bitmanip/BitArray.reverse.html"},{"doc":"Sorts the `BitArray`'s elements.","kind":"method","module":"std.bitmanip","name":"sort","package":"phobos","parentType":"BitArray","signature":"BitArray sort()","url":"/ddoc/phobos/std/bitmanip/BitArray.sort.html"},{"doc":"Support for operators == and != for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opEquals","package":"phobos","parentType":"BitArray","signature":"bool opEquals(const  ref  BitArray a2)","url":"/ddoc/phobos/std/bitmanip/BitArray.opEquals.html"},{"doc":"Supports comparison operators for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opCmp","package":"phobos","parentType":"BitArray","signature":"int opCmp(BitArray a2)","url":"/ddoc/phobos/std/bitmanip/BitArray.opCmp.html"},{"doc":"Support for hashing for `BitArray`.","kind":"method","module":"std.bitmanip","name":"toHash","package":"phobos","parentType":"BitArray","signature":"size_t toHash()","url":"/ddoc/phobos/std/bitmanip/BitArray.toHash.html"},{"doc":"Convert to `void[]`.","kind":"method","module":"std.bitmanip","name":"opCast","package":"phobos","parentType":"BitArray","signature":"inout(void)[] opCast(T :  const  void[])()","url":"/ddoc/phobos/std/bitmanip/BitArray.opCast.html"},{"doc":"Convert to `size_t[]`.","kind":"method","module":"std.bitmanip","name":"opCast","package":"phobos","parentType":"BitArray","signature":"inout(size_t)[] opCast(T :  const  size_t[])()","url":"/ddoc/phobos/std/bitmanip/BitArray.opCast.html"},{"doc":"Support for unary operator ~ for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opUnary","package":"phobos","parentType":"BitArray","signature":"BitArray opUnary(string op)() if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opUnary.html"},{"doc":"Support for binary bitwise operators for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opBinary","package":"phobos","parentType":"BitArray","signature":"BitArray opBinary(string op)(const  BitArray e2) if (op ==  \"-\" ||  op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opBinary.html"},{"doc":"Support for operator op= for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opOpAssign","package":"phobos","parentType":"BitArray","signature":"BitArray opOpAssign(string op)(const  BitArray e2) if (op ==  \"-\" ||  op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opOpAssign.html"},{"doc":"Support for operator ~= for `BitArray`. $(RED Warning: This will overwrite a bit in the final word of the current underlying data regardless of whe...","kind":"method","module":"std.bitmanip","name":"opOpAssign","package":"phobos","parentType":"BitArray","signature":"BitArray opOpAssign(string op)(bool  b) if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opOpAssign.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opOpAssign","package":"phobos","parentType":"BitArray","signature":"BitArray opOpAssign(string op)(BitArray b) if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opOpAssign.html"},{"doc":"Support for binary operator ~ for `BitArray`.","kind":"method","module":"std.bitmanip","name":"opBinary","package":"phobos","parentType":"BitArray","signature":"BitArray opBinary(string op)(bool  b) if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opBinaryRight","package":"phobos","parentType":"BitArray","signature":"BitArray opBinaryRight(string op)(bool  b) if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.bitmanip","name":"opBinary","package":"phobos","parentType":"BitArray","signature":"BitArray opBinary(string op)(BitArray b) if (op ==  \"~\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opBinary.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"rollRight","package":"phobos","parentType":"BitArray","signature":"size_t rollRight()(size_t upper,  size_t lower,  size_t nbits)","url":"/ddoc/phobos/std/bitmanip/BitArray.rollRight.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"rollLeft","package":"phobos","parentType":"BitArray","signature":"size_t rollLeft()(size_t upper,  size_t lower,  size_t nbits)","url":"/ddoc/phobos/std/bitmanip/BitArray.rollLeft.html"},{"doc":"Operator `<<=` support.","kind":"method","module":"std.bitmanip","name":"opOpAssign","package":"phobos","parentType":"BitArray","signature":"void opOpAssign(string op)(size_t nbits) if (op ==  \"<<\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opOpAssign.html"},{"doc":"Operator `>>=` support.","kind":"method","module":"std.bitmanip","name":"opOpAssign","package":"phobos","parentType":"BitArray","signature":"void opOpAssign(string op)(size_t nbits) if (op ==  \">>\")","url":"/ddoc/phobos/std/bitmanip/BitArray.opOpAssign.html"},{"doc":"Return a string representation of this BitArray.","kind":"method","module":"std.bitmanip","name":"toString","package":"phobos","parentType":"BitArray","signature":"void toString(W)(ref  W sink,  scope  const  ref  FormatSpec!char  fmt) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/bitmanip/BitArray.toString.html"},{"doc":"Return a lazy range of the indices of set bits.","kind":"method","module":"std.bitmanip","name":"bitsSet","package":"phobos","parentType":"BitArray","signature":"@property auto bitsSet()","url":"/ddoc/phobos/std/bitmanip/BitArray.bitsSet.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"formatBitString","package":"phobos","parentType":"BitArray","signature":"void formatBitString(Writer)(auto  ref  Writer sink)","url":"/ddoc/phobos/std/bitmanip/BitArray.formatBitString.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"formatBitArray","package":"phobos","parentType":"BitArray","signature":"void formatBitArray(Writer)(auto  ref  Writer sink)","url":"/ddoc/phobos/std/bitmanip/BitArray.formatBitArray.html"},{"doc":"","kind":"struct","module":"std.bitmanip","name":"BitsSet","package":"phobos","parentType":"","signature":"BitsSet(T)","url":"/ddoc/phobos/std/bitmanip.html#BitsSet"},{"doc":"","kind":"method","module":"std.bitmanip","name":"front","package":"phobos","parentType":"BitsSet","signature":"size_t front()","url":"/ddoc/phobos/std/bitmanip/BitsSet.front.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"empty","package":"phobos","parentType":"BitsSet","signature":"bool empty()","url":"/ddoc/phobos/std/bitmanip/BitsSet.empty.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"popFront","package":"phobos","parentType":"BitsSet","signature":"void popFront()","url":"/ddoc/phobos/std/bitmanip/BitsSet.popFront.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"save","package":"phobos","parentType":"BitsSet","signature":"BitsSet save()","url":"/ddoc/phobos/std/bitmanip/BitsSet.save.html"},{"doc":"","kind":"method","module":"std.bitmanip","name":"length","package":"phobos","parentType":"BitsSet","signature":"size_t length()","url":"/ddoc/phobos/std/bitmanip/BitsSet.length.html"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createAccessors","package":"phobos","parentType":"","signature":"createAccessors(\n     string store,  T,  string name,  size_t len,  size_t offset)","url":"/ddoc/phobos/std/bitmanip.html#createAccessors"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createStoreName","package":"phobos","parentType":"","signature":"createStoreName(Ts...)","url":"/ddoc/phobos/std/bitmanip.html#createStoreName"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createStorageAndFields","package":"phobos","parentType":"","signature":"createStorageAndFields(Ts...)","url":"/ddoc/phobos/std/bitmanip.html#createStorageAndFields"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createFields","package":"phobos","parentType":"","signature":"createFields(string store,  size_t offset,  Ts...)","url":"/ddoc/phobos/std/bitmanip.html#createFields"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createReferenceAccessor","package":"phobos","parentType":"","signature":"createReferenceAccessor(string store,  T,  ulong  bits,  string name)","url":"/ddoc/phobos/std/bitmanip.html#createReferenceAccessor"},{"doc":"","kind":"template","module":"std.bitmanip","name":"sizeOfBitField","package":"phobos","parentType":"","signature":"sizeOfBitField(T...)","url":"/ddoc/phobos/std/bitmanip.html#sizeOfBitField"},{"doc":"","kind":"template","module":"std.bitmanip","name":"createTaggedReference","package":"phobos","parentType":"","signature":"createTaggedReference(T,  ulong  a,  string name,  Ts...)","url":"/ddoc/phobos/std/bitmanip.html#createTaggedReference"},{"doc":"This string mixin generator allows one to create tagged pointers inside $(D_PARAM struct)s and $(D_PARAM class)es.","kind":"template","module":"std.bitmanip","name":"taggedPointer","package":"phobos","parentType":"","signature":"taggedPointer(T :  T *,  string name,  Ts...)","url":"/ddoc/phobos/std/bitmanip.html#taggedPointer"},{"doc":"This string mixin generator allows one to create tagged class reference inside $(D_PARAM struct)s and $(D_PARAM class)es.","kind":"template","module":"std.bitmanip","name":"taggedClassRef","package":"phobos","parentType":"","signature":"taggedClassRef(T,  string name,  Ts...)","url":"/ddoc/phobos/std/bitmanip.html#taggedClassRef"},{"doc":"","kind":"template","module":"std.bitmanip","name":"isFloatOrDouble","package":"phobos","parentType":"","signature":"isFloatOrDouble(T)","url":"/ddoc/phobos/std/bitmanip.html#isFloatOrDouble"},{"doc":"","kind":"template","module":"std.bitmanip","name":"canSwapEndianness","package":"phobos","parentType":"","signature":"canSwapEndianness(T)","url":"/ddoc/phobos/std/bitmanip.html#canSwapEndianness"},{"doc":"","kind":"template","module":"std.bitmanip","name":"UnsignedOfSize","package":"phobos","parentType":"","signature":"UnsignedOfSize(size_t n)","url":"/ddoc/phobos/std/bitmanip.html#UnsignedOfSize"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;)","kind":"module","module":"std.checkedint","name":"std.checkedint","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/checkedint.html"},{"doc":"Convenience function that turns an integral into the corresponding `Checked` instance by using template argument deduction. The hook type may be sp...","kind":"function","module":"std.checkedint","name":"checked","package":"phobos","parentType":"","signature":"Checked!(T,  Hook) checked(Hook =  Abort,  T)(const  T value) if (is(typeof(Checked!(T,  Hook)(value))))","url":"/ddoc/phobos/std/checkedint/checked.html"},{"doc":"Queries whether a $(D Checked!(T, WithNaN)) object is not a number (NaN).","kind":"function","module":"std.checkedint","name":"isNaN","package":"phobos","parentType":"","signature":"bool isNaN(T)(const  Checked!(T,  WithNaN)  x)","url":"/ddoc/phobos/std/checkedint/isNaN.html"},{"doc":"Defines binary operations with overflow checking for any two integral types. The result type obeys the language rules (even when they may be counte...","kind":"function","module":"std.checkedint","name":"opChecked","package":"phobos","parentType":"","signature":"typeof(mixin(x ==  \"cmp\" ?  \"0\" : (\"L() \" ~  x ~  \" R()\"))) opChecked(string x,  L,  R)(const  L lhs,  const  R rhs,  ref  bool  overflow) if (isIntegral!L &&  isIntegral!R)","url":"/ddoc/phobos/std/checkedint/opChecked.html"},{"doc":"","kind":"function","module":"std.checkedint","name":"pow","package":"phobos","parentType":"","signature":"pure @safe nothrow @nogc auto pow(L,  R)(const  L lhs,  const  R rhs,  ref  bool  overflow) if (isIntegral!L &&  isIntegral!R)","url":"/ddoc/phobos/std/checkedint/pow.html"},{"doc":"","kind":"function","module":"std.checkedint","name":"powImpl","package":"phobos","parentType":"","signature":"T powImpl(T)(T b,  uint  e,  ref  bool  overflow) if (isIntegral!T &&  T.sizeof >=  4)","url":"/ddoc/phobos/std/checkedint/powImpl.html"},{"doc":"Checked integral type wraps an integral `T` and customizes its behavior with the help of a `Hook` type. The type wrapped must be one of the predefi...","kind":"struct","module":"std.checkedint","name":"Checked","package":"phobos","parentType":"","signature":"Checked(T,  Hook =  Abort) if (isIntegral!T ||  is(T ==  Checked!(U,  H),  U,  H))","url":"/ddoc/phobos/std/checkedint.html#Checked"},{"doc":"Returns: A copy of the underlying value.","kind":"method","module":"std.checkedint","name":"get","package":"phobos","parentType":"Checked","signature":"auto get()","url":"/ddoc/phobos/std/checkedint/Checked.get.html"},{"doc":"Assignment operator. Has the same constraints as the constructor.","kind":"method","module":"std.checkedint","name":"opAssign","package":"phobos","parentType":"Checked","signature":"Checked opAssign(U)(U rhs) if (is(typeof(Checked!(T,  Hook)(rhs))))","url":"/ddoc/phobos/std/checkedint/Checked.opAssign.html"},{"doc":"Casting operator to integral, `bool`, or floating point type.","kind":"method","module":"std.checkedint","name":"opCast","package":"phobos","parentType":"Checked","signature":"U opCast(U,  this  _)() if (isIntegral!U ||  isFloatingPoint!U ||  is(U ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opCast.html"},{"doc":"Compares `this` against `rhs` for equality.","kind":"method","module":"std.checkedint","name":"opEquals","package":"phobos","parentType":"Checked","signature":"bool opEquals(U,  this  _)(U rhs) if (isIntegral!U ||  isFloatingPoint!U ||  is(U ==  bool)  ||\n         is(U ==  Checked!(V,  W),  V,  W)  &&  is(typeof(this  ==  rhs.payload)))","url":"/ddoc/phobos/std/checkedint/Checked.opEquals.html"},{"doc":"Generates a hash for `this`. If `Hook` defines `hookToHash`, the call immediately returns `hook.hookToHash(payload)`. If `Hook` does not implement ...","kind":"method","module":"std.checkedint","name":"toHash","package":"phobos","parentType":"Checked","signature":"size_t toHash()","url":"/ddoc/phobos/std/checkedint/Checked.toHash.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"toHash","package":"phobos","parentType":"Checked","signature":"size_t toHash(this  _)()","url":"/ddoc/phobos/std/checkedint/Checked.toHash.html"},{"doc":"Writes a string representation of this to a `sink`.","kind":"method","module":"std.checkedint","name":"toString","package":"phobos","parentType":"Checked","signature":"void toString(Writer,  Char)(scope  ref  Writer sink,  scope  const  ref  FormatSpec!Char fmt)","url":"/ddoc/phobos/std/checkedint/Checked.toString.html"},{"doc":"Compares `this` against `rhs` for ordering. If `Hook` defines `hookOpCmp`, the function forwards to $(D hook.hookOpCmp(get, rhs)). Otherwise, the r...","kind":"method","module":"std.checkedint","name":"opCmp","package":"phobos","parentType":"Checked","signature":"auto opCmp(U,  this  _)(const  U rhs) if (isIntegral!U ||  isFloatingPoint!U ||  is(U ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opCmp","package":"phobos","parentType":"Checked","signature":"auto opCmp(U,  Hook1,  this  _)(Checked!(U,  Hook1)  rhs)","url":"/ddoc/phobos/std/checkedint/Checked.opCmp.html"},{"doc":"Defines unary operators `+`, `-`, `~`, `++`, and `--`. Unary `+` is not overridable and always has built-in behavior (returns `this`). For the othe...","kind":"method","module":"std.checkedint","name":"opUnary","package":"phobos","parentType":"Checked","signature":"auto opUnary(string op,  this  _)() if (op ==  \"+\" ||  op ==  \"-\" ||  op ==  \"~\")","url":"/ddoc/phobos/std/checkedint/Checked.opUnary.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opUnary","package":"phobos","parentType":"Checked","signature":"Checked opUnary(string op)() if (op ==  \"++\" ||  op ==  \"--\")","url":"/ddoc/phobos/std/checkedint/Checked.opUnary.html"},{"doc":"Defines binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`. If `Hook` defines `hookOpBinary`, `opBinary` forwards...","kind":"method","module":"std.checkedint","name":"opBinary","package":"phobos","parentType":"Checked","signature":"auto opBinary(string op,  Rhs)(const  Rhs rhs) if (isIntegral!Rhs ||  isFloatingPoint!Rhs ||  is(Rhs ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opBinary","package":"phobos","parentType":"Checked","signature":"auto opBinary(string op,  Rhs)(const  Rhs rhs) if (isIntegral!Rhs ||  isFloatingPoint!Rhs ||  is(Rhs ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opBinary.html"},{"doc":"","kind":"method","module":"std.checkedint","name":"opBinaryImpl","package":"phobos","parentType":"Checked","signature":"auto opBinaryImpl(string op,  Rhs,  this  _)(const  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Checked.opBinaryImpl.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opBinary","package":"phobos","parentType":"Checked","signature":"auto opBinary(string op,  U,  Hook1)(Checked!(U,  Hook1)  rhs)","url":"/ddoc/phobos/std/checkedint/Checked.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opBinary","package":"phobos","parentType":"Checked","signature":"auto opBinary(string op,  U,  Hook1)(Checked!(U,  Hook1)  rhs)","url":"/ddoc/phobos/std/checkedint/Checked.opBinary.html"},{"doc":"","kind":"method","module":"std.checkedint","name":"opBinaryImpl2","package":"phobos","parentType":"Checked","signature":"auto opBinaryImpl2(string op,  U,  Hook1,  this  _)(Checked!(U,  Hook1)  rhs)","url":"/ddoc/phobos/std/checkedint/Checked.opBinaryImpl2.html"},{"doc":"Defines binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for the case when a built-in numeric or Boolean type i...","kind":"method","module":"std.checkedint","name":"opBinaryRight","package":"phobos","parentType":"Checked","signature":"auto opBinaryRight(string op,  Lhs)(const  Lhs lhs) if (isIntegral!Lhs ||  isFloatingPoint!Lhs ||  is(Lhs ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opBinaryRight","package":"phobos","parentType":"Checked","signature":"auto opBinaryRight(string op,  Lhs)(const  Lhs lhs) if (isIntegral!Lhs ||  isFloatingPoint!Lhs ||  is(Lhs ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.checkedint","name":"opBinaryRightImpl","package":"phobos","parentType":"Checked","signature":"auto opBinaryRightImpl(string op,  Lhs,  this  _)(const  Lhs lhs)","url":"/ddoc/phobos/std/checkedint/Checked.opBinaryRightImpl.html"},{"doc":"Defines operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=`.","kind":"method","module":"std.checkedint","name":"opOpAssign","package":"phobos","parentType":"Checked","signature":"Checked opOpAssign(string op,  Rhs)(const  Rhs rhs) if (isIntegral!Rhs ||  isFloatingPoint!Rhs ||  is(Rhs ==  bool))","url":"/ddoc/phobos/std/checkedint/Checked.opOpAssign.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"opOpAssign","package":"phobos","parentType":"Checked","signature":"Checked opOpAssign(string op,  Rhs)(const  Rhs rhs) if (is(Rhs ==  Checked!(RhsT,  RhsHook),  RhsT,  RhsHook))","url":"/ddoc/phobos/std/checkedint/Checked.opOpAssign.html"},{"doc":"Force all integral errors to fail by printing an error message to `stderr` and then abort the program. `Abort` is the default second argument for `...","kind":"struct","module":"std.checkedint","name":"Abort","package":"phobos","parentType":"","signature":"Abort","url":"/ddoc/phobos/std/checkedint.html#Abort"},{"doc":"Called automatically upon a bad cast (one that loses precision or attempts to convert a negative value to an unsigned type). The source type is `Sr...","kind":"method","module":"std.checkedint","name":"onBadCast","package":"phobos","parentType":"Abort","signature":"Dst onBadCast(Dst,  Src)(Src src)","url":"/ddoc/phobos/std/checkedint/Abort.onBadCast.html"},{"doc":"Called automatically upon a bounds error.","kind":"method","module":"std.checkedint","name":"onLowerBound","package":"phobos","parentType":"Abort","signature":"T onLowerBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Abort.onLowerBound.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onUpperBound","package":"phobos","parentType":"Abort","signature":"T onUpperBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Abort.onUpperBound.html"},{"doc":"Called automatically upon a comparison for equality. In case of a erroneous comparison (one that would make a signed negative value appear equal to...","kind":"method","module":"std.checkedint","name":"hookOpEquals","package":"phobos","parentType":"Abort","signature":"bool hookOpEquals(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Abort.hookOpEquals.html"},{"doc":"Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. i...","kind":"method","module":"std.checkedint","name":"hookOpCmp","package":"phobos","parentType":"Abort","signature":"int hookOpCmp(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Abort.hookOpCmp.html"},{"doc":"Called automatically upon an overflow during a unary or binary operation.","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Abort","signature":"typeof(~ Lhs()) onOverflow(string x,  Lhs)(Lhs lhs)","url":"/ddoc/phobos/std/checkedint/Abort.onOverflow.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Abort","signature":"typeof(Lhs()  +  Rhs()) onOverflow(string x,  Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Abort.onOverflow.html"},{"doc":"Force all integral errors to fail by throwing an exception of type `Throw.CheckFailure`. The message coming with the error is similar to the one pr...","kind":"struct","module":"std.checkedint","name":"Throw","package":"phobos","parentType":"","signature":"Throw","url":"/ddoc/phobos/std/checkedint.html#Throw"},{"doc":"Called automatically upon a bad cast (one that loses precision or attempts to convert a negative value to an unsigned type). The source type is `Sr...","kind":"method","module":"std.checkedint","name":"onBadCast","package":"phobos","parentType":"Throw","signature":"Dst onBadCast(Dst,  Src)(Src src)","url":"/ddoc/phobos/std/checkedint/Throw.onBadCast.html"},{"doc":"Called automatically upon a bounds error.","kind":"method","module":"std.checkedint","name":"onLowerBound","package":"phobos","parentType":"Throw","signature":"T onLowerBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Throw.onLowerBound.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onUpperBound","package":"phobos","parentType":"Throw","signature":"T onUpperBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Throw.onUpperBound.html"},{"doc":"Called automatically upon a comparison for equality. Throws upon an erroneous comparison (one that would make a signed negative value appear equal ...","kind":"method","module":"std.checkedint","name":"hookOpEquals","package":"phobos","parentType":"Throw","signature":"bool hookOpEquals(L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/Throw.hookOpEquals.html"},{"doc":"Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. i...","kind":"method","module":"std.checkedint","name":"hookOpCmp","package":"phobos","parentType":"Throw","signature":"int hookOpCmp(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Throw.hookOpCmp.html"},{"doc":"Called automatically upon an overflow during a unary or binary operation.","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Throw","signature":"typeof(~ Lhs()) onOverflow(string x,  Lhs)(Lhs lhs)","url":"/ddoc/phobos/std/checkedint/Throw.onOverflow.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Throw","signature":"typeof(Lhs()  +  Rhs()) onOverflow(string x,  Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Throw.onOverflow.html"},{"doc":"Hook that prints to `stderr` a trace of all integral errors, without affecting default behavior.","kind":"struct","module":"std.checkedint","name":"Warn","package":"phobos","parentType":"","signature":"Warn","url":"/ddoc/phobos/std/checkedint.html#Warn"},{"doc":"Called automatically upon a bad cast from `src` to type `Dst` (one that loses precision or attempts to convert a negative value to an unsigned type).","kind":"method","module":"std.checkedint","name":"onBadCast","package":"phobos","parentType":"Warn","signature":"Dst onBadCast(Dst,  Src)(Src src)","url":"/ddoc/phobos/std/checkedint/Warn.onBadCast.html"},{"doc":"Called automatically upon a bad `opOpAssign` call (one that loses precision or attempts to convert a negative value to an unsigned type).","kind":"method","module":"std.checkedint","name":"onLowerBound","package":"phobos","parentType":"Warn","signature":"T onLowerBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Warn.onLowerBound.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onUpperBound","package":"phobos","parentType":"Warn","signature":"T onUpperBound(Rhs,  T)(Rhs rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Warn.onUpperBound.html"},{"doc":"Called automatically upon a comparison for equality. In case of an Erroneous comparison (one that would make a signed negative value appear equal t...","kind":"method","module":"std.checkedint","name":"hookOpEquals","package":"phobos","parentType":"Warn","signature":"bool hookOpEquals(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Warn.hookOpEquals.html"},{"doc":"Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. i...","kind":"method","module":"std.checkedint","name":"hookOpCmp","package":"phobos","parentType":"Warn","signature":"int hookOpCmp(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Warn.hookOpCmp.html"},{"doc":"Called automatically upon an overflow during a unary or binary operation.","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Warn","signature":"typeof(~ Lhs()) onOverflow(string x,  Lhs)(ref  Lhs lhs)","url":"/ddoc/phobos/std/checkedint/Warn.onOverflow.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Warn","signature":"typeof(Lhs()  +  Rhs()) onOverflow(string x,  Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Warn.onOverflow.html"},{"doc":"","kind":"method","module":"std.checkedint","name":"trustedStderr","package":"phobos","parentType":"Warn","signature":"@property auto ref trustedStderr()","url":"/ddoc/phobos/std/checkedint/Warn.trustedStderr.html"},{"doc":"Hook that provides arithmetically correct comparisons for equality and ordering. Comparing an object of type $(D Checked!(X, ProperCompare)) agains...","kind":"struct","module":"std.checkedint","name":"ProperCompare","package":"phobos","parentType":"","signature":"ProperCompare","url":"/ddoc/phobos/std/checkedint.html#ProperCompare"},{"doc":"Hook for `==` and `!=` that ensures comparison against integral values has the behavior expected by the usual arithmetic rules. The built-in semant...","kind":"method","module":"std.checkedint","name":"hookOpEquals","package":"phobos","parentType":"ProperCompare","signature":"bool hookOpEquals(L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/ProperCompare.hookOpEquals.html"},{"doc":"Hook for `<`, `<=`, `>`, and `>=` that ensures comparison against integral values has the behavior expected by the usual arithmetic rules. The buil...","kind":"method","module":"std.checkedint","name":"hookOpCmp","package":"phobos","parentType":"ProperCompare","signature":"static auto hookOpCmp(L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/ProperCompare.hookOpCmp.html"},{"doc":"Hook that reserves a special value as a \"Not a Number\" representative. For signed integrals, the reserved value is `T.min`. For unsigned integrals,...","kind":"struct","module":"std.checkedint","name":"WithNaN","package":"phobos","parentType":"","signature":"WithNaN","url":"/ddoc/phobos/std/checkedint.html#WithNaN"},{"doc":"If `rhs` is `WithNaN.defaultValue!Rhs`, returns `WithNaN.defaultValue!Lhs`. Otherwise, returns $(D cast(Lhs) rhs).","kind":"method","module":"std.checkedint","name":"hookOpCast","package":"phobos","parentType":"WithNaN","signature":"Lhs hookOpCast(Lhs,  Rhs)(Rhs rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpCast.html"},{"doc":"Returns `false` if $(D lhs == WithNaN.defaultValue!Lhs), $(D lhs == rhs) otherwise.","kind":"method","module":"std.checkedint","name":"hookOpEquals","package":"phobos","parentType":"WithNaN","signature":"bool hookOpEquals(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpEquals.html"},{"doc":"If $(D lhs == WithNaN.defaultValue!Lhs), returns `double.init`. Otherwise, has the same semantics as the default comparison.","kind":"method","module":"std.checkedint","name":"hookOpCmp","package":"phobos","parentType":"WithNaN","signature":"double hookOpCmp(Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpCmp.html"},{"doc":"Defines hooks for unary operators `-`, `~`, `++`, and `--`.","kind":"method","module":"std.checkedint","name":"hookOpUnary","package":"phobos","parentType":"WithNaN","signature":"auto hookOpUnary(string x,  T)(ref  T v)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpUnary.html"},{"doc":"Defines hooks for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for cases where a `Checked` object is the le...","kind":"method","module":"std.checkedint","name":"hookOpBinary","package":"phobos","parentType":"WithNaN","signature":"auto hookOpBinary(string x,  L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpBinary.html"},{"doc":"Defines hooks for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for cases where a `Checked` object is the ri...","kind":"method","module":"std.checkedint","name":"hookOpBinaryRight","package":"phobos","parentType":"WithNaN","signature":"auto hookOpBinaryRight(string x,  L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpBinaryRight.html"},{"doc":"Defines hooks for binary operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=` for cases where a `Checked` obje...","kind":"method","module":"std.checkedint","name":"hookOpOpAssign","package":"phobos","parentType":"WithNaN","signature":"void hookOpOpAssign(string x,  L,  R)(ref  L lhs,  R rhs)","url":"/ddoc/phobos/std/checkedint/WithNaN.hookOpOpAssign.html"},{"doc":"Hook that implements $(I saturation), i.e. any arithmetic operation that would overflow leaves the result at its extreme value (`min` or `max` depe...","kind":"struct","module":"std.checkedint","name":"Saturate","package":"phobos","parentType":"","signature":"Saturate","url":"/ddoc/phobos/std/checkedint.html#Saturate"},{"doc":"Implements saturation for operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=`. This hook is called if the res...","kind":"method","module":"std.checkedint","name":"onLowerBound","package":"phobos","parentType":"Saturate","signature":"T onLowerBound(Rhs,  T)(Rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Saturate.onLowerBound.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onUpperBound","package":"phobos","parentType":"Saturate","signature":"T onUpperBound(Rhs,  T)(Rhs,  T bound)","url":"/ddoc/phobos/std/checkedint/Saturate.onUpperBound.html"},{"doc":"Implements saturation for operators `+`, `-` (unary and binary), `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`.","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Saturate","signature":"auto onOverflow(string x,  Lhs)(Lhs)","url":"/ddoc/phobos/std/checkedint/Saturate.onOverflow.html"},{"doc":"ditto","kind":"method","module":"std.checkedint","name":"onOverflow","package":"phobos","parentType":"Saturate","signature":"typeof(Lhs()  +  Rhs()) onOverflow(string x,  Lhs,  Rhs)(Lhs lhs,  Rhs rhs)","url":"/ddoc/phobos/std/checkedint/Saturate.onOverflow.html"},{"doc":"Identify the compiler used and its various features.","kind":"module","module":"std.compiler","name":"std.compiler","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/compiler.html"},{"doc":"Master list of D compiler vendors.","kind":"enum","module":"std.compiler","name":"Vendor","package":"phobos","parentType":"","signature":"Vendor","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"Compiler vendor could not be detected","kind":"enum_member","module":"std.compiler","name":"unknown","package":"phobos","parentType":"","signature":"unknown = 0","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"Digital Mars D (DMD)","kind":"enum_member","module":"std.compiler","name":"digitalMars","package":"phobos","parentType":"","signature":"digitalMars = 1","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"GNU D Compiler (GDC)","kind":"enum_member","module":"std.compiler","name":"gnu","package":"phobos","parentType":"","signature":"gnu = 2","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"LLVM D Compiler (LDC)","kind":"enum_member","module":"std.compiler","name":"llvm","package":"phobos","parentType":"","signature":"llvm = 3","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"D.NET","kind":"enum_member","module":"std.compiler","name":"dotNET","package":"phobos","parentType":"","signature":"dotNET = 4","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"Snazzy D Compiler (SDC)","kind":"enum_member","module":"std.compiler","name":"sdc","package":"phobos","parentType":"","signature":"sdc = 5","url":"/ddoc/phobos/std/compiler.html#Vendor"},{"doc":"Vendor specific string naming the compiler, for example: \"Digital Mars D\".","kind":"variable","module":"std.compiler","name":"name","package":"phobos","parentType":"","signature":"string name","url":"/ddoc/phobos/std/compiler.html#name"},{"doc":"The vendor specific version number, as in version_major.version_minor","kind":"variable","module":"std.compiler","name":"version_major","package":"phobos","parentType":"","signature":"uint version_major","url":"/ddoc/phobos/std/compiler.html#version_major"},{"doc":"","kind":"variable","module":"std.compiler","name":"version_minor","package":"phobos","parentType":"","signature":"uint version_minor","url":"/ddoc/phobos/std/compiler.html#version_minor"},{"doc":"The version of the D Programming Language Specification supported by the compiler.","kind":"variable","module":"std.compiler","name":"D_major","package":"phobos","parentType":"","signature":"uint D_major","url":"/ddoc/phobos/std/compiler.html#D_major"},{"doc":"","kind":"variable","module":"std.compiler","name":"D_minor","package":"phobos","parentType":"","signature":"uint D_minor","url":"/ddoc/phobos/std/compiler.html#D_minor"},{"doc":"This module contains the $(LREF Complex) type, which is used to represent complex numbers, along with related mathematical operations and functions.","kind":"module","module":"std.complex","name":"std.complex","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/complex.html"},{"doc":"Helper function that returns a complex number with the specified real and imaginary parts.","kind":"function","module":"std.complex","name":"complex","package":"phobos","parentType":"","signature":"auto complex(R)(const  R re) if (is(R :  double))","url":"/ddoc/phobos/std/complex/complex.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"complex","package":"phobos","parentType":"","signature":"auto complex(R,  I)(const  R re,  const  I im) if (is(R :  double)  &&  is(I :  double))","url":"/ddoc/phobos/std/complex/complex.html"},{"doc":"Calculates the absolute value (or modulus) of a complex number.","kind":"function","module":"std.complex","name":"abs","package":"phobos","parentType":"","signature":"T abs(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/abs.html"},{"doc":"Params: z = A complex number. x = A real number. Returns: The squared modulus of `z`. For genericity, if called on a real number, returns its square.","kind":"function","module":"std.complex","name":"sqAbs","package":"phobos","parentType":"","signature":"T sqAbs(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/sqAbs.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"sqAbs","package":"phobos","parentType":"","signature":"T sqAbs(T)(const  T x) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/complex/sqAbs.html"},{"doc":"Params: z = A complex number. Returns: The argument (or phase) of `z`.","kind":"function","module":"std.complex","name":"arg","package":"phobos","parentType":"","signature":"T arg(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/arg.html"},{"doc":"Extracts the norm of a complex number. Params: z = A complex number Returns: The squared magnitude of `z`.","kind":"function","module":"std.complex","name":"norm","package":"phobos","parentType":"","signature":"T norm(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/norm.html"},{"doc":"Params: z = A complex number. Returns: The complex conjugate of `z`.","kind":"function","module":"std.complex","name":"conj","package":"phobos","parentType":"","signature":"Complex!T conj(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/conj.html"},{"doc":"Returns the projection of `z` onto the Riemann sphere. Params: z = A complex number Returns: The projection of `z` onto the Riemann sphere.","kind":"function","module":"std.complex","name":"proj","package":"phobos","parentType":"","signature":"Complex!T proj(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/proj.html"},{"doc":"Constructs a complex number given its absolute value and argument. Params: modulus = The modulus argument = The argument Returns: The complex numbe...","kind":"function","module":"std.complex","name":"fromPolar","package":"phobos","parentType":"","signature":"Complex!(CommonType!(T,  U)) fromPolar(T,  U)(const  T modulus,  const  U argument)","url":"/ddoc/phobos/std/complex/fromPolar.html"},{"doc":"Trigonometric functions on complex numbers.","kind":"function","module":"std.complex","name":"sin","package":"phobos","parentType":"","signature":"Complex!T sin(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/sin.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"cos","package":"phobos","parentType":"","signature":"Complex!T cos(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/cos.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"tan","package":"phobos","parentType":"","signature":"Complex!T tan(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/tan.html"},{"doc":"Inverse trigonometric functions on complex numbers.","kind":"function","module":"std.complex","name":"asin","package":"phobos","parentType":"","signature":"Complex!T asin(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/asin.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"acos","package":"phobos","parentType":"","signature":"Complex!T acos(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/acos.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"atan","package":"phobos","parentType":"","signature":"Complex!T atan(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/atan.html"},{"doc":"Hyperbolic trigonometric functions on complex numbers.","kind":"function","module":"std.complex","name":"sinh","package":"phobos","parentType":"","signature":"Complex!T sinh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/sinh.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"cosh","package":"phobos","parentType":"","signature":"Complex!T cosh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/cosh.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"tanh","package":"phobos","parentType":"","signature":"Complex!T tanh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/tanh.html"},{"doc":"Inverse hyperbolic trigonometric functions on complex numbers.","kind":"function","module":"std.complex","name":"asinh","package":"phobos","parentType":"","signature":"Complex!T asinh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/asinh.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"acosh","package":"phobos","parentType":"","signature":"Complex!T acosh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/acosh.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"atanh","package":"phobos","parentType":"","signature":"Complex!T atanh(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/atanh.html"},{"doc":"Params: y = A real number. Returns: The value of cos(y) + i sin(y).","kind":"function","module":"std.complex","name":"expi","package":"phobos","parentType":"","signature":"Complex!real expi(real  y)","url":"/ddoc/phobos/std/complex/expi.html"},{"doc":"Params: y = A real number. Returns: The value of cosh(y) + i sinh(y)","kind":"function","module":"std.complex","name":"coshisinh","package":"phobos","parentType":"","signature":"Complex!real coshisinh(real  y)","url":"/ddoc/phobos/std/complex/coshisinh.html"},{"doc":"Params: z = A complex number. Returns: The square root of `z`.","kind":"function","module":"std.complex","name":"sqrt","package":"phobos","parentType":"","signature":"Complex!T sqrt(T)(Complex!T z)","url":"/ddoc/phobos/std/complex/sqrt.html"},{"doc":"Calculates e$(SUPERSCRIPT x). Params: x = A complex number Returns: The complex base e exponential of `x`","kind":"function","module":"std.complex","name":"exp","package":"phobos","parentType":"","signature":"Complex!T exp(T)(Complex!T x)","url":"/ddoc/phobos/std/complex/exp.html"},{"doc":"Calculate the natural logarithm of x. The branch cut is along the negative axis. Params: x = A complex number Returns: The complex natural logarith...","kind":"function","module":"std.complex","name":"log","package":"phobos","parentType":"","signature":"Complex!T log(T)(Complex!T x)","url":"/ddoc/phobos/std/complex/log.html"},{"doc":"Calculate the base-10 logarithm of x. Params: x = A complex number Returns: The complex base 10 logarithm of `x`","kind":"function","module":"std.complex","name":"log10","package":"phobos","parentType":"","signature":"Complex!T log10(T)(Complex!T x)","url":"/ddoc/phobos/std/complex/log10.html"},{"doc":"Calculates x$(SUPERSCRIPT n). The branch cut is on the negative axis. Params: x = base n = exponent Returns: `x` raised to the power of `n`","kind":"function","module":"std.complex","name":"pow","package":"phobos","parentType":"","signature":"Complex!T pow(T,  Int)(Complex!T x,  const  Int n) if (isIntegral!Int)","url":"/ddoc/phobos/std/complex/pow.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"pow","package":"phobos","parentType":"","signature":"Complex!T pow(T)(Complex!T x,  const  T n)","url":"/ddoc/phobos/std/complex/pow.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"pow","package":"phobos","parentType":"","signature":"Complex!T pow(T)(Complex!T x,  Complex!T y)","url":"/ddoc/phobos/std/complex/pow.html"},{"doc":"ditto","kind":"function","module":"std.complex","name":"pow","package":"phobos","parentType":"","signature":"Complex!T pow(T)(const  T x,  Complex!T n)","url":"/ddoc/phobos/std/complex/pow.html"},{"doc":"A complex number parametrised by a type `T`, which must be either `float`, `double` or `real`.","kind":"struct","module":"std.complex","name":"Complex","package":"phobos","parentType":"","signature":"Complex(T) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/complex.html#Complex"},{"doc":"Converts the complex number to a string representation.","kind":"method","module":"std.complex","name":"toString","package":"phobos","parentType":"Complex","signature":"string toString()","url":"/ddoc/phobos/std/complex/Complex.toString.html"},{"doc":"ditto","kind":"method","module":"std.complex","name":"toString","package":"phobos","parentType":"Complex","signature":"void toString(Writer,  Char)(scope  Writer w,  scope  const  ref  FormatSpec!Char formatSpec) if (isOutputRange!(Writer,  const(Char)[]))","url":"/ddoc/phobos/std/complex/Complex.toString.html"},{"doc":"","kind":"method","module":"std.complex","name":"opAssign","package":"phobos","parentType":"Complex","signature":"Complex opAssign(R :  T)(Complex!R z)","url":"/ddoc/phobos/std/complex/Complex.opAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opAssign","package":"phobos","parentType":"Complex","signature":"Complex opAssign(R :  T)(const  R r)","url":"/ddoc/phobos/std/complex/Complex.opAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opEquals","package":"phobos","parentType":"Complex","signature":"bool opEquals(R :  T)(Complex!R z)","url":"/ddoc/phobos/std/complex/Complex.opEquals.html"},{"doc":"","kind":"method","module":"std.complex","name":"opEquals","package":"phobos","parentType":"Complex","signature":"bool opEquals(R :  T)(const  R r)","url":"/ddoc/phobos/std/complex/Complex.opEquals.html"},{"doc":"","kind":"method","module":"std.complex","name":"opUnary","package":"phobos","parentType":"Complex","signature":"Complex opUnary(string op)() if (op ==  \"+\")","url":"/ddoc/phobos/std/complex/Complex.opUnary.html"},{"doc":"","kind":"method","module":"std.complex","name":"opUnary","package":"phobos","parentType":"Complex","signature":"Complex opUnary(string op)() if (op ==  \"-\")","url":"/ddoc/phobos/std/complex/Complex.opUnary.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinary","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T, R)) opBinary(string op,  R)(Complex!R z)","url":"/ddoc/phobos/std/complex/Complex.opBinary.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinary","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T, R)) opBinary(string op,  R)(const  R r) if (isNumeric!R)","url":"/ddoc/phobos/std/complex/Complex.opBinary.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinaryRight","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T,  R)) opBinaryRight(string op,  R)(const  R r) if ((op ==  \"+\" ||  op ==  \"*\")  && (isNumeric!R))","url":"/ddoc/phobos/std/complex/Complex.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinaryRight","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T,  R)) opBinaryRight(string op,  R)(const  R r) if (op ==  \"-\" &&  isNumeric!R)","url":"/ddoc/phobos/std/complex/Complex.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinaryRight","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T,  R)) opBinaryRight(string op,  R)(const  R r) if (op ==  \"/\" &&  isNumeric!R)","url":"/ddoc/phobos/std/complex/Complex.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.complex","name":"opBinaryRight","package":"phobos","parentType":"Complex","signature":"Complex!(CommonType!(T,  R)) opBinaryRight(string op,  R)(const  R lhs) if (op ==  \"^^\" &&  isNumeric!R)","url":"/ddoc/phobos/std/complex/Complex.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  C)(const  C z) if ((op ==  \"+\" ||  op ==  \"-\")  &&  is(C R ==  Complex!R))","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  C)(const  C z) if (op ==  \"*\" &&  is(C R ==  Complex!R))","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  C)(const  C z) if (op ==  \"/\" &&  is(C R ==  Complex!R))","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  C)(const  C z) if (op ==  \"^^\" &&  is(C R ==  Complex!R))","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  U :  T)(const  U a) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  U :  T)(const  U a) if (op ==  \"*\" ||  op ==  \"/\")","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  R)(const  R r) if (op ==  \"^^\" &&  isFloatingPoint!R)","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"","kind":"method","module":"std.complex","name":"opOpAssign","package":"phobos","parentType":"Complex","signature":"Complex opOpAssign(string op,  U)(const  U i) if (op ==  \"^^\" &&  isIntegral!U)","url":"/ddoc/phobos/std/complex/Complex.opOpAssign.html"},{"doc":"Returns a complex number instance that correponds in size and in ABI to the associated C compiler's `_Complex` type.","kind":"method","module":"std.complex","name":"toNative","package":"phobos","parentType":"Complex","signature":"auto toNative()","url":"/ddoc/phobos/std/complex/Complex.toNative.html"},{"doc":"","kind":"template","module":"std.complex","name":"Complex","package":"phobos","parentType":"","signature":"Complex(T)","url":"/ddoc/phobos/std/complex.html#Complex"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Symbols)) $(TR $(TD Tid) $(TD $(MYREF locate) $(MYREF own...","kind":"module","module":"std.concurrency","name":"std.concurrency","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/concurrency.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"hasLocalAliasing","package":"phobos","parentType":"","signature":"bool hasLocalAliasing(Types...)()","url":"/ddoc/phobos/std/concurrency/hasLocalAliasing.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"checkops","package":"phobos","parentType":"","signature":"void checkops(T...)(T ops)","url":"/ddoc/phobos/std/concurrency/checkops.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"thisInfo","package":"phobos","parentType":"","signature":"ThreadInfo thisInfo()","url":"/ddoc/phobos/std/concurrency/thisInfo.html"},{"doc":"Returns: The `Tid` of the caller's thread.","kind":"function","module":"std.concurrency","name":"thisTid","package":"phobos","parentType":"","signature":"Tid thisTid()","url":"/ddoc/phobos/std/concurrency/thisTid.html"},{"doc":"Return the `Tid` of the thread which spawned the caller's thread.","kind":"function","module":"std.concurrency","name":"ownerTid","package":"phobos","parentType":"","signature":"Tid ownerTid()","url":"/ddoc/phobos/std/concurrency/ownerTid.html"},{"doc":"Starts `fn(args)` in a new logical thread.","kind":"function","module":"std.concurrency","name":"spawn","package":"phobos","parentType":"","signature":"Tid spawn(F,  T...)(F fn,  T args) if (isSpawnable!(F,  T))","url":"/ddoc/phobos/std/concurrency/spawn.html"},{"doc":"Starts `fn(args)` in a logical thread and will receive a `LinkTerminated` message when the operation terminates.","kind":"function","module":"std.concurrency","name":"spawnLinked","package":"phobos","parentType":"","signature":"Tid spawnLinked(F,  T...)(F fn,  T args) if (isSpawnable!(F,  T))","url":"/ddoc/phobos/std/concurrency/spawnLinked.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"_spawn","package":"phobos","parentType":"","signature":"Tid _spawn(F,  T...)(bool  linked,  F fn,  T args) if (isSpawnable!(F,  T))","url":"/ddoc/phobos/std/concurrency/_spawn.html"},{"doc":"Places the values as a message at the back of tid's message queue.","kind":"function","module":"std.concurrency","name":"send","package":"phobos","parentType":"","signature":"void send(T...)(Tid tid,  T vals)","url":"/ddoc/phobos/std/concurrency/send.html"},{"doc":"Places the values as a message on the front of tid's message queue.","kind":"function","module":"std.concurrency","name":"prioritySend","package":"phobos","parentType":"","signature":"void prioritySend(T...)(Tid tid,  T vals)","url":"/ddoc/phobos/std/concurrency/prioritySend.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"_send","package":"phobos","parentType":"","signature":"void _send(T...)(Tid tid,  T vals)","url":"/ddoc/phobos/std/concurrency/_send.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"_send","package":"phobos","parentType":"","signature":"void _send(T...)(MsgType type,  Tid tid,  T vals)","url":"/ddoc/phobos/std/concurrency/_send.html"},{"doc":"Receives a message from another thread.","kind":"function","module":"std.concurrency","name":"receive","package":"phobos","parentType":"","signature":"void receive(T...)(  T ops )","url":"/ddoc/phobos/std/concurrency/receive.html"},{"doc":"Receives only messages with arguments of the specified types.","kind":"function","module":"std.concurrency","name":"receiveOnly","package":"phobos","parentType":"","signature":"receiveOnlyRet!(T) receiveOnly(T...)()","url":"/ddoc/phobos/std/concurrency/receiveOnly.html"},{"doc":"Receives a message from another thread and gives up if no match arrives within a specified duration.","kind":"function","module":"std.concurrency","name":"receiveTimeout","package":"phobos","parentType":"","signature":"bool receiveTimeout(T...)(Duration duration,  T ops)","url":"/ddoc/phobos/std/concurrency/receiveTimeout.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"onCrowdingBlock","package":"phobos","parentType":"","signature":"bool onCrowdingBlock(Tid tid)","url":"/ddoc/phobos/std/concurrency/onCrowdingBlock.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"onCrowdingThrow","package":"phobos","parentType":"","signature":"bool onCrowdingThrow(Tid tid)","url":"/ddoc/phobos/std/concurrency/onCrowdingThrow.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"onCrowdingIgnore","package":"phobos","parentType":"","signature":"bool onCrowdingIgnore(Tid tid)","url":"/ddoc/phobos/std/concurrency/onCrowdingIgnore.html"},{"doc":"Sets a maximum mailbox size.","kind":"function","module":"std.concurrency","name":"setMaxMailboxSize","package":"phobos","parentType":"","signature":"void setMaxMailboxSize(Tid tid,  size_t messages,  OnCrowding doThis)","url":"/ddoc/phobos/std/concurrency/setMaxMailboxSize.html"},{"doc":"Sets a maximum mailbox size.","kind":"function","module":"std.concurrency","name":"setMaxMailboxSize","package":"phobos","parentType":"","signature":"void setMaxMailboxSize(Tid tid,  size_t messages,  bool  function(Tid)  onCrowdingDoThis)","url":"/ddoc/phobos/std/concurrency/setMaxMailboxSize.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"registryLock","package":"phobos","parentType":"","signature":"Mutex registryLock()","url":"/ddoc/phobos/std/concurrency/registryLock.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"unregisterMe","package":"phobos","parentType":"","signature":"void unregisterMe(ref  ThreadInfo me)","url":"/ddoc/phobos/std/concurrency/unregisterMe.html"},{"doc":"Associates name with tid.","kind":"function","module":"std.concurrency","name":"register","package":"phobos","parentType":"","signature":"bool register(string name,  Tid tid)","url":"/ddoc/phobos/std/concurrency/register.html"},{"doc":"Removes the registered name associated with a tid.","kind":"function","module":"std.concurrency","name":"unregister","package":"phobos","parentType":"","signature":"bool unregister(string name)","url":"/ddoc/phobos/std/concurrency/unregister.html"},{"doc":"Gets the `Tid` associated with name.","kind":"function","module":"std.concurrency","name":"locate","package":"phobos","parentType":"","signature":"Tid locate(string name)","url":"/ddoc/phobos/std/concurrency/locate.html"},{"doc":"If the caller is a `Fiber` and is not a $(LREF Generator), this function will call `scheduler.yield()` or `Fiber.yield()`, as appropriate.","kind":"function","module":"std.concurrency","name":"yield","package":"phobos","parentType":"","signature":"void yield()","url":"/ddoc/phobos/std/concurrency/yield.html"},{"doc":"Yields a value of type T to the caller of the currently executing generator.","kind":"function","module":"std.concurrency","name":"yield","package":"phobos","parentType":"","signature":"void yield(T)(ref  T value)","url":"/ddoc/phobos/std/concurrency/yield.html"},{"doc":"ditto","kind":"function","module":"std.concurrency","name":"yield","package":"phobos","parentType":"","signature":"void yield(T)(T value)","url":"/ddoc/phobos/std/concurrency/yield.html"},{"doc":"","kind":"function","module":"std.concurrency","name":"initOnceLock","package":"phobos","parentType":"","signature":"shared(Mutex) initOnceLock()","url":"/ddoc/phobos/std/concurrency/initOnceLock.html"},{"doc":"Initializes $(D_PARAM var) with the lazy $(D_PARAM init) value in a thread-safe manner.","kind":"function","module":"std.concurrency","name":"initOnce","package":"phobos","parentType":"","signature":"auto ref initOnce(alias  var)(lazy  typeof(var)  init)","url":"/ddoc/phobos/std/concurrency/initOnce.html"},{"doc":"Same as above, but takes a separate mutex instead of sharing one among all initOnce instances.","kind":"function","module":"std.concurrency","name":"initOnce","package":"phobos","parentType":"","signature":"auto ref initOnce(alias  var)(lazy  typeof(var)  init,  shared  Mutex mutex)","url":"/ddoc/phobos/std/concurrency/initOnce.html"},{"doc":"ditto","kind":"function","module":"std.concurrency","name":"initOnce","package":"phobos","parentType":"","signature":"auto ref initOnce(alias  var)(lazy  typeof(var)  init,  Mutex mutex)","url":"/ddoc/phobos/std/concurrency/initOnce.html"},{"doc":"","kind":"enum","module":"std.concurrency","name":"MsgType","package":"phobos","parentType":"","signature":"MsgType","url":"/ddoc/phobos/std/concurrency.html#MsgType"},{"doc":"","kind":"enum_member","module":"std.concurrency","name":"standard","package":"phobos","parentType":"","signature":"standard = ","url":"/ddoc/phobos/std/concurrency.html#MsgType"},{"doc":"","kind":"enum_member","module":"std.concurrency","name":"priority","package":"phobos","parentType":"","signature":"priority = ","url":"/ddoc/phobos/std/concurrency.html#MsgType"},{"doc":"","kind":"enum_member","module":"std.concurrency","name":"linkDead","package":"phobos","parentType":"","signature":"linkDead = ","url":"/ddoc/phobos/std/concurrency.html#MsgType"},{"doc":"","kind":"struct","module":"std.concurrency","name":"Message","package":"phobos","parentType":"","signature":"Message","url":"/ddoc/phobos/std/concurrency.html#Message"},{"doc":"","kind":"method","module":"std.concurrency","name":"convertsTo","package":"phobos","parentType":"Message","signature":"@property auto convertsTo(T...)()","url":"/ddoc/phobos/std/concurrency/Message.convertsTo.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"get","package":"phobos","parentType":"Message","signature":"@property auto get(T...)()","url":"/ddoc/phobos/std/concurrency/Message.get.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"map","package":"phobos","parentType":"Message","signature":"auto map(Op)(Op op)","url":"/ddoc/phobos/std/concurrency/Message.map.html"},{"doc":"Thrown on calls to $(LREF receiveOnly) if a message other than the type the receiving thread expected is sent.","kind":"class","module":"std.concurrency","name":"MessageMismatch","package":"phobos","parentType":"","signature":"MessageMismatch : Exception","url":"/ddoc/phobos/std/concurrency.html#MessageMismatch"},{"doc":"Thrown on calls to $(LREF receive) if the thread that spawned the receiving thread has terminated and no more messages exist.","kind":"class","module":"std.concurrency","name":"OwnerTerminated","package":"phobos","parentType":"","signature":"OwnerTerminated : Exception","url":"/ddoc/phobos/std/concurrency.html#OwnerTerminated"},{"doc":"Thrown if a linked thread has terminated.","kind":"class","module":"std.concurrency","name":"LinkTerminated","package":"phobos","parentType":"","signature":"LinkTerminated : Exception","url":"/ddoc/phobos/std/concurrency.html#LinkTerminated"},{"doc":"Thrown if a message was sent to a thread via $(REF prioritySend, std,concurrency) and the receiver does not have a handler for a message of this type.","kind":"class","module":"std.concurrency","name":"PriorityMessageException","package":"phobos","parentType":"","signature":"PriorityMessageException : Exception","url":"/ddoc/phobos/std/concurrency.html#PriorityMessageException"},{"doc":"Thrown on mailbox crowding if the mailbox is configured with `OnCrowding.throwException`.","kind":"class","module":"std.concurrency","name":"MailboxFull","package":"phobos","parentType":"","signature":"MailboxFull : Exception","url":"/ddoc/phobos/std/concurrency.html#MailboxFull"},{"doc":"Thrown when a `Tid` is missing, e.g. when $(LREF ownerTid) doesn't find an owner thread.","kind":"class","module":"std.concurrency","name":"TidMissingException","package":"phobos","parentType":"","signature":"TidMissingException : Exception","url":"/ddoc/phobos/std/concurrency.html#TidMissingException"},{"doc":"An opaque type used to represent a logical thread.","kind":"struct","module":"std.concurrency","name":"Tid","package":"phobos","parentType":"","signature":"Tid","url":"/ddoc/phobos/std/concurrency.html#Tid"},{"doc":"Generate a convenient string for identifying this `Tid`.  This is only useful to see if `Tid`'s that are currently executing are the same or differ...","kind":"method","module":"std.concurrency","name":"toString","package":"phobos","parentType":"Tid","signature":"void toString(W)(ref  W w)","url":"/ddoc/phobos/std/concurrency/Tid.toString.html"},{"doc":"These behaviors may be specified when a mailbox is full.","kind":"enum","module":"std.concurrency","name":"OnCrowding","package":"phobos","parentType":"","signature":"OnCrowding","url":"/ddoc/phobos/std/concurrency.html#OnCrowding"},{"doc":"Wait until room is available.","kind":"enum_member","module":"std.concurrency","name":"block","package":"phobos","parentType":"","signature":"block = ","url":"/ddoc/phobos/std/concurrency.html#OnCrowding"},{"doc":"Throw a $(LREF MailboxFull) exception.","kind":"enum_member","module":"std.concurrency","name":"throwException","package":"phobos","parentType":"","signature":"throwException = ","url":"/ddoc/phobos/std/concurrency.html#OnCrowding"},{"doc":"Abort the send and return.","kind":"enum_member","module":"std.concurrency","name":"ignore","package":"phobos","parentType":"","signature":"ignore = ","url":"/ddoc/phobos/std/concurrency.html#OnCrowding"},{"doc":"Encapsulates all implementation-level data needed for scheduling.","kind":"struct","module":"std.concurrency","name":"ThreadInfo","package":"phobos","parentType":"","signature":"ThreadInfo","url":"/ddoc/phobos/std/concurrency.html#ThreadInfo"},{"doc":"Gets a thread-local instance of `ThreadInfo`.","kind":"method","module":"std.concurrency","name":"thisInfo","package":"phobos","parentType":"ThreadInfo","signature":"static @property ref thisInfo()","url":"/ddoc/phobos/std/concurrency/ThreadInfo.thisInfo.html"},{"doc":"Cleans up this ThreadInfo.","kind":"method","module":"std.concurrency","name":"cleanup","package":"phobos","parentType":"ThreadInfo","signature":"void cleanup()","url":"/ddoc/phobos/std/concurrency/ThreadInfo.cleanup.html"},{"doc":"A `Scheduler` controls how threading is performed by spawn.","kind":"interface","module":"std.concurrency","name":"Scheduler","package":"phobos","parentType":"","signature":"Scheduler","url":"/ddoc/phobos/std/concurrency.html#Scheduler"},{"doc":"Spawns the supplied op and starts the `Scheduler`.","kind":"method","module":"std.concurrency","name":"start","package":"phobos","parentType":"Scheduler","signature":"void start(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/Scheduler.start.html"},{"doc":"Assigns a logical thread to execute the supplied op.","kind":"method","module":"std.concurrency","name":"spawn","package":"phobos","parentType":"Scheduler","signature":"void spawn(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/Scheduler.spawn.html"},{"doc":"Yields execution to another logical thread.","kind":"method","module":"std.concurrency","name":"yield","package":"phobos","parentType":"Scheduler","signature":"void yield()","url":"/ddoc/phobos/std/concurrency/Scheduler.yield.html"},{"doc":"Returns an appropriate `ThreadInfo` instance.","kind":"method","module":"std.concurrency","name":"thisInfo","package":"phobos","parentType":"Scheduler","signature":"ThreadInfo thisInfo()","url":"/ddoc/phobos/std/concurrency/Scheduler.thisInfo.html"},{"doc":"Creates a `Condition` variable analog for signaling.","kind":"method","module":"std.concurrency","name":"newCondition","package":"phobos","parentType":"Scheduler","signature":"Condition newCondition(Mutex m)","url":"/ddoc/phobos/std/concurrency/Scheduler.newCondition.html"},{"doc":"An example `Scheduler` using kernel threads.","kind":"class","module":"std.concurrency","name":"ThreadScheduler","package":"phobos","parentType":"","signature":"ThreadScheduler : Scheduler","url":"/ddoc/phobos/std/concurrency.html#ThreadScheduler"},{"doc":"This simply runs op directly, since no real scheduling is needed by this approach.","kind":"method","module":"std.concurrency","name":"start","package":"phobos","parentType":"ThreadScheduler","signature":"void start(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/ThreadScheduler.start.html"},{"doc":"Creates a new kernel thread and assigns it to run the supplied op.","kind":"method","module":"std.concurrency","name":"spawn","package":"phobos","parentType":"ThreadScheduler","signature":"void spawn(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/ThreadScheduler.spawn.html"},{"doc":"This scheduler does no explicit multiplexing, so this is a no-op.","kind":"method","module":"std.concurrency","name":"yield","package":"phobos","parentType":"ThreadScheduler","signature":"void yield()","url":"/ddoc/phobos/std/concurrency/ThreadScheduler.yield.html"},{"doc":"Returns `ThreadInfo.thisInfo`, since it is a thread-local instance of `ThreadInfo`, which is the correct behavior for this scheduler.","kind":"method","module":"std.concurrency","name":"thisInfo","package":"phobos","parentType":"ThreadScheduler","signature":"ThreadInfo thisInfo()","url":"/ddoc/phobos/std/concurrency/ThreadScheduler.thisInfo.html"},{"doc":"Creates a new `Condition` variable.  No custom behavior is needed here.","kind":"method","module":"std.concurrency","name":"newCondition","package":"phobos","parentType":"ThreadScheduler","signature":"Condition newCondition(Mutex m)","url":"/ddoc/phobos/std/concurrency/ThreadScheduler.newCondition.html"},{"doc":"An example `Scheduler` using $(MREF_ALTTEXT `Fiber`s, core, thread, fiber).","kind":"class","module":"std.concurrency","name":"FiberScheduler","package":"phobos","parentType":"","signature":"FiberScheduler : Scheduler","url":"/ddoc/phobos/std/concurrency.html#FiberScheduler"},{"doc":"This creates a new `Fiber` for the supplied op and then starts the dispatcher.","kind":"method","module":"std.concurrency","name":"start","package":"phobos","parentType":"FiberScheduler","signature":"void start(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/FiberScheduler.start.html"},{"doc":"This created a new `Fiber` for the supplied op and adds it to the dispatch list.","kind":"method","module":"std.concurrency","name":"spawn","package":"phobos","parentType":"FiberScheduler","signature":"void spawn(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/FiberScheduler.spawn.html"},{"doc":"If the caller is a scheduled `Fiber`, this yields execution to another scheduled `Fiber`.","kind":"method","module":"std.concurrency","name":"yield","package":"phobos","parentType":"FiberScheduler","signature":"void yield()","url":"/ddoc/phobos/std/concurrency/FiberScheduler.yield.html"},{"doc":"Returns an appropriate `ThreadInfo` instance.","kind":"method","module":"std.concurrency","name":"thisInfo","package":"phobos","parentType":"FiberScheduler","signature":"ThreadInfo thisInfo()","url":"/ddoc/phobos/std/concurrency/FiberScheduler.thisInfo.html"},{"doc":"Returns a `Condition` analog that yields when wait or notify is called.","kind":"method","module":"std.concurrency","name":"newCondition","package":"phobos","parentType":"FiberScheduler","signature":"Condition newCondition(Mutex m)","url":"/ddoc/phobos/std/concurrency/FiberScheduler.newCondition.html"},{"doc":"Creates a new `Fiber` which calls the given delegate.","kind":"method","module":"std.concurrency","name":"create","package":"phobos","parentType":"FiberScheduler","signature":"void create(void  delegate()  op)","url":"/ddoc/phobos/std/concurrency/FiberScheduler.create.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"dispatch","package":"phobos","parentType":"FiberScheduler","signature":"void dispatch()","url":"/ddoc/phobos/std/concurrency/FiberScheduler.dispatch.html"},{"doc":"Used to determine whether a Generator is running.","kind":"interface","module":"std.concurrency","name":"IsGenerator","package":"phobos","parentType":"","signature":"IsGenerator","url":"/ddoc/phobos/std/concurrency.html#IsGenerator"},{"doc":"A Generator is a $(MREF_ALTTEXT Fiber, core, thread, fiber) that periodically returns values of type `T` to the caller via `yield`.  This is repres...","kind":"class","module":"std.concurrency","name":"Generator","package":"phobos","parentType":"","signature":"Generator(T) : Fiber,   IsGenerator,   InputRange!T","url":"/ddoc/phobos/std/concurrency.html#Generator"},{"doc":"Returns true if the generator is empty.","kind":"method","module":"std.concurrency","name":"empty","package":"phobos","parentType":"Generator","signature":"bool empty()","url":"/ddoc/phobos/std/concurrency/Generator.empty.html"},{"doc":"Obtains the next value from the underlying function.","kind":"method","module":"std.concurrency","name":"popFront","package":"phobos","parentType":"Generator","signature":"void popFront()","url":"/ddoc/phobos/std/concurrency/Generator.popFront.html"},{"doc":"Returns the most recently generated value by shallow copy.","kind":"method","module":"std.concurrency","name":"front","package":"phobos","parentType":"Generator","signature":"T front()","url":"/ddoc/phobos/std/concurrency/Generator.front.html"},{"doc":"Returns the most recently generated value without executing a copy contructor. Will not compile for element types defining a postblit, because `Gen...","kind":"method","module":"std.concurrency","name":"moveFront","package":"phobos","parentType":"Generator","signature":"T moveFront()","url":"/ddoc/phobos/std/concurrency/Generator.moveFront.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"opApply","package":"phobos","parentType":"Generator","signature":"int opApply(scope  int  delegate(T)  loopBody)","url":"/ddoc/phobos/std/concurrency/Generator.opApply.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"opApply","package":"phobos","parentType":"Generator","signature":"int opApply(scope  int  delegate(size_t,  T)  loopBody)","url":"/ddoc/phobos/std/concurrency/Generator.opApply.html"},{"doc":"","kind":"class","module":"std.concurrency","name":"MessageBox","package":"phobos","parentType":"","signature":"MessageBox","url":"/ddoc/phobos/std/concurrency.html#MessageBox"},{"doc":"","kind":"method","module":"std.concurrency","name":"isClosed","package":"phobos","parentType":"MessageBox","signature":"bool isClosed()","url":"/ddoc/phobos/std/concurrency/MessageBox.isClosed.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"setMaxMsgs","package":"phobos","parentType":"MessageBox","signature":"void setMaxMsgs(size_t num,  bool  function(Tid)  call)","url":"/ddoc/phobos/std/concurrency/MessageBox.setMaxMsgs.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"put","package":"phobos","parentType":"MessageBox","signature":"void put(ref  Message msg)","url":"/ddoc/phobos/std/concurrency/MessageBox.put.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"get","package":"phobos","parentType":"MessageBox","signature":"bool get(T...)(scope  T vals)","url":"/ddoc/phobos/std/concurrency/MessageBox.get.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"close","package":"phobos","parentType":"MessageBox","signature":"void close()","url":"/ddoc/phobos/std/concurrency/MessageBox.close.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"mboxFull","package":"phobos","parentType":"MessageBox","signature":"bool mboxFull()","url":"/ddoc/phobos/std/concurrency/MessageBox.mboxFull.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"updateMsgCount","package":"phobos","parentType":"MessageBox","signature":"void updateMsgCount()","url":"/ddoc/phobos/std/concurrency/MessageBox.updateMsgCount.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"isControlMsg","package":"phobos","parentType":"MessageBox","signature":"bool isControlMsg(ref  Message msg)","url":"/ddoc/phobos/std/concurrency/MessageBox.isControlMsg.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"isPriorityMsg","package":"phobos","parentType":"MessageBox","signature":"bool isPriorityMsg(ref  Message msg)","url":"/ddoc/phobos/std/concurrency/MessageBox.isPriorityMsg.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"isLinkDeadMsg","package":"phobos","parentType":"MessageBox","signature":"bool isLinkDeadMsg(ref  Message msg)","url":"/ddoc/phobos/std/concurrency/MessageBox.isLinkDeadMsg.html"},{"doc":"","kind":"struct","module":"std.concurrency","name":"List","package":"phobos","parentType":"","signature":"List(T)","url":"/ddoc/phobos/std/concurrency.html#List"},{"doc":"","kind":"method","module":"std.concurrency","name":"put","package":"phobos","parentType":"List","signature":"void put(T val)","url":"/ddoc/phobos/std/concurrency/List.put.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"put","package":"phobos","parentType":"List","signature":"void put(ref  List!(T)  rhs)","url":"/ddoc/phobos/std/concurrency/List.put.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"opSlice","package":"phobos","parentType":"List","signature":"Range opSlice()","url":"/ddoc/phobos/std/concurrency/List.opSlice.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"removeAt","package":"phobos","parentType":"List","signature":"void removeAt(Range r)","url":"/ddoc/phobos/std/concurrency/List.removeAt.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"length","package":"phobos","parentType":"List","signature":"size_t length()","url":"/ddoc/phobos/std/concurrency/List.length.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"clear","package":"phobos","parentType":"List","signature":"void clear()","url":"/ddoc/phobos/std/concurrency/List.clear.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"empty","package":"phobos","parentType":"List","signature":"bool empty()","url":"/ddoc/phobos/std/concurrency/List.empty.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"newNode","package":"phobos","parentType":"List","signature":"Node * newNode(T v)","url":"/ddoc/phobos/std/concurrency/List.newNode.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"freeNode","package":"phobos","parentType":"List","signature":"void freeNode(Node *  n)","url":"/ddoc/phobos/std/concurrency/List.freeNode.html"},{"doc":"","kind":"method","module":"std.concurrency","name":"put","package":"phobos","parentType":"List","signature":"void put(Node *  n)","url":"/ddoc/phobos/std/concurrency/List.put.html"},{"doc":"","kind":"template","module":"std.concurrency","name":"isSpawnable","package":"phobos","parentType":"","signature":"isSpawnable(F,  T...)","url":"/ddoc/phobos/std/concurrency.html#isSpawnable"},{"doc":"","kind":"template","module":"std.concurrency","name":"receiveOnlyRet","package":"phobos","parentType":"","signature":"receiveOnlyRet(T...)","url":"/ddoc/phobos/std/concurrency.html#receiveOnlyRet"},{"doc":"","kind":"variable","module":"std.concurrency","name":"tidByName","package":"phobos","parentType":"","signature":"Tid[string] tidByName","url":"/ddoc/phobos/std/concurrency.html#tidByName"},{"doc":"","kind":"variable","module":"std.concurrency","name":"namesByTid","package":"phobos","parentType":"","signature":"string[][Tid] namesByTid","url":"/ddoc/phobos/std/concurrency.html#namesByTid"},{"doc":"Sets the `Scheduler` behavior within the program.","kind":"variable","module":"std.concurrency","name":"scheduler","package":"phobos","parentType":"","signature":"Scheduler scheduler","url":"/ddoc/phobos/std/concurrency.html#scheduler"},{"doc":"This module provides an `Array` type with deterministic memory usage not reliant on the GC, as an alternative to the built-in arrays.","kind":"module","module":"std.container.array","name":"std.container.array","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/array.html"},{"doc":"","kind":"struct","module":"std.container.array","name":"RangeT","package":"phobos","parentType":"","signature":"RangeT(A)","url":"/ddoc/phobos/std/container/array.html#RangeT"},{"doc":"","kind":"method","module":"std.container.array","name":"_outer","package":"phobos","parentType":"RangeT","signature":"inout(A) _outer()","url":"/ddoc/phobos/std/container/array/RangeT._outer.html"},{"doc":"","kind":"method","module":"std.container.array","name":"save","package":"phobos","parentType":"RangeT","signature":"RangeT save()","url":"/ddoc/phobos/std/container/array/RangeT.save.html"},{"doc":"","kind":"method","module":"std.container.array","name":"empty","package":"phobos","parentType":"RangeT","signature":"bool empty()","url":"/ddoc/phobos/std/container/array/RangeT.empty.html"},{"doc":"","kind":"method","module":"std.container.array","name":"length","package":"phobos","parentType":"RangeT","signature":"size_t length()","url":"/ddoc/phobos/std/container/array/RangeT.length.html"},{"doc":"","kind":"method","module":"std.container.array","name":"front","package":"phobos","parentType":"RangeT","signature":"inout(E) front()","url":"/ddoc/phobos/std/container/array/RangeT.front.html"},{"doc":"","kind":"method","module":"std.container.array","name":"back","package":"phobos","parentType":"RangeT","signature":"inout(E) back()","url":"/ddoc/phobos/std/container/array/RangeT.back.html"},{"doc":"","kind":"method","module":"std.container.array","name":"popFront","package":"phobos","parentType":"RangeT","signature":"void popFront()","url":"/ddoc/phobos/std/container/array/RangeT.popFront.html"},{"doc":"","kind":"method","module":"std.container.array","name":"popBack","package":"phobos","parentType":"RangeT","signature":"void popBack()","url":"/ddoc/phobos/std/container/array/RangeT.popBack.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opIndex","package":"phobos","parentType":"RangeT","signature":"inout(E) opIndex(size_t i)","url":"/ddoc/phobos/std/container/array/RangeT.opIndex.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"RangeT","signature":"RangeT opSlice()","url":"/ddoc/phobos/std/container/array/RangeT.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"RangeT","signature":"RangeT opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/RangeT.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"RangeT","signature":"RangeT!(const(A)) opSlice()","url":"/ddoc/phobos/std/container/array/RangeT.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"RangeT","signature":"RangeT!(const(A)) opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/RangeT.opSlice.html"},{"doc":"_Array type with deterministic control of memory. The memory allocated for the array is reclaimed as soon as possible; there is no reliance on the ...","kind":"struct","module":"std.container.array","name":"Array","package":"phobos","parentType":"","signature":"Array(T) if (!is(immutable  T ==  immutable  bool))","url":"/ddoc/phobos/std/container/array.html#Array"},{"doc":"Comparison for equality.","kind":"method","module":"std.container.array","name":"opEquals","package":"phobos","parentType":"Array","signature":"bool opEquals(const  Array rhs)","url":"/ddoc/phobos/std/container/array/Array.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opEquals","package":"phobos","parentType":"Array","signature":"bool opEquals(ref  const  Array rhs)","url":"/ddoc/phobos/std/container/array/Array.opEquals.html"},{"doc":"Duplicates the array. The elements themselves are not transitively duplicated.","kind":"method","module":"std.container.array","name":"dup","package":"phobos","parentType":"Array","signature":"Array dup()","url":"/ddoc/phobos/std/container/array/Array.dup.html"},{"doc":"Returns: `true` if and only if the array has no elements.","kind":"method","module":"std.container.array","name":"empty","package":"phobos","parentType":"Array","signature":"bool empty()","url":"/ddoc/phobos/std/container/array/Array.empty.html"},{"doc":"Returns: The number of elements in the array.","kind":"method","module":"std.container.array","name":"length","package":"phobos","parentType":"Array","signature":"size_t length()","url":"/ddoc/phobos/std/container/array/Array.length.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opDollar","package":"phobos","parentType":"Array","signature":"size_t opDollar()","url":"/ddoc/phobos/std/container/array/Array.opDollar.html"},{"doc":"Returns: The maximum number of elements the array can store without reallocating memory and invalidating iterators upon insertion.","kind":"method","module":"std.container.array","name":"capacity","package":"phobos","parentType":"Array","signature":"size_t capacity()","url":"/ddoc/phobos/std/container/array/Array.capacity.html"},{"doc":"Returns: the internal representation of the array.","kind":"method","module":"std.container.array","name":"data","package":"phobos","parentType":"Array","signature":"inout(T)[] data()","url":"/ddoc/phobos/std/container/array/Array.data.html"},{"doc":"Ensures sufficient capacity to accommodate `e` _elements. If `e < capacity`, this method does nothing.","kind":"method","module":"std.container.array","name":"reserve","package":"phobos","parentType":"Array","signature":"void reserve(size_t elements)","url":"/ddoc/phobos/std/container/array/Array.reserve.html"},{"doc":"Returns: A range that iterates over elements of the array in forward order.","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"ConstRange opSlice()","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"ImmutableRange opSlice()","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"Returns: A range that iterates over elements of the array from index `i` up to (excluding) index `j`.","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"Range opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"ConstRange opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"ImmutableRange opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"Returns: The first element of the array.","kind":"method","module":"std.container.array","name":"front","package":"phobos","parentType":"Array","signature":"inout(T) front()","url":"/ddoc/phobos/std/container/array/Array.front.html"},{"doc":"Returns: The last element of the array.","kind":"method","module":"std.container.array","name":"back","package":"phobos","parentType":"Array","signature":"inout(T) back()","url":"/ddoc/phobos/std/container/array/Array.back.html"},{"doc":"Returns: The element or a reference to the element at the specified index.","kind":"method","module":"std.container.array","name":"opIndex","package":"phobos","parentType":"Array","signature":"inout(T) opIndex(size_t i)","url":"/ddoc/phobos/std/container/array/Array.opIndex.html"},{"doc":"Slicing operators executing the specified operation on the entire slice.","kind":"method","module":"std.container.array","name":"opSliceAssign","package":"phobos","parentType":"Array","signature":"void opSliceAssign(T value)","url":"/ddoc/phobos/std/container/array/Array.opSliceAssign.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opSliceAssign","package":"phobos","parentType":"Array","signature":"void opSliceAssign(T value,  size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/Array.opSliceAssign.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opSliceUnary","package":"phobos","parentType":"Array","signature":"void opSliceUnary(string op)() if (op ==  \"++\" ||  op ==  \"--\")","url":"/ddoc/phobos/std/container/array/Array.opSliceUnary.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opSliceUnary","package":"phobos","parentType":"Array","signature":"void opSliceUnary(string op)(size_t i,  size_t j) if (op ==  \"++\" ||  op ==  \"--\")","url":"/ddoc/phobos/std/container/array/Array.opSliceUnary.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opSliceOpAssign","package":"phobos","parentType":"Array","signature":"void opSliceOpAssign(string op)(T value)","url":"/ddoc/phobos/std/container/array/Array.opSliceOpAssign.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opSliceOpAssign","package":"phobos","parentType":"Array","signature":"void opSliceOpAssign(string op)(T value,  size_t i,  size_t j)","url":"/ddoc/phobos/std/container/array/Array.opSliceOpAssign.html"},{"doc":"Returns: A new array which is a concatenation of `this` and its argument.","kind":"method","module":"std.container.array","name":"opBinary","package":"phobos","parentType":"Array","signature":"Array opBinary(string op,  Stuff)(Stuff stuff) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/array/Array.opBinary.html"},{"doc":"Forwards to `insertBack`.","kind":"method","module":"std.container.array","name":"opOpAssign","package":"phobos","parentType":"Array","signature":"void opOpAssign(string op,  Stuff)(auto  ref  Stuff stuff) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/array/Array.opOpAssign.html"},{"doc":"Removes all the elements from the array and releases allocated memory.","kind":"method","module":"std.container.array","name":"clear","package":"phobos","parentType":"Array","signature":"void clear()","url":"/ddoc/phobos/std/container/array/Array.clear.html"},{"doc":"Sets the number of elements in the array to `newLength`. If `newLength` is greater than `length`, the new elements are added to the end of the arra...","kind":"method","module":"std.container.array","name":"length","package":"phobos","parentType":"Array","signature":"void length(size_t newLength)","url":"/ddoc/phobos/std/container/array/Array.length.html"},{"doc":"Removes the last element from the array and returns it. Both stable and non-stable versions behave the same and guarantee that ranges iterating ove...","kind":"method","module":"std.container.array","name":"removeAny","package":"phobos","parentType":"Array","signature":"T removeAny()","url":"/ddoc/phobos/std/container/array/Array.removeAny.html"},{"doc":"Inserts the specified elements at the back of the array. `stuff` can be a value convertible to `T` or a range of objects convertible to `T`.","kind":"method","module":"std.container.array","name":"insertBack","package":"phobos","parentType":"Array","signature":"size_t insertBack(Stuff)(Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T)  ||\n             isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.insertBack.html"},{"doc":"Removes the value from the back of the array. Both stable and non-stable versions behave the same and guarantee that ranges iterating over the arra...","kind":"method","module":"std.container.array","name":"removeBack","package":"phobos","parentType":"Array","signature":"void removeBack()","url":"/ddoc/phobos/std/container/array/Array.removeBack.html"},{"doc":"Removes `howMany` values from the back of the array. Unlike the unparameterized versions above, these functions do not throw if they could not remo...","kind":"method","module":"std.container.array","name":"removeBack","package":"phobos","parentType":"Array","signature":"size_t removeBack(size_t howMany)","url":"/ddoc/phobos/std/container/array/Array.removeBack.html"},{"doc":"Inserts `stuff` before, after, or instead range `r`, which must be a valid range previously extracted from this array. `stuff` can be a value conve...","kind":"method","module":"std.container.array","name":"insertBefore","package":"phobos","parentType":"Array","signature":"size_t insertBefore(Stuff)(Range r,  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.insertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"insertBefore","package":"phobos","parentType":"Array","signature":"size_t insertBefore(Stuff)(Range r,  Stuff stuff) if (isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.insertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"insertAfter","package":"phobos","parentType":"Array","signature":"size_t insertAfter(Stuff)(Range r,  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T)  ||\n             isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.insertAfter.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"replace","package":"phobos","parentType":"Array","signature":"size_t replace(Stuff)(Range r,  Stuff stuff) if (isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.replace.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"replace","package":"phobos","parentType":"Array","signature":"size_t replace(Stuff)(Range r,  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.replace.html"},{"doc":"Removes all elements belonging to `r`, which must be a range obtained originally from this array.","kind":"method","module":"std.container.array","name":"linearRemove","package":"phobos","parentType":"Array","signature":"Range linearRemove(Range r)","url":"/ddoc/phobos/std/container/array/Array.linearRemove.html"},{"doc":"_Array specialized for `bool`. Packs together values efficiently by allocating one bit per element.","kind":"struct","module":"std.container.array","name":"Array","package":"phobos","parentType":"","signature":"Array(T) if (is(immutable  T ==  immutable  bool))","url":"/ddoc/phobos/std/container/array.html#Array"},{"doc":"","kind":"method","module":"std.container.array","name":"data","package":"phobos","parentType":"Array","signature":"size_t[] data()","url":"/ddoc/phobos/std/container/array/Array.data.html"},{"doc":"Property returning `true` if and only if the array has no elements.","kind":"method","module":"std.container.array","name":"empty","package":"phobos","parentType":"Array","signature":"bool empty()","url":"/ddoc/phobos/std/container/array/Array.empty.html"},{"doc":"Returns: A duplicate of the array.","kind":"method","module":"std.container.array","name":"dup","package":"phobos","parentType":"Array","signature":"Array dup()","url":"/ddoc/phobos/std/container/array/Array.dup.html"},{"doc":"Returns the number of elements in the array.","kind":"method","module":"std.container.array","name":"length","package":"phobos","parentType":"Array","signature":"size_t length()","url":"/ddoc/phobos/std/container/array/Array.length.html"},{"doc":"Returns: The maximum number of elements the array can store without reallocating memory and invalidating iterators upon insertion.","kind":"method","module":"std.container.array","name":"capacity","package":"phobos","parentType":"Array","signature":"size_t capacity()","url":"/ddoc/phobos/std/container/array/Array.capacity.html"},{"doc":"Ensures sufficient capacity to accommodate `e` _elements. If `e < capacity`, this method does nothing.","kind":"method","module":"std.container.array","name":"reserve","package":"phobos","parentType":"Array","signature":"void reserve(size_t e)","url":"/ddoc/phobos/std/container/array/Array.reserve.html"},{"doc":"Returns: A range that iterates over all elements of the array in forward order.","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"Returns: A range that iterates the array between two specified positions.","kind":"method","module":"std.container.array","name":"opSlice","package":"phobos","parentType":"Array","signature":"Range opSlice(size_t a,  size_t b)","url":"/ddoc/phobos/std/container/array/Array.opSlice.html"},{"doc":"Returns: The first element of the array.","kind":"method","module":"std.container.array","name":"front","package":"phobos","parentType":"Array","signature":"bool front()","url":"/ddoc/phobos/std/container/array/Array.front.html"},{"doc":"Ditto","kind":"method","module":"std.container.array","name":"front","package":"phobos","parentType":"Array","signature":"void front(bool  value)","url":"/ddoc/phobos/std/container/array/Array.front.html"},{"doc":"Returns: The last element of the array.","kind":"method","module":"std.container.array","name":"back","package":"phobos","parentType":"Array","signature":"bool back()","url":"/ddoc/phobos/std/container/array/Array.back.html"},{"doc":"Ditto","kind":"method","module":"std.container.array","name":"back","package":"phobos","parentType":"Array","signature":"void back(bool  value)","url":"/ddoc/phobos/std/container/array/Array.back.html"},{"doc":"Indexing operators yielding or modifyng the value at the specified index.","kind":"method","module":"std.container.array","name":"opIndex","package":"phobos","parentType":"Array","signature":"bool opIndex(size_t i)","url":"/ddoc/phobos/std/container/array/Array.opIndex.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opIndexAssign","package":"phobos","parentType":"Array","signature":"void opIndexAssign(bool  value,  size_t i)","url":"/ddoc/phobos/std/container/array/Array.opIndexAssign.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"opIndexOpAssign","package":"phobos","parentType":"Array","signature":"void opIndexOpAssign(string op)(bool  value,  size_t i)","url":"/ddoc/phobos/std/container/array/Array.opIndexOpAssign.html"},{"doc":"Ditto","kind":"method","module":"std.container.array","name":"moveAt","package":"phobos","parentType":"Array","signature":"T moveAt(size_t i)","url":"/ddoc/phobos/std/container/array/Array.moveAt.html"},{"doc":"Returns: A new array which is a concatenation of `this` and its argument.","kind":"method","module":"std.container.array","name":"opBinary","package":"phobos","parentType":"Array","signature":"Array!bool opBinary(string op,  Stuff)(Stuff rhs) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/array/Array.opBinary.html"},{"doc":"Forwards to `insertBack`.","kind":"method","module":"std.container.array","name":"opOpAssign","package":"phobos","parentType":"Array","signature":"Array!bool opOpAssign(string op,  Stuff)(Stuff stuff) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/array/Array.opOpAssign.html"},{"doc":"Removes all the elements from the array and releases allocated memory.","kind":"method","module":"std.container.array","name":"clear","package":"phobos","parentType":"Array","signature":"void clear()","url":"/ddoc/phobos/std/container/array/Array.clear.html"},{"doc":"Sets the number of elements in the array to `newLength`. If `newLength` is greater than `length`, the new elements are added to the end of the arra...","kind":"method","module":"std.container.array","name":"length","package":"phobos","parentType":"Array","signature":"void length(size_t newLength)","url":"/ddoc/phobos/std/container/array/Array.length.html"},{"doc":"Removes the last element from the array and returns it. Both stable and non-stable versions behave the same and guarantee that ranges iterating ove...","kind":"method","module":"std.container.array","name":"removeAny","package":"phobos","parentType":"Array","signature":"T removeAny()","url":"/ddoc/phobos/std/container/array/Array.removeAny.html"},{"doc":"Inserts the specified elements at the back of the array. `stuff` can be a value convertible to `bool` or a range of objects convertible to `bool`.","kind":"method","module":"std.container.array","name":"insertBack","package":"phobos","parentType":"Array","signature":"size_t insertBack(Stuff)(Stuff stuff) if (is(Stuff :  bool))","url":"/ddoc/phobos/std/container/array/Array.insertBack.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"insertBack","package":"phobos","parentType":"Array","signature":"size_t insertBack(Stuff)(Stuff stuff) if (isInputRange!Stuff &&  is(ElementType!Stuff :  bool))","url":"/ddoc/phobos/std/container/array/Array.insertBack.html"},{"doc":"Removes the value from the back of the array. Both stable and non-stable versions behave the same and guarantee that ranges iterating over the arra...","kind":"method","module":"std.container.array","name":"removeBack","package":"phobos","parentType":"Array","signature":"void removeBack()","url":"/ddoc/phobos/std/container/array/Array.removeBack.html"},{"doc":"Removes `howMany` values from the back of the array. Unlike the unparameterized versions above, these functions do not throw if they could not remo...","kind":"method","module":"std.container.array","name":"removeBack","package":"phobos","parentType":"Array","signature":"size_t removeBack(size_t howMany)","url":"/ddoc/phobos/std/container/array/Array.removeBack.html"},{"doc":"Inserts `stuff` before, after, or instead range `r`, which must be a valid range previously extracted from this array. `stuff` can be a value conve...","kind":"method","module":"std.container.array","name":"insertBefore","package":"phobos","parentType":"Array","signature":"size_t insertBefore(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/array/Array.insertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"insertAfter","package":"phobos","parentType":"Array","signature":"size_t insertAfter(Stuff)(Range r,  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T)  ||\n             isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/array/Array.insertAfter.html"},{"doc":"ditto","kind":"method","module":"std.container.array","name":"replace","package":"phobos","parentType":"Array","signature":"size_t replace(Stuff)(Range r,  Stuff stuff) if (is(Stuff :  bool))","url":"/ddoc/phobos/std/container/array/Array.replace.html"},{"doc":"Removes all elements belonging to `r`, which must be a range obtained originally from this array.","kind":"method","module":"std.container.array","name":"linearRemove","package":"phobos","parentType":"Array","signature":"Range linearRemove(Range r)","url":"/ddoc/phobos/std/container/array/Array.linearRemove.html"},{"doc":"This module provides a `BinaryHeap` (aka priority queue) adaptor that makes a binary heap out of any user-provided random-access range.","kind":"module","module":"std.container.binaryheap","name":"std.container.binaryheap","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/binaryheap.html"},{"doc":"Convenience function that returns a `BinaryHeap!Store` object initialized with `s` and `initialSize`.","kind":"function","module":"std.container.binaryheap","name":"heapify","package":"phobos","parentType":"","signature":"BinaryHeap!(Store,  less) heapify(alias  less =  \"a < b\",  Store)(Store s,\n         size_t initialSize =  size_t.max)","url":"/ddoc/phobos/std/container/binaryheap/heapify.html"},{"doc":"Implements a $(HTTP en.wikipedia.org/wiki/Binary_heap, binary heap) container on top of a given random-access range type (usually $(D T[])) or a ra...","kind":"struct","module":"std.container.binaryheap","name":"BinaryHeap","package":"phobos","parentType":"","signature":"BinaryHeap(Store,  alias  less =  \"a < b\") if (isRandomAccessRange!(Store)  ||  isRandomAccessRange!(typeof(Store.init[])))","url":"/ddoc/phobos/std/container/binaryheap.html#BinaryHeap"},{"doc":"","kind":"method","module":"std.container.binaryheap","name":"_store","package":"phobos","parentType":"BinaryHeap","signature":"Store _store()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap._store.html"},{"doc":"","kind":"method","module":"std.container.binaryheap","name":"_length","package":"phobos","parentType":"BinaryHeap","signature":"size_t _length()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap._length.html"},{"doc":"","kind":"method","module":"std.container.binaryheap","name":"assertValid","package":"phobos","parentType":"BinaryHeap","signature":"void assertValid()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.assertValid.html"},{"doc":"","kind":"method","module":"std.container.binaryheap","name":"pop","package":"phobos","parentType":"BinaryHeap","signature":"void pop(Store store)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.pop.html"},{"doc":"Takes ownership of a store. After this, manipulating `s` may make the heap work incorrectly.","kind":"method","module":"std.container.binaryheap","name":"acquire","package":"phobos","parentType":"BinaryHeap","signature":"void acquire(Store s,  size_t initialSize =  size_t.max)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.acquire.html"},{"doc":"Takes ownership of a store assuming it already was organized as a heap.","kind":"method","module":"std.container.binaryheap","name":"assume","package":"phobos","parentType":"BinaryHeap","signature":"void assume(Store s,  size_t initialSize =  size_t.max)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.assume.html"},{"doc":"Clears the heap. Returns the portion of the store from `0` up to `length`, which satisfies the $(LINK2 https://en.wikipedia.org/wiki/Heap_(data_str...","kind":"method","module":"std.container.binaryheap","name":"release","package":"phobos","parentType":"BinaryHeap","signature":"auto release()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.release.html"},{"doc":"Returns `true` if the heap is _empty, `false` otherwise.","kind":"method","module":"std.container.binaryheap","name":"empty","package":"phobos","parentType":"BinaryHeap","signature":"bool empty()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.empty.html"},{"doc":"Returns the _length of the heap.","kind":"method","module":"std.container.binaryheap","name":"length","package":"phobos","parentType":"BinaryHeap","signature":"size_t length()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.length.html"},{"doc":"Returns the _capacity of the heap, which is the length of the underlying store (if the store is a range) or the _capacity of the underlying store (...","kind":"method","module":"std.container.binaryheap","name":"capacity","package":"phobos","parentType":"BinaryHeap","signature":"size_t capacity()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.capacity.html"},{"doc":"Returns a copy of the _front of the heap, which is the largest element according to `less`.","kind":"method","module":"std.container.binaryheap","name":"front","package":"phobos","parentType":"BinaryHeap","signature":"ElementType!Store front()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.front.html"},{"doc":"Clears the heap by detaching it from the underlying store.","kind":"method","module":"std.container.binaryheap","name":"clear","package":"phobos","parentType":"BinaryHeap","signature":"void clear()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.clear.html"},{"doc":"Inserts `value` into the store. If the underlying store is a range and $(D length == capacity), throws an exception.","kind":"method","module":"std.container.binaryheap","name":"insert","package":"phobos","parentType":"BinaryHeap","signature":"size_t insert(ElementType!Store value)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.insert.html"},{"doc":"Removes the largest element from the heap.","kind":"method","module":"std.container.binaryheap","name":"removeFront","package":"phobos","parentType":"BinaryHeap","signature":"void removeFront()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.removeFront.html"},{"doc":"Removes the largest element from the heap and returns a copy of it. The element still resides in the heap's store. For performance reasons you may ...","kind":"method","module":"std.container.binaryheap","name":"removeAny","package":"phobos","parentType":"BinaryHeap","signature":"ElementType!Store removeAny()","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.removeAny.html"},{"doc":"Replaces the largest element in the store with `value`.","kind":"method","module":"std.container.binaryheap","name":"replaceFront","package":"phobos","parentType":"BinaryHeap","signature":"void replaceFront(ElementType!Store value)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.replaceFront.html"},{"doc":"If the heap has room to grow, inserts `value` into the store and returns `true`. Otherwise, if $(D less(value, front)), calls $(D replaceFront(valu...","kind":"method","module":"std.container.binaryheap","name":"conditionalInsert","package":"phobos","parentType":"BinaryHeap","signature":"bool conditionalInsert(ElementType!Store value)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.conditionalInsert.html"},{"doc":"Swapping is allowed if the heap is full. If $(D less(value, front)), the method exchanges store.front and value and returns `true`. Otherwise, it l...","kind":"method","module":"std.container.binaryheap","name":"conditionalSwap","package":"phobos","parentType":"BinaryHeap","signature":"bool conditionalSwap(ref  ElementType!Store value)","url":"/ddoc/phobos/std/container/binaryheap/BinaryHeap.conditionalSwap.html"},{"doc":"This module implements a generic doubly-linked list container. It can be used as a queue, dequeue or stack.","kind":"module","module":"std.container.dlist","name":"std.container.dlist","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/dlist.html"},{"doc":"","kind":"struct","module":"std.container.dlist","name":"BaseNode","package":"phobos","parentType":"","signature":"BaseNode","url":"/ddoc/phobos/std/container/dlist.html#BaseNode"},{"doc":"","kind":"method","module":"std.container.dlist","name":"getPayload","package":"phobos","parentType":"BaseNode","signature":"inout(T) getPayload(T)()","url":"/ddoc/phobos/std/container/dlist/BaseNode.getPayload.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"connect","package":"phobos","parentType":"BaseNode","signature":"void connect(BaseNode *  p,  BaseNode *  n)","url":"/ddoc/phobos/std/container/dlist/BaseNode.connect.html"},{"doc":"","kind":"struct","module":"std.container.dlist","name":"DRange","package":"phobos","parentType":"","signature":"DRange","url":"/ddoc/phobos/std/container/dlist.html#DRange"},{"doc":"","kind":"method","module":"std.container.dlist","name":"empty","package":"phobos","parentType":"DRange","signature":"bool empty()","url":"/ddoc/phobos/std/container/dlist/DRange.empty.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"front","package":"phobos","parentType":"DRange","signature":"BaseNode * front()","url":"/ddoc/phobos/std/container/dlist/DRange.front.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"popFront","package":"phobos","parentType":"DRange","signature":"void popFront()","url":"/ddoc/phobos/std/container/dlist/DRange.popFront.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"back","package":"phobos","parentType":"DRange","signature":"BaseNode * back()","url":"/ddoc/phobos/std/container/dlist/DRange.back.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"popBack","package":"phobos","parentType":"DRange","signature":"void popBack()","url":"/ddoc/phobos/std/container/dlist/DRange.popBack.html"},{"doc":"Forward range primitive.","kind":"method","module":"std.container.dlist","name":"save","package":"phobos","parentType":"DRange","signature":"DRange save()","url":"/ddoc/phobos/std/container/dlist/DRange.save.html"},{"doc":"Implements a doubly-linked list.","kind":"struct","module":"std.container.dlist","name":"DList","package":"phobos","parentType":"","signature":"DList(T)","url":"/ddoc/phobos/std/container/dlist.html#DList"},{"doc":"","kind":"method","module":"std.container.dlist","name":"createNode","package":"phobos","parentType":"DList","signature":"BaseNode * createNode(Stuff)(auto  ref  Stuff arg,  BaseNode *  prev =  null,  BaseNode *  next =  null)","url":"/ddoc/phobos/std/container/dlist/DList.createNode.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"initialize","package":"phobos","parentType":"DList","signature":"void initialize()","url":"/ddoc/phobos/std/container/dlist/DList.initialize.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"_first","package":"phobos","parentType":"DList","signature":"inout(BaseNode *) _first()","url":"/ddoc/phobos/std/container/dlist/DList._first.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"_last","package":"phobos","parentType":"DList","signature":"inout(BaseNode *) _last()","url":"/ddoc/phobos/std/container/dlist/DList._last.html"},{"doc":"Comparison for equality.","kind":"method","module":"std.container.dlist","name":"opEquals","package":"phobos","parentType":"DList","signature":"bool opEquals()(ref  const  DList rhs) if (is(typeof(front ==  front)))","url":"/ddoc/phobos/std/container/dlist/DList.opEquals.html"},{"doc":"Property returning `true` if and only if the container has no elements.","kind":"method","module":"std.container.dlist","name":"empty","package":"phobos","parentType":"DList","signature":"bool empty()","url":"/ddoc/phobos/std/container/dlist/DList.empty.html"},{"doc":"Removes all contents from the `DList`.","kind":"method","module":"std.container.dlist","name":"clear","package":"phobos","parentType":"DList","signature":"void clear()","url":"/ddoc/phobos/std/container/dlist/DList.clear.html"},{"doc":"Duplicates the container. The elements themselves are not transitively duplicated.","kind":"method","module":"std.container.dlist","name":"dup","package":"phobos","parentType":"DList","signature":"DList dup()","url":"/ddoc/phobos/std/container/dlist/DList.dup.html"},{"doc":"Returns a range that iterates over all elements of the container, in forward order.","kind":"method","module":"std.container.dlist","name":"opSlice","package":"phobos","parentType":"DList","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/dlist/DList.opSlice.html"},{"doc":"Forward to `opSlice().front`.","kind":"method","module":"std.container.dlist","name":"front","package":"phobos","parentType":"DList","signature":"inout(T) front()","url":"/ddoc/phobos/std/container/dlist/DList.front.html"},{"doc":"Forward to `opSlice().back`.","kind":"method","module":"std.container.dlist","name":"back","package":"phobos","parentType":"DList","signature":"inout(T) back()","url":"/ddoc/phobos/std/container/dlist/DList.back.html"},{"doc":"Returns a new `DList` that's the concatenation of `this` and its argument `rhs`.","kind":"method","module":"std.container.dlist","name":"opBinary","package":"phobos","parentType":"DList","signature":"DList opBinary(string op,  Stuff)(Stuff rhs) if (op ==  \"~\" &&  is(typeof(insertBack(rhs))))","url":"/ddoc/phobos/std/container/dlist/DList.opBinary.html"},{"doc":"Returns a new `DList` that's the concatenation of the argument `lhs` and `this`.","kind":"method","module":"std.container.dlist","name":"opBinaryRight","package":"phobos","parentType":"DList","signature":"DList opBinaryRight(string op,  Stuff)(Stuff lhs) if (op ==  \"~\" &&  is(typeof(insertFront(lhs))))","url":"/ddoc/phobos/std/container/dlist/DList.opBinaryRight.html"},{"doc":"Appends the contents of the argument `rhs` into `this`.","kind":"method","module":"std.container.dlist","name":"opOpAssign","package":"phobos","parentType":"DList","signature":"DList opOpAssign(string op,  Stuff)(Stuff rhs) if (op ==  \"~\" &&  is(typeof(insertBack(rhs))))","url":"/ddoc/phobos/std/container/dlist/DList.opOpAssign.html"},{"doc":"Inserts `stuff` to the front/back of the container. `stuff` can be a value convertible to `T` or a range of objects convertible to $(D T). The stab...","kind":"method","module":"std.container.dlist","name":"insertFront","package":"phobos","parentType":"DList","signature":"size_t insertFront(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/dlist/DList.insertFront.html"},{"doc":"ditto","kind":"method","module":"std.container.dlist","name":"insertBack","package":"phobos","parentType":"DList","signature":"size_t insertBack(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/dlist/DList.insertBack.html"},{"doc":"Inserts `stuff` after range `r`, which must be a non-empty range previously extracted from this container.","kind":"method","module":"std.container.dlist","name":"insertBefore","package":"phobos","parentType":"DList","signature":"size_t insertBefore(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/dlist/DList.insertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container.dlist","name":"insertAfter","package":"phobos","parentType":"DList","signature":"size_t insertAfter(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/dlist/DList.insertAfter.html"},{"doc":"Picks one value in an unspecified position in the container, removes it from the container, and returns it. The stable version behaves the same, bu...","kind":"method","module":"std.container.dlist","name":"removeAny","package":"phobos","parentType":"DList","signature":"T removeAny()","url":"/ddoc/phobos/std/container/dlist/DList.removeAny.html"},{"doc":"Removes the value at the front/back of the container. The stable version behaves the same, but guarantees that ranges iterating over the container ...","kind":"method","module":"std.container.dlist","name":"removeFront","package":"phobos","parentType":"DList","signature":"void removeFront()","url":"/ddoc/phobos/std/container/dlist/DList.removeFront.html"},{"doc":"ditto","kind":"method","module":"std.container.dlist","name":"removeBack","package":"phobos","parentType":"DList","signature":"void removeBack()","url":"/ddoc/phobos/std/container/dlist/DList.removeBack.html"},{"doc":"Removes `howMany` values at the front or back of the container. Unlike the unparameterized versions above, these functions do not throw if they cou...","kind":"method","module":"std.container.dlist","name":"removeFront","package":"phobos","parentType":"DList","signature":"size_t removeFront(size_t howMany)","url":"/ddoc/phobos/std/container/dlist/DList.removeFront.html"},{"doc":"ditto","kind":"method","module":"std.container.dlist","name":"removeBack","package":"phobos","parentType":"DList","signature":"size_t removeBack(size_t howMany)","url":"/ddoc/phobos/std/container/dlist/DList.removeBack.html"},{"doc":"Removes all elements belonging to `r`, which must be a range obtained originally from this container.","kind":"method","module":"std.container.dlist","name":"remove","package":"phobos","parentType":"DList","signature":"Range remove(Range r)","url":"/ddoc/phobos/std/container/dlist/DList.remove.html"},{"doc":"ditto","kind":"method","module":"std.container.dlist","name":"linearRemove","package":"phobos","parentType":"DList","signature":"Range linearRemove(Range r)","url":"/ddoc/phobos/std/container/dlist/DList.linearRemove.html"},{"doc":"Removes first element of `r`, wich must be a range obtained originally from this container, from both DList instance and range `r`.","kind":"method","module":"std.container.dlist","name":"popFirstOf","package":"phobos","parentType":"DList","signature":"void popFirstOf(ref  Range r)","url":"/ddoc/phobos/std/container/dlist/DList.popFirstOf.html"},{"doc":"Removes last element of `r`, wich must be a range obtained originally from this container, from both DList instance and range `r`.","kind":"method","module":"std.container.dlist","name":"popLastOf","package":"phobos","parentType":"DList","signature":"void popLastOf(ref  Range r)","url":"/ddoc/phobos/std/container/dlist/DList.popLastOf.html"},{"doc":"`linearRemove` functions as `remove`, but also accepts ranges that are result the of a `take` operation. This is a convenient way to remove a fixed...","kind":"method","module":"std.container.dlist","name":"linearRemove","package":"phobos","parentType":"DList","signature":"Range linearRemove(Take!Range r)","url":"/ddoc/phobos/std/container/dlist/DList.linearRemove.html"},{"doc":"Removes the first occurence of an element from the list in linear time.","kind":"method","module":"std.container.dlist","name":"linearRemoveElement","package":"phobos","parentType":"DList","signature":"bool linearRemoveElement(T value)","url":"/ddoc/phobos/std/container/dlist/DList.linearRemoveElement.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"findNodeByValue","package":"phobos","parentType":"DList","signature":"BaseNode * findNodeByValue(BaseNode *  n,  T value)","url":"/ddoc/phobos/std/container/dlist/DList.findNodeByValue.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"insertBeforeNode","package":"phobos","parentType":"DList","signature":"size_t insertBeforeNode(Stuff)(BaseNode *  n,  ref  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/dlist/DList.insertBeforeNode.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"insertBeforeNode","package":"phobos","parentType":"DList","signature":"size_t insertBeforeNode(Stuff)(BaseNode *  n,  ref  Stuff stuff) if (isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/dlist/DList.insertBeforeNode.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"insertAfterNode","package":"phobos","parentType":"DList","signature":"size_t insertAfterNode(Stuff)(BaseNode *  n,  ref  Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/dlist/DList.insertAfterNode.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"insertAfterNode","package":"phobos","parentType":"DList","signature":"size_t insertAfterNode(Stuff)(BaseNode *  n,  ref  Stuff stuff) if (isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/dlist/DList.insertAfterNode.html"},{"doc":"","kind":"method","module":"std.container.dlist","name":"createRange","package":"phobos","parentType":"DList","signature":"Range createRange(Stuff)(ref  Stuff stuff,  ref  size_t result)","url":"/ddoc/phobos/std/container/dlist/DList.createRange.html"},{"doc":"This module defines generic containers.","kind":"module","module":"std.container","name":"std.container","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container.html"},{"doc":"","kind":"struct","module":"std.container","name":"TotalContainer","package":"phobos","parentType":"","signature":"TotalContainer(T)","url":"/ddoc/phobos/std/container.html#TotalContainer"},{"doc":"Property returning `true` if and only if the container has no elements.","kind":"method","module":"std.container","name":"empty","package":"phobos","parentType":"TotalContainer","signature":"bool empty()","url":"/ddoc/phobos/std/container/TotalContainer.empty.html"},{"doc":"Returns a duplicate of the container. The elements themselves are not transitively duplicated.","kind":"method","module":"std.container","name":"dup","package":"phobos","parentType":"TotalContainer","signature":"TotalContainer dup()","url":"/ddoc/phobos/std/container/TotalContainer.dup.html"},{"doc":"Returns the number of elements in the container.","kind":"method","module":"std.container","name":"length","package":"phobos","parentType":"TotalContainer","signature":"size_t length()","url":"/ddoc/phobos/std/container/TotalContainer.length.html"},{"doc":"Returns the maximum number of elements the container can store without (a) allocating memory, (b) invalidating iterators upon insertion.","kind":"method","module":"std.container","name":"capacity","package":"phobos","parentType":"TotalContainer","signature":"size_t capacity()","url":"/ddoc/phobos/std/container/TotalContainer.capacity.html"},{"doc":"Ensures sufficient capacity to accommodate `n` elements.","kind":"method","module":"std.container","name":"reserve","package":"phobos","parentType":"TotalContainer","signature":"void reserve(size_t e)","url":"/ddoc/phobos/std/container/TotalContainer.reserve.html"},{"doc":"Returns a range that iterates over all elements of the container, in a container-defined order. The container should choose the most convenient and...","kind":"method","module":"std.container","name":"opSlice","package":"phobos","parentType":"TotalContainer","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/TotalContainer.opSlice.html"},{"doc":"Returns a range that iterates the container between two specified positions.","kind":"method","module":"std.container","name":"opSlice","package":"phobos","parentType":"TotalContainer","signature":"Range opSlice(size_t a,  size_t b)","url":"/ddoc/phobos/std/container/TotalContainer.opSlice.html"},{"doc":"Forward to `opSlice().front` and `opSlice().back`, respectively.","kind":"method","module":"std.container","name":"front","package":"phobos","parentType":"TotalContainer","signature":"T front()","url":"/ddoc/phobos/std/container/TotalContainer.front.html"},{"doc":"Ditto","kind":"method","module":"std.container","name":"front","package":"phobos","parentType":"TotalContainer","signature":"void front(T value)","url":"/ddoc/phobos/std/container/TotalContainer.front.html"},{"doc":"Ditto","kind":"method","module":"std.container","name":"moveFront","package":"phobos","parentType":"TotalContainer","signature":"T moveFront()","url":"/ddoc/phobos/std/container/TotalContainer.moveFront.html"},{"doc":"Ditto","kind":"method","module":"std.container","name":"back","package":"phobos","parentType":"TotalContainer","signature":"T back()","url":"/ddoc/phobos/std/container/TotalContainer.back.html"},{"doc":"Ditto","kind":"method","module":"std.container","name":"back","package":"phobos","parentType":"TotalContainer","signature":"void back(T value)","url":"/ddoc/phobos/std/container/TotalContainer.back.html"},{"doc":"Ditto","kind":"method","module":"std.container","name":"moveBack","package":"phobos","parentType":"TotalContainer","signature":"T moveBack()","url":"/ddoc/phobos/std/container/TotalContainer.moveBack.html"},{"doc":"Indexing operators yield or modify the value at a specified index.","kind":"method","module":"std.container","name":"opIndex","package":"phobos","parentType":"TotalContainer","signature":"T opIndex(KeyType)","url":"/ddoc/phobos/std/container/TotalContainer.opIndex.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"opIndexAssign","package":"phobos","parentType":"TotalContainer","signature":"void opIndexAssign(KeyType i,  T value)","url":"/ddoc/phobos/std/container/TotalContainer.opIndexAssign.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"opIndexUnary","package":"phobos","parentType":"TotalContainer","signature":"T opIndexUnary(string op)(KeyType i)","url":"/ddoc/phobos/std/container/TotalContainer.opIndexUnary.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"opIndexOpAssign","package":"phobos","parentType":"TotalContainer","signature":"void opIndexOpAssign(string op)(KeyType i,  T value)","url":"/ddoc/phobos/std/container/TotalContainer.opIndexOpAssign.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"moveAt","package":"phobos","parentType":"TotalContainer","signature":"T moveAt(KeyType i)","url":"/ddoc/phobos/std/container/TotalContainer.moveAt.html"},{"doc":"$(D k in container) returns true if the given key is in the container.","kind":"method","module":"std.container","name":"opBinaryRight","package":"phobos","parentType":"TotalContainer","signature":"bool opBinaryRight(string op)(KeyType k) if (op ==  \"in\")","url":"/ddoc/phobos/std/container/TotalContainer.opBinaryRight.html"},{"doc":"Returns a range of all elements containing `k` (could be empty or a singleton range).","kind":"method","module":"std.container","name":"equalRange","package":"phobos","parentType":"TotalContainer","signature":"Range equalRange(KeyType k)","url":"/ddoc/phobos/std/container/TotalContainer.equalRange.html"},{"doc":"Returns a range of all elements with keys less than `k` (could be empty or a singleton range). Only defined by containers that store data sorted at...","kind":"method","module":"std.container","name":"lowerBound","package":"phobos","parentType":"TotalContainer","signature":"Range lowerBound(KeyType k)","url":"/ddoc/phobos/std/container/TotalContainer.lowerBound.html"},{"doc":"Returns a range of all elements with keys larger than `k` (could be empty or a singleton range).  Only defined by containers that store data sorted...","kind":"method","module":"std.container","name":"upperBound","package":"phobos","parentType":"TotalContainer","signature":"Range upperBound(KeyType k)","url":"/ddoc/phobos/std/container/TotalContainer.upperBound.html"},{"doc":"Returns a new container that's the concatenation of `this` and its argument. `opBinaryRight` is only defined if `Stuff` does not define `opBinary`.","kind":"method","module":"std.container","name":"opBinary","package":"phobos","parentType":"TotalContainer","signature":"TotalContainer opBinary(string op)(Stuff rhs) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/TotalContainer.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"opBinaryRight","package":"phobos","parentType":"TotalContainer","signature":"TotalContainer opBinaryRight(string op)(Stuff lhs) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/TotalContainer.opBinaryRight.html"},{"doc":"Forwards to $(D insertAfter(this[], stuff)).","kind":"method","module":"std.container","name":"opOpAssign","package":"phobos","parentType":"TotalContainer","signature":"void opOpAssign(string op)(Stuff stuff) if (op ==  \"~\")","url":"/ddoc/phobos/std/container/TotalContainer.opOpAssign.html"},{"doc":"Removes all contents from the container. The container decides how $(D capacity) is affected.","kind":"method","module":"std.container","name":"clear","package":"phobos","parentType":"TotalContainer","signature":"void clear()","url":"/ddoc/phobos/std/container/TotalContainer.clear.html"},{"doc":"Sets the number of elements in the container to `newSize`. If $(D newSize) is greater than `length`, the added elements are added to unspecified po...","kind":"method","module":"std.container","name":"length","package":"phobos","parentType":"TotalContainer","signature":"void length(size_t newLength)","url":"/ddoc/phobos/std/container/TotalContainer.length.html"},{"doc":"Inserts `stuff` in an unspecified position in the container. Implementations should choose whichever insertion means is the most advantageous for t...","kind":"method","module":"std.container","name":"insert","package":"phobos","parentType":"TotalContainer","signature":"size_t insert(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.insert.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableInsert","package":"phobos","parentType":"TotalContainer","signature":"size_t stableInsert(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableInsert.html"},{"doc":"Same as `insert(stuff)` and `stableInsert(stuff)` respectively, but relax the complexity constraint to linear.","kind":"method","module":"std.container","name":"linearInsert","package":"phobos","parentType":"TotalContainer","signature":"size_t linearInsert(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.linearInsert.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableLinearInsert","package":"phobos","parentType":"TotalContainer","signature":"size_t stableLinearInsert(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableLinearInsert.html"},{"doc":"Picks one value in an unspecified position in the container, removes it from the container, and returns it. Implementations should pick the value t...","kind":"method","module":"std.container","name":"removeAny","package":"phobos","parentType":"TotalContainer","signature":"T removeAny()","url":"/ddoc/phobos/std/container/TotalContainer.removeAny.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemoveAny","package":"phobos","parentType":"TotalContainer","signature":"T stableRemoveAny()","url":"/ddoc/phobos/std/container/TotalContainer.stableRemoveAny.html"},{"doc":"Inserts `value` to the front or back of the container. `stuff` can be a value convertible to the container's element type or a range of values conv...","kind":"method","module":"std.container","name":"insertFront","package":"phobos","parentType":"TotalContainer","signature":"size_t insertFront(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.insertFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableInsertFront","package":"phobos","parentType":"TotalContainer","signature":"size_t stableInsertFront(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableInsertFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"insertBack","package":"phobos","parentType":"TotalContainer","signature":"size_t insertBack(Stuff)(Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.insertBack.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableInsertBack","package":"phobos","parentType":"TotalContainer","signature":"size_t stableInsertBack(T value)","url":"/ddoc/phobos/std/container/TotalContainer.stableInsertBack.html"},{"doc":"Removes the value at the front or back of the container. The stable version behaves the same, but guarantees that ranges iterating over the contain...","kind":"method","module":"std.container","name":"removeFront","package":"phobos","parentType":"TotalContainer","signature":"void removeFront()","url":"/ddoc/phobos/std/container/TotalContainer.removeFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemoveFront","package":"phobos","parentType":"TotalContainer","signature":"void stableRemoveFront()","url":"/ddoc/phobos/std/container/TotalContainer.stableRemoveFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"removeBack","package":"phobos","parentType":"TotalContainer","signature":"void removeBack()","url":"/ddoc/phobos/std/container/TotalContainer.removeBack.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemoveBack","package":"phobos","parentType":"TotalContainer","signature":"void stableRemoveBack()","url":"/ddoc/phobos/std/container/TotalContainer.stableRemoveBack.html"},{"doc":"Removes `howMany` values at the front or back of the container. Unlike the unparameterized versions above, these functions do not throw if they cou...","kind":"method","module":"std.container","name":"removeFront","package":"phobos","parentType":"TotalContainer","signature":"size_t removeFront(size_t howMany)","url":"/ddoc/phobos/std/container/TotalContainer.removeFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemoveFront","package":"phobos","parentType":"TotalContainer","signature":"size_t stableRemoveFront(size_t howMany)","url":"/ddoc/phobos/std/container/TotalContainer.stableRemoveFront.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"removeBack","package":"phobos","parentType":"TotalContainer","signature":"size_t removeBack(size_t howMany)","url":"/ddoc/phobos/std/container/TotalContainer.removeBack.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemoveBack","package":"phobos","parentType":"TotalContainer","signature":"size_t stableRemoveBack(size_t howMany)","url":"/ddoc/phobos/std/container/TotalContainer.stableRemoveBack.html"},{"doc":"Removes all values corresponding to key `k`.","kind":"method","module":"std.container","name":"removeKey","package":"phobos","parentType":"TotalContainer","signature":"size_t removeKey(KeyType k)","url":"/ddoc/phobos/std/container/TotalContainer.removeKey.html"},{"doc":"Inserts `stuff` before, after, or instead range `r`, which must be a valid range previously extracted from this container. `stuff` can be a value c...","kind":"method","module":"std.container","name":"insertBefore","package":"phobos","parentType":"TotalContainer","signature":"size_t insertBefore(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.insertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableInsertBefore","package":"phobos","parentType":"TotalContainer","signature":"size_t stableInsertBefore(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableInsertBefore.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"insertAfter","package":"phobos","parentType":"TotalContainer","signature":"size_t insertAfter(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.insertAfter.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableInsertAfter","package":"phobos","parentType":"TotalContainer","signature":"size_t stableInsertAfter(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableInsertAfter.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"replace","package":"phobos","parentType":"TotalContainer","signature":"size_t replace(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.replace.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableReplace","package":"phobos","parentType":"TotalContainer","signature":"size_t stableReplace(Stuff)(Range r,  Stuff stuff)","url":"/ddoc/phobos/std/container/TotalContainer.stableReplace.html"},{"doc":"Removes all elements belonging to `r`, which must be a range obtained originally from this container. The stable version behaves the same, but guar...","kind":"method","module":"std.container","name":"remove","package":"phobos","parentType":"TotalContainer","signature":"Range remove(Range r)","url":"/ddoc/phobos/std/container/TotalContainer.remove.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableRemove","package":"phobos","parentType":"TotalContainer","signature":"Range stableRemove(Range r)","url":"/ddoc/phobos/std/container/TotalContainer.stableRemove.html"},{"doc":"Same as `remove` above, but has complexity relaxed to linear.","kind":"method","module":"std.container","name":"linearRemove","package":"phobos","parentType":"TotalContainer","signature":"Range linearRemove(Range r)","url":"/ddoc/phobos/std/container/TotalContainer.linearRemove.html"},{"doc":"ditto","kind":"method","module":"std.container","name":"stableLinearRemove","package":"phobos","parentType":"TotalContainer","signature":"Range stableLinearRemove(Range r)","url":"/ddoc/phobos/std/container/TotalContainer.stableLinearRemove.html"},{"doc":"This module implements a red-black tree container.","kind":"module","module":"std.container.rbtree","name":"std.container.rbtree","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/rbtree.html"},{"doc":"Convenience function for creating a `RedBlackTree!E` from a list of values.","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(E)(E[]  elems...)","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(bool  allowDuplicates,  E)(E[]  elems...)","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(alias  less,  E)(E[]  elems...) if (is(typeof(binaryFun!less(E.init,  E.init))))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(alias  less,  bool  allowDuplicates,  E)(E[]  elems...) if (is(typeof(binaryFun!less(E.init,  E.init))))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(Stuff)(Stuff range) if (isInputRange!Stuff && !isArray!(Stuff))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(bool  allowDuplicates,  Stuff)(Stuff range) if (isInputRange!Stuff && !isArray!(Stuff))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(alias  less,  Stuff)(Stuff range) if (  is(typeof(binaryFun!less((ElementType!Stuff).init, (ElementType!Stuff).init)))\n     &&  isInputRange!Stuff && !isArray!(Stuff))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"Ditto","kind":"function","module":"std.container.rbtree","name":"redBlackTree","package":"phobos","parentType":"","signature":"auto redBlackTree(alias  less,  bool  allowDuplicates,  Stuff)(Stuff range) if (  is(typeof(binaryFun!less((ElementType!Stuff).init, (ElementType!Stuff).init)))\n     &&  isInputRange!Stuff && !isArray!(Stuff))","url":"/ddoc/phobos/std/container/rbtree/redBlackTree.html"},{"doc":"","kind":"struct","module":"std.container.rbtree","name":"RBNode","package":"phobos","parentType":"","signature":"RBNode(V)","url":"/ddoc/phobos/std/container/rbtree.html#RBNode"},{"doc":"Get the left child","kind":"method","module":"std.container.rbtree","name":"left","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * left()","url":"/ddoc/phobos/std/container/rbtree/RBNode.left.html"},{"doc":"Get the right child","kind":"method","module":"std.container.rbtree","name":"right","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * right()","url":"/ddoc/phobos/std/container/rbtree/RBNode.right.html"},{"doc":"Get the parent","kind":"method","module":"std.container.rbtree","name":"parent","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * parent()","url":"/ddoc/phobos/std/container/rbtree/RBNode.parent.html"},{"doc":"Set the left child.  Also updates the new child's parent node.  This does not update the previous child.","kind":"method","module":"std.container.rbtree","name":"left","package":"phobos","parentType":"RBNode","signature":"Node left(return  scope  Node newNode)","url":"/ddoc/phobos/std/container/rbtree/RBNode.left.html"},{"doc":"Set the right child.  Also updates the new child's parent node.  This does not update the previous child.","kind":"method","module":"std.container.rbtree","name":"right","package":"phobos","parentType":"RBNode","signature":"Node right(return  scope  Node newNode)","url":"/ddoc/phobos/std/container/rbtree/RBNode.right.html"},{"doc":"Rotate right.  This performs the following operations: - The left child becomes the parent of this node. - This node becomes the new parent's right...","kind":"method","module":"std.container.rbtree","name":"rotateR","package":"phobos","parentType":"RBNode","signature":"Node rotateR()","url":"/ddoc/phobos/std/container/rbtree/RBNode.rotateR.html"},{"doc":"Rotate left.  This performs the following operations: - The right child becomes the parent of this node. - This node becomes the new parent's left ...","kind":"method","module":"std.container.rbtree","name":"rotateL","package":"phobos","parentType":"RBNode","signature":"Node rotateL()","url":"/ddoc/phobos/std/container/rbtree/RBNode.rotateL.html"},{"doc":"Returns true if this node is a left child.","kind":"method","module":"std.container.rbtree","name":"isLeftNode","package":"phobos","parentType":"RBNode","signature":"bool isLeftNode()","url":"/ddoc/phobos/std/container/rbtree/RBNode.isLeftNode.html"},{"doc":"Set the color of the node after it is inserted.  This performs an update to the whole tree, possibly rotating nodes to keep the Red-Black propertie...","kind":"method","module":"std.container.rbtree","name":"setColor","package":"phobos","parentType":"RBNode","signature":"void setColor(Node end)","url":"/ddoc/phobos/std/container/rbtree/RBNode.setColor.html"},{"doc":"Remove this node from the tree.  The 'end' node is used as the marker which is root's parent.  Note that this cannot be null!","kind":"method","module":"std.container.rbtree","name":"remove","package":"phobos","parentType":"RBNode","signature":"Node remove(Node end)","url":"/ddoc/phobos/std/container/rbtree/RBNode.remove.html"},{"doc":"Return the leftmost descendant of this node.","kind":"method","module":"std.container.rbtree","name":"leftmost","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * leftmost()","url":"/ddoc/phobos/std/container/rbtree/RBNode.leftmost.html"},{"doc":"Return the rightmost descendant of this node","kind":"method","module":"std.container.rbtree","name":"rightmost","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * rightmost()","url":"/ddoc/phobos/std/container/rbtree/RBNode.rightmost.html"},{"doc":"Returns the next valued node in the tree.","kind":"method","module":"std.container.rbtree","name":"next","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * next()","url":"/ddoc/phobos/std/container/rbtree/RBNode.next.html"},{"doc":"Returns the previous valued node in the tree.","kind":"method","module":"std.container.rbtree","name":"prev","package":"phobos","parentType":"RBNode","signature":"inout(RBNode) * prev()","url":"/ddoc/phobos/std/container/rbtree/RBNode.prev.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"dup","package":"phobos","parentType":"RBNode","signature":"Node dup(scope  Node delegate(V v)  alloc)","url":"/ddoc/phobos/std/container/rbtree/RBNode.dup.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"dup","package":"phobos","parentType":"RBNode","signature":"Node dup()","url":"/ddoc/phobos/std/container/rbtree/RBNode.dup.html"},{"doc":"","kind":"struct","module":"std.container.rbtree","name":"RBRange","package":"phobos","parentType":"","signature":"RBRange(N)","url":"/ddoc/phobos/std/container/rbtree.html#RBRange"},{"doc":"Returns `true` if the range is _empty","kind":"method","module":"std.container.rbtree","name":"empty","package":"phobos","parentType":"RBRange","signature":"bool empty()","url":"/ddoc/phobos/std/container/rbtree/RBRange.empty.html"},{"doc":"Returns the first element in the range","kind":"method","module":"std.container.rbtree","name":"front","package":"phobos","parentType":"RBRange","signature":"Elem front()","url":"/ddoc/phobos/std/container/rbtree/RBRange.front.html"},{"doc":"Returns the last element in the range","kind":"method","module":"std.container.rbtree","name":"back","package":"phobos","parentType":"RBRange","signature":"Elem back()","url":"/ddoc/phobos/std/container/rbtree/RBRange.back.html"},{"doc":"pop the front element from the range","kind":"method","module":"std.container.rbtree","name":"popFront","package":"phobos","parentType":"RBRange","signature":"void popFront()","url":"/ddoc/phobos/std/container/rbtree/RBRange.popFront.html"},{"doc":"pop the back element from the range","kind":"method","module":"std.container.rbtree","name":"popBack","package":"phobos","parentType":"RBRange","signature":"void popBack()","url":"/ddoc/phobos/std/container/rbtree/RBRange.popBack.html"},{"doc":"Trivial _save implementation, needed for `isForwardRange`.","kind":"method","module":"std.container.rbtree","name":"save","package":"phobos","parentType":"RBRange","signature":"RBRange save()","url":"/ddoc/phobos/std/container/rbtree/RBRange.save.html"},{"doc":"Implementation of a $(LINK2 https://en.wikipedia.org/wiki/Red%E2%80%93black_tree, red-black tree) container.","kind":"class","module":"std.container.rbtree","name":"RedBlackTree","package":"phobos","parentType":"","signature":"RedBlackTree(T,  alias  less =  \"a < b\",  bool  allowDuplicates =  false) if (is(typeof((ref  const  T a)  =>  binaryFun!less(a,  a))))","url":"/ddoc/phobos/std/container/rbtree.html#RedBlackTree"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"_setup","package":"phobos","parentType":"RedBlackTree","signature":"void _setup()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree._setup.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"allocate","package":"phobos","parentType":"RedBlackTree","signature":"Node allocate()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.allocate.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"allocate","package":"phobos","parentType":"RedBlackTree","signature":"Node allocate(Elem v)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.allocate.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"_find","package":"phobos","parentType":"RedBlackTree","signature":"inout(RBNode) * _find(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree._find.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"_add","package":"phobos","parentType":"RedBlackTree","signature":"bool _add(return  scope  Elem n)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree._add.html"},{"doc":"Check if any elements exist in the container.  Returns `false` if at least one element exists.","kind":"method","module":"std.container.rbtree","name":"empty","package":"phobos","parentType":"RedBlackTree","signature":"bool empty()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.empty.html"},{"doc":"Returns the number of elements in the container.","kind":"method","module":"std.container.rbtree","name":"length","package":"phobos","parentType":"RedBlackTree","signature":"size_t length()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.length.html"},{"doc":"Duplicate this container.  The resulting container contains a shallow copy of the elements.","kind":"method","module":"std.container.rbtree","name":"dup","package":"phobos","parentType":"RedBlackTree","signature":"RedBlackTree dup()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.dup.html"},{"doc":"Fetch a range that spans all the elements in the container.","kind":"method","module":"std.container.rbtree","name":"opSlice","package":"phobos","parentType":"RedBlackTree","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.opSlice.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"opSlice","package":"phobos","parentType":"RedBlackTree","signature":"ConstRange opSlice()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.opSlice.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"opSlice","package":"phobos","parentType":"RedBlackTree","signature":"ImmutableRange opSlice()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.opSlice.html"},{"doc":"The front element in the container","kind":"method","module":"std.container.rbtree","name":"front","package":"phobos","parentType":"RedBlackTree","signature":"inout(Elem) front()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.front.html"},{"doc":"The last element in the container","kind":"method","module":"std.container.rbtree","name":"back","package":"phobos","parentType":"RedBlackTree","signature":"inout(Elem) back()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.back.html"},{"doc":"`in` operator. Check to see if the given element exists in the container.","kind":"method","module":"std.container.rbtree","name":"opBinaryRight","package":"phobos","parentType":"RedBlackTree","signature":"bool opBinaryRight(string op)(Elem e) if (op ==  \"in\")","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.opBinaryRight.html"},{"doc":"Compares two trees for equality.","kind":"method","module":"std.container.rbtree","name":"opEquals","package":"phobos","parentType":"RedBlackTree","signature":"bool opEquals(Object rhs)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.opEquals.html"},{"doc":"Generates a hash for the tree. Note that with a custom comparison function it may not hold that if two rbtrees are equal, the hashes of the trees w...","kind":"method","module":"std.container.rbtree","name":"toHash","package":"phobos","parentType":"RedBlackTree","signature":"size_t toHash()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.toHash.html"},{"doc":"Removes all elements from the container.","kind":"method","module":"std.container.rbtree","name":"clear","package":"phobos","parentType":"RedBlackTree","signature":"void clear()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.clear.html"},{"doc":"Insert a single element in the container.  Note that this does not invalidate any ranges currently iterating the container.","kind":"method","module":"std.container.rbtree","name":"stableInsert","package":"phobos","parentType":"RedBlackTree","signature":"size_t stableInsert(Stuff)(Stuff stuff) if (isImplicitlyConvertible!(Stuff,  Elem))","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.stableInsert.html"},{"doc":"Insert a range of elements in the container.  Note that this does not invalidate any ranges currently iterating the container.","kind":"method","module":"std.container.rbtree","name":"stableInsert","package":"phobos","parentType":"RedBlackTree","signature":"size_t stableInsert(Stuff)(scope  Stuff stuff) if (isInputRange!Stuff &&\n         isImplicitlyConvertible!(ElementType!Stuff,  Elem))","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.stableInsert.html"},{"doc":"Remove an element from the container and return its value.","kind":"method","module":"std.container.rbtree","name":"removeAny","package":"phobos","parentType":"RedBlackTree","signature":"Elem removeAny()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeAny.html"},{"doc":"Remove the front element from the container.","kind":"method","module":"std.container.rbtree","name":"removeFront","package":"phobos","parentType":"RedBlackTree","signature":"void removeFront()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeFront.html"},{"doc":"Remove the back element from the container.","kind":"method","module":"std.container.rbtree","name":"removeBack","package":"phobos","parentType":"RedBlackTree","signature":"void removeBack()","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeBack.html"},{"doc":"Removes the given range from the container.","kind":"method","module":"std.container.rbtree","name":"remove","package":"phobos","parentType":"RedBlackTree","signature":"Range remove(Range r)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.remove.html"},{"doc":"Removes the given `Take!Range` from the container","kind":"method","module":"std.container.rbtree","name":"remove","package":"phobos","parentType":"RedBlackTree","signature":"Range remove(Take!Range r)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.remove.html"},{"doc":"Removes elements from the container that are equal to the given values according to the less comparator. One element is removed for each value give...","kind":"method","module":"std.container.rbtree","name":"removeKey","package":"phobos","parentType":"RedBlackTree","signature":"size_t removeKey(U...)(U elems) if (allSatisfy!(isImplicitlyConvertibleToElem,  U))","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeKey.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"removeKey","package":"phobos","parentType":"RedBlackTree","signature":"size_t removeKey(U)(scope  U[]  elems) if (isImplicitlyConvertible!(U,  Elem))","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeKey.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"removeKey","package":"phobos","parentType":"RedBlackTree","signature":"size_t removeKey(Stuff)(Stuff stuff) if (isInputRange!Stuff &&\n         isImplicitlyConvertible!(ElementType!Stuff,  Elem)  &&\n        !isDynamicArray!Stuff)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.removeKey.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"_firstGreater","package":"phobos","parentType":"RedBlackTree","signature":"inout(RBNode) * _firstGreater(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree._firstGreater.html"},{"doc":"","kind":"method","module":"std.container.rbtree","name":"_firstGreaterEqual","package":"phobos","parentType":"RedBlackTree","signature":"inout(RBNode) * _firstGreaterEqual(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree._firstGreaterEqual.html"},{"doc":"Get a range from the container with all elements that are > e according to the less comparator","kind":"method","module":"std.container.rbtree","name":"upperBound","package":"phobos","parentType":"RedBlackTree","signature":"Range upperBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.upperBound.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"upperBound","package":"phobos","parentType":"RedBlackTree","signature":"ConstRange upperBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.upperBound.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"upperBound","package":"phobos","parentType":"RedBlackTree","signature":"ImmutableRange upperBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.upperBound.html"},{"doc":"Get a range from the container with all elements that are < e according to the less comparator","kind":"method","module":"std.container.rbtree","name":"lowerBound","package":"phobos","parentType":"RedBlackTree","signature":"Range lowerBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.lowerBound.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"lowerBound","package":"phobos","parentType":"RedBlackTree","signature":"ConstRange lowerBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.lowerBound.html"},{"doc":"Ditto","kind":"method","module":"std.container.rbtree","name":"lowerBound","package":"phobos","parentType":"RedBlackTree","signature":"ImmutableRange lowerBound(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.lowerBound.html"},{"doc":"Get a range from the container with all elements that are == e according to the less comparator","kind":"method","module":"std.container.rbtree","name":"equalRange","package":"phobos","parentType":"RedBlackTree","signature":"auto equalRange(this  This)(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.equalRange.html"},{"doc":"Returns a static array of 3 ranges `r` such that `r[0]` is the same as the result of `lowerBound(value)`, `r[1]` is the same as the result of $(D e...","kind":"method","module":"std.container.rbtree","name":"trisect","package":"phobos","parentType":"RedBlackTree","signature":"auto trisect(this  This)(Elem e)","url":"/ddoc/phobos/std/container/rbtree/RedBlackTree.trisect.html"},{"doc":"This module implements a singly-linked list container. It can be used as a stack.","kind":"module","module":"std.container.slist","name":"std.container.slist","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/slist.html"},{"doc":"Implements a simple and fast singly-linked list. It can be used as a stack.","kind":"struct","module":"std.container.slist","name":"SList","package":"phobos","parentType":"","signature":"SList(T) if (!is(T ==  shared))","url":"/ddoc/phobos/std/container/slist.html#SList"},{"doc":"","kind":"method","module":"std.container.slist","name":"initialize","package":"phobos","parentType":"SList","signature":"void initialize()","url":"/ddoc/phobos/std/container/slist/SList.initialize.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"_first","package":"phobos","parentType":"SList","signature":"inout(Node *) _first()","url":"/ddoc/phobos/std/container/slist/SList._first.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"findLastNode","package":"phobos","parentType":"SList","signature":"Node * findLastNode(Node *  n)","url":"/ddoc/phobos/std/container/slist/SList.findLastNode.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"findLastNode","package":"phobos","parentType":"SList","signature":"Node * findLastNode(Node *  n,  size_t limit)","url":"/ddoc/phobos/std/container/slist/SList.findLastNode.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"findNode","package":"phobos","parentType":"SList","signature":"Node * findNode(Node *  n,  Node *  findMe)","url":"/ddoc/phobos/std/container/slist/SList.findNode.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"findNodeByValue","package":"phobos","parentType":"SList","signature":"Node * findNodeByValue(Node *  n,  T value)","url":"/ddoc/phobos/std/container/slist/SList.findNodeByValue.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"createNodeChain","package":"phobos","parentType":"SList","signature":"static auto createNodeChain(Stuff)(Stuff stuff) if (isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/slist/SList.createNodeChain.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"createNodeChain","package":"phobos","parentType":"SList","signature":"static auto createNodeChain(Stuff)(Stuff stuff) if (isInputRange!Stuff &&  isImplicitlyConvertible!(ElementType!Stuff,  T))","url":"/ddoc/phobos/std/container/slist/SList.createNodeChain.html"},{"doc":"","kind":"method","module":"std.container.slist","name":"insertAfterNode","package":"phobos","parentType":"SList","signature":"size_t insertAfterNode(Stuff)(Node *  n,  Stuff stuff)","url":"/ddoc/phobos/std/container/slist/SList.insertAfterNode.html"},{"doc":"Comparison for equality.","kind":"method","module":"std.container.slist","name":"opEquals","package":"phobos","parentType":"SList","signature":"bool opEquals(const  SList rhs)","url":"/ddoc/phobos/std/container/slist/SList.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.container.slist","name":"opEquals","package":"phobos","parentType":"SList","signature":"bool opEquals(ref  const  SList rhs)","url":"/ddoc/phobos/std/container/slist/SList.opEquals.html"},{"doc":"Property returning `true` if and only if the container has no elements.","kind":"method","module":"std.container.slist","name":"empty","package":"phobos","parentType":"SList","signature":"bool empty()","url":"/ddoc/phobos/std/container/slist/SList.empty.html"},{"doc":"Duplicates the container. The elements themselves are not transitively duplicated.","kind":"method","module":"std.container.slist","name":"dup","package":"phobos","parentType":"SList","signature":"SList dup()","url":"/ddoc/phobos/std/container/slist/SList.dup.html"},{"doc":"Returns a range that iterates over all elements of the container, in forward order.","kind":"method","module":"std.container.slist","name":"opSlice","package":"phobos","parentType":"SList","signature":"Range opSlice()","url":"/ddoc/phobos/std/container/slist/SList.opSlice.html"},{"doc":"Forward to `opSlice().front`.","kind":"method","module":"std.container.slist","name":"front","package":"phobos","parentType":"SList","signature":"T front()","url":"/ddoc/phobos/std/container/slist/SList.front.html"},{"doc":"Returns a new `SList` that's the concatenation of `this` and its argument. `opBinaryRight` is only defined if `Stuff` does not define `opBinary`.","kind":"method","module":"std.container.slist","name":"opBinary","package":"phobos","parentType":"SList","signature":"SList opBinary(string op,  Stuff)(Stuff rhs) if (op ==  \"~\" &&  is(typeof(SList(rhs))))","url":"/ddoc/phobos/std/container/slist/SList.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.container.slist","name":"opBinaryRight","package":"phobos","parentType":"SList","signature":"SList opBinaryRight(string op,  Stuff)(Stuff lhs) if (op ==  \"~\" && !is(typeof(lhs.opBinary!\"~\"(this)))  &&  is(typeof(SList(lhs))))","url":"/ddoc/phobos/std/container/slist/SList.opBinaryRight.html"},{"doc":"Removes all contents from the `SList`.","kind":"method","module":"std.container.slist","name":"clear","package":"phobos","parentType":"SList","signature":"void clear()","url":"/ddoc/phobos/std/container/slist/SList.clear.html"},{"doc":"Reverses SList in-place. Performs no memory allocation.","kind":"method","module":"std.container.slist","name":"reverse","package":"phobos","parentType":"SList","signature":"void reverse()","url":"/ddoc/phobos/std/container/slist/SList.reverse.html"},{"doc":"Inserts `stuff` to the front of the container. `stuff` can be a value convertible to `T` or a range of objects convertible to $(D T). The stable ve...","kind":"method","module":"std.container.slist","name":"insertFront","package":"phobos","parentType":"SList","signature":"size_t insertFront(Stuff)(Stuff stuff) if (isInputRange!Stuff ||  isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/slist/SList.insertFront.html"},{"doc":"Picks one value in an unspecified position in the container, removes it from the container, and returns it. The stable version behaves the same, bu...","kind":"method","module":"std.container.slist","name":"removeAny","package":"phobos","parentType":"SList","signature":"T removeAny()","url":"/ddoc/phobos/std/container/slist/SList.removeAny.html"},{"doc":"Removes the value at the front of the container. The stable version behaves the same, but guarantees that ranges iterating over the container are n...","kind":"method","module":"std.container.slist","name":"removeFront","package":"phobos","parentType":"SList","signature":"void removeFront()","url":"/ddoc/phobos/std/container/slist/SList.removeFront.html"},{"doc":"Removes `howMany` values at the front or back of the container. Unlike the unparameterized versions above, these functions do not throw if they cou...","kind":"method","module":"std.container.slist","name":"removeFront","package":"phobos","parentType":"SList","signature":"size_t removeFront(size_t howMany)","url":"/ddoc/phobos/std/container/slist/SList.removeFront.html"},{"doc":"Inserts `stuff` after range `r`, which must be a range previously extracted from this container. Given that all ranges for a list end at the end of...","kind":"method","module":"std.container.slist","name":"insertAfter","package":"phobos","parentType":"SList","signature":"size_t insertAfter(Stuff)(Range r,  Stuff stuff) if (isInputRange!Stuff ||  isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/slist/SList.insertAfter.html"},{"doc":"Similar to `insertAfter` above, but accepts a range bounded in count. This is important for ensuring fast insertions in the middle of the list.  Fo...","kind":"method","module":"std.container.slist","name":"insertAfter","package":"phobos","parentType":"SList","signature":"size_t insertAfter(Stuff)(Take!Range r,  Stuff stuff) if (isInputRange!Stuff ||  isImplicitlyConvertible!(Stuff,  T))","url":"/ddoc/phobos/std/container/slist/SList.insertAfter.html"},{"doc":"Removes a range from the list in linear time.","kind":"method","module":"std.container.slist","name":"linearRemove","package":"phobos","parentType":"SList","signature":"Range linearRemove(Range r)","url":"/ddoc/phobos/std/container/slist/SList.linearRemove.html"},{"doc":"Removes a `Take!Range` from the list in linear time.","kind":"method","module":"std.container.slist","name":"linearRemove","package":"phobos","parentType":"SList","signature":"Range linearRemove(Take!Range r)","url":"/ddoc/phobos/std/container/slist/SList.linearRemove.html"},{"doc":"Removes the first occurence of an element from the list in linear time.","kind":"method","module":"std.container.slist","name":"linearRemoveElement","package":"phobos","parentType":"SList","signature":"bool linearRemoveElement(T value)","url":"/ddoc/phobos/std/container/slist/SList.linearRemoveElement.html"},{"doc":"This module contains some common utilities used by containers.","kind":"module","module":"std.container.util","name":"std.container.util","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/container/util.html"},{"doc":"Returns an initialized object. This function is mainly for eliminating construction differences between structs and classes. It allows code to not ...","kind":"template","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"make(T)","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"","kind":"function","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"T make(Args...)(Args arguments) if (is(T ==  struct)  &&  __traits(compiles,  T(arguments)))","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"","kind":"function","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"T make(Args...)(Args arguments) if (is(T ==  class)  &&  __traits(compiles,  new  T(arguments)))","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"Convenience function for constructing a generic container.","kind":"template","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"make(alias  Container,  Args...)","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"","kind":"function","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"auto make(Range)(Range range) if (!isDynamicArray!Range &&  isInputRange!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"","kind":"function","module":"std.container.util","name":"make","package":"phobos","parentType":"","signature":"auto make(T)(T[]  items...) if (!isInfinite!T)","url":"/ddoc/phobos/std/container/util.html#make"},{"doc":"A one-stop shop for converting values from one type to another.","kind":"module","module":"std.conv","name":"std.conv","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/conv.html"},{"doc":"","kind":"function","module":"std.conv","name":"convError","package":"phobos","parentType":"","signature":"auto convError(S,  T)(S source,  string fn =  __FILE__,  size_t ln =  __LINE__)","url":"/ddoc/phobos/std/conv/convError.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseError","package":"phobos","parentType":"","signature":"auto parseError(lazy  string msg,  string fn =  __FILE__,  size_t ln =  __LINE__)","url":"/ddoc/phobos/std/conv/parseError.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseCheck","package":"phobos","parentType":"","signature":"void parseCheck(alias  source)(dchar  c,  string fn =  __FILE__,  size_t ln =  __LINE__)","url":"/ddoc/phobos/std/conv/parseCheck.html"},{"doc":"","kind":"function","module":"std.conv","name":"toStr","package":"phobos","parentType":"","signature":"T toStr(T,  S)(S src) if (isSomeString!T)","url":"/ddoc/phobos/std/conv/toStr.html"},{"doc":"","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S) if (isInputRange!S &&  isInfinite!S &&  isExactSomeString!T)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"If the source type is implicitly convertible to the target type, $(D to) simply performs the implicit conversion.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (is(S :  T)  &&\n    !isEnumStrToStr!(S,  T)  && !isNullToStr!(S,  T))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (isTuple!T)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(ref  S s) if (isStaticArray!S)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"When source type supports member template function opCast, it is used.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&\n     is(typeof(S.init.opCast!T()) :  T)  &&\n    !isExactSomeString!T &&\n    !is(typeof(T(value))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"When target type supports 'converting construction', it is used. $(UL $(LI If target type is struct, `T(value)` is used.) $(LI If target type is cl...","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&\n     is(T ==  struct)  &&  is(typeof(T(value))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&\n     is(T ==  class)  &&  is(typeof(new  T(value))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Object-to-object conversions by dynamic casting throw exception when the source is non-null and the target is null.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&\n    (is(S ==  class)  ||  is(S ==  interface))  && !is(typeof(value.opCast!T()) :  T)  &&\n    (is(T ==  class)  ||  is(T ==  interface))  && !is(typeof(new  T(value))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Handles type _to string conversions","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!(is(S :  T)  &&\n    !isEnumStrToStr!(S,  T)  && !isNullToStr!(S,  T))  &&\n    !isInfinite!S &&  isExactSomeString!T)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(ref  S value) if (!(is(S :  T)  &&\n    !isEnumStrToStr!(S,  T)  && !isNullToStr!(S,  T))  &&\n    !isInfinite!S &&  isExactSomeString!T && !isCopyable!S && !isStaticArray!S)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value,  uint  radix,  LetterCase letterCase =  LetterCase.upper) if (isIntegral!S &&\n     isExactSomeString!T)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Narrowing numeric-numeric conversions throw when the value does not fit in the narrower type.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&\n    (isNumeric!S ||  isSomeChar!S ||  isBoolean!S)  &&\n    (isNumeric!T ||  isSomeChar!T ||  isBoolean!T)  && !is(T ==  enum))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Array-to-array conversion (except when target is a string type) converts each element in turn by using `to`.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(scope  S value) if (!is(S :  T)  &&\n    !isSomeString!S &&  isDynamicArray!S &&\n    !isExactSomeString!T &&  isArray!T)","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Associative array to associative array conversion converts each key and each value in turn.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (!is(S :  T)  &&  isAssociativeArray!S &&\n     isAssociativeArray!T && !is(T ==  enum))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"String, or string-like input range, to non-string conversion runs parsing. $(UL $(LI When the source is a wide string, it is first converted to a n...","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (isInputRange!S &&  isSomeChar!(ElementEncodingType!S)  &&\n    !isExactSomeString!T &&  is(typeof(parse!T(value)))  &&\n    // https://issues.dlang.org/show_bug.cgi?id=20539\n    !(is(T ==  enum)  &&  is(typeof(value ==  OriginalType!T.init))  && !isSomeString!(OriginalType!T)))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value,  uint  radix) if (isSomeFiniteCharInputRange!S &&\n     isIntegral!T &&  is(typeof(parse!T(value,  radix))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"String, or string-like input range, to char type not directly supported by parse parses the first dchar of the source.","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (isSomeChar!T && !is(typeof(parse!T(value)))  &&\n     is(typeof(parse!dchar(value))))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"Convert a value that is implicitly convertible to the enum base type into an Enum value. If the value does not match any enum member values a ConvE...","kind":"function","module":"std.conv","name":"toImpl","package":"phobos","parentType":"","signature":"T toImpl(T,  S)(S value) if (is(T ==  enum)  && !is(S ==  enum)\n     &&  is(typeof(value ==  OriginalType!T.init))\n     && !isFloatingPoint!(OriginalType!T)  && !isSomeString!(OriginalType!T))","url":"/ddoc/phobos/std/conv/toImpl.html"},{"doc":"$(PANEL The `parse` family of functions works quite like the $(LREF to) family, except that: $(OL $(LI It only works with character ranges as input...","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source source) if (is(immutable  Target ==  immutable  bool)  &&\n     isInputRange!Source &&\n     isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"Parses an integer from a character $(REF_ALTTEXT input range, isInputRange, std,range,primitives).","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  scope  Source s) if (isIntegral!Target && !is(Target ==  enum)  &&\n     isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source source,  uint  radix) if (isIntegral!Target && !is(Target ==  enum)  &&\n     isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"* Parses an `enum` type from a string representing an enum member name. * * Params: *     Target = the `enum` type to convert to *     s = the lval...","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (is(Target ==  enum)  &&  isSomeString!Source && !is(Source ==  enum))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"* Parses a floating point number from a character range. * * Params: *     Target = a floating point type *     source = the lvalue of the range to...","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source source) if (isFloatingPoint!Target && !is(Target ==  enum)  &&\n     isInputRange!Source &&  isSomeChar!(ElementType!Source)  && !is(Source ==  enum))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"Parses one character from a character range.","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (staticIndexOf!(immutable  Target,  immutable  dchar,  immutable  ElementEncodingType!Source)  >=  0 &&\n     isSomeString!Source && !is(Source ==  enum))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (isSomeChar!Target &&  Target.sizeof >=  ElementType!Source.sizeof && !is(Target ==  enum)  &&\n    !isSomeString!Source &&  isInputRange!Source &&  isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"Parses `typeof(null)` from a character range if the range spells `\"null\"`. This function is case insensitive.","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (is(immutable  Target ==  immutable  typeof(null))  &&\n     isInputRange!Source &&\n     isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"","kind":"function","module":"std.conv","name":"skipWS","package":"phobos","parentType":"","signature":"auto skipWS(R,  Flag!\"doCount\" doCount =  No.doCount)(ref  R r)","url":"/ddoc/phobos/std/conv/skipWS.html"},{"doc":"* Parses an array from a string given the left bracket (default $(D * '[')), right bracket (default `']'`), and element separator (by * default `',...","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s,  dchar  lbracket =  '[',\n     dchar  rbracket =  ']',  dchar  comma =  ',') if (isDynamicArray!Target && !is(Target ==  enum)  &&\n     isSomeString!Source && !is(Source ==  enum))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s,  dchar  lbracket =  '[',\n     dchar  rbracket =  ']',  dchar  comma =  ',') if (isStaticArray!Target && !is(Target ==  enum)  &&\n     isExactSomeString!Source)","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"* Parses an associative array from a string given the left bracket (default $(D * '[')), right bracket (default `']'`), key-value separator (defaul...","kind":"function","module":"std.conv","name":"parse","package":"phobos","parentType":"","signature":"auto parse(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s,  dchar  lbracket =  '[',\n                              dchar  rbracket =  ']',  dchar  keyval =  ':',  dchar  comma =  ',') if (isAssociativeArray!Target && !is(Target ==  enum)  &&\n     isSomeString!Source && !is(Source ==  enum))","url":"/ddoc/phobos/std/conv/parse.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseEscape","package":"phobos","parentType":"","signature":"auto parseEscape(Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (isInputRange!Source &&  isSomeChar!(ElementType!Source))","url":"/ddoc/phobos/std/conv/parseEscape.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseElement","package":"phobos","parentType":"","signature":"auto parseElement(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (isInputRange!Source &&  isSomeChar!(ElementType!Source)  && !is(Source ==  enum)  &&\n     isExactSomeString!Target)","url":"/ddoc/phobos/std/conv/parseElement.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseElement","package":"phobos","parentType":"","signature":"auto parseElement(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (isInputRange!Source &&  isSomeChar!(ElementType!Source)  && !is(Source ==  enum)  &&\n     is(CharTypeOf!Target ==  dchar)  && !is(Target ==  enum))","url":"/ddoc/phobos/std/conv/parseElement.html"},{"doc":"","kind":"function","module":"std.conv","name":"parseElement","package":"phobos","parentType":"","signature":"auto parseElement(Target,  Source,  Flag!\"doCount\" doCount =  No.doCount)(ref  Source s) if (isInputRange!Source &&  isSomeChar!(ElementType!Source)  &&\n    !isSomeString!Target && !isSomeChar!Target)","url":"/ddoc/phobos/std/conv/parseElement.html"},{"doc":"Convenience functions for converting one or more arguments of any type into _text (the three character widths).","kind":"function","module":"std.conv","name":"text","package":"phobos","parentType":"","signature":"string text(T...)(T args) if (T.length >  0)","url":"/ddoc/phobos/std/conv/text.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"wtext","package":"phobos","parentType":"","signature":"wstring wtext(T...)(T args) if (T.length >  0)","url":"/ddoc/phobos/std/conv/wtext.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"dtext","package":"phobos","parentType":"","signature":"dstring dtext(T...)(T args) if (T.length >  0)","url":"/ddoc/phobos/std/conv/dtext.html"},{"doc":"Convenience functions for writing arguments to an output range as text.","kind":"function","module":"std.conv","name":"writeText","package":"phobos","parentType":"","signature":"void writeText(Sink,  T...)(ref  Sink sink,  T args) if (isOutputRange!(Sink,  char)  &&  T.length >  0)","url":"/ddoc/phobos/std/conv/writeText.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"writeWText","package":"phobos","parentType":"","signature":"void writeWText(Sink,  T...)(ref  Sink sink,  T args) if (isOutputRange!(Sink,  wchar)  &&  T.length >  0)","url":"/ddoc/phobos/std/conv/writeWText.html"},{"doc":"ditto","kind":"function","module":"std.conv","name":"writeDText","package":"phobos","parentType":"","signature":"void writeDText(Sink,  T...)(ref  Sink sink,  T args) if (isOutputRange!(Sink,  dchar)  &&  T.length >  0)","url":"/ddoc/phobos/std/conv/writeDText.html"},{"doc":"","kind":"function","module":"std.conv","name":"textImpl","package":"phobos","parentType":"","signature":"S textImpl(S,  U...)(U args)","url":"/ddoc/phobos/std/conv/textImpl.html"},{"doc":"","kind":"function","module":"std.conv","name":"writeTextImpl","package":"phobos","parentType":"","signature":"void writeTextImpl(S,  Sink,  U...)(ref  Sink sink,  U args) if (isSomeString!S &&  isOutputRange!(Sink,  ElementEncodingType!S))","url":"/ddoc/phobos/std/conv/writeTextImpl.html"},{"doc":"Convert a decimal integer to an octal integer with the same digits. Params: i = integer to convert Returns: octal integer with the same type and sa...","kind":"function","module":"std.conv","name":"convertToOctal","package":"phobos","parentType":"","signature":"T convertToOctal(T)(T i)","url":"/ddoc/phobos/std/conv/convertToOctal.html"},{"doc":"","kind":"function","module":"std.conv","name":"octal","package":"phobos","parentType":"","signature":"T octal(T)(const  string num)","url":"/ddoc/phobos/std/conv/octal.html"},{"doc":"","kind":"function","module":"std.conv","name":"strippedOctalLiteral","package":"phobos","parentType":"","signature":"string strippedOctalLiteral(string original)","url":"/ddoc/phobos/std/conv/strippedOctalLiteral.html"},{"doc":"","kind":"function","module":"std.conv","name":"isOctalLiteral","package":"phobos","parentType":"","signature":"bool isOctalLiteral(const  string num)","url":"/ddoc/phobos/std/conv/isOctalLiteral.html"},{"doc":"","kind":"function","module":"std.conv","name":"toTextRange","package":"phobos","parentType":"","signature":"void toTextRange(T,  W)(T value,  W writer) if (isIntegral!T &&  isOutputRange!(W,  char))","url":"/ddoc/phobos/std/conv/toTextRange.html"},{"doc":"Returns the corresponding _unsigned value for `x` (e.g. if `x` has type `int`, it returns $(D cast(uint) x)). The advantage compared to the cast is...","kind":"function","module":"std.conv","name":"unsigned","package":"phobos","parentType":"","signature":"auto unsigned(T)(T x) if (isIntegral!T)","url":"/ddoc/phobos/std/conv/unsigned.html"},{"doc":"Ditto","kind":"function","module":"std.conv","name":"unsigned","package":"phobos","parentType":"","signature":"auto unsigned(T)(T x) if (isSomeChar!T)","url":"/ddoc/phobos/std/conv/unsigned.html"},{"doc":"Returns the corresponding _signed value for `x` (e.g. if `x` has type `uint`, it returns $(D cast(int) x)). The advantage compared to the cast is t...","kind":"function","module":"std.conv","name":"signed","package":"phobos","parentType":"","signature":"auto signed(T)(T x) if (isIntegral!T)","url":"/ddoc/phobos/std/conv/signed.html"},{"doc":"Returns the representation of an enumerated value, i.e. the value converted to the base type of the enumeration.","kind":"function","module":"std.conv","name":"asOriginalType","package":"phobos","parentType":"","signature":"OriginalType!E asOriginalType(E)(E value) if (is(E ==  enum))","url":"/ddoc/phobos/std/conv/asOriginalType.html"},{"doc":"Check the correctness of a string for `hexString`. The result is true if and only if the input string is composed of whitespace characters (\\f\\n\\r\\...","kind":"function","module":"std.conv","name":"isHexLiteral","package":"phobos","parentType":"","signature":"bool isHexLiteral(String)(scope  const  String hexData)","url":"/ddoc/phobos/std/conv/isHexLiteral.html"},{"doc":"","kind":"function","module":"std.conv","name":"hexToString","package":"phobos","parentType":"","signature":"string hexToString(string s)","url":"/ddoc/phobos/std/conv/hexToString.html"},{"doc":"","kind":"function","module":"std.conv","name":"hexToString","package":"phobos","parentType":"","signature":"wstring hexToString(wstring s)","url":"/ddoc/phobos/std/conv/hexToString.html"},{"doc":"","kind":"function","module":"std.conv","name":"hexToString","package":"phobos","parentType":"","signature":"dstring hexToString(dstring s)","url":"/ddoc/phobos/std/conv/hexToString.html"},{"doc":"","kind":"function","module":"std.conv","name":"hexStrLiteral","package":"phobos","parentType":"","signature":"auto hexStrLiteral(String)(scope  String hexData)","url":"/ddoc/phobos/std/conv/hexStrLiteral.html"},{"doc":"Convert integer to a range of characters. Intended to be lightweight and fast.","kind":"function","module":"std.conv","name":"toChars","package":"phobos","parentType":"","signature":"auto toChars(ubyte  radix =  10,  Char =  char,  LetterCase letterCase =  LetterCase.lower,  T)(T value) if ((radix ==  2 ||  radix ==  8 ||  radix ==  10 ||  radix ==  16)  &&\n         isIntegral!T && (radix ==  10 ||  isUnsigned!T))","url":"/ddoc/phobos/std/conv/toChars.html"},{"doc":"Takes the raw bits of a value and reinterprets them as a different type.","kind":"function","module":"std.conv","name":"bitCast","package":"phobos","parentType":"","signature":"T bitCast(T,  S)(ref  S value) if (T.sizeof <=  S.sizeof)","url":"/ddoc/phobos/std/conv/bitCast.html"},{"doc":"Thrown on conversion errors.","kind":"class","module":"std.conv","name":"ConvException","package":"phobos","parentType":"","signature":"ConvException : Exception","url":"/ddoc/phobos/std/conv.html#ConvException"},{"doc":"Thrown on conversion overflow errors.","kind":"class","module":"std.conv","name":"ConvOverflowException","package":"phobos","parentType":"","signature":"ConvOverflowException : ConvException","url":"/ddoc/phobos/std/conv.html#ConvOverflowException"},{"doc":"","kind":"template","module":"std.conv","name":"convFormat","package":"phobos","parentType":"","signature":"convFormat()","url":"/ddoc/phobos/std/conv.html#convFormat"},{"doc":"","kind":"template","module":"std.conv","name":"isExactSomeString","package":"phobos","parentType":"","signature":"isExactSomeString(T)","url":"/ddoc/phobos/std/conv.html#isExactSomeString"},{"doc":"","kind":"template","module":"std.conv","name":"isEnumStrToStr","package":"phobos","parentType":"","signature":"isEnumStrToStr(S,  T)","url":"/ddoc/phobos/std/conv.html#isEnumStrToStr"},{"doc":"","kind":"template","module":"std.conv","name":"isNullToStr","package":"phobos","parentType":"","signature":"isNullToStr(S,  T)","url":"/ddoc/phobos/std/conv.html#isNullToStr"},{"doc":"The `to` template converts a value from one type _to another. The source type is deduced and the target type must be specified, for example the exp...","kind":"template","module":"std.conv","name":"to","package":"phobos","parentType":"","signature":"to(T)","url":"/ddoc/phobos/std/conv.html#to"},{"doc":"","kind":"function","module":"std.conv","name":"to","package":"phobos","parentType":"","signature":"T to(A...)(A args) if (A.length >  0)","url":"/ddoc/phobos/std/conv.html#to"},{"doc":"","kind":"function","module":"std.conv","name":"to","package":"phobos","parentType":"","signature":"T to(S)(ref  S arg) if (isStaticArray!S)","url":"/ddoc/phobos/std/conv.html#to"},{"doc":"","kind":"function","module":"std.conv","name":"to","package":"phobos","parentType":"","signature":"T to(S)(ref  S arg) if (isAggregateType!S && !isCopyable!S)","url":"/ddoc/phobos/std/conv.html#to"},{"doc":"","kind":"template","module":"std.conv","name":"isSwitchable","package":"phobos","parentType":"","signature":"isSwitchable(E)","url":"/ddoc/phobos/std/conv.html#isSwitchable"},{"doc":"","kind":"template","module":"std.conv","name":"enumRep","package":"phobos","parentType":"","signature":"enumRep(T,  S,  S value)","url":"/ddoc/phobos/std/conv.html#enumRep"},{"doc":"Rounded conversion from floating point to integral.","kind":"template","module":"std.conv","name":"roundTo","package":"phobos","parentType":"","signature":"roundTo(Target)","url":"/ddoc/phobos/std/conv.html#roundTo"},{"doc":"","kind":"function","module":"std.conv","name":"roundTo","package":"phobos","parentType":"","signature":"Target roundTo(Source)(Source value)","url":"/ddoc/phobos/std/conv.html#roundTo"},{"doc":"","kind":"template","module":"std.conv","name":"WideElementType","package":"phobos","parentType":"","signature":"WideElementType(T)","url":"/ddoc/phobos/std/conv.html#WideElementType"},{"doc":"The `octal` facility provides a means to declare a number in base 8. Using `octal!177` or `octal!\"177\"` for 127 represented in octal (same as 0177 ...","kind":"template","module":"std.conv","name":"octal","package":"phobos","parentType":"","signature":"octal(string num)","url":"/ddoc/phobos/std/conv.html#octal"},{"doc":"Ditto","kind":"template","module":"std.conv","name":"octal","package":"phobos","parentType":"","signature":"octal(alias  decimalInteger)","url":"/ddoc/phobos/std/conv.html#octal"},{"doc":"","kind":"template","module":"std.conv","name":"octalFitsInInt","package":"phobos","parentType":"","signature":"octalFitsInInt(string octalNum)","url":"/ddoc/phobos/std/conv.html#octalFitsInInt"},{"doc":"","kind":"template","module":"std.conv","name":"literalIsLong","package":"phobos","parentType":"","signature":"literalIsLong(string num)","url":"/ddoc/phobos/std/conv.html#literalIsLong"},{"doc":"","kind":"template","module":"std.conv","name":"literalIsUnsigned","package":"phobos","parentType":"","signature":"literalIsUnsigned(string num)","url":"/ddoc/phobos/std/conv.html#literalIsUnsigned"},{"doc":"A wrapper on top of the built-in cast operator that allows one to restrict casting of the original type of the value.","kind":"template","module":"std.conv","name":"castFrom","package":"phobos","parentType":"","signature":"castFrom(From)","url":"/ddoc/phobos/std/conv.html#castFrom"},{"doc":"Params: To    = The type _to cast _to. value = The value _to cast. It must be of type `From`, otherwise a compile-time error is emitted.","kind":"function","module":"std.conv","name":"to","package":"phobos","parentType":"","signature":"auto ref to(To,  T)(auto  ref  T value)","url":"/ddoc/phobos/std/conv.html#castFrom"},{"doc":"Converts a hex literal to a string at compile time.","kind":"template","module":"std.conv","name":"hexString","package":"phobos","parentType":"","signature":"hexString(string hexData)","url":"/ddoc/phobos/std/conv.html#hexString"},{"doc":"ditto","kind":"template","module":"std.conv","name":"hexString","package":"phobos","parentType":"","signature":"hexString(wstring hexData)","url":"/ddoc/phobos/std/conv.html#hexString"},{"doc":"ditto","kind":"template","module":"std.conv","name":"hexString","package":"phobos","parentType":"","signature":"hexString(dstring hexData)","url":"/ddoc/phobos/std/conv.html#hexString"},{"doc":"* Implements functionality to read Comma Separated Values and its variants * from an $(REF_ALTTEXT input range, isInputRange, std,range,primitives)...","kind":"module","module":"std.csv","name":"std.csv","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/csv.html"},{"doc":"Returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) for iterating over records found in `input`.","kind":"function","module":"std.csv","name":"csvReader","package":"phobos","parentType":"","signature":"auto csvReader(Contents =  string, Malformed ErrorLevel =  Malformed.throwException,  Range,  Separator =  char)(Range input,\n                  Separator delimiter =  ',',  Separator quote =  '\"',\n                  bool  allowInconsistentDelimiterCount =  false) if (isInputRange!Range &&  is(immutable  ElementType!Range ==  immutable  dchar)\n     &&  isSomeChar!(Separator)\n     && !is(Contents T :  T[U],  U :  string))","url":"/ddoc/phobos/std/csv/csvReader.html"},{"doc":"ditto","kind":"function","module":"std.csv","name":"csvReader","package":"phobos","parentType":"","signature":"auto csvReader(Contents =  string,\n                Malformed ErrorLevel =  Malformed.throwException,\n                Range,  Header,  Separator =  char)(Range input,  Header header,\n                  Separator delimiter =  ',',  Separator quote =  '\"',\n                  bool  allowInconsistentDelimiterCount =  false) if (isInputRange!Range &&  is(immutable  ElementType!Range ==  immutable  dchar)\n     &&  isSomeChar!(Separator)\n     &&  isForwardRange!Header\n    &&  isSomeString!(ElementType!Header))","url":"/ddoc/phobos/std/csv/csvReader.html"},{"doc":"ditto","kind":"function","module":"std.csv","name":"csvReader","package":"phobos","parentType":"","signature":"auto csvReader(Contents =  string,\n                Malformed ErrorLevel =  Malformed.throwException,\n                Range,  Header,  Separator =  char)(Range input,  Header header,\n                  Separator delimiter =  ',',  Separator quote =  '\"',\n                  bool  allowInconsistentDelimiterCount =  false) if (isInputRange!Range &&  is(immutable  ElementType!Range ==  immutable  dchar)\n     &&  isSomeChar!(Separator)\n     &&  is(Header :  typeof(null)))","url":"/ddoc/phobos/std/csv/csvReader.html"},{"doc":"Lower level control over parsing CSV","kind":"function","module":"std.csv","name":"csvNextToken","package":"phobos","parentType":"","signature":"void csvNextToken(Range,  Malformed ErrorLevel =  Malformed.throwException,\n                            Separator,  Output)(ref  Range input,  ref  Output ans,\n                            Separator sep,  Separator quote,\n                            bool  startQuoted =  false) if (isSomeChar!Separator &&  isInputRange!Range\n    &&  is(immutable  ElementType!Range ==  immutable  dchar)\n     &&  isOutputRange!(Output,  dchar))","url":"/ddoc/phobos/std/csv/csvNextToken.html"},{"doc":"Exception containing the row and column for when an exception was thrown.","kind":"class","module":"std.csv","name":"CSVException","package":"phobos","parentType":"","signature":"CSVException : Exception","url":"/ddoc/phobos/std/csv.html#CSVException"},{"doc":"","kind":"method","module":"std.csv","name":"toString","package":"phobos","parentType":"CSVException","signature":"string toString()","url":"/ddoc/phobos/std/csv/CSVException.toString.html"},{"doc":"Exception thrown when a Token is identified to not be completed: a quote is found in an unquoted field, data continues after a closing quote, or th...","kind":"class","module":"std.csv","name":"IncompleteCellException","package":"phobos","parentType":"","signature":"IncompleteCellException : CSVException","url":"/ddoc/phobos/std/csv.html#IncompleteCellException"},{"doc":"Exception thrown under different conditions based on the type of $(D Contents).","kind":"class","module":"std.csv","name":"HeaderMismatchException","package":"phobos","parentType":"","signature":"HeaderMismatchException : CSVException","url":"/ddoc/phobos/std/csv.html#HeaderMismatchException"},{"doc":"Determines the behavior for when an error is detected.","kind":"enum","module":"std.csv","name":"Malformed","package":"phobos","parentType":"","signature":"Malformed","url":"/ddoc/phobos/std/csv.html#Malformed"},{"doc":"No exceptions are thrown due to incorrect CSV.","kind":"enum_member","module":"std.csv","name":"ignore","package":"phobos","parentType":"","signature":"ignore = ","url":"/ddoc/phobos/std/csv.html#Malformed"},{"doc":"Use exceptions when input has incorrect CSV.","kind":"enum_member","module":"std.csv","name":"throwException","package":"phobos","parentType":"","signature":"throwException = ","url":"/ddoc/phobos/std/csv.html#Malformed"},{"doc":"","kind":"struct","module":"std.csv","name":"Input","package":"phobos","parentType":"","signature":"Input(Range,  Malformed ErrorLevel)","url":"/ddoc/phobos/std/csv.html#Input"},{"doc":"","kind":"struct","module":"std.csv","name":"CsvReader","package":"phobos","parentType":"","signature":"CsvReader(Contents,  Malformed ErrorLevel,  Range,  Separator,  Header) if (isSomeChar!Separator &&  isInputRange!Range\n    &&  is(immutable  ElementType!Range ==  immutable  dchar)\n     &&  isForwardRange!Header &&  isSomeString!(ElementType!Header))","url":"/ddoc/phobos/std/csv.html#CsvReader"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"front","package":"phobos","parentType":"CsvReader","signature":"@property auto front()","url":"/ddoc/phobos/std/csv/CsvReader.front.html"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"empty","package":"phobos","parentType":"CsvReader","signature":"bool empty()","url":"/ddoc/phobos/std/csv/CsvReader.empty.html"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"popFront","package":"phobos","parentType":"CsvReader","signature":"void popFront()","url":"/ddoc/phobos/std/csv/CsvReader.popFront.html"},{"doc":"","kind":"method","module":"std.csv","name":"prime","package":"phobos","parentType":"CsvReader","signature":"void prime()","url":"/ddoc/phobos/std/csv/CsvReader.prime.html"},{"doc":"","kind":"struct","module":"std.csv","name":"CsvRecord","package":"phobos","parentType":"","signature":"CsvRecord(Contents,  Malformed ErrorLevel,  Range,  Separator) if (!is(Contents ==  class)  && !is(Contents ==  struct))","url":"/ddoc/phobos/std/csv.html#CsvRecord"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"front","package":"phobos","parentType":"CsvRecord","signature":"Contents front()","url":"/ddoc/phobos/std/csv/CsvRecord.front.html"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"empty","package":"phobos","parentType":"CsvRecord","signature":"bool empty()","url":"/ddoc/phobos/std/csv/CsvRecord.empty.html"},{"doc":"","kind":"method","module":"std.csv","name":"recordEnd","package":"phobos","parentType":"CsvRecord","signature":"bool recordEnd()","url":"/ddoc/phobos/std/csv/CsvRecord.recordEnd.html"},{"doc":"Part of an input range as defined by $(REF isInputRange, std,range,primitives).","kind":"method","module":"std.csv","name":"popFront","package":"phobos","parentType":"CsvRecord","signature":"void popFront()","url":"/ddoc/phobos/std/csv/CsvRecord.popFront.html"},{"doc":"","kind":"method","module":"std.csv","name":"prime","package":"phobos","parentType":"CsvRecord","signature":"void prime(size_t skipNum)","url":"/ddoc/phobos/std/csv/CsvRecord.prime.html"},{"doc":"","kind":"method","module":"std.csv","name":"prime","package":"phobos","parentType":"CsvRecord","signature":"void prime()","url":"/ddoc/phobos/std/csv/CsvRecord.prime.html"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Main date types) $(TD $(LREF Date) ...","kind":"module","module":"std.datetime.date","name":"std.datetime.date","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime/date.html"},{"doc":"Returns whether the given value is valid for the given unit type when in a time point. Naturally, a duration is not held to a particular range, but...","kind":"function","module":"std.datetime.date","name":"valid","package":"phobos","parentType":"","signature":"bool valid(string units)(int  value) if (units ==  \"months\" ||\n     units ==  \"hours\" ||\n     units ==  \"minutes\" ||\n     units ==  \"seconds\")","url":"/ddoc/phobos/std/datetime/date/valid.html"},{"doc":"Returns whether the given day is valid for the given year and month.","kind":"function","module":"std.datetime.date","name":"valid","package":"phobos","parentType":"","signature":"bool valid(string units)(int  year,  int  month,  int  day) if (units ==  \"days\")","url":"/ddoc/phobos/std/datetime/date/valid.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"castToYear","package":"phobos","parentType":"","signature":"short castToYear(int  year,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/date/castToYear.html"},{"doc":"Params: units = The units of time to validate. value = The number to validate. file  = The file that the $(LREF DateTimeException) will list if thr...","kind":"function","module":"std.datetime.date","name":"enforceValid","package":"phobos","parentType":"","signature":"void enforceValid(string units)(int  value,  string file =  __FILE__,  size_t line =  __LINE__) if (units ==  \"months\" ||\n     units ==  \"hours\" ||\n     units ==  \"minutes\" ||\n     units ==  \"seconds\")","url":"/ddoc/phobos/std/datetime/date/enforceValid.html"},{"doc":"Because the validity of the day number depends on both on the year and month of which the day is occurring, take all three variables to validate th...","kind":"function","module":"std.datetime.date","name":"enforceValid","package":"phobos","parentType":"","signature":"void enforceValid(string units)(int  year,  Month month,  int  day,  string file =  __FILE__,  size_t line =  __LINE__) if (units ==  \"days\")","url":"/ddoc/phobos/std/datetime/date/enforceValid.html"},{"doc":"Returns the number of days from the current day of the week to the given day of the week. If they are the same, then the result is 0.","kind":"function","module":"std.datetime.date","name":"daysToDayOfWeek","package":"phobos","parentType":"","signature":"int daysToDayOfWeek(DayOfWeek currDoW,  DayOfWeek dow)","url":"/ddoc/phobos/std/datetime/date/daysToDayOfWeek.html"},{"doc":"Returns the number of months from the current months of the year to the given month of the year. If they are the same, then the result is 0.","kind":"function","module":"std.datetime.date","name":"monthsToMonth","package":"phobos","parentType":"","signature":"int monthsToMonth(int  currMonth,  int  month)","url":"/ddoc/phobos/std/datetime/date/monthsToMonth.html"},{"doc":"Whether the given Gregorian Year is a leap year.","kind":"function","module":"std.datetime.date","name":"yearIsLeapYear","package":"phobos","parentType":"","signature":"bool yearIsLeapYear(int  year)","url":"/ddoc/phobos/std/datetime/date/yearIsLeapYear.html"},{"doc":"Whether all of the given strings are valid units of time.","kind":"function","module":"std.datetime.date","name":"validTimeUnits","package":"phobos","parentType":"","signature":"bool validTimeUnits(string[]  units...)","url":"/ddoc/phobos/std/datetime/date/validTimeUnits.html"},{"doc":"Compares two time unit strings. `\"years\"` are the largest units and `\"hnsecs\"` are the smallest.","kind":"function","module":"std.datetime.date","name":"cmpTimeUnits","package":"phobos","parentType":"","signature":"int cmpTimeUnits(string lhs,  string rhs)","url":"/ddoc/phobos/std/datetime/date/cmpTimeUnits.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"cmpTimeUnitsCTFE","package":"phobos","parentType":"","signature":"int cmpTimeUnitsCTFE(string lhs,  string rhs)","url":"/ddoc/phobos/std/datetime/date/cmpTimeUnitsCTFE.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"maxDay","package":"phobos","parentType":"","signature":"ubyte maxDay(int  year,  int  month)","url":"/ddoc/phobos/std/datetime/date/maxDay.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"splitUnitsFromHNSecs","package":"phobos","parentType":"","signature":"long splitUnitsFromHNSecs(string units)(ref  long  hnsecs) if (validTimeUnits(units)  &&  CmpTimeUnits!(units,  \"months\")  <  0)","url":"/ddoc/phobos/std/datetime/date/splitUnitsFromHNSecs.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"getDayOfWeek","package":"phobos","parentType":"","signature":"DayOfWeek getDayOfWeek(int  day)","url":"/ddoc/phobos/std/datetime/date/getDayOfWeek.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"monthToString","package":"phobos","parentType":"","signature":"string monthToString(Month month)","url":"/ddoc/phobos/std/datetime/date/monthToString.html"},{"doc":"","kind":"function","module":"std.datetime.date","name":"monthFromString","package":"phobos","parentType":"","signature":"Month monthFromString(T)(T monthStr) if (isSomeString!T)","url":"/ddoc/phobos/std/datetime/date/monthFromString.html"},{"doc":"Exception type used by std.datetime. It's an alias to $(REF TimeException,core,time). Either can be caught without concern about which module it ca...","kind":"alias","module":"std.datetime.date","name":"DateTimeException","package":"phobos","parentType":"","signature":"DateTimeException = TimeException","url":"/ddoc/phobos/std/datetime/date.html#DateTimeException"},{"doc":"Represents the 12 months of the Gregorian year (January is 1).","kind":"enum","module":"std.datetime.date","name":"Month","package":"phobos","parentType":"","signature":"Month : ubyte","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"jan","package":"phobos","parentType":"","signature":"jan = 1","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"feb","package":"phobos","parentType":"","signature":"feb = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"mar","package":"phobos","parentType":"","signature":"mar = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"apr","package":"phobos","parentType":"","signature":"apr = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"may","package":"phobos","parentType":"","signature":"may = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"jun","package":"phobos","parentType":"","signature":"jun = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"jul","package":"phobos","parentType":"","signature":"jul = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"aug","package":"phobos","parentType":"","signature":"aug = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"sep","package":"phobos","parentType":"","signature":"sep = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"oct","package":"phobos","parentType":"","signature":"oct = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"nov","package":"phobos","parentType":"","signature":"nov = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"dec","package":"phobos","parentType":"","signature":"dec = ","url":"/ddoc/phobos/std/datetime/date.html#Month"},{"doc":"Represents the 7 days of the Gregorian week (Sunday is 0).","kind":"enum","module":"std.datetime.date","name":"DayOfWeek","package":"phobos","parentType":"","signature":"DayOfWeek : ubyte","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"sun","package":"phobos","parentType":"","signature":"sun = 0","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"mon","package":"phobos","parentType":"","signature":"mon = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"tue","package":"phobos","parentType":"","signature":"tue = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"wed","package":"phobos","parentType":"","signature":"wed = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"thu","package":"phobos","parentType":"","signature":"thu = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"fri","package":"phobos","parentType":"","signature":"fri = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"","kind":"enum_member","module":"std.datetime.date","name":"sat","package":"phobos","parentType":"","signature":"sat = ","url":"/ddoc/phobos/std/datetime/date.html#DayOfWeek"},{"doc":"In some date calculations, adding months or years can cause the date to fall on a day of the month which is not valid (e.g. February 29th 2001 or J...","kind":"alias","module":"std.datetime.date","name":"AllowDayOverflow","package":"phobos","parentType":"","signature":"AllowDayOverflow = Flag!\"allowDayOverflow\"","url":"/ddoc/phobos/std/datetime/date.html#AllowDayOverflow"},{"doc":"Combines the $(REF Date,std,datetime,date) and $(REF TimeOfDay,std,datetime,date) structs to give an object which holds both the date and the time....","kind":"struct","module":"std.datetime.date","name":"DateTime","package":"phobos","parentType":"","signature":"DateTime","url":"/ddoc/phobos/std/datetime/date.html#DateTime"},{"doc":"Compares this $(LREF DateTime) with the given `DateTime.`.","kind":"method","module":"std.datetime.date","name":"opCmp","package":"phobos","parentType":"DateTime","signature":"int opCmp(DateTime rhs)","url":"/ddoc/phobos/std/datetime/date/DateTime.opCmp.html"},{"doc":"The date portion of $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"date","package":"phobos","parentType":"DateTime","signature":"Date date()","url":"/ddoc/phobos/std/datetime/date/DateTime.date.html"},{"doc":"The date portion of $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"date","package":"phobos","parentType":"DateTime","signature":"void date(Date date)","url":"/ddoc/phobos/std/datetime/date/DateTime.date.html"},{"doc":"The time portion of $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"timeOfDay","package":"phobos","parentType":"DateTime","signature":"TimeOfDay timeOfDay()","url":"/ddoc/phobos/std/datetime/date/DateTime.timeOfDay.html"},{"doc":"The time portion of $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"timeOfDay","package":"phobos","parentType":"DateTime","signature":"void timeOfDay(TimeOfDay tod)","url":"/ddoc/phobos/std/datetime/date/DateTime.timeOfDay.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.date","name":"year","package":"phobos","parentType":"DateTime","signature":"short year()","url":"/ddoc/phobos/std/datetime/date/DateTime.year.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.date","name":"year","package":"phobos","parentType":"DateTime","signature":"void year(int  year)","url":"/ddoc/phobos/std/datetime/date/DateTime.year.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.date","name":"yearBC","package":"phobos","parentType":"DateTime","signature":"short yearBC()","url":"/ddoc/phobos/std/datetime/date/DateTime.yearBC.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.date","name":"yearBC","package":"phobos","parentType":"DateTime","signature":"void yearBC(int  year)","url":"/ddoc/phobos/std/datetime/date/DateTime.yearBC.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.date","name":"month","package":"phobos","parentType":"DateTime","signature":"Month month()","url":"/ddoc/phobos/std/datetime/date/DateTime.month.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.date","name":"month","package":"phobos","parentType":"DateTime","signature":"void month(Month month)","url":"/ddoc/phobos/std/datetime/date/DateTime.month.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.date","name":"day","package":"phobos","parentType":"DateTime","signature":"ubyte day()","url":"/ddoc/phobos/std/datetime/date/DateTime.day.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.date","name":"day","package":"phobos","parentType":"DateTime","signature":"void day(int  day)","url":"/ddoc/phobos/std/datetime/date/DateTime.day.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.date","name":"hour","package":"phobos","parentType":"DateTime","signature":"ubyte hour()","url":"/ddoc/phobos/std/datetime/date/DateTime.hour.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.date","name":"hour","package":"phobos","parentType":"DateTime","signature":"void hour(int  hour)","url":"/ddoc/phobos/std/datetime/date/DateTime.hour.html"},{"doc":"Minutes past the hour.","kind":"method","module":"std.datetime.date","name":"minute","package":"phobos","parentType":"DateTime","signature":"ubyte minute()","url":"/ddoc/phobos/std/datetime/date/DateTime.minute.html"},{"doc":"Minutes past the hour.","kind":"method","module":"std.datetime.date","name":"minute","package":"phobos","parentType":"DateTime","signature":"void minute(int  minute)","url":"/ddoc/phobos/std/datetime/date/DateTime.minute.html"},{"doc":"Seconds past the minute.","kind":"method","module":"std.datetime.date","name":"second","package":"phobos","parentType":"DateTime","signature":"ubyte second()","url":"/ddoc/phobos/std/datetime/date/DateTime.second.html"},{"doc":"Seconds past the minute.","kind":"method","module":"std.datetime.date","name":"second","package":"phobos","parentType":"DateTime","signature":"void second(int  second)","url":"/ddoc/phobos/std/datetime/date/DateTime.second.html"},{"doc":"Adds the given number of years or months to this $(LREF DateTime), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"add","package":"phobos","parentType":"DateTime","signature":"DateTime add(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\" ||  units ==  \"months\")","url":"/ddoc/phobos/std/datetime/date/DateTime.add.html"},{"doc":"Adds the given number of years or months to this $(LREF DateTime), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"DateTime","signature":"DateTime roll(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\" ||  units ==  \"months\")","url":"/ddoc/phobos/std/datetime/date/DateTime.roll.html"},{"doc":"Adds the given number of units to this $(LREF DateTime), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"DateTime","signature":"DateTime roll(string units)(long  value) if (units ==  \"days\")","url":"/ddoc/phobos/std/datetime/date/DateTime.roll.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"DateTime","signature":"DateTime roll(string units)(long  value) if (units ==  \"hours\" ||\n         units ==  \"minutes\" ||\n         units ==  \"seconds\")","url":"/ddoc/phobos/std/datetime/date/DateTime.roll.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"DateTime","signature":"DateTime opBinary(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/DateTime.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"opBinaryRight","package":"phobos","parentType":"DateTime","signature":"DateTime opBinaryRight(string op)(Duration duration) if (op ==  \"+\")","url":"/ddoc/phobos/std/datetime/date/DateTime.opBinaryRight.html"},{"doc":"Gives the result of adding or subtracting a duration from this $(LREF DateTime), as well as assigning the result to this $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"opOpAssign","package":"phobos","parentType":"DateTime","signature":"DateTime opOpAssign(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/DateTime.opOpAssign.html"},{"doc":"Gives the difference between two $(LREF DateTime)s.","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"DateTime","signature":"Duration opBinary(string op)(DateTime rhs) if (op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/DateTime.opBinary.html"},{"doc":"Returns the difference between the two $(LREF DateTime)s in months.","kind":"method","module":"std.datetime.date","name":"diffMonths","package":"phobos","parentType":"DateTime","signature":"int diffMonths(DateTime rhs)","url":"/ddoc/phobos/std/datetime/date/DateTime.diffMonths.html"},{"doc":"Whether this $(LREF DateTime) is in a leap year.","kind":"method","module":"std.datetime.date","name":"isLeapYear","package":"phobos","parentType":"DateTime","signature":"bool isLeapYear()","url":"/ddoc/phobos/std/datetime/date/DateTime.isLeapYear.html"},{"doc":"Day of the week this $(LREF DateTime) is on.","kind":"method","module":"std.datetime.date","name":"dayOfWeek","package":"phobos","parentType":"DateTime","signature":"DayOfWeek dayOfWeek()","url":"/ddoc/phobos/std/datetime/date/DateTime.dayOfWeek.html"},{"doc":"Day of the year this $(LREF DateTime) is on.","kind":"method","module":"std.datetime.date","name":"dayOfYear","package":"phobos","parentType":"DateTime","signature":"ushort dayOfYear()","url":"/ddoc/phobos/std/datetime/date/DateTime.dayOfYear.html"},{"doc":"Day of the year.","kind":"method","module":"std.datetime.date","name":"dayOfYear","package":"phobos","parentType":"DateTime","signature":"void dayOfYear(int  day)","url":"/ddoc/phobos/std/datetime/date/DateTime.dayOfYear.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF DateTime) is on.","kind":"method","module":"std.datetime.date","name":"dayOfGregorianCal","package":"phobos","parentType":"DateTime","signature":"int dayOfGregorianCal()","url":"/ddoc/phobos/std/datetime/date/DateTime.dayOfGregorianCal.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF DateTime) is on. Setting this property does not affect the time portion of $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"dayOfGregorianCal","package":"phobos","parentType":"DateTime","signature":"void dayOfGregorianCal(int  days)","url":"/ddoc/phobos/std/datetime/date/DateTime.dayOfGregorianCal.html"},{"doc":"The ISO 8601 week of the year that this $(LREF DateTime) is in.","kind":"method","module":"std.datetime.date","name":"isoWeek","package":"phobos","parentType":"DateTime","signature":"ubyte isoWeek()","url":"/ddoc/phobos/std/datetime/date/DateTime.isoWeek.html"},{"doc":"The year of the ISO 8601 week calendar that this $(LREF DateTime) is in.","kind":"method","module":"std.datetime.date","name":"isoWeekYear","package":"phobos","parentType":"DateTime","signature":"short isoWeekYear()","url":"/ddoc/phobos/std/datetime/date/DateTime.isoWeekYear.html"},{"doc":"$(LREF DateTime) for the last day in the month that this $(LREF DateTime) is in. The time portion of endOfMonth is always 23:59:59.","kind":"method","module":"std.datetime.date","name":"endOfMonth","package":"phobos","parentType":"DateTime","signature":"DateTime endOfMonth()","url":"/ddoc/phobos/std/datetime/date/DateTime.endOfMonth.html"},{"doc":"The last day in the month that this $(LREF DateTime) is in.","kind":"method","module":"std.datetime.date","name":"daysInMonth","package":"phobos","parentType":"DateTime","signature":"ubyte daysInMonth()","url":"/ddoc/phobos/std/datetime/date/DateTime.daysInMonth.html"},{"doc":"Whether the current year is a date in A.D.","kind":"method","module":"std.datetime.date","name":"isAD","package":"phobos","parentType":"DateTime","signature":"bool isAD()","url":"/ddoc/phobos/std/datetime/date/DateTime.isAD.html"},{"doc":"The $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for this $(LREF DateTime) at the given time. For example, prior to noon, 1996-03-31 would ...","kind":"method","module":"std.datetime.date","name":"julianDay","package":"phobos","parentType":"DateTime","signature":"long julianDay()","url":"/ddoc/phobos/std/datetime/date/DateTime.julianDay.html"},{"doc":"The modified $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for any time on this date (since, the modified Julian day changes at midnight).","kind":"method","module":"std.datetime.date","name":"modJulianDay","package":"phobos","parentType":"DateTime","signature":"long modJulianDay()","url":"/ddoc/phobos/std/datetime/date/DateTime.modJulianDay.html"},{"doc":"Converts this $(LREF DateTime) to a string with the format `YYYYMMDDTHHMMSS`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"DateTime","signature":"string toISOString()","url":"/ddoc/phobos/std/datetime/date/DateTime.toISOString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"DateTime","signature":"void toISOString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/DateTime.toISOString.html"},{"doc":"Converts this $(LREF DateTime) to a string with the format `YYYY-MM-DDTHH:MM:SS`. If `writer` is set, the resulting string will be written directly...","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"DateTime","signature":"string toISOExtString()","url":"/ddoc/phobos/std/datetime/date/DateTime.toISOExtString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"DateTime","signature":"void toISOExtString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/DateTime.toISOExtString.html"},{"doc":"Converts this $(LREF DateTime) to a string with the format `YYYY-Mon-DD HH:MM:SS`. If `writer` is set, the resulting string will be written directl...","kind":"method","module":"std.datetime.date","name":"toSimpleString","package":"phobos","parentType":"DateTime","signature":"string toSimpleString()","url":"/ddoc/phobos/std/datetime/date/DateTime.toSimpleString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toSimpleString","package":"phobos","parentType":"DateTime","signature":"void toSimpleString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/DateTime.toSimpleString.html"},{"doc":"Converts this $(LREF DateTime) to a string.","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"DateTime","signature":"string toString()","url":"/ddoc/phobos/std/datetime/date/DateTime.toString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"DateTime","signature":"void toString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/DateTime.toString.html"},{"doc":"Creates a $(LREF DateTime) from a string with the format YYYYMMDDTHHMMSS. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOString","package":"phobos","parentType":"DateTime","signature":"DateTime fromISOString(S)(scope  const  S isoString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/date/DateTime.fromISOString.html"},{"doc":"Creates a $(LREF DateTime) from a string with the format YYYY-MM-DDTHH:MM:SS. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOExtString","package":"phobos","parentType":"DateTime","signature":"DateTime fromISOExtString(S)(scope  const  S isoExtString) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/date/DateTime.fromISOExtString.html"},{"doc":"Creates a $(LREF DateTime) from a string with the format YYYY-Mon-DD HH:MM:SS. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromSimpleString","package":"phobos","parentType":"DateTime","signature":"DateTime fromSimpleString(S)(scope  const  S simpleString) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/date/DateTime.fromSimpleString.html"},{"doc":"Returns the $(LREF DateTime) farthest in the past which is representable by $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"min","package":"phobos","parentType":"DateTime","signature":"DateTime min()","url":"/ddoc/phobos/std/datetime/date/DateTime.min.html"},{"doc":"Returns the $(LREF DateTime) farthest in the future which is representable by $(LREF DateTime).","kind":"method","module":"std.datetime.date","name":"max","package":"phobos","parentType":"DateTime","signature":"DateTime max()","url":"/ddoc/phobos/std/datetime/date/DateTime.max.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"_addSeconds","package":"phobos","parentType":"DateTime","signature":"DateTime _addSeconds(long  seconds)","url":"/ddoc/phobos/std/datetime/date/DateTime._addSeconds.html"},{"doc":"Represents a date in the $(HTTP en.wikipedia.org/wiki/Proleptic_Gregorian_calendar, Proleptic Gregorian Calendar) ranging from 32,768 B.C. to 32,76...","kind":"struct","module":"std.datetime.date","name":"Date","package":"phobos","parentType":"","signature":"Date","url":"/ddoc/phobos/std/datetime/date.html#Date"},{"doc":"Compares this $(LREF Date) with the given $(LREF Date).","kind":"method","module":"std.datetime.date","name":"opCmp","package":"phobos","parentType":"Date","signature":"int opCmp(Date rhs)","url":"/ddoc/phobos/std/datetime/date/Date.opCmp.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.date","name":"year","package":"phobos","parentType":"Date","signature":"short year()","url":"/ddoc/phobos/std/datetime/date/Date.year.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.date","name":"year","package":"phobos","parentType":"Date","signature":"void year(int  year)","url":"/ddoc/phobos/std/datetime/date/Date.year.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.date","name":"yearBC","package":"phobos","parentType":"Date","signature":"ushort yearBC()","url":"/ddoc/phobos/std/datetime/date/Date.yearBC.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.date","name":"yearBC","package":"phobos","parentType":"Date","signature":"void yearBC(int  year)","url":"/ddoc/phobos/std/datetime/date/Date.yearBC.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.date","name":"month","package":"phobos","parentType":"Date","signature":"Month month()","url":"/ddoc/phobos/std/datetime/date/Date.month.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.date","name":"month","package":"phobos","parentType":"Date","signature":"void month(Month month)","url":"/ddoc/phobos/std/datetime/date/Date.month.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.date","name":"day","package":"phobos","parentType":"Date","signature":"ubyte day()","url":"/ddoc/phobos/std/datetime/date/Date.day.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.date","name":"day","package":"phobos","parentType":"Date","signature":"void day(int  day)","url":"/ddoc/phobos/std/datetime/date/Date.day.html"},{"doc":"Adds the given number of years or months to this $(LREF Date), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"add","package":"phobos","parentType":"Date","signature":"Date add(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\")","url":"/ddoc/phobos/std/datetime/date/Date.add.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"add","package":"phobos","parentType":"Date","signature":"Date add(string units)(long  months,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"months\")","url":"/ddoc/phobos/std/datetime/date/Date.add.html"},{"doc":"Adds the given number of years or months to this $(LREF Date), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"Date","signature":"Date roll(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\")","url":"/ddoc/phobos/std/datetime/date/Date.roll.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"Date","signature":"Date roll(string units)(long  months,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"months\")","url":"/ddoc/phobos/std/datetime/date/Date.roll.html"},{"doc":"Adds the given number of units to this $(LREF Date), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"Date","signature":"Date roll(string units)(long  days) if (units ==  \"days\")","url":"/ddoc/phobos/std/datetime/date/Date.roll.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF Date).","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"Date","signature":"Date opBinary(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/Date.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"opBinaryRight","package":"phobos","parentType":"Date","signature":"Date opBinaryRight(string op)(Duration duration) if (op ==  \"+\")","url":"/ddoc/phobos/std/datetime/date/Date.opBinaryRight.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF Date), as well as assigning the result to this $(LREF Date).","kind":"method","module":"std.datetime.date","name":"opOpAssign","package":"phobos","parentType":"Date","signature":"Date opOpAssign(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/Date.opOpAssign.html"},{"doc":"Gives the difference between two $(LREF Date)s.","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"Date","signature":"Duration opBinary(string op)(Date rhs) if (op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/Date.opBinary.html"},{"doc":"Returns the difference between the two $(LREF Date)s in months.","kind":"method","module":"std.datetime.date","name":"diffMonths","package":"phobos","parentType":"Date","signature":"int diffMonths(Date rhs)","url":"/ddoc/phobos/std/datetime/date/Date.diffMonths.html"},{"doc":"Whether this $(LREF Date) is in a leap year.","kind":"method","module":"std.datetime.date","name":"isLeapYear","package":"phobos","parentType":"Date","signature":"bool isLeapYear()","url":"/ddoc/phobos/std/datetime/date/Date.isLeapYear.html"},{"doc":"Day of the week this $(LREF Date) is on.","kind":"method","module":"std.datetime.date","name":"dayOfWeek","package":"phobos","parentType":"Date","signature":"DayOfWeek dayOfWeek()","url":"/ddoc/phobos/std/datetime/date/Date.dayOfWeek.html"},{"doc":"Day of the year this $(LREF Date) is on.","kind":"method","module":"std.datetime.date","name":"dayOfYear","package":"phobos","parentType":"Date","signature":"ushort dayOfYear()","url":"/ddoc/phobos/std/datetime/date/Date.dayOfYear.html"},{"doc":"Day of the year.","kind":"method","module":"std.datetime.date","name":"dayOfYear","package":"phobos","parentType":"Date","signature":"void dayOfYear(int  day)","url":"/ddoc/phobos/std/datetime/date/Date.dayOfYear.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"setDayOfYear","package":"phobos","parentType":"Date","signature":"void setDayOfYear(bool  useExceptions =  false)(int  day)","url":"/ddoc/phobos/std/datetime/date/Date.setDayOfYear.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF Date) is on.","kind":"method","module":"std.datetime.date","name":"dayOfGregorianCal","package":"phobos","parentType":"Date","signature":"int dayOfGregorianCal()","url":"/ddoc/phobos/std/datetime/date/Date.dayOfGregorianCal.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF Date) is on.","kind":"method","module":"std.datetime.date","name":"dayOfGregorianCal","package":"phobos","parentType":"Date","signature":"void dayOfGregorianCal(int  day)","url":"/ddoc/phobos/std/datetime/date/Date.dayOfGregorianCal.html"},{"doc":"The ISO 8601 week and year of the year that this $(LREF Date) is in.","kind":"method","module":"std.datetime.date","name":"isoWeekAndYear","package":"phobos","parentType":"Date","signature":"@property auto isoWeekAndYear()","url":"/ddoc/phobos/std/datetime/date/Date.isoWeekAndYear.html"},{"doc":"The ISO 8601 week of the year that this $(LREF Date) is in.","kind":"method","module":"std.datetime.date","name":"isoWeek","package":"phobos","parentType":"Date","signature":"ubyte isoWeek()","url":"/ddoc/phobos/std/datetime/date/Date.isoWeek.html"},{"doc":"The year inside the ISO 8601 week calendar that this $(LREF Date) is in.","kind":"method","module":"std.datetime.date","name":"isoWeekYear","package":"phobos","parentType":"Date","signature":"short isoWeekYear()","url":"/ddoc/phobos/std/datetime/date/Date.isoWeekYear.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"fromISOWeek","package":"phobos","parentType":"Date","signature":"Date fromISOWeek(short  isoWeekYear,  ubyte  isoWeek,  DayOfWeek weekday)","url":"/ddoc/phobos/std/datetime/date/Date.fromISOWeek.html"},{"doc":"$(LREF Date) for the last day in the month that this $(LREF Date) is in.","kind":"method","module":"std.datetime.date","name":"endOfMonth","package":"phobos","parentType":"Date","signature":"Date endOfMonth()","url":"/ddoc/phobos/std/datetime/date/Date.endOfMonth.html"},{"doc":"The last day in the month that this $(LREF Date) is in.","kind":"method","module":"std.datetime.date","name":"daysInMonth","package":"phobos","parentType":"Date","signature":"ubyte daysInMonth()","url":"/ddoc/phobos/std/datetime/date/Date.daysInMonth.html"},{"doc":"Whether the current year is a date in A.D.","kind":"method","module":"std.datetime.date","name":"isAD","package":"phobos","parentType":"Date","signature":"bool isAD()","url":"/ddoc/phobos/std/datetime/date/Date.isAD.html"},{"doc":"The $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for this $(LREF Date) at noon (since the Julian day changes at noon).","kind":"method","module":"std.datetime.date","name":"julianDay","package":"phobos","parentType":"Date","signature":"long julianDay()","url":"/ddoc/phobos/std/datetime/date/Date.julianDay.html"},{"doc":"The modified $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for any time on this date (since, the modified Julian day changes at midnight).","kind":"method","module":"std.datetime.date","name":"modJulianDay","package":"phobos","parentType":"Date","signature":"long modJulianDay()","url":"/ddoc/phobos/std/datetime/date/Date.modJulianDay.html"},{"doc":"Converts this $(LREF Date) to a string with the format `YYYYMMDD`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"Date","signature":"string toISOString()","url":"/ddoc/phobos/std/datetime/date/Date.toISOString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"Date","signature":"void toISOString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/Date.toISOString.html"},{"doc":"Converts this $(LREF Date) to a string with the format `YYYY-MM-DD`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"Date","signature":"string toISOExtString()","url":"/ddoc/phobos/std/datetime/date/Date.toISOExtString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"Date","signature":"void toISOExtString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/Date.toISOExtString.html"},{"doc":"Converts this $(LREF Date) to a string with the format `YYYY-Mon-DD`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toSimpleString","package":"phobos","parentType":"Date","signature":"string toSimpleString()","url":"/ddoc/phobos/std/datetime/date/Date.toSimpleString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toSimpleString","package":"phobos","parentType":"Date","signature":"void toSimpleString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/Date.toSimpleString.html"},{"doc":"Converts this $(LREF Date) to a string.","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"Date","signature":"string toString()","url":"/ddoc/phobos/std/datetime/date/Date.toString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"Date","signature":"void toString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/Date.toString.html"},{"doc":"Creates a $(LREF Date) from a string with the format YYYYMMDD. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOString","package":"phobos","parentType":"Date","signature":"Date fromISOString(S)(scope  const  S isoString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/date/Date.fromISOString.html"},{"doc":"Creates a $(LREF Date) from a string with the format YYYY-MM-DD. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOExtString","package":"phobos","parentType":"Date","signature":"Date fromISOExtString(S)(scope  const  S isoExtString) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/date/Date.fromISOExtString.html"},{"doc":"Creates a $(LREF Date) from a string with the format YYYY-Mon-DD. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromSimpleString","package":"phobos","parentType":"Date","signature":"Date fromSimpleString(S)(scope  const  S simpleString) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/date/Date.fromSimpleString.html"},{"doc":"Returns the $(LREF Date) farthest in the past which is representable by $(LREF Date).","kind":"method","module":"std.datetime.date","name":"min","package":"phobos","parentType":"Date","signature":"Date min()","url":"/ddoc/phobos/std/datetime/date/Date.min.html"},{"doc":"Returns the $(LREF Date) farthest in the future which is representable by $(LREF Date).","kind":"method","module":"std.datetime.date","name":"max","package":"phobos","parentType":"Date","signature":"Date max()","url":"/ddoc/phobos/std/datetime/date/Date.max.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"_valid","package":"phobos","parentType":"Date","signature":"bool _valid(int  year,  int  month,  int  day)","url":"/ddoc/phobos/std/datetime/date/Date._valid.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"_addDays","package":"phobos","parentType":"Date","signature":"Date _addDays(long  days)","url":"/ddoc/phobos/std/datetime/date/Date._addDays.html"},{"doc":"Represents a time of day with hours, minutes, and seconds. It uses 24 hour time.","kind":"struct","module":"std.datetime.date","name":"TimeOfDay","package":"phobos","parentType":"","signature":"TimeOfDay","url":"/ddoc/phobos/std/datetime/date.html#TimeOfDay"},{"doc":"Compares this $(LREF TimeOfDay) with the given $(LREF TimeOfDay).","kind":"method","module":"std.datetime.date","name":"opCmp","package":"phobos","parentType":"TimeOfDay","signature":"int opCmp(TimeOfDay rhs)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.opCmp.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.date","name":"hour","package":"phobos","parentType":"TimeOfDay","signature":"ubyte hour()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.hour.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.date","name":"hour","package":"phobos","parentType":"TimeOfDay","signature":"void hour(int  hour)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.hour.html"},{"doc":"Minutes past the hour.","kind":"method","module":"std.datetime.date","name":"minute","package":"phobos","parentType":"TimeOfDay","signature":"ubyte minute()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.minute.html"},{"doc":"Minutes past the hour.","kind":"method","module":"std.datetime.date","name":"minute","package":"phobos","parentType":"TimeOfDay","signature":"void minute(int  minute)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.minute.html"},{"doc":"Seconds past the minute.","kind":"method","module":"std.datetime.date","name":"second","package":"phobos","parentType":"TimeOfDay","signature":"ubyte second()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.second.html"},{"doc":"Seconds past the minute.","kind":"method","module":"std.datetime.date","name":"second","package":"phobos","parentType":"TimeOfDay","signature":"void second(int  second)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.second.html"},{"doc":"Adds the given number of units to this $(LREF TimeOfDay), mutating it. A negative number will subtract.","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay roll(string units)(long  value) if (units ==  \"hours\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.roll.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"roll","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay roll(string units)(long  value) if (units ==  \"minutes\" ||  units ==  \"seconds\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.roll.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF TimeOfDay).","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay opBinary(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"opBinaryRight","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay opBinaryRight(string op)(Duration duration) if (op ==  \"+\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.opBinaryRight.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF TimeOfDay), as well as assigning the result to this $(LREF ...","kind":"method","module":"std.datetime.date","name":"opOpAssign","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay opOpAssign(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.opOpAssign.html"},{"doc":"Gives the difference between two $(LREF TimeOfDay)s.","kind":"method","module":"std.datetime.date","name":"opBinary","package":"phobos","parentType":"TimeOfDay","signature":"Duration opBinary(string op)(TimeOfDay rhs) if (op ==  \"-\")","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.opBinary.html"},{"doc":"Converts this $(LREF TimeOfDay) to a string with the format `HHMMSS`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"TimeOfDay","signature":"string toISOString()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toISOString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOString","package":"phobos","parentType":"TimeOfDay","signature":"void toISOString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toISOString.html"},{"doc":"Converts this $(LREF TimeOfDay) to a string with the format `HH:MM:SS`. If `writer` is set, the resulting string will be written directly to it.","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"TimeOfDay","signature":"string toISOExtString()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toISOExtString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toISOExtString","package":"phobos","parentType":"TimeOfDay","signature":"void toISOExtString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toISOExtString.html"},{"doc":"Converts this TimeOfDay to a string.","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"TimeOfDay","signature":"string toString()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.date","name":"toString","package":"phobos","parentType":"TimeOfDay","signature":"void toString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.toString.html"},{"doc":"Creates a $(LREF TimeOfDay) from a string with the format HHMMSS. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOString","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay fromISOString(S)(scope  const  S isoString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.fromISOString.html"},{"doc":"Creates a $(LREF TimeOfDay) from a string with the format HH:MM:SS. Whitespace is stripped from the given string.","kind":"method","module":"std.datetime.date","name":"fromISOExtString","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay fromISOExtString(S)(scope  const  S isoExtString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.fromISOExtString.html"},{"doc":"Returns midnight.","kind":"method","module":"std.datetime.date","name":"min","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay min()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.min.html"},{"doc":"Returns one second short of midnight.","kind":"method","module":"std.datetime.date","name":"max","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay max()","url":"/ddoc/phobos/std/datetime/date/TimeOfDay.max.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"_addSeconds","package":"phobos","parentType":"TimeOfDay","signature":"TimeOfDay _addSeconds(long  seconds)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay._addSeconds.html"},{"doc":"","kind":"method","module":"std.datetime.date","name":"_valid","package":"phobos","parentType":"TimeOfDay","signature":"bool _valid(int  hour,  int  minute,  int  second)","url":"/ddoc/phobos/std/datetime/date/TimeOfDay._valid.html"},{"doc":"Whether the given type defines all of the necessary functions for it to function as a time point.","kind":"template","module":"std.datetime.date","name":"isTimePoint","package":"phobos","parentType":"","signature":"isTimePoint(T)","url":"/ddoc/phobos/std/datetime/date.html#isTimePoint"},{"doc":"Compares two time unit strings at compile time. `\"years\"` are the largest units and `\"hnsecs\"` are the smallest.","kind":"template","module":"std.datetime.date","name":"CmpTimeUnits","package":"phobos","parentType":"","signature":"CmpTimeUnits(string lhs,  string rhs)","url":"/ddoc/phobos/std/datetime/date.html#CmpTimeUnits"},{"doc":"Array of the strings representing time units, starting with the smallest unit and going to the largest. It does not include `\"nsecs\"`.","kind":"variable","module":"std.datetime.date","name":"timeStrings","package":"phobos","parentType":"","signature":"string[] timeStrings","url":"/ddoc/phobos/std/datetime/date.html#timeStrings"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"_monthNames","package":"phobos","parentType":"","signature":"string[12] _monthNames","url":"/ddoc/phobos/std/datetime/date.html#_monthNames"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"daysInYear","package":"phobos","parentType":"","signature":"daysInYear","url":"/ddoc/phobos/std/datetime/date.html#daysInYear"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"daysInLeapYear","package":"phobos","parentType":"","signature":"daysInLeapYear","url":"/ddoc/phobos/std/datetime/date.html#daysInLeapYear"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"daysIn4Years","package":"phobos","parentType":"","signature":"daysIn4Years","url":"/ddoc/phobos/std/datetime/date.html#daysIn4Years"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"daysIn100Years","package":"phobos","parentType":"","signature":"daysIn100Years","url":"/ddoc/phobos/std/datetime/date.html#daysIn100Years"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"daysIn400Years","package":"phobos","parentType":"","signature":"daysIn400Years","url":"/ddoc/phobos/std/datetime/date.html#daysIn400Years"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"lastDayNonLeap","package":"phobos","parentType":"","signature":"int[13] lastDayNonLeap","url":"/ddoc/phobos/std/datetime/date.html#lastDayNonLeap"},{"doc":"","kind":"variable","module":"std.datetime.date","name":"lastDayLeap","package":"phobos","parentType":"","signature":"int[13] lastDayLeap","url":"/ddoc/phobos/std/datetime/date.html#lastDayLeap"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Main types) $(TD $(LREF Interval) $...","kind":"module","module":"std.datetime.interval","name":"std.datetime.interval","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime/interval.html"},{"doc":"Range-generating function.","kind":"function","module":"std.datetime.interval","name":"everyDayOfWeek","package":"phobos","parentType":"","signature":"TP delegate(scope  const  TP) everyDayOfWeek(TP,  Direction dir =  Direction.fwd)(DayOfWeek dayOfWeek) if (isTimePoint!TP &&\n    (dir ==  Direction.fwd ||  dir ==  Direction.bwd)  &&\n     __traits(hasMember,  TP,  \"dayOfWeek\")  &&\n    !__traits(isStaticFunction,  TP.dayOfWeek)  &&\n     is(typeof(TP.dayOfWeek)  ==  DayOfWeek))","url":"/ddoc/phobos/std/datetime/interval/everyDayOfWeek.html"},{"doc":"Range-generating function.","kind":"function","module":"std.datetime.interval","name":"everyMonth","package":"phobos","parentType":"","signature":"TP delegate(scope  const  TP) everyMonth(TP,  Direction dir =  Direction.fwd)(int  month) if (isTimePoint!TP &&\n    (dir ==  Direction.fwd ||  dir ==  Direction.bwd)  &&\n     __traits(hasMember,  TP,  \"month\")  &&\n    !__traits(isStaticFunction,  TP.month)  &&\n     is(typeof(TP.month)  ==  Month))","url":"/ddoc/phobos/std/datetime/interval/everyMonth.html"},{"doc":"Range-generating function.","kind":"function","module":"std.datetime.interval","name":"everyDuration","package":"phobos","parentType":"","signature":"TP delegate(return  scope  const  TP) everyDuration(TP,  Direction dir =  Direction.fwd,  D)(D duration) if (isTimePoint!TP &&\n     __traits(compiles,  TP.init +  duration)  &&\n    (dir ==  Direction.fwd ||  dir ==  Direction.bwd))","url":"/ddoc/phobos/std/datetime/interval/everyDuration.html"},{"doc":"Range-generating function.","kind":"function","module":"std.datetime.interval","name":"everyDuration","package":"phobos","parentType":"","signature":"TP delegate(scope  const  TP) everyDuration(TP,  Direction dir =  Direction.fwd,  D)(int  years,\n                                  int  months =  0,\n                                  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes,\n                                  D duration =  dur!\"days\"(0)) if (isTimePoint!TP &&\n     __traits(compiles,  TP.init +  duration)  &&\n     __traits(compiles,  TP.init.add!\"years\"(years))  &&\n     __traits(compiles,  TP.init.add!\"months\"(months))  &&\n    (dir ==  Direction.fwd ||  dir ==  Direction.bwd))","url":"/ddoc/phobos/std/datetime/interval/everyDuration.html"},{"doc":"Indicates a direction in time. One example of its use is $(LREF Interval)'s $(LREF expand) function which uses it to indicate whether the interval ...","kind":"enum","module":"std.datetime.interval","name":"Direction","package":"phobos","parentType":"","signature":"Direction","url":"/ddoc/phobos/std/datetime/interval.html#Direction"},{"doc":"Backward.","kind":"enum_member","module":"std.datetime.interval","name":"bwd","package":"phobos","parentType":"","signature":"bwd = ","url":"/ddoc/phobos/std/datetime/interval.html#Direction"},{"doc":"Forward.","kind":"enum_member","module":"std.datetime.interval","name":"fwd","package":"phobos","parentType":"","signature":"fwd = ","url":"/ddoc/phobos/std/datetime/interval.html#Direction"},{"doc":"Both backward and forward.","kind":"enum_member","module":"std.datetime.interval","name":"both","package":"phobos","parentType":"","signature":"both = ","url":"/ddoc/phobos/std/datetime/interval.html#Direction"},{"doc":"Used to indicate whether `popFront` should be called immediately upon creating a range. The idea is that for some functions used to generate a rang...","kind":"alias","module":"std.datetime.interval","name":"PopFirst","package":"phobos","parentType":"","signature":"PopFirst = Flag!\"popFirst\"","url":"/ddoc/phobos/std/datetime/interval.html#PopFirst"},{"doc":"Represents an interval of time.","kind":"struct","module":"std.datetime.interval","name":"Interval","package":"phobos","parentType":"","signature":"Interval(TP)","url":"/ddoc/phobos/std/datetime/interval.html#Interval"},{"doc":"Params: rhs = The $(LREF Interval) to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"Interval","signature":"Interval opAssign(const  ref  Interval rhs)","url":"/ddoc/phobos/std/datetime/interval/Interval.opAssign.html"},{"doc":"Params: rhs = The $(LREF Interval) to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"Interval","signature":"Interval opAssign(Interval rhs)","url":"/ddoc/phobos/std/datetime/interval/Interval.opAssign.html"},{"doc":"The starting point of the interval. It is included in the interval.","kind":"method","module":"std.datetime.interval","name":"begin","package":"phobos","parentType":"Interval","signature":"TP begin()","url":"/ddoc/phobos/std/datetime/interval/Interval.begin.html"},{"doc":"The starting point of the interval. It is included in the interval.","kind":"method","module":"std.datetime.interval","name":"begin","package":"phobos","parentType":"Interval","signature":"void begin(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/Interval.begin.html"},{"doc":"The end point of the interval. It is excluded from the interval.","kind":"method","module":"std.datetime.interval","name":"end","package":"phobos","parentType":"Interval","signature":"TP end()","url":"/ddoc/phobos/std/datetime/interval/Interval.end.html"},{"doc":"The end point of the interval. It is excluded from the interval.","kind":"method","module":"std.datetime.interval","name":"end","package":"phobos","parentType":"Interval","signature":"void end(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/Interval.end.html"},{"doc":"Returns the duration between `begin` and `end`.","kind":"method","module":"std.datetime.interval","name":"length","package":"phobos","parentType":"Interval","signature":"@property auto length()","url":"/ddoc/phobos/std/datetime/interval/Interval.length.html"},{"doc":"Whether the interval's length is 0, that is, whether $(D begin == end).","kind":"method","module":"std.datetime.interval","name":"empty","package":"phobos","parentType":"Interval","signature":"bool empty()","url":"/ddoc/phobos/std/datetime/interval/Interval.empty.html"},{"doc":"Whether the given time point is within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"Interval","signature":"bool contains(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/Interval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"Interval","signature":"bool contains(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"Interval","signature":"bool contains(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"Interval","signature":"bool contains(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.contains.html"},{"doc":"Whether this interval is before the given time point.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"Interval","signature":"bool isBefore(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/Interval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect with it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"Interval","signature":"bool isBefore(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect with it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"Interval","signature":"bool isBefore(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect with it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"Interval","signature":"bool isBefore(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isBefore.html"},{"doc":"Whether this interval is after the given time point.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"Interval","signature":"bool isAfter(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"Interval","signature":"bool isAfter(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"Interval","signature":"bool isAfter(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"Interval","signature":"bool isAfter(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAfter.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"Interval","signature":"bool intersects(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"Interval","signature":"bool intersects(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"Interval","signature":"bool intersects(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersects.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"Interval","signature":"Interval intersection(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"Interval","signature":"Interval intersection(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"Interval","signature":"Interval intersection(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.intersection.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"Interval","signature":"bool isAdjacent(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"Interval","signature":"bool isAdjacent(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"Interval","signature":"bool isAdjacent(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.isAdjacent.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"Interval","signature":"Interval merge(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.merge.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"Interval","signature":"PosInfInterval!TP merge(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.merge.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"Interval","signature":"NegInfInterval!TP merge(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.merge.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"Interval","signature":"Interval span(scope  const  Interval interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.span.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"Interval","signature":"PosInfInterval!TP span(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.span.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"Interval","signature":"NegInfInterval!TP span(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/Interval.span.html"},{"doc":"Shifts the interval forward or backwards in time by the given duration (a positive duration shifts the interval forward; a negative duration shifts...","kind":"method","module":"std.datetime.interval","name":"shift","package":"phobos","parentType":"Interval","signature":"void shift(D)(D duration) if (__traits(compiles,  begin +  duration))","url":"/ddoc/phobos/std/datetime/interval/Interval.shift.html"},{"doc":"Expands the interval forwards and/or backwards in time. Effectively, it does $(D begin -= duration) and/or $(D end += duration). Whether it expands...","kind":"method","module":"std.datetime.interval","name":"expand","package":"phobos","parentType":"Interval","signature":"void expand(D)(D duration,  Direction dir =  Direction.both) if (__traits(compiles,  begin +  duration))","url":"/ddoc/phobos/std/datetime/interval/Interval.expand.html"},{"doc":"Returns a range which iterates forward over the interval, starting at `begin`, using $(D_PARAM func) to generate each successive time point.","kind":"method","module":"std.datetime.interval","name":"fwdRange","package":"phobos","parentType":"Interval","signature":"IntervalRange!(TP,  Direction.fwd) fwdRange(TP delegate(scope  const  TP)  func,  PopFirst popFirst =  PopFirst.no)","url":"/ddoc/phobos/std/datetime/interval/Interval.fwdRange.html"},{"doc":"Returns a range which iterates backwards over the interval, starting at `end`, using $(D_PARAM func) to generate each successive time point.","kind":"method","module":"std.datetime.interval","name":"bwdRange","package":"phobos","parentType":"Interval","signature":"IntervalRange!(TP,  Direction.bwd) bwdRange(TP delegate(scope  const  TP)  func,  PopFirst popFirst =  PopFirst.no)","url":"/ddoc/phobos/std/datetime/interval/Interval.bwdRange.html"},{"doc":"Converts this interval to a string. Params: w = A `char` accepting $(REF_ALTTEXT output range, isOutputRange, std, range, primitives) Returns: A `s...","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"Interval","signature":"string toString()","url":"/ddoc/phobos/std/datetime/interval/Interval.toString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"Interval","signature":"void toString(Writer)(ref  Writer w) if (isOutputRange!(Writer,  char))","url":"/ddoc/phobos/std/datetime/interval/Interval.toString.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_enforceNotEmpty","package":"phobos","parentType":"Interval","signature":"void _enforceNotEmpty(size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/interval/Interval._enforceNotEmpty.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_valid","package":"phobos","parentType":"Interval","signature":"bool _valid(scope  const  TP begin,  scope  const  TP end)","url":"/ddoc/phobos/std/datetime/interval/Interval._valid.html"},{"doc":"Represents an interval of time which has positive infinity as its end point.","kind":"struct","module":"std.datetime.interval","name":"PosInfInterval","package":"phobos","parentType":"","signature":"PosInfInterval(TP)","url":"/ddoc/phobos/std/datetime/interval.html#PosInfInterval"},{"doc":"Params: rhs = The `PosInfInterval` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval opAssign(const  ref  PosInfInterval rhs)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.opAssign.html"},{"doc":"Params: rhs = The `PosInfInterval` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval opAssign(PosInfInterval rhs)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.opAssign.html"},{"doc":"The starting point of the interval. It is included in the interval.","kind":"method","module":"std.datetime.interval","name":"begin","package":"phobos","parentType":"PosInfInterval","signature":"TP begin()","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.begin.html"},{"doc":"The starting point of the interval. It is included in the interval.","kind":"method","module":"std.datetime.interval","name":"begin","package":"phobos","parentType":"PosInfInterval","signature":"void begin(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.begin.html"},{"doc":"Whether the given time point is within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"PosInfInterval","signature":"bool contains(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"PosInfInterval","signature":"bool contains(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"PosInfInterval","signature":"bool contains(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"PosInfInterval","signature":"bool contains(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.contains.html"},{"doc":"Whether this interval is before the given time point.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"PosInfInterval","signature":"bool isBefore(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"PosInfInterval","signature":"bool isBefore(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"PosInfInterval","signature":"bool isBefore(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"PosInfInterval","signature":"bool isBefore(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isBefore.html"},{"doc":"Whether this interval is after the given time point.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"PosInfInterval","signature":"bool isAfter(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"PosInfInterval","signature":"bool isAfter(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"PosInfInterval","signature":"bool isAfter(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"PosInfInterval","signature":"bool isAfter(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAfter.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"PosInfInterval","signature":"bool intersects(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"PosInfInterval","signature":"bool intersects(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"PosInfInterval","signature":"bool intersects(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersects.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"PosInfInterval","signature":"Interval!TP intersection(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval intersection(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"PosInfInterval","signature":"Interval!TP intersection(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.intersection.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"PosInfInterval","signature":"bool isAdjacent(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"PosInfInterval","signature":"bool isAdjacent(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"PosInfInterval","signature":"bool isAdjacent(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.isAdjacent.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval merge(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.merge.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval merge(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.merge.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval span(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.span.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"PosInfInterval","signature":"PosInfInterval span(scope  const  PosInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.span.html"},{"doc":"Shifts the `begin` of this interval forward or backwards in time by the given duration (a positive duration shifts the interval forward; a negative...","kind":"method","module":"std.datetime.interval","name":"shift","package":"phobos","parentType":"PosInfInterval","signature":"void shift(D)(D duration) if (__traits(compiles,  begin +  duration))","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.shift.html"},{"doc":"Expands the interval backwards in time. Effectively, it does $(D begin -= duration).","kind":"method","module":"std.datetime.interval","name":"expand","package":"phobos","parentType":"PosInfInterval","signature":"void expand(D)(D duration) if (__traits(compiles,  begin +  duration))","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.expand.html"},{"doc":"Returns a range which iterates forward over the interval, starting at `begin`, using $(D_PARAM func) to generate each successive time point.","kind":"method","module":"std.datetime.interval","name":"fwdRange","package":"phobos","parentType":"PosInfInterval","signature":"PosInfIntervalRange!(TP) fwdRange(TP delegate(scope  const  TP)  func,  PopFirst popFirst =  PopFirst.no)","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.fwdRange.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"PosInfInterval","signature":"string toString()","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.toString.html"},{"doc":"Converts this interval to a string.","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"PosInfInterval","signature":"string toString()","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval.toString.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_toStringImpl","package":"phobos","parentType":"PosInfInterval","signature":"string _toStringImpl()","url":"/ddoc/phobos/std/datetime/interval/PosInfInterval._toStringImpl.html"},{"doc":"Represents an interval of time which has negative infinity as its starting point.","kind":"struct","module":"std.datetime.interval","name":"NegInfInterval","package":"phobos","parentType":"","signature":"NegInfInterval(TP)","url":"/ddoc/phobos/std/datetime/interval.html#NegInfInterval"},{"doc":"Params: rhs = The `NegInfInterval` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval opAssign(const  ref  NegInfInterval rhs)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.opAssign.html"},{"doc":"Params: rhs = The `NegInfInterval` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval opAssign(NegInfInterval rhs)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.opAssign.html"},{"doc":"The end point of the interval. It is excluded from the interval.","kind":"method","module":"std.datetime.interval","name":"end","package":"phobos","parentType":"NegInfInterval","signature":"TP end()","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.end.html"},{"doc":"The end point of the interval. It is excluded from the interval.","kind":"method","module":"std.datetime.interval","name":"end","package":"phobos","parentType":"NegInfInterval","signature":"void end(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.end.html"},{"doc":"Whether the given time point is within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"NegInfInterval","signature":"bool contains(TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"NegInfInterval","signature":"bool contains(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"NegInfInterval","signature":"bool contains(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.contains.html"},{"doc":"Whether the given interval is completely within this interval.","kind":"method","module":"std.datetime.interval","name":"contains","package":"phobos","parentType":"NegInfInterval","signature":"bool contains(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.contains.html"},{"doc":"Whether this interval is before the given time point.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"NegInfInterval","signature":"bool isBefore(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"NegInfInterval","signature":"bool isBefore(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"NegInfInterval","signature":"bool isBefore(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isBefore.html"},{"doc":"Whether this interval is before the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isBefore","package":"phobos","parentType":"NegInfInterval","signature":"bool isBefore(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isBefore.html"},{"doc":"Whether this interval is after the given time point.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"NegInfInterval","signature":"bool isAfter(scope  const  TP timePoint)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"NegInfInterval","signature":"bool isAfter(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"NegInfInterval","signature":"bool isAfter(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAfter.html"},{"doc":"Whether this interval is after the given interval and does not intersect it.","kind":"method","module":"std.datetime.interval","name":"isAfter","package":"phobos","parentType":"NegInfInterval","signature":"bool isAfter(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAfter.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"NegInfInterval","signature":"bool intersects(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"NegInfInterval","signature":"bool intersects(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersects.html"},{"doc":"Whether the given interval overlaps this interval.","kind":"method","module":"std.datetime.interval","name":"intersects","package":"phobos","parentType":"NegInfInterval","signature":"bool intersects(scope  const  NegInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersects.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"NegInfInterval","signature":"Interval!TP intersection(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"NegInfInterval","signature":"Interval!TP intersection(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersection.html"},{"doc":"Returns the intersection of two intervals","kind":"method","module":"std.datetime.interval","name":"intersection","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval intersection(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.intersection.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"NegInfInterval","signature":"bool isAdjacent(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"NegInfInterval","signature":"bool isAdjacent(scope  const  PosInfInterval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAdjacent.html"},{"doc":"Whether the given interval is adjacent to this interval.","kind":"method","module":"std.datetime.interval","name":"isAdjacent","package":"phobos","parentType":"NegInfInterval","signature":"bool isAdjacent(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.isAdjacent.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval merge(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.merge.html"},{"doc":"Returns the union of two intervals","kind":"method","module":"std.datetime.interval","name":"merge","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval merge(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.merge.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval span(scope  const  Interval!TP interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.span.html"},{"doc":"Returns an interval that covers from the earliest time point of two intervals up to (but not including) the latest time point of two intervals.","kind":"method","module":"std.datetime.interval","name":"span","package":"phobos","parentType":"NegInfInterval","signature":"NegInfInterval span(scope  const  NegInfInterval interval)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.span.html"},{"doc":"Shifts the `end` of this interval forward or backwards in time by the given duration (a positive duration shifts the interval forward; a negative d...","kind":"method","module":"std.datetime.interval","name":"shift","package":"phobos","parentType":"NegInfInterval","signature":"void shift(D)(D duration) if (__traits(compiles,  end +  duration))","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.shift.html"},{"doc":"Expands the interval forwards in time. Effectively, it does $(D end += duration).","kind":"method","module":"std.datetime.interval","name":"expand","package":"phobos","parentType":"NegInfInterval","signature":"void expand(D)(D duration) if (__traits(compiles,  end +  duration))","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.expand.html"},{"doc":"Returns a range which iterates backwards over the interval, starting at `end`, using $(D_PARAM func) to generate each successive time point.","kind":"method","module":"std.datetime.interval","name":"bwdRange","package":"phobos","parentType":"NegInfInterval","signature":"NegInfIntervalRange!(TP) bwdRange(TP delegate(scope  const  TP)  func,  PopFirst popFirst =  PopFirst.no)","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.bwdRange.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"NegInfInterval","signature":"string toString()","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.toString.html"},{"doc":"Converts this interval to a string.","kind":"method","module":"std.datetime.interval","name":"toString","package":"phobos","parentType":"NegInfInterval","signature":"string toString()","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval.toString.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_toStringImpl","package":"phobos","parentType":"NegInfInterval","signature":"string _toStringImpl()","url":"/ddoc/phobos/std/datetime/interval/NegInfInterval._toStringImpl.html"},{"doc":"A range over an $(LREF Interval).","kind":"struct","module":"std.datetime.interval","name":"IntervalRange","package":"phobos","parentType":"","signature":"IntervalRange(TP,  Direction dir) if (isTimePoint!TP &&  dir !=  Direction.both)","url":"/ddoc/phobos/std/datetime/interval.html#IntervalRange"},{"doc":"Params: rhs = The `IntervalRange` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"IntervalRange","signature":"IntervalRange opAssign(ref  IntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.opAssign.html"},{"doc":"Ditto","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"IntervalRange","signature":"IntervalRange opAssign(IntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.opAssign.html"},{"doc":"Whether this `IntervalRange` is empty.","kind":"method","module":"std.datetime.interval","name":"empty","package":"phobos","parentType":"IntervalRange","signature":"bool empty()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.empty.html"},{"doc":"The first time point in the range.","kind":"method","module":"std.datetime.interval","name":"front","package":"phobos","parentType":"IntervalRange","signature":"TP front()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.front.html"},{"doc":"Pops `front` from the range, using `func` to generate the next time point in the range. If the generated time point is beyond the edge of the range...","kind":"method","module":"std.datetime.interval","name":"popFront","package":"phobos","parentType":"IntervalRange","signature":"void popFront()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.popFront.html"},{"doc":"Returns a copy of `this`.","kind":"method","module":"std.datetime.interval","name":"save","package":"phobos","parentType":"IntervalRange","signature":"IntervalRange save()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.save.html"},{"doc":"The interval that this `IntervalRange` currently covers.","kind":"method","module":"std.datetime.interval","name":"interval","package":"phobos","parentType":"IntervalRange","signature":"Interval!TP interval()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.interval.html"},{"doc":"The function used to generate the next time point in the range.","kind":"method","module":"std.datetime.interval","name":"func","package":"phobos","parentType":"IntervalRange","signature":"TP delegate(scope  const  TP) func()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.func.html"},{"doc":"The `Direction` that this range iterates in.","kind":"method","module":"std.datetime.interval","name":"direction","package":"phobos","parentType":"IntervalRange","signature":"Direction direction()","url":"/ddoc/phobos/std/datetime/interval/IntervalRange.direction.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_enforceNotEmpty","package":"phobos","parentType":"IntervalRange","signature":"void _enforceNotEmpty(size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/interval/IntervalRange._enforceNotEmpty.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_enforceCorrectDirection","package":"phobos","parentType":"IntervalRange","signature":"void _enforceCorrectDirection(scope  const  TP newTP,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/interval/IntervalRange._enforceCorrectDirection.html"},{"doc":"A range over a `PosInfInterval`. It is an infinite range.","kind":"struct","module":"std.datetime.interval","name":"PosInfIntervalRange","package":"phobos","parentType":"","signature":"PosInfIntervalRange(TP) if (isTimePoint!TP)","url":"/ddoc/phobos/std/datetime/interval.html#PosInfIntervalRange"},{"doc":"Params: rhs = The `PosInfIntervalRange` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"PosInfIntervalRange","signature":"PosInfIntervalRange opAssign(ref  PosInfIntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.opAssign.html"},{"doc":"Ditto","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"PosInfIntervalRange","signature":"PosInfIntervalRange opAssign(PosInfIntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.opAssign.html"},{"doc":"The first time point in the range.","kind":"method","module":"std.datetime.interval","name":"front","package":"phobos","parentType":"PosInfIntervalRange","signature":"TP front()","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.front.html"},{"doc":"Pops `front` from the range, using `func` to generate the next time point in the range.","kind":"method","module":"std.datetime.interval","name":"popFront","package":"phobos","parentType":"PosInfIntervalRange","signature":"void popFront()","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.popFront.html"},{"doc":"Returns a copy of `this`.","kind":"method","module":"std.datetime.interval","name":"save","package":"phobos","parentType":"PosInfIntervalRange","signature":"PosInfIntervalRange save()","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.save.html"},{"doc":"The interval that this range currently covers.","kind":"method","module":"std.datetime.interval","name":"interval","package":"phobos","parentType":"PosInfIntervalRange","signature":"PosInfInterval!TP interval()","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.interval.html"},{"doc":"The function used to generate the next time point in the range.","kind":"method","module":"std.datetime.interval","name":"func","package":"phobos","parentType":"PosInfIntervalRange","signature":"TP delegate(scope  const  TP) func()","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange.func.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_enforceCorrectDirection","package":"phobos","parentType":"PosInfIntervalRange","signature":"void _enforceCorrectDirection(scope  const  TP newTP,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/interval/PosInfIntervalRange._enforceCorrectDirection.html"},{"doc":"A range over a `NegInfInterval`. It is an infinite range.","kind":"struct","module":"std.datetime.interval","name":"NegInfIntervalRange","package":"phobos","parentType":"","signature":"NegInfIntervalRange(TP) if (isTimePoint!TP)","url":"/ddoc/phobos/std/datetime/interval.html#NegInfIntervalRange"},{"doc":"Params: rhs = The `NegInfIntervalRange` to assign to this one.","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"NegInfIntervalRange","signature":"NegInfIntervalRange opAssign(ref  NegInfIntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.opAssign.html"},{"doc":"Ditto","kind":"method","module":"std.datetime.interval","name":"opAssign","package":"phobos","parentType":"NegInfIntervalRange","signature":"NegInfIntervalRange opAssign(NegInfIntervalRange rhs)","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.opAssign.html"},{"doc":"The first time point in the range.","kind":"method","module":"std.datetime.interval","name":"front","package":"phobos","parentType":"NegInfIntervalRange","signature":"TP front()","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.front.html"},{"doc":"Pops `front` from the range, using `func` to generate the next time point in the range.","kind":"method","module":"std.datetime.interval","name":"popFront","package":"phobos","parentType":"NegInfIntervalRange","signature":"void popFront()","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.popFront.html"},{"doc":"Returns a copy of `this`.","kind":"method","module":"std.datetime.interval","name":"save","package":"phobos","parentType":"NegInfIntervalRange","signature":"NegInfIntervalRange save()","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.save.html"},{"doc":"The interval that this range currently covers.","kind":"method","module":"std.datetime.interval","name":"interval","package":"phobos","parentType":"NegInfIntervalRange","signature":"NegInfInterval!TP interval()","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.interval.html"},{"doc":"The function used to generate the next time point in the range.","kind":"method","module":"std.datetime.interval","name":"func","package":"phobos","parentType":"NegInfIntervalRange","signature":"TP delegate(scope  const  TP) func()","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange.func.html"},{"doc":"","kind":"method","module":"std.datetime.interval","name":"_enforceCorrectDirection","package":"phobos","parentType":"NegInfIntervalRange","signature":"void _enforceCorrectDirection(scope  const  TP newTP,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/interval/NegInfIntervalRange._enforceCorrectDirection.html"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;)","kind":"module","module":"std.datetime","name":"std.datetime","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime.html"},{"doc":"Module containing some basic benchmarking and timing functionality.","kind":"module","module":"std.datetime.stopwatch","name":"std.datetime.stopwatch","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime/stopwatch.html"},{"doc":"Benchmarks code for speed assessment and comparison.","kind":"function","module":"std.datetime.stopwatch","name":"benchmark","package":"phobos","parentType":"","signature":"Duration[fun.length] benchmark(fun...)(uint  n)","url":"/ddoc/phobos/std/datetime/stopwatch/benchmark.html"},{"doc":"Used by StopWatch to indicate whether it should start immediately upon construction.","kind":"alias","module":"std.datetime.stopwatch","name":"AutoStart","package":"phobos","parentType":"","signature":"AutoStart = Flag!\"autoStart\"","url":"/ddoc/phobos/std/datetime/stopwatch.html#AutoStart"},{"doc":"StopWatch is used to measure time just like one would do with a physical stopwatch, including stopping, restarting, and/or resetting it.","kind":"struct","module":"std.datetime.stopwatch","name":"StopWatch","package":"phobos","parentType":"","signature":"StopWatch","url":"/ddoc/phobos/std/datetime/stopwatch.html#StopWatch"},{"doc":"Resets the StopWatch.","kind":"method","module":"std.datetime.stopwatch","name":"reset","package":"phobos","parentType":"StopWatch","signature":"void reset()","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.reset.html"},{"doc":"Starts the StopWatch.","kind":"method","module":"std.datetime.stopwatch","name":"start","package":"phobos","parentType":"StopWatch","signature":"void start()","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.start.html"},{"doc":"Stops the StopWatch.","kind":"method","module":"std.datetime.stopwatch","name":"stop","package":"phobos","parentType":"StopWatch","signature":"void stop()","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.stop.html"},{"doc":"Peek at the amount of time that the StopWatch has been running.","kind":"method","module":"std.datetime.stopwatch","name":"peek","package":"phobos","parentType":"StopWatch","signature":"Duration peek()","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.peek.html"},{"doc":"Sets the total time which the StopWatch has been running (i.e. what peek returns).","kind":"method","module":"std.datetime.stopwatch","name":"setTimeElapsed","package":"phobos","parentType":"StopWatch","signature":"void setTimeElapsed(Duration timeElapsed)","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.setTimeElapsed.html"},{"doc":"Returns whether this StopWatch is currently running.","kind":"method","module":"std.datetime.stopwatch","name":"running","package":"phobos","parentType":"StopWatch","signature":"bool running()","url":"/ddoc/phobos/std/datetime/stopwatch/StopWatch.running.html"},{"doc":"$(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Types) $(TD $(LREF Clock) $(LREF SysTime) $(LREF DosFileTime) )) $(T...","kind":"module","module":"std.datetime.systime","name":"std.datetime.systime","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime/systime.html"},{"doc":"Converts from unix time (which uses midnight, January 1st, 1970 UTC as its epoch and seconds as its units) to \"std time\" (which uses midnight, Janu...","kind":"function","module":"std.datetime.systime","name":"unixTimeToStdTime","package":"phobos","parentType":"","signature":"long unixTimeToStdTime(long  unixTime)","url":"/ddoc/phobos/std/datetime/systime/unixTimeToStdTime.html"},{"doc":"Converts std time (which uses midnight, January 1st, 1 A.D. UTC as its epoch and hnsecs as its units) to unix time (which uses midnight, January 1s...","kind":"function","module":"std.datetime.systime","name":"stdTimeToUnixTime","package":"phobos","parentType":"","signature":"T stdTimeToUnixTime(T =  time_t)(long  stdTime) if (is(T ==  int)  ||  is(T ==  long))","url":"/ddoc/phobos/std/datetime/systime/stdTimeToUnixTime.html"},{"doc":"Converts from DOS file date/time to $(LREF SysTime).","kind":"function","module":"std.datetime.systime","name":"DosFileTimeToSysTime","package":"phobos","parentType":"","signature":"SysTime DosFileTimeToSysTime(DosFileTime dft,  immutable  TimeZone tz =  LocalTime())","url":"/ddoc/phobos/std/datetime/systime/DosFileTimeToSysTime.html"},{"doc":"Converts from $(LREF SysTime) to DOS file date/time.","kind":"function","module":"std.datetime.systime","name":"SysTimeToDosFileTime","package":"phobos","parentType":"","signature":"DosFileTime SysTimeToDosFileTime(scope  SysTime sysTime)","url":"/ddoc/phobos/std/datetime/systime/SysTimeToDosFileTime.html"},{"doc":"The given array of `char` or random-access range of `char` or `ubyte` is expected to be in the format specified in $(HTTP tools.ietf.org/html/rfc53...","kind":"function","module":"std.datetime.systime","name":"parseRFC822DateTime","package":"phobos","parentType":"","signature":"SysTime parseRFC822DateTime()(scope  const  char[]  value)","url":"/ddoc/phobos/std/datetime/systime/parseRFC822DateTime.html"},{"doc":"Ditto","kind":"function","module":"std.datetime.systime","name":"parseRFC822DateTime","package":"phobos","parentType":"","signature":"SysTime parseRFC822DateTime(R)(scope  R value) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&\n    (is(immutable  ElementType!R ==  immutable  char)  ||  is(immutable  ElementType!R ==  immutable  ubyte)))","url":"/ddoc/phobos/std/datetime/systime/parseRFC822DateTime.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"fracSecsToISOString","package":"phobos","parentType":"","signature":"string fracSecsToISOString(int  hnsecs,  int  prec =  - 1)","url":"/ddoc/phobos/std/datetime/systime/fracSecsToISOString.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"fracSecsToISOString","package":"phobos","parentType":"","signature":"void fracSecsToISOString(W)(ref  W writer,  int  hnsecs,  int  prec =  - 1)","url":"/ddoc/phobos/std/datetime/systime/fracSecsToISOString.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"fracSecsFromISOString","package":"phobos","parentType":"","signature":"Duration fracSecsFromISOString(S)(scope  const  S isoString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/systime/fracSecsFromISOString.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"getUnitsFromHNSecs","package":"phobos","parentType":"","signature":"long getUnitsFromHNSecs(string units)(long  hnsecs) if (validTimeUnits(units)  &&\n     CmpTimeUnits!(units,  \"months\")  <  0)","url":"/ddoc/phobos/std/datetime/systime/getUnitsFromHNSecs.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"removeUnitsFromHNSecs","package":"phobos","parentType":"","signature":"long removeUnitsFromHNSecs(string units)(long  hnsecs) if (validTimeUnits(units)  &&\n     CmpTimeUnits!(units,  \"months\")  <  0)","url":"/ddoc/phobos/std/datetime/systime/removeUnitsFromHNSecs.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"_stripCFWS","package":"phobos","parentType":"","signature":"R _stripCFWS(R)(R range) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&\n    (is(immutable  ElementType!R ==  immutable  char)  ||  is(immutable  ElementType!R ==  immutable  ubyte)))","url":"/ddoc/phobos/std/datetime/systime/_stripCFWS.html"},{"doc":"","kind":"function","module":"std.datetime.systime","name":"_convDigits","package":"phobos","parentType":"","signature":"T _convDigits(T,  R)(R str) if (isIntegral!T &&  isSigned!T)","url":"/ddoc/phobos/std/datetime/systime/_convDigits.html"},{"doc":"Effectively a namespace to make it clear that the methods it contains are getting the time from the system clock. It cannot be instantiated.","kind":"class","module":"std.datetime.systime","name":"Clock","package":"phobos","parentType":"","signature":"Clock","url":"/ddoc/phobos/std/datetime/systime.html#Clock"},{"doc":"Returns the current time in the given time zone.","kind":"method","module":"std.datetime.systime","name":"currTime","package":"phobos","parentType":"Clock","signature":"SysTime currTime(ClockType clockType =  ClockType.normal)(immutable  TimeZone tz =  LocalTime())","url":"/ddoc/phobos/std/datetime/systime/Clock.currTime.html"},{"doc":"Returns the number of hnsecs since midnight, January 1st, 1 A.D. for the current time.","kind":"method","module":"std.datetime.systime","name":"currStdTime","package":"phobos","parentType":"Clock","signature":"long currStdTime(ClockType clockType =  ClockType.normal)()","url":"/ddoc/phobos/std/datetime/systime/Clock.currStdTime.html"},{"doc":"`SysTime` is the type used to get the current time from the system or doing anything that involves time zones. Unlike $(REF DateTime,std,datetime,d...","kind":"struct","module":"std.datetime.systime","name":"SysTime","package":"phobos","parentType":"","signature":"SysTime","url":"/ddoc/phobos/std/datetime/systime.html#SysTime"},{"doc":"Params: rhs = The $(LREF SysTime) to assign to this one.","kind":"method","module":"std.datetime.systime","name":"opAssign","package":"phobos","parentType":"SysTime","signature":"SysTime opAssign()(auto  ref  const(SysTime)  rhs)","url":"/ddoc/phobos/std/datetime/systime/SysTime.opAssign.html"},{"doc":"Checks for equality between this $(LREF SysTime) and the given $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opEquals","package":"phobos","parentType":"SysTime","signature":"bool opEquals()(auto  ref  const(SysTime)  rhs)","url":"/ddoc/phobos/std/datetime/systime/SysTime.opEquals.html"},{"doc":"Compares this $(LREF SysTime) with the given $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opCmp","package":"phobos","parentType":"SysTime","signature":"int opCmp()(auto  ref  const(SysTime)  rhs)","url":"/ddoc/phobos/std/datetime/systime/SysTime.opCmp.html"},{"doc":"Returns: A hash of the $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"toHash","package":"phobos","parentType":"SysTime","signature":"size_t toHash()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toHash.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.systime","name":"year","package":"phobos","parentType":"SysTime","signature":"short year()","url":"/ddoc/phobos/std/datetime/systime/SysTime.year.html"},{"doc":"Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive are B.C.","kind":"method","module":"std.datetime.systime","name":"year","package":"phobos","parentType":"SysTime","signature":"void year(int  year)","url":"/ddoc/phobos/std/datetime/systime/SysTime.year.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.systime","name":"yearBC","package":"phobos","parentType":"SysTime","signature":"ushort yearBC()","url":"/ddoc/phobos/std/datetime/systime/SysTime.yearBC.html"},{"doc":"Year B.C. of the Gregorian Calendar counting year 0 as 1 B.C.","kind":"method","module":"std.datetime.systime","name":"yearBC","package":"phobos","parentType":"SysTime","signature":"void yearBC(int  year)","url":"/ddoc/phobos/std/datetime/systime/SysTime.yearBC.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.systime","name":"month","package":"phobos","parentType":"SysTime","signature":"Month month()","url":"/ddoc/phobos/std/datetime/systime/SysTime.month.html"},{"doc":"Month of a Gregorian Year.","kind":"method","module":"std.datetime.systime","name":"month","package":"phobos","parentType":"SysTime","signature":"void month(Month month)","url":"/ddoc/phobos/std/datetime/systime/SysTime.month.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.systime","name":"day","package":"phobos","parentType":"SysTime","signature":"ubyte day()","url":"/ddoc/phobos/std/datetime/systime/SysTime.day.html"},{"doc":"Day of a Gregorian Month.","kind":"method","module":"std.datetime.systime","name":"day","package":"phobos","parentType":"SysTime","signature":"void day(int  day)","url":"/ddoc/phobos/std/datetime/systime/SysTime.day.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.systime","name":"hour","package":"phobos","parentType":"SysTime","signature":"ubyte hour()","url":"/ddoc/phobos/std/datetime/systime/SysTime.hour.html"},{"doc":"Hours past midnight.","kind":"method","module":"std.datetime.systime","name":"hour","package":"phobos","parentType":"SysTime","signature":"void hour(int  hour)","url":"/ddoc/phobos/std/datetime/systime/SysTime.hour.html"},{"doc":"Minutes past the current hour.","kind":"method","module":"std.datetime.systime","name":"minute","package":"phobos","parentType":"SysTime","signature":"ubyte minute()","url":"/ddoc/phobos/std/datetime/systime/SysTime.minute.html"},{"doc":"Minutes past the current hour.","kind":"method","module":"std.datetime.systime","name":"minute","package":"phobos","parentType":"SysTime","signature":"void minute(int  minute)","url":"/ddoc/phobos/std/datetime/systime/SysTime.minute.html"},{"doc":"Seconds past the current minute.","kind":"method","module":"std.datetime.systime","name":"second","package":"phobos","parentType":"SysTime","signature":"ubyte second()","url":"/ddoc/phobos/std/datetime/systime/SysTime.second.html"},{"doc":"Seconds past the current minute.","kind":"method","module":"std.datetime.systime","name":"second","package":"phobos","parentType":"SysTime","signature":"void second(int  second)","url":"/ddoc/phobos/std/datetime/systime/SysTime.second.html"},{"doc":"Fractional seconds past the second (i.e. the portion of a $(LREF SysTime) which is less than a second).","kind":"method","module":"std.datetime.systime","name":"fracSecs","package":"phobos","parentType":"SysTime","signature":"Duration fracSecs()","url":"/ddoc/phobos/std/datetime/systime/SysTime.fracSecs.html"},{"doc":"Fractional seconds past the second (i.e. the portion of a $(LREF SysTime) which is less than a second).","kind":"method","module":"std.datetime.systime","name":"fracSecs","package":"phobos","parentType":"SysTime","signature":"void fracSecs(Duration fracSecs)","url":"/ddoc/phobos/std/datetime/systime/SysTime.fracSecs.html"},{"doc":"The total hnsecs from midnight, January 1st, 1 A.D. UTC. This is the internal representation of $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"stdTime","package":"phobos","parentType":"SysTime","signature":"long stdTime()","url":"/ddoc/phobos/std/datetime/systime/SysTime.stdTime.html"},{"doc":"The total hnsecs from midnight, January 1st, 1 A.D. UTC. This is the internal representation of $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"stdTime","package":"phobos","parentType":"SysTime","signature":"void stdTime(long  stdTime)","url":"/ddoc/phobos/std/datetime/systime/SysTime.stdTime.html"},{"doc":"The current time zone of this $(LREF SysTime). Its internal time is always kept in UTC, so there are no conversion issues between time zones due to...","kind":"method","module":"std.datetime.systime","name":"timezone","package":"phobos","parentType":"SysTime","signature":"immutable(TimeZone) timezone()","url":"/ddoc/phobos/std/datetime/systime/SysTime.timezone.html"},{"doc":"The current time zone of this $(LREF SysTime). It's internal time is always kept in UTC, so there are no conversion issues between time zones due t...","kind":"method","module":"std.datetime.systime","name":"timezone","package":"phobos","parentType":"SysTime","signature":"void timezone(immutable  TimeZone timezone)","url":"/ddoc/phobos/std/datetime/systime/SysTime.timezone.html"},{"doc":"Returns whether DST is in effect for this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"dstInEffect","package":"phobos","parentType":"SysTime","signature":"bool dstInEffect()","url":"/ddoc/phobos/std/datetime/systime/SysTime.dstInEffect.html"},{"doc":"Returns what the offset from UTC is for this $(LREF SysTime). It includes the DST offset in effect at that time (if any).","kind":"method","module":"std.datetime.systime","name":"utcOffset","package":"phobos","parentType":"SysTime","signature":"Duration utcOffset()","url":"/ddoc/phobos/std/datetime/systime/SysTime.utcOffset.html"},{"doc":"Returns a $(LREF SysTime) with the same std time as this one, but with $(REF LocalTime,std,datetime,timezone) as its time zone.","kind":"method","module":"std.datetime.systime","name":"toLocalTime","package":"phobos","parentType":"SysTime","signature":"SysTime toLocalTime()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toLocalTime.html"},{"doc":"Returns a $(LREF SysTime) with the same std time as this one, but with `UTC` as its time zone.","kind":"method","module":"std.datetime.systime","name":"toUTC","package":"phobos","parentType":"SysTime","signature":"SysTime toUTC()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toUTC.html"},{"doc":"Returns a $(LREF SysTime) with the same std time as this one, but with given time zone as its time zone.","kind":"method","module":"std.datetime.systime","name":"toOtherTZ","package":"phobos","parentType":"SysTime","signature":"SysTime toOtherTZ(immutable  TimeZone tz)","url":"/ddoc/phobos/std/datetime/systime/SysTime.toOtherTZ.html"},{"doc":"Converts this $(LREF SysTime) to unix time (i.e. seconds from midnight, January 1st, 1970 in UTC).","kind":"method","module":"std.datetime.systime","name":"toUnixTime","package":"phobos","parentType":"SysTime","signature":"T toUnixTime(T =  time_t)() if (is(T ==  int)  ||  is(T ==  long))","url":"/ddoc/phobos/std/datetime/systime/SysTime.toUnixTime.html"},{"doc":"Converts from unix time (i.e. seconds from midnight, January 1st, 1970 in UTC) to a $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"fromUnixTime","package":"phobos","parentType":"SysTime","signature":"SysTime fromUnixTime(long  unixTime,  immutable  TimeZone tz =  LocalTime())","url":"/ddoc/phobos/std/datetime/systime/SysTime.fromUnixTime.html"},{"doc":"Returns a `timeval` which represents this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"toTimeVal","package":"phobos","parentType":"SysTime","signature":"timeval toTimeVal()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toTimeVal.html"},{"doc":"Returns a `tm` which represents this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"toTM","package":"phobos","parentType":"SysTime","signature":"tm toTM()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toTM.html"},{"doc":"Adds the given number of years or months to this $(LREF SysTime). A negative number will subtract.","kind":"method","module":"std.datetime.systime","name":"add","package":"phobos","parentType":"SysTime","signature":"SysTime add(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\" ||  units ==  \"months\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.add.html"},{"doc":"Adds the given number of years or months to this $(LREF SysTime). A negative number will subtract.","kind":"method","module":"std.datetime.systime","name":"roll","package":"phobos","parentType":"SysTime","signature":"SysTime roll(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"years\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.roll.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"roll","package":"phobos","parentType":"SysTime","signature":"SysTime roll(string units)(long  value,  AllowDayOverflow allowOverflow =  AllowDayOverflow.yes) if (units ==  \"months\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.roll.html"},{"doc":"Adds the given number of units to this $(LREF SysTime). A negative number will subtract.","kind":"method","module":"std.datetime.systime","name":"roll","package":"phobos","parentType":"SysTime","signature":"SysTime roll(string units)(long  value) if (units ==  \"days\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.roll.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"roll","package":"phobos","parentType":"SysTime","signature":"SysTime roll(string units)(long  value) if (units ==  \"hours\" ||  units ==  \"minutes\" ||  units ==  \"seconds\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.roll.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"roll","package":"phobos","parentType":"SysTime","signature":"SysTime roll(string units)(long  value) if (units ==  \"msecs\" ||  units ==  \"usecs\" ||  units ==  \"hnsecs\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.roll.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opBinary","package":"phobos","parentType":"SysTime","signature":"SysTime opBinary(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.datetime.systime","name":"opBinaryRight","package":"phobos","parentType":"SysTime","signature":"SysTime opBinaryRight(string op)(Duration duration) if (op ==  \"+\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.opBinaryRight.html"},{"doc":"Gives the result of adding or subtracting a $(REF Duration, core,time) from this $(LREF SysTime), as well as assigning the result to this $(LREF Sy...","kind":"method","module":"std.datetime.systime","name":"opOpAssign","package":"phobos","parentType":"SysTime","signature":"SysTime opOpAssign(string op)(Duration duration) if (op ==  \"+\" ||  op ==  \"-\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.opOpAssign.html"},{"doc":"Gives the difference between two $(LREF SysTime)s.","kind":"method","module":"std.datetime.systime","name":"opBinary","package":"phobos","parentType":"SysTime","signature":"Duration opBinary(string op)(SysTime rhs) if (op ==  \"-\")","url":"/ddoc/phobos/std/datetime/systime/SysTime.opBinary.html"},{"doc":"Returns the difference between the two $(LREF SysTime)s in months.","kind":"method","module":"std.datetime.systime","name":"diffMonths","package":"phobos","parentType":"SysTime","signature":"int diffMonths(scope  SysTime rhs)","url":"/ddoc/phobos/std/datetime/systime/SysTime.diffMonths.html"},{"doc":"Whether this $(LREF SysTime) is in a leap year.","kind":"method","module":"std.datetime.systime","name":"isLeapYear","package":"phobos","parentType":"SysTime","signature":"bool isLeapYear()","url":"/ddoc/phobos/std/datetime/systime/SysTime.isLeapYear.html"},{"doc":"Day of the week this $(LREF SysTime) is on.","kind":"method","module":"std.datetime.systime","name":"dayOfWeek","package":"phobos","parentType":"SysTime","signature":"DayOfWeek dayOfWeek()","url":"/ddoc/phobos/std/datetime/systime/SysTime.dayOfWeek.html"},{"doc":"Day of the year this $(LREF SysTime) is on.","kind":"method","module":"std.datetime.systime","name":"dayOfYear","package":"phobos","parentType":"SysTime","signature":"ushort dayOfYear()","url":"/ddoc/phobos/std/datetime/systime/SysTime.dayOfYear.html"},{"doc":"Day of the year.","kind":"method","module":"std.datetime.systime","name":"dayOfYear","package":"phobos","parentType":"SysTime","signature":"void dayOfYear(int  day)","url":"/ddoc/phobos/std/datetime/systime/SysTime.dayOfYear.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF SysTime) is on.","kind":"method","module":"std.datetime.systime","name":"dayOfGregorianCal","package":"phobos","parentType":"SysTime","signature":"int dayOfGregorianCal()","url":"/ddoc/phobos/std/datetime/systime/SysTime.dayOfGregorianCal.html"},{"doc":"The Xth day of the Gregorian Calendar that this $(LREF SysTime) is on. Setting this property does not affect the time portion of $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"dayOfGregorianCal","package":"phobos","parentType":"SysTime","signature":"void dayOfGregorianCal(int  days)","url":"/ddoc/phobos/std/datetime/systime/SysTime.dayOfGregorianCal.html"},{"doc":"The ISO 8601 week of the year that this $(LREF SysTime) is in.","kind":"method","module":"std.datetime.systime","name":"isoWeek","package":"phobos","parentType":"SysTime","signature":"ubyte isoWeek()","url":"/ddoc/phobos/std/datetime/systime/SysTime.isoWeek.html"},{"doc":"$(LREF SysTime) for the last day in the month that this Date is in. The time portion of endOfMonth is always 23:59:59.9999999.","kind":"method","module":"std.datetime.systime","name":"endOfMonth","package":"phobos","parentType":"SysTime","signature":"SysTime endOfMonth()","url":"/ddoc/phobos/std/datetime/systime/SysTime.endOfMonth.html"},{"doc":"The last day in the month that this $(LREF SysTime) is in.","kind":"method","module":"std.datetime.systime","name":"daysInMonth","package":"phobos","parentType":"SysTime","signature":"ubyte daysInMonth()","url":"/ddoc/phobos/std/datetime/systime/SysTime.daysInMonth.html"},{"doc":"Whether the current year is a date in A.D.","kind":"method","module":"std.datetime.systime","name":"isAD","package":"phobos","parentType":"SysTime","signature":"bool isAD()","url":"/ddoc/phobos/std/datetime/systime/SysTime.isAD.html"},{"doc":"The $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for this $(LREF SysTime) at the given time. For example, prior to noon, 1996-03-31 would b...","kind":"method","module":"std.datetime.systime","name":"julianDay","package":"phobos","parentType":"SysTime","signature":"long julianDay()","url":"/ddoc/phobos/std/datetime/systime/SysTime.julianDay.html"},{"doc":"The modified $(HTTP en.wikipedia.org/wiki/Julian_day, Julian day) for any time on this date (since, the modified Julian day changes at midnight).","kind":"method","module":"std.datetime.systime","name":"modJulianDay","package":"phobos","parentType":"SysTime","signature":"long modJulianDay()","url":"/ddoc/phobos/std/datetime/systime/SysTime.modJulianDay.html"},{"doc":"Returns a $(REF Date,std,datetime,date) equivalent to this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opCast","package":"phobos","parentType":"SysTime","signature":"Date opCast(T)() if (is(immutable  T ==  immutable  Date))","url":"/ddoc/phobos/std/datetime/systime/SysTime.opCast.html"},{"doc":"Returns a $(REF DateTime,std,datetime,date) equivalent to this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opCast","package":"phobos","parentType":"SysTime","signature":"DateTime opCast(T)() if (is(immutable  T ==  immutable  DateTime))","url":"/ddoc/phobos/std/datetime/systime/SysTime.opCast.html"},{"doc":"Returns a $(REF TimeOfDay,std,datetime,date) equivalent to this $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"opCast","package":"phobos","parentType":"SysTime","signature":"TimeOfDay opCast(T)() if (is(immutable  T ==  immutable  TimeOfDay))","url":"/ddoc/phobos/std/datetime/systime/SysTime.opCast.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"opCast","package":"phobos","parentType":"SysTime","signature":"SysTime opCast(T)() if (is(immutable  T ==  immutable  SysTime))","url":"/ddoc/phobos/std/datetime/systime/SysTime.opCast.html"},{"doc":"Converts this $(LREF SysTime) to a string with the format YYYYMMDDTHHMMSS.FFFFFFFTZ (where F is fractional seconds and TZ is time zone).","kind":"method","module":"std.datetime.systime","name":"toISOString","package":"phobos","parentType":"SysTime","signature":"string toISOString()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toISOString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.systime","name":"toISOString","package":"phobos","parentType":"SysTime","signature":"void toISOString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/systime/SysTime.toISOString.html"},{"doc":"Converts this $(LREF SysTime) to a string with the format YYYY-MM-DDTHH:MM:SS.FFFFFFFTZ (where F is fractional seconds and TZ is the time zone).","kind":"method","module":"std.datetime.systime","name":"toISOExtString","package":"phobos","parentType":"SysTime","signature":"string toISOExtString(int  prec =  - 1)","url":"/ddoc/phobos/std/datetime/systime/SysTime.toISOExtString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.systime","name":"toISOExtString","package":"phobos","parentType":"SysTime","signature":"void toISOExtString(W)(ref  W writer,  int  prec =  - 1) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/systime/SysTime.toISOExtString.html"},{"doc":"Converts this $(LREF SysTime) to a string with the format YYYY-Mon-DD HH:MM:SS.FFFFFFFTZ (where F is fractional seconds and TZ is the time zone).","kind":"method","module":"std.datetime.systime","name":"toSimpleString","package":"phobos","parentType":"SysTime","signature":"string toSimpleString()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toSimpleString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.systime","name":"toSimpleString","package":"phobos","parentType":"SysTime","signature":"void toSimpleString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/systime/SysTime.toSimpleString.html"},{"doc":"Converts this $(LREF SysTime) to a string.","kind":"method","module":"std.datetime.systime","name":"toString","package":"phobos","parentType":"SysTime","signature":"string toString()","url":"/ddoc/phobos/std/datetime/systime/SysTime.toString.html"},{"doc":"ditto","kind":"method","module":"std.datetime.systime","name":"toString","package":"phobos","parentType":"SysTime","signature":"void toString(W)(ref  W writer) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/systime/SysTime.toString.html"},{"doc":"Creates a $(LREF SysTime) from a string with the format YYYYMMDDTHHMMSS.FFFFFFFTZ (where F is fractional seconds and TZ is the time zone). Whitespa...","kind":"method","module":"std.datetime.systime","name":"fromISOString","package":"phobos","parentType":"SysTime","signature":"SysTime fromISOString(S)(scope  const  S isoString,  immutable  TimeZone tz =  null) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/systime/SysTime.fromISOString.html"},{"doc":"Creates a $(LREF SysTime) from a string with the format YYYY-MM-DDTHH:MM:SS.FFFFFFFTZ (where F is fractional seconds and TZ is the time zone). Whit...","kind":"method","module":"std.datetime.systime","name":"fromISOExtString","package":"phobos","parentType":"SysTime","signature":"SysTime fromISOExtString(S)(scope  const  S isoExtString,  immutable  TimeZone tz =  null) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/systime/SysTime.fromISOExtString.html"},{"doc":"Creates a $(LREF SysTime) from a string with the format YYYY-Mon-DD HH:MM:SS.FFFFFFFTZ (where F is fractional seconds and TZ is the time zone). Whi...","kind":"method","module":"std.datetime.systime","name":"fromSimpleString","package":"phobos","parentType":"SysTime","signature":"SysTime fromSimpleString(S)(scope  const  S simpleString,  immutable  TimeZone tz =  null) if (isSomeString!(S))","url":"/ddoc/phobos/std/datetime/systime/SysTime.fromSimpleString.html"},{"doc":"Returns the $(LREF SysTime) farthest in the past which is representable by $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"min","package":"phobos","parentType":"SysTime","signature":"SysTime min()","url":"/ddoc/phobos/std/datetime/systime/SysTime.min.html"},{"doc":"Returns the $(LREF SysTime) farthest in the future which is representable by $(LREF SysTime).","kind":"method","module":"std.datetime.systime","name":"max","package":"phobos","parentType":"SysTime","signature":"SysTime max()","url":"/ddoc/phobos/std/datetime/systime/SysTime.max.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"adjTime","package":"phobos","parentType":"SysTime","signature":"long adjTime()","url":"/ddoc/phobos/std/datetime/systime/SysTime.adjTime.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"adjTime","package":"phobos","parentType":"SysTime","signature":"void adjTime(long  adjTime)","url":"/ddoc/phobos/std/datetime/systime/SysTime.adjTime.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"_timezone","package":"phobos","parentType":"SysTime","signature":"@property _timezone()","url":"/ddoc/phobos/std/datetime/systime/SysTime._timezone.html"},{"doc":"","kind":"method","module":"std.datetime.systime","name":"_timezone","package":"phobos","parentType":"SysTime","signature":"void _timezone(return  scope  immutable  TimeZone tz)","url":"/ddoc/phobos/std/datetime/systime/SysTime._timezone.html"},{"doc":"Type representing the DOS file date/time format.","kind":"alias","module":"std.datetime.systime","name":"DosFileTime","package":"phobos","parentType":"","signature":"DosFileTime = uint","url":"/ddoc/phobos/std/datetime/systime.html#DosFileTime"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Time zones) $(TD $(LREF TimeZone) $...","kind":"module","module":"std.datetime.timezone","name":"std.datetime.timezone","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/datetime/timezone.html"},{"doc":"ditto","kind":"function","module":"std.datetime.timezone","name":"parseTZConversions","package":"phobos","parentType":"","signature":"TZConversions parseTZConversions(string windowsZonesXMLText)","url":"/ddoc/phobos/std/datetime/timezone/parseTZConversions.html"},{"doc":"Represents a time zone. It is used with $(REF SysTime,std,datetime,systime) to indicate the time zone of a $(REF SysTime,std,datetime,systime).","kind":"class","module":"std.datetime.timezone","name":"TimeZone","package":"phobos","parentType":"","signature":"TimeZone","url":"/ddoc/phobos/std/datetime/timezone.html#TimeZone"},{"doc":"The name of the time zone. Exactly how the time zone name is formatted depends on the derived class. In the case of $(LREF PosixTimeZone), it's the...","kind":"method","module":"std.datetime.timezone","name":"name","package":"phobos","parentType":"TimeZone","signature":"string name()","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.name.html"},{"doc":"Typically, the abbreviation (generally 3 or 4 letters) for the time zone when DST is $(I not) in effect (e.g. PST). It is not necessarily unique.","kind":"method","module":"std.datetime.timezone","name":"stdName","package":"phobos","parentType":"TimeZone","signature":"string stdName()","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.stdName.html"},{"doc":"Typically, the abbreviation (generally 3 or 4 letters) for the time zone when DST $(I is) in effect (e.g. PDT). It is not necessarily unique.","kind":"method","module":"std.datetime.timezone","name":"dstName","package":"phobos","parentType":"TimeZone","signature":"string dstName()","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.dstName.html"},{"doc":"Whether this time zone has Daylight Savings Time at any point in time. Note that for some time zone types it may not have DST for current dates but...","kind":"method","module":"std.datetime.timezone","name":"hasDST","package":"phobos","parentType":"TimeZone","signature":"bool hasDST()","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.hasDST.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and returns whether DST is effect in this time ...","kind":"method","module":"std.datetime.timezone","name":"dstInEffect","package":"phobos","parentType":"TimeZone","signature":"bool dstInEffect(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.dstInEffect.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and converts it to this time zone's time.","kind":"method","module":"std.datetime.timezone","name":"utcToTZ","package":"phobos","parentType":"TimeZone","signature":"long utcToTZ(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.utcToTZ.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in this time zone's time and converts it to UTC (i.e. std time).","kind":"method","module":"std.datetime.timezone","name":"tzToUTC","package":"phobos","parentType":"TimeZone","signature":"long tzToUTC(long  adjTime)","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.tzToUTC.html"},{"doc":"Returns what the offset from UTC is at the given std time. It includes the DST offset in effect at that time (if any).","kind":"method","module":"std.datetime.timezone","name":"utcOffsetAt","package":"phobos","parentType":"TimeZone","signature":"Duration utcOffsetAt(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/TimeZone.utcOffsetAt.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"_getOldName","package":"phobos","parentType":"TimeZone","signature":"string _getOldName(string windowsTZName)","url":"/ddoc/phobos/std/datetime/timezone/TimeZone._getOldName.html"},{"doc":"A TimeZone which represents the current local time zone on the system running your program.","kind":"class","module":"std.datetime.timezone","name":"LocalTime","package":"phobos","parentType":"","signature":"LocalTime : TimeZone","url":"/ddoc/phobos/std/datetime/timezone.html#LocalTime"},{"doc":"$(LREF LocalTime) is a singleton class. $(LREF LocalTime) returns its only instance.","kind":"method","module":"std.datetime.timezone","name":"opCall","package":"phobos","parentType":"LocalTime","signature":"immutable(LocalTime) opCall()","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.opCall.html"},{"doc":"Typically, the abbreviation (generally 3 or 4 letters) for the time zone when DST is $(I not) in effect (e.g. PST). It is not necessarily unique.","kind":"method","module":"std.datetime.timezone","name":"stdName","package":"phobos","parentType":"LocalTime","signature":"string stdName()","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.stdName.html"},{"doc":"Typically, the abbreviation (generally 3 or 4 letters) for the time zone when DST $(I is) in effect (e.g. PDT). It is not necessarily unique.","kind":"method","module":"std.datetime.timezone","name":"dstName","package":"phobos","parentType":"LocalTime","signature":"string dstName()","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.dstName.html"},{"doc":"Whether this time zone has Daylight Savings Time at any point in time. Note that for some time zone types it may not have DST for current dates but...","kind":"method","module":"std.datetime.timezone","name":"hasDST","package":"phobos","parentType":"LocalTime","signature":"bool hasDST()","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.hasDST.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and returns whether DST is in effect in this ti...","kind":"method","module":"std.datetime.timezone","name":"dstInEffect","package":"phobos","parentType":"LocalTime","signature":"bool dstInEffect(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.dstInEffect.html"},{"doc":"Returns hnsecs in the local time zone using the standard C function calls on Posix systems and the standard Windows system calls on Windows systems...","kind":"method","module":"std.datetime.timezone","name":"utcToTZ","package":"phobos","parentType":"LocalTime","signature":"long utcToTZ(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.utcToTZ.html"},{"doc":"Returns std time using the standard C function calls on Posix systems and the standard Windows system calls on Windows systems to adjust the time t...","kind":"method","module":"std.datetime.timezone","name":"tzToUTC","package":"phobos","parentType":"LocalTime","signature":"long tzToUTC(long  adjTime)","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.tzToUTC.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"singleton","package":"phobos","parentType":"LocalTime","signature":"immutable(LocalTime) singleton()","url":"/ddoc/phobos/std/datetime/timezone/LocalTime.singleton.html"},{"doc":"A $(LREF TimeZone) which represents UTC.","kind":"class","module":"std.datetime.timezone","name":"UTC","package":"phobos","parentType":"","signature":"UTC : TimeZone","url":"/ddoc/phobos/std/datetime/timezone.html#UTC"},{"doc":"`UTC` is a singleton class. `UTC` returns its only instance.","kind":"method","module":"std.datetime.timezone","name":"opCall","package":"phobos","parentType":"UTC","signature":"immutable(UTC) opCall()","url":"/ddoc/phobos/std/datetime/timezone/UTC.opCall.html"},{"doc":"Always returns false.","kind":"method","module":"std.datetime.timezone","name":"hasDST","package":"phobos","parentType":"UTC","signature":"bool hasDST()","url":"/ddoc/phobos/std/datetime/timezone/UTC.hasDST.html"},{"doc":"Always returns false.","kind":"method","module":"std.datetime.timezone","name":"dstInEffect","package":"phobos","parentType":"UTC","signature":"bool dstInEffect(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/UTC.dstInEffect.html"},{"doc":"Returns the given hnsecs without changing them at all.","kind":"method","module":"std.datetime.timezone","name":"utcToTZ","package":"phobos","parentType":"UTC","signature":"long utcToTZ(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/UTC.utcToTZ.html"},{"doc":"Returns the given hnsecs without changing them at all.","kind":"method","module":"std.datetime.timezone","name":"tzToUTC","package":"phobos","parentType":"UTC","signature":"long tzToUTC(long  adjTime)","url":"/ddoc/phobos/std/datetime/timezone/UTC.tzToUTC.html"},{"doc":"Returns a $(REF Duration, core,time) of 0.","kind":"method","module":"std.datetime.timezone","name":"utcOffsetAt","package":"phobos","parentType":"UTC","signature":"Duration utcOffsetAt(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/UTC.utcOffsetAt.html"},{"doc":"Represents a time zone with an offset (in minutes, west is negative) from UTC but no DST.","kind":"class","module":"std.datetime.timezone","name":"SimpleTimeZone","package":"phobos","parentType":"","signature":"SimpleTimeZone : TimeZone","url":"/ddoc/phobos/std/datetime/timezone.html#SimpleTimeZone"},{"doc":"Always returns false.","kind":"method","module":"std.datetime.timezone","name":"hasDST","package":"phobos","parentType":"SimpleTimeZone","signature":"bool hasDST()","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.hasDST.html"},{"doc":"Always returns false.","kind":"method","module":"std.datetime.timezone","name":"dstInEffect","package":"phobos","parentType":"SimpleTimeZone","signature":"bool dstInEffect(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.dstInEffect.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and converts it to this time zone's time.","kind":"method","module":"std.datetime.timezone","name":"utcToTZ","package":"phobos","parentType":"SimpleTimeZone","signature":"long utcToTZ(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.utcToTZ.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in this time zone's time and converts it to UTC (i.e. std time).","kind":"method","module":"std.datetime.timezone","name":"tzToUTC","package":"phobos","parentType":"SimpleTimeZone","signature":"long tzToUTC(long  adjTime)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.tzToUTC.html"},{"doc":"Returns utcOffset as a $(REF Duration, core,time).","kind":"method","module":"std.datetime.timezone","name":"utcOffsetAt","package":"phobos","parentType":"SimpleTimeZone","signature":"Duration utcOffsetAt(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.utcOffsetAt.html"},{"doc":"The amount of time the offset from UTC is (negative is west of UTC, positive is east).","kind":"method","module":"std.datetime.timezone","name":"utcOffset","package":"phobos","parentType":"SimpleTimeZone","signature":"Duration utcOffset()","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.utcOffset.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"toISOString","package":"phobos","parentType":"SimpleTimeZone","signature":"string toISOString(Duration utcOffset)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.toISOString.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"toISOString","package":"phobos","parentType":"SimpleTimeZone","signature":"void toISOString(W)(ref  W writer,  Duration utcOffset) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.toISOString.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"toISOExtString","package":"phobos","parentType":"SimpleTimeZone","signature":"string toISOExtString(Duration utcOffset)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.toISOExtString.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"toISOExtString","package":"phobos","parentType":"SimpleTimeZone","signature":"void toISOExtString(W)(ref  W writer,  Duration utcOffset)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.toISOExtString.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"fromISOString","package":"phobos","parentType":"SimpleTimeZone","signature":"immutable(SimpleTimeZone) fromISOString(S)(S isoString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.fromISOString.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"fromISOExtString","package":"phobos","parentType":"SimpleTimeZone","signature":"immutable(SimpleTimeZone) fromISOExtString(S)(scope  S isoExtString) if (isSomeString!S)","url":"/ddoc/phobos/std/datetime/timezone/SimpleTimeZone.fromISOExtString.html"},{"doc":"Represents a time zone from a TZ Database time zone file. Files from the TZ Database are how Posix systems hold their time zone information. Unfort...","kind":"class","module":"std.datetime.timezone","name":"PosixTimeZone","package":"phobos","parentType":"","signature":"PosixTimeZone : TimeZone","url":"/ddoc/phobos/std/datetime/timezone.html#PosixTimeZone"},{"doc":"Whether this time zone has Daylight Savings Time at any point in time. Note that for some time zone types it may not have DST for current dates but...","kind":"method","module":"std.datetime.timezone","name":"hasDST","package":"phobos","parentType":"PosixTimeZone","signature":"bool hasDST()","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.hasDST.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and returns whether DST is in effect in this ti...","kind":"method","module":"std.datetime.timezone","name":"dstInEffect","package":"phobos","parentType":"PosixTimeZone","signature":"bool dstInEffect(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.dstInEffect.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in UTC time (i.e. std time) and converts it to this time zone's time.","kind":"method","module":"std.datetime.timezone","name":"utcToTZ","package":"phobos","parentType":"PosixTimeZone","signature":"long utcToTZ(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.utcToTZ.html"},{"doc":"Takes the number of hnsecs (100 ns) since midnight, January 1st, 1 A.D. in this time zone's time and converts it to UTC (i.e. std time).","kind":"method","module":"std.datetime.timezone","name":"tzToUTC","package":"phobos","parentType":"PosixTimeZone","signature":"long tzToUTC(long  adjTime)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.tzToUTC.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"getDefaultTZDatabaseDir","package":"phobos","parentType":"PosixTimeZone","signature":"string getDefaultTZDatabaseDir()","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.getDefaultTZDatabaseDir.html"},{"doc":"Returns a $(LREF TimeZone) with the give name per the TZ Database. The time zone information is fetched from the TZ Database time zone files in the...","kind":"method","module":"std.datetime.timezone","name":"getTimeZone","package":"phobos","parentType":"PosixTimeZone","signature":"immutable(PosixTimeZone) getTimeZone(string name,  string tzDatabaseDir =  getDefaultTZDatabaseDir())","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.getTimeZone.html"},{"doc":"Returns a list of the names of the time zones installed on the system.","kind":"method","module":"std.datetime.timezone","name":"getInstalledTZNames","package":"phobos","parentType":"PosixTimeZone","signature":"string[] getInstalledTZNames(string subName =  \"\",  string tzDatabaseDir =  getDefaultTZDatabaseDir())","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.getInstalledTZNames.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"readVal","package":"phobos","parentType":"PosixTimeZone","signature":"T readVal(T)(ref  File tzFile) if ((isIntegral!T ||  isSomeChar!T)  ||  is(immutable  T ==  immutable  bool))","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.readVal.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"readVal","package":"phobos","parentType":"PosixTimeZone","signature":"T readVal(T)(ref  File tzFile,  size_t length) if (isArray!T)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.readVal.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"readVal","package":"phobos","parentType":"PosixTimeZone","signature":"T readVal(T)(ref  File tzFile) if (is(T ==  TempTTInfo))","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.readVal.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"_enforceValidTZFile","package":"phobos","parentType":"PosixTimeZone","signature":"void _enforceValidTZFile(bool  result,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone._enforceValidTZFile.html"},{"doc":"","kind":"method","module":"std.datetime.timezone","name":"calculateLeapSeconds","package":"phobos","parentType":"PosixTimeZone","signature":"int calculateLeapSeconds(long  stdTime)","url":"/ddoc/phobos/std/datetime/timezone/PosixTimeZone.calculateLeapSeconds.html"},{"doc":"Provides the conversions between the IANA time zone database time zone names (which POSIX systems use) and the time zone names that Windows uses.","kind":"struct","module":"std.datetime.timezone","name":"TZConversions","package":"phobos","parentType":"","signature":"TZConversions","url":"/ddoc/phobos/std/datetime/timezone.html#TZConversions"},{"doc":"Demangle D mangled names.","kind":"module","module":"std.demangle","name":"std.demangle","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/demangle.html"},{"doc":"Demangle D mangled names.","kind":"function","module":"std.demangle","name":"demangle","package":"phobos","parentType":"","signature":"string demangle(string name)","url":"/ddoc/phobos/std/demangle/demangle.html"},{"doc":"Cyclic Redundancy Check (32-bit) implementation.","kind":"module","module":"std.digest.crc","name":"std.digest.crc","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/crc.html"},{"doc":"","kind":"function","module":"std.digest.crc","name":"genTables","package":"phobos","parentType":"","signature":"T[256][8] genTables(T)(T polynomial)","url":"/ddoc/phobos/std/digest/crc/genTables.html"},{"doc":"This is a convenience alias for $(REF digest, std,digest) using the CRC32 implementation.","kind":"function","module":"std.digest.crc","name":"crc32Of","package":"phobos","parentType":"","signature":"ubyte[4] crc32Of(T...)(T data)","url":"/ddoc/phobos/std/digest/crc/crc32Of.html"},{"doc":"This is a convenience alias for $(REF digest, std,digest) using the CRC64-ECMA implementation.","kind":"function","module":"std.digest.crc","name":"crc64ECMAOf","package":"phobos","parentType":"","signature":"ubyte[8] crc64ECMAOf(T...)(T data)","url":"/ddoc/phobos/std/digest/crc/crc64ECMAOf.html"},{"doc":"This is a convenience alias for $(REF digest, std,digest) using the CRC64-ISO implementation.","kind":"function","module":"std.digest.crc","name":"crc64ISOOf","package":"phobos","parentType":"","signature":"ubyte[8] crc64ISOOf(T...)(T data)","url":"/ddoc/phobos/std/digest/crc/crc64ISOOf.html"},{"doc":"Template API CRC32 implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC32","package":"phobos","parentType":"","signature":"CRC32 = CRC!(32,  0xEDB88320)","url":"/ddoc/phobos/std/digest/crc.html#CRC32"},{"doc":"Template API CRC64-ECMA implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC64ECMA","package":"phobos","parentType":"","signature":"CRC64ECMA = CRC!(64,  0xC96C5795D7870F42)","url":"/ddoc/phobos/std/digest/crc.html#CRC64ECMA"},{"doc":"Template API CRC64-ISO implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC64ISO","package":"phobos","parentType":"","signature":"CRC64ISO = CRC!(64,  0xD800000000000000)","url":"/ddoc/phobos/std/digest/crc.html#CRC64ISO"},{"doc":"Generic Template API used for CRC32 and CRC64 implementations.","kind":"struct","module":"std.digest.crc","name":"CRC","package":"phobos","parentType":"","signature":"CRC(uint  N,  ulong  P) if (N ==  32 ||  N ==  64)","url":"/ddoc/phobos/std/digest/crc.html#CRC"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest.crc","name":"put","package":"phobos","parentType":"CRC","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/crc/CRC.put.html"},{"doc":"Used to initialize the CRC32 digest.","kind":"method","module":"std.digest.crc","name":"start","package":"phobos","parentType":"CRC","signature":"void start()","url":"/ddoc/phobos/std/digest/crc/CRC.start.html"},{"doc":"Returns the finished CRC hash. This also calls $(LREF start) to reset the internal state.","kind":"method","module":"std.digest.crc","name":"finish","package":"phobos","parentType":"CRC","signature":"R finish()","url":"/ddoc/phobos/std/digest/crc/CRC.finish.html"},{"doc":"Works like `finish` but does not reset the internal state, so it's possible to continue putting data into this CRC after a call to peek.","kind":"method","module":"std.digest.crc","name":"peek","package":"phobos","parentType":"CRC","signature":"R peek()","url":"/ddoc/phobos/std/digest/crc/CRC.peek.html"},{"doc":"producing the usual CRC32 string output.","kind":"alias","module":"std.digest.crc","name":"crcHexString","package":"phobos","parentType":"","signature":"crcHexString = toHexString!(Order.decreasing)","url":"/ddoc/phobos/std/digest/crc.html#crcHexString"},{"doc":"ditto","kind":"alias","module":"std.digest.crc","name":"crcHexString","package":"phobos","parentType":"","signature":"crcHexString = toHexString!(Order.decreasing,  16)","url":"/ddoc/phobos/std/digest/crc.html#crcHexString"},{"doc":"OOP API CRC32 implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC32Digest","package":"phobos","parentType":"","signature":"CRC32Digest = WrapperDigest!CRC32","url":"/ddoc/phobos/std/digest/crc.html#CRC32Digest"},{"doc":"OOP API CRC64-ECMA implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC64ECMADigest","package":"phobos","parentType":"","signature":"CRC64ECMADigest = WrapperDigest!CRC64ECMA","url":"/ddoc/phobos/std/digest/crc.html#CRC64ECMADigest"},{"doc":"OOP API CRC64-ISO implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.crc","name":"CRC64ISODigest","package":"phobos","parentType":"","signature":"CRC64ISODigest = WrapperDigest!CRC64ISO","url":"/ddoc/phobos/std/digest/crc.html#CRC64ISODigest"},{"doc":"This package implements the hash-based message authentication code (_HMAC) algorithm as defined in $(HTTP tools.ietf.org/html/rfc2104, RFC2104). Se...","kind":"module","module":"std.digest.hmac","name":"std.digest.hmac","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/hmac.html"},{"doc":"Overload of HMAC to be used if H doesn't provide information about its block size.","kind":"struct","module":"std.digest.hmac","name":"HMAC","package":"phobos","parentType":"","signature":"HMAC(H,  size_t hashBlockSize) if (hashBlockSize %  8 ==  0)","url":"/ddoc/phobos/std/digest/hmac.html#HMAC"},{"doc":"Reinitializes the digest, making it ready for reuse.","kind":"method","module":"std.digest.hmac","name":"start","package":"phobos","parentType":"HMAC","signature":"HMAC!(H,  blockSize) start()","url":"/ddoc/phobos/std/digest/hmac/HMAC.start.html"},{"doc":"Feeds a piece of data into the hash computation. This method allows the type to be used as an $(REF OutputRange, std,range).","kind":"method","module":"std.digest.hmac","name":"put","package":"phobos","parentType":"HMAC","signature":"HMAC!(H,  blockSize) put(in  ubyte[]  data...)","url":"/ddoc/phobos/std/digest/hmac/HMAC.put.html"},{"doc":"Resets the digest and returns the finished hash.","kind":"method","module":"std.digest.hmac","name":"finish","package":"phobos","parentType":"HMAC","signature":"DigestType!H finish()","url":"/ddoc/phobos/std/digest/hmac/HMAC.finish.html"},{"doc":"","kind":"template","module":"std.digest.hmac","name":"HMAC","package":"phobos","parentType":"","signature":"HMAC(H)","url":"/ddoc/phobos/std/digest/hmac.html#HMAC"},{"doc":"ditto","kind":"template","module":"std.digest.hmac","name":"hmac","package":"phobos","parentType":"","signature":"hmac(H)","url":"/ddoc/phobos/std/digest/hmac.html#hmac"},{"doc":"ditto","kind":"template","module":"std.digest.hmac","name":"hmac","package":"phobos","parentType":"","signature":"hmac(H,  size_t blockSize)","url":"/ddoc/phobos/std/digest/hmac.html#hmac"},{"doc":"Constructs an HMAC digest with the specified secret.","kind":"function","module":"std.digest.hmac","name":"hmac","package":"phobos","parentType":"","signature":"auto hmac(scope  const(ubyte)[]  secret)","url":"/ddoc/phobos/std/digest/hmac.html#hmac"},{"doc":"Computes an _HMAC digest over the given range of data with the specified secret.","kind":"function","module":"std.digest.hmac","name":"hmac","package":"phobos","parentType":"","signature":"DigestType!H hmac(T...)(scope  T data,  scope  const(ubyte)[]  secret) if (allSatisfy!(isDigestibleRange,  typeof(data)))","url":"/ddoc/phobos/std/digest/hmac.html#hmac"},{"doc":"* Computes MD5 hashes of arbitrary data. MD5 hashes are 16 byte quantities that are like a * checksum or CRC, but are more robust. * $(SCRIPT inhib...","kind":"module","module":"std.digest.md","name":"std.digest.md","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/md.html"},{"doc":"This is a convenience alias for $(REF digest, std,digest) using the MD5 implementation.","kind":"function","module":"std.digest.md","name":"md5Of","package":"phobos","parentType":"","signature":"auto md5Of(T...)(T data)","url":"/ddoc/phobos/std/digest/md/md5Of.html"},{"doc":"Template API MD5 implementation. See `std.digest` for differences between template and OOP API.","kind":"struct","module":"std.digest.md","name":"MD5","package":"phobos","parentType":"","signature":"MD5","url":"/ddoc/phobos/std/digest/md.html#MD5"},{"doc":"","kind":"method","module":"std.digest.md","name":"F","package":"phobos","parentType":"MD5","signature":"uint F(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/md/MD5.F.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"G","package":"phobos","parentType":"MD5","signature":"uint G(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/md/MD5.G.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"H","package":"phobos","parentType":"MD5","signature":"uint H(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/md/MD5.H.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"I","package":"phobos","parentType":"MD5","signature":"uint I(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/md/MD5.I.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"FF","package":"phobos","parentType":"MD5","signature":"void FF(ref  uint  a,  uint  b,  uint  c,  uint  d,  uint  x,  uint  s,  uint  ac)","url":"/ddoc/phobos/std/digest/md/MD5.FF.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"GG","package":"phobos","parentType":"MD5","signature":"void GG(ref  uint  a,  uint  b,  uint  c,  uint  d,  uint  x,  uint  s,  uint  ac)","url":"/ddoc/phobos/std/digest/md/MD5.GG.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"HH","package":"phobos","parentType":"MD5","signature":"void HH(ref  uint  a,  uint  b,  uint  c,  uint  d,  uint  x,  uint  s,  uint  ac)","url":"/ddoc/phobos/std/digest/md/MD5.HH.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"II","package":"phobos","parentType":"MD5","signature":"void II(ref  uint  a,  uint  b,  uint  c,  uint  d,  uint  x,  uint  s,  uint  ac)","url":"/ddoc/phobos/std/digest/md/MD5.II.html"},{"doc":"","kind":"method","module":"std.digest.md","name":"transform","package":"phobos","parentType":"MD5","signature":"void transform(const(ubyte[64]) *  block)","url":"/ddoc/phobos/std/digest/md/MD5.transform.html"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest.md","name":"put","package":"phobos","parentType":"MD5","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/md/MD5.put.html"},{"doc":"Used to (re)initialize the MD5 digest.","kind":"method","module":"std.digest.md","name":"start","package":"phobos","parentType":"MD5","signature":"void start()","url":"/ddoc/phobos/std/digest/md/MD5.start.html"},{"doc":"Returns the finished MD5 hash. This also calls $(LREF start) to reset the internal state.","kind":"method","module":"std.digest.md","name":"finish","package":"phobos","parentType":"MD5","signature":"ubyte[16] finish()","url":"/ddoc/phobos/std/digest/md/MD5.finish.html"},{"doc":"OOP API MD5 implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.md","name":"MD5Digest","package":"phobos","parentType":"","signature":"MD5Digest = WrapperDigest!MD5","url":"/ddoc/phobos/std/digest/md.html#MD5Digest"},{"doc":"Computes $(LINK2 https://en.wikipedia.org/wiki/MurmurHash, MurmurHash) hashes of arbitrary data. MurmurHash is a non-cryptographic hash function su...","kind":"module","module":"std.digest.murmurhash","name":"std.digest.murmurhash","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/murmurhash.html"},{"doc":"Implements the MurmurHash3 functions. You can specify the `size` of the hash in bit. For 128 bit hashes you can specify whether to optimize for 32 ...","kind":"struct","module":"std.digest.murmurhash","name":"MurmurHash3","package":"phobos","parentType":"","signature":"MurmurHash3(uint  size /* 32 or 128 */ ,  uint  opt =  size_t.sizeof ==  8 ?  64 :  32)","url":"/ddoc/phobos/std/digest/murmurhash.html#MurmurHash3"},{"doc":"Pushes an array of elements at once. It is more efficient to push as much data as possible in a single call. On platforms that do not support unali...","kind":"method","module":"std.digest.murmurhash","name":"putElements","package":"phobos","parentType":"MurmurHash3","signature":"void putElements(scope  const(Element[])  elements...)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.putElements.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"start","package":"phobos","parentType":"MurmurHash3","signature":"void start()","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.start.html"},{"doc":"Adds data to the digester. This function can be called many times in a row after start but before finish.","kind":"method","module":"std.digest.murmurhash","name":"put","package":"phobos","parentType":"MurmurHash3","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.put.html"},{"doc":"Finalizes the computation of the hash and returns the computed value. Note that `finish` can be called only once and that no subsequent calls to `p...","kind":"method","module":"std.digest.murmurhash","name":"finish","package":"phobos","parentType":"MurmurHash3","signature":"ubyte[Element.sizeof] finish()","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.finish.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"rotl","package":"phobos","parentType":"MurmurHash3","signature":"T rotl(T)(T x,  uint  y)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.rotl.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"shuffle","package":"phobos","parentType":"MurmurHash3","signature":"T shuffle(T)(T k,  T c1,  T c2,  ubyte  r1)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.shuffle.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"update","package":"phobos","parentType":"MurmurHash3","signature":"T update(T)(ref  T h,  T k,  T mixWith,  T c1,  T c2,  ubyte  r1,  ubyte  r2,  T n)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.update.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"fmix","package":"phobos","parentType":"MurmurHash3","signature":"uint fmix(uint  h)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.fmix.html"},{"doc":"","kind":"method","module":"std.digest.murmurhash","name":"fmix","package":"phobos","parentType":"MurmurHash3","signature":"ulong fmix(ulong  k)","url":"/ddoc/phobos/std/digest/murmurhash/MurmurHash3.fmix.html"},{"doc":"* This module describes the digest APIs used in Phobos. All digests follow * these APIs. Additionally, this module contains useful helper methods w...","kind":"module","module":"std.digest","name":"std.digest","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest.html"},{"doc":"This is a convenience function to calculate a hash using the template API. Every digest passing the $(LREF isDigest) test can be used with this fun...","kind":"function","module":"std.digest","name":"digest","package":"phobos","parentType":"","signature":"DigestType!Hash digest(Hash,  Range)(auto  ref  Range range) if (!isArray!Range\n    &&  isDigestibleRange!Range)","url":"/ddoc/phobos/std/digest/digest.html"},{"doc":"This overload of the digest function handles arrays.","kind":"function","module":"std.digest","name":"digest","package":"phobos","parentType":"","signature":"DigestType!Hash digest(Hash,  T...)(scope  const  T data) if (allSatisfy!(isArray,  typeof(data)))","url":"/ddoc/phobos/std/digest/digest.html"},{"doc":"This is a convenience function similar to $(LREF digest), but it returns the string representation of the hash. Every digest passing the $(LREF isD...","kind":"function","module":"std.digest","name":"hexDigest","package":"phobos","parentType":"","signature":"char[digestLength!(Hash) * 2] hexDigest(Hash,  Order order =  Order.increasing,  Range)(ref  Range range) if (!isArray!Range &&  isDigestibleRange!Range)","url":"/ddoc/phobos/std/digest/hexDigest.html"},{"doc":"This overload of the hexDigest function handles arrays.","kind":"function","module":"std.digest","name":"hexDigest","package":"phobos","parentType":"","signature":"char[digestLength!(Hash) * 2] hexDigest(Hash,  Order order =  Order.increasing,  T...)(scope  const  T data) if (allSatisfy!(isArray,  typeof(data)))","url":"/ddoc/phobos/std/digest/hexDigest.html"},{"doc":"This is a convenience function which returns an initialized digest, so it's not necessary to call start manually.","kind":"function","module":"std.digest","name":"makeDigest","package":"phobos","parentType":"","signature":"Hash makeDigest(Hash)()","url":"/ddoc/phobos/std/digest/makeDigest.html"},{"doc":"Used to convert a hash value (a static or dynamic array of ubytes) to a string. Can be used with the OOP and with the template API.","kind":"function","module":"std.digest","name":"toHexString","package":"phobos","parentType":"","signature":"char[num * 2] toHexString(Order order =  Order.increasing,  size_t num,  LetterCase letterCase =  LetterCase.upper)(const  ubyte[num]  digest)","url":"/ddoc/phobos/std/digest/toHexString.html"},{"doc":"ditto","kind":"function","module":"std.digest","name":"toHexString","package":"phobos","parentType":"","signature":"char[num * 2] toHexString(LetterCase letterCase,  Order order =  Order.increasing,  size_t num)(in  ubyte[num]  digest)","url":"/ddoc/phobos/std/digest/toHexString.html"},{"doc":"ditto","kind":"function","module":"std.digest","name":"toHexString","package":"phobos","parentType":"","signature":"string toHexString(Order order =  Order.increasing,  LetterCase letterCase =  LetterCase.upper)(in  ubyte[]  digest)","url":"/ddoc/phobos/std/digest/toHexString.html"},{"doc":"ditto","kind":"function","module":"std.digest","name":"toHexString","package":"phobos","parentType":"","signature":"string toHexString(LetterCase letterCase,  Order order =  Order.increasing)(in  ubyte[]  digest)","url":"/ddoc/phobos/std/digest/toHexString.html"},{"doc":"","kind":"function","module":"std.digest","name":"asArray","package":"phobos","parentType":"","signature":"T[N] asArray(size_t N,  T)(ref  T[]  source,  string errorMsg =  \"\")","url":"/ddoc/phobos/std/digest/asArray.html"},{"doc":"","kind":"function","module":"std.digest","name":"toHexStringImpl","package":"phobos","parentType":"","signature":"void toHexStringImpl(Order order,  LetterCase letterCase,  BB,  HB)(scope  const  ref  BB byteBuffer,  ref  HB hexBuffer){","url":"/ddoc/phobos/std/digest/toHexStringImpl.html"},{"doc":"Securely compares two digest representations while protecting against timing attacks. Do not use `==` to compare digest representations.","kind":"function","module":"std.digest","name":"secureEqual","package":"phobos","parentType":"","signature":"bool secureEqual(R1,  R2)(R1 r1,  R2 r2) if (isInputRange!R1 &&  isInputRange!R2 && !isInfinite!R1 && !isInfinite!R2 &&\n    (isIntegral!(ElementEncodingType!R1)  ||  isSomeChar!(ElementEncodingType!R1))  &&\n    !is(CommonType!(ElementEncodingType!R1,  ElementEncodingType!R2)  ==  void))","url":"/ddoc/phobos/std/digest/secureEqual.html"},{"doc":"Validates a hex string.","kind":"function","module":"std.digest","name":"isHexString","package":"phobos","parentType":"","signature":"bool isHexString(String)(String hex) if (isSomeString!String)","url":"/ddoc/phobos/std/digest/isHexString.html"},{"doc":"Converts a hex text string to a range of bytes.","kind":"function","module":"std.digest","name":"fromHexStringAsRange","package":"phobos","parentType":"","signature":"auto fromHexStringAsRange(String)(String hex) if (isSomeString!String)","url":"/ddoc/phobos/std/digest/fromHexStringAsRange.html"},{"doc":"Converts a hex text string to a range of bytes.","kind":"function","module":"std.digest","name":"fromHexString","package":"phobos","parentType":"","signature":"ubyte[] fromHexString(String)(String hex) if (isSomeString!String)","url":"/ddoc/phobos/std/digest/fromHexString.html"},{"doc":"","kind":"function","module":"std.digest","name":"hexDigitToByte","package":"phobos","parentType":"","signature":"ubyte hexDigitToByte(dchar  hexDigit)","url":"/ddoc/phobos/std/digest/hexDigitToByte.html"},{"doc":"This describes the OOP API. To understand when to use the template API and when to use the OOP API, see the module documentation at the top of this...","kind":"interface","module":"std.digest","name":"Digest","package":"phobos","parentType":"","signature":"Digest","url":"/ddoc/phobos/std/digest.html#Digest"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest","name":"put","package":"phobos","parentType":"Digest","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/Digest.put.html"},{"doc":"Resets the internal state of the digest. Note: $(LREF finish) calls this internally, so it's not necessary to call `reset` manually after a call to...","kind":"method","module":"std.digest","name":"reset","package":"phobos","parentType":"Digest","signature":"void reset()","url":"/ddoc/phobos/std/digest/Digest.reset.html"},{"doc":"This is the length in bytes of the hash value which is returned by $(LREF finish). It's also the required size of a buffer passed to $(LREF finish).","kind":"method","module":"std.digest","name":"length","package":"phobos","parentType":"Digest","signature":"size_t length()","url":"/ddoc/phobos/std/digest/Digest.length.html"},{"doc":"The finish function returns the hash value. It takes an optional buffer to copy the data into. If a buffer is passed, it must be at least $(LREF le...","kind":"method","module":"std.digest","name":"finish","package":"phobos","parentType":"Digest","signature":"ubyte[] finish()","url":"/ddoc/phobos/std/digest/Digest.finish.html"},{"doc":"ditto","kind":"method","module":"std.digest","name":"finish","package":"phobos","parentType":"Digest","signature":"ubyte[] finish(ubyte[]  buf)","url":"/ddoc/phobos/std/digest/Digest.finish.html"},{"doc":"This is a convenience function to calculate the hash of a value using the OOP API.","kind":"method","module":"std.digest","name":"digest","package":"phobos","parentType":"Digest","signature":"ubyte[] digest(scope  const(void[])[]  data...)","url":"/ddoc/phobos/std/digest/Digest.digest.html"},{"doc":"See $(LREF toHexString)","kind":"enum","module":"std.digest","name":"Order","package":"phobos","parentType":"","signature":"Order : bool","url":"/ddoc/phobos/std/digest.html#Order"},{"doc":"","kind":"enum_member","module":"std.digest","name":"increasing","package":"phobos","parentType":"","signature":"increasing = ","url":"/ddoc/phobos/std/digest.html#Order"},{"doc":"","kind":"enum_member","module":"std.digest","name":"decreasing","package":"phobos","parentType":"","signature":"decreasing = ","url":"/ddoc/phobos/std/digest.html#Order"},{"doc":"Wraps a template API hash struct into a Digest interface. Modules providing digest implementations will usually provide an alias for this template ...","kind":"class","module":"std.digest","name":"WrapperDigest","package":"phobos","parentType":"","signature":"WrapperDigest(T) : Digest if (isDigest!T)","url":"/ddoc/phobos/std/digest.html#WrapperDigest"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest","name":"put","package":"phobos","parentType":"WrapperDigest","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/WrapperDigest.put.html"},{"doc":"Resets the internal state of the digest. Note: $(LREF finish) calls this internally, so it's not necessary to call `reset` manually after a call to...","kind":"method","module":"std.digest","name":"reset","package":"phobos","parentType":"WrapperDigest","signature":"void reset()","url":"/ddoc/phobos/std/digest/WrapperDigest.reset.html"},{"doc":"This is the length in bytes of the hash value which is returned by $(LREF finish). It's also the required size of a buffer passed to $(LREF finish).","kind":"method","module":"std.digest","name":"length","package":"phobos","parentType":"WrapperDigest","signature":"size_t length()","url":"/ddoc/phobos/std/digest/WrapperDigest.length.html"},{"doc":"The finish function returns the hash value. It takes an optional buffer to copy the data into. If a buffer is passed, it must have a length at leas...","kind":"method","module":"std.digest","name":"finish","package":"phobos","parentType":"WrapperDigest","signature":"ubyte[] finish(ubyte[]  buf)","url":"/ddoc/phobos/std/digest/WrapperDigest.finish.html"},{"doc":"ditto","kind":"method","module":"std.digest","name":"finish","package":"phobos","parentType":"WrapperDigest","signature":"ubyte[] finish()","url":"/ddoc/phobos/std/digest/WrapperDigest.finish.html"},{"doc":"","kind":"struct","module":"std.digest","name":"HexStringDecoder","package":"phobos","parentType":"","signature":"HexStringDecoder(String) if (isSomeString!String)","url":"/ddoc/phobos/std/digest.html#HexStringDecoder"},{"doc":"","kind":"method","module":"std.digest","name":"popFront","package":"phobos","parentType":"HexStringDecoder","signature":"void popFront()","url":"/ddoc/phobos/std/digest/HexStringDecoder.popFront.html"},{"doc":"","kind":"method","module":"std.digest","name":"save","package":"phobos","parentType":"HexStringDecoder","signature":"typeof(this) save()","url":"/ddoc/phobos/std/digest/HexStringDecoder.save.html"},{"doc":"","kind":"method","module":"std.digest","name":"length","package":"phobos","parentType":"HexStringDecoder","signature":"size_t length()","url":"/ddoc/phobos/std/digest/HexStringDecoder.length.html"},{"doc":"Use this to check if a type is a digest. See $(LREF ExampleDigest) to see what a type must provide to pass this check.","kind":"template","module":"std.digest","name":"isDigest","package":"phobos","parentType":"","signature":"isDigest(T)","url":"/ddoc/phobos/std/digest.html#isDigest"},{"doc":"Use this template to get the type which is returned by a digest's $(LREF finish) method.","kind":"template","module":"std.digest","name":"DigestType","package":"phobos","parentType":"","signature":"DigestType(T)","url":"/ddoc/phobos/std/digest.html#DigestType"},{"doc":"Used to check if a digest supports the `peek` method. Peek has exactly the same function signatures as finish, but it doesn't reset the digest's in...","kind":"template","module":"std.digest","name":"hasPeek","package":"phobos","parentType":"","signature":"hasPeek(T)","url":"/ddoc/phobos/std/digest.html#hasPeek"},{"doc":"Checks whether the digest has a `blockSize` member, which contains the digest's internal block size in bits. It is primarily used by $(REF HMAC, st...","kind":"template","module":"std.digest","name":"hasBlockSize","package":"phobos","parentType":"","signature":"hasBlockSize(T)","url":"/ddoc/phobos/std/digest.html#hasBlockSize"},{"doc":"","kind":"template","module":"std.digest","name":"isDigestibleRange","package":"phobos","parentType":"","signature":"isDigestibleRange(Range)","url":"/ddoc/phobos/std/digest.html#isDigestibleRange"},{"doc":"","kind":"template","module":"std.digest","name":"digestLength","package":"phobos","parentType":"","signature":"digestLength(T)","url":"/ddoc/phobos/std/digest.html#digestLength"},{"doc":"* Computes RIPEMD-160 hashes of arbitrary data. RIPEMD-160 hashes are 20 byte quantities * that are like a checksum or CRC, but are more robust. * ...","kind":"module","module":"std.digest.ripemd","name":"std.digest.ripemd","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/ripemd.html"},{"doc":"This is a convenience alias for $(REF digest, std,digest) using the RIPEMD160 implementation.","kind":"function","module":"std.digest.ripemd","name":"ripemd160Of","package":"phobos","parentType":"","signature":"auto ripemd160Of(T...)(T data)","url":"/ddoc/phobos/std/digest/ripemd/ripemd160Of.html"},{"doc":"Template API RIPEMD160 implementation. See `std.digest` for differences between template and OOP API.","kind":"struct","module":"std.digest.ripemd","name":"RIPEMD160","package":"phobos","parentType":"","signature":"RIPEMD160","url":"/ddoc/phobos/std/digest/ripemd.html#RIPEMD160"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"F","package":"phobos","parentType":"RIPEMD160","signature":"uint F(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.F.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"G","package":"phobos","parentType":"RIPEMD160","signature":"uint G(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.G.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"H","package":"phobos","parentType":"RIPEMD160","signature":"uint H(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.H.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"I","package":"phobos","parentType":"RIPEMD160","signature":"uint I(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.I.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"J","package":"phobos","parentType":"RIPEMD160","signature":"uint J(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.J.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"FF","package":"phobos","parentType":"RIPEMD160","signature":"void FF(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.FF.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"GG","package":"phobos","parentType":"RIPEMD160","signature":"void GG(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.GG.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"HH","package":"phobos","parentType":"RIPEMD160","signature":"void HH(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.HH.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"II","package":"phobos","parentType":"RIPEMD160","signature":"void II(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.II.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"JJ","package":"phobos","parentType":"RIPEMD160","signature":"void JJ(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.JJ.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"FFF","package":"phobos","parentType":"RIPEMD160","signature":"void FFF(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.FFF.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"GGG","package":"phobos","parentType":"RIPEMD160","signature":"void GGG(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.GGG.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"HHH","package":"phobos","parentType":"RIPEMD160","signature":"void HHH(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.HHH.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"III","package":"phobos","parentType":"RIPEMD160","signature":"void III(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.III.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"JJJ","package":"phobos","parentType":"RIPEMD160","signature":"void JJJ(ref  uint  a,  uint  b,  ref  uint  c,  uint  d,  uint  e,  uint  x,  uint  s)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.JJJ.html"},{"doc":"","kind":"method","module":"std.digest.ripemd","name":"transform","package":"phobos","parentType":"RIPEMD160","signature":"void transform(const(ubyte[64]) *  block)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.transform.html"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest.ripemd","name":"put","package":"phobos","parentType":"RIPEMD160","signature":"void put(scope  const(ubyte)[]  data...)","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.put.html"},{"doc":"Used to (re)initialize the RIPEMD160 digest.","kind":"method","module":"std.digest.ripemd","name":"start","package":"phobos","parentType":"RIPEMD160","signature":"void start()","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.start.html"},{"doc":"Returns the finished RIPEMD160 hash. This also calls $(LREF start) to reset the internal state.","kind":"method","module":"std.digest.ripemd","name":"finish","package":"phobos","parentType":"RIPEMD160","signature":"ubyte[20] finish()","url":"/ddoc/phobos/std/digest/ripemd/RIPEMD160.finish.html"},{"doc":"OOP API RIPEMD160 implementation. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.ripemd","name":"RIPEMD160Digest","package":"phobos","parentType":"","signature":"RIPEMD160Digest = WrapperDigest!RIPEMD160","url":"/ddoc/phobos/std/digest/ripemd.html#RIPEMD160Digest"},{"doc":"* Computes SHA1 and SHA2 hashes of arbitrary data. SHA hashes are 20 to 64 byte * quantities (depending on the SHA algorithm) that are like a check...","kind":"module","module":"std.digest.sha","name":"std.digest.sha","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/digest/sha.html"},{"doc":"These are convenience aliases for $(REF digest, std,digest) using the SHA implementation.","kind":"function","module":"std.digest.sha","name":"sha1Of","package":"phobos","parentType":"","signature":"auto sha1Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha1Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha224Of","package":"phobos","parentType":"","signature":"auto sha224Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha224Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha256Of","package":"phobos","parentType":"","signature":"auto sha256Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha256Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha384Of","package":"phobos","parentType":"","signature":"auto sha384Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha384Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha512Of","package":"phobos","parentType":"","signature":"auto sha512Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha512Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha512_224Of","package":"phobos","parentType":"","signature":"auto sha512_224Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha512_224Of.html"},{"doc":"ditto","kind":"function","module":"std.digest.sha","name":"sha512_256Of","package":"phobos","parentType":"","signature":"auto sha512_256Of(T...)(T data)","url":"/ddoc/phobos/std/digest/sha/sha512_256Of.html"},{"doc":"Template API SHA1/SHA2 implementation. Supports: SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224 and SHA-512/256.","kind":"struct","module":"std.digest.sha","name":"SHA","package":"phobos","parentType":"","signature":"SHA(uint  hashBlockSize,  uint  digestSize)","url":"/ddoc/phobos/std/digest/sha.html#SHA"},{"doc":"","kind":"method","module":"std.digest.sha","name":"Ch","package":"phobos","parentType":"SHA","signature":"T Ch(T)(T x,  T y,  T z)","url":"/ddoc/phobos/std/digest/sha/SHA.Ch.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"Maj","package":"phobos","parentType":"SHA","signature":"T Maj(T)(T x,  T y,  T z)","url":"/ddoc/phobos/std/digest/sha/SHA.Maj.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"Parity","package":"phobos","parentType":"SHA","signature":"uint Parity(uint  x,  uint  y,  uint  z)","url":"/ddoc/phobos/std/digest/sha/SHA.Parity.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"BigSigma0","package":"phobos","parentType":"SHA","signature":"uint BigSigma0(uint  x)","url":"/ddoc/phobos/std/digest/sha/SHA.BigSigma0.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"BigSigma1","package":"phobos","parentType":"SHA","signature":"uint BigSigma1(uint  x)","url":"/ddoc/phobos/std/digest/sha/SHA.BigSigma1.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"SmSigma0","package":"phobos","parentType":"SHA","signature":"uint SmSigma0(uint  x)","url":"/ddoc/phobos/std/digest/sha/SHA.SmSigma0.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"SmSigma1","package":"phobos","parentType":"SHA","signature":"uint SmSigma1(uint  x)","url":"/ddoc/phobos/std/digest/sha/SHA.SmSigma1.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"BigSigma0","package":"phobos","parentType":"SHA","signature":"ulong BigSigma0(ulong  x)","url":"/ddoc/phobos/std/digest/sha/SHA.BigSigma0.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"BigSigma1","package":"phobos","parentType":"SHA","signature":"ulong BigSigma1(ulong  x)","url":"/ddoc/phobos/std/digest/sha/SHA.BigSigma1.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"SmSigma0","package":"phobos","parentType":"SHA","signature":"ulong SmSigma0(ulong  x)","url":"/ddoc/phobos/std/digest/sha/SHA.SmSigma0.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"SmSigma1","package":"phobos","parentType":"SHA","signature":"ulong SmSigma1(ulong  x)","url":"/ddoc/phobos/std/digest/sha/SHA.SmSigma1.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_0_15","package":"phobos","parentType":"SHA","signature":"void T_0_15(int  i,  const(ubyte[64]) *  input,  ref  uint[16]  W,  uint  A,  ref  uint  B,  uint  C,  uint  D,\n             uint  E,  ref  uint  T)","url":"/ddoc/phobos/std/digest/sha/SHA.T_0_15.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_16_19","package":"phobos","parentType":"SHA","signature":"void T_16_19(int  i,  ref  uint[16]  W,  uint  A,  ref  uint  B,  uint  C,  uint  D,  uint  E,  ref  uint  T)","url":"/ddoc/phobos/std/digest/sha/SHA.T_16_19.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_20_39","package":"phobos","parentType":"SHA","signature":"void T_20_39(int  i,  ref  uint[16]  W,  uint  A,  ref  uint  B,  uint  C,  uint  D,  uint  E,\n             ref  uint  T)","url":"/ddoc/phobos/std/digest/sha/SHA.T_20_39.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_40_59","package":"phobos","parentType":"SHA","signature":"void T_40_59(int  i,  ref  uint[16]  W,  uint  A,  ref  uint  B,  uint  C,  uint  D,  uint  E,\n             ref  uint  T)","url":"/ddoc/phobos/std/digest/sha/SHA.T_40_59.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_60_79","package":"phobos","parentType":"SHA","signature":"void T_60_79(int  i,  ref  uint[16]  W,  uint  A,  ref  uint  B,  uint  C,  uint  D,  uint  E,\n             ref  uint  T)","url":"/ddoc/phobos/std/digest/sha/SHA.T_60_79.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"transformX86","package":"phobos","parentType":"SHA","signature":"void transformX86(uint[5] *  state,  const(ubyte[64]) *  block)","url":"/ddoc/phobos/std/digest/sha/SHA.transformX86.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_SHA2_0_15","package":"phobos","parentType":"SHA","signature":"void T_SHA2_0_15(Word)(int  i,  const(ubyte[blockSize / 8]) *  input,  ref  Word[16]  W,\n             Word A,  Word B,  Word C,  ref  Word D,  Word E,  Word F,  Word G,  ref  Word H,  Word K)","url":"/ddoc/phobos/std/digest/sha/SHA.T_SHA2_0_15.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"T_SHA2_16_79","package":"phobos","parentType":"SHA","signature":"void T_SHA2_16_79(Word)(int  i,  ref  Word[16]  W,\n             Word A,  Word B,  Word C,  ref  Word D,  Word E,  Word F,  Word G,  ref  Word H,  Word K)","url":"/ddoc/phobos/std/digest/sha/SHA.T_SHA2_16_79.html"},{"doc":"","kind":"method","module":"std.digest.sha","name":"transformSHA2","package":"phobos","parentType":"SHA","signature":"void transformSHA2(Word)(Word[8] *  state,  const(ubyte[blockSize / 8]) *  block)","url":"/ddoc/phobos/std/digest/sha/SHA.transformSHA2.html"},{"doc":"SHA initialization. Begins an SHA1/SHA2 operation.","kind":"method","module":"std.digest.sha","name":"start","package":"phobos","parentType":"SHA","signature":"void start()","url":"/ddoc/phobos/std/digest/sha/SHA.start.html"},{"doc":"Use this to feed the digest with data. Also implements the $(REF isOutputRange, std,range,primitives) interface for `ubyte` and `const(ubyte)[]`.","kind":"method","module":"std.digest.sha","name":"put","package":"phobos","parentType":"SHA","signature":"void put(scope  const(ubyte)[]  input...)","url":"/ddoc/phobos/std/digest/sha/SHA.put.html"},{"doc":"Returns the finished SHA hash. This also calls $(LREF start) to reset the internal state.","kind":"method","module":"std.digest.sha","name":"finish","package":"phobos","parentType":"SHA","signature":"ubyte[digestSize / 8] finish()","url":"/ddoc/phobos/std/digest/sha/SHA.finish.html"},{"doc":"SHA alias for SHA-1, hash is ubyte[20]","kind":"alias","module":"std.digest.sha","name":"SHA1","package":"phobos","parentType":"","signature":"SHA1 = SHA!(512,  160)","url":"/ddoc/phobos/std/digest/sha.html#SHA1"},{"doc":"SHA alias for SHA-224, hash is ubyte[28]","kind":"alias","module":"std.digest.sha","name":"SHA224","package":"phobos","parentType":"","signature":"SHA224 = SHA!(512,  224)","url":"/ddoc/phobos/std/digest/sha.html#SHA224"},{"doc":"SHA alias for SHA-256, hash is ubyte[32]","kind":"alias","module":"std.digest.sha","name":"SHA256","package":"phobos","parentType":"","signature":"SHA256 = SHA!(512,  256)","url":"/ddoc/phobos/std/digest/sha.html#SHA256"},{"doc":"SHA alias for SHA-384, hash is ubyte[48]","kind":"alias","module":"std.digest.sha","name":"SHA384","package":"phobos","parentType":"","signature":"SHA384 = SHA!(1024,  384)","url":"/ddoc/phobos/std/digest/sha.html#SHA384"},{"doc":"SHA alias for SHA-512, hash is ubyte[64]","kind":"alias","module":"std.digest.sha","name":"SHA512","package":"phobos","parentType":"","signature":"SHA512 = SHA!(1024,  512)","url":"/ddoc/phobos/std/digest/sha.html#SHA512"},{"doc":"SHA alias for SHA-512/224, hash is ubyte[28]","kind":"alias","module":"std.digest.sha","name":"SHA512_224","package":"phobos","parentType":"","signature":"SHA512_224 = SHA!(1024,  224)","url":"/ddoc/phobos/std/digest/sha.html#SHA512_224"},{"doc":"SHA alias for SHA-512/256, hash is ubyte[32]","kind":"alias","module":"std.digest.sha","name":"SHA512_256","package":"phobos","parentType":"","signature":"SHA512_256 = SHA!(1024,  256)","url":"/ddoc/phobos/std/digest/sha.html#SHA512_256"},{"doc":"OOP API SHA1 and SHA2 implementations. See `std.digest` for differences between template and OOP API.","kind":"alias","module":"std.digest.sha","name":"SHA1Digest","package":"phobos","parentType":"","signature":"SHA1Digest = WrapperDigest!SHA1","url":"/ddoc/phobos/std/digest/sha.html#SHA1Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA224Digest","package":"phobos","parentType":"","signature":"SHA224Digest = WrapperDigest!SHA224","url":"/ddoc/phobos/std/digest/sha.html#SHA224Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA256Digest","package":"phobos","parentType":"","signature":"SHA256Digest = WrapperDigest!SHA256","url":"/ddoc/phobos/std/digest/sha.html#SHA256Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA384Digest","package":"phobos","parentType":"","signature":"SHA384Digest = WrapperDigest!SHA384","url":"/ddoc/phobos/std/digest/sha.html#SHA384Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA512Digest","package":"phobos","parentType":"","signature":"SHA512Digest = WrapperDigest!SHA512","url":"/ddoc/phobos/std/digest/sha.html#SHA512Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA512_224Digest","package":"phobos","parentType":"","signature":"SHA512_224Digest = WrapperDigest!SHA512_224","url":"/ddoc/phobos/std/digest/sha.html#SHA512_224Digest"},{"doc":"ditto","kind":"alias","module":"std.digest.sha","name":"SHA512_256Digest","package":"phobos","parentType":"","signature":"SHA512_256Digest = WrapperDigest!SHA512_256","url":"/ddoc/phobos/std/digest/sha.html#SHA512_256Digest"},{"doc":"Classes and functions for handling and transcoding between various encodings.","kind":"module","module":"std.encoding","name":"std.encoding","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/encoding.html"},{"doc":"Returns true if c is a valid code point","kind":"function","module":"std.encoding","name":"isValidCodePoint","package":"phobos","parentType":"","signature":"bool isValidCodePoint(dchar  c)","url":"/ddoc/phobos/std/encoding/isValidCodePoint.html"},{"doc":"Returns the name of an encoding.","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName(T)()","url":"/ddoc/phobos/std/encoding/encodingName.html"},{"doc":"Returns true iff it is possible to represent the specified codepoint in the encoding.","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(E)(dchar  c)","url":"/ddoc/phobos/std/encoding/canEncode.html"},{"doc":"Returns true if the code unit is legal. For example, the byte 0x80 would not be legal in ASCII, because ASCII code units must always be in the rang...","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(E)(E c)","url":"/ddoc/phobos/std/encoding/isValidCodeUnit.html"},{"doc":"Returns true if the string is encoded correctly","kind":"function","module":"std.encoding","name":"isValid","package":"phobos","parentType":"","signature":"bool isValid(E)(const(E)[]  s)","url":"/ddoc/phobos/std/encoding/isValid.html"},{"doc":"Returns the length of the longest possible substring, starting from the first code unit, which is validly encoded.","kind":"function","module":"std.encoding","name":"validLength","package":"phobos","parentType":"","signature":"size_t validLength(E)(const(E)[]  s)","url":"/ddoc/phobos/std/encoding/validLength.html"},{"doc":"Sanitizes a string by replacing malformed code unit sequences with valid code unit sequences. The result is guaranteed to be valid for this encoding.","kind":"function","module":"std.encoding","name":"sanitize","package":"phobos","parentType":"","signature":"immutable(E)[] sanitize(E)(immutable(E)[]  s)","url":"/ddoc/phobos/std/encoding/sanitize.html"},{"doc":"Returns the length of the first encoded sequence.","kind":"function","module":"std.encoding","name":"firstSequence","package":"phobos","parentType":"","signature":"size_t firstSequence(E)(const(E)[]  s)","url":"/ddoc/phobos/std/encoding/firstSequence.html"},{"doc":"Returns the length of the last encoded sequence.","kind":"function","module":"std.encoding","name":"lastSequence","package":"phobos","parentType":"","signature":"size_t lastSequence(E)(const(E)[]  s)","url":"/ddoc/phobos/std/encoding/lastSequence.html"},{"doc":"Returns the array index at which the (n+1)th code point begins.","kind":"function","module":"std.encoding","name":"index","package":"phobos","parentType":"","signature":"ptrdiff_t index(E)(const(E)[]  s, int  n)","url":"/ddoc/phobos/std/encoding/index.html"},{"doc":"Decodes a single code point.","kind":"function","module":"std.encoding","name":"decode","package":"phobos","parentType":"","signature":"dchar decode(S)(ref  S s)","url":"/ddoc/phobos/std/encoding/decode.html"},{"doc":"Decodes a single code point from the end of a string.","kind":"function","module":"std.encoding","name":"decodeReverse","package":"phobos","parentType":"","signature":"dchar decodeReverse(E)(ref  const(E)[]  s)","url":"/ddoc/phobos/std/encoding/decodeReverse.html"},{"doc":"Decodes a single code point. The input does not have to be valid.","kind":"function","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"","signature":"dchar safeDecode(S)(ref  S s)","url":"/ddoc/phobos/std/encoding/safeDecode.html"},{"doc":"Returns the number of code units required to encode a single code point.","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(E)(dchar  c)","url":"/ddoc/phobos/std/encoding/encodedLength.html"},{"doc":"Encodes a single code point.","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"E[] encode(E)(dchar  c)","url":"/ddoc/phobos/std/encoding/encode.html"},{"doc":"Encodes a single code point into an array.","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(E)(dchar  c,  E[]  array)","url":"/ddoc/phobos/std/encoding/encode.html"},{"doc":"","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(E,  R)(dchar  c,  auto  ref  R range) if (isNativeOutputRange!(R,  E))","url":"/ddoc/phobos/std/encoding/encode.html"},{"doc":"Encodes a single code point to a delegate.","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"void encode(E)(dchar  c,  void  delegate(E)  dg)","url":"/ddoc/phobos/std/encoding/encode.html"},{"doc":"Encodes the contents of `s` in units of type `Tgt`, writing the result to an output range.","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(Tgt,  Src,  R)(in  Src[]  s,  R range)","url":"/ddoc/phobos/std/encoding/encode.html"},{"doc":"Returns a foreachable struct which can bidirectionally iterate over all code points in a string.","kind":"function","module":"std.encoding","name":"codePoints","package":"phobos","parentType":"","signature":"CodePoints!(E) codePoints(E)(immutable(E)[]  s)","url":"/ddoc/phobos/std/encoding/codePoints.html"},{"doc":"Returns a foreachable struct which can bidirectionally iterate over all code units in a code point.","kind":"function","module":"std.encoding","name":"codeUnits","package":"phobos","parentType":"","signature":"CodeUnits!(E) codeUnits(E)(dchar  c)","url":"/ddoc/phobos/std/encoding/codeUnits.html"},{"doc":"Convert a string from one encoding to another.","kind":"function","module":"std.encoding","name":"transcode","package":"phobos","parentType":"","signature":"void transcode(Src,  Dst)(Src[]  s,  out  Dst[]  r)","url":"/ddoc/phobos/std/encoding/transcode.html"},{"doc":"Returns a `BOMSeq` for a given `input`. If no `BOM` is present the `BOMSeq` for `BOM.none` is returned. The `BOM` sequence at the beginning of the ...","kind":"function","module":"std.encoding","name":"getBOM","package":"phobos","parentType":"","signature":"immutable(BOMSeq) getBOM(Range)(Range input) if (isForwardRange!Range &&  is(immutable  ElementType!Range ==  immutable  ubyte))","url":"/ddoc/phobos/std/encoding/getBOM.html"},{"doc":"","kind":"struct","module":"std.encoding","name":"CodePoints","package":"phobos","parentType":"","signature":"CodePoints(E)","url":"/ddoc/phobos/std/encoding.html#CodePoints"},{"doc":"","kind":"method","module":"std.encoding","name":"opApply","package":"phobos","parentType":"CodePoints","signature":"int opApply(scope  int  delegate(ref  dchar)  dg)","url":"/ddoc/phobos/std/encoding/CodePoints.opApply.html"},{"doc":"","kind":"method","module":"std.encoding","name":"opApply","package":"phobos","parentType":"CodePoints","signature":"int opApply(scope  int  delegate(ref  size_t,  ref  dchar)  dg)","url":"/ddoc/phobos/std/encoding/CodePoints.opApply.html"},{"doc":"","kind":"method","module":"std.encoding","name":"opApplyReverse","package":"phobos","parentType":"CodePoints","signature":"int opApplyReverse(scope  int  delegate(ref  dchar)  dg)","url":"/ddoc/phobos/std/encoding/CodePoints.opApplyReverse.html"},{"doc":"","kind":"method","module":"std.encoding","name":"opApplyReverse","package":"phobos","parentType":"CodePoints","signature":"int opApplyReverse(scope  int  delegate(ref  size_t,  ref  dchar)  dg)","url":"/ddoc/phobos/std/encoding/CodePoints.opApplyReverse.html"},{"doc":"","kind":"struct","module":"std.encoding","name":"CodeUnits","package":"phobos","parentType":"","signature":"CodeUnits(E)","url":"/ddoc/phobos/std/encoding.html#CodeUnits"},{"doc":"","kind":"method","module":"std.encoding","name":"opApply","package":"phobos","parentType":"CodeUnits","signature":"int opApply(scope  int  delegate(ref  E)  dg)","url":"/ddoc/phobos/std/encoding/CodeUnits.opApply.html"},{"doc":"","kind":"method","module":"std.encoding","name":"opApplyReverse","package":"phobos","parentType":"CodeUnits","signature":"int opApplyReverse(scope  int  delegate(ref  E)  dg)","url":"/ddoc/phobos/std/encoding/CodeUnits.opApplyReverse.html"},{"doc":"Defines various character sets.","kind":"enum","module":"std.encoding","name":"AsciiChar","package":"phobos","parentType":"","signature":"AsciiChar : ubyte","url":"/ddoc/phobos/std/encoding.html#AsciiChar"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#AsciiChar"},{"doc":"Ditto","kind":"alias","module":"std.encoding","name":"AsciiString","package":"phobos","parentType":"","signature":"AsciiString = immutable(AsciiChar)[]","url":"/ddoc/phobos/std/encoding.html#AsciiString"},{"doc":"Defines an Latin1-encoded character.","kind":"enum","module":"std.encoding","name":"Latin1Char","package":"phobos","parentType":"","signature":"Latin1Char : ubyte","url":"/ddoc/phobos/std/encoding.html#Latin1Char"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#Latin1Char"},{"doc":"Defines an Latin1-encoded string (as an array of $(D immutable(Latin1Char))).","kind":"alias","module":"std.encoding","name":"Latin1String","package":"phobos","parentType":"","signature":"Latin1String = immutable(Latin1Char)[]","url":"/ddoc/phobos/std/encoding.html#Latin1String"},{"doc":"Defines a Latin2-encoded character.","kind":"enum","module":"std.encoding","name":"Latin2Char","package":"phobos","parentType":"","signature":"Latin2Char : ubyte","url":"/ddoc/phobos/std/encoding.html#Latin2Char"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#Latin2Char"},{"doc":"Defines an Latin2-encoded string (as an array of $(D immutable(Latin2Char))).","kind":"alias","module":"std.encoding","name":"Latin2String","package":"phobos","parentType":"","signature":"Latin2String = immutable(Latin2Char)[]","url":"/ddoc/phobos/std/encoding.html#Latin2String"},{"doc":"Defines a Windows1250-encoded character.","kind":"enum","module":"std.encoding","name":"Windows1250Char","package":"phobos","parentType":"","signature":"Windows1250Char : ubyte","url":"/ddoc/phobos/std/encoding.html#Windows1250Char"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#Windows1250Char"},{"doc":"Defines an Windows1250-encoded string (as an array of $(D immutable(Windows1250Char))).","kind":"alias","module":"std.encoding","name":"Windows1250String","package":"phobos","parentType":"","signature":"Windows1250String = immutable(Windows1250Char)[]","url":"/ddoc/phobos/std/encoding.html#Windows1250String"},{"doc":"Defines a Windows1251-encoded character.","kind":"enum","module":"std.encoding","name":"Windows1251Char","package":"phobos","parentType":"","signature":"Windows1251Char : ubyte","url":"/ddoc/phobos/std/encoding.html#Windows1251Char"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#Windows1251Char"},{"doc":"Defines an Windows1251-encoded string (as an array of $(D immutable(Windows1251Char))).","kind":"alias","module":"std.encoding","name":"Windows1251String","package":"phobos","parentType":"","signature":"Windows1251String = immutable(Windows1251Char)[]","url":"/ddoc/phobos/std/encoding.html#Windows1251String"},{"doc":"Defines a Windows1252-encoded character.","kind":"enum","module":"std.encoding","name":"Windows1252Char","package":"phobos","parentType":"","signature":"Windows1252Char : ubyte","url":"/ddoc/phobos/std/encoding.html#Windows1252Char"},{"doc":"","kind":"enum_member","module":"std.encoding","name":"_init","package":"phobos","parentType":"","signature":"_init = ","url":"/ddoc/phobos/std/encoding.html#Windows1252Char"},{"doc":"Defines an Windows1252-encoded string (as an array of $(D immutable(Windows1252Char))).","kind":"alias","module":"std.encoding","name":"Windows1252String","package":"phobos","parentType":"","signature":"Windows1252String = immutable(Windows1252Char)[]","url":"/ddoc/phobos/std/encoding.html#Windows1252String"},{"doc":"The base class for exceptions thrown by this module","kind":"class","module":"std.encoding","name":"EncodingException","package":"phobos","parentType":"","signature":"EncodingException : Exception","url":"/ddoc/phobos/std/encoding.html#EncodingException"},{"doc":"","kind":"class","module":"std.encoding","name":"UnrecognizedEncodingException","package":"phobos","parentType":"","signature":"UnrecognizedEncodingException : EncodingException","url":"/ddoc/phobos/std/encoding.html#UnrecognizedEncodingException"},{"doc":"Abstract base class of all encoding schemes","kind":"class","module":"std.encoding","name":"EncodingScheme","package":"phobos","parentType":"","signature":"EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingScheme"},{"doc":"Registers a subclass of EncodingScheme.","kind":"method","module":"std.encoding","name":"register","package":"phobos","parentType":"EncodingScheme","signature":"void register(Klass: EncodingScheme)()","url":"/ddoc/phobos/std/encoding/EncodingScheme.register.html"},{"doc":"","kind":"method","module":"std.encoding","name":"register","package":"phobos","parentType":"EncodingScheme","signature":"void register(string className)","url":"/ddoc/phobos/std/encoding/EncodingScheme.register.html"},{"doc":"Obtains a subclass of EncodingScheme which is capable of encoding and decoding the named encoding scheme.","kind":"method","module":"std.encoding","name":"create","package":"phobos","parentType":"EncodingScheme","signature":"EncodingScheme create(string encodingName)","url":"/ddoc/phobos/std/encoding/EncodingScheme.create.html"},{"doc":"Returns the standard name of the encoding scheme","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingScheme","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingScheme.toString.html"},{"doc":"Returns an array of all known names for this encoding scheme","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingScheme","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingScheme.names.html"},{"doc":"Returns true if the character c can be represented in this encoding scheme.","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingScheme","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingScheme.canEncode.html"},{"doc":"Returns the number of ubytes required to encode this code point.","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingScheme","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingScheme.encodedLength.html"},{"doc":"Encodes a single code point into a user-supplied, fixed-size buffer.","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingScheme","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingScheme.encode.html"},{"doc":"Decodes a single code point.","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingScheme","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.decode.html"},{"doc":"Decodes a single code point. The input does not have to be valid.","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingScheme","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.safeDecode.html"},{"doc":"Returns the sequence of ubytes to be used to represent any character which cannot be represented in the encoding scheme.","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingScheme","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingScheme.replacementSequence.html"},{"doc":"Returns true if the array is encoded correctly","kind":"method","module":"std.encoding","name":"isValid","package":"phobos","parentType":"EncodingScheme","signature":"bool isValid(const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.isValid.html"},{"doc":"Returns the length of the longest possible substring, starting from the first element, which is validly encoded.","kind":"method","module":"std.encoding","name":"validLength","package":"phobos","parentType":"EncodingScheme","signature":"size_t validLength()(const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.validLength.html"},{"doc":"Sanitizes an array by replacing malformed ubyte sequences with valid ubyte sequences. The result is guaranteed to be valid for this encoding scheme.","kind":"method","module":"std.encoding","name":"sanitize","package":"phobos","parentType":"EncodingScheme","signature":"immutable(ubyte)[] sanitize()(immutable(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.sanitize.html"},{"doc":"Returns the length of the first encoded sequence.","kind":"method","module":"std.encoding","name":"firstSequence","package":"phobos","parentType":"EncodingScheme","signature":"size_t firstSequence()(const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.firstSequence.html"},{"doc":"Returns the total number of code points encoded in a ubyte array.","kind":"method","module":"std.encoding","name":"count","package":"phobos","parentType":"EncodingScheme","signature":"size_t count()(const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingScheme.count.html"},{"doc":"Returns the array index at which the (n+1)th code point begins.","kind":"method","module":"std.encoding","name":"index","package":"phobos","parentType":"EncodingScheme","signature":"ptrdiff_t index()(const(ubyte)[]  s,  size_t n)","url":"/ddoc/phobos/std/encoding/EncodingScheme.index.html"},{"doc":"EncodingScheme to handle ASCII","kind":"class","module":"std.encoding","name":"EncodingSchemeASCII","package":"phobos","parentType":"","signature":"EncodingSchemeASCII : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeASCII"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeASCII","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeASCII","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeASCII","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeASCII","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeASCII","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeASCII","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeASCII","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeASCII","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeASCII.replacementSequence.html"},{"doc":"EncodingScheme to handle Latin-1","kind":"class","module":"std.encoding","name":"EncodingSchemeLatin1","package":"phobos","parentType":"","signature":"EncodingSchemeLatin1 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeLatin1"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeLatin1","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin1.replacementSequence.html"},{"doc":"EncodingScheme to handle Latin-2","kind":"class","module":"std.encoding","name":"EncodingSchemeLatin2","package":"phobos","parentType":"","signature":"EncodingSchemeLatin2 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeLatin2"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeLatin2","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeLatin2.replacementSequence.html"},{"doc":"EncodingScheme to handle Windows-1250","kind":"class","module":"std.encoding","name":"EncodingSchemeWindows1250","package":"phobos","parentType":"","signature":"EncodingSchemeWindows1250 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeWindows1250"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeWindows1250","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1250.replacementSequence.html"},{"doc":"EncodingScheme to handle Windows-1251","kind":"class","module":"std.encoding","name":"EncodingSchemeWindows1251","package":"phobos","parentType":"","signature":"EncodingSchemeWindows1251 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeWindows1251"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeWindows1251","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1251.replacementSequence.html"},{"doc":"EncodingScheme to handle Windows-1252","kind":"class","module":"std.encoding","name":"EncodingSchemeWindows1252","package":"phobos","parentType":"","signature":"EncodingSchemeWindows1252 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeWindows1252"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeWindows1252","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeWindows1252.replacementSequence.html"},{"doc":"EncodingScheme to handle UTF-8","kind":"class","module":"std.encoding","name":"EncodingSchemeUtf8","package":"phobos","parentType":"","signature":"EncodingSchemeUtf8 : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeUtf8"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeUtf8","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf8.replacementSequence.html"},{"doc":"EncodingScheme to handle UTF-16 in native byte order","kind":"class","module":"std.encoding","name":"EncodingSchemeUtf16Native","package":"phobos","parentType":"","signature":"EncodingSchemeUtf16Native : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeUtf16Native"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeUtf16Native","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf16Native.replacementSequence.html"},{"doc":"EncodingScheme to handle UTF-32 in native byte order","kind":"class","module":"std.encoding","name":"EncodingSchemeUtf32Native","package":"phobos","parentType":"","signature":"EncodingSchemeUtf32Native : EncodingScheme","url":"/ddoc/phobos/std/encoding.html#EncodingSchemeUtf32Native"},{"doc":"","kind":"method","module":"std.encoding","name":"names","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"string[] names()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.names.html"},{"doc":"","kind":"method","module":"std.encoding","name":"toString","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"string toString()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.toString.html"},{"doc":"","kind":"method","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.canEncode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.encodedLength.html"},{"doc":"","kind":"method","module":"std.encoding","name":"encode","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"size_t encode(dchar  c,  ubyte[]  buffer)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.encode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"decode","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"dchar decode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.decode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"dchar safeDecode(ref  const(ubyte)[]  s)","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.safeDecode.html"},{"doc":"","kind":"method","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"EncodingSchemeUtf32Native","signature":"immutable(ubyte)[] replacementSequence()","url":"/ddoc/phobos/std/encoding/EncodingSchemeUtf32Native.replacementSequence.html"},{"doc":"Definitions of common Byte Order Marks. The elements of the `enum` can used as indices into `bomTable` to get matching `BOMSeq`.","kind":"enum","module":"std.encoding","name":"BOM","package":"phobos","parentType":"","signature":"BOM","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"no BOM was found","kind":"enum_member","module":"std.encoding","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0x00, 0x00, 0xFE, 0xFF]","kind":"enum_member","module":"std.encoding","name":"utf32be","package":"phobos","parentType":"","signature":"utf32be = 1","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xFF, 0xFE, 0x00, 0x00]","kind":"enum_member","module":"std.encoding","name":"utf32le","package":"phobos","parentType":"","signature":"utf32le = 2","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0x2B, 0x2F, 0x76, 0x38] [0x2B, 0x2F, 0x76, 0x39], [0x2B, 0x2F, 0x76, 0x2B], [0x2B, 0x2F, 0x76, 0x2F], [0x2B, 0x2F, 0x76, 0x38, 0x2D]","kind":"enum_member","module":"std.encoding","name":"utf7","package":"phobos","parentType":"","signature":"utf7 = 3","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xF7, 0x64, 0x4C]","kind":"enum_member","module":"std.encoding","name":"utf1","package":"phobos","parentType":"","signature":"utf1 = 8","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xDD, 0x73, 0x66, 0x73]","kind":"enum_member","module":"std.encoding","name":"utfebcdic","package":"phobos","parentType":"","signature":"utfebcdic = 9","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0x0E, 0xFE, 0xFF]","kind":"enum_member","module":"std.encoding","name":"scsu","package":"phobos","parentType":"","signature":"scsu = 10","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xFB, 0xEE, 0x28]","kind":"enum_member","module":"std.encoding","name":"bocu1","package":"phobos","parentType":"","signature":"bocu1 = 11","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0x84, 0x31, 0x95, 0x33]","kind":"enum_member","module":"std.encoding","name":"gb18030","package":"phobos","parentType":"","signature":"gb18030 = 12","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xEF, 0xBB, 0xBF]","kind":"enum_member","module":"std.encoding","name":"utf8","package":"phobos","parentType":"","signature":"utf8 = 13","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xFE, 0xFF]","kind":"enum_member","module":"std.encoding","name":"utf16be","package":"phobos","parentType":"","signature":"utf16be = 14","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"[0xFF, 0xFE]","kind":"enum_member","module":"std.encoding","name":"utf16le","package":"phobos","parentType":"","signature":"utf16le = 15","url":"/ddoc/phobos/std/encoding.html#BOM"},{"doc":"The type stored inside `bomTable`.","kind":"alias","module":"std.encoding","name":"BOMSeq","package":"phobos","parentType":"","signature":"BOMSeq = Tuple!(BOM,  \"schema\",  ubyte[],  \"sequence\")","url":"/ddoc/phobos/std/encoding.html#BOMSeq"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderFunctions","package":"phobos","parentType":"","signature":"EncoderFunctions()","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"E[] encode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"void encode(dchar  c,  ref  E[]  array)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"encode","package":"phobos","parentType":"","signature":"void encode(dchar  c,  void  delegate(E)  dg)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"skip","package":"phobos","parentType":"","signature":"void skip(ref  const(E)[]  s)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"decode","package":"phobos","parentType":"","signature":"dchar decode(S)(ref  S s)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecode","package":"phobos","parentType":"","signature":"dchar safeDecode(S)(ref  S s)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverse","package":"phobos","parentType":"","signature":"dchar decodeReverse(ref  const(E)[]  s)","url":"/ddoc/phobos/std/encoding.html#EncoderFunctions"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(E)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"GenericEncoder","package":"phobos","parentType":"","signature":"GenericEncoder()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(E c)","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#GenericEncoder"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  AsciiChar)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(AsciiChar c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeX","package":"phobos","parentType":"","signature":"void encodeX(Range)(dchar  c,  Range r)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  Latin1Char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(Latin1Char c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  Latin2Char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  Windows1250Char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  Windows1251Char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  Windows1252Char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  char)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(char  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"tails","package":"phobos","parentType":"","signature":"int tails(char  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  wchar)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(wchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"template","module":"std.encoding","name":"EncoderInstance","package":"phobos","parentType":"","signature":"EncoderInstance(CharType :  dchar)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodingName","package":"phobos","parentType":"","signature":"string encodingName()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"canEncode","package":"phobos","parentType":"","signature":"bool canEncode(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"isValidCodeUnit","package":"phobos","parentType":"","signature":"bool isValidCodeUnit(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodedLength","package":"phobos","parentType":"","signature":"size_t encodedLength(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"encodeViaWrite","package":"phobos","parentType":"","signature":"void encodeViaWrite()(dchar  c)","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"skipViaRead","package":"phobos","parentType":"","signature":"void skipViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeViaRead","package":"phobos","parentType":"","signature":"dchar decodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"safeDecodeViaRead","package":"phobos","parentType":"","signature":"dchar safeDecodeViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"decodeReverseViaRead","package":"phobos","parentType":"","signature":"dchar decodeReverseViaRead()()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"","kind":"function","module":"std.encoding","name":"replacementSequence","package":"phobos","parentType":"","signature":"EString replacementSequence()","url":"/ddoc/phobos/std/encoding.html#EncoderInstance"},{"doc":"Special value returned by `safeDecode`","kind":"variable","module":"std.encoding","name":"INVALID_SEQUENCE","package":"phobos","parentType":"","signature":"dchar INVALID_SEQUENCE","url":"/ddoc/phobos/std/encoding.html#INVALID_SEQUENCE"},{"doc":"Mapping of a byte sequence to $(B Byte Order Mark (BOM))","kind":"variable","module":"std.encoding","name":"bomTable","package":"phobos","parentType":"","signature":"bomTable","url":"/ddoc/phobos/std/encoding.html#bomTable"},{"doc":"Constant defining a fully decoded BOM","kind":"variable","module":"std.encoding","name":"utfBOM","package":"phobos","parentType":"","signature":"dchar utfBOM","url":"/ddoc/phobos/std/encoding.html#utfBOM"},{"doc":"This module defines functions related to exceptions and general error handling. It also defines functions intended to aid in unit testing.","kind":"module","module":"std.exception","name":"std.exception","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/exception.html"},{"doc":"Asserts that the given expression does $(I not) throw the given type of `Throwable`. If a `Throwable` of the given type is thrown, it is caught and...","kind":"function","module":"std.exception","name":"assertNotThrown","package":"phobos","parentType":"","signature":"auto assertNotThrown(T :  Throwable =  Exception,  E)(lazy  E expression,\n                      string msg =  null,\n                      string file =  __FILE__,\n                      size_t line =  __LINE__)","url":"/ddoc/phobos/std/exception/assertNotThrown.html"},{"doc":"Asserts that the given expression throws the given type of `Throwable`. The `Throwable` is caught and does not escape assertThrown. However, any ot...","kind":"function","module":"std.exception","name":"assertThrown","package":"phobos","parentType":"","signature":"void assertThrown(T :  Throwable =  Exception,  E)(lazy  E expression,\n                   string msg =  null,\n                   string file =  __FILE__,\n                   size_t line =  __LINE__)","url":"/ddoc/phobos/std/exception/assertThrown.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"enforce","package":"phobos","parentType":"","signature":"T enforce(T,  Dg,  string file =  __FILE__,  size_t line =  __LINE__)(T value,  scope  Dg dg) if (isSomeFunction!Dg &&  is(typeof(  dg() ))  &&\n     is(typeof({  if (!value)  { }  })))","url":"/ddoc/phobos/std/exception/enforce.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"enforce","package":"phobos","parentType":"","signature":"T enforce(T)(T value,  lazy  Throwable ex)","url":"/ddoc/phobos/std/exception/enforce.html"},{"doc":"","kind":"function","module":"std.exception","name":"bailOut","package":"phobos","parentType":"","signature":"noreturn bailOut(E :  Throwable =  Exception)(string file,  size_t line,  scope  const(char)[]  msg)","url":"/ddoc/phobos/std/exception/bailOut.html"},{"doc":"Catches and returns the exception thrown from the given expression. If no exception is thrown, then null is returned and `result` is set to the res...","kind":"function","module":"std.exception","name":"collectException","package":"phobos","parentType":"","signature":"T collectException(T =  Exception,  E)(lazy  E expression,  ref  E result)","url":"/ddoc/phobos/std/exception/collectException.html"},{"doc":"Catches and returns the exception thrown from the given expression. If no exception is thrown, then null is returned. `E` can be `void`.","kind":"function","module":"std.exception","name":"collectException","package":"phobos","parentType":"","signature":"T collectException(T :  Throwable =  Exception,  E)(lazy  E expression)","url":"/ddoc/phobos/std/exception/collectException.html"},{"doc":"Catches the exception thrown from the given expression and returns the msg property of that exception. If no exception is thrown, then null is retu...","kind":"function","module":"std.exception","name":"collectExceptionMsg","package":"phobos","parentType":"","signature":"string collectExceptionMsg(T =  Exception,  E)(lazy  E expression)","url":"/ddoc/phobos/std/exception/collectExceptionMsg.html"},{"doc":"Casts a mutable array to an immutable array in an idiomatic manner. Technically, `assumeUnique` just inserts a cast, but its name documents assumpt...","kind":"function","module":"std.exception","name":"assumeUnique","package":"phobos","parentType":"","signature":"immutable(T)[] assumeUnique(T)(T[]  array)","url":"/ddoc/phobos/std/exception/assumeUnique.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"assumeUnique","package":"phobos","parentType":"","signature":"immutable(T)[] assumeUnique(T)(ref  T[]  array)","url":"/ddoc/phobos/std/exception/assumeUnique.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"assumeUnique","package":"phobos","parentType":"","signature":"immutable(T[U]) assumeUnique(T,  U)(ref  T[U]  array)","url":"/ddoc/phobos/std/exception/assumeUnique.html"},{"doc":"Wraps a possibly-throwing expression in a `nothrow` wrapper so that it can be called by a `nothrow` function.","kind":"function","module":"std.exception","name":"assumeWontThrow","package":"phobos","parentType":"","signature":"T assumeWontThrow(T)(lazy  T expr,\n                      string msg =  null,\n                      string file =  __FILE__,\n                      size_t line =  __LINE__)","url":"/ddoc/phobos/std/exception/assumeWontThrow.html"},{"doc":"Checks whether a given source object contains pointers or references to a given target object.","kind":"function","module":"std.exception","name":"doesPointTo","package":"phobos","parentType":"","signature":"bool doesPointTo(S,  T,  Tdummy = void)(auto  ref  const  S source,  ref  const  T target) if (__traits(isRef,  source)  ||  isDynamicArray!S ||\n     is(S ==  U *,  U)  ||  is(S ==  class))","url":"/ddoc/phobos/std/exception/doesPointTo.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"doesPointTo","package":"phobos","parentType":"","signature":"bool doesPointTo(S,  T)(auto  ref  const  shared  S source,  ref  const  shared  T target)","url":"/ddoc/phobos/std/exception/doesPointTo.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"mayPointTo","package":"phobos","parentType":"","signature":"bool mayPointTo(S,  T,  Tdummy = void)(auto  ref  const  S source,  ref  const  T target) if (__traits(isRef,  source)  ||  isDynamicArray!S ||\n     is(S ==  U *,  U)  ||  is(S ==  class))","url":"/ddoc/phobos/std/exception/mayPointTo.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"mayPointTo","package":"phobos","parentType":"","signature":"bool mayPointTo(S,  T)(auto  ref  const  shared  S source,  ref  const  shared  T target)","url":"/ddoc/phobos/std/exception/mayPointTo.html"},{"doc":"","kind":"function","module":"std.exception","name":"isUnionAliasedImpl","package":"phobos","parentType":"","signature":"bool isUnionAliasedImpl(T)(size_t offset)","url":"/ddoc/phobos/std/exception/isUnionAliasedImpl.html"},{"doc":"","kind":"function","module":"std.exception","name":"errnoString","package":"phobos","parentType":"","signature":"string errnoString(int  errno)","url":"/ddoc/phobos/std/exception/errnoString.html"},{"doc":"ML-style functional exception handling. Runs the supplied expression and returns its result. If the expression throws a `Throwable`, runs the suppl...","kind":"function","module":"std.exception","name":"ifThrown","package":"phobos","parentType":"","signature":"CommonType!(T1,  T2) ifThrown(E :  Throwable =  Exception,  T1,  T2)(lazy  scope  T1 expression,  lazy  scope  T2 errorHandler)","url":"/ddoc/phobos/std/exception/ifThrown.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"ifThrown","package":"phobos","parentType":"","signature":"CommonType!(T1,  T2) ifThrown(E :  Throwable,  T1,  T2)(lazy  scope  T1 expression,  scope  T2 delegate(E)  errorHandler)","url":"/ddoc/phobos/std/exception/ifThrown.html"},{"doc":"ditto","kind":"function","module":"std.exception","name":"ifThrown","package":"phobos","parentType":"","signature":"CommonType!(T1,  T2) ifThrown(T1,  T2)(lazy  scope  T1 expression,  scope  T2 delegate(Exception)  errorHandler)","url":"/ddoc/phobos/std/exception/ifThrown.html"},{"doc":"Handle exceptions thrown from range primitives.","kind":"function","module":"std.exception","name":"handle","package":"phobos","parentType":"","signature":"auto handle(E :  Throwable,  RangePrimitive primitivesToHandle,  alias  handler,  Range)(Range input) if (isInputRange!Range)","url":"/ddoc/phobos/std/exception/handle.html"},{"doc":"Enforces that the given value is true, throwing an `ErrnoException` if it is not.","kind":"alias","module":"std.exception","name":"errnoEnforce","package":"phobos","parentType":"","signature":"errnoEnforce = enforce!ErrnoException","url":"/ddoc/phobos/std/exception.html#errnoEnforce"},{"doc":"Thrown if errors that set `errno` occur.","kind":"class","module":"std.exception","name":"ErrnoException","package":"phobos","parentType":"","signature":"ErrnoException : Exception","url":"/ddoc/phobos/std/exception.html#ErrnoException"},{"doc":"Operating system error code.","kind":"method","module":"std.exception","name":"errno","package":"phobos","parentType":"ErrnoException","signature":"uint errno()","url":"/ddoc/phobos/std/exception/ErrnoException.errno.html"},{"doc":"Localized error message generated through $(REF strerror_r, core,stdc,string) or $(REF strerror, core,stdc,string).","kind":"method","module":"std.exception","name":"errnoMsg","package":"phobos","parentType":"ErrnoException","signature":"string errnoMsg()","url":"/ddoc/phobos/std/exception/ErrnoException.errnoMsg.html"},{"doc":"This `enum` is used to select the primitives of the range to handle by the $(LREF handle) range wrapper. The values of the `enum` can be `OR`'d to ...","kind":"enum","module":"std.exception","name":"RangePrimitive","package":"phobos","parentType":"","signature":"RangePrimitive","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"","kind":"enum_member","module":"std.exception","name":"front","package":"phobos","parentType":"","signature":"front = 0b00_0000_0001","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"back","package":"phobos","parentType":"","signature":"back = 0b00_0000_0010","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"popFront","package":"phobos","parentType":"","signature":"popFront = 0b00_0000_0100","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"popBack","package":"phobos","parentType":"","signature":"popBack = 0b00_0000_1000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"empty","package":"phobos","parentType":"","signature":"empty = 0b00_0001_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"save","package":"phobos","parentType":"","signature":"save = 0b00_0010_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"length","package":"phobos","parentType":"","signature":"length = 0b00_0100_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"opDollar","package":"phobos","parentType":"","signature":"opDollar = 0b00_1000_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"opIndex","package":"phobos","parentType":"","signature":"opIndex = 0b01_0000_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"opSlice","package":"phobos","parentType":"","signature":"opSlice = 0b10_0000_0000","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"access","package":"phobos","parentType":"","signature":"access = front |  back |  opIndex","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Ditto","kind":"enum_member","module":"std.exception","name":"pop","package":"phobos","parentType":"","signature":"pop = popFront |  popBack","url":"/ddoc/phobos/std/exception.html#RangePrimitive"},{"doc":"Enforces that the given value is true. If the given value is false, an exception is thrown. The $(UL $(LI `msg` - error message as a `string`) $(LI...","kind":"template","module":"std.exception","name":"enforce","package":"phobos","parentType":"","signature":"enforce(E :  Throwable =  Exception)","url":"/ddoc/phobos/std/exception.html#enforce"},{"doc":"","kind":"function","module":"std.exception","name":"enforce","package":"phobos","parentType":"","signature":"T enforce(T)(T value,  lazy  const(char)[]  msg =  null,\n     string file =  __FILE__,  size_t line =  __LINE__) if (is(typeof({  if (!value)  { }  })))","url":"/ddoc/phobos/std/exception.html#enforce"},{"doc":"Value that collectExceptionMsg returns when it catches an exception with an empty exception message.","kind":"variable","module":"std.exception","name":"emptyExceptionMsg","package":"phobos","parentType":"","signature":"emptyExceptionMsg","url":"/ddoc/phobos/std/exception.html#emptyExceptionMsg"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/affix_allocator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.affix_allocator","name":"std.experimental.allocator.building_blocks.affix_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/affix_allocator.html"},{"doc":"Allocator that adds some extra data before (of type `Prefix`) and/or after (of type `Suffix`) any allocation made with its parent allocator. This i...","kind":"struct","module":"std.experimental.allocator.building_blocks.affix_allocator","name":"AffixAllocator","package":"phobos","parentType":"","signature":"AffixAllocator(Allocator,  Prefix,  Suffix =  void)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/affix_allocator.html#AffixAllocator"},{"doc":"`AlignedBlockList` represents a wrapper around a chain of allocators, allowing for fast deallocations and preserving a low degree of fragmentation ...","kind":"module","module":"std.experimental.allocator.building_blocks.aligned_block_list","name":"std.experimental.allocator.building_blocks.aligned_block_list","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/aligned_block_list.html"},{"doc":"`AlignedBlockList` represents a wrapper around a chain of allocators, allowing for fast deallocations and preserving a low degree of fragmentation....","kind":"struct","module":"std.experimental.allocator.building_blocks.aligned_block_list","name":"AlignedBlockList","package":"phobos","parentType":"","signature":"AlignedBlockList(Allocator,  ParentAllocator,  ulong  theAlignment = (1 <<  21))","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/aligned_block_list.html#AlignedBlockList"},{"doc":"`SharedAlignedBlockList` is the threadsafe version of `AlignedBlockList`. The `Allocator` template parameter must refer a shared allocator. Also, `...","kind":"struct","module":"std.experimental.allocator.building_blocks.aligned_block_list","name":"SharedAlignedBlockList","package":"phobos","parentType":"","signature":"SharedAlignedBlockList(Allocator,  ParentAllocator,  ulong  theAlignment = (1 <<  21))","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/aligned_block_list.html#SharedAlignedBlockList"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/allocator_list.d)","kind":"module","module":"std.experimental.allocator.building_blocks.allocator_list","name":"std.experimental.allocator.building_blocks.allocator_list","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html"},{"doc":"Given an $(LINK2 https://en.wikipedia.org/wiki/Factory_(object-oriented_programming), object factory) of type `Factory` or a factory function `fact...","kind":"struct","module":"std.experimental.allocator.building_blocks.allocator_list","name":"AllocatorList","package":"phobos","parentType":"","signature":"AllocatorList(Factory,  BookkeepingAllocator =  GCAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#AllocatorList"},{"doc":"Allocate a block of size `s`. First tries to allocate from the existing list of already-created allocators. If neither can satisfy the request, cre...","kind":"method","module":"std.experimental.allocator.building_blocks.allocator_list","name":"allocate","package":"phobos","parentType":"AllocatorList","signature":"void[] allocate(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list/AllocatorList.allocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.allocator_list","name":"moveAllocators","package":"phobos","parentType":"AllocatorList","signature":"void moveAllocators(void[]  newPlace)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list/AllocatorList.moveAllocators.html"},{"doc":"Returns `Ternary.yes` if no allocators are currently active, `Ternary.no` otherwise. This methods never returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator.building_blocks.allocator_list","name":"empty","package":"phobos","parentType":"AllocatorList","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list/AllocatorList.empty.html"},{"doc":"Ditto","kind":"struct","module":"std.experimental.allocator.building_blocks.allocator_list","name":"SharedAllocatorList","package":"phobos","parentType":"","signature":"SharedAllocatorList(Factory,  BookkeepingAllocator =  GCAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#SharedAllocatorList"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.allocator_list","name":"assumeUnshared","package":"phobos","parentType":"SharedAllocatorList","signature":"T assumeUnshared(T)(ref  shared  T val)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list/SharedAllocatorList.assumeUnshared.html"},{"doc":"Ditto","kind":"template","module":"std.experimental.allocator.building_blocks.allocator_list","name":"AllocatorList","package":"phobos","parentType":"","signature":"AllocatorList(alias  factoryFunction,\n     BookkeepingAllocator =  GCAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#AllocatorList"},{"doc":"","kind":"struct","module":"std.experimental.allocator.building_blocks.allocator_list","name":"Factory","package":"phobos","parentType":"","signature":"Factory","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#AllocatorList"},{"doc":"Ditto","kind":"template","module":"std.experimental.allocator.building_blocks.allocator_list","name":"SharedAllocatorList","package":"phobos","parentType":"","signature":"SharedAllocatorList(alias  factoryFunction,\n     BookkeepingAllocator =  GCAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#SharedAllocatorList"},{"doc":"","kind":"struct","module":"std.experimental.allocator.building_blocks.allocator_list","name":"Factory","package":"phobos","parentType":"","signature":"Factory","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/allocator_list.html#SharedAllocatorList"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/ascending_page_allocator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"std.experimental.allocator.building_blocks.ascending_page_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator.html"},{"doc":"`AscendingPageAllocator` is a fast and safe allocator that rounds all allocations to multiples of the system's page size. It reserves a range of vi...","kind":"struct","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"AscendingPageAllocator","package":"phobos","parentType":"","signature":"AscendingPageAllocator","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator.html#AscendingPageAllocator"},{"doc":"Rounds the allocation size to the next multiple of the page size. The allocation only reserves a range of virtual pages but the actual physical mem...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"allocate","package":"phobos","parentType":"AscendingPageAllocator","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/AscendingPageAllocator.allocate.html"},{"doc":"Rounds the allocation size to the next multiple of the page size. The allocation only reserves a range of virtual pages but the actual physical mem...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"alignedAllocate","package":"phobos","parentType":"AscendingPageAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/AscendingPageAllocator.alignedAllocate.html"},{"doc":"If the passed buffer is not the last allocation, then `delta` can be at most the number of bytes left on the last page. Otherwise, we can expand th...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"expand","package":"phobos","parentType":"AscendingPageAllocator","signature":"bool expand(ref  void[]  b,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/AscendingPageAllocator.expand.html"},{"doc":"Returns `Ternary.yes` if the allocator does not contain any alive objects and `Ternary.no` otherwise.","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"empty","package":"phobos","parentType":"AscendingPageAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/AscendingPageAllocator.empty.html"},{"doc":"`SharedAscendingPageAllocator` is the threadsafe version of `AscendingPageAllocator`.","kind":"struct","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"SharedAscendingPageAllocator","package":"phobos","parentType":"","signature":"SharedAscendingPageAllocator","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator.html#SharedAscendingPageAllocator"},{"doc":"Rounds the allocation size to the next multiple of the page size. The allocation only reserves a range of virtual pages but the actual physical mem...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"allocate","package":"phobos","parentType":"SharedAscendingPageAllocator","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/SharedAscendingPageAllocator.allocate.html"},{"doc":"Rounds the allocation size to the next multiple of the page size. The allocation only reserves a range of virtual pages but the actual physical mem...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"alignedAllocate","package":"phobos","parentType":"SharedAscendingPageAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/SharedAscendingPageAllocator.alignedAllocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"allocateImpl","package":"phobos","parentType":"SharedAscendingPageAllocator","signature":"void[] allocateImpl(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/SharedAscendingPageAllocator.allocateImpl.html"},{"doc":"If the passed buffer is not the last allocation, then `delta` can be at most the number of bytes left on the last page. Otherwise, we can expand th...","kind":"method","module":"std.experimental.allocator.building_blocks.ascending_page_allocator","name":"expand","package":"phobos","parentType":"SharedAscendingPageAllocator","signature":"bool expand(ref  void[]  b,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator/SharedAscendingPageAllocator.expand.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/bitmapped_block.d)","kind":"module","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"std.experimental.allocator.building_blocks.bitmapped_block","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block.html"},{"doc":"Returns the number of most significant ones before a zero can be found in `x`. If `x` contains no zeros (i.e. is equal to `ulong.max`), returns 64.","kind":"function","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"leadingOnes","package":"phobos","parentType":"","signature":"uint leadingOnes(ulong  x)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/leadingOnes.html"},{"doc":"Finds a run of contiguous ones in `x` of length at least `n`.","kind":"function","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"findContigOnes","package":"phobos","parentType":"","signature":"uint findContigOnes(ulong  x,  uint  n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/findContigOnes.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"setBits","package":"phobos","parentType":"","signature":"void setBits(ref  ulong  w,  uint  lsb,  uint  msb)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/setBits.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"setBitsIfZero","package":"phobos","parentType":"","signature":"bool setBitsIfZero(ref  ulong  w,  uint  lsb,  uint  msb)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/setBitsIfZero.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"resetBits","package":"phobos","parentType":"","signature":"void resetBits(ref  ulong  w,  uint  lsb,  uint  msb)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/resetBits.html"},{"doc":"`BitmappedBlock` implements a simple heap consisting of one contiguous area of memory organized in blocks, each of size `theBlockSize`. A block is ...","kind":"struct","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"BitmappedBlock","package":"phobos","parentType":"","signature":"BitmappedBlock(size_t theBlockSize,  uint  theAlignment =  platformAlignment,\n    ParentAllocator =  NullAllocator,  Flag!\"multiblock\" f =  Yes.multiblock)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block.html#BitmappedBlock"},{"doc":"The threadsafe version of the $(LREF BitmappedBlock). The semantics of the `SharedBitmappedBlock` are identical to the regular $(LREF BitmappedBlock).","kind":"struct","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"SharedBitmappedBlock","package":"phobos","parentType":"","signature":"SharedBitmappedBlock(size_t theBlockSize,  uint  theAlignment =  platformAlignment,\n    ParentAllocator =  NullAllocator,  Flag!\"multiblock\" f =  Yes.multiblock)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block.html#SharedBitmappedBlock"},{"doc":"A `BitmappedBlock` with additional structure for supporting `resolveInternalPointer`. To that end, `BitmappedBlockWithInternalPointers` adds a bitm...","kind":"struct","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"BitmappedBlockWithInternalPointers","package":"phobos","parentType":"","signature":"BitmappedBlockWithInternalPointers(\n     size_t theBlockSize,  uint  theAlignment =  platformAlignment,\n     ParentAllocator =  NullAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block.html#BitmappedBlockWithInternalPointers"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"ensureRoomForAllocStart","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"bool ensureRoomForAllocStart(size_t len)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.ensureRoomForAllocStart.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"goodAllocSize","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.goodAllocSize.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"allocate","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.allocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"allocateAll","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.allocateAll.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"expand","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"bool expand(ref  void[]  b,  size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.expand.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"deallocate","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.deallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"resolveInternalPointer","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.resolveInternalPointer.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"empty","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.empty.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"markAllAsUnused","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"void markAllAsUnused()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.markAllAsUnused.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"markAsUsed","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"bool markAsUsed(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.markAsUsed.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"doneMarking","package":"phobos","parentType":"BitmappedBlockWithInternalPointers","signature":"void doneMarking()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitmappedBlockWithInternalPointers.doneMarking.html"},{"doc":"","kind":"struct","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"BitVector","package":"phobos","parentType":"","signature":"BitVector","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block.html#BitVector"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"rep","package":"phobos","parentType":"BitVector","signature":"auto rep(this  _)()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.rep.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"opSliceAssign","package":"phobos","parentType":"BitVector","signature":"void opSliceAssign(bool  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.opSliceAssign.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"opSliceAssign","package":"phobos","parentType":"BitVector","signature":"void opSliceAssign(bool  b,  ulong  x,  ulong  y)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.opSliceAssign.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"opIndex","package":"phobos","parentType":"BitVector","signature":"bool opIndex(ulong  x)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.opIndex.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"opIndexAssign","package":"phobos","parentType":"BitVector","signature":"void opIndexAssign(bool  b,  ulong  x)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.opIndexAssign.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"length","package":"phobos","parentType":"BitVector","signature":"ulong length()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.length.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"find1","package":"phobos","parentType":"BitVector","signature":"ulong find1(ulong  i)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.find1.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"find1Backward","package":"phobos","parentType":"BitVector","signature":"ulong find1Backward(ulong  i)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.find1Backward.html"},{"doc":"Are all bits zero?","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"allAre0","package":"phobos","parentType":"BitVector","signature":"bool allAre0()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.allAre0.html"},{"doc":"Are all bits one?","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"allAre1","package":"phobos","parentType":"BitVector","signature":"bool allAre1()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.allAre1.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bitmapped_block","name":"findZeros","package":"phobos","parentType":"BitVector","signature":"ulong findZeros(immutable  size_t howMany,  ulong  start)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bitmapped_block/BitVector.findZeros.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/bucketizer.d)","kind":"module","module":"std.experimental.allocator.building_blocks.bucketizer","name":"std.experimental.allocator.building_blocks.bucketizer","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer.html"},{"doc":"A `Bucketizer` uses distinct allocators for handling allocations of sizes in the intervals $(D [min, min + step - 1]), $(D [min + step, min + 2 * s...","kind":"struct","module":"std.experimental.allocator.building_blocks.bucketizer","name":"Bucketizer","package":"phobos","parentType":"","signature":"Bucketizer(Allocator,  size_t min,  size_t max,  size_t step)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer.html#Bucketizer"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.bucketizer","name":"allocatorFor","package":"phobos","parentType":"Bucketizer","signature":"Allocator * allocatorFor(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer/Bucketizer.allocatorFor.html"},{"doc":"Rounds up to the maximum size of the bucket in which `bytes` falls.","kind":"method","module":"std.experimental.allocator.building_blocks.bucketizer","name":"goodAllocSize","package":"phobos","parentType":"Bucketizer","signature":"size_t goodAllocSize(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer/Bucketizer.goodAllocSize.html"},{"doc":"Directs the call to either one of the `buckets` allocators.","kind":"method","module":"std.experimental.allocator.building_blocks.bucketizer","name":"allocate","package":"phobos","parentType":"Bucketizer","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer/Bucketizer.allocate.html"},{"doc":"This method allows expansion within the respective bucket range. It succeeds if both `b.length` and $(D b.length + delta) fall in a range of the fo...","kind":"method","module":"std.experimental.allocator.building_blocks.bucketizer","name":"expand","package":"phobos","parentType":"Bucketizer","signature":"bool expand(ref  void[]  b,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer/Bucketizer.expand.html"},{"doc":"This method allows reallocation within the respective bucket range. If both `b.length` and `size` fall in a range of the form $(D [min + k * step, ...","kind":"method","module":"std.experimental.allocator.building_blocks.bucketizer","name":"reallocate","package":"phobos","parentType":"Bucketizer","signature":"bool reallocate(ref  void[]  b,  size_t size)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/bucketizer/Bucketizer.reallocate.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/fallback_allocator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.fallback_allocator","name":"std.experimental.allocator.building_blocks.fallback_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/fallback_allocator.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.building_blocks.fallback_allocator","name":"forward","package":"phobos","parentType":"","signature":"auto ref forward(alias  arg)()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/fallback_allocator/forward.html"},{"doc":"Convenience function that uses type deduction to return the appropriate `FallbackAllocator` instance. To initialize with allocators that don't have...","kind":"function","module":"std.experimental.allocator.building_blocks.fallback_allocator","name":"fallbackAllocator","package":"phobos","parentType":"","signature":"FallbackAllocator!(Primary,  Fallback) fallbackAllocator(Primary,  Fallback)(auto  ref  Primary p,  auto  ref  Fallback f)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/fallback_allocator/fallbackAllocator.html"},{"doc":"`FallbackAllocator` is the allocator equivalent of an \"or\" operator in algebra. An allocation request is first attempted with the `Primary` allocat...","kind":"struct","module":"std.experimental.allocator.building_blocks.fallback_allocator","name":"FallbackAllocator","package":"phobos","parentType":"","signature":"FallbackAllocator(Primary,  Fallback)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/fallback_allocator.html#FallbackAllocator"},{"doc":"Allocates memory trying the primary allocator first. If it returns $(D null), the fallback allocator is tried.","kind":"method","module":"std.experimental.allocator.building_blocks.fallback_allocator","name":"allocate","package":"phobos","parentType":"FallbackAllocator","signature":"void[] allocate(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/fallback_allocator/FallbackAllocator.allocate.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/free_list.d)","kind":"module","module":"std.experimental.allocator.building_blocks.free_list","name":"std.experimental.allocator.building_blocks.free_list","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list.html"},{"doc":"$(HTTP en.wikipedia.org/wiki/Free_list, Free list allocator), stackable on top of another allocator. Allocation requests between `min` and `max` by...","kind":"struct","module":"std.experimental.allocator.building_blocks.free_list","name":"FreeList","package":"phobos","parentType":"","signature":"FreeList(ParentAllocator,\n     size_t minSize,  size_t maxSize =  minSize,\n     Flag!\"adaptive\" adaptive =  No.adaptive)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list.html#FreeList"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"tooSmall","package":"phobos","parentType":"FreeList","signature":"bool tooSmall(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.tooSmall.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"tooLarge","package":"phobos","parentType":"FreeList","signature":"bool tooLarge(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.tooLarge.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"freeListEligible","package":"phobos","parentType":"FreeList","signature":"bool freeListEligible(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.freeListEligible.html"},{"doc":"If $(D maxSize == unbounded), returns  `parent.goodAllocSize(bytes)`. Otherwise, returns `max` for sizes in the interval $(D [min, max]), and `pare...","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"goodAllocSize","package":"phobos","parentType":"FreeList","signature":"size_t goodAllocSize(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.goodAllocSize.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"allocateEligible","package":"phobos","parentType":"FreeList","signature":"void[] allocateEligible(string fillMode)(size_t bytes) if (fillMode ==  \"void\" ||  fillMode ==  \"zero\")","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.allocateEligible.html"},{"doc":"Allocates memory either off of the free list or from the parent allocator. If `n` is within $(D [min, max]) or if the free list is unchecked ($(D m...","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"allocate","package":"phobos","parentType":"FreeList","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.allocate.html"},{"doc":"If `block.length` is within $(D [min, max]) or if the free list is unchecked ($(D minSize == 0 && maxSize == size_t.max)), then inserts the block a...","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"deallocate","package":"phobos","parentType":"FreeList","signature":"bool deallocate(void[]  block)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/FreeList.deallocate.html"},{"doc":"Free list built on top of exactly one contiguous block of memory. The block is assumed to have been allocated with `ParentAllocator`, and is releas...","kind":"struct","module":"std.experimental.allocator.building_blocks.free_list","name":"ContiguousFreeList","package":"phobos","parentType":"","signature":"ContiguousFreeList(ParentAllocator,\n      size_t minSize,  size_t maxSize =  minSize)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list.html#ContiguousFreeList"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"initialize","package":"phobos","parentType":"ContiguousFreeList","signature":"void initialize(ubyte[]  buffer,  size_t itemSize =  fl.max)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/ContiguousFreeList.initialize.html"},{"doc":"If `n` is eligible for freelisting, returns `max`. Otherwise, returns `parent.goodAllocSize(n)`.","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"goodAllocSize","package":"phobos","parentType":"ContiguousFreeList","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/ContiguousFreeList.goodAllocSize.html"},{"doc":"Allocate `n` bytes of memory. If `n` is eligible for freelist and the freelist is not empty, pops the memory off the free list. In all other cases,...","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"allocate","package":"phobos","parentType":"ContiguousFreeList","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/ContiguousFreeList.allocate.html"},{"doc":"Deallocates `b`. If it's of eligible size, it's put on the free list. Otherwise, it's returned to `parent`.","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"deallocate","package":"phobos","parentType":"ContiguousFreeList","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/ContiguousFreeList.deallocate.html"},{"doc":"Returns `Ternary.yes` if no memory is currently allocated with this allocator, `Ternary.no` otherwise. This method never returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"empty","package":"phobos","parentType":"ContiguousFreeList","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/ContiguousFreeList.empty.html"},{"doc":"FreeList shared across threads. Allocation and deallocation are lock-free. The parameters have the same semantics as for `FreeList`.","kind":"struct","module":"std.experimental.allocator.building_blocks.free_list","name":"SharedFreeList","package":"phobos","parentType":"","signature":"SharedFreeList(ParentAllocator,\n     size_t minSize,  size_t maxSize =  minSize,  size_t approxMaxNodes =  unbounded)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list.html#SharedFreeList"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"tooSmall","package":"phobos","parentType":"SharedFreeList","signature":"bool tooSmall(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.tooSmall.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"tooLarge","package":"phobos","parentType":"SharedFreeList","signature":"bool tooLarge(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.tooLarge.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"freeListEligible","package":"phobos","parentType":"SharedFreeList","signature":"bool freeListEligible(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.freeListEligible.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"goodAllocSize","package":"phobos","parentType":"SharedFreeList","signature":"size_t goodAllocSize(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.goodAllocSize.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"allocate","package":"phobos","parentType":"SharedFreeList","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.allocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"allocateFresh","package":"phobos","parentType":"SharedFreeList","signature":"void[] allocateFresh(const  size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.allocateFresh.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"deallocate","package":"phobos","parentType":"SharedFreeList","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.deallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.free_list","name":"deallocateAll","package":"phobos","parentType":"SharedFreeList","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_list/SharedFreeList.deallocateAll.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/_free_tree.d)","kind":"module","module":"std.experimental.allocator.building_blocks.free_tree","name":"std.experimental.allocator.building_blocks.free_tree","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree.html"},{"doc":"The Free Tree allocator, stackable on top of any other allocator, bears similarity with the free list allocator. Instead of a singly-linked list of...","kind":"struct","module":"std.experimental.allocator.building_blocks.free_tree","name":"FreeTree","package":"phobos","parentType":"","signature":"FreeTree(ParentAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree.html#FreeTree"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"remove","package":"phobos","parentType":"FreeTree","signature":"void[] remove(ref  Node *  which)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.remove.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"findAndRemove","package":"phobos","parentType":"FreeTree","signature":"void[] findAndRemove(ref  Node *  n,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.findAndRemove.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"formatSizes","package":"phobos","parentType":"FreeTree","signature":"string formatSizes()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.formatSizes.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"rotate","package":"phobos","parentType":"FreeTree","signature":"void rotate(ref  Node *  parent,  bool  toRight)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.rotate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"insertAsRoot","package":"phobos","parentType":"FreeTree","signature":"void insertAsRoot(Node *  which)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.insertAsRoot.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"assertValid","package":"phobos","parentType":"FreeTree","signature":"void assertValid()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.assertValid.html"},{"doc":"Allocates `n` bytes of memory. First consults the free tree, and returns from it if a suitably sized block is found. Otherwise, the parent allocato...","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"allocate","package":"phobos","parentType":"FreeTree","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.allocate.html"},{"doc":"Places `b` into the free tree.","kind":"method","module":"std.experimental.allocator.building_blocks.free_tree","name":"deallocate","package":"phobos","parentType":"FreeTree","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/free_tree/FreeTree.deallocate.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/kernighan_ritchie.d)","kind":"module","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"std.experimental.allocator.building_blocks.kernighan_ritchie","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie.html"},{"doc":"`KRRegion` draws inspiration from the $(MREF_ALTTEXT region allocation strategy, std,experimental,allocator,building_blocks,region) and also the $(...","kind":"struct","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"KRRegion","package":"phobos","parentType":"","signature":"KRRegion(ParentAllocator =  NullAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie.html#KRRegion"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"regionMode","package":"phobos","parentType":"KRRegion","signature":"bool regionMode()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.regionMode.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"cancelRegionMode","package":"phobos","parentType":"KRRegion","signature":"void cancelRegionMode()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.cancelRegionMode.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"byNodePtr","package":"phobos","parentType":"KRRegion","signature":"auto byNodePtr()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.byNodePtr.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"toString","package":"phobos","parentType":"KRRegion","signature":"string toString()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.toString.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"assertValid","package":"phobos","parentType":"KRRegion","signature":"void assertValid(string s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.assertValid.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"sortFreelist","package":"phobos","parentType":"KRRegion","signature":"Node * sortFreelist(Node *  root)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.sortFreelist.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"merge","package":"phobos","parentType":"KRRegion","signature":"Node * merge(Node *  left,  Node *  right)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.merge.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"coalesceAndMakeCircular","package":"phobos","parentType":"KRRegion","signature":"void coalesceAndMakeCircular()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.coalesceAndMakeCircular.html"},{"doc":"Forces free list mode. If already in free list mode, does nothing. Otherwise, sorts the free list accumulated so far and switches strategy for futu...","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"switchToFreeList","package":"phobos","parentType":"KRRegion","signature":"void switchToFreeList()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.switchToFreeList.html"},{"doc":"Allocates `n` bytes. Allocation searches the list of available blocks until a free block with `n` or more bytes is found (first fit strategy). The ...","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"allocate","package":"phobos","parentType":"KRRegion","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.allocate.html"},{"doc":"Deallocates `b`, which is assumed to have been previously allocated with this allocator. Deallocation performs a linear search in the free list to ...","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"deallocate","package":"phobos","parentType":"KRRegion","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.deallocate.html"},{"doc":"Allocates all memory available to this allocator. If the allocator is empty, returns the entire available block of memory. Otherwise, it still perf...","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"allocateAll","package":"phobos","parentType":"KRRegion","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.allocateAll.html"},{"doc":"Deallocates all memory currently allocated, making the allocator ready for other allocations. This is a $(BIGOH 1) operation.","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"deallocateAll","package":"phobos","parentType":"KRRegion","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.deallocateAll.html"},{"doc":"Checks whether the allocator is responsible for the allocation of `b`. It does a simple $(BIGOH 1) range check. `b` should be a buffer either alloc...","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"owns","package":"phobos","parentType":"KRRegion","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.owns.html"},{"doc":"Adjusts `n` to a size suitable for allocation (two words or larger, word-aligned).","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"goodAllocSize","package":"phobos","parentType":"KRRegion","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.goodAllocSize.html"},{"doc":"Returns: `Ternary.yes` if the allocator is empty, `Ternary.no` otherwise. Never returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator.building_blocks.kernighan_ritchie","name":"empty","package":"phobos","parentType":"KRRegion","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie/KRRegion.empty.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/null_allocator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.null_allocator","name":"std.experimental.allocator.building_blocks.null_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator.html"},{"doc":"`NullAllocator` is an emphatically empty implementation of the allocator interface. Although it has no direct use, it is useful as a \"terminator\" i...","kind":"struct","module":"std.experimental.allocator.building_blocks.null_allocator","name":"NullAllocator","package":"phobos","parentType":"","signature":"NullAllocator","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator.html#NullAllocator"},{"doc":"Always returns `null`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"allocate","package":"phobos","parentType":"NullAllocator","signature":"void[] allocate(size_t)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.allocate.html"},{"doc":"Always returns `null`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"alignedAllocate","package":"phobos","parentType":"NullAllocator","signature":"void[] alignedAllocate(size_t,  uint)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.alignedAllocate.html"},{"doc":"Always returns `null`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"allocateAll","package":"phobos","parentType":"NullAllocator","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.allocateAll.html"},{"doc":"These methods return `false`. Precondition: $(D b is null). This is because there is no other possible legitimate input.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"expand","package":"phobos","parentType":"NullAllocator","signature":"bool expand(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.expand.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"reallocate","package":"phobos","parentType":"NullAllocator","signature":"bool reallocate(ref  void[]  b,  size_t)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.reallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"alignedReallocate","package":"phobos","parentType":"NullAllocator","signature":"bool alignedReallocate(ref  void[]  b,  size_t,  uint)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.alignedReallocate.html"},{"doc":"Returns `Ternary.no`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"owns","package":"phobos","parentType":"NullAllocator","signature":"Ternary owns(const  void[])","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.owns.html"},{"doc":"Returns `Ternary.no`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"resolveInternalPointer","package":"phobos","parentType":"NullAllocator","signature":"Ternary resolveInternalPointer(const  void *,  ref  void[])","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.resolveInternalPointer.html"},{"doc":"No-op. Precondition: $(D b is null)","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"deallocate","package":"phobos","parentType":"NullAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.deallocate.html"},{"doc":"No-op.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"deallocateAll","package":"phobos","parentType":"NullAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.deallocateAll.html"},{"doc":"Returns `Ternary.yes`.","kind":"method","module":"std.experimental.allocator.building_blocks.null_allocator","name":"empty","package":"phobos","parentType":"NullAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/null_allocator/NullAllocator.empty.html"},{"doc":"$(H2 Assembling Your Own Allocator)","kind":"module","module":"std.experimental.allocator.building_blocks","name":"std.experimental.allocator.building_blocks","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/quantizer.d)","kind":"module","module":"std.experimental.allocator.building_blocks.quantizer","name":"std.experimental.allocator.building_blocks.quantizer","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer.html"},{"doc":"This allocator sits on top of `ParentAllocator` and quantizes allocation sizes, usually from arbitrary positive numbers to a small set of round num...","kind":"struct","module":"std.experimental.allocator.building_blocks.quantizer","name":"Quantizer","package":"phobos","parentType":"","signature":"Quantizer(ParentAllocator,  alias  roundingFunction)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer.html#Quantizer"},{"doc":"Returns `roundingFunction(n)`.","kind":"method","module":"std.experimental.allocator.building_blocks.quantizer","name":"goodAllocSize","package":"phobos","parentType":"Quantizer","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer/Quantizer.goodAllocSize.html"},{"doc":"Gets a larger buffer `buf` by calling `parent.allocate(goodAllocSize(n))`. If `buf` is `null`, returns `null`. Otherwise, returns $(D buf[0 .. n]).","kind":"method","module":"std.experimental.allocator.building_blocks.quantizer","name":"allocate","package":"phobos","parentType":"Quantizer","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer/Quantizer.allocate.html"},{"doc":"First checks whether there's enough slack memory preallocated for `b` by evaluating $(D b.length + delta <= goodAllocSize(b.length)). If that's the...","kind":"method","module":"std.experimental.allocator.building_blocks.quantizer","name":"expand","package":"phobos","parentType":"Quantizer","signature":"bool expand(ref  void[]  b,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer/Quantizer.expand.html"},{"doc":"Expands or shrinks allocated block to an allocated size of $(D goodAllocSize(s)). Expansion occurs in place under the conditions required by `expan...","kind":"method","module":"std.experimental.allocator.building_blocks.quantizer","name":"reallocate","package":"phobos","parentType":"Quantizer","signature":"bool reallocate(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/quantizer/Quantizer.reallocate.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/region.d)","kind":"module","module":"std.experimental.allocator.building_blocks.region","name":"std.experimental.allocator.building_blocks.region","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html"},{"doc":"A `Region` allocator allocates memory straight from one contiguous chunk. There is no deallocation, and once the region is full, allocation request...","kind":"struct","module":"std.experimental.allocator.building_blocks.region","name":"Region","package":"phobos","parentType":"","signature":"Region(ParentAllocator,\n     uint  minAlign =  platformAlignment,\n     Flag!\"growDownwards\" growDownwards =  No.growDownwards)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html#Region"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedBegin","package":"phobos","parentType":"Region","signature":"void * roundedBegin()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.roundedBegin.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedEnd","package":"phobos","parentType":"Region","signature":"void * roundedEnd()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.roundedEnd.html"},{"doc":"Rounds the given size to a multiple of the `alignment`","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"goodAllocSize","package":"phobos","parentType":"Region","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory. The shortest path involves an alignment adjustment (if $(D alignment > 1)), an increment, and a comparison.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocate","package":"phobos","parentType":"Region","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.allocate.html"},{"doc":"Allocates `n` bytes of memory aligned at alignment `a`.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"alignedAllocate","package":"phobos","parentType":"Region","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.alignedAllocate.html"},{"doc":"Allocates and returns all memory available to this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocateAll","package":"phobos","parentType":"Region","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.allocateAll.html"},{"doc":"Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocate","package":"phobos","parentType":"Region","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.deallocate.html"},{"doc":"Deallocates all memory allocated by this region, which can be subsequently reused for new allocations.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocateAll","package":"phobos","parentType":"Region","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.deallocateAll.html"},{"doc":"Queries whether `b` has been allocated with this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"owns","package":"phobos","parentType":"Region","signature":"Ternary owns(const  void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.owns.html"},{"doc":"Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.)","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"empty","package":"phobos","parentType":"Region","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.empty.html"},{"doc":"Nonstandard property that returns bytes available for allocation.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"available","package":"phobos","parentType":"Region","signature":"size_t available()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/Region.available.html"},{"doc":"A `BorrowedRegion` allocates directly from a user-provided block of memory.","kind":"struct","module":"std.experimental.allocator.building_blocks.region","name":"BorrowedRegion","package":"phobos","parentType":"","signature":"BorrowedRegion(uint  minAlign =  platformAlignment,\n     Flag!\"growDownwards\" growDownwards =  No.growDownwards)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html#BorrowedRegion"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedBegin","package":"phobos","parentType":"BorrowedRegion","signature":"void * roundedBegin()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.roundedBegin.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedEnd","package":"phobos","parentType":"BorrowedRegion","signature":"void * roundedEnd()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.roundedEnd.html"},{"doc":"Rounds the given size to a multiple of the `alignment`","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"goodAllocSize","package":"phobos","parentType":"BorrowedRegion","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory. The shortest path involves an alignment adjustment (if $(D alignment > 1)), an increment, and a comparison.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocate","package":"phobos","parentType":"BorrowedRegion","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.allocate.html"},{"doc":"Allocates `n` bytes of memory aligned at alignment `a`.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"alignedAllocate","package":"phobos","parentType":"BorrowedRegion","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.alignedAllocate.html"},{"doc":"Allocates and returns all memory available to this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocateAll","package":"phobos","parentType":"BorrowedRegion","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.allocateAll.html"},{"doc":"Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocate","package":"phobos","parentType":"BorrowedRegion","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.deallocate.html"},{"doc":"Deallocates all memory allocated by this region, which can be subsequently reused for new allocations.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocateAll","package":"phobos","parentType":"BorrowedRegion","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.deallocateAll.html"},{"doc":"Queries whether `b` has been allocated with this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"owns","package":"phobos","parentType":"BorrowedRegion","signature":"Ternary owns(const  void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.owns.html"},{"doc":"Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.)","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"empty","package":"phobos","parentType":"BorrowedRegion","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.empty.html"},{"doc":"Nonstandard property that returns bytes available for allocation.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"available","package":"phobos","parentType":"BorrowedRegion","signature":"size_t available()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/BorrowedRegion.available.html"},{"doc":"`InSituRegion` is a convenient region that carries its storage within itself (in the form of a statically-sized array).","kind":"struct","module":"std.experimental.allocator.building_blocks.region","name":"InSituRegion","package":"phobos","parentType":"","signature":"InSituRegion(size_t size,  size_t minAlign =  platformAlignment)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html#InSituRegion"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"lazyInit","package":"phobos","parentType":"InSituRegion","signature":"void lazyInit()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.lazyInit.html"},{"doc":"Allocates `bytes` and returns them, or `null` if the region cannot accommodate the request. For efficiency reasons, if $(D bytes == 0) the function...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocate","package":"phobos","parentType":"InSituRegion","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.allocate.html"},{"doc":"As above, but the memory allocated is aligned at `a` bytes.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"alignedAllocate","package":"phobos","parentType":"InSituRegion","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.alignedAllocate.html"},{"doc":"Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocate","package":"phobos","parentType":"InSituRegion","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.deallocate.html"},{"doc":"Returns `Ternary.yes` if `b` is the result of a previous allocation, `Ternary.no` otherwise.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"owns","package":"phobos","parentType":"InSituRegion","signature":"Ternary owns(const  void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.owns.html"},{"doc":"Deallocates all memory allocated with this allocator.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocateAll","package":"phobos","parentType":"InSituRegion","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.deallocateAll.html"},{"doc":"Allocates all memory available with this allocator.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocateAll","package":"phobos","parentType":"InSituRegion","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.allocateAll.html"},{"doc":"Nonstandard function that returns the bytes available for allocation.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"available","package":"phobos","parentType":"InSituRegion","signature":"size_t available()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/InSituRegion.available.html"},{"doc":"The threadsafe version of the `Region` allocator. Allocations and deallocations are lock-free based using $(REF cas, core,atomic).","kind":"struct","module":"std.experimental.allocator.building_blocks.region","name":"SharedRegion","package":"phobos","parentType":"","signature":"SharedRegion(ParentAllocator,\n     uint  minAlign =  platformAlignment,\n     Flag!\"growDownwards\" growDownwards =  No.growDownwards)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html#SharedRegion"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedBegin","package":"phobos","parentType":"SharedRegion","signature":"void * roundedBegin()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.roundedBegin.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedEnd","package":"phobos","parentType":"SharedRegion","signature":"void * roundedEnd()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.roundedEnd.html"},{"doc":"Rounds the given size to a multiple of the `alignment`","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"goodAllocSize","package":"phobos","parentType":"SharedRegion","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory. The allocation is served by atomically incrementing a pointer which keeps track of the current used space.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocate","package":"phobos","parentType":"SharedRegion","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.allocate.html"},{"doc":"Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocate","package":"phobos","parentType":"SharedRegion","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.deallocate.html"},{"doc":"Deallocates all memory allocated by this region, which can be subsequently reused for new allocations.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocateAll","package":"phobos","parentType":"SharedRegion","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.deallocateAll.html"},{"doc":"Allocates `n` bytes of memory aligned at alignment `a`. Params: n = number of bytes to allocate a = alignment for the allocated block","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"alignedAllocate","package":"phobos","parentType":"SharedRegion","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.alignedAllocate.html"},{"doc":"Queries whether `b` has been allocated with this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"owns","package":"phobos","parentType":"SharedRegion","signature":"Ternary owns(const  void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.owns.html"},{"doc":"Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.)","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"empty","package":"phobos","parentType":"SharedRegion","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedRegion.empty.html"},{"doc":"A `SharedBorrowedRegion` allocates directly from a user-provided block of memory.","kind":"struct","module":"std.experimental.allocator.building_blocks.region","name":"SharedBorrowedRegion","package":"phobos","parentType":"","signature":"SharedBorrowedRegion(uint  minAlign =  platformAlignment,\n     Flag!\"growDownwards\" growDownwards =  No.growDownwards)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region.html#SharedBorrowedRegion"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedBegin","package":"phobos","parentType":"SharedBorrowedRegion","signature":"void * roundedBegin()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.roundedBegin.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"roundedEnd","package":"phobos","parentType":"SharedBorrowedRegion","signature":"void * roundedEnd()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.roundedEnd.html"},{"doc":"Rounds the given size to a multiple of the `alignment`","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"goodAllocSize","package":"phobos","parentType":"SharedBorrowedRegion","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory. The allocation is served by atomically incrementing a pointer which keeps track of the current used space.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"allocate","package":"phobos","parentType":"SharedBorrowedRegion","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.allocate.html"},{"doc":"Allocates `n` bytes of memory aligned at alignment `a`.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"alignedAllocate","package":"phobos","parentType":"SharedBorrowedRegion","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.alignedAllocate.html"},{"doc":"Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does...","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocate","package":"phobos","parentType":"SharedBorrowedRegion","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.deallocate.html"},{"doc":"Deallocates all memory allocated by this region, which can be subsequently reused for new allocations.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"deallocateAll","package":"phobos","parentType":"SharedBorrowedRegion","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.deallocateAll.html"},{"doc":"Queries whether `b` has been allocated with this region.","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"owns","package":"phobos","parentType":"SharedBorrowedRegion","signature":"Ternary owns(const  void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.owns.html"},{"doc":"Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.)","kind":"method","module":"std.experimental.allocator.building_blocks.region","name":"empty","package":"phobos","parentType":"SharedBorrowedRegion","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/region/SharedBorrowedRegion.empty.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/scoped_allocator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"std.experimental.allocator.building_blocks.scoped_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator.html"},{"doc":"`ScopedAllocator` delegates all allocation requests to `ParentAllocator`. When destroyed, the `ScopedAllocator` object automatically calls $(D deal...","kind":"struct","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"ScopedAllocator","package":"phobos","parentType":"","signature":"ScopedAllocator(ParentAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator.html#ScopedAllocator"},{"doc":"Forwards to `parent.goodAllocSize` (which accounts for the management overhead).","kind":"method","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"goodAllocSize","package":"phobos","parentType":"ScopedAllocator","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator/ScopedAllocator.goodAllocSize.html"},{"doc":"Allocates memory. For management it actually allocates extra memory from the parent.","kind":"method","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"allocate","package":"phobos","parentType":"ScopedAllocator","signature":"void[] allocate(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator/ScopedAllocator.allocate.html"},{"doc":"Reallocates `b` to new size `s`.","kind":"method","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"reallocate","package":"phobos","parentType":"ScopedAllocator","signature":"bool reallocate(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator/ScopedAllocator.reallocate.html"},{"doc":"Deallocates all memory allocated.","kind":"method","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"deallocateAll","package":"phobos","parentType":"ScopedAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator/ScopedAllocator.deallocateAll.html"},{"doc":"Returns `Ternary.yes` if this allocator is not responsible for any memory, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.)","kind":"method","module":"std.experimental.allocator.building_blocks.scoped_allocator","name":"empty","package":"phobos","parentType":"ScopedAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/scoped_allocator/ScopedAllocator.empty.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/segregator.d)","kind":"module","module":"std.experimental.allocator.building_blocks.segregator","name":"std.experimental.allocator.building_blocks.segregator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/segregator.html"},{"doc":"Dispatches allocations (and deallocations) between two allocators ($(D SmallAllocator) and `LargeAllocator`) depending on the size allocated, as fo...","kind":"struct","module":"std.experimental.allocator.building_blocks.segregator","name":"Segregator","package":"phobos","parentType":"","signature":"Segregator(size_t threshold,  SmallAllocator,  LargeAllocator)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/segregator.html#Segregator"},{"doc":"Composite allocators involving nested instantiations of `Segregator` make it difficult to access individual sub-allocators stored within. $(D alloc...","kind":"method","module":"std.experimental.allocator.building_blocks.segregator","name":"allocatorForSize","package":"phobos","parentType":"Segregator","signature":"ref auto allocatorForSize(size_t s)()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/segregator/Segregator.allocatorForSize.html"},{"doc":"A `Segregator` with more than three arguments expands to a composition of elemental `Segregator`s, as illustrated by the following example:","kind":"template","module":"std.experimental.allocator.building_blocks.segregator","name":"Segregator","package":"phobos","parentType":"","signature":"Segregator(Args...)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/segregator.html#Segregator"},{"doc":"Allocator that collects useful statistics about allocations, both global and per calling point. The statistics collected can be configured statical...","kind":"module","module":"std.experimental.allocator.building_blocks.stats_collector","name":"std.experimental.allocator.building_blocks.stats_collector","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html"},{"doc":"_Options for `StatsCollector` defined below. Each enables during compilation one specific counter, statistic, or other piece of information.","kind":"enum","module":"std.experimental.allocator.building_blocks.stats_collector","name":"Options","package":"phobos","parentType":"","signature":"Options : ulong","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `owns`.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numOwns","package":"phobos","parentType":"","signature":"numOwns = 1u <<  0","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `allocate`. All calls are counted, including requests for zero bytes or failed requests.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numAllocate","package":"phobos","parentType":"","signature":"numAllocate = 1u <<  1","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `allocate` that succeeded, i.e. they returned a block as large as requested. (N.B. requests for zero bytes count as s...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numAllocateOK","package":"phobos","parentType":"","signature":"numAllocateOK = 1u <<  2","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `expand`, regardless of arguments or result.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numExpand","package":"phobos","parentType":"","signature":"numExpand = 1u <<  3","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `expand` that resulted in a successful expansion.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numExpandOK","package":"phobos","parentType":"","signature":"numExpandOK = 1u <<  4","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `reallocate`, regardless of arguments or result.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numReallocate","package":"phobos","parentType":"","signature":"numReallocate = 1u <<  5","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `reallocate` that succeeded. (Reallocations to zero bytes count as successful.)","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numReallocateOK","package":"phobos","parentType":"","signature":"numReallocateOK = 1u <<  6","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `reallocate` that resulted in an in-place reallocation (no memory moved). If this number is close to the total number...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numReallocateInPlace","package":"phobos","parentType":"","signature":"numReallocateInPlace = 1u <<  7","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `deallocate`.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numDeallocate","package":"phobos","parentType":"","signature":"numDeallocate = 1u <<  8","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `deallocateAll`.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numDeallocateAll","package":"phobos","parentType":"","signature":"numDeallocateAll = 1u <<  9","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `alignedAllocate`. All calls are counted, including requests for zero bytes or failed requests.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numAlignedAllocate","package":"phobos","parentType":"","signature":"numAlignedAllocate = 1u <<  10","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Counts the number of calls to `alignedAllocate` that succeeded, i.e. they returned a block as large as requested. (N.B. requests for zero bytes cou...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numAlignedAllocateOk","package":"phobos","parentType":"","signature":"numAlignedAllocateOk = 1u <<  11","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Chooses all `numXxx` flags.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"numAll","package":"phobos","parentType":"","signature":"numAll = (1u <<  12)  -  1","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks bytes currently allocated by this allocator. This number goes up and down as memory is allocated and deallocated, and is zero if the allocat...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesUsed","package":"phobos","parentType":"","signature":"bytesUsed = 1u <<  12","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks total cumulative bytes allocated by means of `allocate`, `expand`, and `reallocate` (when resulting in an expansion). This number always gro...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesAllocated","package":"phobos","parentType":"","signature":"bytesAllocated = 1u <<  13","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks the sum of all `delta` values in calls of the form $(D expand(b, delta)) that succeed (return `true`).","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesExpanded","package":"phobos","parentType":"","signature":"bytesExpanded = 1u <<  14","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks the sum of all $(D b.length - s) with $(D b.length > s) in calls of the form $(D realloc(b, s)) that succeed (return `true`). In per-call st...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesContracted","package":"phobos","parentType":"","signature":"bytesContracted = 1u <<  15","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks the sum of all bytes moved as a result of calls to `realloc` that were unable to reallocate in place. A large number (relative to $(D bytesA...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesMoved","package":"phobos","parentType":"","signature":"bytesMoved = 1u <<  16","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Tracks the sum of all bytes NOT moved as result of calls to `realloc` that managed to reallocate in place. A large number (relative to $(D bytesAll...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesNotMoved","package":"phobos","parentType":"","signature":"bytesNotMoved = 1u <<  17","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Measures the sum of extra bytes allocated beyond the bytes requested, i.e. the $(HTTPS en.wikipedia.org/wiki/Fragmentation_(computing)#Internal_fra...","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesSlack","package":"phobos","parentType":"","signature":"bytesSlack = 1u <<  18","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Measures the maximum bytes allocated over the time. This is useful for dimensioning allocators.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesHighTide","package":"phobos","parentType":"","signature":"bytesHighTide = 1u <<  19","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Chooses all `byteXxx` flags.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"bytesAll","package":"phobos","parentType":"","signature":"bytesAll = ((1u <<  20)  -  1)  &  ~ numAll","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Combines all flags above.","kind":"enum_member","module":"std.experimental.allocator.building_blocks.stats_collector","name":"all","package":"phobos","parentType":"","signature":"all = (1u <<  20)  -  1","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#Options"},{"doc":"Allocator that collects extra data about allocations. Since each piece of information adds size and time overhead, statistics can be individually e...","kind":"struct","module":"std.experimental.allocator.building_blocks.stats_collector","name":"StatsCollector","package":"phobos","parentType":"","signature":"StatsCollector(Allocator,  ulong  flags =  Options.all,\n     ulong  perCallFlags =  0)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector.html#StatsCollector"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"define","package":"phobos","parentType":"StatsCollector","signature":"string define(string type,  string[]  names...)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.define.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"add","package":"phobos","parentType":"StatsCollector","signature":"void add(string counter)(Signed!size_t n)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.add.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"up","package":"phobos","parentType":"StatsCollector","signature":"void up(string counter)()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.up.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"down","package":"phobos","parentType":"StatsCollector","signature":"void down(string counter)()","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.down.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"ownsImpl","package":"phobos","parentType":"StatsCollector","signature":"Ternary ownsImpl(string f =  null,  uint  n =  0)(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.ownsImpl.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"allocateImpl","package":"phobos","parentType":"StatsCollector","signature":"void[] allocateImpl(string f =  null,  ulong  n =  0)(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.allocateImpl.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"alignedAllocateImpl","package":"phobos","parentType":"StatsCollector","signature":"void[] alignedAllocateImpl(string f =  null,  ulong  n =  0)(size_t bytes,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.alignedAllocateImpl.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"expandImpl","package":"phobos","parentType":"StatsCollector","signature":"bool expandImpl(string f =  null,  uint  n =  0)(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.expandImpl.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"reallocateImpl","package":"phobos","parentType":"StatsCollector","signature":"bool reallocateImpl(string f =  null,  uint  n =  0)(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.reallocateImpl.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"deallocateImpl","package":"phobos","parentType":"StatsCollector","signature":"bool deallocateImpl(string f =  null,  uint  n =  0)(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.deallocateImpl.html"},{"doc":"Reports per instance statistics to `output` (e.g. `stdout`). The format is simple: one kind and value per line, separated by a colon, e.g. `bytesAl...","kind":"method","module":"std.experimental.allocator.building_blocks.stats_collector","name":"reportStatistics","package":"phobos","parentType":"StatsCollector","signature":"void reportStatistics(R)(auto  ref  R output)","url":"/ddoc/phobos/std/experimental/allocator/building_blocks/stats_collector/StatsCollector.reportStatistics.html"},{"doc":"Utility and ancillary artifacts of `std.experimental.allocator`. This module shouldn't be used directly; its functionality will be migrated into mo...","kind":"module","module":"std.experimental.allocator.common","name":"std.experimental.allocator.common","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/common.html"},{"doc":"The default good size allocation is deduced as `n` rounded up to the allocator's alignment.","kind":"function","module":"std.experimental.allocator.common","name":"goodAllocSize","package":"phobos","parentType":"","signature":"size_t goodAllocSize(A)(auto  ref  A a,  size_t n)","url":"/ddoc/phobos/std/experimental/allocator/common/goodAllocSize.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundUpToMultipleOf","package":"phobos","parentType":"","signature":"size_t roundUpToMultipleOf(size_t s,  uint  base)","url":"/ddoc/phobos/std/experimental/allocator/common/roundUpToMultipleOf.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundUpToAlignment","package":"phobos","parentType":"","signature":"size_t roundUpToAlignment(size_t n,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/common/roundUpToAlignment.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundDownToAlignment","package":"phobos","parentType":"","signature":"size_t roundDownToAlignment(size_t n,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/common/roundDownToAlignment.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundUpToAlignment","package":"phobos","parentType":"","signature":"void[] roundUpToAlignment(void[]  b,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/common/roundUpToAlignment.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"divideRoundUp","package":"phobos","parentType":"","signature":"size_t divideRoundUp(size_t a,  size_t b)","url":"/ddoc/phobos/std/experimental/allocator/common/divideRoundUp.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundStartToMultipleOf","package":"phobos","parentType":"","signature":"void[] roundStartToMultipleOf(void[]  s,  uint  base)","url":"/ddoc/phobos/std/experimental/allocator/common/roundStartToMultipleOf.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"roundUpToPowerOf2","package":"phobos","parentType":"","signature":"size_t roundUpToPowerOf2(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/common/roundUpToPowerOf2.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"trailingZeros","package":"phobos","parentType":"","signature":"uint trailingZeros(ulong  x)","url":"/ddoc/phobos/std/experimental/allocator/common/trailingZeros.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"alignedAt","package":"phobos","parentType":"","signature":"bool alignedAt(T)(T *  ptr,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/common/alignedAt.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"effectiveAlignment","package":"phobos","parentType":"","signature":"size_t effectiveAlignment(void *  ptr)","url":"/ddoc/phobos/std/experimental/allocator/common/effectiveAlignment.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"alignDownTo","package":"phobos","parentType":"","signature":"void * alignDownTo(return  scope  void *  ptr,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/common/alignDownTo.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"alignUpTo","package":"phobos","parentType":"","signature":"void * alignUpTo(return  scope  void *  ptr,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/common/alignUpTo.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"isGoodStaticAlignment","package":"phobos","parentType":"","signature":"bool isGoodStaticAlignment(uint  x)","url":"/ddoc/phobos/std/experimental/allocator/common/isGoodStaticAlignment.html"},{"doc":"","kind":"function","module":"std.experimental.allocator.common","name":"isGoodDynamicAlignment","package":"phobos","parentType":"","signature":"bool isGoodDynamicAlignment(uint  x)","url":"/ddoc/phobos/std/experimental/allocator/common/isGoodDynamicAlignment.html"},{"doc":"The default `reallocate` function first attempts to use `expand`. If $(D Allocator.expand) is not defined or returns `false`, `reallocate` allocate...","kind":"function","module":"std.experimental.allocator.common","name":"reallocate","package":"phobos","parentType":"","signature":"bool reallocate(Allocator)(ref  Allocator a,  ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/common/reallocate.html"},{"doc":"The default `alignedReallocate` function first attempts to use `expand`. If `Allocator.expand` is not defined or returns `false`,  $(D alignedReall...","kind":"function","module":"std.experimental.allocator.common","name":"alignedReallocate","package":"phobos","parentType":"","signature":"bool alignedReallocate(Allocator)(ref  Allocator alloc,\n         ref  void[]  b,  size_t s,  uint  a) if (hasMember!(Allocator,  \"alignedAllocate\"))","url":"/ddoc/phobos/std/experimental/allocator/common/alignedReallocate.html"},{"doc":"Forwards each of the methods in `funs` (if defined) to `member`.","kind":"function","module":"std.experimental.allocator.common","name":"forwardToMember","package":"phobos","parentType":"","signature":"string forwardToMember(string member,  string[]  funs...)","url":"/ddoc/phobos/std/experimental/allocator/common/forwardToMember.html"},{"doc":"Returns the size in bytes of the state that needs to be allocated to hold an object of type `T`. `stateSize!T` is zero for `struct`s that are not n...","kind":"template","module":"std.experimental.allocator.common","name":"stateSize","package":"phobos","parentType":"","signature":"stateSize(T)","url":"/ddoc/phobos/std/experimental/allocator/common.html#stateSize"},{"doc":"Returns `true` if the `Allocator` has the alignment known at compile time; otherwise it returns `false`.","kind":"template","module":"std.experimental.allocator.common","name":"hasStaticallyKnownAlignment","package":"phobos","parentType":"","signature":"hasStaticallyKnownAlignment(Allocator)","url":"/ddoc/phobos/std/experimental/allocator/common.html#hasStaticallyKnownAlignment"},{"doc":"`chooseAtRuntime` is a compile-time constant of type `size_t` that several parameterized structures in this module recognize to mean deferral to ru...","kind":"variable","module":"std.experimental.allocator.common","name":"chooseAtRuntime","package":"phobos","parentType":"","signature":"chooseAtRuntime","url":"/ddoc/phobos/std/experimental/allocator/common.html#chooseAtRuntime"},{"doc":"`unbounded` is a compile-time constant of type `size_t` that several parameterized structures in this module recognize to mean \"infinite\" bounds fo...","kind":"variable","module":"std.experimental.allocator.common","name":"unbounded","package":"phobos","parentType":"","signature":"unbounded","url":"/ddoc/phobos/std/experimental/allocator/common.html#unbounded"},{"doc":"The alignment that is guaranteed to accommodate any D object allocation on the current platform.","kind":"variable","module":"std.experimental.allocator.common","name":"platformAlignment","package":"phobos","parentType":"","signature":"uint platformAlignment","url":"/ddoc/phobos/std/experimental/allocator/common.html#platformAlignment"},{"doc":"D's built-in garbage-collected allocator.","kind":"module","module":"std.experimental.allocator.gc_allocator","name":"std.experimental.allocator.gc_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator.html"},{"doc":"D's built-in garbage-collected allocator.","kind":"struct","module":"std.experimental.allocator.gc_allocator","name":"GCAllocator","package":"phobos","parentType":"","signature":"GCAllocator","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator.html#GCAllocator"},{"doc":"Standard allocator methods per the semantics defined above. The $(D deallocate) and `reallocate` methods are `@system` because they may move memory...","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"allocate","package":"phobos","parentType":"GCAllocator","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.allocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"expand","package":"phobos","parentType":"GCAllocator","signature":"bool expand(ref  void[]  b,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.expand.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"reallocate","package":"phobos","parentType":"GCAllocator","signature":"bool reallocate(ref  void[]  b,  size_t newSize)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.reallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"resolveInternalPointer","package":"phobos","parentType":"GCAllocator","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.resolveInternalPointer.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"deallocate","package":"phobos","parentType":"GCAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.deallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"goodAllocSize","package":"phobos","parentType":"GCAllocator","signature":"size_t goodAllocSize(size_t n)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.goodAllocSize.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"allocateZeroed","package":"phobos","parentType":"GCAllocator","signature":"void[] allocateZeroed()(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.allocateZeroed.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.gc_allocator","name":"collect","package":"phobos","parentType":"GCAllocator","signature":"void collect()","url":"/ddoc/phobos/std/experimental/allocator/gc_allocator/GCAllocator.collect.html"},{"doc":"The C heap allocator.","kind":"module","module":"std.experimental.allocator.mallocator","name":"std.experimental.allocator.mallocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/mallocator.html"},{"doc":"The C heap allocator.","kind":"struct","module":"std.experimental.allocator.mallocator","name":"Mallocator","package":"phobos","parentType":"","signature":"Mallocator","url":"/ddoc/phobos/std/experimental/allocator/mallocator.html#Mallocator"},{"doc":"Standard allocator methods per the semantics defined above. The `deallocate` and `reallocate` methods are `@system` because they may move memory ar...","kind":"method","module":"std.experimental.allocator.mallocator","name":"allocate","package":"phobos","parentType":"Mallocator","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/Mallocator.allocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.mallocator","name":"deallocate","package":"phobos","parentType":"Mallocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/Mallocator.deallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.mallocator","name":"reallocate","package":"phobos","parentType":"Mallocator","signature":"bool reallocate(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/Mallocator.reallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator.mallocator","name":"allocateZeroed","package":"phobos","parentType":"Mallocator","signature":"void[] allocateZeroed()(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/Mallocator.allocateZeroed.html"},{"doc":"Aligned allocator using OS-specific primitives, under a uniform API.","kind":"struct","module":"std.experimental.allocator.mallocator","name":"AlignedMallocator","package":"phobos","parentType":"","signature":"AlignedMallocator","url":"/ddoc/phobos/std/experimental/allocator/mallocator.html#AlignedMallocator"},{"doc":"Forwards to $(D alignedAllocate(bytes, platformAlignment)).","kind":"method","module":"std.experimental.allocator.mallocator","name":"allocate","package":"phobos","parentType":"AlignedMallocator","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/AlignedMallocator.allocate.html"},{"doc":"Forwards to $(D alignedReallocate(b, newSize, platformAlignment)). Should be used with blocks obtained with `allocate` otherwise the custom alignme...","kind":"method","module":"std.experimental.allocator.mallocator","name":"reallocate","package":"phobos","parentType":"AlignedMallocator","signature":"bool reallocate(ref  void[]  b,  size_t newSize)","url":"/ddoc/phobos/std/experimental/allocator/mallocator/AlignedMallocator.reallocate.html"},{"doc":"Source: $(PHOBOSSRC std/experimental/allocator/_mmap_allocator.d)","kind":"module","module":"std.experimental.allocator.mmap_allocator","name":"std.experimental.allocator.mmap_allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/mmap_allocator.html"},{"doc":"Allocator (currently defined only for Posix and Windows) using $(D $(LINK2 https://en.wikipedia.org/wiki/Mmap, mmap)) and $(D $(LUCKY munmap)) dire...","kind":"struct","module":"std.experimental.allocator.mmap_allocator","name":"MmapAllocator","package":"phobos","parentType":"","signature":"MmapAllocator","url":"/ddoc/phobos/std/experimental/allocator/mmap_allocator.html#MmapAllocator"},{"doc":"High-level interface for allocators. Implements bundled allocation/creation and destruction/deallocation of data including `struct`s and `class`es,...","kind":"module","module":"std.experimental.allocator","name":"std.experimental.allocator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator.html"},{"doc":"","kind":"function","module":"std.experimental.allocator","name":"setupThreadAllocator","package":"phobos","parentType":"","signature":"RCIAllocator setupThreadAllocator()","url":"/ddoc/phobos/std/experimental/allocator/setupThreadAllocator.html"},{"doc":"Gets/sets the allocator for the current thread. This is the default allocator that should be used for allocating thread-local memory. For allocatin...","kind":"function","module":"std.experimental.allocator","name":"theAllocator","package":"phobos","parentType":"","signature":"RCIAllocator theAllocator()","url":"/ddoc/phobos/std/experimental/allocator/theAllocator.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"theAllocator","package":"phobos","parentType":"","signature":"void theAllocator(RCIAllocator a)","url":"/ddoc/phobos/std/experimental/allocator/theAllocator.html"},{"doc":"Gets/sets the allocator for the current process. This allocator must be used for allocating memory shared across threads. Objects created using thi...","kind":"function","module":"std.experimental.allocator","name":"processAllocator","package":"phobos","parentType":"","signature":"RCISharedAllocator processAllocator()","url":"/ddoc/phobos/std/experimental/allocator/processAllocator.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"processAllocator","package":"phobos","parentType":"","signature":"void processAllocator(ref  RCISharedAllocator a)","url":"/ddoc/phobos/std/experimental/allocator/processAllocator.html"},{"doc":"Dynamically allocates (using `alloc`) and then creates in the memory allocated an object of type `T`, using `args` (if any) for its initialization....","kind":"function","module":"std.experimental.allocator","name":"make","package":"phobos","parentType":"","signature":"auto make(T,  Allocator,  A...)(auto  ref  Allocator alloc,  auto  ref  A args)","url":"/ddoc/phobos/std/experimental/allocator/make.html"},{"doc":"","kind":"function","module":"std.experimental.allocator","name":"fillWithMemcpy","package":"phobos","parentType":"","signature":"void fillWithMemcpy(T)(scope  void[]  array,  auto  ref  T filler) if (T.sizeof ==  1)","url":"/ddoc/phobos/std/experimental/allocator/fillWithMemcpy.html"},{"doc":"","kind":"function","module":"std.experimental.allocator","name":"fillWithMemcpy","package":"phobos","parentType":"","signature":"void fillWithMemcpy(T)(scope  void[]  array,  auto  ref  T filler) if (T.sizeof !=  1)","url":"/ddoc/phobos/std/experimental/allocator/fillWithMemcpy.html"},{"doc":"","kind":"function","module":"std.experimental.allocator","name":"uninitializedFillDefault","package":"phobos","parentType":"","signature":"T[] uninitializedFillDefault(T)(T[]  array)","url":"/ddoc/phobos/std/experimental/allocator/uninitializedFillDefault.html"},{"doc":"Create an array of `T` with `length` elements using `alloc`. The array is either default-initialized, filled with copies of `init`, or initialized ...","kind":"function","module":"std.experimental.allocator","name":"makeArray","package":"phobos","parentType":"","signature":"T[] makeArray(T,  Allocator)(auto  ref  Allocator alloc,  size_t length)","url":"/ddoc/phobos/std/experimental/allocator/makeArray.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"makeArray","package":"phobos","parentType":"","signature":"T[] makeArray(T,  Allocator)(auto  ref  Allocator alloc,  size_t length,  T init)","url":"/ddoc/phobos/std/experimental/allocator/makeArray.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"makeArray","package":"phobos","parentType":"","signature":"Unqual!(ElementEncodingType!R)[] makeArray(Allocator,  R)(auto  ref  Allocator alloc,  R range) if (isInputRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/experimental/allocator/makeArray.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"makeArray","package":"phobos","parentType":"","signature":"T[] makeArray(T,  Allocator,  R)(auto  ref  Allocator alloc,  R range) if (isInputRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/experimental/allocator/makeArray.html"},{"doc":"Grows `array` by appending `delta` more elements. The needed memory is allocated using `alloc`. The extra elements added are either default- initia...","kind":"function","module":"std.experimental.allocator","name":"expandArray","package":"phobos","parentType":"","signature":"bool expandArray(T,  Allocator)(auto  ref  Allocator alloc,  ref  T[]  array,\n         size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/expandArray.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"expandArray","package":"phobos","parentType":"","signature":"bool expandArray(T,  Allocator)(auto  ref  Allocator alloc,  ref  T[]  array,\n     size_t delta,  auto  ref  T init)","url":"/ddoc/phobos/std/experimental/allocator/expandArray.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"expandArray","package":"phobos","parentType":"","signature":"bool expandArray(T,  Allocator,  R)(auto  ref  Allocator alloc,  ref  T[]  array,\n         R range) if (isInputRange!R)","url":"/ddoc/phobos/std/experimental/allocator/expandArray.html"},{"doc":"Shrinks an array by `delta` elements.","kind":"function","module":"std.experimental.allocator","name":"shrinkArray","package":"phobos","parentType":"","signature":"bool shrinkArray(T,  Allocator)(auto  ref  Allocator alloc,\n         ref  T[]  array,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/shrinkArray.html"},{"doc":"Destroys and then deallocates (using `alloc`) the object pointed to by a pointer, the class object referred to by a `class` or `interface` referenc...","kind":"function","module":"std.experimental.allocator","name":"dispose","package":"phobos","parentType":"","signature":"void dispose(A,  T)(auto  ref  A alloc,  auto  ref  T *  p)","url":"/ddoc/phobos/std/experimental/allocator/dispose.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"dispose","package":"phobos","parentType":"","signature":"void dispose(A,  T)(auto  ref  A alloc,  auto  ref  T p) if (is(T ==  class)  ||  is(T ==  interface))","url":"/ddoc/phobos/std/experimental/allocator/dispose.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"dispose","package":"phobos","parentType":"","signature":"void dispose(A,  T)(auto  ref  A alloc,  auto  ref  T[]  array)","url":"/ddoc/phobos/std/experimental/allocator/dispose.html"},{"doc":"Allocates a multidimensional array of elements of type T.","kind":"function","module":"std.experimental.allocator","name":"makeMultidimensionalArray","package":"phobos","parentType":"","signature":"auto makeMultidimensionalArray(T,  Allocator,  size_t N)(auto  ref  Allocator alloc,  size_t[N]  lengths...)","url":"/ddoc/phobos/std/experimental/allocator/makeMultidimensionalArray.html"},{"doc":"Destroys and then deallocates a multidimensional array, assuming it was created with makeMultidimensionalArray and the same allocator was used.","kind":"function","module":"std.experimental.allocator","name":"disposeMultidimensionalArray","package":"phobos","parentType":"","signature":"void disposeMultidimensionalArray(T,  Allocator)(auto  ref  Allocator alloc,  auto  ref  T[]  array)","url":"/ddoc/phobos/std/experimental/allocator/disposeMultidimensionalArray.html"},{"doc":"Returns a dynamically-typed `CAllocator` built around a given statically- typed allocator `a` of type `A`. Passing a pointer to the allocator creat...","kind":"function","module":"std.experimental.allocator","name":"allocatorObject","package":"phobos","parentType":"","signature":"RCIAllocator allocatorObject(A)(auto  ref  A a) if (!isPointer!A)","url":"/ddoc/phobos/std/experimental/allocator/allocatorObject.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"allocatorObject","package":"phobos","parentType":"","signature":"RCIAllocator allocatorObject(A)(A *  pa)","url":"/ddoc/phobos/std/experimental/allocator/allocatorObject.html"},{"doc":"Returns a dynamically-typed `CSharedAllocator` built around a given statically- typed allocator `a` of type `A`. Passing a pointer to the allocator...","kind":"function","module":"std.experimental.allocator","name":"sharedAllocatorObject","package":"phobos","parentType":"","signature":"RCISharedAllocator sharedAllocatorObject(A)(auto  ref  A a) if (!isPointer!A)","url":"/ddoc/phobos/std/experimental/allocator/sharedAllocatorObject.html"},{"doc":"Ditto","kind":"function","module":"std.experimental.allocator","name":"sharedAllocatorObject","package":"phobos","parentType":"","signature":"RCISharedAllocator sharedAllocatorObject(A)(A *  pa)","url":"/ddoc/phobos/std/experimental/allocator/sharedAllocatorObject.html"},{"doc":"Dynamic allocator interface. Code that defines allocators ultimately implements this interface. This should be used wherever a uniform type is requ...","kind":"interface","module":"std.experimental.allocator","name":"IAllocator","package":"phobos","parentType":"","signature":"IAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#IAllocator"},{"doc":"Returns the alignment offered.","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"IAllocator","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.alignment.html"},{"doc":"Returns the good allocation size that guarantees zero internal fragmentation.","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"IAllocator","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory.","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"IAllocator","signature":"void[] allocate(size_t,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.allocate.html"},{"doc":"Allocates `n` bytes of memory with specified alignment `a`. Implementations that do not support this primitive should always return `null`.","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"IAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.alignedAllocate.html"},{"doc":"Allocates and returns all memory available to this allocator. Implementations that do not support this primitive should always return `null`.","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"IAllocator","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.allocateAll.html"},{"doc":"Expands a memory block in place and returns `true` if successful. Implementations that don't support this primitive should always return `false`.","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"IAllocator","signature":"bool expand(ref  void[],  size_t)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.expand.html"},{"doc":"Reallocates a memory block.","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"IAllocator","signature":"bool reallocate(ref  void[],  size_t)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.reallocate.html"},{"doc":"Reallocates a memory block with specified alignment.","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"IAllocator","signature":"bool alignedReallocate(ref  void[]  b,  size_t size,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.alignedReallocate.html"},{"doc":"Returns `Ternary.yes` if the allocator owns `b`, `Ternary.no` if the allocator doesn't own `b`, and `Ternary.unknown` if ownership cannot be determ...","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"IAllocator","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.owns.html"},{"doc":"Resolves an internal pointer to the full block allocated. Implementations that don't support this primitive should always return `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"IAllocator","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.resolveInternalPointer.html"},{"doc":"Deallocates a memory block. Implementations that don't support this primitive should always return `false`. A simple way to check that an allocator...","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"IAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.deallocate.html"},{"doc":"Deallocates all memory. Implementations that don't support this primitive should always return `false`.","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"IAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.deallocateAll.html"},{"doc":"Returns `Ternary.yes` if no memory is currently allocated from this allocator, `Ternary.no` if some allocations are currently active, or `Ternary.u...","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"IAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.empty.html"},{"doc":"Increases the reference count of the concrete class that implements this interface.","kind":"method","module":"std.experimental.allocator","name":"incRef","package":"phobos","parentType":"IAllocator","signature":"void incRef()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.incRef.html"},{"doc":"Decreases the reference count of the concrete class that implements this interface. When the reference count is `0`, the object self-destructs.","kind":"method","module":"std.experimental.allocator","name":"decRef","package":"phobos","parentType":"IAllocator","signature":"bool decRef()","url":"/ddoc/phobos/std/experimental/allocator/IAllocator.decRef.html"},{"doc":"A reference counted struct that wraps the dynamic allocator interface. This should be used wherever a uniform type is required for encapsulating va...","kind":"struct","module":"std.experimental.allocator","name":"RCIAllocator","package":"phobos","parentType":"","signature":"RCIAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#RCIAllocator"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"opAssign","package":"phobos","parentType":"RCIAllocator","signature":"@nogc pure @safe auto ref opAssign()(typeof(this)  rhs)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.opAssign.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"isNull","package":"phobos","parentType":"RCIAllocator","signature":"bool isNull(this  _)()","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.isNull.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"RCIAllocator","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.alignment.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"RCIAllocator","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.goodAllocSize.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"RCIAllocator","signature":"void[] allocate(size_t n,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.allocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"RCIAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.alignedAllocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"RCIAllocator","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.allocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"RCIAllocator","signature":"bool expand(ref  void[]  b,  size_t size)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.expand.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"RCIAllocator","signature":"bool reallocate(ref  void[]  b,  size_t size)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.reallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"RCIAllocator","signature":"bool alignedReallocate(ref  void[]  b,  size_t size,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.alignedReallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"RCIAllocator","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.owns.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"RCIAllocator","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.resolveInternalPointer.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"RCIAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.deallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"RCIAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.deallocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"RCIAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/RCIAllocator.empty.html"},{"doc":"Dynamic shared allocator interface. Code that defines allocators shareable across threads ultimately implements this interface. This should be used...","kind":"interface","module":"std.experimental.allocator","name":"ISharedAllocator","package":"phobos","parentType":"","signature":"ISharedAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#ISharedAllocator"},{"doc":"Returns the alignment offered.","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"ISharedAllocator","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.alignment.html"},{"doc":"Returns the good allocation size that guarantees zero internal fragmentation.","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"ISharedAllocator","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.goodAllocSize.html"},{"doc":"Allocates `n` bytes of memory.","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"ISharedAllocator","signature":"void[] allocate(size_t,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.allocate.html"},{"doc":"Allocates `n` bytes of memory with specified alignment `a`. Implementations that do not support this primitive should always return `null`.","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"ISharedAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.alignedAllocate.html"},{"doc":"Allocates and returns all memory available to this allocator. Implementations that do not support this primitive should always return `null`.","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"ISharedAllocator","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.allocateAll.html"},{"doc":"Expands a memory block in place and returns `true` if successful. Implementations that don't support this primitive should always return `false`.","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"ISharedAllocator","signature":"bool expand(ref  void[],  size_t)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.expand.html"},{"doc":"Reallocates a memory block.","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"ISharedAllocator","signature":"bool reallocate(ref  void[],  size_t)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.reallocate.html"},{"doc":"Reallocates a memory block with specified alignment.","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"ISharedAllocator","signature":"bool alignedReallocate(ref  void[]  b,  size_t size,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.alignedReallocate.html"},{"doc":"Returns `Ternary.yes` if the allocator owns `b`, `Ternary.no` if the allocator doesn't own `b`, and `Ternary.unknown` if ownership cannot be determ...","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"ISharedAllocator","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.owns.html"},{"doc":"Resolves an internal pointer to the full block allocated. Implementations that don't support this primitive should always return `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"ISharedAllocator","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.resolveInternalPointer.html"},{"doc":"Deallocates a memory block. Implementations that don't support this primitive should always return `false`. A simple way to check that an allocator...","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"ISharedAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.deallocate.html"},{"doc":"Deallocates all memory. Implementations that don't support this primitive should always return `false`.","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"ISharedAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.deallocateAll.html"},{"doc":"Returns `Ternary.yes` if no memory is currently allocated from this allocator, `Ternary.no` if some allocations are currently active, or `Ternary.u...","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"ISharedAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.empty.html"},{"doc":"Increases the reference count of the concrete class that implements this interface.","kind":"method","module":"std.experimental.allocator","name":"incRef","package":"phobos","parentType":"ISharedAllocator","signature":"void incRef()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.incRef.html"},{"doc":"Decreases the reference count of the concrete class that implements this interface. When the reference count is `0`, the object self-destructs.","kind":"method","module":"std.experimental.allocator","name":"decRef","package":"phobos","parentType":"ISharedAllocator","signature":"bool decRef()","url":"/ddoc/phobos/std/experimental/allocator/ISharedAllocator.decRef.html"},{"doc":"A reference counted struct that wraps the dynamic shared allocator interface. This should be used wherever a uniform type is required for encapsula...","kind":"struct","module":"std.experimental.allocator","name":"RCISharedAllocator","package":"phobos","parentType":"","signature":"RCISharedAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#RCISharedAllocator"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"opAssign","package":"phobos","parentType":"RCISharedAllocator","signature":"@nogc pure @safe auto ref opAssign()(RCISharedAllocator rhs)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.opAssign.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"isNull","package":"phobos","parentType":"RCISharedAllocator","signature":"bool isNull(this  _)()","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.isNull.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"RCISharedAllocator","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.alignment.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"RCISharedAllocator","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.goodAllocSize.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"RCISharedAllocator","signature":"void[] allocate(size_t n,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.allocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"RCISharedAllocator","signature":"void[] alignedAllocate(size_t n,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.alignedAllocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"RCISharedAllocator","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.allocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"RCISharedAllocator","signature":"bool expand(ref  void[]  b,  size_t size)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.expand.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"RCISharedAllocator","signature":"bool reallocate(ref  void[]  b,  size_t size)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.reallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"RCISharedAllocator","signature":"bool alignedReallocate(ref  void[]  b,  size_t size,  uint  alignment)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.alignedReallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"RCISharedAllocator","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.owns.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"RCISharedAllocator","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.resolveInternalPointer.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"RCISharedAllocator","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.deallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"RCISharedAllocator","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.deallocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"RCISharedAllocator","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/RCISharedAllocator.empty.html"},{"doc":"Implementation of `IAllocator` using `Allocator`. This adapts a statically-built allocator type to `IAllocator` that is directly usable by non-temp...","kind":"class","module":"std.experimental.allocator","name":"CAllocatorImpl","package":"phobos","parentType":"","signature":"CAllocatorImpl(Allocator,  Flag!\"indirect\" indirect =  No.indirect) : IAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#CAllocatorImpl"},{"doc":"Returns `impl.alignment`.","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"CAllocatorImpl","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.alignment.html"},{"doc":"Returns `impl.goodAllocSize(s)`.","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"CAllocatorImpl","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.goodAllocSize.html"},{"doc":"Returns `impl.allocate(s)`.","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"CAllocatorImpl","signature":"void[] allocate(size_t s,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.allocate.html"},{"doc":"If `impl.alignedAllocate` exists, calls it and returns the result. Otherwise, always returns `null`.","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"CAllocatorImpl","signature":"void[] alignedAllocate(size_t s,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.alignedAllocate.html"},{"doc":"If `Allocator` implements `owns`, forwards to it. Otherwise, returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"CAllocatorImpl","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.owns.html"},{"doc":"Returns $(D impl.expand(b, s)) if defined, `false` otherwise.","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"CAllocatorImpl","signature":"bool expand(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.expand.html"},{"doc":"Returns $(D impl.reallocate(b, s)).","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"CAllocatorImpl","signature":"bool reallocate(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.reallocate.html"},{"doc":"Forwards to `impl.alignedReallocate` if defined, `false` otherwise.","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"CAllocatorImpl","signature":"bool alignedReallocate(ref  void[]  b,  size_t s,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.alignedReallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"CAllocatorImpl","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.resolveInternalPointer.html"},{"doc":"If `impl.deallocate` is not defined, returns `false`. Otherwise it forwards the call.","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"CAllocatorImpl","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.deallocate.html"},{"doc":"Calls `impl.deallocateAll()` and returns the result if defined, otherwise returns `false`.","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"CAllocatorImpl","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.deallocateAll.html"},{"doc":"Forwards to `impl.empty()` if defined, otherwise returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"CAllocatorImpl","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.empty.html"},{"doc":"Returns `impl.allocateAll()` if present, `null` otherwise.","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"CAllocatorImpl","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.allocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"incRef","package":"phobos","parentType":"CAllocatorImpl","signature":"void incRef()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.incRef.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"decRef","package":"phobos","parentType":"CAllocatorImpl","signature":"bool decRef()","url":"/ddoc/phobos/std/experimental/allocator/CAllocatorImpl.decRef.html"},{"doc":"Implementation of `ISharedAllocator` using `Allocator`. This adapts a statically-built, shareable across threads, allocator type to `ISharedAllocat...","kind":"class","module":"std.experimental.allocator","name":"CSharedAllocatorImpl","package":"phobos","parentType":"","signature":"CSharedAllocatorImpl(Allocator,  Flag!\"indirect\" indirect =  No.indirect) : ISharedAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#CSharedAllocatorImpl"},{"doc":"Returns `impl.alignment`.","kind":"method","module":"std.experimental.allocator","name":"alignment","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"uint alignment()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.alignment.html"},{"doc":"Returns `impl.goodAllocSize(s)`.","kind":"method","module":"std.experimental.allocator","name":"goodAllocSize","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"size_t goodAllocSize(size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.goodAllocSize.html"},{"doc":"Returns `impl.allocate(s)`.","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"void[] allocate(size_t s,  TypeInfo ti =  null)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.allocate.html"},{"doc":"If `impl.alignedAllocate` exists, calls it and returns the result. Otherwise, always returns `null`.","kind":"method","module":"std.experimental.allocator","name":"alignedAllocate","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"void[] alignedAllocate(size_t s,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.alignedAllocate.html"},{"doc":"If `Allocator` implements `owns`, forwards to it. Otherwise, returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.owns.html"},{"doc":"Returns $(D impl.expand(b, s)) if defined, `false` otherwise.","kind":"method","module":"std.experimental.allocator","name":"expand","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool expand(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.expand.html"},{"doc":"Returns $(D impl.reallocate(b, s)).","kind":"method","module":"std.experimental.allocator","name":"reallocate","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool reallocate(ref  void[]  b,  size_t s)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.reallocate.html"},{"doc":"Forwards to `impl.alignedReallocate` if defined, `false` otherwise.","kind":"method","module":"std.experimental.allocator","name":"alignedReallocate","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool alignedReallocate(ref  void[]  b,  size_t s,  uint  a)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.alignedReallocate.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.resolveInternalPointer.html"},{"doc":"If `impl.deallocate` is not defined, returns `false`. Otherwise it forwards the call.","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.deallocate.html"},{"doc":"Calls `impl.deallocateAll()` and returns the result if defined, otherwise returns `false`.","kind":"method","module":"std.experimental.allocator","name":"deallocateAll","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool deallocateAll()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.deallocateAll.html"},{"doc":"Forwards to `impl.empty()` if defined, otherwise returns `Ternary.unknown`.","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.empty.html"},{"doc":"Returns `impl.allocateAll()` if present, `null` otherwise.","kind":"method","module":"std.experimental.allocator","name":"allocateAll","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"void[] allocateAll()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.allocateAll.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"incRef","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"void incRef()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.incRef.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"decRef","package":"phobos","parentType":"CSharedAllocatorImpl","signature":"bool decRef()","url":"/ddoc/phobos/std/experimental/allocator/CSharedAllocatorImpl.decRef.html"},{"doc":"Stores an allocator object in thread-local storage (i.e. non-`shared` D global). `ThreadLocal!A` is a subtype of `A` so it appears to implement `A`...","kind":"struct","module":"std.experimental.allocator","name":"ThreadLocal","package":"phobos","parentType":"","signature":"ThreadLocal(A)","url":"/ddoc/phobos/std/experimental/allocator.html#ThreadLocal"},{"doc":"","kind":"struct","module":"std.experimental.allocator","name":"EmbeddedTree","package":"phobos","parentType":"","signature":"EmbeddedTree(T,  alias  less)","url":"/ddoc/phobos/std/experimental/allocator.html#EmbeddedTree"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"insert","package":"phobos","parentType":"EmbeddedTree","signature":"Node * insert(Node *  n,  ref  Node *  backref)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.insert.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"find","package":"phobos","parentType":"EmbeddedTree","signature":"Node * find(Node *  data)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.find.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"insert","package":"phobos","parentType":"EmbeddedTree","signature":"Node * insert(Node *  data)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.insert.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"remove","package":"phobos","parentType":"EmbeddedTree","signature":"Node * remove(Node *  data)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.remove.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"remove","package":"phobos","parentType":"EmbeddedTree","signature":"void remove(Node *  n,  Node *  parent)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.remove.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"EmbeddedTree","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.empty.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"dump","package":"phobos","parentType":"EmbeddedTree","signature":"void dump()","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.dump.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"dump","package":"phobos","parentType":"EmbeddedTree","signature":"void dump(Node *  r,  uint  indent)","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.dump.html"},{"doc":"","kind":"method","module":"std.experimental.allocator","name":"assertSane","package":"phobos","parentType":"EmbeddedTree","signature":"void assertSane()","url":"/ddoc/phobos/std/experimental/allocator/EmbeddedTree.assertSane.html"},{"doc":"","kind":"struct","module":"std.experimental.allocator","name":"InternalPointersTree","package":"phobos","parentType":"","signature":"InternalPointersTree(Allocator)","url":"/ddoc/phobos/std/experimental/allocator.html#InternalPointersTree"},{"doc":"Allocator API.","kind":"method","module":"std.experimental.allocator","name":"allocate","package":"phobos","parentType":"InternalPointersTree","signature":"void[] allocate(size_t bytes)","url":"/ddoc/phobos/std/experimental/allocator/InternalPointersTree.allocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator","name":"deallocate","package":"phobos","parentType":"InternalPointersTree","signature":"bool deallocate(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/InternalPointersTree.deallocate.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator","name":"owns","package":"phobos","parentType":"InternalPointersTree","signature":"Ternary owns(void[]  b)","url":"/ddoc/phobos/std/experimental/allocator/InternalPointersTree.owns.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator","name":"empty","package":"phobos","parentType":"InternalPointersTree","signature":"Ternary empty()","url":"/ddoc/phobos/std/experimental/allocator/InternalPointersTree.empty.html"},{"doc":"Returns the block inside which `p` resides, or `null` if the pointer does not belong.","kind":"method","module":"std.experimental.allocator","name":"resolveInternalPointer","package":"phobos","parentType":"InternalPointersTree","signature":"Ternary resolveInternalPointer(const  void *  p,  ref  void[]  result)","url":"/ddoc/phobos/std/experimental/allocator/InternalPointersTree.resolveInternalPointer.html"},{"doc":"","kind":"variable","module":"std.experimental.allocator","name":"_processAllocator","package":"phobos","parentType":"","signature":"RCISharedAllocator _processAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#_processAllocator"},{"doc":"","kind":"variable","module":"std.experimental.allocator","name":"_threadAllocator","package":"phobos","parentType":"","signature":"RCIAllocator _threadAllocator","url":"/ddoc/phobos/std/experimental/allocator.html#_threadAllocator"},{"doc":"Collection of typical and useful prebuilt allocators using the given components. User code would typically import this module and use its facilitie...","kind":"module","module":"std.experimental.allocator.showcase","name":"std.experimental.allocator.showcase","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/showcase.html"},{"doc":"Creates a scalable `AllocatorList` of `Regions`, each having at least `bytesPerRegion` bytes. Allocation is very fast. This allocator does not offe...","kind":"function","module":"std.experimental.allocator.showcase","name":"mmapRegionList","package":"phobos","parentType":"","signature":"auto mmapRegionList(size_t bytesPerRegion)","url":"/ddoc/phobos/std/experimental/allocator/showcase/mmapRegionList.html"},{"doc":"Allocator that uses stack allocation for up to `stackSize` bytes and then falls back to `Allocator`. Defined as:","kind":"alias","module":"std.experimental.allocator.showcase","name":"StackFront","package":"phobos","parentType":"","signature":"StackFront(size_t stackSize,  Allocator =  GCAllocator) = FallbackAllocator!(\n         InSituRegion!(stackSize,  Allocator.alignment),\n         Allocator)","url":"/ddoc/phobos/std/experimental/allocator/showcase.html#StackFront"},{"doc":"This module defines `TypedAllocator`, a statically-typed allocator that aggregates multiple untyped allocators and uses them depending on the stati...","kind":"module","module":"std.experimental.allocator.typed","name":"std.experimental.allocator.typed","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/allocator/typed.html"},{"doc":"Allocation-related flags dictated by type characteristics. `TypedAllocator` deduces these flags from the type being allocated and uses the appropri...","kind":"enum","module":"std.experimental.allocator.typed","name":"AllocFlag","package":"phobos","parentType":"","signature":"AllocFlag : uint","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"","kind":"enum_member","module":"std.experimental.allocator.typed","name":"_init","package":"phobos","parentType":"","signature":"_init = 0","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"Fixed-size allocation (unlikely to get reallocated later). Examples: `int`, `double`, any `struct` or `class` type. By default it is assumed that t...","kind":"enum_member","module":"std.experimental.allocator.typed","name":"fixedSize","package":"phobos","parentType":"","signature":"fixedSize = 1","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"The type being allocated embeds no pointers. Examples: `int`, `int[]`, $(D Tuple!(int, float)). The implicit conservative assumption is that the ty...","kind":"enum_member","module":"std.experimental.allocator.typed","name":"hasNoIndirections","package":"phobos","parentType":"","signature":"hasNoIndirections = 4","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"By default it is conservatively assumed that allocated memory may be `cast` to `shared`, passed across threads, and deallocated in a different thre...","kind":"enum_member","module":"std.experimental.allocator.typed","name":"immutableShared","package":"phobos","parentType":"","signature":"immutableShared = 8","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"ditto","kind":"enum_member","module":"std.experimental.allocator.typed","name":"threadLocal","package":"phobos","parentType":"","signature":"threadLocal = 16","url":"/ddoc/phobos/std/experimental/allocator/typed.html#AllocFlag"},{"doc":"`TypedAllocator` acts like a chassis on which several specialized allocators can be assembled. To let the system make a choice about a particular k...","kind":"struct","module":"std.experimental.allocator.typed","name":"TypedAllocator","package":"phobos","parentType":"","signature":"TypedAllocator(PrimaryAllocator,  Policies...)","url":"/ddoc/phobos/std/experimental/allocator/typed.html#TypedAllocator"},{"doc":"","kind":"method","module":"std.experimental.allocator.typed","name":"match","package":"phobos","parentType":"TypedAllocator","signature":"bool match(uint  have,  uint  want)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.match.html"},{"doc":"Given `flags` as a combination of `AllocFlag` values, or a type `T`, returns the allocator that's a closest fit in capabilities.","kind":"method","module":"std.experimental.allocator.typed","name":"allocatorFor","package":"phobos","parentType":"TypedAllocator","signature":"auto ref allocatorFor(uint  flags)()","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.allocatorFor.html"},{"doc":"ditto","kind":"method","module":"std.experimental.allocator.typed","name":"allocatorFor","package":"phobos","parentType":"TypedAllocator","signature":"auto ref allocatorFor(T)()","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.allocatorFor.html"},{"doc":"Given a type `T`, returns its allocation-related flags as a combination of `AllocFlag` values.","kind":"method","module":"std.experimental.allocator.typed","name":"type2flags","package":"phobos","parentType":"TypedAllocator","signature":"uint type2flags(T)()","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.type2flags.html"},{"doc":"Dynamically allocates (using the appropriate allocator chosen with `allocatorFor!T`) and then creates in the memory allocated an object of type `T`...","kind":"method","module":"std.experimental.allocator.typed","name":"make","package":"phobos","parentType":"TypedAllocator","signature":"auto make(T,  A...)(auto  ref  A args)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.make.html"},{"doc":"Create an array of `T` with `length` elements. The array is either default-initialized, filled with copies of `init`, or initialized with values fe...","kind":"method","module":"std.experimental.allocator.typed","name":"makeArray","package":"phobos","parentType":"TypedAllocator","signature":"T[] makeArray(T)(size_t length)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.makeArray.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"makeArray","package":"phobos","parentType":"TypedAllocator","signature":"T[] makeArray(T)(size_t length,  auto  ref  T init)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.makeArray.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"makeArray","package":"phobos","parentType":"TypedAllocator","signature":"T[] makeArray(T,  R)(R range) if (isInputRange!R)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.makeArray.html"},{"doc":"Grows `array` by appending `delta` more elements. The needed memory is allocated using the same allocator that was used for the array type. The ext...","kind":"method","module":"std.experimental.allocator.typed","name":"expandArray","package":"phobos","parentType":"TypedAllocator","signature":"bool expandArray(T)(ref  T[]  array,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.expandArray.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"expandArray","package":"phobos","parentType":"TypedAllocator","signature":"bool expandArray(T)(T[]  array,  size_t delta,  auto  ref  T init)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.expandArray.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"expandArray","package":"phobos","parentType":"TypedAllocator","signature":"bool expandArray(T,  R)(ref  T[]  array,  R range) if (isInputRange!R)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.expandArray.html"},{"doc":"Shrinks an array by `delta` elements using `allocatorFor!(T[])`.","kind":"method","module":"std.experimental.allocator.typed","name":"shrinkArray","package":"phobos","parentType":"TypedAllocator","signature":"bool shrinkArray(T)(ref  T[]  arr,  size_t delta)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.shrinkArray.html"},{"doc":"Destroys and then deallocates (using `allocatorFor!T`) the object pointed to by a pointer, the class object referred to by a `class` or `interface`...","kind":"method","module":"std.experimental.allocator.typed","name":"dispose","package":"phobos","parentType":"TypedAllocator","signature":"void dispose(T)(T *  p)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.dispose.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"dispose","package":"phobos","parentType":"TypedAllocator","signature":"void dispose(T)(T p) if (is(T ==  class)  ||  is(T ==  interface))","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.dispose.html"},{"doc":"Ditto","kind":"method","module":"std.experimental.allocator.typed","name":"dispose","package":"phobos","parentType":"TypedAllocator","signature":"void dispose(T)(T[]  array)","url":"/ddoc/phobos/std/experimental/allocator/typed/TypedAllocator.dispose.html"},{"doc":"","kind":"module","module":"std.experimental.checkedint","name":"std.experimental.checkedint","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/checkedint.html"},{"doc":"This module is now deprecated, use $(MREF std, logger, core) instead.","kind":"module","module":"std.experimental.logger.core","name":"std.experimental.logger.core","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/logger/core.html"},{"doc":"This module is now deprecated, use $(MREF std, logger, filelogger) instead.","kind":"module","module":"std.experimental.logger.filelogger","name":"std.experimental.logger.filelogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/logger/filelogger.html"},{"doc":"This module is now deprecated, use $(MREF std, logger, multilogger) instead.","kind":"module","module":"std.experimental.logger.multilogger","name":"std.experimental.logger.multilogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/logger/multilogger.html"},{"doc":"This module is now deprecated, use $(MREF std, logger, nulllogger) instead.","kind":"module","module":"std.experimental.logger.nulllogger","name":"std.experimental.logger.nulllogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/logger/nulllogger.html"},{"doc":"This module is now deprecated, use $(MREF std, logger) instead.","kind":"module","module":"std.experimental.logger","name":"std.experimental.logger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/experimental/logger.html"},{"doc":"Utilities for manipulating files and scanning directories. Functions in this module handle files as a unit, e.g., read or write one file at a time....","kind":"module","module":"std.file","name":"std.file","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/file.html"},{"doc":"","kind":"function","module":"std.file","name":"deleteme","package":"phobos","parentType":"","signature":"string deleteme()","url":"/ddoc/phobos/std/file/deleteme.html"},{"doc":"","kind":"function","module":"std.file","name":"cenforce","package":"phobos","parentType":"","signature":"T cenforce(T)(T condition,  lazy  scope  const(char)[]  name,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/file/cenforce.html"},{"doc":"Read entire contents of file `name` and returns it as an untyped array. If the file size is larger than `upTo`, only `upTo` bytes are _read.","kind":"function","module":"std.file","name":"read","package":"phobos","parentType":"","signature":"void[] read(R)(R name,  size_t upTo =  size_t.max) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/read.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"read","package":"phobos","parentType":"","signature":"void[] read(R)(auto  ref  R name,  size_t upTo =  size_t.max) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/read.html"},{"doc":"Reads and validates (using $(REF validate, std, utf)) a text file. S can be an array of any character type. However, no width or endian conversions...","kind":"function","module":"std.file","name":"readText","package":"phobos","parentType":"","signature":"S readText(S =  string,  R)(auto  ref  R name) if (isSomeString!S && (isSomeFiniteCharInputRange!R ||  is(StringTypeOf!R)))","url":"/ddoc/phobos/std/file/readText.html"},{"doc":"Write `buffer` to file `name`.","kind":"function","module":"std.file","name":"write","package":"phobos","parentType":"","signature":"void write(R)(R name,  const  void[]  buffer) if ((isSomeFiniteCharInputRange!R ||  isSomeString!R)  && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/write.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"write","package":"phobos","parentType":"","signature":"void write(R)(auto  ref  R name,  const  void[]  buffer) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/write.html"},{"doc":"Appends `buffer` to file `name`.","kind":"function","module":"std.file","name":"append","package":"phobos","parentType":"","signature":"void append(R)(R name,  const  void[]  buffer) if ((isSomeFiniteCharInputRange!R ||  isSomeString!R)  && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/append.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"append","package":"phobos","parentType":"","signature":"void append(R)(auto  ref  R name,  const  void[]  buffer) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/append.html"},{"doc":"Rename file `from` _to `to`, moving it between directories if required. If the target file exists, it is overwritten.","kind":"function","module":"std.file","name":"rename","package":"phobos","parentType":"","signature":"void rename(RF,  RT)(RF from,  RT to) if ((isSomeFiniteCharInputRange!RF ||  isSomeString!RF)  && !isConvertibleToString!RF &&\n    (isSomeFiniteCharInputRange!RT ||  isSomeString!RT)  && !isConvertibleToString!RT)","url":"/ddoc/phobos/std/file/rename.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"rename","package":"phobos","parentType":"","signature":"void rename(RF,  RT)(auto  ref  RF from,  auto  ref  RT to) if (isConvertibleToString!RF ||  isConvertibleToString!RT)","url":"/ddoc/phobos/std/file/rename.html"},{"doc":"","kind":"function","module":"std.file","name":"renameImpl","package":"phobos","parentType":"","signature":"void renameImpl(scope  const(char)[]  f,  scope  const(char)[]  t,\n                         scope  const(FSChar) *  fromz,  scope  const(FSChar) *  toz)","url":"/ddoc/phobos/std/file/renameImpl.html"},{"doc":"Delete file `name`.","kind":"function","module":"std.file","name":"remove","package":"phobos","parentType":"","signature":"void remove(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/remove.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"remove","package":"phobos","parentType":"","signature":"void remove(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/remove.html"},{"doc":"","kind":"function","module":"std.file","name":"removeImpl","package":"phobos","parentType":"","signature":"void removeImpl(scope  const(char)[]  name,  scope  const(FSChar) *  namez)","url":"/ddoc/phobos/std/file/removeImpl.html"},{"doc":"Get size of file `name` in bytes.","kind":"function","module":"std.file","name":"getSize","package":"phobos","parentType":"","signature":"ulong getSize(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getSize.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"getSize","package":"phobos","parentType":"","signature":"ulong getSize(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getSize.html"},{"doc":"Get the access and modified times of file or folder `name`.","kind":"function","module":"std.file","name":"getTimes","package":"phobos","parentType":"","signature":"void getTimes(R)(R name,\n               out  SysTime accessTime,\n               out  SysTime modificationTime) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getTimes.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"getTimes","package":"phobos","parentType":"","signature":"void getTimes(R)(auto  ref  R name,\n               out  SysTime accessTime,\n               out  SysTime modificationTime) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getTimes.html"},{"doc":"Set access/modified times of file or folder `name`.","kind":"function","module":"std.file","name":"setTimes","package":"phobos","parentType":"","signature":"void setTimes(R)(R name,\n               SysTime accessTime,\n               SysTime modificationTime) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/setTimes.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"setTimes","package":"phobos","parentType":"","signature":"void setTimes(R)(auto  ref  R name,\n               SysTime accessTime,\n               SysTime modificationTime) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/setTimes.html"},{"doc":"","kind":"function","module":"std.file","name":"setTimesImpl","package":"phobos","parentType":"","signature":"void setTimesImpl(scope  const(char)[]  names,  scope  const(FSChar) *  namez,\n     SysTime accessTime,  SysTime modificationTime)","url":"/ddoc/phobos/std/file/setTimesImpl.html"},{"doc":"Returns the time that the given file was last modified.","kind":"function","module":"std.file","name":"timeLastModified","package":"phobos","parentType":"","signature":"SysTime timeLastModified(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/timeLastModified.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"timeLastModified","package":"phobos","parentType":"","signature":"SysTime timeLastModified(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/timeLastModified.html"},{"doc":"Returns the time that the given file was last modified. If the file does not exist, returns `returnIfMissing`.","kind":"function","module":"std.file","name":"timeLastModified","package":"phobos","parentType":"","signature":"SysTime timeLastModified(R)(R name,  SysTime returnIfMissing) if (isSomeFiniteCharInputRange!R)","url":"/ddoc/phobos/std/file/timeLastModified.html"},{"doc":"Determine whether the given file (or directory) _exists. Params: name = string or range of characters representing the file _name Returns: true if ...","kind":"function","module":"std.file","name":"exists","package":"phobos","parentType":"","signature":"bool exists(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/exists.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"exists","package":"phobos","parentType":"","signature":"bool exists(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/exists.html"},{"doc":"","kind":"function","module":"std.file","name":"existsImpl","package":"phobos","parentType":"","signature":"bool existsImpl(scope  const(FSChar) *  namez)","url":"/ddoc/phobos/std/file/existsImpl.html"},{"doc":"Returns the attributes of the given file.","kind":"function","module":"std.file","name":"getAttributes","package":"phobos","parentType":"","signature":"uint getAttributes(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getAttributes.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"getAttributes","package":"phobos","parentType":"","signature":"uint getAttributes(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getAttributes.html"},{"doc":"If the given file is a symbolic link, then this returns the attributes of the symbolic link itself rather than file that it points to. If the given...","kind":"function","module":"std.file","name":"getLinkAttributes","package":"phobos","parentType":"","signature":"uint getLinkAttributes(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getLinkAttributes.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"getLinkAttributes","package":"phobos","parentType":"","signature":"uint getLinkAttributes(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/getLinkAttributes.html"},{"doc":"Set the _attributes of the given file.","kind":"function","module":"std.file","name":"setAttributes","package":"phobos","parentType":"","signature":"void setAttributes(R)(R name,  uint  attributes) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/setAttributes.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"setAttributes","package":"phobos","parentType":"","signature":"void setAttributes(R)(auto  ref  R name,  uint  attributes) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/setAttributes.html"},{"doc":"Returns whether the given file is a directory.","kind":"function","module":"std.file","name":"isDir","package":"phobos","parentType":"","signature":"bool isDir(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isDir.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"isDir","package":"phobos","parentType":"","signature":"bool isDir(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isDir.html"},{"doc":"Returns whether the given file _attributes are for a directory.","kind":"function","module":"std.file","name":"attrIsDir","package":"phobos","parentType":"","signature":"bool attrIsDir(uint  attributes)","url":"/ddoc/phobos/std/file/attrIsDir.html"},{"doc":"Returns whether the given file (or directory) is a file.","kind":"function","module":"std.file","name":"isFile","package":"phobos","parentType":"","signature":"bool isFile(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isFile.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"isFile","package":"phobos","parentType":"","signature":"bool isFile(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isFile.html"},{"doc":"Returns whether the given file _attributes are for a file.","kind":"function","module":"std.file","name":"attrIsFile","package":"phobos","parentType":"","signature":"bool attrIsFile(uint  attributes)","url":"/ddoc/phobos/std/file/attrIsFile.html"},{"doc":"Returns whether the given file is a symbolic link.","kind":"function","module":"std.file","name":"isSymlink","package":"phobos","parentType":"","signature":"bool isSymlink(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isSymlink.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"isSymlink","package":"phobos","parentType":"","signature":"bool isSymlink(R)(auto  ref  R name) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/isSymlink.html"},{"doc":"Returns whether the given file attributes are for a symbolic link.","kind":"function","module":"std.file","name":"attrIsSymlink","package":"phobos","parentType":"","signature":"bool attrIsSymlink(uint  attributes)","url":"/ddoc/phobos/std/file/attrIsSymlink.html"},{"doc":"Change directory to `pathname`. Equivalent to `cd` on Windows and POSIX.","kind":"function","module":"std.file","name":"chdir","package":"phobos","parentType":"","signature":"void chdir(R)(R pathname) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/chdir.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"chdir","package":"phobos","parentType":"","signature":"void chdir(R)(auto  ref  R pathname) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/chdir.html"},{"doc":"Make a new directory `pathname`.","kind":"function","module":"std.file","name":"mkdir","package":"phobos","parentType":"","signature":"void mkdir(R)(R pathname) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/mkdir.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"mkdir","package":"phobos","parentType":"","signature":"void mkdir(R)(auto  ref  R pathname) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/mkdir.html"},{"doc":"","kind":"function","module":"std.file","name":"ensureDirExists","package":"phobos","parentType":"","signature":"bool ensureDirExists()(scope  const(char)[]  pathname)","url":"/ddoc/phobos/std/file/ensureDirExists.html"},{"doc":"Make directory and all parent directories as needed.","kind":"function","module":"std.file","name":"mkdirRecurse","package":"phobos","parentType":"","signature":"void mkdirRecurse(scope  const(char)[]  pathname)","url":"/ddoc/phobos/std/file/mkdirRecurse.html"},{"doc":"Remove directory `pathname`.","kind":"function","module":"std.file","name":"rmdir","package":"phobos","parentType":"","signature":"void rmdir(R)(R pathname) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)","url":"/ddoc/phobos/std/file/rmdir.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"rmdir","package":"phobos","parentType":"","signature":"void rmdir(R)(auto  ref  R pathname) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/file/rmdir.html"},{"doc":"Returns the full path of the current executable.","kind":"function","module":"std.file","name":"thisExePath","package":"phobos","parentType":"","signature":"string thisExePath()","url":"/ddoc/phobos/std/file/thisExePath.html"},{"doc":"Copy file `from` _to file `to`. File timestamps are preserved. File attributes are preserved, if `preserve` equals `Yes.preserveAttributes`. On Win...","kind":"function","module":"std.file","name":"copy","package":"phobos","parentType":"","signature":"void copy(RF,  RT)(RF from,  RT to,  PreserveAttributes preserve =  preserveAttributesDefault) if (isSomeFiniteCharInputRange!RF && !isConvertibleToString!RF &&\n     isSomeFiniteCharInputRange!RT && !isConvertibleToString!RT)","url":"/ddoc/phobos/std/file/copy.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"copy","package":"phobos","parentType":"","signature":"void copy(RF,  RT)(auto  ref  RF from,  auto  ref  RT to,  PreserveAttributes preserve =  preserveAttributesDefault) if (isConvertibleToString!RF ||  isConvertibleToString!RT)","url":"/ddoc/phobos/std/file/copy.html"},{"doc":"","kind":"function","module":"std.file","name":"copyImpl","package":"phobos","parentType":"","signature":"void copyImpl(scope  const(char)[]  f,  scope  const(char)[]  t,\n                       scope  const(FSChar) *  fromz,  scope  const(FSChar) *  toz,\n                       PreserveAttributes preserve)","url":"/ddoc/phobos/std/file/copyImpl.html"},{"doc":"Remove directory and all of its content and subdirectories, recursively.","kind":"function","module":"std.file","name":"rmdirRecurse","package":"phobos","parentType":"","signature":"void rmdirRecurse(scope  const(char)[]  pathname)","url":"/ddoc/phobos/std/file/rmdirRecurse.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"rmdirRecurse","package":"phobos","parentType":"","signature":"void rmdirRecurse(ref  scope  DirEntry de)","url":"/ddoc/phobos/std/file/rmdirRecurse.html"},{"doc":"ditto","kind":"function","module":"std.file","name":"rmdirRecurse","package":"phobos","parentType":"","signature":"void rmdirRecurse(scope  DirEntry de)","url":"/ddoc/phobos/std/file/rmdirRecurse.html"},{"doc":"Returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) of `DirEntry` that lazily iterates a given directory, also provides two w...","kind":"function","module":"std.file","name":"dirEntries","package":"phobos","parentType":"","signature":"auto dirEntries(bool  useDIP1000 =  dip1000Enabled)(string path,  SpanMode mode,  bool  followSymlink =  true)","url":"/ddoc/phobos/std/file/dirEntries.html"},{"doc":"Ditto","kind":"function","module":"std.file","name":"dirEntries","package":"phobos","parentType":"","signature":"auto dirEntries(bool  useDIP1000 =  dip1000Enabled)(string path,  string pattern,  SpanMode mode,\n     bool  followSymlink =  true)","url":"/ddoc/phobos/std/file/dirEntries.html"},{"doc":"Reads a file line by line and parses the line into a single value or a $(REF Tuple, std,typecons) of values depending on the length of `Types`. The...","kind":"function","module":"std.file","name":"slurp","package":"phobos","parentType":"","signature":"Select!(Types.length ==  1,  Types[0][],  Tuple!(Types)[]) slurp(Types...)(string filename,  scope  const(char)[]  format)","url":"/ddoc/phobos/std/file/slurp.html"},{"doc":"Returns the path to a directory for temporary files. On POSIX platforms, it searches through the following list of directories and returns the firs...","kind":"function","module":"std.file","name":"tempDir","package":"phobos","parentType":"","signature":"string tempDir()","url":"/ddoc/phobos/std/file/tempDir.html"},{"doc":"Returns the available disk space based on a given path. On Windows, `path` must be a directory; on POSIX systems, it can be a file or directory.","kind":"function","module":"std.file","name":"getAvailableDiskSpace","package":"phobos","parentType":"","signature":"ulong getAvailableDiskSpace(scope  const(char)[]  path)","url":"/ddoc/phobos/std/file/getAvailableDiskSpace.html"},{"doc":"Exception thrown for file I/O errors.","kind":"class","module":"std.file","name":"FileException","package":"phobos","parentType":"","signature":"FileException : Exception","url":"/ddoc/phobos/std/file.html#FileException"},{"doc":"","kind":"alias","module":"std.file","name":"PreserveAttributes","package":"phobos","parentType":"","signature":"PreserveAttributes = Flag!\"preserveAttributes\"","url":"/ddoc/phobos/std/file.html#PreserveAttributes"},{"doc":"Dictates directory spanning policy for $(D_PARAM dirEntries) (see below).","kind":"enum","module":"std.file","name":"SpanMode","package":"phobos","parentType":"","signature":"SpanMode","url":"/ddoc/phobos/std/file.html#SpanMode"},{"doc":"Only spans one directory.","kind":"enum_member","module":"std.file","name":"shallow","package":"phobos","parentType":"","signature":"shallow = ","url":"/ddoc/phobos/std/file.html#SpanMode"},{"doc":"Spans the directory in $(HTTPS en.wikipedia.org/wiki/Tree_traversal#Post-order, _depth-first $(B post)-order), i.e. the content of any subdirectory...","kind":"enum_member","module":"std.file","name":"depth","package":"phobos","parentType":"","signature":"depth = ","url":"/ddoc/phobos/std/file.html#SpanMode"},{"doc":"Spans the directory in $(HTTPS en.wikipedia.org/wiki/Tree_traversal#Pre-order, depth-first $(B pre)-order), i.e. the content of any subdirectory is...","kind":"enum_member","module":"std.file","name":"breadth","package":"phobos","parentType":"","signature":"breadth = ","url":"/ddoc/phobos/std/file.html#SpanMode"},{"doc":"","kind":"struct","module":"std.file","name":"DirIteratorImpl","package":"phobos","parentType":"","signature":"DirIteratorImpl","url":"/ddoc/phobos/std/file.html#DirIteratorImpl"},{"doc":"","kind":"method","module":"std.file","name":"pushExtra","package":"phobos","parentType":"DirIteratorImpl","signature":"void pushExtra(DirEntry de)","url":"/ddoc/phobos/std/file/DirIteratorImpl.pushExtra.html"},{"doc":"","kind":"method","module":"std.file","name":"hasExtra","package":"phobos","parentType":"DirIteratorImpl","signature":"bool hasExtra()","url":"/ddoc/phobos/std/file/DirIteratorImpl.hasExtra.html"},{"doc":"","kind":"method","module":"std.file","name":"popExtra","package":"phobos","parentType":"DirIteratorImpl","signature":"DirEntry popExtra()","url":"/ddoc/phobos/std/file/DirIteratorImpl.popExtra.html"},{"doc":"","kind":"method","module":"std.file","name":"empty","package":"phobos","parentType":"DirIteratorImpl","signature":"bool empty()","url":"/ddoc/phobos/std/file/DirIteratorImpl.empty.html"},{"doc":"","kind":"method","module":"std.file","name":"front","package":"phobos","parentType":"DirIteratorImpl","signature":"DirEntry front()","url":"/ddoc/phobos/std/file/DirIteratorImpl.front.html"},{"doc":"","kind":"method","module":"std.file","name":"popFront","package":"phobos","parentType":"DirIteratorImpl","signature":"void popFront()","url":"/ddoc/phobos/std/file/DirIteratorImpl.popFront.html"},{"doc":"","kind":"struct","module":"std.file","name":"_DirIterator","package":"phobos","parentType":"","signature":"_DirIterator(bool  useDIP1000)","url":"/ddoc/phobos/std/file.html#_DirIterator"},{"doc":"","kind":"method","module":"std.file","name":"empty","package":"phobos","parentType":"_DirIterator","signature":"bool empty()","url":"/ddoc/phobos/std/file/_DirIterator.empty.html"},{"doc":"","kind":"method","module":"std.file","name":"front","package":"phobos","parentType":"_DirIterator","signature":"DirEntry front()","url":"/ddoc/phobos/std/file/_DirIterator.front.html"},{"doc":"","kind":"method","module":"std.file","name":"popFront","package":"phobos","parentType":"_DirIterator","signature":"void popFront()","url":"/ddoc/phobos/std/file/_DirIterator.popFront.html"},{"doc":"","kind":"alias","module":"std.file","name":"DirIterator","package":"phobos","parentType":"","signature":"DirIterator = _DirIterator!dip1000Enabled","url":"/ddoc/phobos/std/file.html#DirIterator"},{"doc":"","kind":"module","module":"std.format.internal.floats","name":"std.format.internal.floats","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/internal/floats.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloat","package":"phobos","parentType":"","signature":"auto printFloat(T,  Char)(const(T)  val,  FormatSpec!Char f) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloat.html"},{"doc":"Returns: whether `c` is a supported format specifier for floats","kind":"function","module":"std.format.internal.floats","name":"isFloatSpec","package":"phobos","parentType":"","signature":"bool isFloatSpec(char  c)","url":"/ddoc/phobos/std/format/internal/floats/isFloatSpec.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloat","package":"phobos","parentType":"","signature":"void printFloat(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  val,  FormatSpec!Char f) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloat.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloatA","package":"phobos","parentType":"","signature":"void printFloatA(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  val,\n     FormatSpec!Char f,  string sgn,  int  exp,  ulong  mnt,  bool  is_upper) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloatA.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloatE","package":"phobos","parentType":"","signature":"void printFloatE(bool  g,  Writer,  T,  Char)(auto  ref  Writer w,  const(T)  val,\n     FormatSpec!Char f,  string sgn,  int  exp,  ulong  mnt,  bool  is_upper) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloatE.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloatF","package":"phobos","parentType":"","signature":"void printFloatF(bool  g,  Writer,  T,  Char)(auto  ref  Writer w,  const(T)  val,\n     FormatSpec!Char f,  string sgn,  int  exp,  ulong  mnt,  bool  is_upper) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloatF.html"},{"doc":"","kind":"function","module":"std.format.internal.floats","name":"printFloatG","package":"phobos","parentType":"","signature":"void printFloatG(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  val,\n     FormatSpec!Char f,  string sgn,  int  exp,  ulong  mnt,  bool  is_upper) if (is(T ==  float)  ||  is(T ==  double)\n     || (is(T ==  real)  && (T.mant_dig ==  double.mant_dig ||  T.mant_dig ==  64)))","url":"/ddoc/phobos/std/format/internal/floats/printFloatG.html"},{"doc":"","kind":"module","module":"std.format.internal.read","name":"std.format.internal.read","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/internal/read.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"skipData","package":"phobos","parentType":"","signature":"void skipData(Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec)","url":"/ddoc/phobos/std/format/internal/read/skipData.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range &&  is(immutable  T ==  immutable  bool))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range &&  is(T ==  typeof(null)))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range &&  isIntegral!T && !is(T ==  enum)  &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isFloatingPoint!T && !is(T ==  enum)  &&  isInputRange!Range\n    &&  isSomeChar!(ElementType!Range) && !is(Range ==  enum))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range &&  isSomeChar!T && !is(T ==  enum)  &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char fmt) if (isInputRange!Range &&  is(StringTypeOf!T)  && !isAggregateType!T && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatValueImpl","package":"phobos","parentType":"","signature":"T unformatValueImpl(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char fmt) if (isInputRange!Range && !is(StringTypeOf!T)  && !isAggregateType!T\n    && (isArray!T ||  isAssociativeArray!T ||  is(T ==  enum)))","url":"/ddoc/phobos/std/format/internal/read/unformatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"rawRead","package":"phobos","parentType":"","signature":"T rawRead(T,  Range)(ref  Range input) if (is(immutable  ElementEncodingType!Range ==  immutable  char)\n     ||  is(immutable  ElementEncodingType!Range ==  immutable  byte)\n     ||  is(immutable  ElementEncodingType!Range ==  immutable  ubyte))","url":"/ddoc/phobos/std/format/internal/read/rawRead.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatRange","package":"phobos","parentType":"","signature":"T unformatRange(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec)","url":"/ddoc/phobos/std/format/internal/read/unformatRange.html"},{"doc":"","kind":"function","module":"std.format.internal.read","name":"unformatElement","package":"phobos","parentType":"","signature":"T unformatElement(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range)","url":"/ddoc/phobos/std/format/internal/read/unformatElement.html"},{"doc":"","kind":"template","module":"std.format.internal.read","name":"acceptedSpecs","package":"phobos","parentType":"","signature":"acceptedSpecs(T)","url":"/ddoc/phobos/std/format/internal/read.html#acceptedSpecs"},{"doc":"","kind":"module","module":"std.format.internal.write","name":"std.format.internal.write","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/internal/write.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(BooleanTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(immutable  T ==  immutable  typeof(null))  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(IntegralTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImplUlong","package":"phobos","parentType":"","signature":"void formatValueImplUlong(Writer,  Char)(auto  ref  Writer w,  ulong  arg,  in  bool  negative,\n                                                 scope  const  ref  FormatSpec!Char f)","url":"/ddoc/phobos/std/format/internal/write/formatValueImplUlong.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"baseOfSpec","package":"phobos","parentType":"","signature":"uint baseOfSpec(in  char  spec)","url":"/ddoc/phobos/std/format/internal/write/baseOfSpec.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,\n                                       scope  const  ref  FormatSpec!Char f) if (is(FloatingPointTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(immutable  T :  immutable  creal)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(immutable  T :  immutable  ireal)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  const(T)  obj,  scope  const  ref  FormatSpec!Char f) if (is(CharTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  scope  const(T)  obj,\n     scope  const  ref  FormatSpec!Char f) if (is(StringTypeOf!T)  && !is(StaticArrayTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  auto  ref  T obj,\n     scope  const  ref  FormatSpec!Char f) if (is(StaticArrayTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  T obj,  scope  const  ref  FormatSpec!Char f) if (is(DynamicArrayTypeOf!T)  && !is(StringTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatRange","package":"phobos","parentType":"","signature":"void formatRange(Writer,  T,  Char)(ref  Writer w,  ref  T val,  scope  const  ref  FormatSpec!Char f) if (isInputRange!T)","url":"/ddoc/phobos/std/format/internal/write/formatRange.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatChar","package":"phobos","parentType":"","signature":"void formatChar(Writer)(ref  Writer w,  in  dchar  c,  in  char  quote)","url":"/ddoc/phobos/std/format/internal/write/formatChar.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  T obj,  scope  const  ref  FormatSpec!Char f) if (is(AssocArrayTypeOf!T)  && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatObject","package":"phobos","parentType":"","signature":"void formatObject(Writer,  T,  Char)(ref  Writer w,  ref  T val,  scope  const  ref  FormatSpec!Char f) if (hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatObject.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(T ==  class)  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(T ==  interface)  && (hasToString!(T,  Char)  || !is(BuiltinTypeOf!T))  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  auto  ref  T val,\n     scope  const  ref  FormatSpec!Char f) if ((is(T ==  struct)  ||  is(T ==  union))  && (hasToString!(T,  Char)  || !is(BuiltinTypeOf!T))\n     && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"enforceValidFormatSpec","package":"phobos","parentType":"","signature":"void enforceValidFormatSpec(T,  Char)(scope  const  ref  FormatSpec!Char f)","url":"/ddoc/phobos/std/format/internal/write/enforceValidFormatSpec.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  scope  const(T)  val,  scope  const  ref  FormatSpec!Char f) if (isPointer!T && !is(T ==  enum)  && !hasToString!(T,  Char))","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  V,  Char)(auto  ref  Writer w,  const(V)  val,  scope  const  ref  FormatSpec!Char f) if (isSIMDVector!V)","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatValueImpl","package":"phobos","parentType":"","signature":"void formatValueImpl(Writer,  T,  Char)(auto  ref  Writer w,  scope  const(T),  scope  const  ref  FormatSpec!Char f) if (isDelegate!T)","url":"/ddoc/phobos/std/format/internal/write/formatValueImpl.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(StringTypeOf!T)  && !hasToString!(T,  Char)  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatElement.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(CharTypeOf!T)  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatElement.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  auto  ref  T val,  scope  const  ref  FormatSpec!Char f) if ((!is(StringTypeOf!T)  ||  hasToString!(T,  Char))  && !is(CharTypeOf!T)  ||  is(T ==  enum))","url":"/ddoc/phobos/std/format/internal/write/formatElement.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"getNthInt","package":"phobos","parentType":"","signature":"int getNthInt(string kind,  A...)(uint  index,  A args)","url":"/ddoc/phobos/std/format/internal/write/getNthInt.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"getNth","package":"phobos","parentType":"","signature":"T getNth(string kind,  alias  Condition,  T,  A...)(uint  index,  A args)","url":"/ddoc/phobos/std/format/internal/write/getNth.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"needToSwapEndianess","package":"phobos","parentType":"","signature":"bool needToSwapEndianess(Char)(scope  const  ref  FormatSpec!Char f)","url":"/ddoc/phobos/std/format/internal/write/needToSwapEndianess.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"writeAligned","package":"phobos","parentType":"","signature":"void writeAligned(Writer,  T,  Char)(auto  ref  Writer w,  T s,  scope  const  ref  FormatSpec!Char f) if (isSomeString!T)","url":"/ddoc/phobos/std/format/internal/write/writeAligned.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"writeAligned","package":"phobos","parentType":"","signature":"void writeAligned(Writer,  T1,  T2,  T3,  Char)(auto  ref  Writer w,\n     T1 prefix,  T2 grouped,  T3 suffix,  scope  const  ref  FormatSpec!Char f,\n     bool  integer_precision =  false) if (isSomeString!T1 &&  isSomeString!T2 &&  isSomeString!T3)","url":"/ddoc/phobos/std/format/internal/write/writeAligned.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"writeAligned","package":"phobos","parentType":"","signature":"void writeAligned(Writer,  T1,  T2,  T3,  T4,  Char)(auto  ref  Writer w,\n     T1 prefix,  T2 grouped,  T3 fracts,  T4 suffix,  scope  const  ref  FormatSpec!Char f,\n     PrecisionType p =  PrecisionType.none) if (isSomeString!T1 &&  isSomeString!T2 &&  isSomeString!T3 &&  isSomeString!T4)","url":"/ddoc/phobos/std/format/internal/write/writeAligned.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"getWidth","package":"phobos","parentType":"","signature":"long getWidth(T)(T s)","url":"/ddoc/phobos/std/format/internal/write/getWidth.html"},{"doc":"","kind":"function","module":"std.format.internal.write","name":"round","package":"phobos","parentType":"","signature":"bool round(T)(ref  T sequence,  size_t left,  size_t right,  RoundingClass type,  bool  negative,  char  max =  '9')","url":"/ddoc/phobos/std/format/internal/write/round.html"},{"doc":"","kind":"enum","module":"std.format.internal.write","name":"HasToStringResult","package":"phobos","parentType":"","signature":"HasToStringResult","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"hasSomeToString","package":"phobos","parentType":"","signature":"hasSomeToString = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"inCharSink","package":"phobos","parentType":"","signature":"inCharSink = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"inCharSinkFormatString","package":"phobos","parentType":"","signature":"inCharSinkFormatString = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"inCharSinkFormatSpec","package":"phobos","parentType":"","signature":"inCharSinkFormatSpec = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"constCharSink","package":"phobos","parentType":"","signature":"constCharSink = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"constCharSinkFormatString","package":"phobos","parentType":"","signature":"constCharSinkFormatString = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"constCharSinkFormatSpec","package":"phobos","parentType":"","signature":"constCharSinkFormatSpec = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"customPutWriter","package":"phobos","parentType":"","signature":"customPutWriter = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"customPutWriterFormatSpec","package":"phobos","parentType":"","signature":"customPutWriterFormatSpec = ","url":"/ddoc/phobos/std/format/internal/write.html#HasToStringResult"},{"doc":"","kind":"alias","module":"std.format.internal.write","name":"DScannerBug895","package":"phobos","parentType":"","signature":"DScannerBug895 = int[256]","url":"/ddoc/phobos/std/format/internal/write.html#DScannerBug895"},{"doc":"","kind":"enum","module":"std.format.internal.write","name":"PrecisionType","package":"phobos","parentType":"","signature":"PrecisionType","url":"/ddoc/phobos/std/format/internal/write.html#PrecisionType"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/std/format/internal/write.html#PrecisionType"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"integer","package":"phobos","parentType":"","signature":"integer = ","url":"/ddoc/phobos/std/format/internal/write.html#PrecisionType"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"fractionalDigits","package":"phobos","parentType":"","signature":"fractionalDigits = ","url":"/ddoc/phobos/std/format/internal/write.html#PrecisionType"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"allDigits","package":"phobos","parentType":"","signature":"allDigits = ","url":"/ddoc/phobos/std/format/internal/write.html#PrecisionType"},{"doc":"","kind":"enum","module":"std.format.internal.write","name":"RoundingClass","package":"phobos","parentType":"","signature":"RoundingClass","url":"/ddoc/phobos/std/format/internal/write.html#RoundingClass"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"ZERO","package":"phobos","parentType":"","signature":"ZERO = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingClass"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"LOWER","package":"phobos","parentType":"","signature":"LOWER = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingClass"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"FIVE","package":"phobos","parentType":"","signature":"FIVE = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingClass"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"UPPER","package":"phobos","parentType":"","signature":"UPPER = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingClass"},{"doc":"","kind":"enum","module":"std.format.internal.write","name":"RoundingMode","package":"phobos","parentType":"","signature":"RoundingMode","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"up","package":"phobos","parentType":"","signature":"up = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"down","package":"phobos","parentType":"","signature":"down = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"toZero","package":"phobos","parentType":"","signature":"toZero = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"toNearestTiesToEven","package":"phobos","parentType":"","signature":"toNearestTiesToEven = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"enum_member","module":"std.format.internal.write","name":"toNearestTiesAwayFromZero","package":"phobos","parentType":"","signature":"toNearestTiesAwayFromZero = ","url":"/ddoc/phobos/std/format/internal/write.html#RoundingMode"},{"doc":"","kind":"template","module":"std.format.internal.write","name":"hasToString","package":"phobos","parentType":"","signature":"hasToString(T,  Char)","url":"/ddoc/phobos/std/format/internal/write.html#hasToString"},{"doc":"","kind":"variable","module":"std.format.internal.write","name":"hasPreviewIn","package":"phobos","parentType":"","signature":"bool hasPreviewIn","url":"/ddoc/phobos/std/format/internal/write.html#hasPreviewIn"},{"doc":"This package provides string formatting functionality using `printf` style format strings.","kind":"module","module":"std.format","name":"std.format","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format.html"},{"doc":"","kind":"function","module":"std.format","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(StringTypeOf!T)  && !hasToString!(T,  Char)  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/formatElement.html"},{"doc":"","kind":"function","module":"std.format","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  T val,  scope  const  ref  FormatSpec!Char f) if (is(CharTypeOf!T)  && !is(T ==  enum))","url":"/ddoc/phobos/std/format/formatElement.html"},{"doc":"","kind":"function","module":"std.format","name":"formatElement","package":"phobos","parentType":"","signature":"void formatElement(Writer,  T,  Char)(auto  ref  Writer w,  auto  ref  T val,  scope  const  ref  FormatSpec!Char f) if ((!is(StringTypeOf!T)  ||  hasToString!(T,  Char))  && !is(CharTypeOf!T)  ||  is(T ==  enum))","url":"/ddoc/phobos/std/format/formatElement.html"},{"doc":"","kind":"function","module":"std.format","name":"unformatElement","package":"phobos","parentType":"","signature":"T unformatElement(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec) if (isInputRange!Range)","url":"/ddoc/phobos/std/format/unformatElement.html"},{"doc":"Converts its arguments according to a format string into a string.","kind":"function","module":"std.format","name":"format","package":"phobos","parentType":"","signature":"immutable(Char)[] format(Char,  Args...)(in  Char[]  fmt,  Args args) if (isSomeChar!Char)","url":"/ddoc/phobos/std/format/format.html"},{"doc":"ditto","kind":"function","module":"std.format","name":"format","package":"phobos","parentType":"","signature":"typeof(fmt) format(alias  fmt,  Args...)(Args args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/format/format.html"},{"doc":"","kind":"function","module":"std.format","name":"guessLength","package":"phobos","parentType":"","signature":"size_t guessLength(Char,  S)(S fmtString)","url":"/ddoc/phobos/std/format/guessLength.html"},{"doc":"Converts its arguments according to a format string into a buffer. The buffer has to be large enough to hold the formatted string.","kind":"function","module":"std.format","name":"sformat","package":"phobos","parentType":"","signature":"char[] sformat(Char,  Args...)(return  scope  char[]  buf,  scope  const(Char)[]  fmt,  Args args)","url":"/ddoc/phobos/std/format/sformat.html"},{"doc":"ditto","kind":"function","module":"std.format","name":"sformat","package":"phobos","parentType":"","signature":"char[] sformat(alias  fmt,  Args...)(char[]  buf,  Args args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/format/sformat.html"},{"doc":"Signals an issue encountered while formatting.","kind":"class","module":"std.format","name":"FormatException","package":"phobos","parentType":"","signature":"FormatException : Exception","url":"/ddoc/phobos/std/format.html#FormatException"},{"doc":"","kind":"alias","module":"std.format","name":"enforceFmt","package":"phobos","parentType":"","signature":"enforceFmt = enforce!FormatException","url":"/ddoc/phobos/std/format.html#enforceFmt"},{"doc":"","kind":"struct","module":"std.format","name":"NoOpSink","package":"phobos","parentType":"","signature":"NoOpSink","url":"/ddoc/phobos/std/format.html#NoOpSink"},{"doc":"","kind":"method","module":"std.format","name":"put","package":"phobos","parentType":"NoOpSink","signature":"void put(E)(scope  const  E)","url":"/ddoc/phobos/std/format/NoOpSink.put.html"},{"doc":"This is a submodule of $(MREF std, format).","kind":"module","module":"std.format.read","name":"std.format.read","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/read.html"},{"doc":"Reads an input range according to a format string and stores the read values into its arguments.","kind":"function","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"uint formattedRead(Range,  Char,  Args...)(auto  ref  Range r,  const(Char)[]  fmt,  auto  ref  Args args)","url":"/ddoc/phobos/std/format/read/formattedRead.html"},{"doc":"ditto","kind":"function","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"uint formattedRead(alias  fmt,  Range,  Args...)(auto  ref  Range r,  auto  ref  Args args) if (!isType!fmt &&  isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/format/read/formattedRead.html"},{"doc":"Reads a value from the given _input range and converts it according to a format specifier.","kind":"function","module":"std.format.read","name":"unformatValue","package":"phobos","parentType":"","signature":"T unformatValue(T,  Range,  Char)(ref  Range input,  scope  const  ref  FormatSpec!Char spec)","url":"/ddoc/phobos/std/format/read/unformatValue.html"},{"doc":"Reads an input range according to a format string and returns a tuple of Args with the read values.","kind":"template","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"formattedRead(Args...)","url":"/ddoc/phobos/std/format/read.html#formattedRead"},{"doc":"Params: r = an $(REF_ALTTEXT input range, isInputRange, std, range, primitives), where the formatted input is read from fmt = a $(MREF_ALTTEXT form...","kind":"function","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"Tuple!Args formattedRead(Range,  Char)(auto  ref  Range r,  const(Char)[]  fmt)","url":"/ddoc/phobos/std/format/read.html#formattedRead"},{"doc":"ditto","kind":"template","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"formattedRead(alias  fmt,  Args...)","url":"/ddoc/phobos/std/format/read.html#formattedRead"},{"doc":"","kind":"function","module":"std.format.read","name":"formattedRead","package":"phobos","parentType":"","signature":"Tuple!Args formattedRead(Range)(auto  ref  Range r)","url":"/ddoc/phobos/std/format/read.html#formattedRead"},{"doc":"This is a submodule of $(MREF std, format).","kind":"module","module":"std.format.spec","name":"std.format.spec","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/spec.html"},{"doc":"Helper function that returns a `FormatSpec` for a single format specifier.","kind":"function","module":"std.format.spec","name":"singleSpec","package":"phobos","parentType":"","signature":"FormatSpec!Char singleSpec(Char)(Char[]  fmt)","url":"/ddoc/phobos/std/format/spec/singleSpec.html"},{"doc":"","kind":"function","module":"std.format.spec","name":"enforceValidFormatSpec","package":"phobos","parentType":"","signature":"void enforceValidFormatSpec(T,  Char)(scope  const  ref  FormatSpec!Char f)","url":"/ddoc/phobos/std/format/spec/enforceValidFormatSpec.html"},{"doc":"A general handler for format strings.","kind":"struct","module":"std.format.spec","name":"FormatSpec","package":"phobos","parentType":"","signature":"FormatSpec(Char) if (is(Unqual!Char ==  Char))","url":"/ddoc/phobos/std/format/spec.html#FormatSpec"},{"doc":"Set to `DYNAMIC` when the separator character is supplied at runtime.","kind":"method","module":"std.format.spec","name":"separatorCharPos","package":"phobos","parentType":"FormatSpec","signature":"int separatorCharPos()","url":"/ddoc/phobos/std/format/spec/FormatSpec.separatorCharPos.html"},{"doc":"ditto","kind":"method","module":"std.format.spec","name":"separatorCharPos","package":"phobos","parentType":"FormatSpec","signature":"void separatorCharPos(int  value)","url":"/ddoc/phobos/std/format/spec/FormatSpec.separatorCharPos.html"},{"doc":"Writes the format string to an output range until the next format specifier is found and parse that format specifier.","kind":"method","module":"std.format.spec","name":"writeUpToNextSpec","package":"phobos","parentType":"FormatSpec","signature":"bool writeUpToNextSpec(OutputRange)(ref  OutputRange writer)","url":"/ddoc/phobos/std/format/spec/FormatSpec.writeUpToNextSpec.html"},{"doc":"","kind":"method","module":"std.format.spec","name":"fillUp","package":"phobos","parentType":"FormatSpec","signature":"void fillUp()","url":"/ddoc/phobos/std/format/spec/FormatSpec.fillUp.html"},{"doc":"","kind":"method","module":"std.format.spec","name":"readUpToNextSpec","package":"phobos","parentType":"FormatSpec","signature":"bool readUpToNextSpec(R)(ref  R r)","url":"/ddoc/phobos/std/format/spec/FormatSpec.readUpToNextSpec.html"},{"doc":"","kind":"method","module":"std.format.spec","name":"getCurFmtStr","package":"phobos","parentType":"FormatSpec","signature":"string getCurFmtStr()","url":"/ddoc/phobos/std/format/spec/FormatSpec.getCurFmtStr.html"},{"doc":"Provides a string representation.","kind":"method","module":"std.format.spec","name":"toString","package":"phobos","parentType":"FormatSpec","signature":"string toString()","url":"/ddoc/phobos/std/format/spec/FormatSpec.toString.html"},{"doc":"Writes a string representation to an output range.","kind":"method","module":"std.format.spec","name":"toString","package":"phobos","parentType":"FormatSpec","signature":"void toString(OutputRange)(ref  OutputRange writer) if (isOutputRange!(OutputRange,  char))","url":"/ddoc/phobos/std/format/spec/FormatSpec.toString.html"},{"doc":"","kind":"template","module":"std.format.spec","name":"FormatSpec","package":"phobos","parentType":"","signature":"FormatSpec(Char)","url":"/ddoc/phobos/std/format/spec.html#FormatSpec"},{"doc":"This is a submodule of $(MREF std, format).","kind":"module","module":"std.format.write","name":"std.format.write","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/format/write.html"},{"doc":"Converts its arguments according to a format string and writes the result to an output range.","kind":"function","module":"std.format.write","name":"formattedWrite","package":"phobos","parentType":"","signature":"uint formattedWrite(Writer,  Char,  Args...)(auto  ref  Writer w,  const  scope  Char[]  fmt,  Args args)","url":"/ddoc/phobos/std/format/write/formattedWrite.html"},{"doc":"ditto","kind":"function","module":"std.format.write","name":"formattedWrite","package":"phobos","parentType":"","signature":"uint formattedWrite(alias  fmt,  Writer,  Args...)(auto  ref  Writer w,  Args args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/format/write/formattedWrite.html"},{"doc":"Formats a value of any type according to a format specifier and writes the result to an output range.","kind":"function","module":"std.format.write","name":"formatValue","package":"phobos","parentType":"","signature":"void formatValue(Writer,  T,  Char)(auto  ref  Writer w,  auto  ref  T val,  scope  const  ref  FormatSpec!Char f)","url":"/ddoc/phobos/std/format/write/formatValue.html"},{"doc":"Functions that manipulate other functions.","kind":"module","module":"std.functional","name":"std.functional","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/functional.html"},{"doc":"","kind":"function","module":"std.functional","name":"_ctfeSkipOp","package":"phobos","parentType":"","signature":"uint _ctfeSkipOp(ref  string op)","url":"/ddoc/phobos/std/functional/_ctfeSkipOp.html"},{"doc":"","kind":"function","module":"std.functional","name":"_ctfeSkipInteger","package":"phobos","parentType":"","signature":"uint _ctfeSkipInteger(ref  string op)","url":"/ddoc/phobos/std/functional/_ctfeSkipInteger.html"},{"doc":"","kind":"function","module":"std.functional","name":"_ctfeSkipName","package":"phobos","parentType":"","signature":"uint _ctfeSkipName(ref  string op,  string name)","url":"/ddoc/phobos/std/functional/_ctfeSkipName.html"},{"doc":"","kind":"function","module":"std.functional","name":"_ctfeMatchUnary","package":"phobos","parentType":"","signature":"uint _ctfeMatchUnary(string fun,  string name)","url":"/ddoc/phobos/std/functional/_ctfeMatchUnary.html"},{"doc":"","kind":"function","module":"std.functional","name":"_ctfeMatchBinary","package":"phobos","parentType":"","signature":"uint _ctfeMatchBinary(string fun,  string name1,  string name2)","url":"/ddoc/phobos/std/functional/_ctfeMatchBinary.html"},{"doc":"ditto","kind":"function","module":"std.functional","name":"curry","package":"phobos","parentType":"","signature":"auto curry(T)(T t) if (isCallable!T &&  Parameters!T.length)","url":"/ddoc/phobos/std/functional/curry.html"},{"doc":"Convert a callable to a delegate with the same parameter list and return type, avoiding heap allocations and use of auxiliary storage.","kind":"function","module":"std.functional","name":"toDelegate","package":"phobos","parentType":"","signature":"auto toDelegate(F)(auto  ref  F fp) if (isCallable!(F))","url":"/ddoc/phobos/std/functional/toDelegate.html"},{"doc":"Predicate that returns $(D_PARAM a < b). Correctly compares signed and unsigned integers, ie. -1 < 2U.","kind":"alias","module":"std.functional","name":"lessThan","package":"phobos","parentType":"","signature":"lessThan = safeOp!\"<\"","url":"/ddoc/phobos/std/functional.html#lessThan"},{"doc":"Predicate that returns $(D_PARAM a > b). Correctly compares signed and unsigned integers, ie. 2U > -1.","kind":"alias","module":"std.functional","name":"greaterThan","package":"phobos","parentType":"","signature":"greaterThan = safeOp!\">\"","url":"/ddoc/phobos/std/functional.html#greaterThan"},{"doc":"Predicate that returns $(D_PARAM a == b). Correctly compares signed and unsigned integers, ie. !(-1 == ~0U).","kind":"alias","module":"std.functional","name":"equalTo","package":"phobos","parentType":"","signature":"equalTo = safeOp!\"==\"","url":"/ddoc/phobos/std/functional.html#equalTo"},{"doc":"Pipes functions in sequence. Offers the same functionality as $(D compose), but with functions specified in reverse order. This may lead to more re...","kind":"alias","module":"std.functional","name":"pipe","package":"phobos","parentType":"","signature":"pipe(fun...) = compose!(Reverse!(fun))","url":"/ddoc/phobos/std/functional.html#pipe"},{"doc":"","kind":"struct","module":"std.functional","name":"DelegateFaker","package":"phobos","parentType":"","signature":"DelegateFaker(F)","url":"/ddoc/phobos/std/functional.html#DelegateFaker"},{"doc":"","kind":"method","module":"std.functional","name":"castToF","package":"phobos","parentType":"DelegateFaker","signature":"F castToF(THIS)(THIS x)","url":"/ddoc/phobos/std/functional/DelegateFaker.castToF.html"},{"doc":"","kind":"template","module":"std.functional","name":"needOpCallAlias","package":"phobos","parentType":"","signature":"needOpCallAlias(alias  fun)","url":"/ddoc/phobos/std/functional.html#needOpCallAlias"},{"doc":"Transforms a `string` representing an expression into a unary function. The `string` must either use symbol name `a` as the parameter or provide th...","kind":"template","module":"std.functional","name":"unaryFun","package":"phobos","parentType":"","signature":"unaryFun(alias  fun,  string parmName =  \"a\")","url":"/ddoc/phobos/std/functional.html#unaryFun"},{"doc":"Transforms a `string` representing an expression into a binary function. The `string` must either use symbol names `a` and `b` as the parameters or...","kind":"template","module":"std.functional","name":"binaryFun","package":"phobos","parentType":"","signature":"binaryFun(alias  fun,  string parm1Name =  \"a\",\n         string parm2Name =  \"b\")","url":"/ddoc/phobos/std/functional.html#binaryFun"},{"doc":"","kind":"template","module":"std.functional","name":"safeOp","package":"phobos","parentType":"","signature":"safeOp(string S)","url":"/ddoc/phobos/std/functional.html#safeOp"},{"doc":"","kind":"function","module":"std.functional","name":"unsafeOp","package":"phobos","parentType":"","signature":"bool unsafeOp(ElementType1,  ElementType2)(ElementType1 a,  ElementType2 b) if (isIntegral!ElementType1 &&  isIntegral!ElementType2)","url":"/ddoc/phobos/std/functional.html#safeOp"},{"doc":"","kind":"function","module":"std.functional","name":"safeOp","package":"phobos","parentType":"","signature":"bool safeOp(T0,  T1)(auto  ref  T0 a,  auto  ref  T1 b)","url":"/ddoc/phobos/std/functional.html#safeOp"},{"doc":"N-ary predicate that reverses the order of arguments, e.g., given $(D pred(a, b, c)), returns $(D pred(c, b, a)).","kind":"template","module":"std.functional","name":"reverseArgs","package":"phobos","parentType":"","signature":"reverseArgs(alias  pred)","url":"/ddoc/phobos/std/functional.html#reverseArgs"},{"doc":"","kind":"function","module":"std.functional","name":"reverseArgs","package":"phobos","parentType":"","signature":"auto reverseArgs(Args...)(auto  ref  Args args) if (is(typeof(pred(Reverse!args))))","url":"/ddoc/phobos/std/functional.html#reverseArgs"},{"doc":"Negates predicate `pred`.","kind":"template","module":"std.functional","name":"not","package":"phobos","parentType":"","signature":"not(alias  pred)","url":"/ddoc/phobos/std/functional.html#not"},{"doc":"","kind":"function","module":"std.functional","name":"not","package":"phobos","parentType":"","signature":"auto not(T...)(auto  ref  T args)","url":"/ddoc/phobos/std/functional.html#not"},{"doc":"$(LINK2 http://en.wikipedia.org/wiki/Partial_application, Partially applies) $(D_PARAM fun) by tying its first argument to $(D_PARAM arg).","kind":"template","module":"std.functional","name":"partial","package":"phobos","parentType":"","signature":"partial(alias  fun,  alias  arg)","url":"/ddoc/phobos/std/functional.html#partial"},{"doc":"Takes a function of (potentially) many arguments, and returns a function taking one argument and returns a callable taking the rest.  f(x, y) == cu...","kind":"template","module":"std.functional","name":"curry","package":"phobos","parentType":"","signature":"curry(alias  F)","url":"/ddoc/phobos/std/functional.html#curry"},{"doc":"","kind":"function","module":"std.functional","name":"curry","package":"phobos","parentType":"","signature":"auto curry()","url":"/ddoc/phobos/std/functional.html#curry"},{"doc":"","kind":"struct","module":"std.functional","name":"CurryImpl","package":"phobos","parentType":"","signature":"CurryImpl(size_t N)","url":"/ddoc/phobos/std/functional.html#curry"},{"doc":"","kind":"template","module":"std.functional","name":"Iota","package":"phobos","parentType":"","signature":"Iota(size_t n)","url":"/ddoc/phobos/std/functional.html#Iota"},{"doc":"Takes multiple functions and adjoins them together.","kind":"template","module":"std.functional","name":"adjoin","package":"phobos","parentType":"","signature":"adjoin(F...)","url":"/ddoc/phobos/std/functional.html#adjoin"},{"doc":"Composes passed-in functions $(D fun[0], fun[1], ...).","kind":"template","module":"std.functional","name":"compose","package":"phobos","parentType":"","signature":"compose(fun...)","url":"/ddoc/phobos/std/functional.html#compose"},{"doc":"","kind":"template","module":"std.functional","name":"getOverloads","package":"phobos","parentType":"","signature":"getOverloads(alias  fun)","url":"/ddoc/phobos/std/functional.html#getOverloads"},{"doc":"* $(LINK2 https://en.wikipedia.org/wiki/Memoization, Memoizes) a function so as * to avoid repeated computation. The memoization structure is a has...","kind":"template","module":"std.functional","name":"memoize","package":"phobos","parentType":"","signature":"memoize(alias  fun)","url":"/ddoc/phobos/std/functional.html#memoize"},{"doc":"","kind":"function","module":"std.functional","name":"impl","package":"phobos","parentType":"","signature":"auto impl(Args...)(Args args) if (is(typeof(fun(args))))","url":"/ddoc/phobos/std/functional.html#memoize"},{"doc":"ditto","kind":"template","module":"std.functional","name":"memoize","package":"phobos","parentType":"","signature":"memoize(alias  fun,  uint  maxSize)","url":"/ddoc/phobos/std/functional.html#memoize"},{"doc":"","kind":"function","module":"std.functional","name":"impl","package":"phobos","parentType":"","signature":"auto impl(Args...)(Args args) if (is(typeof(fun(args))))","url":"/ddoc/phobos/std/functional.html#memoize"},{"doc":"","kind":"template","module":"std.functional","name":"buildDelegate","package":"phobos","parentType":"","signature":"buildDelegate(F)","url":"/ddoc/phobos/std/functional.html#buildDelegate"},{"doc":"","kind":"function","module":"std.functional","name":"buildDelegate","package":"phobos","parentType":"","signature":"auto buildDelegate(auto  ref  F fp)","url":"/ddoc/phobos/std/functional.html#buildDelegate"},{"doc":"Passes the fields of a struct as arguments to a function.","kind":"template","module":"std.functional","name":"bind","package":"phobos","parentType":"","signature":"bind(alias  fun)","url":"/ddoc/phobos/std/functional.html#bind"},{"doc":"Params: args = The struct or tuple whose fields will be used as arguments.","kind":"function","module":"std.functional","name":"bind","package":"phobos","parentType":"","signature":"auto ref bind(T)(auto  ref  T args) if (is(T ==  struct))","url":"/ddoc/phobos/std/functional.html#bind"},{"doc":"Processing of command line options.","kind":"module","module":"std.getopt","name":"std.getopt","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/getopt.html"},{"doc":"Parse and remove command line options from a string array.","kind":"function","module":"std.getopt","name":"getopt","package":"phobos","parentType":"","signature":"GetoptResult getopt(T...)(ref  string[]  args,  T opts)","url":"/ddoc/phobos/std/getopt/getopt.html"},{"doc":"","kind":"function","module":"std.getopt","name":"splitAndGet","package":"phobos","parentType":"","signature":"Option splitAndGet(string opt)","url":"/ddoc/phobos/std/getopt/splitAndGet.html"},{"doc":"","kind":"function","module":"std.getopt","name":"optionValidatorErrorFormat","package":"phobos","parentType":"","signature":"string optionValidatorErrorFormat(string msg,  size_t idx)","url":"/ddoc/phobos/std/getopt/optionValidatorErrorFormat.html"},{"doc":"","kind":"function","module":"std.getopt","name":"getoptTo","package":"phobos","parentType":"","signature":"auto getoptTo(R)(string option,  string value,\n         size_t idx,  string file =  __FILE__,  size_t line =  __LINE__)","url":"/ddoc/phobos/std/getopt/getoptTo.html"},{"doc":"","kind":"function","module":"std.getopt","name":"getoptImpl","package":"phobos","parentType":"","signature":"void getoptImpl(T...)(ref  string[]  args,  ref  configuration cfg,\n     ref  GetoptResult rslt,  ref  GetOptException excep,\n     void[][string]  visitedLongOpts,  void[][string]  visitedShortOpts,  T opts)","url":"/ddoc/phobos/std/getopt/getoptImpl.html"},{"doc":"","kind":"function","module":"std.getopt","name":"handleOption","package":"phobos","parentType":"","signature":"bool handleOption(R)(string option,  R receiver,  ref  string[]  args,\n     ref  configuration cfg,  bool  incremental)","url":"/ddoc/phobos/std/getopt/handleOption.html"},{"doc":"","kind":"function","module":"std.getopt","name":"optMatch","package":"phobos","parentType":"","signature":"bool optMatch(string arg,  scope  string optPattern,  ref  string value,\n     configuration cfg)","url":"/ddoc/phobos/std/getopt/optMatch.html"},{"doc":"","kind":"function","module":"std.getopt","name":"setConfig","package":"phobos","parentType":"","signature":"void setConfig(ref  configuration cfg,  config option)","url":"/ddoc/phobos/std/getopt/setConfig.html"},{"doc":"This function prints the passed `Option`s and text in an aligned manner on `stdout`.","kind":"function","module":"std.getopt","name":"defaultGetoptPrinter","package":"phobos","parentType":"","signature":"void defaultGetoptPrinter(string text,  Option[]  opt)","url":"/ddoc/phobos/std/getopt/defaultGetoptPrinter.html"},{"doc":"This function writes the passed text and `Option` into an output range in the manner described in the documentation of function `defaultGetoptPrint...","kind":"function","module":"std.getopt","name":"defaultGetoptFormatter","package":"phobos","parentType":"","signature":"void defaultGetoptFormatter(Output)(Output output,  string text,  Option[]  opt,  string style =  \"%*s %*s%*s%s\\n\")","url":"/ddoc/phobos/std/getopt/defaultGetoptFormatter.html"},{"doc":"Thrown on one of the following conditions: $(UL $(LI An unrecognized command-line argument is passed, and `std.getopt.config.passThrough` was not p...","kind":"class","module":"std.getopt","name":"GetOptException","package":"phobos","parentType":"","signature":"GetOptException : Exception","url":"/ddoc/phobos/std/getopt.html#GetOptException"},{"doc":"Configuration options for `getopt`.","kind":"enum","module":"std.getopt","name":"config","package":"phobos","parentType":"","signature":"config","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Turn case sensitivity on","kind":"enum_member","module":"std.getopt","name":"caseSensitive","package":"phobos","parentType":"","signature":"caseSensitive = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Turn case sensitivity off (default)","kind":"enum_member","module":"std.getopt","name":"caseInsensitive","package":"phobos","parentType":"","signature":"caseInsensitive = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Turn bundling on","kind":"enum_member","module":"std.getopt","name":"bundling","package":"phobos","parentType":"","signature":"bundling = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Turn bundling off (default)","kind":"enum_member","module":"std.getopt","name":"noBundling","package":"phobos","parentType":"","signature":"noBundling = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Pass unrecognized arguments through","kind":"enum_member","module":"std.getopt","name":"passThrough","package":"phobos","parentType":"","signature":"passThrough = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Signal unrecognized arguments as errors (default)","kind":"enum_member","module":"std.getopt","name":"noPassThrough","package":"phobos","parentType":"","signature":"noPassThrough = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Stop at first argument that does not look like an option","kind":"enum_member","module":"std.getopt","name":"stopOnFirstNonOption","package":"phobos","parentType":"","signature":"stopOnFirstNonOption = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Do not erase the endOfOptions separator from args","kind":"enum_member","module":"std.getopt","name":"keepEndOfOptions","package":"phobos","parentType":"","signature":"keepEndOfOptions = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"Make the next option a required option","kind":"enum_member","module":"std.getopt","name":"required","package":"phobos","parentType":"","signature":"required = ","url":"/ddoc/phobos/std/getopt.html#config"},{"doc":"The result of the `getopt` function.","kind":"struct","module":"std.getopt","name":"GetoptResult","package":"phobos","parentType":"","signature":"GetoptResult","url":"/ddoc/phobos/std/getopt.html#GetoptResult"},{"doc":"Information about an option.","kind":"struct","module":"std.getopt","name":"Option","package":"phobos","parentType":"","signature":"Option","url":"/ddoc/phobos/std/getopt.html#Option"},{"doc":"","kind":"struct","module":"std.getopt","name":"configuration","package":"phobos","parentType":"","signature":"configuration","url":"/ddoc/phobos/std/getopt.html#configuration"},{"doc":"","kind":"template","module":"std.getopt","name":"optionValidator","package":"phobos","parentType":"","signature":"optionValidator(A...)","url":"/ddoc/phobos/std/getopt.html#optionValidator"},{"doc":"","kind":"function","module":"std.getopt","name":"validator","package":"phobos","parentType":"","signature":"auto validator()","url":"/ddoc/phobos/std/getopt.html#optionValidator"},{"doc":"The option character (default '-').","kind":"variable","module":"std.getopt","name":"optionChar","package":"phobos","parentType":"","signature":"dchar optionChar","url":"/ddoc/phobos/std/getopt.html#optionChar"},{"doc":"The string that conventionally marks the end of all options (default '--').","kind":"variable","module":"std.getopt","name":"endOfOptions","package":"phobos","parentType":"","signature":"string endOfOptions","url":"/ddoc/phobos/std/getopt.html#endOfOptions"},{"doc":"The assignment character used in options with parameters (default '=').","kind":"variable","module":"std.getopt","name":"assignChar","package":"phobos","parentType":"","signature":"dchar assignChar","url":"/ddoc/phobos/std/getopt.html#assignChar"},{"doc":"When set to \"\", parameters to array and associative array receivers are treated as an individual argument. That is, only one argument is appended o...","kind":"variable","module":"std.getopt","name":"arraySep","package":"phobos","parentType":"","signature":"string arraySep","url":"/ddoc/phobos/std/getopt.html#arraySep"},{"doc":"","kind":"variable","module":"std.getopt","name":"autoIncrementChar","package":"phobos","parentType":"","signature":"autoIncrementChar","url":"/ddoc/phobos/std/getopt.html#autoIncrementChar"},{"doc":"* Implements a signed 128 bit integer type. * Author:     Walter Bright Copyright:  Copyright (c) 2022, D Language Foundation License:    $(HTTP bo...","kind":"module","module":"std.int128","name":"std.int128","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/int128.html"},{"doc":"128 bit signed integer type.","kind":"struct","module":"std.int128","name":"Int128","package":"phobos","parentType":"","signature":"Int128","url":"/ddoc/phobos/std/int128.html#Int128"},{"doc":"Returns: hash value for Int128","kind":"method","module":"std.int128","name":"toHash","package":"phobos","parentType":"Int128","signature":"size_t toHash()","url":"/ddoc/phobos/std/int128/Int128.toHash.html"},{"doc":"Compare for equality Params: lo = signed value to compare with Returns: true if Int128 equals value","kind":"method","module":"std.int128","name":"opEquals","package":"phobos","parentType":"Int128","signature":"bool opEquals(long  lo)","url":"/ddoc/phobos/std/int128/Int128.opEquals.html"},{"doc":"Compare for equality Params: lo = unsigned value to compare with Returns: true if Int128 equals value","kind":"method","module":"std.int128","name":"opEquals","package":"phobos","parentType":"Int128","signature":"bool opEquals(ulong  lo)","url":"/ddoc/phobos/std/int128/Int128.opEquals.html"},{"doc":"Compare for equality Params: op2 = value to compare with Returns: true if Int128 equals value","kind":"method","module":"std.int128","name":"opEquals","package":"phobos","parentType":"Int128","signature":"bool opEquals(Int128 op2)","url":"/ddoc/phobos/std/int128/Int128.opEquals.html"},{"doc":"Support unary arithmentic operator + Params: op = \"+\" Returns: lvalue of result","kind":"method","module":"std.int128","name":"opUnary","package":"phobos","parentType":"Int128","signature":"Int128 opUnary(string op)() if (op ==  \"+\")","url":"/ddoc/phobos/std/int128/Int128.opUnary.html"},{"doc":"Support unary arithmentic operator - ~ Params: op = \"-\", \"~\" Returns: lvalue of result","kind":"method","module":"std.int128","name":"opUnary","package":"phobos","parentType":"Int128","signature":"Int128 opUnary(string op)() if (op ==  \"-\" ||  op ==  \"~\")","url":"/ddoc/phobos/std/int128/Int128.opUnary.html"},{"doc":"Support unary arithmentic operator ++ -- Params: op = \"++\", \"--\" Returns: lvalue of result","kind":"method","module":"std.int128","name":"opUnary","package":"phobos","parentType":"Int128","signature":"Int128 opUnary(string op)() if (op ==  \"++\" ||  op ==  \"--\")","url":"/ddoc/phobos/std/int128/Int128.opUnary.html"},{"doc":"Support casting to a bool Params: T = bool Returns: true if value is not zero","kind":"method","module":"std.int128","name":"opCast","package":"phobos","parentType":"Int128","signature":"bool opCast(T :  bool)()","url":"/ddoc/phobos/std/int128/Int128.opCast.html"},{"doc":"Support casting to an integral type Params: T = integral type Returns: low bits of value reinterpreted as T","kind":"method","module":"std.int128","name":"opCast","package":"phobos","parentType":"Int128","signature":"T opCast(T :  long)() if (is(byte :  T))","url":"/ddoc/phobos/std/int128/Int128.opCast.html"},{"doc":"Support casting to floating point type Params: T = floating point type Returns: value cast to floating point with environment-dependent rounding if...","kind":"method","module":"std.int128","name":"opCast","package":"phobos","parentType":"Int128","signature":"T opCast(T :  real)()","url":"/ddoc/phobos/std/int128/Int128.opCast.html"},{"doc":"Support binary arithmetic operators + - * / % & | ^ << >> >>> Params: op = one of the arithmetic binary operators op2 = second operand Returns: val...","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op)(Int128 op2) if (op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op,  Int)(const  Int op2) if ((op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")  &&\n         is(Int :  long)  &&  __traits(isIntegral,  Int))","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op,  IntLike)(auto  ref  IntLike op2) if ((op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")  &&\n         is(IntLike :  long)  && !__traits(isIntegral,  IntLike))","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinaryRight","package":"phobos","parentType":"Int128","signature":"Int128 opBinaryRight(string op,  Int)(const  Int op2) if ((op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")  &&\n         is(Int :  long)  &&  __traits(isIntegral,  Int))","url":"/ddoc/phobos/std/int128/Int128.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinaryRight","package":"phobos","parentType":"Int128","signature":"Int128 opBinaryRight(string op,  IntLike)(auto  ref  IntLike op2) if ((op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")  &&\n         is(IntLike :  long)  && !__traits(isIntegral,  IntLike))","url":"/ddoc/phobos/std/int128/Int128.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op)(long  op2) if (op ==  \"<<\")","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op)(long  op2) if (op ==  \">>\")","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opBinary","package":"phobos","parentType":"Int128","signature":"Int128 opBinary(string op)(long  op2) if (op ==  \">>>\")","url":"/ddoc/phobos/std/int128/Int128.opBinary.html"},{"doc":"arithmetic assignment operators += -= *= /= %= &= |= ^= <<= >>= >>>= Params: op = one of +, -, etc. op2 = second operand Returns: lvalue of updated...","kind":"method","module":"std.int128","name":"opOpAssign","package":"phobos","parentType":"Int128","signature":"Int128 opOpAssign(string op)(Int128 op2) if (op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\" ||\n         op ==  \"<<\" ||  op ==  \">>\" ||  op ==  \">>>\")","url":"/ddoc/phobos/std/int128/Int128.opOpAssign.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opOpAssign","package":"phobos","parentType":"Int128","signature":"Int128 opOpAssign(string op,  Int)(auto  ref  Int op2) if ((op ==  \"+\" ||  op ==  \"-\" ||\n         op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"%\" ||\n         op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\" ||\n         op ==  \"<<\" ||  op ==  \">>\" ||  op ==  \">>>\")\n         &&  is(Int :  long))","url":"/ddoc/phobos/std/int128/Int128.opOpAssign.html"},{"doc":"support arithmentic comparison operators < <= > >= Params: op2 = right hand operand Returns: -1 for less than, 0 for equals, 1 for greater than","kind":"method","module":"std.int128","name":"opCmp","package":"phobos","parentType":"Int128","signature":"int opCmp(Int128 op2)","url":"/ddoc/phobos/std/int128/Int128.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opCmp","package":"phobos","parentType":"Int128","signature":"int opCmp(Int)(const  Int op2) if (is(Int :  long)  &&  __traits(isIntegral,  Int))","url":"/ddoc/phobos/std/int128/Int128.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.int128","name":"opCmp","package":"phobos","parentType":"Int128","signature":"int opCmp(IntLike)(auto  ref  IntLike op2) if (is(IntLike :  long)  && !__traits(isIntegral,  IntLike))","url":"/ddoc/phobos/std/int128/Int128.opCmp.html"},{"doc":"Formats `Int128` with either `%d`, `%x`, `%X`, or `%s` (same as `%d`).","kind":"method","module":"std.int128","name":"toString","package":"phobos","parentType":"Int128","signature":"void toString(Writer,  FormatSpec)(scope  ref  Writer sink,  scope  const  ref  FormatSpec fmt)","url":"/ddoc/phobos/std/int128/Int128.toString.html"},{"doc":"","kind":"module","module":"std.internal.attributes","name":"std.internal.attributes","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/attributes.html"},{"doc":"Used to annotate `unittest`s which need to be tested in a `-betterC` environment.","kind":"variable","module":"std.internal.attributes","name":"betterC","package":"phobos","parentType":"","signature":"betterC","url":"/ddoc/phobos/std/internal/attributes.html#betterC"},{"doc":"Helper functions for working with $(I C strings).","kind":"module","module":"std.internal.cstring","name":"std.internal.cstring","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/cstring.html"},{"doc":"Creates temporary 0-terminated $(I C string) with copy of passed text.","kind":"function","module":"std.internal.cstring","name":"tempCString","package":"phobos","parentType":"","signature":"auto tempCString(To =  char,  From)(scope  From str) if (isSomeChar!To && (isInputRange!From ||  isSomeString!From)  &&\n     isSomeChar!(ElementEncodingType!From))","url":"/ddoc/phobos/std/internal/cstring/tempCString.html"},{"doc":"","kind":"function","module":"std.internal.cstring","name":"trustedRealloc","package":"phobos","parentType":"","signature":"To[] trustedRealloc(To)(return  scope  To[]  buf)","url":"/ddoc/phobos/std/internal/cstring/trustedRealloc.html"},{"doc":"","kind":"function","module":"std.internal.cstring","name":"trustedReallocStack","package":"phobos","parentType":"","signature":"To[] trustedReallocStack(To)(scope  To[]  buf,  size_t strLength)","url":"/ddoc/phobos/std/internal/cstring/trustedReallocStack.html"},{"doc":"","kind":"struct","module":"std.internal.cstring","name":"TempCStringBuffer","package":"phobos","parentType":"","signature":"TempCStringBuffer(To =  char)","url":"/ddoc/phobos/std/internal/cstring.html#TempCStringBuffer"},{"doc":"","kind":"method","module":"std.internal.cstring","name":"buffPtr","package":"phobos","parentType":"TempCStringBuffer","signature":"inout(To) * buffPtr()","url":"/ddoc/phobos/std/internal/cstring/TempCStringBuffer.buffPtr.html"},{"doc":"","kind":"method","module":"std.internal.cstring","name":"ptr","package":"phobos","parentType":"TempCStringBuffer","signature":"const(To) * ptr()","url":"/ddoc/phobos/std/internal/cstring/TempCStringBuffer.ptr.html"},{"doc":"","kind":"method","module":"std.internal.cstring","name":"opIndex","package":"phobos","parentType":"TempCStringBuffer","signature":"const(To)[] opIndex()","url":"/ddoc/phobos/std/internal/cstring/TempCStringBuffer.opIndex.html"},{"doc":"","kind":"method","module":"std.internal.cstring","name":"trustedVoidInit","package":"phobos","parentType":"TempCStringBuffer","signature":"TempCStringBuffer trustedVoidInit()","url":"/ddoc/phobos/std/internal/cstring/TempCStringBuffer.trustedVoidInit.html"},{"doc":"Computes SHA1 digests of arbitrary data, using an optimized algorithm with SSSE3 instructions.","kind":"module","module":"std.internal.digest.sha_SSSE3","name":"std.internal.digest.sha_SSSE3","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/digest/sha_SSSE3.html"},{"doc":"","kind":"module","module":"std.internal.entropy","name":"std.internal.entropy","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/entropy.html"},{"doc":"Retrieves random data from an applicable system CSPRNG.","kind":"function","module":"std.internal.entropy","name":"getEntropy","package":"phobos","parentType":"","signature":"EntropyResult getEntropy(scope  void[]  buffer)","url":"/ddoc/phobos/std/internal/entropy/getEntropy.html"},{"doc":"ditto","kind":"function","module":"std.internal.entropy","name":"getEntropy","package":"phobos","parentType":"","signature":"EntropyResult getEntropy(scope  ubyte[]  buffer)","url":"/ddoc/phobos/std/internal/entropy/getEntropy.html"},{"doc":"ditto Retrieves random data from an applicable system CSPRNG.","kind":"function","module":"std.internal.entropy","name":"getEntropy","package":"phobos","parentType":"","signature":"EntropyResult getEntropy(scope  void *  buffer,  size_t length)","url":"/ddoc/phobos/std/internal/entropy/getEntropy.html"},{"doc":"Manually set the entropy source to use for the current thread.","kind":"function","module":"std.internal.entropy","name":"forceEntropySource","package":"phobos","parentType":"","signature":"void forceEntropySource(EntropySource source)","url":"/ddoc/phobos/std/internal/entropy/forceEntropySource.html"},{"doc":"Retrieves random data from the requested entropy source.","kind":"function","module":"std.internal.entropy","name":"getEntropy","package":"phobos","parentType":"","signature":"EntropyResult getEntropy(scope  void *  buffer,  size_t length,  EntropySource source)","url":"/ddoc/phobos/std/internal/entropy/getEntropy.html"},{"doc":"Determines whether an `EntropyResult` reports the success of an operation.","kind":"function","module":"std.internal.entropy","name":"isOK","package":"phobos","parentType":"","signature":"bool isOK(const  EntropyResult value)","url":"/ddoc/phobos/std/internal/entropy/isOK.html"},{"doc":"Determines whether an `EntropyResult` reports the unvailability of the requested entropy source.","kind":"function","module":"std.internal.entropy","name":"isUnavailable","package":"phobos","parentType":"","signature":"bool isUnavailable(const  EntropyResult value)","url":"/ddoc/phobos/std/internal/entropy/isUnavailable.html"},{"doc":"","kind":"function","module":"std.internal.entropy","name":"crashOnError","package":"phobos","parentType":"","signature":"void crashOnError(const  EntropyResult value)","url":"/ddoc/phobos/std/internal/entropy/crashOnError.html"},{"doc":"","kind":"function","module":"std.internal.entropy","name":"saveSourceForNextUse","package":"phobos","parentType":"","signature":"void saveSourceForNextUse(const  EntropyResult result)","url":"/ddoc/phobos/std/internal/entropy/saveSourceForNextUse.html"},{"doc":"A CSPRNG suitable to retrieve cryptographically-secure random data from.","kind":"enum","module":"std.internal.entropy","name":"EntropySource","package":"phobos","parentType":"","signature":"EntropySource","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"Implements a $(I hunting) strategy for finding an entropy source that is available at runtime.","kind":"enum_member","module":"std.internal.entropy","name":"tryAll","package":"phobos","parentType":"","signature":"tryAll = - 1","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"Always fail.","kind":"enum_member","module":"std.internal.entropy","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"`/dev/urandom`","kind":"enum_member","module":"std.internal.entropy","name":"charDevURandom","package":"phobos","parentType":"","signature":"charDevURandom = 1","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"`/dev/random`","kind":"enum_member","module":"std.internal.entropy","name":"charDevRandom","package":"phobos","parentType":"","signature":"charDevRandom = 2","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"`getrandom` syscall or wrapper","kind":"enum_member","module":"std.internal.entropy","name":"getrandom","package":"phobos","parentType":"","signature":"getrandom = 3","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"`arc4random`","kind":"enum_member","module":"std.internal.entropy","name":"arc4random","package":"phobos","parentType":"","signature":"arc4random = 4","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"","kind":"enum_member","module":"std.internal.entropy","name":"getentropy","package":"phobos","parentType":"","signature":"getentropy = 5","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"Windows legacy CryptoAPI","kind":"enum_member","module":"std.internal.entropy","name":"cryptGenRandom","package":"phobos","parentType":"","signature":"cryptGenRandom = 6","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"Windows Cryptography API: Next Generation (“BCrypt”)","kind":"enum_member","module":"std.internal.entropy","name":"bcryptGenRandom","package":"phobos","parentType":"","signature":"bcryptGenRandom = 7","url":"/ddoc/phobos/std/internal/entropy.html#EntropySource"},{"doc":"","kind":"enum","module":"std.internal.entropy","name":"EntropyStatus","package":"phobos","parentType":"","signature":"EntropyStatus","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"success","kind":"enum_member","module":"std.internal.entropy","name":"ok","package":"phobos","parentType":"","signature":"ok = 0","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"catch-all error","kind":"enum_member","module":"std.internal.entropy","name":"unknownError","package":"phobos","parentType":"","signature":"unknownError = 1","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"An entropy source was unavailable.","kind":"enum_member","module":"std.internal.entropy","name":"unavailable","package":"phobos","parentType":"","signature":"unavailable = ","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"A dependency providing the entropy source turned out unavailable.","kind":"enum_member","module":"std.internal.entropy","name":"unavailableLibrary","package":"phobos","parentType":"","signature":"unavailableLibrary = ","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"The requested entropy source is not supported on this platform.","kind":"enum_member","module":"std.internal.entropy","name":"unavailablePlatform","package":"phobos","parentType":"","signature":"unavailablePlatform = ","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"Could not retrieve entropy from the selected source.","kind":"enum_member","module":"std.internal.entropy","name":"readError","package":"phobos","parentType":"","signature":"readError = ","url":"/ddoc/phobos/std/internal/entropy.html#EntropyStatus"},{"doc":"Status report returned by `getEntropy` functions.","kind":"struct","module":"std.internal.entropy","name":"EntropyResult","package":"phobos","parentType":"","signature":"EntropyResult","url":"/ddoc/phobos/std/internal/entropy.html#EntropyResult"},{"doc":"Returns: A human-readable status message.","kind":"method","module":"std.internal.entropy","name":"toString","package":"phobos","parentType":"EntropyResult","signature":"string toString()","url":"/ddoc/phobos/std/internal/entropy/EntropyResult.toString.html"},{"doc":"A “Chunks” implementation that works with `void[]`.","kind":"struct","module":"std.internal.entropy","name":"VoidChunks","package":"phobos","parentType":"","signature":"VoidChunks","url":"/ddoc/phobos/std/internal/entropy.html#VoidChunks"},{"doc":"","kind":"method","module":"std.internal.entropy","name":"empty","package":"phobos","parentType":"VoidChunks","signature":"bool empty()","url":"/ddoc/phobos/std/internal/entropy/VoidChunks.empty.html"},{"doc":"","kind":"method","module":"std.internal.entropy","name":"front","package":"phobos","parentType":"VoidChunks","signature":"inout(void)[] front()","url":"/ddoc/phobos/std/internal/entropy/VoidChunks.front.html"},{"doc":"","kind":"method","module":"std.internal.entropy","name":"popFront","package":"phobos","parentType":"VoidChunks","signature":"void popFront()","url":"/ddoc/phobos/std/internal/entropy/VoidChunks.popFront.html"},{"doc":"","kind":"struct","module":"std.internal.entropy","name":"SrcFunPair","package":"phobos","parentType":"","signature":"SrcFunPair(EntropySource source,  alias  func)","url":"/ddoc/phobos/std/internal/entropy.html#SrcFunPair"},{"doc":"","kind":"template","module":"std.internal.entropy","name":"isValidSupportedSource","package":"phobos","parentType":"","signature":"isValidSupportedSource(SupportedSource)","url":"/ddoc/phobos/std/internal/entropy.html#isValidSupportedSource"},{"doc":"","kind":"variable","module":"std.internal.entropy","name":"_entropySource","package":"phobos","parentType":"","signature":"EntropySource _entropySource","url":"/ddoc/phobos/std/internal/entropy.html#_entropySource"},{"doc":"Fundamental operations for arbitrary-precision arithmetic","kind":"module","module":"std.internal.math.biguintcore","name":"std.internal.math.biguintcore","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/math/biguintcore.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"getCacheLimit","package":"phobos","parentType":"","signature":"size_t getCacheLimit()","url":"/ddoc/phobos/std/internal/math/biguintcore/getCacheLimit.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"removeLeadingZeros","package":"phobos","parentType":"","signature":"inout(BigDigit) [] removeLeadingZeros(return  scope  inout(BigDigit) []  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/removeLeadingZeros.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"twosComplement","package":"phobos","parentType":"","signature":"void twosComplement(const(BigDigit) []  x,  BigDigit[]  result)","url":"/ddoc/phobos/std/internal/math/biguintcore/twosComplement.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"includeSign","package":"phobos","parentType":"","signature":"BigDigit[] includeSign(scope  const(BigDigit) []  x,  size_t minSize,  bool  sign)","url":"/ddoc/phobos/std/internal/math/biguintcore/includeSign.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"intpow","package":"phobos","parentType":"","signature":"T intpow(T)(T x,  ulong  n)","url":"/ddoc/phobos/std/internal/math/biguintcore/intpow.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"highestPowerBelowUintMax","package":"phobos","parentType":"","signature":"int highestPowerBelowUintMax(uint  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/highestPowerBelowUintMax.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"highestPowerBelowUlongMax","package":"phobos","parentType":"","signature":"int highestPowerBelowUlongMax(uint  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/highestPowerBelowUlongMax.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"sub","package":"phobos","parentType":"","signature":"BigDigit [] sub(const  scope  BigDigit []  x,  const  scope  BigDigit []  y,  bool  * negative)","url":"/ddoc/phobos/std/internal/math/biguintcore/sub.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"add","package":"phobos","parentType":"","signature":"BigDigit [] add(const  scope  BigDigit []  a,  const  scope  BigDigit []  b)","url":"/ddoc/phobos/std/internal/math/biguintcore/add.html"},{"doc":"return x + y","kind":"function","module":"std.internal.math.biguintcore","name":"addInt","package":"phobos","parentType":"","signature":"BigDigit [] addInt(const  BigDigit[]  x,  ulong  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/addInt.html"},{"doc":"Return x - y. x must be greater than y.","kind":"function","module":"std.internal.math.biguintcore","name":"subInt","package":"phobos","parentType":"","signature":"BigDigit [] subInt(const  BigDigit[]  x,  ulong  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/subInt.html"},{"doc":"General unsigned multiply routine for bigints. Sets result = x * y.","kind":"function","module":"std.internal.math.biguintcore","name":"mulInternal","package":"phobos","parentType":"","signature":"void mulInternal(BigDigit[]  result,  const(BigDigit)[]  x,  const(BigDigit)[]  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/mulInternal.html"},{"doc":"General unsigned squaring routine for BigInts. Sets result = x*x. NOTE: If the highest half-digit of x is zero, the highest digit of result will al...","kind":"function","module":"std.internal.math.biguintcore","name":"squareInternal","package":"phobos","parentType":"","signature":"void squareInternal(BigDigit[]  result,  const  BigDigit[]  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/squareInternal.html"},{"doc":"if remainder is null, only calculate quotient.","kind":"function","module":"std.internal.math.biguintcore","name":"divModInternal","package":"phobos","parentType":"","signature":"void divModInternal(BigDigit []  quotient,  BigDigit[]  remainder,  const  BigDigit []  u,\n         const  BigDigit []  v)","url":"/ddoc/phobos/std/internal/math/biguintcore/divModInternal.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"biguintToHex","package":"phobos","parentType":"","signature":"char [] biguintToHex(return  scope  char []  buff,  const  scope  BigDigit []  data,  char  separator = 0,\n         LetterCase letterCase =  LetterCase.upper)","url":"/ddoc/phobos/std/internal/math/biguintcore/biguintToHex.html"},{"doc":"Convert a big uint into an octal string.","kind":"function","module":"std.internal.math.biguintcore","name":"biguintToOctal","package":"phobos","parentType":"","signature":"size_t biguintToOctal(char[]  buff,  const(BigDigit)[]  data)","url":"/ddoc/phobos/std/internal/math/biguintcore/biguintToOctal.html"},{"doc":"Convert a big uint into a decimal string.","kind":"function","module":"std.internal.math.biguintcore","name":"biguintToDecimal","package":"phobos","parentType":"","signature":"size_t biguintToDecimal(char []  buff,  BigDigit []  data)","url":"/ddoc/phobos/std/internal/math/biguintcore/biguintToDecimal.html"},{"doc":"Convert a decimal string into a big uint.","kind":"function","module":"std.internal.math.biguintcore","name":"biguintFromDecimal","package":"phobos","parentType":"","signature":"int biguintFromDecimal(Range)(BigDigit[]  data,  Range s) if (\n     isInputRange!Range &&\n     isSomeChar!(ElementType!Range)  &&\n    !isInfinite!Range)","url":"/ddoc/phobos/std/internal/math/biguintcore/biguintFromDecimal.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"mulSimple","package":"phobos","parentType":"","signature":"void mulSimple(BigDigit[]  result,  const(BigDigit) []  left,\n         const(BigDigit)[]  right)","url":"/ddoc/phobos/std/internal/math/biguintcore/mulSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"squareSimple","package":"phobos","parentType":"","signature":"void squareSimple(BigDigit[]  result,  const(BigDigit) []  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/squareSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"addSimple","package":"phobos","parentType":"","signature":"uint addSimple(BigDigit[]  result,  const  BigDigit []  left,  const  BigDigit []  right)","url":"/ddoc/phobos/std/internal/math/biguintcore/addSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"subAssignSimple","package":"phobos","parentType":"","signature":"BigDigit subAssignSimple(BigDigit []  result,  const(BigDigit) []  right)","url":"/ddoc/phobos/std/internal/math/biguintcore/subAssignSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"addAssignSimple","package":"phobos","parentType":"","signature":"BigDigit addAssignSimple(BigDigit []  result,  const(BigDigit) []  right)","url":"/ddoc/phobos/std/internal/math/biguintcore/addAssignSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"addOrSubAssignSimple","package":"phobos","parentType":"","signature":"BigDigit addOrSubAssignSimple(BigDigit []  result,  const(BigDigit) []  right,\n         bool  wantSub)","url":"/ddoc/phobos/std/internal/math/biguintcore/addOrSubAssignSimple.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"less","package":"phobos","parentType":"","signature":"bool less(const(BigDigit)[]  x,  const(BigDigit)[]  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/less.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"inplaceSub","package":"phobos","parentType":"","signature":"bool inplaceSub(BigDigit[]  result,  const(BigDigit)[]  x,  const(BigDigit)[]  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/inplaceSub.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"karatsubaRequiredBuffSize","package":"phobos","parentType":"","signature":"size_t karatsubaRequiredBuffSize(size_t xlen)","url":"/ddoc/phobos/std/internal/math/biguintcore/karatsubaRequiredBuffSize.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"mulKaratsuba","package":"phobos","parentType":"","signature":"void mulKaratsuba(BigDigit []  result,  const(BigDigit) []  x,\n         const(BigDigit)[]  y,  BigDigit []  scratchbuff)","url":"/ddoc/phobos/std/internal/math/biguintcore/mulKaratsuba.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"squareKaratsuba","package":"phobos","parentType":"","signature":"void squareKaratsuba(BigDigit []  result,  const  BigDigit []  x,\n         BigDigit []  scratchbuff)","url":"/ddoc/phobos/std/internal/math/biguintcore/squareKaratsuba.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"schoolbookDivMod","package":"phobos","parentType":"","signature":"void schoolbookDivMod(BigDigit []  quotient,  BigDigit []  u,  in  BigDigit []  v)","url":"/ddoc/phobos/std/internal/math/biguintcore/schoolbookDivMod.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"itoaZeroPadded","package":"phobos","parentType":"","signature":"void itoaZeroPadded(char[]  output,  uint  value)","url":"/ddoc/phobos/std/internal/math/biguintcore/itoaZeroPadded.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"toHexZeroPadded","package":"phobos","parentType":"","signature":"void toHexZeroPadded(char[]  output,  uint  value,\n         LetterCase letterCase =  LetterCase.upper)","url":"/ddoc/phobos/std/internal/math/biguintcore/toHexZeroPadded.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"highestDifferentDigit","package":"phobos","parentType":"","signature":"size_t highestDifferentDigit(const  BigDigit []  left,  const  BigDigit []  right)","url":"/ddoc/phobos/std/internal/math/biguintcore/highestDifferentDigit.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"firstNonZeroDigit","package":"phobos","parentType":"","signature":"int firstNonZeroDigit(const  BigDigit []  x)","url":"/ddoc/phobos/std/internal/math/biguintcore/firstNonZeroDigit.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"recursiveDivMod","package":"phobos","parentType":"","signature":"void recursiveDivMod(BigDigit[]  quotient,  BigDigit[]  u,  const(BigDigit)[]  v,\n                      BigDigit[]  scratch,  bool  mayOverflow =  false)","url":"/ddoc/phobos/std/internal/math/biguintcore/recursiveDivMod.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"adjustRemainder","package":"phobos","parentType":"","signature":"void adjustRemainder(BigDigit[]  quot,  BigDigit[]  rem,  const(BigDigit)[]  v,\n         ptrdiff_t k,\n         BigDigit[]  scratch,  bool  mayOverflow =  false)","url":"/ddoc/phobos/std/internal/math/biguintcore/adjustRemainder.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintcore","name":"blockDivMod","package":"phobos","parentType":"","signature":"void blockDivMod(BigDigit []  quotient,  BigDigit []  u,  in  BigDigit []  v)","url":"/ddoc/phobos/std/internal/math/biguintcore/blockDivMod.html"},{"doc":"","kind":"alias","module":"std.internal.math.biguintcore","name":"multibyteAdd","package":"phobos","parentType":"","signature":"multibyteAdd = multibyteAddSub!('+')","url":"/ddoc/phobos/std/internal/math/biguintcore.html#multibyteAdd"},{"doc":"","kind":"alias","module":"std.internal.math.biguintcore","name":"multibyteSub","package":"phobos","parentType":"","signature":"multibyteSub = multibyteAddSub!('-')","url":"/ddoc/phobos/std/internal/math/biguintcore.html#multibyteSub"},{"doc":"BigUint performs memory management and wraps the low-level calls.","kind":"struct","module":"std.internal.math.biguintcore","name":"BigUint","package":"phobos","parentType":"","signature":"BigUint","url":"/ddoc/phobos/std/internal/math/biguintcore.html#BigUint"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"uintLength","package":"phobos","parentType":"BigUint","signature":"size_t uintLength()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.uintLength.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"ulongLength","package":"phobos","parentType":"BigUint","signature":"size_t ulongLength()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.ulongLength.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"peekUlong","package":"phobos","parentType":"BigUint","signature":"ulong peekUlong(size_t n)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.peekUlong.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"peekUint","package":"phobos","parentType":"BigUint","signature":"uint peekUint(size_t n)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.peekUint.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opAssign","package":"phobos","parentType":"BigUint","signature":"void opAssign(Tulong)(Tulong u) if (is (Tulong ==  ulong))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opAssign.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opAssign","package":"phobos","parentType":"BigUint","signature":"void opAssign(Tdummy =  void)(BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opAssign.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opCmp","package":"phobos","parentType":"BigUint","signature":"int opCmp(Tdummy =  void)(const  BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opCmp.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opCmp","package":"phobos","parentType":"BigUint","signature":"int opCmp(Tulong)(Tulong y) if (is (Tulong ==  ulong))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opCmp.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opEquals","package":"phobos","parentType":"BigUint","signature":"bool opEquals(Tdummy =  void)(ref  const  BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opEquals.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opEquals","package":"phobos","parentType":"BigUint","signature":"bool opEquals(Tdummy =  void)(ulong  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opEquals.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"isZero","package":"phobos","parentType":"BigUint","signature":"bool isZero()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.isZero.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"numBytes","package":"phobos","parentType":"BigUint","signature":"size_t numBytes()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.numBytes.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"toDecimalString","package":"phobos","parentType":"BigUint","signature":"char [] toDecimalString(int  frontExtraBytes)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.toDecimalString.html"},{"doc":"Convert to a hex string, printing a minimum number of digits 'minPadding', allocating an additional 'frontExtraBytes' at the start of the string. P...","kind":"method","module":"std.internal.math.biguintcore","name":"toHexString","package":"phobos","parentType":"BigUint","signature":"char [] toHexString(int  frontExtraBytes,  char  separator =  0,\n             int  minPadding = 0,  char  padChar =  '0',\n             LetterCase letterCase =  LetterCase.upper)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.toHexString.html"},{"doc":"Convert to an octal string.","kind":"method","module":"std.internal.math.biguintcore","name":"toOctalString","package":"phobos","parentType":"BigUint","signature":"char[] toOctalString()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.toOctalString.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"fromHexString","package":"phobos","parentType":"BigUint","signature":"bool fromHexString(Range)(Range s) if (isBidirectionalRange!Range &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.fromHexString.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"fromDecimalString","package":"phobos","parentType":"BigUint","signature":"bool fromDecimalString(Range)(Range s) if (isForwardRange!Range &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.fromDecimalString.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"fromMagnitude","package":"phobos","parentType":"BigUint","signature":"void fromMagnitude(Range)(Range magnitude) if (isInputRange!Range\n        && (isForwardRange!Range ||  hasLength!Range)\n         &&  isUnsigned!(ElementType!Range))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.fromMagnitude.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opBinary","package":"phobos","parentType":"BigUint","signature":"BigUint opBinary(string op,  Tulong)(Tulong y) if (op ==  \">>\" &&  is (Tulong ==  ulong))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opBinary.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"opBinary","package":"phobos","parentType":"BigUint","signature":"BigUint opBinary(string op,  Tulong)(Tulong y) if (op ==  \"<<\" &&  is (Tulong ==  ulong))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.opBinary.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"addOrSubInt","package":"phobos","parentType":"BigUint","signature":"BigUint addOrSubInt(Tulong)(const  scope  BigUint x,  Tulong y,  bool  wantSub,  ref  bool  sign) if (is(Tulong ==  ulong))","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.addOrSubInt.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"addOrSub","package":"phobos","parentType":"BigUint","signature":"BigUint addOrSub(scope  BigUint x,  scope  BigUint y,  bool  wantSub,  ref  bool  sign)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.addOrSub.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"mulInt","package":"phobos","parentType":"BigUint","signature":"BigUint mulInt(T =  ulong)(BigUint x,  T y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.mulInt.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"mul","package":"phobos","parentType":"BigUint","signature":"BigUint mul(scope  BigUint x,  scope  BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.mul.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"divInt","package":"phobos","parentType":"BigUint","signature":"BigUint divInt(T)(return  scope  BigUint x,  T y_) if (  is(immutable  T ==  immutable  uint) )","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.divInt.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"divInt","package":"phobos","parentType":"BigUint","signature":"BigUint divInt(T)(scope  BigUint x,  T y) if (  is(immutable  T ==  immutable  ulong) )","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.divInt.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"modInt","package":"phobos","parentType":"BigUint","signature":"uint modInt(T)(scope  BigUint x,  T y_) if (  is(immutable  T ==  immutable  uint) )","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.modInt.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"div","package":"phobos","parentType":"BigUint","signature":"BigUint div(return  scope  BigUint x,  scope  BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.div.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"mod","package":"phobos","parentType":"BigUint","signature":"BigUint mod(return  scope  BigUint x,  scope  BigUint y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.mod.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"divMod","package":"phobos","parentType":"BigUint","signature":"void divMod(BigUint x,  scope  BigUint y,\n                        out  BigUint quotient,  out  BigUint remainder)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.divMod.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"bitwiseOp","package":"phobos","parentType":"BigUint","signature":"BigUint bitwiseOp(string op)(scope  BigUint x,  scope  BigUint y,  bool  xSign,  bool  ySign,  ref  bool  resultSign) if (op ==  \"|\" ||  op ==  \"^\" ||  op ==  \"&\")","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.bitwiseOp.html"},{"doc":"Return a BigUint which is x raised to the power of y. Method: Powers of 2 are removed from x, then left-to-right binary exponentiation is used. Mem...","kind":"method","module":"std.internal.math.biguintcore","name":"pow","package":"phobos","parentType":"BigUint","signature":"BigUint pow(return  scope  BigUint x,  ulong  y)","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.pow.html"},{"doc":"","kind":"method","module":"std.internal.math.biguintcore","name":"toHash","package":"phobos","parentType":"BigUint","signature":"size_t toHash()","url":"/ddoc/phobos/std/internal/math/biguintcore/BigUint.toHash.html"},{"doc":"","kind":"template","module":"std.internal.math.biguintcore","name":"maxBigDigits","package":"phobos","parentType":"","signature":"maxBigDigits(T)","url":"/ddoc/phobos/std/internal/math/biguintcore.html#maxBigDigits"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"FASTDIVLIMIT","package":"phobos","parentType":"","signature":"size_t FASTDIVLIMIT","url":"/ddoc/phobos/std/internal/math/biguintcore.html#FASTDIVLIMIT"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"BigDigitBits","package":"phobos","parentType":"","signature":"BigDigitBits","url":"/ddoc/phobos/std/internal/math/biguintcore.html#BigDigitBits"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"ZERO","package":"phobos","parentType":"","signature":"BigDigit[] ZERO","url":"/ddoc/phobos/std/internal/math/biguintcore.html#ZERO"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"ONE","package":"phobos","parentType":"","signature":"BigDigit[] ONE","url":"/ddoc/phobos/std/internal/math/biguintcore.html#ONE"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"TWO","package":"phobos","parentType":"","signature":"BigDigit[] TWO","url":"/ddoc/phobos/std/internal/math/biguintcore.html#TWO"},{"doc":"","kind":"variable","module":"std.internal.math.biguintcore","name":"TEN","package":"phobos","parentType":"","signature":"BigDigit[] TEN","url":"/ddoc/phobos/std/internal/math/biguintcore.html#TEN"},{"doc":"Arbitrary precision arithmetic ('bignum') for processors with no asm support","kind":"module","module":"std.internal.math.biguintnoasm","name":"std.internal.math.biguintnoasm","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/math/biguintnoasm.html"},{"doc":"Multi-byte addition or subtraction dest[] = src1[] + src2[] + carry (0 or 1). or dest[] = src1[] - src2[] - carry (0 or 1). Returns carry or borrow...","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteAddSub","package":"phobos","parentType":"","signature":"uint multibyteAddSub(char  op)(uint[]  dest,  const(uint) []  src1,\n     const (uint) []  src2,  uint  carry)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteAddSub.html"},{"doc":"dest[] += carry, or dest[] -= carry. op must be '+' or '-' Returns final carry or borrow (0 or 1)","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteIncrementAssign","package":"phobos","parentType":"","signature":"uint multibyteIncrementAssign(char  op)(uint[]  dest,  uint  carry)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteIncrementAssign.html"},{"doc":"dest[] = src[] << numbits numbits must be in the range 1 .. 31","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteShl","package":"phobos","parentType":"","signature":"uint multibyteShl(uint []  dest,  const(uint) []  src,  uint  numbits)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteShl.html"},{"doc":"dest[] = src[] >> numbits numbits must be in the range 1 .. 31","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteShr","package":"phobos","parentType":"","signature":"void multibyteShr(uint []  dest,  const(uint) []  src,  uint  numbits)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteShr.html"},{"doc":"dest[] = src[] * multiplier + carry. Returns carry.","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteMul","package":"phobos","parentType":"","signature":"uint multibyteMul(uint[]  dest,  const(uint)[]  src,  uint  multiplier,  uint  carry)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteMul.html"},{"doc":"dest[] += src[] * multiplier + carry(0 .. FFFF_FFFF). Returns carry out of MSB (0 .. FFFF_FFFF).","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteMulAdd","package":"phobos","parentType":"","signature":"uint multibyteMulAdd(char  op)(uint []  dest,  const(uint)[]  src,\n     uint  multiplier,  uint  carry)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteMulAdd.html"},{"doc":"Sets result = result[0 .. left.length] + left * right","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteMultiplyAccumulate","package":"phobos","parentType":"","signature":"void multibyteMultiplyAccumulate(uint []  dest,  const(uint)[]  left,  const(uint)\n        []  right)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteMultiplyAccumulate.html"},{"doc":"dest[] /= divisor. overflow is the initial remainder, and must be in the range 0 .. divisor-1.","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteDivAssign","package":"phobos","parentType":"","signature":"uint multibyteDivAssign(uint []  dest,  uint  divisor,  uint  overflow)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteDivAssign.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteAddDiagonalSquares","package":"phobos","parentType":"","signature":"void multibyteAddDiagonalSquares(uint[]  dest,  const(uint)[]  src)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteAddDiagonalSquares.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteTriangleAccumulate","package":"phobos","parentType":"","signature":"void multibyteTriangleAccumulate(uint[]  dest,  const(uint)[]  x)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteTriangleAccumulate.html"},{"doc":"","kind":"function","module":"std.internal.math.biguintnoasm","name":"multibyteSquare","package":"phobos","parentType":"","signature":"void multibyteSquare(BigDigit[]  result,  const(BigDigit) []  x)","url":"/ddoc/phobos/std/internal/math/biguintnoasm/multibyteSquare.html"},{"doc":"","kind":"alias","module":"std.internal.math.biguintnoasm","name":"BigDigit","package":"phobos","parentType":"","signature":"BigDigit = uint","url":"/ddoc/phobos/std/internal/math/biguintnoasm.html#BigDigit"},{"doc":"","kind":"variable","module":"std.internal.math.biguintnoasm","name":"KARATSUBALIMIT","package":"phobos","parentType":"","signature":"int KARATSUBALIMIT","url":"/ddoc/phobos/std/internal/math/biguintnoasm.html#KARATSUBALIMIT"},{"doc":"","kind":"variable","module":"std.internal.math.biguintnoasm","name":"KARATSUBASQUARELIMIT","package":"phobos","parentType":"","signature":"int KARATSUBASQUARELIMIT","url":"/ddoc/phobos/std/internal/math/biguintnoasm.html#KARATSUBASQUARELIMIT"},{"doc":"Optimised asm arbitrary precision arithmetic ('bignum') routines for X86 processors.","kind":"module","module":"std.internal.math.biguintx86","name":"std.internal.math.biguintx86","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/math/biguintx86.html"},{"doc":"Error Functions and Normal Distribution.","kind":"module","module":"std.internal.math.errorfunction","name":"std.internal.math.errorfunction","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/math/errorfunction.html"},{"doc":"","kind":"function","module":"std.internal.math.errorfunction","name":"rationalPoly","package":"phobos","parentType":"","signature":"T rationalPoly(T)(T x,  const(T) []  numerator,  const(T) []  denominator)","url":"/ddoc/phobos/std/internal/math/errorfunction/rationalPoly.html"},{"doc":"Complementary error function","kind":"function","module":"std.internal.math.errorfunction","name":"erfc","package":"phobos","parentType":"","signature":"real erfc(real  a)","url":"/ddoc/phobos/std/internal/math/errorfunction/erfc.html"},{"doc":"Error function","kind":"function","module":"std.internal.math.errorfunction","name":"erf","package":"phobos","parentType":"","signature":"real erf(real  x)","url":"/ddoc/phobos/std/internal/math/errorfunction/erf.html"},{"doc":"","kind":"function","module":"std.internal.math.errorfunction","name":"expx2","package":"phobos","parentType":"","signature":"real expx2(real  x,  int  sign)","url":"/ddoc/phobos/std/internal/math/errorfunction/expx2.html"},{"doc":"","kind":"function","module":"std.internal.math.errorfunction","name":"normalDistributionImpl","package":"phobos","parentType":"","signature":"real normalDistributionImpl(real  a)","url":"/ddoc/phobos/std/internal/math/errorfunction/normalDistributionImpl.html"},{"doc":"","kind":"function","module":"std.internal.math.errorfunction","name":"normalDistributionInvImpl","package":"phobos","parentType":"","signature":"real normalDistributionInvImpl(real  p)","url":"/ddoc/phobos/std/internal/math/errorfunction/normalDistributionInvImpl.html"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"EXP_2","package":"phobos","parentType":"","signature":"real EXP_2","url":"/ddoc/phobos/std/internal/math/errorfunction.html#EXP_2"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"SQRT2PI","package":"phobos","parentType":"","signature":"real SQRT2PI","url":"/ddoc/phobos/std/internal/math/errorfunction.html#SQRT2PI"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"MAXLOG","package":"phobos","parentType":"","signature":"real MAXLOG","url":"/ddoc/phobos/std/internal/math/errorfunction.html#MAXLOG"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"MINLOG","package":"phobos","parentType":"","signature":"real MINLOG","url":"/ddoc/phobos/std/internal/math/errorfunction.html#MINLOG"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"P","package":"phobos","parentType":"","signature":"real[10] P","url":"/ddoc/phobos/std/internal/math/errorfunction.html#P"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"Q","package":"phobos","parentType":"","signature":"real[11] Q","url":"/ddoc/phobos/std/internal/math/errorfunction.html#Q"},{"doc":"","kind":"variable","module":"std.internal.math.errorfunction","name":"isIEEEQuadruple","package":"phobos","parentType":"","signature":"isIEEEQuadruple","url":"/ddoc/phobos/std/internal/math/errorfunction.html#isIEEEQuadruple"},{"doc":"* Implementation of the gamma and beta functions, and their integrals. * * License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0). * Copyrig...","kind":"module","module":"std.internal.math.gammafunction","name":"std.internal.math.gammafunction","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/math/gammafunction.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"gammaStirling","package":"phobos","parentType":"","signature":"real gammaStirling(real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/gammaStirling.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"igammaTemmeLarge","package":"phobos","parentType":"","signature":"real igammaTemmeLarge(real  a,  real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/igammaTemmeLarge.html"},{"doc":"The Gamma function, $(GAMMA)(x)","kind":"function","module":"std.internal.math.gammafunction","name":"gamma","package":"phobos","parentType":"","signature":"real gamma(real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/gamma.html"},{"doc":"Natural logarithm of gamma function.","kind":"function","module":"std.internal.math.gammafunction","name":"logGamma","package":"phobos","parentType":"","signature":"real logGamma(real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/logGamma.html"},{"doc":"sgn($(GAMMA)(x))","kind":"function","module":"std.internal.math.gammafunction","name":"sgnGamma","package":"phobos","parentType":"","signature":"real sgnGamma(in  real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/sgnGamma.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"betaLarge","package":"phobos","parentType":"","signature":"real betaLarge(in  real  x,  in  real  y)","url":"/ddoc/phobos/std/internal/math/gammafunction/betaLarge.html"},{"doc":"B(x,y)","kind":"function","module":"std.internal.math.gammafunction","name":"beta","package":"phobos","parentType":"","signature":"real beta(in  real  x,  in  real  y)","url":"/ddoc/phobos/std/internal/math/gammafunction/beta.html"},{"doc":"Incomplete beta integral","kind":"function","module":"std.internal.math.gammafunction","name":"betaIncomplete","package":"phobos","parentType":"","signature":"real betaIncomplete(real  aa,  real  bb,  real  xx )","url":"/ddoc/phobos/std/internal/math/gammafunction/betaIncomplete.html"},{"doc":"Inverse of incomplete beta integral","kind":"function","module":"std.internal.math.gammafunction","name":"betaIncompleteInv","package":"phobos","parentType":"","signature":"real betaIncompleteInv(real  aa,  real  bb,  real  yy0 )","url":"/ddoc/phobos/std/internal/math/gammafunction/betaIncompleteInv.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"betaDistExpansion1","package":"phobos","parentType":"","signature":"real betaDistExpansion1(real  a,  real  b,  real  x )","url":"/ddoc/phobos/std/internal/math/gammafunction/betaDistExpansion1.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"betaDistExpansion2","package":"phobos","parentType":"","signature":"real betaDistExpansion2(real  a,  real  b,  real  x )","url":"/ddoc/phobos/std/internal/math/gammafunction/betaDistExpansion2.html"},{"doc":"","kind":"function","module":"std.internal.math.gammafunction","name":"betaDistPowerSeries","package":"phobos","parentType":"","signature":"real betaDistPowerSeries(real  a,  real  b,  real  x )","url":"/ddoc/phobos/std/internal/math/gammafunction/betaDistPowerSeries.html"},{"doc":"Incomplete gamma integral and its complement","kind":"function","module":"std.internal.math.gammafunction","name":"gammaIncomplete","package":"phobos","parentType":"","signature":"real gammaIncomplete(real  a,  real  x )","url":"/ddoc/phobos/std/internal/math/gammafunction/gammaIncomplete.html"},{"doc":"ditto","kind":"function","module":"std.internal.math.gammafunction","name":"gammaIncompleteCompl","package":"phobos","parentType":"","signature":"real gammaIncompleteCompl(real  a,  real  x )","url":"/ddoc/phobos/std/internal/math/gammafunction/gammaIncompleteCompl.html"},{"doc":"Inverse of complemented incomplete gamma integral","kind":"function","module":"std.internal.math.gammafunction","name":"gammaIncompleteComplInv","package":"phobos","parentType":"","signature":"real gammaIncompleteComplInv(real  a,  real  p)","url":"/ddoc/phobos/std/internal/math/gammafunction/gammaIncompleteComplInv.html"},{"doc":"Digamma function","kind":"function","module":"std.internal.math.gammafunction","name":"digamma","package":"phobos","parentType":"","signature":"real digamma(real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/digamma.html"},{"doc":"Log Minus Digamma function","kind":"function","module":"std.internal.math.gammafunction","name":"logmdigamma","package":"phobos","parentType":"","signature":"real logmdigamma(real  x)","url":"/ddoc/phobos/std/internal/math/gammafunction/logmdigamma.html"},{"doc":"Inverse of the Log Minus Digamma function","kind":"function","module":"std.internal.math.gammafunction","name":"logmdigammaInverse","package":"phobos","parentType":"","signature":"real logmdigammaInverse(real  y)","url":"/ddoc/phobos/std/internal/math/gammafunction/logmdigammaInverse.html"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"SQRT2PI","package":"phobos","parentType":"","signature":"real SQRT2PI","url":"/ddoc/phobos/std/internal/math/gammafunction.html#SQRT2PI"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"EULERGAMMA","package":"phobos","parentType":"","signature":"real EULERGAMMA","url":"/ddoc/phobos/std/internal/math/gammafunction.html#EULERGAMMA"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"GammaNumeratorCoeffs","package":"phobos","parentType":"","signature":"real[8] GammaNumeratorCoeffs","url":"/ddoc/phobos/std/internal/math/gammafunction.html#GammaNumeratorCoeffs"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"GammaDenominatorCoeffs","package":"phobos","parentType":"","signature":"real[9] GammaDenominatorCoeffs","url":"/ddoc/phobos/std/internal/math/gammafunction.html#GammaDenominatorCoeffs"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"GammaSmallCoeffs","package":"phobos","parentType":"","signature":"real[9] GammaSmallCoeffs","url":"/ddoc/phobos/std/internal/math/gammafunction.html#GammaSmallCoeffs"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"GammaSmallNegCoeffs","package":"phobos","parentType":"","signature":"real[9] GammaSmallNegCoeffs","url":"/ddoc/phobos/std/internal/math/gammafunction.html#GammaSmallNegCoeffs"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"logGammaStirlingCoeffs","package":"phobos","parentType":"","signature":"real[7] logGammaStirlingCoeffs","url":"/ddoc/phobos/std/internal/math/gammafunction.html#logGammaStirlingCoeffs"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"logGammaNumerator","package":"phobos","parentType":"","signature":"real[7] logGammaNumerator","url":"/ddoc/phobos/std/internal/math/gammafunction.html#logGammaNumerator"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"logGammaDenominator","package":"phobos","parentType":"","signature":"real[8] logGammaDenominator","url":"/ddoc/phobos/std/internal/math/gammafunction.html#logGammaDenominator"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"BETA_BIG","package":"phobos","parentType":"","signature":"real BETA_BIG","url":"/ddoc/phobos/std/internal/math/gammafunction.html#BETA_BIG"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"BETA_BIGINV","package":"phobos","parentType":"","signature":"real BETA_BIGINV","url":"/ddoc/phobos/std/internal/math/gammafunction.html#BETA_BIGINV"},{"doc":"","kind":"variable","module":"std.internal.math.gammafunction","name":"Bn_n","package":"phobos","parentType":"","signature":"real [7] Bn_n","url":"/ddoc/phobos/std/internal/math/gammafunction.html#Bn_n"},{"doc":"","kind":"module","module":"std.internal.memory","name":"std.internal.memory","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/memory.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"enforceMalloc","package":"phobos","parentType":"","signature":"void * enforceMalloc()(size_t size)","url":"/ddoc/phobos/std/internal/memory/enforceMalloc.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"enforceCalloc","package":"phobos","parentType":"","signature":"void * enforceCalloc()(size_t nmemb,  size_t size)","url":"/ddoc/phobos/std/internal/memory/enforceCalloc.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"enforceRealloc","package":"phobos","parentType":"","signature":"void * enforceRealloc()(return  scope  void *  ptr,  size_t size)","url":"/ddoc/phobos/std/internal/memory/enforceRealloc.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"fakePureMalloc","package":"phobos","parentType":"","signature":"void * fakePureMalloc(size_t)","url":"/ddoc/phobos/std/internal/memory/fakePureMalloc.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"fakePureCalloc","package":"phobos","parentType":"","signature":"void * fakePureCalloc(size_t nmemb,  size_t size)","url":"/ddoc/phobos/std/internal/memory/fakePureCalloc.html"},{"doc":"","kind":"function","module":"std.internal.memory","name":"fakePureRealloc","package":"phobos","parentType":"","signature":"void * fakePureRealloc(return  scope  void *  ptr,  size_t size)","url":"/ddoc/phobos/std/internal/memory/fakePureRealloc.html"},{"doc":"","kind":"module","module":"std.internal.scopebuffer","name":"std.internal.scopebuffer","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/scopebuffer.html"},{"doc":"Creates a `ScopeBuffer` instance using type deduction - see $(LREF .ScopeBuffer.this) for details. Params: tmpbuf = the initial buffer to use Retur...","kind":"function","module":"std.internal.scopebuffer","name":"scopeBuffer","package":"phobos","parentType":"","signature":"auto scopeBuffer(T)(T[]  tmpbuf)","url":"/ddoc/phobos/std/internal/scopebuffer/scopeBuffer.html"},{"doc":"* ScopeBuffer encapsulates using a local array as a temporary buffer. * It is initialized with a local array that should be large enough for * most...","kind":"struct","module":"std.internal.scopebuffer","name":"ScopeBuffer","package":"phobos","parentType":"","signature":"ScopeBuffer(T,  alias  realloc = /*core.stdc.stdlib*/.realloc) if (isAssignable!T &&\n    !hasElaborateDestructor!T &&\n    !hasElaborateCopyConstructor!T &&\n    !hasElaborateAssign!T)","url":"/ddoc/phobos/std/internal/scopebuffer.html#ScopeBuffer"},{"doc":"Releases any memory used. This will invalidate any references returned by the `[]` operator. A destructor is not used, because that would make it n...","kind":"method","module":"std.internal.scopebuffer","name":"free","package":"phobos","parentType":"ScopeBuffer","signature":"void free()","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.free.html"},{"doc":"Append element c to the buffer. This member function makes `ScopeBuffer` an Output Range.","kind":"method","module":"std.internal.scopebuffer","name":"put","package":"phobos","parentType":"ScopeBuffer","signature":"void put(T c)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.put.html"},{"doc":"ditto","kind":"method","module":"std.internal.scopebuffer","name":"put","package":"phobos","parentType":"ScopeBuffer","signature":"void put(CT[]  s)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.put.html"},{"doc":"Returns: A slice into the temporary buffer. Warning: The result is only valid until the next `put()` or `ScopeBuffer` goes out of scope.","kind":"method","module":"std.internal.scopebuffer","name":"opSlice","package":"phobos","parentType":"ScopeBuffer","signature":"inout(T)[] opSlice(size_t lower,  size_t upper)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.opSlice.html"},{"doc":"ditto","kind":"method","module":"std.internal.scopebuffer","name":"opSlice","package":"phobos","parentType":"ScopeBuffer","signature":"inout(T)[] opSlice()","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.opSlice.html"},{"doc":"Returns: The element at index i.","kind":"method","module":"std.internal.scopebuffer","name":"opIndex","package":"phobos","parentType":"ScopeBuffer","signature":"inout(T) opIndex(size_t i)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.opIndex.html"},{"doc":"Returns: The number of elements in the `ScopeBuffer`.","kind":"method","module":"std.internal.scopebuffer","name":"length","package":"phobos","parentType":"ScopeBuffer","signature":"size_t length()","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.length.html"},{"doc":"Used to shrink the length of the buffer, typically to `0` so the buffer can be reused. Cannot be used to extend the length of the buffer.","kind":"method","module":"std.internal.scopebuffer","name":"length","package":"phobos","parentType":"ScopeBuffer","signature":"void length(size_t i)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.length.html"},{"doc":"","kind":"method","module":"std.internal.scopebuffer","name":"resize","package":"phobos","parentType":"ScopeBuffer","signature":"void resize(size_t newsize)","url":"/ddoc/phobos/std/internal/scopebuffer/ScopeBuffer.resize.html"},{"doc":"","kind":"module","module":"std.internal.unicode_comp","name":"std.internal.unicode_comp","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/unicode_comp.html"},{"doc":"License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).","kind":"module","module":"std.internal.unicode_decomp","name":"std.internal.unicode_decomp","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/unicode_decomp.html"},{"doc":"License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).","kind":"module","module":"std.internal.unicode_grapheme","name":"std.internal.unicode_grapheme","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/unicode_grapheme.html"},{"doc":"License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).","kind":"module","module":"std.internal.unicode_norm","name":"std.internal.unicode_norm","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/unicode_norm.html"},{"doc":"License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).","kind":"module","module":"std.internal.unicode_tables","name":"std.internal.unicode_tables","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/unicode_tables.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"simpleCaseTable","package":"phobos","parentType":"","signature":"SCE simpleCaseTable(size_t i)","url":"/ddoc/phobos/std/internal/unicode_tables/simpleCaseTable.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"fullCaseTable","package":"phobos","parentType":"","signature":"FCE fullCaseTable(size_t index)","url":"/ddoc/phobos/std/internal/unicode_tables/fullCaseTable.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isFormatGen","package":"phobos","parentType":"","signature":"bool isFormatGen(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isFormatGen.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isControlGen","package":"phobos","parentType":"","signature":"bool isControlGen(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isControlGen.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isSpaceGen","package":"phobos","parentType":"","signature":"bool isSpaceGen(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isSpaceGen.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isWhiteGen","package":"phobos","parentType":"","signature":"bool isWhiteGen(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isWhiteGen.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isHangL","package":"phobos","parentType":"","signature":"bool isHangL(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isHangL.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isHangV","package":"phobos","parentType":"","signature":"bool isHangV(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isHangV.html"},{"doc":"","kind":"function","module":"std.internal.unicode_tables","name":"isHangT","package":"phobos","parentType":"","signature":"bool isHangT(dchar  ch)","url":"/ddoc/phobos/std/internal/unicode_tables/isHangT.html"},{"doc":"Simple Case Entry, wrapper around uint to extract bit fields from simpleCaseTable()","kind":"struct","module":"std.internal.unicode_tables","name":"SCE","package":"phobos","parentType":"","signature":"SCE","url":"/ddoc/phobos/std/internal/unicode_tables.html#SCE"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"ch","package":"phobos","parentType":"SCE","signature":"int ch()","url":"/ddoc/phobos/std/internal/unicode_tables/SCE.ch.html"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"n","package":"phobos","parentType":"SCE","signature":"int n()","url":"/ddoc/phobos/std/internal/unicode_tables/SCE.n.html"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"size","package":"phobos","parentType":"SCE","signature":"int size()","url":"/ddoc/phobos/std/internal/unicode_tables/SCE.size.html"},{"doc":"Bit backed FullCaseEntry","kind":"struct","module":"std.internal.unicode_tables","name":"FCE","package":"phobos","parentType":"","signature":"FCE","url":"/ddoc/phobos/std/internal/unicode_tables.html#FCE"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"seq","package":"phobos","parentType":"FCE","signature":"dchar[3] seq()","url":"/ddoc/phobos/std/internal/unicode_tables/FCE.seq.html"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"n","package":"phobos","parentType":"FCE","signature":"ubyte n()","url":"/ddoc/phobos/std/internal/unicode_tables/FCE.n.html"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"size","package":"phobos","parentType":"FCE","signature":"ubyte size()","url":"/ddoc/phobos/std/internal/unicode_tables/FCE.size.html"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"entry_len","package":"phobos","parentType":"FCE","signature":"ubyte entry_len()","url":"/ddoc/phobos/std/internal/unicode_tables/FCE.entry_len.html"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"UnicodeProperty","package":"phobos","parentType":"","signature":"UnicodeProperty","url":"/ddoc/phobos/std/internal/unicode_tables.html#UnicodeProperty"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"TrieEntry","package":"phobos","parentType":"","signature":"TrieEntry(T...)","url":"/ddoc/phobos/std/internal/unicode_tables.html#TrieEntry"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"uniProps","package":"phobos","parentType":"","signature":"uniProps","url":"/ddoc/phobos/std/internal/unicode_tables.html#uniProps"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"tab","package":"phobos","parentType":"uniProps","signature":"_U[] tab()","url":"/ddoc/phobos/std/internal/unicode_tables/uniProps.tab.html"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"blocks","package":"phobos","parentType":"","signature":"blocks","url":"/ddoc/phobos/std/internal/unicode_tables.html#blocks"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"tab","package":"phobos","parentType":"blocks","signature":"_U[] tab()","url":"/ddoc/phobos/std/internal/unicode_tables/blocks.tab.html"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"scripts","package":"phobos","parentType":"","signature":"scripts","url":"/ddoc/phobos/std/internal/unicode_tables.html#scripts"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"tab","package":"phobos","parentType":"scripts","signature":"_U[] tab()","url":"/ddoc/phobos/std/internal/unicode_tables/scripts.tab.html"},{"doc":"","kind":"struct","module":"std.internal.unicode_tables","name":"hangul","package":"phobos","parentType":"","signature":"hangul","url":"/ddoc/phobos/std/internal/unicode_tables.html#hangul"},{"doc":"","kind":"method","module":"std.internal.unicode_tables","name":"tab","package":"phobos","parentType":"hangul","signature":"_U[] tab()","url":"/ddoc/phobos/std/internal/unicode_tables/hangul.tab.html"},{"doc":"The only purpose of this module is to do the static construction for std.windows.registry, to eliminate cyclic construction errors.","kind":"module","module":"std.internal.windows.advapi32","name":"std.internal.windows.advapi32","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/windows/advapi32.html"},{"doc":"","kind":"function","module":"std.internal.windows.advapi32","name":"isWow64","package":"phobos","parentType":"","signature":"bool isWow64()","url":"/ddoc/phobos/std/internal/windows/advapi32/isWow64.html"},{"doc":"","kind":"function","module":"std.internal.windows.advapi32","name":"loadAdvapi32","package":"phobos","parentType":"","signature":"void loadAdvapi32()","url":"/ddoc/phobos/std/internal/windows/advapi32/loadAdvapi32.html"},{"doc":"","kind":"function","module":"std.internal.windows.advapi32","name":"freeAdvapi32","package":"phobos","parentType":"","signature":"void freeAdvapi32()","url":"/ddoc/phobos/std/internal/windows/advapi32/freeAdvapi32.html"},{"doc":"","kind":"variable","module":"std.internal.windows.advapi32","name":"hAdvapi32","package":"phobos","parentType":"","signature":"HMODULE hAdvapi32","url":"/ddoc/phobos/std/internal/windows/advapi32.html#hAdvapi32"},{"doc":"","kind":"variable","module":"std.internal.windows.advapi32","name":"pRegDeleteKeyExW","package":"phobos","parentType":"","signature":"LONG function(\n         scope  const  HKEY hkey,  scope  const  LPCWSTR lpSubKey,\n         scope  const  REGSAM samDesired,  scope  const  DWORD reserved) pRegDeleteKeyExW","url":"/ddoc/phobos/std/internal/windows/advapi32.html#pRegDeleteKeyExW"},{"doc":"","kind":"module","module":"std.internal.windows.bcrypt","name":"std.internal.windows.bcrypt","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/internal/windows/bcrypt.html"},{"doc":"","kind":"function","module":"std.internal.windows.bcrypt","name":"bcryptGenRandom","package":"phobos","parentType":"","signature":"bool bcryptGenRandom(T)(out  T result)","url":"/ddoc/phobos/std/internal/windows/bcrypt/bcryptGenRandom.html"},{"doc":"","kind":"function","module":"std.internal.windows.bcrypt","name":"loadBcrypt","package":"phobos","parentType":"","signature":"void loadBcrypt()","url":"/ddoc/phobos/std/internal/windows/bcrypt/loadBcrypt.html"},{"doc":"","kind":"function","module":"std.internal.windows.bcrypt","name":"freeBcrypt","package":"phobos","parentType":"","signature":"void freeBcrypt()","url":"/ddoc/phobos/std/internal/windows/bcrypt/freeBcrypt.html"},{"doc":"","kind":"variable","module":"std.internal.windows.bcrypt","name":"hBcrypt","package":"phobos","parentType":"","signature":"HMODULE hBcrypt","url":"/ddoc/phobos/std/internal/windows/bcrypt.html#hBcrypt"},{"doc":"","kind":"variable","module":"std.internal.windows.bcrypt","name":"ptrBCryptGenRandom","package":"phobos","parentType":"","signature":"typeof(BCryptGenRandom) * ptrBCryptGenRandom","url":"/ddoc/phobos/std/internal/windows/bcrypt.html#ptrBCryptGenRandom"},{"doc":"Implements functionality to read and write JavaScript Object Notation values.","kind":"module","module":"std.json","name":"std.json","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/json.html"},{"doc":"Parses a serialized string and returns a tree of JSON values. Throws: $(LREF JSONException) if string does not follow the JSON grammar or the depth...","kind":"function","module":"std.json","name":"parseJSON","package":"phobos","parentType":"","signature":"JSONValue parseJSON(T)(T json,  int  maxDepth =  - 1,  JSONOptions options =  JSONOptions.none) if (isSomeFiniteCharInputRange!T)","url":"/ddoc/phobos/std/json/parseJSON.html"},{"doc":"Parses a serialized string and returns a tree of JSON values. Throws: $(LREF JSONException) if the depth exceeds the max depth. Params: json = json...","kind":"function","module":"std.json","name":"parseJSON","package":"phobos","parentType":"","signature":"JSONValue parseJSON(T)(T json,  JSONOptions options) if (isSomeFiniteCharInputRange!T)","url":"/ddoc/phobos/std/json/parseJSON.html"},{"doc":"Takes a tree of JSON values and returns the serialized string.","kind":"function","module":"std.json","name":"toJSON","package":"phobos","parentType":"","signature":"string toJSON(const  ref  JSONValue root,  in  bool  pretty =  false,  in  JSONOptions options =  JSONOptions.none)","url":"/ddoc/phobos/std/json/toJSON.html"},{"doc":"","kind":"function","module":"std.json","name":"toJSON","package":"phobos","parentType":"","signature":"void toJSON(Out)(\n     auto  ref  Out json,\n     const  ref  JSONValue root,\n     in  bool  pretty =  false,\n     in  JSONOptions options =  JSONOptions.none) if (isOutputRange!(Out, char))","url":"/ddoc/phobos/std/json/toJSON.html"},{"doc":"String literals used to represent special float values within JSON strings.","kind":"enum","module":"std.json","name":"JSONFloatLiteral","package":"phobos","parentType":"","signature":"JSONFloatLiteral : string","url":"/ddoc/phobos/std/json.html#JSONFloatLiteral"},{"doc":"String representation of floating-point NaN","kind":"enum_member","module":"std.json","name":"nan","package":"phobos","parentType":"","signature":"nan = \"NaN\"","url":"/ddoc/phobos/std/json.html#JSONFloatLiteral"},{"doc":"String representation of floating-point Infinity","kind":"enum_member","module":"std.json","name":"inf","package":"phobos","parentType":"","signature":"inf = \"Infinite\"","url":"/ddoc/phobos/std/json.html#JSONFloatLiteral"},{"doc":"String representation of floating-point negative Infinity","kind":"enum_member","module":"std.json","name":"negativeInf","package":"phobos","parentType":"","signature":"negativeInf = \"-Infinite\"","url":"/ddoc/phobos/std/json.html#JSONFloatLiteral"},{"doc":"Flags that control how JSON is encoded and parsed.","kind":"enum","module":"std.json","name":"JSONOptions","package":"phobos","parentType":"","signature":"JSONOptions","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Standard parsing and encoding","kind":"enum_member","module":"std.json","name":"none","package":"phobos","parentType":"","signature":"none = ","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Encode NaN and Inf float values as strings","kind":"enum_member","module":"std.json","name":"specialFloatLiterals","package":"phobos","parentType":"","signature":"specialFloatLiterals = 0x1","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Encode non-ASCII characters with a Unicode escape sequence","kind":"enum_member","module":"std.json","name":"escapeNonAsciiChars","package":"phobos","parentType":"","signature":"escapeNonAsciiChars = 0x2","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Do not escape slashes ('/')","kind":"enum_member","module":"std.json","name":"doNotEscapeSlashes","package":"phobos","parentType":"","signature":"doNotEscapeSlashes = 0x4","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Strictly follow RFC-8259 grammar when parsing","kind":"enum_member","module":"std.json","name":"strictParsing","package":"phobos","parentType":"","signature":"strictParsing = 0x8","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Preserve order of object keys when parsing","kind":"enum_member","module":"std.json","name":"preserveObjectOrder","package":"phobos","parentType":"","signature":"preserveObjectOrder = 0x16","url":"/ddoc/phobos/std/json.html#JSONOptions"},{"doc":"Enumeration of JSON types","kind":"enum","module":"std.json","name":"JSONType","package":"phobos","parentType":"","signature":"JSONType : byte","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"Indicates the type of a `JSONValue`.","kind":"enum_member","module":"std.json","name":"null_","package":"phobos","parentType":"","signature":"null_ = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"string","package":"phobos","parentType":"","signature":"string = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"integer","package":"phobos","parentType":"","signature":"integer = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"uinteger","package":"phobos","parentType":"","signature":"uinteger = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"float_","package":"phobos","parentType":"","signature":"float_ = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"array","package":"phobos","parentType":"","signature":"array = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"object","package":"phobos","parentType":"","signature":"object = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"true_","package":"phobos","parentType":"","signature":"true_ = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"ditto","kind":"enum_member","module":"std.json","name":"false_","package":"phobos","parentType":"","signature":"false_ = ","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"NULL","package":"phobos","parentType":"","signature":"NULL = null_","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"STRING","package":"phobos","parentType":"","signature":"STRING = string","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"INTEGER","package":"phobos","parentType":"","signature":"INTEGER = integer","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"UINTEGER","package":"phobos","parentType":"","signature":"UINTEGER = uinteger","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"FLOAT","package":"phobos","parentType":"","signature":"FLOAT = float_","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"ARRAY","package":"phobos","parentType":"","signature":"ARRAY = array","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"OBJECT","package":"phobos","parentType":"","signature":"OBJECT = object","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"TRUE","package":"phobos","parentType":"","signature":"TRUE = true_","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"enum_member","module":"std.json","name":"FALSE","package":"phobos","parentType":"","signature":"FALSE = false_","url":"/ddoc/phobos/std/json.html#JSONType"},{"doc":"","kind":"alias","module":"std.json","name":"JSON_TYPE","package":"phobos","parentType":"","signature":"JSON_TYPE = JSONType","url":"/ddoc/phobos/std/json.html#JSON_TYPE"},{"doc":"JSON value node","kind":"struct","module":"std.json","name":"JSONValue","package":"phobos","parentType":"","signature":"JSONValue","url":"/ddoc/phobos/std/json.html#JSONValue"},{"doc":"Returns the JSONType of the value stored in this structure.","kind":"method","module":"std.json","name":"type","package":"phobos","parentType":"JSONValue","signature":"JSONType type()","url":"/ddoc/phobos/std/json/JSONValue.type.html"},{"doc":"Value getter/setter for `JSONType.string`. Throws: `JSONException` for read access if `type` is not `JSONType.string`.","kind":"method","module":"std.json","name":"str","package":"phobos","parentType":"JSONValue","signature":"string str()","url":"/ddoc/phobos/std/json/JSONValue.str.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"str","package":"phobos","parentType":"JSONValue","signature":"string str(return  scope  string v)","url":"/ddoc/phobos/std/json/JSONValue.str.html"},{"doc":"Value getter/setter for `JSONType.integer`. Throws: `JSONException` for read access if `type` is not `JSONType.integer`.","kind":"method","module":"std.json","name":"integer","package":"phobos","parentType":"JSONValue","signature":"long integer()","url":"/ddoc/phobos/std/json/JSONValue.integer.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"integer","package":"phobos","parentType":"JSONValue","signature":"long integer(long  v)","url":"/ddoc/phobos/std/json/JSONValue.integer.html"},{"doc":"Value getter/setter for `JSONType.uinteger`. Throws: `JSONException` for read access if `type` is not `JSONType.uinteger`.","kind":"method","module":"std.json","name":"uinteger","package":"phobos","parentType":"JSONValue","signature":"ulong uinteger()","url":"/ddoc/phobos/std/json/JSONValue.uinteger.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"uinteger","package":"phobos","parentType":"JSONValue","signature":"ulong uinteger(ulong  v)","url":"/ddoc/phobos/std/json/JSONValue.uinteger.html"},{"doc":"Value getter/setter for `JSONType.float_`. Note that despite the name, this is a $(B 64)-bit `double`, not a 32-bit `float`. Throws: `JSONException...","kind":"method","module":"std.json","name":"floating","package":"phobos","parentType":"JSONValue","signature":"double floating()","url":"/ddoc/phobos/std/json/JSONValue.floating.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"floating","package":"phobos","parentType":"JSONValue","signature":"double floating(double  v)","url":"/ddoc/phobos/std/json/JSONValue.floating.html"},{"doc":"Value getter/setter for boolean stored in JSON. Throws: `JSONException` for read access if `this.type` is not `JSONType.true_` or `JSONType.false_`.","kind":"method","module":"std.json","name":"boolean","package":"phobos","parentType":"JSONValue","signature":"bool boolean()","url":"/ddoc/phobos/std/json/JSONValue.boolean.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"boolean","package":"phobos","parentType":"JSONValue","signature":"bool boolean(bool  v)","url":"/ddoc/phobos/std/json/JSONValue.boolean.html"},{"doc":"* Value getter/setter for unordered `JSONType.object`. * Throws: `JSONException` for read access if `type` is not * `JSONType.object` or the object...","kind":"method","module":"std.json","name":"object","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue[string]) object()","url":"/ddoc/phobos/std/json/JSONValue.object.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"object","package":"phobos","parentType":"JSONValue","signature":"JSONValue[string] object(return  scope  JSONValue[string]  v)","url":"/ddoc/phobos/std/json/JSONValue.object.html"},{"doc":"Value getter for unordered `JSONType.object`. Unlike `object`, this retrieves the object by value and can be used in @safe code.","kind":"method","module":"std.json","name":"objectNoRef","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue[string]) objectNoRef()","url":"/ddoc/phobos/std/json/JSONValue.objectNoRef.html"},{"doc":"* Value getter/setter for ordered `JSONType.object`. * Throws: `JSONException` for read access if `type` is not * `JSONType.object` or the object i...","kind":"method","module":"std.json","name":"orderedObject","package":"phobos","parentType":"JSONValue","signature":"inout(OrderedObjectMember[]) orderedObject()","url":"/ddoc/phobos/std/json/JSONValue.orderedObject.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"orderedObject","package":"phobos","parentType":"JSONValue","signature":"OrderedObjectMember[] orderedObject(return  scope  OrderedObjectMember[]  v)","url":"/ddoc/phobos/std/json/JSONValue.orderedObject.html"},{"doc":"Value getter for ordered `JSONType.object`. Unlike `orderedObject`, this retrieves the object by value and can be used in @safe code.","kind":"method","module":"std.json","name":"orderedObjectNoRef","package":"phobos","parentType":"JSONValue","signature":"inout(OrderedObjectMember[]) orderedObjectNoRef()","url":"/ddoc/phobos/std/json/JSONValue.orderedObjectNoRef.html"},{"doc":"Returns `true` if the order of keys of the represented object is being preserved.","kind":"method","module":"std.json","name":"isOrdered","package":"phobos","parentType":"JSONValue","signature":"bool isOrdered()","url":"/ddoc/phobos/std/json/JSONValue.isOrdered.html"},{"doc":"* Value getter/setter for `JSONType.array`. * Throws: `JSONException` for read access if `type` is not * `JSONType.array`. * Note: This is @system ...","kind":"method","module":"std.json","name":"array","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue[]) array()","url":"/ddoc/phobos/std/json/JSONValue.array.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"array","package":"phobos","parentType":"JSONValue","signature":"JSONValue[] array(return  scope  JSONValue[]  v)","url":"/ddoc/phobos/std/json/JSONValue.array.html"},{"doc":"Value getter for `JSONType.array`. Unlike `array`, this retrieves the array by value and can be used in @safe code.","kind":"method","module":"std.json","name":"arrayNoRef","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue[]) arrayNoRef()","url":"/ddoc/phobos/std/json/JSONValue.arrayNoRef.html"},{"doc":"Test whether the type is `JSONType.null_`","kind":"method","module":"std.json","name":"isNull","package":"phobos","parentType":"JSONValue","signature":"bool isNull()","url":"/ddoc/phobos/std/json/JSONValue.isNull.html"},{"doc":"A convenience getter that returns this `JSONValue` as the specified D type. Note: Only numeric types, `bool`, `string`, `JSONValue[string]`, and `J...","kind":"method","module":"std.json","name":"get","package":"phobos","parentType":"JSONValue","signature":"inout(T) get(T)()","url":"/ddoc/phobos/std/json/JSONValue.get.html"},{"doc":"","kind":"method","module":"std.json","name":"get","package":"phobos","parentType":"JSONValue","signature":"inout(T) get(T :  JSONValue[])()","url":"/ddoc/phobos/std/json/JSONValue.get.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"get","package":"phobos","parentType":"JSONValue","signature":"inout(T) get(T :  JSONValue[string])()","url":"/ddoc/phobos/std/json/JSONValue.get.html"},{"doc":"","kind":"method","module":"std.json","name":"assign","package":"phobos","parentType":"JSONValue","signature":"void assign(T)(T arg)","url":"/ddoc/phobos/std/json/JSONValue.assign.html"},{"doc":"","kind":"method","module":"std.json","name":"assignRef","package":"phobos","parentType":"JSONValue","signature":"void assignRef(T)(ref  T arg) if (isStaticArray!T)","url":"/ddoc/phobos/std/json/JSONValue.assignRef.html"},{"doc":"","kind":"method","module":"std.json","name":"opAssign","package":"phobos","parentType":"JSONValue","signature":"void opAssign(T)(T arg) if (!isStaticArray!T && !is(T :  JSONValue))","url":"/ddoc/phobos/std/json/JSONValue.opAssign.html"},{"doc":"","kind":"method","module":"std.json","name":"opAssign","package":"phobos","parentType":"JSONValue","signature":"void opAssign(T)(ref  T arg) if (isStaticArray!T)","url":"/ddoc/phobos/std/json/JSONValue.opAssign.html"},{"doc":"Array syntax for JSON arrays. Throws: `JSONException` if `type` is not `JSONType.array`.","kind":"method","module":"std.json","name":"opIndex","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue) opIndex(size_t i)","url":"/ddoc/phobos/std/json/JSONValue.opIndex.html"},{"doc":"Hash syntax for JSON objects. Throws: `JSONException` if `type` is not `JSONType.object`.","kind":"method","module":"std.json","name":"opIndex","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue) opIndex(return  scope  string k)","url":"/ddoc/phobos/std/json/JSONValue.opIndex.html"},{"doc":"Provides support for index assignments, which sets the corresponding value of the JSON object's `key` field to `value`.","kind":"method","module":"std.json","name":"opIndexAssign","package":"phobos","parentType":"JSONValue","signature":"void opIndexAssign(T)(auto  ref  T value,  string key)","url":"/ddoc/phobos/std/json/JSONValue.opIndexAssign.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"opIndexAssign","package":"phobos","parentType":"JSONValue","signature":"void opIndexAssign(T)(T arg,  size_t i)","url":"/ddoc/phobos/std/json/JSONValue.opIndexAssign.html"},{"doc":"","kind":"method","module":"std.json","name":"opBinary","package":"phobos","parentType":"JSONValue","signature":"JSONValue opBinary(string op :  \"~\",  T)(T arg)","url":"/ddoc/phobos/std/json/JSONValue.opBinary.html"},{"doc":"","kind":"method","module":"std.json","name":"opOpAssign","package":"phobos","parentType":"JSONValue","signature":"void opOpAssign(string op :  \"~\",  T)(T arg)","url":"/ddoc/phobos/std/json/JSONValue.opOpAssign.html"},{"doc":"Provides support for the `in` operator.","kind":"method","module":"std.json","name":"opBinaryRight","package":"phobos","parentType":"JSONValue","signature":"inout(JSONValue) * opBinaryRight(string op :  \"in\")(string k)","url":"/ddoc/phobos/std/json/JSONValue.opBinaryRight.html"},{"doc":"Compare two JSONValues for equality","kind":"method","module":"std.json","name":"opEquals","package":"phobos","parentType":"JSONValue","signature":"bool opEquals(const  JSONValue rhs)","url":"/ddoc/phobos/std/json/JSONValue.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.json","name":"opEquals","package":"phobos","parentType":"JSONValue","signature":"bool opEquals(ref  const  JSONValue rhs)","url":"/ddoc/phobos/std/json/JSONValue.opEquals.html"},{"doc":"Calculate a numerical hash value for this value, allowing `JSONValue` to be used in associative arrays.","kind":"method","module":"std.json","name":"toHash","package":"phobos","parentType":"JSONValue","signature":"hash_t toHash()","url":"/ddoc/phobos/std/json/JSONValue.toHash.html"},{"doc":"Implements the foreach `opApply` interface for json arrays.","kind":"method","module":"std.json","name":"opApply","package":"phobos","parentType":"JSONValue","signature":"int opApply(scope  int  delegate(size_t index,  ref  JSONValue)  dg)","url":"/ddoc/phobos/std/json/JSONValue.opApply.html"},{"doc":"Implements the foreach `opApply` interface for json objects.","kind":"method","module":"std.json","name":"opApply","package":"phobos","parentType":"JSONValue","signature":"int opApply(scope  int  delegate(string key,  ref  JSONValue)  dg)","url":"/ddoc/phobos/std/json/JSONValue.opApply.html"},{"doc":"Implicitly calls `toJSON` on this JSONValue.","kind":"method","module":"std.json","name":"toString","package":"phobos","parentType":"JSONValue","signature":"string toString(in  JSONOptions options =  JSONOptions.none)","url":"/ddoc/phobos/std/json/JSONValue.toString.html"},{"doc":"","kind":"method","module":"std.json","name":"toString","package":"phobos","parentType":"JSONValue","signature":"void toString(Out)(Out sink,  in  JSONOptions options =  JSONOptions.none)","url":"/ddoc/phobos/std/json/JSONValue.toString.html"},{"doc":"Implicitly calls `toJSON` on this JSONValue, like `toString`, but also passes $(I true) as $(I pretty) argument.","kind":"method","module":"std.json","name":"toPrettyString","package":"phobos","parentType":"JSONValue","signature":"string toPrettyString(in  JSONOptions options =  JSONOptions.none)","url":"/ddoc/phobos/std/json/JSONValue.toPrettyString.html"},{"doc":"","kind":"method","module":"std.json","name":"toPrettyString","package":"phobos","parentType":"JSONValue","signature":"void toPrettyString(Out)(Out sink,  in  JSONOptions options =  JSONOptions.none)","url":"/ddoc/phobos/std/json/JSONValue.toPrettyString.html"},{"doc":"Exception thrown on JSON errors","kind":"class","module":"std.json","name":"JSONException","package":"phobos","parentType":"","signature":"JSONException : Exception","url":"/ddoc/phobos/std/json.html#JSONException"},{"doc":"Source: $(PHOBOSSRC std/logger/core.d)","kind":"module","module":"std.logger.core","name":"std.logger.core","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/logger/core.html"},{"doc":"This functions is used at runtime to determine if a `LogLevel` is active. The same previously defined version statements are used to disable certai...","kind":"function","module":"std.logger.core","name":"isLoggingEnabled","package":"phobos","parentType":"","signature":"bool isLoggingEnabled()(LogLevel ll,  LogLevel loggerLL,\n     LogLevel globalLL,  lazy  bool  condition =  true)","url":"/ddoc/phobos/std/logger/core/isLoggingEnabled.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"systimeToISOString","package":"phobos","parentType":"","signature":"void systimeToISOString(OutputRange)(OutputRange o,  const  ref  SysTime time) if (isOutputRange!(OutputRange, string))","url":"/ddoc/phobos/std/logger/core/systimeToISOString.html"},{"doc":"This function logs data.","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(const  LogLevel ll,\n     lazy  bool  condition,  lazy  A args) if (args.length !=  1)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(T,  string moduleName =  __MODULE__)(const  LogLevel ll,\n     lazy  bool  condition,  lazy  T arg,  int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"This function logs data.","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(const  LogLevel ll,  lazy  A args) if (args.length >  1 && !is(Unqual!(A[0]) :  bool))","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(T,  string moduleName =  __MODULE__)(const  LogLevel ll,  lazy  T arg,\n     int  line =  __LINE__,  string file =  __FILE__,  string funcName =  __FUNCTION__,\n     string prettyFuncName =  __PRETTY_FUNCTION__)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"This function logs data.","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(lazy  bool  condition,  lazy  A args) if (args.length !=  1)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(T,  string moduleName =  __MODULE__)(lazy  bool  condition,  lazy  T arg,\n     int  line =  __LINE__,  string file =  __FILE__,  string funcName =  __FUNCTION__,\n     string prettyFuncName =  __PRETTY_FUNCTION__)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"This function logs data.","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(lazy  A args) if ((args.length >  1 && !is(Unqual!(A[0]) :  bool)\n     && !is(Unqual!(A[0])  ==  LogLevel))\n     ||  args.length ==  0)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"log","package":"phobos","parentType":"","signature":"void log(T)(lazy  T arg,  int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__)","url":"/ddoc/phobos/std/logger/core/log.html"},{"doc":"This function logs data in a `printf`-style manner.","kind":"function","module":"std.logger.core","name":"logf","package":"phobos","parentType":"","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,\n     string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(const  LogLevel ll,\n     lazy  bool  condition,  lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/logf.html"},{"doc":"This function logs data in a `printf`-style manner.","kind":"function","module":"std.logger.core","name":"logf","package":"phobos","parentType":"","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(const  LogLevel ll,  lazy  string msg,\n         lazy  A args)","url":"/ddoc/phobos/std/logger/core/logf.html"},{"doc":"This function logs data in a `printf`-style manner.","kind":"function","module":"std.logger.core","name":"logf","package":"phobos","parentType":"","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,  string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(lazy  bool  condition,\n         lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/logf.html"},{"doc":"This function logs data in a `printf`-style manner.","kind":"function","module":"std.logger.core","name":"logf","package":"phobos","parentType":"","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n     string funcName =  __FUNCTION__,\n     string prettyFuncName =  __PRETTY_FUNCTION__,\n     string moduleName =  __MODULE__,  A...)(lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/logf.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"formatString","package":"phobos","parentType":"","signature":"void formatString(A...)(MsgRange oRange,  A args)","url":"/ddoc/phobos/std/logger/core/formatString.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"defaultSharedLoggerImpl","package":"phobos","parentType":"","signature":"shared(Logger) defaultSharedLoggerImpl()","url":"/ddoc/phobos/std/logger/core/defaultSharedLoggerImpl.html"},{"doc":"This property sets and gets the default `Logger`. Unless set to another logger by the user, the default logger's log level is LogLevel.info.","kind":"function","module":"std.logger.core","name":"sharedLog","package":"phobos","parentType":"","signature":"shared(Logger) sharedLog()","url":"/ddoc/phobos/std/logger/core/sharedLog.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"sharedLog","package":"phobos","parentType":"","signature":"void sharedLog(shared(Logger)  logger)","url":"/ddoc/phobos/std/logger/core/sharedLog.html"},{"doc":"These methods get and set the global `LogLevel`.","kind":"function","module":"std.logger.core","name":"globalLogLevel","package":"phobos","parentType":"","signature":"LogLevel globalLogLevel()","url":"/ddoc/phobos/std/logger/core/globalLogLevel.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"globalLogLevel","package":"phobos","parentType":"","signature":"void globalLogLevel(LogLevel ll)","url":"/ddoc/phobos/std/logger/core/globalLogLevel.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"stdThreadLocalLogImpl","package":"phobos","parentType":"","signature":"Logger stdThreadLocalLogImpl()","url":"/ddoc/phobos/std/logger/core/stdThreadLocalLogImpl.html"},{"doc":"This function returns a thread unique `Logger`, that by default propagates all data logged to it to the `sharedLog`.","kind":"function","module":"std.logger.core","name":"stdThreadLocalLog","package":"phobos","parentType":"","signature":"Logger stdThreadLocalLog()","url":"/ddoc/phobos/std/logger/core/stdThreadLocalLog.html"},{"doc":"Ditto","kind":"function","module":"std.logger.core","name":"stdThreadLocalLog","package":"phobos","parentType":"","signature":"void stdThreadLocalLog(Logger logger)","url":"/ddoc/phobos/std/logger/core/stdThreadLocalLog.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"trustedLoad","package":"phobos","parentType":"","signature":"auto trustedLoad(T)(ref  shared  T value)","url":"/ddoc/phobos/std/logger/core/trustedLoad.html"},{"doc":"","kind":"function","module":"std.logger.core","name":"trustedStore","package":"phobos","parentType":"","signature":"void trustedStore(T)(ref  shared  T dst,  ref  T src)","url":"/ddoc/phobos/std/logger/core/trustedStore.html"},{"doc":"This function logs data to the `stdThreadLocalLog`, optionally depending on a condition.","kind":"alias","module":"std.logger.core","name":"trace","package":"phobos","parentType":"","signature":"trace = defaultLogFunction!(LogLevel.trace)","url":"/ddoc/phobos/std/logger/core.html#trace"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"info","package":"phobos","parentType":"","signature":"info = defaultLogFunction!(LogLevel.info)","url":"/ddoc/phobos/std/logger/core.html#info"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"warning","package":"phobos","parentType":"","signature":"warning = defaultLogFunction!(LogLevel.warning)","url":"/ddoc/phobos/std/logger/core.html#warning"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"error","package":"phobos","parentType":"","signature":"error = defaultLogFunction!(LogLevel.error)","url":"/ddoc/phobos/std/logger/core.html#error"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"critical","package":"phobos","parentType":"","signature":"critical = defaultLogFunction!(LogLevel.critical)","url":"/ddoc/phobos/std/logger/core.html#critical"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"fatal","package":"phobos","parentType":"","signature":"fatal = defaultLogFunction!(LogLevel.fatal)","url":"/ddoc/phobos/std/logger/core.html#fatal"},{"doc":"This function logs data to the `sharedLog` in a `printf`-style manner.","kind":"alias","module":"std.logger.core","name":"tracef","package":"phobos","parentType":"","signature":"tracef = defaultLogFunctionf!(LogLevel.trace)","url":"/ddoc/phobos/std/logger/core.html#tracef"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"infof","package":"phobos","parentType":"","signature":"infof = defaultLogFunctionf!(LogLevel.info)","url":"/ddoc/phobos/std/logger/core.html#infof"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"warningf","package":"phobos","parentType":"","signature":"warningf = defaultLogFunctionf!(LogLevel.warning)","url":"/ddoc/phobos/std/logger/core.html#warningf"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"errorf","package":"phobos","parentType":"","signature":"errorf = defaultLogFunctionf!(LogLevel.error)","url":"/ddoc/phobos/std/logger/core.html#errorf"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"criticalf","package":"phobos","parentType":"","signature":"criticalf = defaultLogFunctionf!(LogLevel.critical)","url":"/ddoc/phobos/std/logger/core.html#criticalf"},{"doc":"Ditto","kind":"alias","module":"std.logger.core","name":"fatalf","package":"phobos","parentType":"","signature":"fatalf = defaultLogFunctionf!(LogLevel.fatal)","url":"/ddoc/phobos/std/logger/core.html#fatalf"},{"doc":"","kind":"struct","module":"std.logger.core","name":"MsgRange","package":"phobos","parentType":"","signature":"MsgRange","url":"/ddoc/phobos/std/logger/core.html#MsgRange"},{"doc":"","kind":"method","module":"std.logger.core","name":"put","package":"phobos","parentType":"MsgRange","signature":"void put(T)(T msg) if (isSomeString!T)","url":"/ddoc/phobos/std/logger/core/MsgRange.put.html"},{"doc":"","kind":"method","module":"std.logger.core","name":"put","package":"phobos","parentType":"MsgRange","signature":"void put(dchar  elem)","url":"/ddoc/phobos/std/logger/core/MsgRange.put.html"},{"doc":"There are eight usable logging level. These level are $(I all), $(I trace), $(I info), $(I warning), $(I error), $(I critical), $(I fatal), and $(I...","kind":"enum","module":"std.logger.core","name":"LogLevel","package":"phobos","parentType":"","signature":"LogLevel : ubyte","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"Lowest possible assignable `LogLevel`.","kind":"enum_member","module":"std.logger.core","name":"all","package":"phobos","parentType":"","signature":"all = 1","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"`LogLevel` for tracing the execution of the program.","kind":"enum_member","module":"std.logger.core","name":"trace","package":"phobos","parentType":"","signature":"trace = 32","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"This level is used to display information about the program.","kind":"enum_member","module":"std.logger.core","name":"info","package":"phobos","parentType":"","signature":"info = 64","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"warnings about the program should be displayed with this level.","kind":"enum_member","module":"std.logger.core","name":"warning","package":"phobos","parentType":"","signature":"warning = 96","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"Information about errors should be logged with this level.","kind":"enum_member","module":"std.logger.core","name":"error","package":"phobos","parentType":"","signature":"error = 128","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"Messages that inform about critical errors should be logged with this level.","kind":"enum_member","module":"std.logger.core","name":"critical","package":"phobos","parentType":"","signature":"critical = 160","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"Log messages that describe fatal errors should use this level.","kind":"enum_member","module":"std.logger.core","name":"fatal","package":"phobos","parentType":"","signature":"fatal = 192","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"Highest possible `LogLevel`.","kind":"enum_member","module":"std.logger.core","name":"off","package":"phobos","parentType":"","signature":"off = ubyte.max","url":"/ddoc/phobos/std/logger/core.html#LogLevel"},{"doc":"This class is the base of every logger. In order to create a new kind of logger a deriving class needs to implement the `writeLogMsg` method. By de...","kind":"class","module":"std.logger.core","name":"Logger","package":"phobos","parentType":"","signature":"Logger","url":"/ddoc/phobos/std/logger/core.html#Logger"},{"doc":"A custom logger must implement this method in order to work in a `MultiLogger` and `ArrayLogger`.","kind":"method","module":"std.logger.core","name":"writeLogMsg","package":"phobos","parentType":"Logger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/core/Logger.writeLogMsg.html"},{"doc":"","kind":"method","module":"std.logger.core","name":"beginLogMsg","package":"phobos","parentType":"Logger","signature":"void beginLogMsg(string file,  int  line,  string funcName,\n         string prettyFuncName,  string moduleName,  LogLevel logLevel,\n         Tid threadId,  SysTime timestamp,  Logger logger)","url":"/ddoc/phobos/std/logger/core/Logger.beginLogMsg.html"},{"doc":"Logs a part of the log message.","kind":"method","module":"std.logger.core","name":"logMsgPart","package":"phobos","parentType":"Logger","signature":"void logMsgPart(scope  const(char)[]  msg)","url":"/ddoc/phobos/std/logger/core/Logger.logMsgPart.html"},{"doc":"Signals that the message has been written and no more calls to `logMsgPart` follow.","kind":"method","module":"std.logger.core","name":"finishLogMsg","package":"phobos","parentType":"Logger","signature":"void finishLogMsg()","url":"/ddoc/phobos/std/logger/core/Logger.finishLogMsg.html"},{"doc":"The `LogLevel` determines if the log call are processed or dropped by the `Logger`. In order for the log call to be processed the `LogLevel` of the...","kind":"method","module":"std.logger.core","name":"logLevel","package":"phobos","parentType":"Logger","signature":"LogLevel logLevel()","url":"/ddoc/phobos/std/logger/core/Logger.logLevel.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"logLevel","package":"phobos","parentType":"Logger","signature":"void logLevel(const  LogLevel lv)","url":"/ddoc/phobos/std/logger/core/Logger.logLevel.html"},{"doc":"This `delegate` is called in case a log message with `LogLevel.fatal` gets logged.","kind":"method","module":"std.logger.core","name":"fatalHandler","package":"phobos","parentType":"Logger","signature":"void  delegate() fatalHandler()","url":"/ddoc/phobos/std/logger/core/Logger.fatalHandler.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"fatalHandler","package":"phobos","parentType":"Logger","signature":"void fatalHandler(void  delegate() @safe fh)","url":"/ddoc/phobos/std/logger/core/Logger.fatalHandler.html"},{"doc":"This method allows forwarding log entries from one logger to another.","kind":"method","module":"std.logger.core","name":"forwardMsg","package":"phobos","parentType":"Logger","signature":"void forwardMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/core/Logger.forwardMsg.html"},{"doc":"This method logs data with the `LogLevel` of the used `Logger`.","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(const  LogLevel ll,\n         lazy  bool  condition,  lazy  A args) if (args.length !=  1)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(T,  string moduleName =  __MODULE__)(const  LogLevel ll,\n         lazy  bool  condition,  lazy  T args,  int  line =  __LINE__,\n         string file =  __FILE__,  string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"This function logs data to the used `Logger` with a specific `LogLevel`.","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(const  LogLevel ll,  lazy  A args) if ((args.length >  1 && !is(Unqual!(A[0]) :  bool))  ||  args.length ==  0)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(T)(const  LogLevel ll,  lazy  T args,  int  line =  __LINE__,\n         string file =  __FILE__,  string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"This function logs data to the used `Logger` depending on a explicitly passed condition with the `LogLevel` of the used `Logger`.","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  bool  condition,  lazy  A args) if (args.length !=  1)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(T)(lazy  bool  condition,  lazy  T args,  int  line =  __LINE__,\n         string file =  __FILE__,  string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"This function logs data to the used `Logger` with the `LogLevel` of the used `Logger`.","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  A args) if ((args.length >  1\n        && !is(Unqual!(A[0]) :  bool)\n         && !is(immutable  A[0]  ==  immutable  LogLevel))\n         ||  args.length ==  0)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"Ditto","kind":"method","module":"std.logger.core","name":"log","package":"phobos","parentType":"Logger","signature":"void log(T)(lazy  T arg,  int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__)","url":"/ddoc/phobos/std/logger/core/Logger.log.html"},{"doc":"This function logs data to the used `Logger` with a specific `LogLevel` and depending on a condition in a `printf`-style manner.","kind":"method","module":"std.logger.core","name":"logf","package":"phobos","parentType":"Logger","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(const  LogLevel ll,\n         lazy  bool  condition,  lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/Logger.logf.html"},{"doc":"This function logs data to the used `Logger` with a specific `LogLevel` in a `printf`-style manner.","kind":"method","module":"std.logger.core","name":"logf","package":"phobos","parentType":"Logger","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(const  LogLevel ll,\n             lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/Logger.logf.html"},{"doc":"This function logs data to the used `Logger` depending on a condition with the `LogLevel` of the used `Logger` in a `printf`-style manner.","kind":"method","module":"std.logger.core","name":"logf","package":"phobos","parentType":"Logger","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  bool  condition,\n             lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/Logger.logf.html"},{"doc":"This method logs data to the used `Logger` with the `LogLevel` of the this `Logger` in a `printf`-style manner.","kind":"method","module":"std.logger.core","name":"logf","package":"phobos","parentType":"Logger","signature":"void logf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core/Logger.logf.html"},{"doc":"The `StdForwardLogger` will always forward anything to the sharedLog.","kind":"class","module":"std.logger.core","name":"StdForwardLogger","package":"phobos","parentType":"","signature":"StdForwardLogger : Logger","url":"/ddoc/phobos/std/logger/core.html#StdForwardLogger"},{"doc":"","kind":"method","module":"std.logger.core","name":"writeLogMsg","package":"phobos","parentType":"StdForwardLogger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/core/StdForwardLogger.writeLogMsg.html"},{"doc":"","kind":"class","module":"std.logger.core","name":"TestLogger","package":"phobos","parentType":"","signature":"TestLogger : Logger","url":"/ddoc/phobos/std/logger/core.html#TestLogger"},{"doc":"","kind":"method","module":"std.logger.core","name":"writeLogMsg","package":"phobos","parentType":"TestLogger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/core/TestLogger.writeLogMsg.html"},{"doc":"This template provides the global log functions with the `LogLevel` is encoded in the function name.","kind":"template","module":"std.logger.core","name":"defaultLogFunction","package":"phobos","parentType":"","signature":"defaultLogFunction(LogLevel ll)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunction"},{"doc":"","kind":"function","module":"std.logger.core","name":"defaultLogFunction","package":"phobos","parentType":"","signature":"void defaultLogFunction(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  A args) if ((args.length >  0 && !is(Unqual!(A[0]) :  bool))  ||  args.length ==  0)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunction"},{"doc":"","kind":"function","module":"std.logger.core","name":"defaultLogFunction","package":"phobos","parentType":"","signature":"void defaultLogFunction(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  bool  condition,  lazy  A args)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunction"},{"doc":"This template provides the global `printf`-style log functions with the `LogLevel` is encoded in the function name.","kind":"template","module":"std.logger.core","name":"defaultLogFunctionf","package":"phobos","parentType":"","signature":"defaultLogFunctionf(LogLevel ll)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunctionf"},{"doc":"","kind":"function","module":"std.logger.core","name":"defaultLogFunctionf","package":"phobos","parentType":"","signature":"void defaultLogFunctionf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunctionf"},{"doc":"","kind":"function","module":"std.logger.core","name":"defaultLogFunctionf","package":"phobos","parentType":"","signature":"void defaultLogFunctionf(int  line =  __LINE__,  string file =  __FILE__,\n         string funcName =  __FUNCTION__,\n         string prettyFuncName =  __PRETTY_FUNCTION__,\n         string moduleName =  __MODULE__,  A...)(lazy  bool  condition,\n             lazy  string msg,  lazy  A args)","url":"/ddoc/phobos/std/logger/core.html#defaultLogFunctionf"},{"doc":"","kind":"variable","module":"std.logger.core","name":"stdSharedDefaultLogger","package":"phobos","parentType":"","signature":"Logger stdSharedDefaultLogger","url":"/ddoc/phobos/std/logger/core.html#stdSharedDefaultLogger"},{"doc":"","kind":"variable","module":"std.logger.core","name":"stdSharedLogger","package":"phobos","parentType":"","signature":"Logger stdSharedLogger","url":"/ddoc/phobos/std/logger/core.html#stdSharedLogger"},{"doc":"","kind":"variable","module":"std.logger.core","name":"stdLoggerGlobalLogLevel","package":"phobos","parentType":"","signature":"LogLevel stdLoggerGlobalLogLevel","url":"/ddoc/phobos/std/logger/core.html#stdLoggerGlobalLogLevel"},{"doc":"This `LogLevel` is unqiue to every thread.","kind":"variable","module":"std.logger.core","name":"stdLoggerThreadLogger","package":"phobos","parentType":"","signature":"Logger stdLoggerThreadLogger","url":"/ddoc/phobos/std/logger/core.html#stdLoggerThreadLogger"},{"doc":"","kind":"variable","module":"std.logger.core","name":"stdLoggerDefaultThreadLogger","package":"phobos","parentType":"","signature":"Logger stdLoggerDefaultThreadLogger","url":"/ddoc/phobos/std/logger/core.html#stdLoggerDefaultThreadLogger"},{"doc":"Source: $(PHOBOSSRC std/logger/filelogger.d)","kind":"module","module":"std.logger.filelogger","name":"std.logger.filelogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/logger/filelogger.html"},{"doc":"An option to create $(LREF FileLogger) directory if it is non-existent.","kind":"alias","module":"std.logger.filelogger","name":"CreateFolder","package":"phobos","parentType":"","signature":"CreateFolder = Flag!\"CreateFolder\"","url":"/ddoc/phobos/std/logger/filelogger.html#CreateFolder"},{"doc":"This `Logger` implementation writes log messages to the associated file. The name of the file has to be passed on construction time. If the file is...","kind":"class","module":"std.logger.filelogger","name":"FileLogger","package":"phobos","parentType":"","signature":"FileLogger : Logger","url":"/ddoc/phobos/std/logger/filelogger.html#FileLogger"},{"doc":"If the `FileLogger` is managing the `File` it logs to, this method will return a reference to this File.","kind":"method","module":"std.logger.filelogger","name":"file","package":"phobos","parentType":"FileLogger","signature":"File file()","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.file.html"},{"doc":"","kind":"method","module":"std.logger.filelogger","name":"beginLogMsg","package":"phobos","parentType":"FileLogger","signature":"void beginLogMsg(string file,  int  line,  string funcName,\n         string prettyFuncName,  string moduleName,  LogLevel logLevel,\n         Tid threadId,  SysTime timestamp,  Logger logger)","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.beginLogMsg.html"},{"doc":"","kind":"method","module":"std.logger.filelogger","name":"logMsgPart","package":"phobos","parentType":"FileLogger","signature":"void logMsgPart(scope  const(char)[]  msg)","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.logMsgPart.html"},{"doc":"","kind":"method","module":"std.logger.filelogger","name":"finishLogMsg","package":"phobos","parentType":"FileLogger","signature":"void finishLogMsg()","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.finishLogMsg.html"},{"doc":"","kind":"method","module":"std.logger.filelogger","name":"writeLogMsg","package":"phobos","parentType":"FileLogger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.writeLogMsg.html"},{"doc":"If the `FileLogger` was constructed with a filename, this method returns this filename. Otherwise an empty `string` is returned.","kind":"method","module":"std.logger.filelogger","name":"getFilename","package":"phobos","parentType":"FileLogger","signature":"string getFilename()","url":"/ddoc/phobos/std/logger/filelogger/FileLogger.getFilename.html"},{"doc":"Source: $(PHOBOSSRC std/logger/multilogger.d)","kind":"module","module":"std.logger.multilogger","name":"std.logger.multilogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/logger/multilogger.html"},{"doc":"This Element is stored inside the `MultiLogger` and associates a `Logger` to a `string`.","kind":"struct","module":"std.logger.multilogger","name":"MultiLoggerEntry","package":"phobos","parentType":"","signature":"MultiLoggerEntry","url":"/ddoc/phobos/std/logger/multilogger.html#MultiLoggerEntry"},{"doc":"MultiLogger logs to multiple `Logger`. The `Logger`s are stored in an `Logger[]` in their order of insertion.","kind":"class","module":"std.logger.multilogger","name":"MultiLogger","package":"phobos","parentType":"","signature":"MultiLogger : Logger","url":"/ddoc/phobos/std/logger/multilogger.html#MultiLogger"},{"doc":"This method inserts a new Logger into the `MultiLogger`.","kind":"method","module":"std.logger.multilogger","name":"insertLogger","package":"phobos","parentType":"MultiLogger","signature":"void insertLogger(string name,  Logger newLogger)","url":"/ddoc/phobos/std/logger/multilogger/MultiLogger.insertLogger.html"},{"doc":"This method removes a Logger from the `MultiLogger`.","kind":"method","module":"std.logger.multilogger","name":"removeLogger","package":"phobos","parentType":"MultiLogger","signature":"Logger removeLogger(in  char[]  toRemove)","url":"/ddoc/phobos/std/logger/multilogger/MultiLogger.removeLogger.html"},{"doc":"","kind":"method","module":"std.logger.multilogger","name":"writeLogMsg","package":"phobos","parentType":"MultiLogger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/multilogger/MultiLogger.writeLogMsg.html"},{"doc":"Source: $(PHOBOSSRC std/logger/nulllogger.d)","kind":"module","module":"std.logger.nulllogger","name":"std.logger.nulllogger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/logger/nulllogger.html"},{"doc":"The `NullLogger` will not process any log messages.","kind":"class","module":"std.logger.nulllogger","name":"NullLogger","package":"phobos","parentType":"","signature":"NullLogger : Logger","url":"/ddoc/phobos/std/logger/nulllogger.html#NullLogger"},{"doc":"","kind":"method","module":"std.logger.nulllogger","name":"writeLogMsg","package":"phobos","parentType":"NullLogger","signature":"void writeLogMsg(ref  LogEntry payload)","url":"/ddoc/phobos/std/logger/nulllogger/NullLogger.writeLogMsg.html"},{"doc":"Implements logging facilities.","kind":"module","module":"std.logger","name":"std.logger","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/logger.html"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.algebraic","name":"std.math.algebraic","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/algebraic.html"},{"doc":"Calculates the absolute value of a number.","kind":"function","module":"std.math.algebraic","name":"abs","package":"phobos","parentType":"","signature":"auto abs(Num)(Num x) if (isIntegral!Num || (is(typeof(Num.init >=  0))  &&  is(typeof(- Num.init))))","url":"/ddoc/phobos/std/math/algebraic/abs.html"},{"doc":"Returns |x|","kind":"function","module":"std.math.algebraic","name":"fabs","package":"phobos","parentType":"","signature":"real fabs(real  x)","url":"/ddoc/phobos/std/math/algebraic/fabs.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"fabs","package":"phobos","parentType":"","signature":"double fabs(double  x)","url":"/ddoc/phobos/std/math/algebraic/fabs.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"fabs","package":"phobos","parentType":"","signature":"float fabs(float  x)","url":"/ddoc/phobos/std/math/algebraic/fabs.html"},{"doc":"Compute square root of x.","kind":"function","module":"std.math.algebraic","name":"sqrt","package":"phobos","parentType":"","signature":"float sqrt(float  x)","url":"/ddoc/phobos/std/math/algebraic/sqrt.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"sqrt","package":"phobos","parentType":"","signature":"double sqrt(double  x)","url":"/ddoc/phobos/std/math/algebraic/sqrt.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"sqrt","package":"phobos","parentType":"","signature":"real sqrt(real  x)","url":"/ddoc/phobos/std/math/algebraic/sqrt.html"},{"doc":"Calculates the cube root of x.","kind":"function","module":"std.math.algebraic","name":"cbrt","package":"phobos","parentType":"","signature":"real cbrt(real  x)","url":"/ddoc/phobos/std/math/algebraic/cbrt.html"},{"doc":"Calculates the length of the hypotenuse of a right-angled triangle with sides of length x and y. The hypotenuse is the value of the square root of ...","kind":"function","module":"std.math.algebraic","name":"hypot","package":"phobos","parentType":"","signature":"T hypot(T)(const  T x,  const  T y) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/algebraic/hypot.html"},{"doc":"Calculates the distance of the point (x, y, z) from the origin (0, 0, 0) in three-dimensional space. The distance is the value of the square root o...","kind":"function","module":"std.math.algebraic","name":"hypot","package":"phobos","parentType":"","signature":"T hypot(T)(const  T x,  const  T y,  const  T z) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/algebraic/hypot.html"},{"doc":"Evaluate polynomial A(x) = $(SUB a, 0) + $(SUB a, 1)x + $(SUB a, 2)$(POWER x,2) + $(SUB a,3)$(POWER x,3); ...","kind":"function","module":"std.math.algebraic","name":"poly","package":"phobos","parentType":"","signature":"Unqual!(CommonType!(T1,  T2)) poly(T1,  T2)(T1 x,  in  T2[]  A) if (isFloatingPoint!T1 &&  isFloatingPoint!T2)","url":"/ddoc/phobos/std/math/algebraic/poly.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"poly","package":"phobos","parentType":"","signature":"Unqual!(CommonType!(T1,  T2)) poly(T1,  T2,  int  N)(T1 x,  ref  const  T2[N]  A) if (isFloatingPoint!T1 &&  isFloatingPoint!T2 &&  N >  0 &&  N <=  10)","url":"/ddoc/phobos/std/math/algebraic/poly.html"},{"doc":"","kind":"function","module":"std.math.algebraic","name":"polyImplBase","package":"phobos","parentType":"","signature":"Unqual!(CommonType!(T1,  T2)) polyImplBase(T1,  T2)(T1 x,  in  T2[]  A) if (isFloatingPoint!T1 &&  isFloatingPoint!T2)","url":"/ddoc/phobos/std/math/algebraic/polyImplBase.html"},{"doc":"","kind":"function","module":"std.math.algebraic","name":"polyImpl","package":"phobos","parentType":"","signature":"real polyImpl(real  x,  in  real[]  A)","url":"/ddoc/phobos/std/math/algebraic/polyImpl.html"},{"doc":"Gives the next power of two after `val`. `T` can be any built-in numerical type.","kind":"function","module":"std.math.algebraic","name":"nextPow2","package":"phobos","parentType":"","signature":"T nextPow2(T)(const  T val) if (isIntegral!T)","url":"/ddoc/phobos/std/math/algebraic/nextPow2.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"nextPow2","package":"phobos","parentType":"","signature":"T nextPow2(T)(const  T val) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/algebraic/nextPow2.html"},{"doc":"Gives the last power of two before `val`. $(T) can be any built-in numerical type.","kind":"function","module":"std.math.algebraic","name":"truncPow2","package":"phobos","parentType":"","signature":"T truncPow2(T)(const  T val) if (isIntegral!T)","url":"/ddoc/phobos/std/math/algebraic/truncPow2.html"},{"doc":"ditto","kind":"function","module":"std.math.algebraic","name":"truncPow2","package":"phobos","parentType":"","signature":"T truncPow2(T)(const  T val) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/algebraic/truncPow2.html"},{"doc":"","kind":"function","module":"std.math.algebraic","name":"powIntegralImpl","package":"phobos","parentType":"","signature":"T powIntegralImpl(PowType type,  T)(T val)","url":"/ddoc/phobos/std/math/algebraic/powIntegralImpl.html"},{"doc":"","kind":"function","module":"std.math.algebraic","name":"powFloatingPointImpl","package":"phobos","parentType":"","signature":"T powFloatingPointImpl(PowType type,  T)(T x)","url":"/ddoc/phobos/std/math/algebraic/powFloatingPointImpl.html"},{"doc":"","kind":"enum","module":"std.math.algebraic","name":"PowType","package":"phobos","parentType":"","signature":"PowType","url":"/ddoc/phobos/std/math/algebraic.html#PowType"},{"doc":"","kind":"enum_member","module":"std.math.algebraic","name":"floor","package":"phobos","parentType":"","signature":"floor = ","url":"/ddoc/phobos/std/math/algebraic.html#PowType"},{"doc":"","kind":"enum_member","module":"std.math.algebraic","name":"ceil","package":"phobos","parentType":"","signature":"ceil = ","url":"/ddoc/phobos/std/math/algebraic.html#PowType"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.constants","name":"std.math.constants","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/constants.html"},{"doc":"","kind":"variable","module":"std.math.constants","name":"E","package":"phobos","parentType":"","signature":"real E","url":"/ddoc/phobos/std/math/constants.html#E"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LOG2T","package":"phobos","parentType":"","signature":"real LOG2T","url":"/ddoc/phobos/std/math/constants.html#LOG2T"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LOG2E","package":"phobos","parentType":"","signature":"real LOG2E","url":"/ddoc/phobos/std/math/constants.html#LOG2E"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LOG2","package":"phobos","parentType":"","signature":"real LOG2","url":"/ddoc/phobos/std/math/constants.html#LOG2"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LOG10E","package":"phobos","parentType":"","signature":"real LOG10E","url":"/ddoc/phobos/std/math/constants.html#LOG10E"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LN2","package":"phobos","parentType":"","signature":"real LN2","url":"/ddoc/phobos/std/math/constants.html#LN2"},{"doc":"","kind":"variable","module":"std.math.constants","name":"LN10","package":"phobos","parentType":"","signature":"real LN10","url":"/ddoc/phobos/std/math/constants.html#LN10"},{"doc":"","kind":"variable","module":"std.math.constants","name":"PI","package":"phobos","parentType":"","signature":"real PI","url":"/ddoc/phobos/std/math/constants.html#PI"},{"doc":"","kind":"variable","module":"std.math.constants","name":"PI_2","package":"phobos","parentType":"","signature":"real PI_2","url":"/ddoc/phobos/std/math/constants.html#PI_2"},{"doc":"","kind":"variable","module":"std.math.constants","name":"PI_4","package":"phobos","parentType":"","signature":"real PI_4","url":"/ddoc/phobos/std/math/constants.html#PI_4"},{"doc":"","kind":"variable","module":"std.math.constants","name":"M_1_PI","package":"phobos","parentType":"","signature":"real M_1_PI","url":"/ddoc/phobos/std/math/constants.html#M_1_PI"},{"doc":"","kind":"variable","module":"std.math.constants","name":"M_2_PI","package":"phobos","parentType":"","signature":"real M_2_PI","url":"/ddoc/phobos/std/math/constants.html#M_2_PI"},{"doc":"","kind":"variable","module":"std.math.constants","name":"M_2_SQRTPI","package":"phobos","parentType":"","signature":"real M_2_SQRTPI","url":"/ddoc/phobos/std/math/constants.html#M_2_SQRTPI"},{"doc":"","kind":"variable","module":"std.math.constants","name":"SQRT2","package":"phobos","parentType":"","signature":"real SQRT2","url":"/ddoc/phobos/std/math/constants.html#SQRT2"},{"doc":"","kind":"variable","module":"std.math.constants","name":"SQRT1_2","package":"phobos","parentType":"","signature":"real SQRT1_2","url":"/ddoc/phobos/std/math/constants.html#SQRT1_2"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.exponential","name":"std.math.exponential","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/exponential.html"},{"doc":"Compute the value of x $(SUPERSCRIPT n), where n is an integer","kind":"function","module":"std.math.exponential","name":"pow","package":"phobos","parentType":"","signature":"Unqual!F pow(F,  G)(F x,  G n) if (isFloatingPoint!(F)  &&  isIntegral!(G))","url":"/ddoc/phobos/std/math/exponential/pow.html"},{"doc":"Compute the power of two integral numbers.","kind":"function","module":"std.math.exponential","name":"pow","package":"phobos","parentType":"","signature":"typeof(Unqual!(F).init *  Unqual!(G).init) pow(F,  G)(F x,  G n) if (isIntegral!(F)  &&  isIntegral!(G))","url":"/ddoc/phobos/std/math/exponential/pow.html"},{"doc":"Computes integer to floating point powers.","kind":"function","module":"std.math.exponential","name":"pow","package":"phobos","parentType":"","signature":"real pow(I,  F)(I x,  F y) if (isIntegral!I &&  isFloatingPoint!F)","url":"/ddoc/phobos/std/math/exponential/pow.html"},{"doc":"Calculates x$(SUPERSCRIPT y).","kind":"function","module":"std.math.exponential","name":"pow","package":"phobos","parentType":"","signature":"Unqual!(Largest!(F,  G)) pow(F,  G)(F x,  G y) if (isFloatingPoint!(F)  &&  isFloatingPoint!(G))","url":"/ddoc/phobos/std/math/exponential/pow.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"_powImpl","package":"phobos","parentType":"","signature":"real _powImpl(real  x,  real  y)","url":"/ddoc/phobos/std/math/exponential/_powImpl.html"},{"doc":"Computes the value of a positive integer `x`, raised to the power `n`, modulo `m`.","kind":"function","module":"std.math.exponential","name":"powmod","package":"phobos","parentType":"","signature":"Unqual!(Largest!(F,  H)) powmod(F,  G,  H)(F x,  G n,  H m) if (isUnsigned!F &&  isUnsigned!G &&  isUnsigned!H)","url":"/ddoc/phobos/std/math/exponential/powmod.html"},{"doc":"Calculates e$(SUPERSCRIPT x).","kind":"function","module":"std.math.exponential","name":"exp","package":"phobos","parentType":"","signature":"real exp(real  x)","url":"/ddoc/phobos/std/math/exponential/exp.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"exp","package":"phobos","parentType":"","signature":"double exp(double  x)","url":"/ddoc/phobos/std/math/exponential/exp.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"exp","package":"phobos","parentType":"","signature":"float exp(float  x)","url":"/ddoc/phobos/std/math/exponential/exp.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"expImpl","package":"phobos","parentType":"","signature":"T expImpl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/expImpl.html"},{"doc":"Calculates the value of the natural logarithm base (e) raised to the power of x, minus 1.","kind":"function","module":"std.math.exponential","name":"expm1","package":"phobos","parentType":"","signature":"real expm1(real  x)","url":"/ddoc/phobos/std/math/exponential/expm1.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"expm1","package":"phobos","parentType":"","signature":"double expm1(double  x)","url":"/ddoc/phobos/std/math/exponential/expm1.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"expm1","package":"phobos","parentType":"","signature":"float expm1(float  x)","url":"/ddoc/phobos/std/math/exponential/expm1.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"expm1Impl","package":"phobos","parentType":"","signature":"T expm1Impl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/expm1Impl.html"},{"doc":"Calculates 2$(SUPERSCRIPT x).","kind":"function","module":"std.math.exponential","name":"exp2","package":"phobos","parentType":"","signature":"real exp2(real  x)","url":"/ddoc/phobos/std/math/exponential/exp2.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"exp2","package":"phobos","parentType":"","signature":"double exp2(double  x)","url":"/ddoc/phobos/std/math/exponential/exp2.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"exp2","package":"phobos","parentType":"","signature":"float exp2(float  x)","url":"/ddoc/phobos/std/math/exponential/exp2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"exp2Impl","package":"phobos","parentType":"","signature":"T exp2Impl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/exp2Impl.html"},{"doc":"Separate floating point value into significand and exponent.","kind":"function","module":"std.math.exponential","name":"frexp","package":"phobos","parentType":"","signature":"T frexp(T)(const  T value,  out  int  exp) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/exponential/frexp.html"},{"doc":"Extracts the exponent of x as a signed integral value.","kind":"function","module":"std.math.exponential","name":"ilogb","package":"phobos","parentType":"","signature":"int ilogb(T)(const  T x) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/exponential/ilogb.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"ilogb","package":"phobos","parentType":"","signature":"int ilogb(T)(const  T x) if (isIntegral!T &&  isUnsigned!T)","url":"/ddoc/phobos/std/math/exponential/ilogb.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"ilogb","package":"phobos","parentType":"","signature":"int ilogb(T)(const  T x) if (isIntegral!T &&  isSigned!T)","url":"/ddoc/phobos/std/math/exponential/ilogb.html"},{"doc":"Compute n * 2$(SUPERSCRIPT exp) References: frexp","kind":"function","module":"std.math.exponential","name":"ldexp","package":"phobos","parentType":"","signature":"real ldexp(real  n,  int  exp)","url":"/ddoc/phobos/std/math/exponential/ldexp.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"ldexp","package":"phobos","parentType":"","signature":"double ldexp(double  n,  int  exp)","url":"/ddoc/phobos/std/math/exponential/ldexp.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"ldexp","package":"phobos","parentType":"","signature":"float ldexp(float  n,  int  exp)","url":"/ddoc/phobos/std/math/exponential/ldexp.html"},{"doc":"Calculate the natural logarithm of x.","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"real log(real  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"double log(double  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"float log(float  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"real log(int  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"real log(uint  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"real log(long  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log","package":"phobos","parentType":"","signature":"real log(ulong  x)","url":"/ddoc/phobos/std/math/exponential/log.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"logImpl","package":"phobos","parentType":"","signature":"T logImpl(T,  bool  LOG1P =  false)(T x)","url":"/ddoc/phobos/std/math/exponential/logImpl.html"},{"doc":"Calculate the base-10 logarithm of x.","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"real log10(real  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"double log10(double  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"float log10(float  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"real log10(int  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"real log10(uint  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"real log10(long  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log10","package":"phobos","parentType":"","signature":"real log10(ulong  x)","url":"/ddoc/phobos/std/math/exponential/log10.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log10Impl","package":"phobos","parentType":"","signature":"T log10Impl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/log10Impl.html"},{"doc":"Calculates the natural logarithm of 1 + x.","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"real log1p(real  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"double log1p(double  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"float log1p(float  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"real log1p(int  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"real log1p(uint  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"real log1p(long  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log1p","package":"phobos","parentType":"","signature":"real log1p(ulong  x)","url":"/ddoc/phobos/std/math/exponential/log1p.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log1pImpl","package":"phobos","parentType":"","signature":"T log1pImpl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/log1pImpl.html"},{"doc":"Calculates the base-2 logarithm of x: $(SUB log, 2)x","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"real log2(real  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"double log2(double  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"float log2(float  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"real log2(int  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"real log2(uint  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"real log2(long  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log2","package":"phobos","parentType":"","signature":"real log2(ulong  x)","url":"/ddoc/phobos/std/math/exponential/log2.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"log2Impl","package":"phobos","parentType":"","signature":"T log2Impl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/log2Impl.html"},{"doc":"Extracts the exponent of x as a signed integral value.","kind":"function","module":"std.math.exponential","name":"logb","package":"phobos","parentType":"","signature":"real logb(real  x)","url":"/ddoc/phobos/std/math/exponential/logb.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"logb","package":"phobos","parentType":"","signature":"double logb(double  x)","url":"/ddoc/phobos/std/math/exponential/logb.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"logb","package":"phobos","parentType":"","signature":"float logb(float  x)","url":"/ddoc/phobos/std/math/exponential/logb.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"logbImpl","package":"phobos","parentType":"","signature":"T logbImpl(T)(T x)","url":"/ddoc/phobos/std/math/exponential/logbImpl.html"},{"doc":"Efficiently calculates x * 2$(SUPERSCRIPT n).","kind":"function","module":"std.math.exponential","name":"scalbn","package":"phobos","parentType":"","signature":"real scalbn(real  x,  int  n)","url":"/ddoc/phobos/std/math/exponential/scalbn.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"scalbn","package":"phobos","parentType":"","signature":"double scalbn(double  x,  int  n)","url":"/ddoc/phobos/std/math/exponential/scalbn.html"},{"doc":"ditto","kind":"function","module":"std.math.exponential","name":"scalbn","package":"phobos","parentType":"","signature":"float scalbn(float  x,  int  n)","url":"/ddoc/phobos/std/math/exponential/scalbn.html"},{"doc":"","kind":"function","module":"std.math.exponential","name":"_scalbn","package":"phobos","parentType":"","signature":"F _scalbn(F)(F x,  int  n)","url":"/ddoc/phobos/std/math/exponential/_scalbn.html"},{"doc":"Special return values of $(LREF ilogb).","kind":"alias","module":"std.math.exponential","name":"FP_ILOGB0","package":"phobos","parentType":"","signature":"FP_ILOGB0 = core.stdc.math.FP_ILOGB0","url":"/ddoc/phobos/std/math/exponential.html#FP_ILOGB0"},{"doc":"ditto","kind":"alias","module":"std.math.exponential","name":"FP_ILOGBNAN","package":"phobos","parentType":"","signature":"FP_ILOGBNAN = core.stdc.math.FP_ILOGBNAN","url":"/ddoc/phobos/std/math/exponential.html#FP_ILOGBNAN"},{"doc":"","kind":"template","module":"std.math.exponential","name":"LogCoeffs","package":"phobos","parentType":"","signature":"LogCoeffs(T)","url":"/ddoc/phobos/std/math/exponential.html#LogCoeffs"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.hardware","name":"std.math.hardware","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/hardware.html"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.operations","name":"std.math.operations","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/operations.html"},{"doc":"Create a quiet $(NAN), storing an integer inside the payload.","kind":"function","module":"std.math.operations","name":"NaN","package":"phobos","parentType":"","signature":"real NaN(ulong  payload)","url":"/ddoc/phobos/std/math/operations/NaN.html"},{"doc":"Extract an integral payload from a $(NAN).","kind":"function","module":"std.math.operations","name":"getNaNPayload","package":"phobos","parentType":"","signature":"ulong getNaNPayload(real  x)","url":"/ddoc/phobos/std/math/operations/getNaNPayload.html"},{"doc":"Calculate the next largest floating point value after x.","kind":"function","module":"std.math.operations","name":"nextUp","package":"phobos","parentType":"","signature":"real nextUp(real  x)","url":"/ddoc/phobos/std/math/operations/nextUp.html"},{"doc":"ditto","kind":"function","module":"std.math.operations","name":"nextUp","package":"phobos","parentType":"","signature":"double nextUp(double  x)","url":"/ddoc/phobos/std/math/operations/nextUp.html"},{"doc":"ditto","kind":"function","module":"std.math.operations","name":"nextUp","package":"phobos","parentType":"","signature":"float nextUp(float  x)","url":"/ddoc/phobos/std/math/operations/nextUp.html"},{"doc":"Calculate the next smallest floating point value before x.","kind":"function","module":"std.math.operations","name":"nextDown","package":"phobos","parentType":"","signature":"real nextDown(real  x)","url":"/ddoc/phobos/std/math/operations/nextDown.html"},{"doc":"ditto","kind":"function","module":"std.math.operations","name":"nextDown","package":"phobos","parentType":"","signature":"double nextDown(double  x)","url":"/ddoc/phobos/std/math/operations/nextDown.html"},{"doc":"ditto","kind":"function","module":"std.math.operations","name":"nextDown","package":"phobos","parentType":"","signature":"float nextDown(float  x)","url":"/ddoc/phobos/std/math/operations/nextDown.html"},{"doc":"Calculates the next representable value after x in the direction of y.","kind":"function","module":"std.math.operations","name":"nextafter","package":"phobos","parentType":"","signature":"T nextafter(T)(const  T x,  const  T y)","url":"/ddoc/phobos/std/math/operations/nextafter.html"},{"doc":"Returns the positive difference between x and y.","kind":"function","module":"std.math.operations","name":"fdim","package":"phobos","parentType":"","signature":"real fdim(real  x,  real  y)","url":"/ddoc/phobos/std/math/operations/fdim.html"},{"doc":"Returns the larger of `x` and `y`.","kind":"function","module":"std.math.operations","name":"fmax","package":"phobos","parentType":"","signature":"F fmax(F)(const  F x,  const  F y) if (__traits(isFloating,  F))","url":"/ddoc/phobos/std/math/operations/fmax.html"},{"doc":"Returns the smaller of `x` and `y`.","kind":"function","module":"std.math.operations","name":"fmin","package":"phobos","parentType":"","signature":"F fmin(F)(const  F x,  const  F y) if (__traits(isFloating,  F))","url":"/ddoc/phobos/std/math/operations/fmin.html"},{"doc":"Returns (x * y) + z, rounding only once according to the current rounding mode.","kind":"function","module":"std.math.operations","name":"fma","package":"phobos","parentType":"","signature":"real fma(real  x,  real  y,  real  z)","url":"/ddoc/phobos/std/math/operations/fma.html"},{"doc":"To what precision is x equal to y?","kind":"function","module":"std.math.operations","name":"feqrel","package":"phobos","parentType":"","signature":"int feqrel(X)(const  X x,  const  X y) if (isFloatingPoint!(X))","url":"/ddoc/phobos/std/math/operations/feqrel.html"},{"doc":"Computes whether a values is approximately equal to a reference value, admitting a maximum relative difference, and a maximum absolute difference.","kind":"function","module":"std.math.operations","name":"approxEqual","package":"phobos","parentType":"","signature":"bool approxEqual(T,  U,  V)(T value,  U reference,  V maxRelDiff =  1e-2,  V maxAbsDiff =  1e-5)","url":"/ddoc/phobos/std/math/operations/approxEqual.html"},{"doc":"Computes whether two values are approximately equal, admitting a maximum relative difference, and a maximum absolute difference.","kind":"function","module":"std.math.operations","name":"isClose","package":"phobos","parentType":"","signature":"bool isClose(T,  U,  V =  CommonType!(FloatingPointBaseType!T, FloatingPointBaseType!U))(T lhs,  U rhs,  V maxRelDiff =  CommonDefaultFor!(T, U),  V maxAbsDiff =  0.0)","url":"/ddoc/phobos/std/math/operations/isClose.html"},{"doc":"Defines a total order on all floating-point numbers.","kind":"function","module":"std.math.operations","name":"cmp","package":"phobos","parentType":"","signature":"int cmp(T)(const(T)  x,  const(T)  y) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/operations/cmp.html"},{"doc":"","kind":"function","module":"std.math.operations","name":"extractBitpattern","package":"phobos","parentType":"","signature":"FloatingPointBitpattern!T extractBitpattern(T)(const(T)  value) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/operations/extractBitpattern.html"},{"doc":"","kind":"struct","module":"std.math.operations","name":"FloatingPointBitpattern","package":"phobos","parentType":"","signature":"FloatingPointBitpattern(T) if (isFloatingPoint!T)","url":"/ddoc/phobos/std/math/operations.html#FloatingPointBitpattern"},{"doc":"","kind":"template","module":"std.math.operations","name":"CommonDefaultFor","package":"phobos","parentType":"","signature":"CommonDefaultFor(T, U)","url":"/ddoc/phobos/std/math/operations.html#CommonDefaultFor"},{"doc":"","kind":"template","module":"std.math.operations","name":"FloatingPointBaseType","package":"phobos","parentType":"","signature":"FloatingPointBaseType(T)","url":"/ddoc/phobos/std/math/operations.html#FloatingPointBaseType"},{"doc":"* Contains the elementary mathematical functions (powers, roots, * and trigonometric functions), and low-level floating-point operations. * Mathema...","kind":"module","module":"std.math","name":"std.math","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math.html"},{"doc":"","kind":"function","module":"std.math","name":"ieeeMean","package":"phobos","parentType":"","signature":"T ieeeMean(T)(const  T x,  const  T y)","url":"/ddoc/phobos/std/math/ieeeMean.html"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.remainder","name":"std.math.remainder","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/remainder.html"},{"doc":"Calculates the remainder from the calculation x/y. Returns: The value of x - i * y, where i is the number of times that y can be completely subtrac...","kind":"function","module":"std.math.remainder","name":"fmod","package":"phobos","parentType":"","signature":"real fmod(real  x,  real  y)","url":"/ddoc/phobos/std/math/remainder/fmod.html"},{"doc":"Breaks x into an integral part and a fractional part, each of which has the same sign as x. The integral part is stored in i. Returns: The fraction...","kind":"function","module":"std.math.remainder","name":"modf","package":"phobos","parentType":"","signature":"real modf(real  x,  ref  real  i)","url":"/ddoc/phobos/std/math/remainder/modf.html"},{"doc":"Calculate the remainder x REM y, following IEC 60559.","kind":"function","module":"std.math.remainder","name":"remainder","package":"phobos","parentType":"","signature":"real remainder(real  x,  real  y)","url":"/ddoc/phobos/std/math/remainder/remainder.html"},{"doc":"ditto","kind":"function","module":"std.math.remainder","name":"remquo","package":"phobos","parentType":"","signature":"real remquo(real  x,  real  y,  out  int  n)","url":"/ddoc/phobos/std/math/remainder/remquo.html"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.rounding","name":"std.math.rounding","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/rounding.html"},{"doc":"Returns the value of x rounded upward to the next integer (toward positive infinity).","kind":"function","module":"std.math.rounding","name":"ceil","package":"phobos","parentType":"","signature":"real ceil(real  x)","url":"/ddoc/phobos/std/math/rounding/ceil.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"ceil","package":"phobos","parentType":"","signature":"double ceil(double  x)","url":"/ddoc/phobos/std/math/rounding/ceil.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"ceil","package":"phobos","parentType":"","signature":"float ceil(float  x)","url":"/ddoc/phobos/std/math/rounding/ceil.html"},{"doc":"Returns the value of x rounded downward to the next integer (toward negative infinity).","kind":"function","module":"std.math.rounding","name":"floor","package":"phobos","parentType":"","signature":"real floor(real  x)","url":"/ddoc/phobos/std/math/rounding/floor.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"floor","package":"phobos","parentType":"","signature":"double floor(double  x)","url":"/ddoc/phobos/std/math/rounding/floor.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"floor","package":"phobos","parentType":"","signature":"float floor(float  x)","url":"/ddoc/phobos/std/math/rounding/floor.html"},{"doc":"Round `val` to a multiple of `unit`. `rfunc` specifies the rounding function to use; by default this is `rint`, which uses the current rounding mode.","kind":"function","module":"std.math.rounding","name":"quantize","package":"phobos","parentType":"","signature":"Unqual!F quantize(alias  rfunc =  rint,  F)(const  F val,  const  F unit) if (is(typeof(rfunc(F.init)) :  F)  &&  isFloatingPoint!F)","url":"/ddoc/phobos/std/math/rounding/quantize.html"},{"doc":"Round `val` to a multiple of `pow(base, exp)`. `rfunc` specifies the rounding function to use; by default this is `rint`, which uses the current ro...","kind":"function","module":"std.math.rounding","name":"quantize","package":"phobos","parentType":"","signature":"Unqual!F quantize(real  base,  alias  rfunc =  rint,  F,  E)(const  F val,  const  E exp) if (is(typeof(rfunc(F.init)) :  F)  &&  isFloatingPoint!F &&  isIntegral!E)","url":"/ddoc/phobos/std/math/rounding/quantize.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"quantize","package":"phobos","parentType":"","signature":"Unqual!F quantize(real  base,  long  exp =  1,  alias  rfunc =  rint,  F)(const  F val) if (is(typeof(rfunc(F.init)) :  F)  &&  isFloatingPoint!F)","url":"/ddoc/phobos/std/math/rounding/quantize.html"},{"doc":"Rounds x to the nearest integer value, using the current rounding mode.","kind":"function","module":"std.math.rounding","name":"nearbyint","package":"phobos","parentType":"","signature":"real nearbyint(real  x)","url":"/ddoc/phobos/std/math/rounding/nearbyint.html"},{"doc":"Rounds x to the nearest integer value, using the current rounding mode.","kind":"function","module":"std.math.rounding","name":"rint","package":"phobos","parentType":"","signature":"real rint(real  x)","url":"/ddoc/phobos/std/math/rounding/rint.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"rint","package":"phobos","parentType":"","signature":"double rint(double  x)","url":"/ddoc/phobos/std/math/rounding/rint.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"rint","package":"phobos","parentType":"","signature":"float rint(float  x)","url":"/ddoc/phobos/std/math/rounding/rint.html"},{"doc":"Rounds x to the nearest integer value, using the current rounding mode.","kind":"function","module":"std.math.rounding","name":"lrint","package":"phobos","parentType":"","signature":"long lrint(real  x)","url":"/ddoc/phobos/std/math/rounding/lrint.html"},{"doc":"Return the value of x rounded to the nearest integer. If the fractional part of x is exactly 0.5, the return value is rounded away from zero.","kind":"function","module":"std.math.rounding","name":"round","package":"phobos","parentType":"","signature":"auto round(real  x)","url":"/ddoc/phobos/std/math/rounding/round.html"},{"doc":"Return the value of x rounded to the nearest integer.","kind":"function","module":"std.math.rounding","name":"lround","package":"phobos","parentType":"","signature":"long lround(real  x)","url":"/ddoc/phobos/std/math/rounding/lround.html"},{"doc":"Returns the integer portion of x, dropping the fractional portion. This is also known as \"chop\" rounding. `pure` on all platforms.","kind":"function","module":"std.math.rounding","name":"trunc","package":"phobos","parentType":"","signature":"real trunc(real  x)","url":"/ddoc/phobos/std/math/rounding/trunc.html"},{"doc":"Returns x rounded to a long value using the current rounding mode. If the integer value of x is greater than long.max, the result is indeterminate.","kind":"function","module":"std.math.rounding","name":"rndtol","package":"phobos","parentType":"","signature":"long rndtol(real  x)","url":"/ddoc/phobos/std/math/rounding/rndtol.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"rndtol","package":"phobos","parentType":"","signature":"long rndtol(double  x)","url":"/ddoc/phobos/std/math/rounding/rndtol.html"},{"doc":"ditto","kind":"function","module":"std.math.rounding","name":"rndtol","package":"phobos","parentType":"","signature":"long rndtol(float  x)","url":"/ddoc/phobos/std/math/rounding/rndtol.html"},{"doc":"","kind":"function","module":"std.math.rounding","name":"floorImpl","package":"phobos","parentType":"","signature":"T floorImpl(T)(const  T x)","url":"/ddoc/phobos/std/math/rounding/floorImpl.html"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.traits","name":"std.math.traits","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/traits.html"},{"doc":"Determines if $(D_PARAM x) is NaN. Params: x = a floating point number. Returns: `true` if $(D_PARAM x) is Nan.","kind":"function","module":"std.math.traits","name":"isNaN","package":"phobos","parentType":"","signature":"bool isNaN(X)(X x) if (isFloatingPoint!(X))","url":"/ddoc/phobos/std/math/traits/isNaN.html"},{"doc":"Determines if $(D_PARAM x) is finite. Params: x = a floating point number. Returns: `true` if $(D_PARAM x) is finite.","kind":"function","module":"std.math.traits","name":"isFinite","package":"phobos","parentType":"","signature":"bool isFinite(X)(X x)","url":"/ddoc/phobos/std/math/traits/isFinite.html"},{"doc":"Determines if $(D_PARAM x) is normalized.","kind":"function","module":"std.math.traits","name":"isNormal","package":"phobos","parentType":"","signature":"bool isNormal(X)(X x)","url":"/ddoc/phobos/std/math/traits/isNormal.html"},{"doc":"Determines if $(D_PARAM x) is subnormal.","kind":"function","module":"std.math.traits","name":"isSubnormal","package":"phobos","parentType":"","signature":"bool isSubnormal(X)(X x)","url":"/ddoc/phobos/std/math/traits/isSubnormal.html"},{"doc":"Determines if $(D_PARAM x) is $(PLUSMN)$(INFIN). Params: x = a floating point number. Returns: `true` if $(D_PARAM x) is $(PLUSMN)$(INFIN).","kind":"function","module":"std.math.traits","name":"isInfinity","package":"phobos","parentType":"","signature":"bool isInfinity(X)(X x) if (isFloatingPoint!(X))","url":"/ddoc/phobos/std/math/traits/isInfinity.html"},{"doc":"Is the binary representation of x identical to y?","kind":"function","module":"std.math.traits","name":"isIdentical","package":"phobos","parentType":"","signature":"bool isIdentical(real  x,  real  y)","url":"/ddoc/phobos/std/math/traits/isIdentical.html"},{"doc":"Return 1 if sign bit of e is set, 0 if not.","kind":"function","module":"std.math.traits","name":"signbit","package":"phobos","parentType":"","signature":"int signbit(X)(X x)","url":"/ddoc/phobos/std/math/traits/signbit.html"},{"doc":"Params: to = the numeric value to use from = the sign value to use Returns: a value composed of to with from's sign bit.","kind":"function","module":"std.math.traits","name":"copysign","package":"phobos","parentType":"","signature":"R copysign(R,  X)(R to,  X from) if (isFloatingPoint!(R)  &&  isFloatingPoint!(X))","url":"/ddoc/phobos/std/math/traits/copysign.html"},{"doc":"ditto","kind":"function","module":"std.math.traits","name":"copysign","package":"phobos","parentType":"","signature":"R copysign(R,  X)(X to,  R from) if (isIntegral!(X)  &&  isFloatingPoint!(R))","url":"/ddoc/phobos/std/math/traits/copysign.html"},{"doc":"Returns `-1` if $(D x < 0), `x` if $(D x == 0), `1` if $(D x > 0), and $(NAN) if x==$(NAN).","kind":"function","module":"std.math.traits","name":"sgn","package":"phobos","parentType":"","signature":"F sgn(F)(F x) if (isFloatingPoint!F ||  isIntegral!F)","url":"/ddoc/phobos/std/math/traits/sgn.html"},{"doc":"Check whether a number is an integer power of two.","kind":"function","module":"std.math.traits","name":"isPowerOf2","package":"phobos","parentType":"","signature":"bool isPowerOf2(X)(const  X x) if (isNumeric!X)","url":"/ddoc/phobos/std/math/traits/isPowerOf2.html"},{"doc":"","kind":"enum","module":"std.math.traits","name":"RealFormat","package":"phobos","parentType":"","signature":"RealFormat","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeHalf","package":"phobos","parentType":"","signature":"ieeeHalf = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeSingle","package":"phobos","parentType":"","signature":"ieeeSingle = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeDouble","package":"phobos","parentType":"","signature":"ieeeDouble = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeExtended","package":"phobos","parentType":"","signature":"ieeeExtended = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeExtended53","package":"phobos","parentType":"","signature":"ieeeExtended53 = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ibmExtended","package":"phobos","parentType":"","signature":"ibmExtended = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"enum_member","module":"std.math.traits","name":"ieeeQuadruple","package":"phobos","parentType":"","signature":"ieeeQuadruple = ","url":"/ddoc/phobos/std/math/traits.html#RealFormat"},{"doc":"","kind":"template","module":"std.math.traits","name":"floatTraits","package":"phobos","parentType":"","signature":"floatTraits(T)","url":"/ddoc/phobos/std/math/traits.html#floatTraits"},{"doc":"This is a submodule of $(MREF std, math).","kind":"module","module":"std.math.trigonometry","name":"std.math.trigonometry","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/math/trigonometry.html"},{"doc":"Returns cosine of x. x is in radians.","kind":"function","module":"std.math.trigonometry","name":"cos","package":"phobos","parentType":"","signature":"real cos(real  x)","url":"/ddoc/phobos/std/math/trigonometry/cos.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"cos","package":"phobos","parentType":"","signature":"double cos(double  x)","url":"/ddoc/phobos/std/math/trigonometry/cos.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"cos","package":"phobos","parentType":"","signature":"float cos(float  x)","url":"/ddoc/phobos/std/math/trigonometry/cos.html"},{"doc":"Returns $(HTTP en.wikipedia.org/wiki/Sine, sine) of x. x is in $(HTTP en.wikipedia.org/wiki/Radian, radians).","kind":"function","module":"std.math.trigonometry","name":"sin","package":"phobos","parentType":"","signature":"real sin(real  x)","url":"/ddoc/phobos/std/math/trigonometry/sin.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"sin","package":"phobos","parentType":"","signature":"double sin(double  x)","url":"/ddoc/phobos/std/math/trigonometry/sin.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"sin","package":"phobos","parentType":"","signature":"float sin(float  x)","url":"/ddoc/phobos/std/math/trigonometry/sin.html"},{"doc":"Returns tangent of x. x is in radians.","kind":"function","module":"std.math.trigonometry","name":"tan","package":"phobos","parentType":"","signature":"real tan(real  x)","url":"/ddoc/phobos/std/math/trigonometry/tan.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"tan","package":"phobos","parentType":"","signature":"double tan(double  x)","url":"/ddoc/phobos/std/math/trigonometry/tan.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"tan","package":"phobos","parentType":"","signature":"float tan(float  x)","url":"/ddoc/phobos/std/math/trigonometry/tan.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"tanImpl","package":"phobos","parentType":"","signature":"T tanImpl(T)(T x)","url":"/ddoc/phobos/std/math/trigonometry/tanImpl.html"},{"doc":"Calculates the arc cosine of x, returning a value ranging from 0 to $(PI).","kind":"function","module":"std.math.trigonometry","name":"acos","package":"phobos","parentType":"","signature":"real acos(real  x)","url":"/ddoc/phobos/std/math/trigonometry/acos.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"acos","package":"phobos","parentType":"","signature":"double acos(double  x)","url":"/ddoc/phobos/std/math/trigonometry/acos.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"acos","package":"phobos","parentType":"","signature":"float acos(float  x)","url":"/ddoc/phobos/std/math/trigonometry/acos.html"},{"doc":"Calculates the arc sine of x, returning a value ranging from -$(PI)/2 to $(PI)/2.","kind":"function","module":"std.math.trigonometry","name":"asin","package":"phobos","parentType":"","signature":"real asin(real  x)","url":"/ddoc/phobos/std/math/trigonometry/asin.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"asin","package":"phobos","parentType":"","signature":"double asin(double  x)","url":"/ddoc/phobos/std/math/trigonometry/asin.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"asin","package":"phobos","parentType":"","signature":"float asin(float  x)","url":"/ddoc/phobos/std/math/trigonometry/asin.html"},{"doc":"Calculates the arc tangent of x, returning a value ranging from -$(PI)/2 to $(PI)/2.","kind":"function","module":"std.math.trigonometry","name":"atan","package":"phobos","parentType":"","signature":"real atan(real  x)","url":"/ddoc/phobos/std/math/trigonometry/atan.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atan","package":"phobos","parentType":"","signature":"double atan(double  x)","url":"/ddoc/phobos/std/math/trigonometry/atan.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atan","package":"phobos","parentType":"","signature":"float atan(float  x)","url":"/ddoc/phobos/std/math/trigonometry/atan.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"atanImpl","package":"phobos","parentType":"","signature":"T atanImpl(T)(T x)","url":"/ddoc/phobos/std/math/trigonometry/atanImpl.html"},{"doc":"Calculates the arc tangent of y / x, returning a value ranging from -$(PI) to $(PI).","kind":"function","module":"std.math.trigonometry","name":"atan2","package":"phobos","parentType":"","signature":"real atan2(real  y,  real  x)","url":"/ddoc/phobos/std/math/trigonometry/atan2.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atan2","package":"phobos","parentType":"","signature":"double atan2(double  y,  double  x)","url":"/ddoc/phobos/std/math/trigonometry/atan2.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atan2","package":"phobos","parentType":"","signature":"float atan2(float  y,  float  x)","url":"/ddoc/phobos/std/math/trigonometry/atan2.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"atan2Impl","package":"phobos","parentType":"","signature":"T atan2Impl(T)(T y,  T x)","url":"/ddoc/phobos/std/math/trigonometry/atan2Impl.html"},{"doc":"Calculates the hyperbolic cosine of x.","kind":"function","module":"std.math.trigonometry","name":"cosh","package":"phobos","parentType":"","signature":"real cosh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/cosh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"cosh","package":"phobos","parentType":"","signature":"double cosh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/cosh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"cosh","package":"phobos","parentType":"","signature":"float cosh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/cosh.html"},{"doc":"Calculates the hyperbolic sine of x.","kind":"function","module":"std.math.trigonometry","name":"sinh","package":"phobos","parentType":"","signature":"real sinh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/sinh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"sinh","package":"phobos","parentType":"","signature":"double sinh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/sinh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"sinh","package":"phobos","parentType":"","signature":"float sinh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/sinh.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"_sinh","package":"phobos","parentType":"","signature":"F _sinh(F)(F x)","url":"/ddoc/phobos/std/math/trigonometry/_sinh.html"},{"doc":"Calculates the hyperbolic tangent of x.","kind":"function","module":"std.math.trigonometry","name":"tanh","package":"phobos","parentType":"","signature":"real tanh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/tanh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"tanh","package":"phobos","parentType":"","signature":"double tanh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/tanh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"tanh","package":"phobos","parentType":"","signature":"float tanh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/tanh.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"_tanh","package":"phobos","parentType":"","signature":"F _tanh(F)(F x)","url":"/ddoc/phobos/std/math/trigonometry/_tanh.html"},{"doc":"Calculates the inverse hyperbolic cosine of x.","kind":"function","module":"std.math.trigonometry","name":"acosh","package":"phobos","parentType":"","signature":"real acosh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/acosh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"acosh","package":"phobos","parentType":"","signature":"double acosh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/acosh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"acosh","package":"phobos","parentType":"","signature":"float acosh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/acosh.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"_acosh","package":"phobos","parentType":"","signature":"F _acosh(F)(F x)","url":"/ddoc/phobos/std/math/trigonometry/_acosh.html"},{"doc":"Calculates the inverse hyperbolic sine of x.","kind":"function","module":"std.math.trigonometry","name":"asinh","package":"phobos","parentType":"","signature":"real asinh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/asinh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"asinh","package":"phobos","parentType":"","signature":"double asinh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/asinh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"asinh","package":"phobos","parentType":"","signature":"float asinh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/asinh.html"},{"doc":"","kind":"function","module":"std.math.trigonometry","name":"_asinh","package":"phobos","parentType":"","signature":"F _asinh(F)(F x)","url":"/ddoc/phobos/std/math/trigonometry/_asinh.html"},{"doc":"Calculates the inverse hyperbolic tangent of x, returning a value from ranging from -1 to 1.","kind":"function","module":"std.math.trigonometry","name":"atanh","package":"phobos","parentType":"","signature":"real atanh(real  x)","url":"/ddoc/phobos/std/math/trigonometry/atanh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atanh","package":"phobos","parentType":"","signature":"double atanh(double  x)","url":"/ddoc/phobos/std/math/trigonometry/atanh.html"},{"doc":"ditto","kind":"function","module":"std.math.trigonometry","name":"atanh","package":"phobos","parentType":"","signature":"float atanh(float  x)","url":"/ddoc/phobos/std/math/trigonometry/atanh.html"},{"doc":"Mathematical Special Functions","kind":"module","module":"std.mathspecial","name":"std.mathspecial","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/mathspecial.html"},{"doc":"The Gamma function, $(GAMMA)(x)","kind":"function","module":"std.mathspecial","name":"gamma","package":"phobos","parentType":"","signature":"real gamma(real  x)","url":"/ddoc/phobos/std/mathspecial/gamma.html"},{"doc":"Natural logarithm of the gamma function, $(GAMMA)(x)","kind":"function","module":"std.mathspecial","name":"logGamma","package":"phobos","parentType":"","signature":"real logGamma(real  x)","url":"/ddoc/phobos/std/mathspecial/logGamma.html"},{"doc":"The sign of $(GAMMA)(x).","kind":"function","module":"std.mathspecial","name":"sgnGamma","package":"phobos","parentType":"","signature":"real sgnGamma(real  x)","url":"/ddoc/phobos/std/mathspecial/sgnGamma.html"},{"doc":"Beta function, B(x,y)","kind":"function","module":"std.mathspecial","name":"beta","package":"phobos","parentType":"","signature":"real beta(real  x,  real  y)","url":"/ddoc/phobos/std/mathspecial/beta.html"},{"doc":"Digamma function, $(PSI)(x)","kind":"function","module":"std.mathspecial","name":"digamma","package":"phobos","parentType":"","signature":"real digamma(real  x)","url":"/ddoc/phobos/std/mathspecial/digamma.html"},{"doc":"Log Minus Digamma function","kind":"function","module":"std.mathspecial","name":"logmdigamma","package":"phobos","parentType":"","signature":"real logmdigamma(real  x)","url":"/ddoc/phobos/std/mathspecial/logmdigamma.html"},{"doc":"Inverse of the Log Minus Digamma function","kind":"function","module":"std.mathspecial","name":"logmdigammaInverse","package":"phobos","parentType":"","signature":"real logmdigammaInverse(real  x)","url":"/ddoc/phobos/std/mathspecial/logmdigammaInverse.html"},{"doc":"Incomplete beta integral","kind":"function","module":"std.mathspecial","name":"betaIncomplete","package":"phobos","parentType":"","signature":"real betaIncomplete(real  a,  real  b,  real  x )","url":"/ddoc/phobos/std/mathspecial/betaIncomplete.html"},{"doc":"Inverse of incomplete beta integral","kind":"function","module":"std.mathspecial","name":"betaIncompleteInverse","package":"phobos","parentType":"","signature":"real betaIncompleteInverse(real  a,  real  b,  real  y )","url":"/ddoc/phobos/std/mathspecial/betaIncompleteInverse.html"},{"doc":"Incomplete gamma integral and its complement","kind":"function","module":"std.mathspecial","name":"gammaIncomplete","package":"phobos","parentType":"","signature":"real gammaIncomplete(real  a,  real  x )","url":"/ddoc/phobos/std/mathspecial/gammaIncomplete.html"},{"doc":"ditto","kind":"function","module":"std.mathspecial","name":"gammaIncompleteCompl","package":"phobos","parentType":"","signature":"real gammaIncompleteCompl(real  a,  real  x )","url":"/ddoc/phobos/std/mathspecial/gammaIncompleteCompl.html"},{"doc":"Inverse of complemented incomplete gamma integral","kind":"function","module":"std.mathspecial","name":"gammaIncompleteComplInverse","package":"phobos","parentType":"","signature":"real gammaIncompleteComplInverse(real  a,  real  p)","url":"/ddoc/phobos/std/mathspecial/gammaIncompleteComplInverse.html"},{"doc":"Error function","kind":"function","module":"std.mathspecial","name":"erf","package":"phobos","parentType":"","signature":"real erf(real  x)","url":"/ddoc/phobos/std/mathspecial/erf.html"},{"doc":"Complementary error function","kind":"function","module":"std.mathspecial","name":"erfc","package":"phobos","parentType":"","signature":"real erfc(real  x)","url":"/ddoc/phobos/std/mathspecial/erfc.html"},{"doc":"Standard normal distribution function.","kind":"function","module":"std.mathspecial","name":"normalDistribution","package":"phobos","parentType":"","signature":"real normalDistribution(real  x)","url":"/ddoc/phobos/std/mathspecial/normalDistribution.html"},{"doc":"Inverse of Standard normal distribution function","kind":"function","module":"std.mathspecial","name":"normalDistributionInverse","package":"phobos","parentType":"","signature":"real normalDistributionInverse(real  p)","url":"/ddoc/phobos/std/mathspecial/normalDistributionInverse.html"},{"doc":"Templates to manipulate $(DDSUBLINK spec/template, variadic-templates, template parameter sequences) (also known as $(I alias sequences)).","kind":"module","module":"std.meta","name":"std.meta","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/meta.html"},{"doc":"Creates a sequence of zero or more aliases. This is most commonly used as template parameters or arguments.","kind":"alias","module":"std.meta","name":"AliasSeq","package":"phobos","parentType":"","signature":"AliasSeq(TList...) = TList","url":"/ddoc/phobos/std/meta.html#AliasSeq"},{"doc":"Allows `alias`ing of any single symbol, type or compile-time expression.","kind":"alias","module":"std.meta","name":"Alias","package":"phobos","parentType":"","signature":"Alias(alias  a) = a","url":"/ddoc/phobos/std/meta.html#Alias"},{"doc":"Ditto","kind":"alias","module":"std.meta","name":"Alias","package":"phobos","parentType":"","signature":"Alias(T) = T","url":"/ddoc/phobos/std/meta.html#Alias"},{"doc":"Instantiates the given template with the given parameters.","kind":"alias","module":"std.meta","name":"Instantiate","package":"phobos","parentType":"","signature":"Instantiate(alias  Template,  Params...) = Template!Params","url":"/ddoc/phobos/std/meta.html#Instantiate"},{"doc":"","kind":"template","module":"std.meta","name":"OldAlias","package":"phobos","parentType":"","signature":"OldAlias(alias  a)","url":"/ddoc/phobos/std/meta.html#OldAlias"},{"doc":"","kind":"template","module":"std.meta","name":"OldAlias","package":"phobos","parentType":"","signature":"OldAlias(T)","url":"/ddoc/phobos/std/meta.html#OldAlias"},{"doc":"Returns the index of the first occurrence of `args[0]` in the sequence `args[1 .. $]`. `args` may be types or compile-time values. If not found, `-...","kind":"template","module":"std.meta","name":"staticIndexOf","package":"phobos","parentType":"","signature":"staticIndexOf(args...)","url":"/ddoc/phobos/std/meta.html#staticIndexOf"},{"doc":"Returns an `AliasSeq` created from `args[1 .. $]` with the first occurrence, if any, of `args[0]` removed.","kind":"template","module":"std.meta","name":"Erase","package":"phobos","parentType":"","signature":"Erase(args...)","url":"/ddoc/phobos/std/meta.html#Erase"},{"doc":"Returns an `AliasSeq` created from `args[1 .. $]` with all occurrences, if any, of `args[0]` removed.","kind":"template","module":"std.meta","name":"EraseAll","package":"phobos","parentType":"","signature":"EraseAll(args...)","url":"/ddoc/phobos/std/meta.html#EraseAll"},{"doc":"","kind":"template","module":"std.meta","name":"AppendUnique","package":"phobos","parentType":"","signature":"AppendUnique(items...)","url":"/ddoc/phobos/std/meta.html#AppendUnique"},{"doc":"Returns an `AliasSeq` created from `args` with all duplicate types removed.","kind":"template","module":"std.meta","name":"NoDuplicates","package":"phobos","parentType":"","signature":"NoDuplicates(args...)","url":"/ddoc/phobos/std/meta.html#NoDuplicates"},{"doc":"Returns an `AliasSeq` created from TList with the first occurrence of T, if found, replaced with U.","kind":"template","module":"std.meta","name":"Replace","package":"phobos","parentType":"","signature":"Replace(T,  U,  TList...)","url":"/ddoc/phobos/std/meta.html#Replace"},{"doc":"Ditto","kind":"template","module":"std.meta","name":"Replace","package":"phobos","parentType":"","signature":"Replace(alias  T,  U,  TList...)","url":"/ddoc/phobos/std/meta.html#Replace"},{"doc":"Ditto","kind":"template","module":"std.meta","name":"Replace","package":"phobos","parentType":"","signature":"Replace(T,  alias  U,  TList...)","url":"/ddoc/phobos/std/meta.html#Replace"},{"doc":"Ditto","kind":"template","module":"std.meta","name":"Replace","package":"phobos","parentType":"","signature":"Replace(alias  T,  alias  U,  TList...)","url":"/ddoc/phobos/std/meta.html#Replace"},{"doc":"","kind":"template","module":"std.meta","name":"GenericReplace","package":"phobos","parentType":"","signature":"GenericReplace(args...)","url":"/ddoc/phobos/std/meta.html#GenericReplace"},{"doc":"Returns an `AliasSeq` created from `args[2 .. $]` with all occurrences of `args[0]`, if any, replaced with `args[1]`.","kind":"template","module":"std.meta","name":"ReplaceAll","package":"phobos","parentType":"","signature":"ReplaceAll(args...)","url":"/ddoc/phobos/std/meta.html#ReplaceAll"},{"doc":"Returns an `AliasSeq` created from `args` with the order reversed.","kind":"template","module":"std.meta","name":"Reverse","package":"phobos","parentType":"","signature":"Reverse(args...)","url":"/ddoc/phobos/std/meta.html#Reverse"},{"doc":"Returns the type from `TList` that is the most derived from type `T`. If no such type is found, `T` is returned.","kind":"template","module":"std.meta","name":"MostDerived","package":"phobos","parentType":"","signature":"MostDerived(T,  TList...)","url":"/ddoc/phobos/std/meta.html#MostDerived"},{"doc":"Returns an `AliasSeq` with the elements of TList sorted so that the most derived types come first.","kind":"template","module":"std.meta","name":"DerivedToFront","package":"phobos","parentType":"","signature":"DerivedToFront(TList...)","url":"/ddoc/phobos/std/meta.html#DerivedToFront"},{"doc":"Evaluates to `AliasSeq!(fun!(args[0]), fun!(args[1]), ..., fun!(args[$ - 1]))`.","kind":"template","module":"std.meta","name":"staticMap","package":"phobos","parentType":"","signature":"staticMap(alias  fun,  args...)","url":"/ddoc/phobos/std/meta.html#staticMap"},{"doc":"Filters an `AliasSeq` using a template predicate. Returns an `AliasSeq` of the elements which satisfy the predicate.","kind":"template","module":"std.meta","name":"Filter","package":"phobos","parentType":"","signature":"Filter(alias  pred,  args...)","url":"/ddoc/phobos/std/meta.html#Filter"},{"doc":"Negates the passed template predicate.","kind":"template","module":"std.meta","name":"templateNot","package":"phobos","parentType":"","signature":"templateNot(alias  pred)","url":"/ddoc/phobos/std/meta.html#templateNot"},{"doc":"Combines several template predicates using logical AND, i.e. constructs a new predicate which evaluates to true for a given input T if and only if ...","kind":"template","module":"std.meta","name":"templateAnd","package":"phobos","parentType":"","signature":"templateAnd(Preds...)","url":"/ddoc/phobos/std/meta.html#templateAnd"},{"doc":"Combines several template predicates using logical OR, i.e. constructs a new predicate which evaluates to true for a given input T if and only at l...","kind":"template","module":"std.meta","name":"templateOr","package":"phobos","parentType":"","signature":"templateOr(Preds...)","url":"/ddoc/phobos/std/meta.html#templateOr"},{"doc":"Converts any foreach-iterable entity (e.g. an input range) to an alias sequence.","kind":"template","module":"std.meta","name":"aliasSeqOf","package":"phobos","parentType":"","signature":"aliasSeqOf(alias  iter)","url":"/ddoc/phobos/std/meta.html#aliasSeqOf"},{"doc":"","kind":"struct","module":"std.meta","name":"Impl","package":"phobos","parentType":"","signature":"Impl","url":"/ddoc/phobos/std/meta.html#aliasSeqOf"},{"doc":"$(LINK2 http://en.wikipedia.org/wiki/Partial_application, Partially applies) $(D_PARAM Template) by binding its first (left) or last (right) argume...","kind":"template","module":"std.meta","name":"ApplyLeft","package":"phobos","parentType":"","signature":"ApplyLeft(alias  Template,  args...)","url":"/ddoc/phobos/std/meta.html#ApplyLeft"},{"doc":"Ditto","kind":"template","module":"std.meta","name":"ApplyRight","package":"phobos","parentType":"","signature":"ApplyRight(alias  Template,  args...)","url":"/ddoc/phobos/std/meta.html#ApplyRight"},{"doc":"","kind":"template","module":"std.meta","name":"SmartAlias","package":"phobos","parentType":"","signature":"SmartAlias(T...)","url":"/ddoc/phobos/std/meta.html#SmartAlias"},{"doc":"Creates an `AliasSeq` which repeats `items` exactly `n` times.","kind":"template","module":"std.meta","name":"Repeat","package":"phobos","parentType":"","signature":"Repeat(size_t n,  items...)","url":"/ddoc/phobos/std/meta.html#Repeat"},{"doc":"Sorts an $(LREF AliasSeq) using `cmp`.","kind":"template","module":"std.meta","name":"staticSort","package":"phobos","parentType":"","signature":"staticSort(alias  cmp,  items...)","url":"/ddoc/phobos/std/meta.html#staticSort"},{"doc":"","kind":"template","module":"std.meta","name":"staticMerge","package":"phobos","parentType":"","signature":"staticMerge(alias  cmp,  uint  mid,  items...)","url":"/ddoc/phobos/std/meta.html#staticMerge"},{"doc":"","kind":"template","module":"std.meta","name":"isLessEq","package":"phobos","parentType":"","signature":"isLessEq(alias  cmp,  Seq...)","url":"/ddoc/phobos/std/meta.html#isLessEq"},{"doc":"Selects a subset of `Args` by stepping with fixed `stepSize` over the sequence. A negative `stepSize` starts iteration with the last element.","kind":"template","module":"std.meta","name":"Stride","package":"phobos","parentType":"","signature":"Stride(int  stepSize,  Args...)","url":"/ddoc/phobos/std/meta.html#Stride"},{"doc":"","kind":"template","module":"std.meta","name":"isSame","package":"phobos","parentType":"","signature":"isSame(alias  a,  alias  b)","url":"/ddoc/phobos/std/meta.html#isSame"},{"doc":"","kind":"template","module":"std.meta","name":"isSame","package":"phobos","parentType":"","signature":"isSame(A,  B)","url":"/ddoc/phobos/std/meta.html#isSame"},{"doc":"","kind":"template","module":"std.meta","name":"Pack","package":"phobos","parentType":"","signature":"Pack(T...)","url":"/ddoc/phobos/std/meta.html#Pack"},{"doc":"Read and write memory mapped files.","kind":"module","module":"std.mmfile","name":"std.mmfile","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/mmfile.html"},{"doc":"MmFile objects control the memory mapped file resource.","kind":"class","module":"std.mmfile","name":"MmFile","package":"phobos","parentType":"","signature":"MmFile","url":"/ddoc/phobos/std/mmfile.html#MmFile"},{"doc":"","kind":"method","module":"std.mmfile","name":"flush","package":"phobos","parentType":"MmFile","signature":"void flush()","url":"/ddoc/phobos/std/mmfile/MmFile.flush.html"},{"doc":"Gives size in bytes of the memory mapped file.","kind":"method","module":"std.mmfile","name":"length","package":"phobos","parentType":"MmFile","signature":"ulong length()","url":"/ddoc/phobos/std/mmfile/MmFile.length.html"},{"doc":"Read-only property returning the file mode.","kind":"method","module":"std.mmfile","name":"mode","package":"phobos","parentType":"MmFile","signature":"Mode mode()","url":"/ddoc/phobos/std/mmfile/MmFile.mode.html"},{"doc":"Returns entire file contents as an array.","kind":"method","module":"std.mmfile","name":"opSlice","package":"phobos","parentType":"MmFile","signature":"void[] opSlice()","url":"/ddoc/phobos/std/mmfile/MmFile.opSlice.html"},{"doc":"Returns slice of file contents as an array.","kind":"method","module":"std.mmfile","name":"opSlice","package":"phobos","parentType":"MmFile","signature":"void[] opSlice(ulong  i1,  ulong  i2)","url":"/ddoc/phobos/std/mmfile/MmFile.opSlice.html"},{"doc":"Returns byte at index i in file.","kind":"method","module":"std.mmfile","name":"opIndex","package":"phobos","parentType":"MmFile","signature":"ubyte opIndex(ulong  i)","url":"/ddoc/phobos/std/mmfile/MmFile.opIndex.html"},{"doc":"Sets and returns byte at index i in file to value.","kind":"method","module":"std.mmfile","name":"opIndexAssign","package":"phobos","parentType":"MmFile","signature":"ubyte opIndexAssign(ubyte  value,  ulong  i)","url":"/ddoc/phobos/std/mmfile/MmFile.opIndexAssign.html"},{"doc":"","kind":"method","module":"std.mmfile","name":"mapped","package":"phobos","parentType":"MmFile","signature":"int mapped(ulong  i)","url":"/ddoc/phobos/std/mmfile/MmFile.mapped.html"},{"doc":"","kind":"method","module":"std.mmfile","name":"unmap","package":"phobos","parentType":"MmFile","signature":"void unmap()","url":"/ddoc/phobos/std/mmfile/MmFile.unmap.html"},{"doc":"","kind":"method","module":"std.mmfile","name":"map","package":"phobos","parentType":"MmFile","signature":"void map(ulong  start,  size_t len)","url":"/ddoc/phobos/std/mmfile/MmFile.map.html"},{"doc":"","kind":"method","module":"std.mmfile","name":"ensureMapped","package":"phobos","parentType":"MmFile","signature":"void ensureMapped(ulong  i)","url":"/ddoc/phobos/std/mmfile/MmFile.ensureMapped.html"},{"doc":"","kind":"method","module":"std.mmfile","name":"ensureMapped","package":"phobos","parentType":"MmFile","signature":"void ensureMapped(ulong  i,  ulong  j)","url":"/ddoc/phobos/std/mmfile/MmFile.ensureMapped.html"},{"doc":"Networking client functionality as provided by $(HTTP curl.haxx.se/libcurl, libcurl). The libcurl library must be installed on the system in order ...","kind":"module","module":"std.net.curl","name":"std.net.curl","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/net/curl.html"},{"doc":"Validates an email address according to RFCs 5321, 5322 and others.","kind":"module","module":"std.net.isemail","name":"std.net.isemail","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/net/isemail.html"},{"doc":"Check that an email address conforms to RFCs 5321, 5322 and others.","kind":"function","module":"std.net.isemail","name":"isEmail","package":"phobos","parentType":"","signature":"EmailStatus isEmail(Char)(const(Char)[]  email,  CheckDns checkDNS =  No.checkDns,\n EmailStatusCode errorLevel =  EmailStatusCode.none) if (isSomeChar!(Char))","url":"/ddoc/phobos/std/net/isemail/isEmail.html"},{"doc":"Params: statusCode = The $(LREF EmailStatusCode) to read Returns: A detailed string describing the given status code","kind":"function","module":"std.net.isemail","name":"statusCodeDescription","package":"phobos","parentType":"","signature":"string statusCodeDescription(EmailStatusCode statusCode)","url":"/ddoc/phobos/std/net/isemail/statusCodeDescription.html"},{"doc":"","kind":"function","module":"std.net.isemail","name":"compareFirstN","package":"phobos","parentType":"","signature":"int compareFirstN(alias  pred =  \"a < b\",  S1,  S2)(S1 s1,  S2 s2,  size_t length) if (is(immutable  ElementType!(S1)  ==  immutable  dchar)  &&  is(immutable  ElementType!(S2)  ==  immutable  dchar))","url":"/ddoc/phobos/std/net/isemail/compareFirstN.html"},{"doc":"","kind":"function","module":"std.net.isemail","name":"pop","package":"phobos","parentType":"","signature":"ElementType!(A) pop(A)(ref  A a) if (isDynamicArray!(A)  && !isNarrowString!(A)  &&  isMutable!(A)  && !is(A ==  void[]))","url":"/ddoc/phobos/std/net/isemail/pop.html"},{"doc":"","kind":"function","module":"std.net.isemail","name":"get","package":"phobos","parentType":"","signature":"const(T)[] get(T)(const(T)[]  str,  size_t index,  dchar  c)","url":"/ddoc/phobos/std/net/isemail/get.html"},{"doc":"","kind":"function","module":"std.net.isemail","name":"isUpToFourHexChars","package":"phobos","parentType":"","signature":"bool isUpToFourHexChars(Char)(scope  const(Char)[]  s)","url":"/ddoc/phobos/std/net/isemail/isUpToFourHexChars.html"},{"doc":"","kind":"function","module":"std.net.isemail","name":"matchIPSuffix","package":"phobos","parentType":"","signature":"const(Char)[] matchIPSuffix(Char)(return  scope  const(Char)[]  s)","url":"/ddoc/phobos/std/net/isemail/matchIPSuffix.html"},{"doc":"Flag for indicating if the isEmail function should perform a DNS check or not.","kind":"alias","module":"std.net.isemail","name":"CheckDns","package":"phobos","parentType":"","signature":"CheckDns = Flag!\"checkDns\"","url":"/ddoc/phobos/std/net/isemail.html#CheckDns"},{"doc":"Represents the status of an email address","kind":"struct","module":"std.net.isemail","name":"EmailStatus","package":"phobos","parentType":"","signature":"EmailStatus","url":"/ddoc/phobos/std/net/isemail.html#EmailStatus"},{"doc":"Returns: If the email address is valid or not.","kind":"method","module":"std.net.isemail","name":"valid","package":"phobos","parentType":"EmailStatus","signature":"bool valid()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.valid.html"},{"doc":"Returns: The local part of the email address, that is, the part before the @ sign.","kind":"method","module":"std.net.isemail","name":"localPart","package":"phobos","parentType":"EmailStatus","signature":"string localPart()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.localPart.html"},{"doc":"Returns: The domain part of the email address, that is, the part after the @ sign.","kind":"method","module":"std.net.isemail","name":"domainPart","package":"phobos","parentType":"EmailStatus","signature":"string domainPart()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.domainPart.html"},{"doc":"Returns: The email status code","kind":"method","module":"std.net.isemail","name":"statusCode","package":"phobos","parentType":"EmailStatus","signature":"EmailStatusCode statusCode()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.statusCode.html"},{"doc":"Returns: A describing string of the status code","kind":"method","module":"std.net.isemail","name":"status","package":"phobos","parentType":"EmailStatus","signature":"string status()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.status.html"},{"doc":"Returns: A textual representation of the email status","kind":"method","module":"std.net.isemail","name":"toString","package":"phobos","parentType":"EmailStatus","signature":"string toString()","url":"/ddoc/phobos/std/net/isemail/EmailStatus.toString.html"},{"doc":"An email status code, indicating if an email address is valid or not. If it is invalid it also indicates why.","kind":"enum","module":"std.net.isemail","name":"EmailStatusCode","package":"phobos","parentType":"","signature":"EmailStatusCode","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid","kind":"enum_member","module":"std.net.isemail","name":"validCategory","package":"phobos","parentType":"","signature":"validCategory = 1","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but a DNS check was not successful","kind":"enum_member","module":"std.net.isemail","name":"dnsWarning","package":"phobos","parentType":"","signature":"dnsWarning = 7","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid for SMTP but has unusual elements","kind":"enum_member","module":"std.net.isemail","name":"rfc5321","package":"phobos","parentType":"","signature":"rfc5321 = 15","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid within the message but cannot be used unmodified for the envelope","kind":"enum_member","module":"std.net.isemail","name":"cFoldingWhitespace","package":"phobos","parentType":"","signature":"cFoldingWhitespace = 31","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains deprecated elements but may still be valid in restricted contexts","kind":"enum_member","module":"std.net.isemail","name":"deprecated_","package":"phobos","parentType":"","signature":"deprecated_ = 63","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The address is only valid according to the broad definition of RFC 5322. It is otherwise invalid","kind":"enum_member","module":"std.net.isemail","name":"rfc5322","package":"phobos","parentType":"","signature":"rfc5322 = 127","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"All finer grained error checking is turned on. Address containing errors or warnings is considered invalid. A specific email status code will be re...","kind":"enum_member","module":"std.net.isemail","name":"any","package":"phobos","parentType":"","signature":"any = 252","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is either considered valid or not, no finer grained error checking is performed. Returned email status code will be either Error or Valid.","kind":"enum_member","module":"std.net.isemail","name":"none","package":"phobos","parentType":"","signature":"none = 253","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address containing warnings is considered valid, that is, any status code below 16 is considered valid.","kind":"enum_member","module":"std.net.isemail","name":"warning","package":"phobos","parentType":"","signature":"warning = 254","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is invalid for any purpose","kind":"enum_member","module":"std.net.isemail","name":"error","package":"phobos","parentType":"","signature":"error = 255","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid","kind":"enum_member","module":"std.net.isemail","name":"valid","package":"phobos","parentType":"","signature":"valid = 0","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Could not find an MX record for this domain but an A-record does exist","kind":"enum_member","module":"std.net.isemail","name":"dnsWarningNoMXRecord","package":"phobos","parentType":"","signature":"dnsWarningNoMXRecord = 5","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Could not find an MX record or an A-record for this domain","kind":"enum_member","module":"std.net.isemail","name":"dnsWarningNoRecord","package":"phobos","parentType":"","signature":"dnsWarningNoRecord = 6","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but at a Top Level Domain","kind":"enum_member","module":"std.net.isemail","name":"rfc5321TopLevelDomain","package":"phobos","parentType":"","signature":"rfc5321TopLevelDomain = 9","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but the Top Level Domain begins with a number","kind":"enum_member","module":"std.net.isemail","name":"rfc5321TopLevelDomainNumeric","package":"phobos","parentType":"","signature":"rfc5321TopLevelDomainNumeric = 10","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but contains a quoted string","kind":"enum_member","module":"std.net.isemail","name":"rfc5321QuotedString","package":"phobos","parentType":"","signature":"rfc5321QuotedString = 11","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but at a literal address not a domain","kind":"enum_member","module":"std.net.isemail","name":"rfc5321AddressLiteral","package":"phobos","parentType":"","signature":"rfc5321AddressLiteral = 12","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is valid but contains a :: that only elides one zero group","kind":"enum_member","module":"std.net.isemail","name":"rfc5321IpV6Deprecated","package":"phobos","parentType":"","signature":"rfc5321IpV6Deprecated = 13","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains comments","kind":"enum_member","module":"std.net.isemail","name":"comment","package":"phobos","parentType":"","signature":"comment = 17","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains Folding White Space","kind":"enum_member","module":"std.net.isemail","name":"foldingWhitespace","package":"phobos","parentType":"","signature":"foldingWhitespace = 18","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The local part is in a deprecated form","kind":"enum_member","module":"std.net.isemail","name":"deprecatedLocalPart","package":"phobos","parentType":"","signature":"deprecatedLocalPart = 33","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains an obsolete form of Folding White Space","kind":"enum_member","module":"std.net.isemail","name":"deprecatedFoldingWhitespace","package":"phobos","parentType":"","signature":"deprecatedFoldingWhitespace = 34","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A quoted string contains a deprecated character","kind":"enum_member","module":"std.net.isemail","name":"deprecatedQuotedText","package":"phobos","parentType":"","signature":"deprecatedQuotedText = 35","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A quoted pair contains a deprecated character","kind":"enum_member","module":"std.net.isemail","name":"deprecatedQuotedPair","package":"phobos","parentType":"","signature":"deprecatedQuotedPair = 36","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains a comment in a position that is deprecated","kind":"enum_member","module":"std.net.isemail","name":"deprecatedComment","package":"phobos","parentType":"","signature":"deprecatedComment = 37","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A comment contains a deprecated character","kind":"enum_member","module":"std.net.isemail","name":"deprecatedCommentText","package":"phobos","parentType":"","signature":"deprecatedCommentText = 38","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains a comment or Folding White Space around the @ sign","kind":"enum_member","module":"std.net.isemail","name":"deprecatedCommentFoldingWhitespaceNearAt","package":"phobos","parentType":"","signature":"deprecatedCommentFoldingWhitespaceNearAt = 49","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is RFC 5322 compliant but contains domain characters that are not allowed by DNS","kind":"enum_member","module":"std.net.isemail","name":"rfc5322Domain","package":"phobos","parentType":"","signature":"rfc5322Domain = 65","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address is too long","kind":"enum_member","module":"std.net.isemail","name":"rfc5322TooLong","package":"phobos","parentType":"","signature":"rfc5322TooLong = 66","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The local part of the address is too long","kind":"enum_member","module":"std.net.isemail","name":"rfc5322LocalTooLong","package":"phobos","parentType":"","signature":"rfc5322LocalTooLong = 67","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The domain part is too long","kind":"enum_member","module":"std.net.isemail","name":"rfc5322DomainTooLong","package":"phobos","parentType":"","signature":"rfc5322DomainTooLong = 68","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The domain part contains an element that is too long","kind":"enum_member","module":"std.net.isemail","name":"rfc5322LabelTooLong","package":"phobos","parentType":"","signature":"rfc5322LabelTooLong = 69","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The domain literal is not a valid RFC 5321 address literal","kind":"enum_member","module":"std.net.isemail","name":"rfc5322DomainLiteral","package":"phobos","parentType":"","signature":"rfc5322DomainLiteral = 70","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The domain literal is not a valid RFC 5321 address literal and it contains obsolete characters","kind":"enum_member","module":"std.net.isemail","name":"rfc5322DomainLiteralObsoleteText","package":"phobos","parentType":"","signature":"rfc5322DomainLiteralObsoleteText = 71","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The IPv6 literal address contains the wrong number of groups","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6GroupCount","package":"phobos","parentType":"","signature":"rfc5322IpV6GroupCount = 72","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The IPv6 literal address contains too many :: sequences","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6TooManyDoubleColons","package":"phobos","parentType":"","signature":"rfc5322IpV6TooManyDoubleColons = 73","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The IPv6 address contains an illegal group of characters","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6BadChar","package":"phobos","parentType":"","signature":"rfc5322IpV6BadChar = 74","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The IPv6 address has too many groups","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6MaxGroups","package":"phobos","parentType":"","signature":"rfc5322IpV6MaxGroups = 75","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"IPv6 address starts with a single colon","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6ColonStart","package":"phobos","parentType":"","signature":"rfc5322IpV6ColonStart = 76","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"IPv6 address ends with a single colon","kind":"enum_member","module":"std.net.isemail","name":"rfc5322IpV6ColonEnd","package":"phobos","parentType":"","signature":"rfc5322IpV6ColonEnd = 77","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A domain literal contains a character that is not allowed","kind":"enum_member","module":"std.net.isemail","name":"errorExpectingDomainText","package":"phobos","parentType":"","signature":"errorExpectingDomainText = 129","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address has no local part","kind":"enum_member","module":"std.net.isemail","name":"errorNoLocalPart","package":"phobos","parentType":"","signature":"errorNoLocalPart = 130","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address has no domain part","kind":"enum_member","module":"std.net.isemail","name":"errorNoDomain","package":"phobos","parentType":"","signature":"errorNoDomain = 131","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The address may not contain consecutive dots","kind":"enum_member","module":"std.net.isemail","name":"errorConsecutiveDots","package":"phobos","parentType":"","signature":"errorConsecutiveDots = 132","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains text after a comment or Folding White Space","kind":"enum_member","module":"std.net.isemail","name":"errorTextAfterCommentFoldingWhitespace","package":"phobos","parentType":"","signature":"errorTextAfterCommentFoldingWhitespace = 133","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains text after a quoted string","kind":"enum_member","module":"std.net.isemail","name":"errorTextAfterQuotedString","package":"phobos","parentType":"","signature":"errorTextAfterQuotedString = 134","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Extra characters were found after the end of the domain literal","kind":"enum_member","module":"std.net.isemail","name":"errorTextAfterDomainLiteral","package":"phobos","parentType":"","signature":"errorTextAfterDomainLiteral = 135","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The address contains a character that is not allowed in a quoted pair","kind":"enum_member","module":"std.net.isemail","name":"errorExpectingQuotedPair","package":"phobos","parentType":"","signature":"errorExpectingQuotedPair = 136","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains a character that is not allowed","kind":"enum_member","module":"std.net.isemail","name":"errorExpectingText","package":"phobos","parentType":"","signature":"errorExpectingText = 137","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A quoted string contains a character that is not allowed","kind":"enum_member","module":"std.net.isemail","name":"errorExpectingQuotedText","package":"phobos","parentType":"","signature":"errorExpectingQuotedText = 138","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A comment contains a character that is not allowed","kind":"enum_member","module":"std.net.isemail","name":"errorExpectingCommentText","package":"phobos","parentType":"","signature":"errorExpectingCommentText = 139","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"The address cannot end with a backslash","kind":"enum_member","module":"std.net.isemail","name":"errorBackslashEnd","package":"phobos","parentType":"","signature":"errorBackslashEnd = 140","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Neither part of the address may begin with a dot","kind":"enum_member","module":"std.net.isemail","name":"errorDotStart","package":"phobos","parentType":"","signature":"errorDotStart = 141","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Neither part of the address may end with a dot","kind":"enum_member","module":"std.net.isemail","name":"errorDotEnd","package":"phobos","parentType":"","signature":"errorDotEnd = 142","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A domain or subdomain cannot begin with a hyphen","kind":"enum_member","module":"std.net.isemail","name":"errorDomainHyphenStart","package":"phobos","parentType":"","signature":"errorDomainHyphenStart = 143","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"A domain or subdomain cannot end with a hyphen","kind":"enum_member","module":"std.net.isemail","name":"errorDomainHyphenEnd","package":"phobos","parentType":"","signature":"errorDomainHyphenEnd = 144","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Unclosed quoted string","kind":"enum_member","module":"std.net.isemail","name":"errorUnclosedQuotedString","package":"phobos","parentType":"","signature":"errorUnclosedQuotedString = 145","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Unclosed comment","kind":"enum_member","module":"std.net.isemail","name":"errorUnclosedComment","package":"phobos","parentType":"","signature":"errorUnclosedComment = 146","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Domain literal is missing its closing bracket","kind":"enum_member","module":"std.net.isemail","name":"errorUnclosedDomainLiteral","package":"phobos","parentType":"","signature":"errorUnclosedDomainLiteral = 147","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Folding White Space contains consecutive CRLF sequences","kind":"enum_member","module":"std.net.isemail","name":"errorFoldingWhitespaceCrflX2","package":"phobos","parentType":"","signature":"errorFoldingWhitespaceCrflX2 = 148","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Folding White Space ends with a CRLF sequence","kind":"enum_member","module":"std.net.isemail","name":"errorFoldingWhitespaceCrLfEnd","package":"phobos","parentType":"","signature":"errorFoldingWhitespaceCrLfEnd = 149","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"Address contains a carriage return that is not followed by a line feed","kind":"enum_member","module":"std.net.isemail","name":"errorCrNoLf","package":"phobos","parentType":"","signature":"errorCrNoLf = 150","url":"/ddoc/phobos/std/net/isemail.html#EmailStatusCode"},{"doc":"","kind":"enum","module":"std.net.isemail","name":"EmailPart","package":"phobos","parentType":"","signature":"EmailPart","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"componentLocalPart","package":"phobos","parentType":"","signature":"componentLocalPart = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"componentDomain","package":"phobos","parentType":"","signature":"componentDomain = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"componentLiteral","package":"phobos","parentType":"","signature":"componentLiteral = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"contextComment","package":"phobos","parentType":"","signature":"contextComment = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"contextFoldingWhitespace","package":"phobos","parentType":"","signature":"contextFoldingWhitespace = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"contextQuotedString","package":"phobos","parentType":"","signature":"contextQuotedString = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"contextQuotedPair","package":"phobos","parentType":"","signature":"contextQuotedPair = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"status","package":"phobos","parentType":"","signature":"status = ","url":"/ddoc/phobos/std/net/isemail.html#EmailPart"},{"doc":"","kind":"struct","module":"std.net.isemail","name":"TokenImpl","package":"phobos","parentType":"","signature":"TokenImpl(Char)","url":"/ddoc/phobos/std/net/isemail.html#TokenImpl"},{"doc":"","kind":"enum","module":"std.net.isemail","name":"AsciiToken","package":"phobos","parentType":"","signature":"AsciiToken","url":"/ddoc/phobos/std/net/isemail.html#AsciiToken"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"horizontalTab","package":"phobos","parentType":"","signature":"horizontalTab = 9","url":"/ddoc/phobos/std/net/isemail.html#AsciiToken"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"unitSeparator","package":"phobos","parentType":"","signature":"unitSeparator = 31","url":"/ddoc/phobos/std/net/isemail.html#AsciiToken"},{"doc":"","kind":"enum_member","module":"std.net.isemail","name":"delete_","package":"phobos","parentType":"","signature":"delete_ = 127","url":"/ddoc/phobos/std/net/isemail.html#AsciiToken"},{"doc":"This module is a port of a growing fragment of the $(D_PARAM numeric) header in Alexander Stepanov's $(LINK2 https://en.wikipedia.org/wiki/Standard...","kind":"module","module":"std.numeric","name":"std.numeric","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/numeric.html"},{"doc":"","kind":"function","module":"std.numeric","name":"isCorrectCustomFloat","package":"phobos","parentType":"","signature":"bool isCorrectCustomFloat(uint  precision,  uint  exponentWidth,  CustomFloatFlags flags)","url":"/ddoc/phobos/std/numeric/isCorrectCustomFloat.html"},{"doc":"Return true if a and b have opposite sign.","kind":"function","module":"std.numeric","name":"oppositeSigns","package":"phobos","parentType":"","signature":"bool oppositeSigns(T1,  T2)(T1 a,  T2 b)","url":"/ddoc/phobos/std/numeric/oppositeSigns.html"},{"doc":"Find a real root of a real function f(x) via bracketing.","kind":"function","module":"std.numeric","name":"findRoot","package":"phobos","parentType":"","signature":"T findRoot(T,  DF,  DT)(scope  DF f,  const  T a,  const  T b,\n     scope  DT tolerance) if (\n     isFloatingPoint!T &&\n     is(typeof(tolerance(T.init,  T.init)) :  bool)  &&\n     is(typeof(f(T.init))  ==  R,  R)  &&  isFloatingPoint!R\n    )","url":"/ddoc/phobos/std/numeric/findRoot.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"findRoot","package":"phobos","parentType":"","signature":"T findRoot(T,  DF)(scope  DF f,  const  T a,  const  T b)","url":"/ddoc/phobos/std/numeric/findRoot.html"},{"doc":"Find root of a real function f(x) by bracketing, allowing the termination condition to be specified.","kind":"function","module":"std.numeric","name":"findRoot","package":"phobos","parentType":"","signature":"Tuple!(T,  T,  R,  R) findRoot(T,  R,  DF,  DT)(scope  DF f,\n     const  T ax,  const  T bx,  const  R fax,  const  R fbx,\n     scope  DT tolerance) if (\n     isFloatingPoint!T &&\n     is(typeof(tolerance(T.init,  T.init)) :  bool)  &&\n     is(typeof(f(T.init))  ==  R)  &&  isFloatingPoint!R\n    )","url":"/ddoc/phobos/std/numeric/findRoot.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"findRoot","package":"phobos","parentType":"","signature":"Tuple!(T,  T,  R,  R) findRoot(T,  R,  DF)(scope  DF f,\n     const  T ax,  const  T bx,  const  R fax,  const  R fbx)","url":"/ddoc/phobos/std/numeric/findRoot.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"findRoot","package":"phobos","parentType":"","signature":"T findRoot(T,  R)(scope  R delegate(T)  f,  const  T a,  const  T b,\n     scope  bool  delegate(T lo,  T hi)  tolerance = (T a,  T b)  =>  false)","url":"/ddoc/phobos/std/numeric/findRoot.html"},{"doc":"Find a real minimum of a real function `f(x)` via bracketing. Given a function `f` and a range `(ax .. bx)`, returns the value of `x` in the range ...","kind":"function","module":"std.numeric","name":"findLocalMin","package":"phobos","parentType":"","signature":"Tuple!(T,  \"x\",  Unqual!(ReturnType!DF),  \"y\",  T,  \"error\") findLocalMin(T,  DF)(\n         scope  DF f,\n         const  T ax,\n         const  T bx,\n         const  T relTolerance =  sqrt(T.epsilon),\n         const  T absTolerance =  sqrt(T.epsilon),\n        ) if (isFloatingPoint!T\n    &&  __traits(compiles,  { T _ =  DF.init(T.init); }))","url":"/ddoc/phobos/std/numeric/findLocalMin.html"},{"doc":"Computes $(LINK2 https://en.wikipedia.org/wiki/Euclidean_distance, Euclidean distance) between input ranges `a` and `b`. The two ranges must have t...","kind":"function","module":"std.numeric","name":"euclideanDistance","package":"phobos","parentType":"","signature":"CommonType!(ElementType!(Range1),  ElementType!(Range2)) euclideanDistance(Range1,  Range2)(Range1 a,  Range2 b) if (isInputRange!(Range1)  &&  isInputRange!(Range2))","url":"/ddoc/phobos/std/numeric/euclideanDistance.html"},{"doc":"Ditto","kind":"function","module":"std.numeric","name":"euclideanDistance","package":"phobos","parentType":"","signature":"CommonType!(ElementType!(Range1),  ElementType!(Range2)) euclideanDistance(Range1,  Range2,  F)(Range1 a,  Range2 b,  F limit) if (isInputRange!(Range1)  &&  isInputRange!(Range2))","url":"/ddoc/phobos/std/numeric/euclideanDistance.html"},{"doc":"Computes the $(LINK2 https://en.wikipedia.org/wiki/Dot_product, dot product) of input ranges `a` and $(D b). The two ranges must have the same leng...","kind":"function","module":"std.numeric","name":"dotProduct","package":"phobos","parentType":"","signature":"CommonType!(ElementType!(Range1),  ElementType!(Range2)) dotProduct(Range1,  Range2)(Range1 a,  Range2 b) if (isInputRange!(Range1)  &&  isInputRange!(Range2)  &&\n    !(isArray!(Range1)  &&  isArray!(Range2)))","url":"/ddoc/phobos/std/numeric/dotProduct.html"},{"doc":"Ditto","kind":"function","module":"std.numeric","name":"dotProduct","package":"phobos","parentType":"","signature":"CommonType!(F1,  F2) dotProduct(F1,  F2)(in  F1[]  avector,  in  F2[]  bvector)","url":"/ddoc/phobos/std/numeric/dotProduct.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"dotProduct","package":"phobos","parentType":"","signature":"F dotProduct(F,  uint  N)(const  ref  scope  F[N]  a,  const  ref  scope  F[N]  b) if (N <=  16)","url":"/ddoc/phobos/std/numeric/dotProduct.html"},{"doc":"Computes the $(LINK2 https://en.wikipedia.org/wiki/Cosine_similarity, cosine similarity) of input ranges `a` and $(D b). The two ranges must have t...","kind":"function","module":"std.numeric","name":"cosineSimilarity","package":"phobos","parentType":"","signature":"CommonType!(ElementType!(Range1),  ElementType!(Range2)) cosineSimilarity(Range1,  Range2)(Range1 a,  Range2 b) if (isInputRange!(Range1)  &&  isInputRange!(Range2))","url":"/ddoc/phobos/std/numeric/cosineSimilarity.html"},{"doc":"Normalizes values in `range` by multiplying each element with a number chosen such that values sum up to `sum`. If elements in $(D range) sum to ze...","kind":"function","module":"std.numeric","name":"normalize","package":"phobos","parentType":"","signature":"bool normalize(R)(R range,  ElementType!(R)  sum =  1) if (isForwardRange!(R))","url":"/ddoc/phobos/std/numeric/normalize.html"},{"doc":"Compute the sum of binary logarithms of the input range `r`. The error of this method is much smaller than with a naive sum of log2.","kind":"function","module":"std.numeric","name":"sumOfLog2s","package":"phobos","parentType":"","signature":"ElementType!Range sumOfLog2s(Range)(Range r) if (isInputRange!Range &&  isFloatingPoint!(ElementType!Range))","url":"/ddoc/phobos/std/numeric/sumOfLog2s.html"},{"doc":"Computes $(LINK2 https://en.wikipedia.org/wiki/Entropy_(information_theory), _entropy) of input range `r` in bits. This function assumes (without c...","kind":"function","module":"std.numeric","name":"entropy","package":"phobos","parentType":"","signature":"ElementType!Range entropy(Range)(Range r) if (isInputRange!Range)","url":"/ddoc/phobos/std/numeric/entropy.html"},{"doc":"Ditto","kind":"function","module":"std.numeric","name":"entropy","package":"phobos","parentType":"","signature":"ElementType!Range entropy(Range,  F)(Range r,  F max) if (isInputRange!Range &&\n    !is(CommonType!(ElementType!Range,  F)  ==  void))","url":"/ddoc/phobos/std/numeric/entropy.html"},{"doc":"Computes the $(LINK2 https://en.wikipedia.org/wiki/Kullback%E2%80%93Leibler_divergence, Kullback-Leibler divergence) between input ranges `a` and `...","kind":"function","module":"std.numeric","name":"kullbackLeiblerDivergence","package":"phobos","parentType":"","signature":"CommonType!(ElementType!Range1,  ElementType!Range2) kullbackLeiblerDivergence(Range1,  Range2)(Range1 a,  Range2 b) if (isInputRange!(Range1)  &&  isInputRange!(Range2))","url":"/ddoc/phobos/std/numeric/kullbackLeiblerDivergence.html"},{"doc":"Computes the $(LINK2 https://en.wikipedia.org/wiki/Jensen%E2%80%93Shannon_divergence, Jensen-Shannon divergence) between `a` and $(D b), which is t...","kind":"function","module":"std.numeric","name":"jensenShannonDivergence","package":"phobos","parentType":"","signature":"CommonType!(ElementType!Range1,  ElementType!Range2) jensenShannonDivergence(Range1,  Range2)(Range1 a,  Range2 b) if (isInputRange!Range1 &&  isInputRange!Range2 &&\n     is(CommonType!(ElementType!Range1,  ElementType!Range2)))","url":"/ddoc/phobos/std/numeric/jensenShannonDivergence.html"},{"doc":"Ditto","kind":"function","module":"std.numeric","name":"jensenShannonDivergence","package":"phobos","parentType":"","signature":"CommonType!(ElementType!Range1,  ElementType!Range2) jensenShannonDivergence(Range1,  Range2,  F)(Range1 a,  Range2 b,  F limit) if (isInputRange!Range1 &&  isInputRange!Range2 &&\n     is(typeof(CommonType!(ElementType!Range1,  ElementType!Range2).init\n    >=  F.init) :  bool))","url":"/ddoc/phobos/std/numeric/jensenShannonDivergence.html"},{"doc":"The so-called \"all-lengths gap-weighted string kernel\" computes a similarity measure between `s` and `t` based on all of their common subsequences ...","kind":"function","module":"std.numeric","name":"gapWeightedSimilarity","package":"phobos","parentType":"","signature":"F gapWeightedSimilarity(alias  comp =  \"a == b\",  R1,  R2,  F)(R1 s,  R2 t,  F lambda) if (isRandomAccessRange!(R1)  &&  hasLength!(R1)  &&\n     isRandomAccessRange!(R2)  &&  hasLength!(R2))","url":"/ddoc/phobos/std/numeric/gapWeightedSimilarity.html"},{"doc":"The similarity per `gapWeightedSimilarity` has an issue in that it grows with the lengths of the two strings, even though the strings are not actua...","kind":"function","module":"std.numeric","name":"gapWeightedSimilarityNormalized","package":"phobos","parentType":"","signature":"Select!(isFloatingPoint!(F),  F,  double) gapWeightedSimilarityNormalized(alias  comp =  \"a == b\",  R1,  R2,  F)(R1 s,  R2 t,  F lambda,  F sSelfSim =  F.init,  F tSelfSim =  F.init) if (isRandomAccessRange!(R1)  &&  hasLength!(R1)  &&\n     isRandomAccessRange!(R2)  &&  hasLength!(R2))","url":"/ddoc/phobos/std/numeric/gapWeightedSimilarityNormalized.html"},{"doc":"Ditto","kind":"function","module":"std.numeric","name":"gapWeightedSimilarityIncremental","package":"phobos","parentType":"","signature":"GapWeightedSimilarityIncremental!(R,  F) gapWeightedSimilarityIncremental(R,  F)(R r1,  R r2,  F penalty)","url":"/ddoc/phobos/std/numeric/gapWeightedSimilarityIncremental.html"},{"doc":"Computes the greatest common divisor of `a` and `b` by using an efficient algorithm such as $(HTTPS en.wikipedia.org/wiki/Euclidean_algorithm, Eucl...","kind":"function","module":"std.numeric","name":"gcd","package":"phobos","parentType":"","signature":"typeof(Unqual!(T).init %  Unqual!(U).init) gcd(T,  U)(T a,  U b) if (isIntegral!T &&  isIntegral!U)","url":"/ddoc/phobos/std/numeric/gcd.html"},{"doc":"","kind":"function","module":"std.numeric","name":"gcdImpl","package":"phobos","parentType":"","signature":"typeof(T.init %  T.init) gcdImpl(T)(T a,  T b) if (isIntegral!T)","url":"/ddoc/phobos/std/numeric/gcdImpl.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"gcd","package":"phobos","parentType":"","signature":"auto gcd(T)(T a,  T b) if (!isIntegral!T &&\n         is(typeof(T.init %  T.init))  &&\n         is(typeof(T.init ==  0 ||  T.init >  0)))","url":"/ddoc/phobos/std/numeric/gcd.html"},{"doc":"","kind":"function","module":"std.numeric","name":"gcdImpl","package":"phobos","parentType":"","signature":"auto gcdImpl(T)(T a,  T b) if (!isIntegral!T)","url":"/ddoc/phobos/std/numeric/gcdImpl.html"},{"doc":"Computes the least common multiple of `a` and `b`. Arguments are the same as $(MYREF gcd).","kind":"function","module":"std.numeric","name":"lcm","package":"phobos","parentType":"","signature":"typeof(Unqual!(T).init %  Unqual!(U).init) lcm(T,  U)(T a,  U b) if (isIntegral!T &&  isIntegral!U)","url":"/ddoc/phobos/std/numeric/lcm.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"lcm","package":"phobos","parentType":"","signature":"auto lcm(T)(T a,  T b) if (!isIntegral!T &&\n         is(typeof(T.init %  T.init))  &&\n         is(typeof(T.init ==  0 ||  T.init >  0)))","url":"/ddoc/phobos/std/numeric/lcm.html"},{"doc":"Convenience functions that create an `Fft` object, run the FFT or inverse FFT and return the result.  Useful for one-off FFTs.","kind":"function","module":"std.numeric","name":"fft","package":"phobos","parentType":"","signature":"Complex!F[] fft(F =  double,  R)(R range)","url":"/ddoc/phobos/std/numeric/fft.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"fft","package":"phobos","parentType":"","signature":"void fft(Ret,  R)(R range,  Ret buf)","url":"/ddoc/phobos/std/numeric/fft.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"inverseFft","package":"phobos","parentType":"","signature":"Complex!F[] inverseFft(F =  double,  R)(R range)","url":"/ddoc/phobos/std/numeric/inverseFft.html"},{"doc":"ditto","kind":"function","module":"std.numeric","name":"inverseFft","package":"phobos","parentType":"","signature":"void inverseFft(Ret,  R)(R range,  Ret buf)","url":"/ddoc/phobos/std/numeric/inverseFft.html"},{"doc":"","kind":"function","module":"std.numeric","name":"swapRealImag","package":"phobos","parentType":"","signature":"C swapRealImag(C)(C input)","url":"/ddoc/phobos/std/numeric/swapRealImag.html"},{"doc":"This function transforms `decimal` value into a value in the factorial number system stored in `fac`.","kind":"function","module":"std.numeric","name":"decimalToFactorial","package":"phobos","parentType":"","signature":"size_t decimalToFactorial(ulong  decimal,  ref  ubyte[21]  fac)","url":"/ddoc/phobos/std/numeric/decimalToFactorial.html"},{"doc":"","kind":"function","module":"std.numeric","name":"slowFourier2","package":"phobos","parentType":"","signature":"void slowFourier2(Ret,  R)(R range,  Ret buf) if (isComplexLike!(ElementType!Ret))","url":"/ddoc/phobos/std/numeric/slowFourier2.html"},{"doc":"","kind":"function","module":"std.numeric","name":"slowFourier4","package":"phobos","parentType":"","signature":"void slowFourier4(Ret,  R)(R range,  Ret buf)","url":"/ddoc/phobos/std/numeric/slowFourier4.html"},{"doc":"","kind":"function","module":"std.numeric","name":"roundDownToPowerOf2","package":"phobos","parentType":"","signature":"N roundDownToPowerOf2(N)(N num) if (isScalarType!N && !isFloatingPoint!N)","url":"/ddoc/phobos/std/numeric/roundDownToPowerOf2.html"},{"doc":"Format flags for CustomFloat.","kind":"enum","module":"std.numeric","name":"CustomFloatFlags","package":"phobos","parentType":"","signature":"CustomFloatFlags","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Adds a sign bit to allow for signed numbers.","kind":"enum_member","module":"std.numeric","name":"signed","package":"phobos","parentType":"","signature":"signed = 1","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Store values in normalized form by default. The actual precision of the significand is extended by 1 bit by assuming an implicit leading bit of 1 i...","kind":"enum_member","module":"std.numeric","name":"storeNormalized","package":"phobos","parentType":"","signature":"storeNormalized = 2","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Stores the significand in $(LINK2 https://en.wikipedia.org/wiki/IEEE_754-1985#Denormalized_numbers, IEEE754 denormalized) form when the exponent is...","kind":"enum_member","module":"std.numeric","name":"allowDenorm","package":"phobos","parentType":"","signature":"allowDenorm = 4","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Allows the storage of $(LINK2 https://en.wikipedia.org/wiki/IEEE_754-1985#Positive_and_negative_infinity, IEEE754 _infinity) values.","kind":"enum_member","module":"std.numeric","name":"infinity","package":"phobos","parentType":"","signature":"infinity = 8","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Allows the storage of $(LINK2 https://en.wikipedia.org/wiki/NaN, IEEE754 Not a Number) values.","kind":"enum_member","module":"std.numeric","name":"nan","package":"phobos","parentType":"","signature":"nan = 16","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"If set, select an exponent bias such that max_exp = 1. i.e. so that the maximum value is >= 1.0 and < 2.0. Ignored if the exponent bias is manually...","kind":"enum_member","module":"std.numeric","name":"probability","package":"phobos","parentType":"","signature":"probability = 32","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"If set, unsigned custom floats are assumed to be negative.","kind":"enum_member","module":"std.numeric","name":"negativeUnsigned","package":"phobos","parentType":"","signature":"negativeUnsigned = 64","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"If set, 0 is the only allowed $(LINK2 https://en.wikipedia.org/wiki/IEEE_754-1985#Denormalized_numbers, IEEE754 denormalized) number. Requires allo...","kind":"enum_member","module":"std.numeric","name":"allowDenormZeroOnly","package":"phobos","parentType":"","signature":"allowDenormZeroOnly = 128 |  allowDenorm |  storeNormalized","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Include _all of the $(LINK2 https://en.wikipedia.org/wiki/IEEE_floating_point, IEEE754) options.","kind":"enum_member","module":"std.numeric","name":"ieee","package":"phobos","parentType":"","signature":"ieee = signed |  storeNormalized |  allowDenorm |  infinity |  nan","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"Include none of the above options.","kind":"enum_member","module":"std.numeric","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/std/numeric.html#CustomFloatFlags"},{"doc":"","kind":"union","module":"std.numeric","name":"ToBinary","package":"phobos","parentType":"","signature":"ToBinary(F)","url":"/ddoc/phobos/std/numeric.html#ToBinary"},{"doc":"","kind":"method","module":"std.numeric","name":"opCall","package":"phobos","parentType":"ToBinary","signature":"typeof(get) opCall(F value)","url":"/ddoc/phobos/std/numeric/ToBinary.opCall.html"},{"doc":"ditto","kind":"struct","module":"std.numeric","name":"CustomFloat","package":"phobos","parentType":"","signature":"CustomFloat(uint              precision,  // fraction bits (23 for float)\n                    uint              exponentWidth,  // exponent bits (8 for float)  Exponent width\n                    CustomFloatFlags flags,\n                    uint              bias) if (isCorrectCustomFloat(precision,  exponentWidth,  flags))","url":"/ddoc/phobos/std/numeric.html#CustomFloat"},{"doc":"","kind":"method","module":"std.numeric","name":"roundedShift","package":"phobos","parentType":"CustomFloat","signature":"void roundedShift(T, U)(ref  T sig,  U shift)","url":"/ddoc/phobos/std/numeric/CustomFloat.roundedShift.html"},{"doc":"","kind":"method","module":"std.numeric","name":"toNormalized","package":"phobos","parentType":"CustomFloat","signature":"void toNormalized(T, U)(ref  T sig,  ref  U exp)","url":"/ddoc/phobos/std/numeric/CustomFloat.toNormalized.html"},{"doc":"","kind":"method","module":"std.numeric","name":"fromNormalized","package":"phobos","parentType":"CustomFloat","signature":"void fromNormalized(T, U)(ref  T sig,  ref  U exp)","url":"/ddoc/phobos/std/numeric/CustomFloat.fromNormalized.html"},{"doc":"Returns: number of decimal digits of precision","kind":"method","module":"std.numeric","name":"dig","package":"phobos","parentType":"CustomFloat","signature":"size_t dig()","url":"/ddoc/phobos/std/numeric/CustomFloat.dig.html"},{"doc":"Returns: smallest increment to the value 1","kind":"method","module":"std.numeric","name":"epsilon","package":"phobos","parentType":"CustomFloat","signature":"CustomFloat epsilon()","url":"/ddoc/phobos/std/numeric/CustomFloat.epsilon.html"},{"doc":"Returns: maximum int value such that 10<sup>max_10_exp</sup> is representable","kind":"method","module":"std.numeric","name":"max_10_exp","package":"phobos","parentType":"CustomFloat","signature":"int max_10_exp(){","url":"/ddoc/phobos/std/numeric/CustomFloat.max_10_exp.html"},{"doc":"Returns: minimum int value such that 10<sup>min_10_exp</sup> is representable","kind":"method","module":"std.numeric","name":"min_10_exp","package":"phobos","parentType":"CustomFloat","signature":"int min_10_exp(){","url":"/ddoc/phobos/std/numeric/CustomFloat.min_10_exp.html"},{"doc":"Returns: largest representable value that's not infinity","kind":"method","module":"std.numeric","name":"max","package":"phobos","parentType":"CustomFloat","signature":"CustomFloat max()","url":"/ddoc/phobos/std/numeric/CustomFloat.max.html"},{"doc":"Returns: smallest representable normalized value that's not 0","kind":"method","module":"std.numeric","name":"min_normal","package":"phobos","parentType":"CustomFloat","signature":"CustomFloat min_normal()","url":"/ddoc/phobos/std/numeric/CustomFloat.min_normal.html"},{"doc":"Returns: real part","kind":"method","module":"std.numeric","name":"re","package":"phobos","parentType":"CustomFloat","signature":"CustomFloat re()","url":"/ddoc/phobos/std/numeric/CustomFloat.re.html"},{"doc":"Returns: imaginary part","kind":"method","module":"std.numeric","name":"im","package":"phobos","parentType":"CustomFloat","signature":"CustomFloat im()","url":"/ddoc/phobos/std/numeric/CustomFloat.im.html"},{"doc":"Self assignment","kind":"method","module":"std.numeric","name":"opAssign","package":"phobos","parentType":"CustomFloat","signature":"void opAssign(F: CustomFloat)(F input)","url":"/ddoc/phobos/std/numeric/CustomFloat.opAssign.html"},{"doc":"Assigns from any `real` compatible type.","kind":"method","module":"std.numeric","name":"opAssign","package":"phobos","parentType":"CustomFloat","signature":"void opAssign(F)(F input) if (__traits(compiles,  cast(real)  input))","url":"/ddoc/phobos/std/numeric/CustomFloat.opAssign.html"},{"doc":"Fetches the stored value either as a `float`, `double` or `real`.","kind":"method","module":"std.numeric","name":"get","package":"phobos","parentType":"CustomFloat","signature":"F get(F)() if (staticIndexOf!(immutable  F,  immutable  float,  immutable  double,  immutable  real)  >=  0)","url":"/ddoc/phobos/std/numeric/CustomFloat.get.html"},{"doc":"Convert the CustomFloat to a real and perform the relevant operator on the result","kind":"method","module":"std.numeric","name":"opUnary","package":"phobos","parentType":"CustomFloat","signature":"real opUnary(string op)() if (__traits(compiles,  mixin(op ~ `(get!real)`))  ||  op == \"++\" ||  op == \"--\")","url":"/ddoc/phobos/std/numeric/CustomFloat.opUnary.html"},{"doc":"ditto","kind":"method","module":"std.numeric","name":"opBinary","package":"phobos","parentType":"CustomFloat","signature":"real opBinary(string op, T)(T b) if (__traits(compiles,  mixin(`get!real` ~ op ~ `b.get!real`)))","url":"/ddoc/phobos/std/numeric/CustomFloat.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.numeric","name":"opBinary","package":"phobos","parentType":"CustomFloat","signature":"real opBinary(string op, T)(T b) if (  __traits(compiles,  mixin(`get!real` ~ op ~ `b`))  &&\n        !__traits(compiles,  mixin(`get!real` ~ op ~ `b.get!real`)))","url":"/ddoc/phobos/std/numeric/CustomFloat.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.numeric","name":"opBinaryRight","package":"phobos","parentType":"CustomFloat","signature":"real opBinaryRight(string op, T)(T a) if (  __traits(compiles,  mixin(`a` ~ op ~ `get!real`))  &&\n        !__traits(compiles,  mixin(`get!real` ~ op ~ `b`))  &&\n        !__traits(compiles,  mixin(`get!real` ~ op ~ `b.get!real`)))","url":"/ddoc/phobos/std/numeric/CustomFloat.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.numeric","name":"opCmp","package":"phobos","parentType":"CustomFloat","signature":"int opCmp(T)(auto  ref  T b) if (__traits(compiles,  cast(real)  b))","url":"/ddoc/phobos/std/numeric/CustomFloat.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.numeric","name":"opOpAssign","package":"phobos","parentType":"CustomFloat","signature":"void opOpAssign(string op,  T)(auto  ref  T b) if (__traits(compiles,  mixin(`get!real` ~ op ~ `cast(real) b`)))","url":"/ddoc/phobos/std/numeric/CustomFloat.opOpAssign.html"},{"doc":"Similar to `gapWeightedSimilarity`, just works in an incremental manner by first revealing the matches of length 1, then gapped matches of length 2...","kind":"struct","module":"std.numeric","name":"GapWeightedSimilarityIncremental","package":"phobos","parentType":"","signature":"GapWeightedSimilarityIncremental(Range,  F =  double) if (isRandomAccessRange!(Range)  &&  hasLength!(Range))","url":"/ddoc/phobos/std/numeric.html#GapWeightedSimilarityIncremental"},{"doc":"Returns: `this`.","kind":"method","module":"std.numeric","name":"opSlice","package":"phobos","parentType":"GapWeightedSimilarityIncremental","signature":"GapWeightedSimilarityIncremental opSlice()","url":"/ddoc/phobos/std/numeric/GapWeightedSimilarityIncremental.opSlice.html"},{"doc":"Computes the match of the popFront length. Completes in $(BIGOH s.length * t.length) time.","kind":"method","module":"std.numeric","name":"popFront","package":"phobos","parentType":"GapWeightedSimilarityIncremental","signature":"void popFront()","url":"/ddoc/phobos/std/numeric/GapWeightedSimilarityIncremental.popFront.html"},{"doc":"Returns: The gapped similarity at the current match length (initially 1, grows with each call to `popFront`).","kind":"method","module":"std.numeric","name":"front","package":"phobos","parentType":"GapWeightedSimilarityIncremental","signature":"F front()","url":"/ddoc/phobos/std/numeric/GapWeightedSimilarityIncremental.front.html"},{"doc":"Returns: Whether there are more matches.","kind":"method","module":"std.numeric","name":"empty","package":"phobos","parentType":"GapWeightedSimilarityIncremental","signature":"bool empty()","url":"/ddoc/phobos/std/numeric/GapWeightedSimilarityIncremental.empty.html"},{"doc":"","kind":"alias","module":"std.numeric","name":"lookup_t","package":"phobos","parentType":"","signature":"lookup_t = float","url":"/ddoc/phobos/std/numeric.html#lookup_t"},{"doc":"A class for performing fast Fourier transforms of power of two sizes. This class encapsulates a large amount of state that is reusable when perform...","kind":"class","module":"std.numeric","name":"Fft","package":"phobos","parentType":"","signature":"Fft","url":"/ddoc/phobos/std/numeric.html#Fft"},{"doc":"","kind":"method","module":"std.numeric","name":"enforceSize","package":"phobos","parentType":"Fft","signature":"void enforceSize(R)(R range)","url":"/ddoc/phobos/std/numeric/Fft.enforceSize.html"},{"doc":"","kind":"method","module":"std.numeric","name":"fftImpl","package":"phobos","parentType":"Fft","signature":"void fftImpl(Ret,  R)(Stride!R range,  Ret buf)","url":"/ddoc/phobos/std/numeric/Fft.fftImpl.html"},{"doc":"","kind":"method","module":"std.numeric","name":"fftImplPureReal","package":"phobos","parentType":"Fft","signature":"void fftImplPureReal(Ret,  R)(R range,  Ret buf)","url":"/ddoc/phobos/std/numeric/Fft.fftImplPureReal.html"},{"doc":"","kind":"method","module":"std.numeric","name":"butterfly","package":"phobos","parentType":"Fft","signature":"void butterfly(R)(R buf)","url":"/ddoc/phobos/std/numeric/Fft.butterfly.html"},{"doc":"","kind":"method","module":"std.numeric","name":"size","package":"phobos","parentType":"Fft","signature":"size_t size()","url":"/ddoc/phobos/std/numeric/Fft.size.html"},{"doc":"Compute the Fourier transform of range using the $(BIGOH N log N) Cooley-Tukey Algorithm.  `range` must be a random-access range with slicing and a...","kind":"method","module":"std.numeric","name":"fft","package":"phobos","parentType":"Fft","signature":"Complex!F[] fft(F =  double,  R)(R range) if (isFloatingPoint!F &&  isRandomAccessRange!R)","url":"/ddoc/phobos/std/numeric/Fft.fft.html"},{"doc":"Same as the overload, but allows for the results to be stored in a user- provided buffer.  The buffer must be of the same length as range, must be ...","kind":"method","module":"std.numeric","name":"fft","package":"phobos","parentType":"Fft","signature":"void fft(Ret,  R)(R range,  Ret buf) if (isRandomAccessRange!Ret &&  isComplexLike!(ElementType!Ret)  &&  hasSlicing!Ret)","url":"/ddoc/phobos/std/numeric/Fft.fft.html"},{"doc":"Computes the inverse Fourier transform of a range.  The range must be a random access range with slicing, have a length equal to the size provided ...","kind":"method","module":"std.numeric","name":"inverseFft","package":"phobos","parentType":"Fft","signature":"Complex!F[] inverseFft(F =  double,  R)(R range) if (isRandomAccessRange!R &&  isComplexLike!(ElementType!R)  &&  isFloatingPoint!F)","url":"/ddoc/phobos/std/numeric/Fft.inverseFft.html"},{"doc":"Inverse FFT that allows a user-supplied buffer to be provided.  The buffer must be a random access range with slicing, and its elements must be som...","kind":"method","module":"std.numeric","name":"inverseFft","package":"phobos","parentType":"Fft","signature":"void inverseFft(Ret,  R)(R range,  Ret buf) if (isRandomAccessRange!Ret &&  isComplexLike!(ElementType!Ret)  &&  hasSlicing!Ret)","url":"/ddoc/phobos/std/numeric/Fft.inverseFft.html"},{"doc":"","kind":"struct","module":"std.numeric","name":"Stride","package":"phobos","parentType":"","signature":"Stride(R)","url":"/ddoc/phobos/std/numeric.html#Stride"},{"doc":"","kind":"method","module":"std.numeric","name":"length","package":"phobos","parentType":"Stride","signature":"size_t length()","url":"/ddoc/phobos/std/numeric/Stride.length.html"},{"doc":"","kind":"method","module":"std.numeric","name":"save","package":"phobos","parentType":"Stride","signature":"typeof(this) save()","url":"/ddoc/phobos/std/numeric/Stride.save.html"},{"doc":"","kind":"method","module":"std.numeric","name":"opIndex","package":"phobos","parentType":"Stride","signature":"E opIndex(size_t index)","url":"/ddoc/phobos/std/numeric/Stride.opIndex.html"},{"doc":"","kind":"method","module":"std.numeric","name":"front","package":"phobos","parentType":"Stride","signature":"E front()","url":"/ddoc/phobos/std/numeric/Stride.front.html"},{"doc":"","kind":"method","module":"std.numeric","name":"popFront","package":"phobos","parentType":"Stride","signature":"void popFront()","url":"/ddoc/phobos/std/numeric/Stride.popFront.html"},{"doc":"","kind":"method","module":"std.numeric","name":"popHalf","package":"phobos","parentType":"Stride","signature":"void popHalf()","url":"/ddoc/phobos/std/numeric/Stride.popHalf.html"},{"doc":"","kind":"method","module":"std.numeric","name":"empty","package":"phobos","parentType":"Stride","signature":"bool empty()","url":"/ddoc/phobos/std/numeric/Stride.empty.html"},{"doc":"","kind":"method","module":"std.numeric","name":"nSteps","package":"phobos","parentType":"Stride","signature":"size_t nSteps()","url":"/ddoc/phobos/std/numeric/Stride.nSteps.html"},{"doc":"","kind":"method","module":"std.numeric","name":"doubleSteps","package":"phobos","parentType":"Stride","signature":"void doubleSteps()","url":"/ddoc/phobos/std/numeric/Stride.doubleSteps.html"},{"doc":"","kind":"method","module":"std.numeric","name":"nSteps","package":"phobos","parentType":"Stride","signature":"size_t nSteps(size_t newVal)","url":"/ddoc/phobos/std/numeric/Stride.nSteps.html"},{"doc":"","kind":"template","module":"std.numeric","name":"CustomFloatParams","package":"phobos","parentType":"","signature":"CustomFloatParams(uint  bits)","url":"/ddoc/phobos/std/numeric.html#CustomFloatParams"},{"doc":"","kind":"template","module":"std.numeric","name":"CustomFloatParams","package":"phobos","parentType":"","signature":"CustomFloatParams(uint  precision,  uint  exponentWidth,  CustomFloatFlags flags)","url":"/ddoc/phobos/std/numeric.html#CustomFloatParams"},{"doc":"Allows user code to define custom floating-point formats. These formats are for storage only; all operations on them are performed by first implici...","kind":"template","module":"std.numeric","name":"CustomFloat","package":"phobos","parentType":"","signature":"CustomFloat(uint  bits)","url":"/ddoc/phobos/std/numeric.html#CustomFloat"},{"doc":"ditto","kind":"template","module":"std.numeric","name":"CustomFloat","package":"phobos","parentType":"","signature":"CustomFloat(uint  precision,  uint  exponentWidth,  CustomFloatFlags flags =  CustomFloatFlags.ieee)","url":"/ddoc/phobos/std/numeric.html#CustomFloat"},{"doc":"Defines the fastest type to use when storing temporaries of a calculation intended to ultimately yield a result of type `F` (where `F` must be one ...","kind":"template","module":"std.numeric","name":"FPTemporary","package":"phobos","parentType":"","signature":"FPTemporary(F)","url":"/ddoc/phobos/std/numeric.html#FPTemporary"},{"doc":"Implements the $(HTTP tinyurl.com/2zb9yr, secant method) for finding a root of the function `fun` starting from points $(D [xn_1, x_n]) (ideally cl...","kind":"template","module":"std.numeric","name":"secantMethod","package":"phobos","parentType":"","signature":"secantMethod(alias  fun)","url":"/ddoc/phobos/std/numeric.html#secantMethod"},{"doc":"","kind":"function","module":"std.numeric","name":"secantMethod","package":"phobos","parentType":"","signature":"Num secantMethod(Num)(Num xn_1,  Num xn)","url":"/ddoc/phobos/std/numeric.html#secantMethod"},{"doc":"","kind":"template","module":"std.numeric","name":"isComplexLike","package":"phobos","parentType":"","signature":"isComplexLike(T)","url":"/ddoc/phobos/std/numeric.html#isComplexLike"},{"doc":"","kind":"variable","module":"std.numeric","name":"isIEEEQuadruple","package":"phobos","parentType":"","signature":"isIEEEQuadruple","url":"/ddoc/phobos/std/numeric.html#isIEEEQuadruple"},{"doc":"","kind":"variable","module":"std.numeric","name":"MakeLocalFft","package":"phobos","parentType":"","signature":"string MakeLocalFft","url":"/ddoc/phobos/std/numeric.html#MakeLocalFft"},{"doc":"Serialize data to `ubyte` arrays.","kind":"module","module":"std.outbuffer","name":"std.outbuffer","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/outbuffer.html"},{"doc":"OutBuffer provides a way to build up an array of bytes out of raw data. It is useful for things like preparing an array of bytes to write out to a ...","kind":"class","module":"std.outbuffer","name":"OutBuffer","package":"phobos","parentType":"","signature":"OutBuffer","url":"/ddoc/phobos/std/outbuffer.html#OutBuffer"},{"doc":"Convert to array of bytes.","kind":"method","module":"std.outbuffer","name":"toBytes","package":"phobos","parentType":"OutBuffer","signature":"inout(ubyte)[] toBytes()","url":"/ddoc/phobos/std/outbuffer/OutBuffer.toBytes.html"},{"doc":"Preallocate nbytes more to the size of the internal buffer.","kind":"method","module":"std.outbuffer","name":"reserve","package":"phobos","parentType":"OutBuffer","signature":"void reserve(size_t nbytes)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.reserve.html"},{"doc":"Append data to the internal buffer.","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(scope  const(ubyte)[]  bytes)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(scope  const(wchar)[]  chars)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(scope  const(dchar)[]  chars)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(ubyte  b)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(byte  b)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(char  c)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(dchar  c)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(ushort  w)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(short  s)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(wchar  c)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(uint  w)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(int  i)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(ulong  l)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(long  l)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(float  f)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(double  f)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(real  f)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(scope  const(char)[]  s)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"","kind":"method","module":"std.outbuffer","name":"write","package":"phobos","parentType":"OutBuffer","signature":"void write(scope  const  OutBuffer buf)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.write.html"},{"doc":"Append nbytes of val to the internal buffer. Params: nbytes = Number of bytes to fill. val = Value to fill, defaults to 0.","kind":"method","module":"std.outbuffer","name":"fill","package":"phobos","parentType":"OutBuffer","signature":"void fill(size_t nbytes,  ubyte  val =  0)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.fill.html"},{"doc":"Append nbytes of 0 to the internal buffer. Param: nbytes - number of bytes to fill.","kind":"method","module":"std.outbuffer","name":"fill0","package":"phobos","parentType":"OutBuffer","signature":"void fill0(size_t nbytes)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.fill0.html"},{"doc":"Append bytes until the buffer aligns on a power of 2 boundary.","kind":"method","module":"std.outbuffer","name":"alignSize","package":"phobos","parentType":"OutBuffer","signature":"void alignSize(size_t alignsize,  ubyte  val =  0)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.alignSize.html"},{"doc":"Clear the data in the buffer","kind":"method","module":"std.outbuffer","name":"clear","package":"phobos","parentType":"OutBuffer","signature":"void clear()","url":"/ddoc/phobos/std/outbuffer/OutBuffer.clear.html"},{"doc":"Optimize common special case alignSize(2) Params: val = Value to fill, defaults to 0.","kind":"method","module":"std.outbuffer","name":"align2","package":"phobos","parentType":"OutBuffer","signature":"void align2(ubyte  val =  0)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.align2.html"},{"doc":"Optimize common special case alignSize(4) Params: val = Value to fill, defaults to 0.","kind":"method","module":"std.outbuffer","name":"align4","package":"phobos","parentType":"OutBuffer","signature":"void align4(ubyte  val =  0)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.align4.html"},{"doc":"Convert internal buffer to array of chars.","kind":"method","module":"std.outbuffer","name":"toString","package":"phobos","parentType":"OutBuffer","signature":"string toString()","url":"/ddoc/phobos/std/outbuffer/OutBuffer.toString.html"},{"doc":"Append output of C's vprintf() to internal buffer.","kind":"method","module":"std.outbuffer","name":"vprintf","package":"phobos","parentType":"OutBuffer","signature":"void vprintf(scope  string format,  va_list args)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.vprintf.html"},{"doc":"Append output of C's printf() to internal buffer.","kind":"method","module":"std.outbuffer","name":"printf","package":"phobos","parentType":"OutBuffer","signature":"void printf(scope  string format, ...)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.printf.html"},{"doc":"Formats and writes its arguments in text format to the OutBuffer.","kind":"method","module":"std.outbuffer","name":"writef","package":"phobos","parentType":"OutBuffer","signature":"void writef(Char,  A...)(scope  const(Char)[]  fmt,  A args)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.writef.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"writef","package":"phobos","parentType":"OutBuffer","signature":"void writef(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/outbuffer/OutBuffer.writef.html"},{"doc":"Formats and writes its arguments in text format to the OutBuffer, followed by a newline.","kind":"method","module":"std.outbuffer","name":"writefln","package":"phobos","parentType":"OutBuffer","signature":"void writefln(Char,  A...)(scope  const(Char)[]  fmt,  A args)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.writefln.html"},{"doc":"ditto","kind":"method","module":"std.outbuffer","name":"writefln","package":"phobos","parentType":"OutBuffer","signature":"void writefln(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/outbuffer/OutBuffer.writefln.html"},{"doc":"At offset index into buffer, create nbytes of space by shifting upwards all data past index.","kind":"method","module":"std.outbuffer","name":"spread","package":"phobos","parentType":"OutBuffer","signature":"void spread(size_t index,  size_t nbytes)","url":"/ddoc/phobos/std/outbuffer/OutBuffer.spread.html"},{"doc":"Convenience file that allows to import entire Phobos in one import.","kind":"module","module":"std","name":"std","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std.html"},{"doc":"`std.parallelism` implements high-level primitives for SMP parallelism. These include parallel foreach, parallel reduce, parallel eager map, pipeli...","kind":"module","module":"std.parallelism","name":"std.parallelism","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/parallelism.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"__lazilyInitializedConstant","package":"phobos","parentType":"","signature":"T __lazilyInitializedConstant(T,  alias  outOfBandValue,  alias  initializer)() if (is(Unqual!T :  T)\n     &&  is(typeof(initializer()) :  T)\n     &&  is(typeof(outOfBandValue) :  T))","url":"/ddoc/phobos/std/parallelism/__lazilyInitializedConstant.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"cacheLineSizeImpl","package":"phobos","parentType":"","signature":"size_t cacheLineSizeImpl()","url":"/ddoc/phobos/std/parallelism/cacheLineSizeImpl.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"atomicSetUbyte","package":"phobos","parentType":"","signature":"void atomicSetUbyte(T)(ref  T stuff,  T newVal) if (__traits(isIntegral,  T)  &&  is(T :  ubyte))","url":"/ddoc/phobos/std/parallelism/atomicSetUbyte.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"atomicReadUbyte","package":"phobos","parentType":"","signature":"ubyte atomicReadUbyte(T)(ref  T val) if (__traits(isIntegral,  T)  &&  is(T :  ubyte))","url":"/ddoc/phobos/std/parallelism/atomicReadUbyte.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"atomicCasUbyte","package":"phobos","parentType":"","signature":"bool atomicCasUbyte(T)(ref  T stuff,  T testVal,  T newVal) if (__traits(isIntegral,  T)  &&  is(T :  ubyte))","url":"/ddoc/phobos/std/parallelism/atomicCasUbyte.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"run","package":"phobos","parentType":"","signature":"ReturnType!F run(F,  Args...)(F fpOrDelegate,  ref  Args args)","url":"/ddoc/phobos/std/parallelism/run.html"},{"doc":"Creates a `Task` on the GC heap that calls an alias.  This may be executed via `Task.executeInNewThread` or by submitting to a $(REF TaskPool, std,...","kind":"function","module":"std.parallelism","name":"task","package":"phobos","parentType":"","signature":"auto task(alias  fun,  Args...)(Args args)","url":"/ddoc/phobos/std/parallelism/task.html"},{"doc":"Creates a `Task` on the GC heap that calls a function pointer, delegate, or class/struct with overloaded opCall.","kind":"function","module":"std.parallelism","name":"task","package":"phobos","parentType":"","signature":"auto task(F,  Args...)(F delegateOrFp,  Args args) if (is(typeof(delegateOrFp(args)))  && !isSafeTask!F)","url":"/ddoc/phobos/std/parallelism/task.html"},{"doc":"Version of `task` usable from `@safe` code.  Usage mechanics are identical to the non-@safe case, but safety introduces some restrictions:","kind":"function","module":"std.parallelism","name":"task","package":"phobos","parentType":"","signature":"@trusted auto task(F,  Args...)(F fun,  Args args) if (__traits(compiles, () @safe =>  fun(args))  &&  isSafeTask!F)","url":"/ddoc/phobos/std/parallelism/task.html"},{"doc":"These functions allow the creation of `Task` objects on the stack rather than the GC heap.  The lifetime of a `Task` created by `scopedTask` cannot...","kind":"function","module":"std.parallelism","name":"scopedTask","package":"phobos","parentType":"","signature":"auto scopedTask(alias  fun,  Args...)(Args args)","url":"/ddoc/phobos/std/parallelism/scopedTask.html"},{"doc":"Ditto","kind":"function","module":"std.parallelism","name":"scopedTask","package":"phobos","parentType":"","signature":"auto scopedTask(F,  Args...)(scope  F delegateOrFp,  Args args) if (is(typeof(delegateOrFp(args)))  && !isSafeTask!F)","url":"/ddoc/phobos/std/parallelism/scopedTask.html"},{"doc":"Ditto","kind":"function","module":"std.parallelism","name":"scopedTask","package":"phobos","parentType":"","signature":"@trusted auto scopedTask(F,  Args...)(F fun,  Args args) if (__traits(compiles, () @safe =>  fun(args))  &&  isSafeTask!F)","url":"/ddoc/phobos/std/parallelism/scopedTask.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"totalCPUsImpl","package":"phobos","parentType":"","signature":"uint totalCPUsImpl()","url":"/ddoc/phobos/std/parallelism/totalCPUsImpl.html"},{"doc":"Returns a lazily initialized global instantiation of `TaskPool`. This function can safely be called concurrently from multiple non-worker threads. ...","kind":"function","module":"std.parallelism","name":"taskPool","package":"phobos","parentType":"","signature":"TaskPool taskPool()","url":"/ddoc/phobos/std/parallelism/taskPool.html"},{"doc":"These properties get and set the number of worker threads in the `TaskPool` instance returned by `taskPool`.  The default value is `totalCPUs` - 1....","kind":"function","module":"std.parallelism","name":"defaultPoolThreads","package":"phobos","parentType":"","signature":"uint defaultPoolThreads()","url":"/ddoc/phobos/std/parallelism/defaultPoolThreads.html"},{"doc":"Ditto","kind":"function","module":"std.parallelism","name":"defaultPoolThreads","package":"phobos","parentType":"","signature":"void defaultPoolThreads(uint  newVal)","url":"/ddoc/phobos/std/parallelism/defaultPoolThreads.html"},{"doc":"Convenience functions that forwards to `taskPool.parallel`.  The purpose of these is to make parallel foreach less verbose and more readable.","kind":"function","module":"std.parallelism","name":"parallel","package":"phobos","parentType":"","signature":"ParallelForeach!R parallel(R)(R range)","url":"/ddoc/phobos/std/parallelism/parallel.html"},{"doc":"Ditto","kind":"function","module":"std.parallelism","name":"parallel","package":"phobos","parentType":"","signature":"ParallelForeach!R parallel(R)(R range,  size_t workUnitSize)","url":"/ddoc/phobos/std/parallelism/parallel.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"submitAndExecute","package":"phobos","parentType":"","signature":"void submitAndExecute(\n     TaskPool pool,\n     scope  void  delegate()  doIt\n)","url":"/ddoc/phobos/std/parallelism/submitAndExecute.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"foreachErr","package":"phobos","parentType":"","signature":"void foreachErr()","url":"/ddoc/phobos/std/parallelism/foreachErr.html"},{"doc":"","kind":"function","module":"std.parallelism","name":"doSizeZeroCase","package":"phobos","parentType":"","signature":"int doSizeZeroCase(R,  Delegate)(ref  ParallelForeach!R p,  Delegate dg)","url":"/ddoc/phobos/std/parallelism/doSizeZeroCase.html"},{"doc":"","kind":"alias","module":"std.parallelism","name":"cacheLineSize","package":"phobos","parentType":"","signature":"cacheLineSize = __lazilyInitializedConstant!(immutable(size_t),  size_t.max,  cacheLineSizeImpl)","url":"/ddoc/phobos/std/parallelism.html#cacheLineSize"},{"doc":"","kind":"enum","module":"std.parallelism","name":"TaskStatus","package":"phobos","parentType":"","signature":"TaskStatus : ubyte","url":"/ddoc/phobos/std/parallelism.html#TaskStatus"},{"doc":"","kind":"enum_member","module":"std.parallelism","name":"notStarted","package":"phobos","parentType":"","signature":"notStarted = ","url":"/ddoc/phobos/std/parallelism.html#TaskStatus"},{"doc":"","kind":"enum_member","module":"std.parallelism","name":"inProgress","package":"phobos","parentType":"","signature":"inProgress = ","url":"/ddoc/phobos/std/parallelism.html#TaskStatus"},{"doc":"","kind":"enum_member","module":"std.parallelism","name":"done","package":"phobos","parentType":"","signature":"done = ","url":"/ddoc/phobos/std/parallelism.html#TaskStatus"},{"doc":"","kind":"struct","module":"std.parallelism","name":"AbstractTask","package":"phobos","parentType":"","signature":"AbstractTask","url":"/ddoc/phobos/std/parallelism.html#AbstractTask"},{"doc":"","kind":"method","module":"std.parallelism","name":"done","package":"phobos","parentType":"AbstractTask","signature":"bool done()","url":"/ddoc/phobos/std/parallelism/AbstractTask.done.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"job","package":"phobos","parentType":"AbstractTask","signature":"void job()","url":"/ddoc/phobos/std/parallelism/AbstractTask.job.html"},{"doc":"`Task` represents the fundamental unit of work.  A `Task` may be executed in parallel with any other `Task`.  Using this struct directly allows fut...","kind":"struct","module":"std.parallelism","name":"Task","package":"phobos","parentType":"","signature":"Task(alias  fun,  Args...)","url":"/ddoc/phobos/std/parallelism.html#Task"},{"doc":"","kind":"method","module":"std.parallelism","name":"basePtr","package":"phobos","parentType":"Task","signature":"AbstractTask * basePtr()","url":"/ddoc/phobos/std/parallelism/Task.basePtr.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"impl","package":"phobos","parentType":"Task","signature":"void impl(void *  myTask)","url":"/ddoc/phobos/std/parallelism/Task.impl.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"enforcePool","package":"phobos","parentType":"Task","signature":"void enforcePool()","url":"/ddoc/phobos/std/parallelism/Task.enforcePool.html"},{"doc":"If the `Task` isn't started yet, execute it in the current thread. If it's done, return its return value, if any.  If it's in progress, busy spin u...","kind":"method","module":"std.parallelism","name":"spinForce","package":"phobos","parentType":"Task","signature":"ReturnType spinForce()","url":"/ddoc/phobos/std/parallelism/Task.spinForce.html"},{"doc":"If the `Task` isn't started yet, execute it in the current thread. If it's done, return its return value, if any.  If it's in progress, wait on a c...","kind":"method","module":"std.parallelism","name":"yieldForce","package":"phobos","parentType":"Task","signature":"ReturnType yieldForce()","url":"/ddoc/phobos/std/parallelism/Task.yieldForce.html"},{"doc":"If this `Task` was not started yet, execute it in the current thread.  If it is finished, return its result.  If it is in progress, execute any oth...","kind":"method","module":"std.parallelism","name":"workForce","package":"phobos","parentType":"Task","signature":"ReturnType workForce()","url":"/ddoc/phobos/std/parallelism/Task.workForce.html"},{"doc":"Returns `true` if the `Task` is finished executing.","kind":"method","module":"std.parallelism","name":"done","package":"phobos","parentType":"Task","signature":"bool done()","url":"/ddoc/phobos/std/parallelism/Task.done.html"},{"doc":"Create a new thread for executing this `Task`, execute it in the newly created thread, then terminate the thread.  This can be used for future/prom...","kind":"method","module":"std.parallelism","name":"executeInNewThread","package":"phobos","parentType":"Task","signature":"void executeInNewThread()","url":"/ddoc/phobos/std/parallelism/Task.executeInNewThread.html"},{"doc":"Ditto","kind":"method","module":"std.parallelism","name":"executeInNewThread","package":"phobos","parentType":"Task","signature":"void executeInNewThread(int  priority)","url":"/ddoc/phobos/std/parallelism/Task.executeInNewThread.html"},{"doc":"The total number of CPU cores available on the current machine, as reported by the operating system.","kind":"alias","module":"std.parallelism","name":"totalCPUs","package":"phobos","parentType":"","signature":"totalCPUs = __lazilyInitializedConstant!(immutable(uint),  uint.max,  totalCPUsImpl)","url":"/ddoc/phobos/std/parallelism.html#totalCPUs"},{"doc":"","kind":"class","module":"std.parallelism","name":"ParallelismThread","package":"phobos","parentType":"","signature":"ParallelismThread : Thread","url":"/ddoc/phobos/std/parallelism.html#ParallelismThread"},{"doc":"This class encapsulates a task queue and a set of worker threads.  Its purpose is to efficiently map a large number of `Task`s onto a smaller numbe...","kind":"class","module":"std.parallelism","name":"TaskPool","package":"phobos","parentType":"","signature":"TaskPool","url":"/ddoc/phobos/std/parallelism.html#TaskPool"},{"doc":"","kind":"method","module":"std.parallelism","name":"doJob","package":"phobos","parentType":"TaskPool","signature":"void doJob(AbstractTask *  job)","url":"/ddoc/phobos/std/parallelism/TaskPool.doJob.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"doSingleTask","package":"phobos","parentType":"TaskPool","signature":"void doSingleTask()","url":"/ddoc/phobos/std/parallelism/TaskPool.doSingleTask.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"startWorkLoop","package":"phobos","parentType":"TaskPool","signature":"void startWorkLoop()","url":"/ddoc/phobos/std/parallelism/TaskPool.startWorkLoop.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"executeWorkLoop","package":"phobos","parentType":"TaskPool","signature":"void executeWorkLoop()","url":"/ddoc/phobos/std/parallelism/TaskPool.executeWorkLoop.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"pop","package":"phobos","parentType":"TaskPool","signature":"AbstractTask * pop()","url":"/ddoc/phobos/std/parallelism/TaskPool.pop.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"popNoSync","package":"phobos","parentType":"TaskPool","signature":"AbstractTask * popNoSync()","url":"/ddoc/phobos/std/parallelism/TaskPool.popNoSync.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"abstractPut","package":"phobos","parentType":"TaskPool","signature":"void abstractPut(AbstractTask *  task)","url":"/ddoc/phobos/std/parallelism/TaskPool.abstractPut.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"abstractPutNoSync","package":"phobos","parentType":"TaskPool","signature":"void abstractPutNoSync(AbstractTask *  task)","url":"/ddoc/phobos/std/parallelism/TaskPool.abstractPutNoSync.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"abstractPutGroupNoSync","package":"phobos","parentType":"TaskPool","signature":"void abstractPutGroupNoSync(AbstractTask *  h,  AbstractTask *  t)","url":"/ddoc/phobos/std/parallelism/TaskPool.abstractPutGroupNoSync.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"tryDeleteExecute","package":"phobos","parentType":"TaskPool","signature":"void tryDeleteExecute(AbstractTask *  toExecute)","url":"/ddoc/phobos/std/parallelism/TaskPool.tryDeleteExecute.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"deleteItem","package":"phobos","parentType":"TaskPool","signature":"bool deleteItem(AbstractTask *  item)","url":"/ddoc/phobos/std/parallelism/TaskPool.deleteItem.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"deleteItemNoSync","package":"phobos","parentType":"TaskPool","signature":"bool deleteItemNoSync(AbstractTask *  item)","url":"/ddoc/phobos/std/parallelism/TaskPool.deleteItemNoSync.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"queueLock","package":"phobos","parentType":"TaskPool","signature":"void queueLock()","url":"/ddoc/phobos/std/parallelism/TaskPool.queueLock.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"queueUnlock","package":"phobos","parentType":"TaskPool","signature":"void queueUnlock()","url":"/ddoc/phobos/std/parallelism/TaskPool.queueUnlock.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"waiterLock","package":"phobos","parentType":"TaskPool","signature":"void waiterLock()","url":"/ddoc/phobos/std/parallelism/TaskPool.waiterLock.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"waiterUnlock","package":"phobos","parentType":"TaskPool","signature":"void waiterUnlock()","url":"/ddoc/phobos/std/parallelism/TaskPool.waiterUnlock.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"wait","package":"phobos","parentType":"TaskPool","signature":"void wait()","url":"/ddoc/phobos/std/parallelism/TaskPool.wait.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"notify","package":"phobos","parentType":"TaskPool","signature":"void notify()","url":"/ddoc/phobos/std/parallelism/TaskPool.notify.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"notifyAll","package":"phobos","parentType":"TaskPool","signature":"void notifyAll()","url":"/ddoc/phobos/std/parallelism/TaskPool.notifyAll.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"waitUntilCompletion","package":"phobos","parentType":"TaskPool","signature":"void waitUntilCompletion()","url":"/ddoc/phobos/std/parallelism/TaskPool.waitUntilCompletion.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"notifyWaiters","package":"phobos","parentType":"TaskPool","signature":"void notifyWaiters()","url":"/ddoc/phobos/std/parallelism/TaskPool.notifyWaiters.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"defaultWorkUnitSize","package":"phobos","parentType":"TaskPool","signature":"size_t defaultWorkUnitSize(size_t rangeLen)","url":"/ddoc/phobos/std/parallelism/TaskPool.defaultWorkUnitSize.html"},{"doc":"Implements a parallel foreach loop over a range.  This works by implicitly creating and submitting one `Task` to the `TaskPool` for each worker thr...","kind":"method","module":"std.parallelism","name":"parallel","package":"phobos","parentType":"TaskPool","signature":"ParallelForeach!R parallel(R)(R range,  size_t workUnitSize)","url":"/ddoc/phobos/std/parallelism/TaskPool.parallel.html"},{"doc":"Ditto","kind":"method","module":"std.parallelism","name":"parallel","package":"phobos","parentType":"TaskPool","signature":"ParallelForeach!R parallel(R)(R range)","url":"/ddoc/phobos/std/parallelism/TaskPool.parallel.html"},{"doc":"Given a `source` range that is expensive to iterate over, returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) that asynchrono...","kind":"method","module":"std.parallelism","name":"asyncBuf","package":"phobos","parentType":"TaskPool","signature":"auto asyncBuf(S)(S source,  size_t bufSize =  100) if (isInputRange!S)","url":"/ddoc/phobos/std/parallelism/TaskPool.asyncBuf.html"},{"doc":"Given a callable object `next` that writes to a user-provided buffer and a second callable object `empty` that determines whether more data is avai...","kind":"method","module":"std.parallelism","name":"asyncBuf","package":"phobos","parentType":"TaskPool","signature":"auto asyncBuf(C1,  C2)(C1 next,  C2 empty,  size_t initialBufSize =  0,  size_t nBuffers =  100) if (is(typeof(C2.init()) :  bool)  &&\n         Parameters!C1.length ==  1 &&\n         Parameters!C2.length ==  0 &&\n         isArray!(Parameters!C1[0])\n    )","url":"/ddoc/phobos/std/parallelism/TaskPool.asyncBuf.html"},{"doc":"Gets the index of the current thread relative to this `TaskPool`.  Any thread not in this pool will receive an index of 0.  The worker threads in t...","kind":"method","module":"std.parallelism","name":"workerIndex","package":"phobos","parentType":"TaskPool","signature":"size_t workerIndex()","url":"/ddoc/phobos/std/parallelism/TaskPool.workerIndex.html"},{"doc":"Creates an instance of worker-local storage, initialized with a given value.  The value is `lazy` so that you can, for example, easily create one i...","kind":"method","module":"std.parallelism","name":"workerLocalStorage","package":"phobos","parentType":"TaskPool","signature":"WorkerLocalStorage!T workerLocalStorage(T)(lazy  T initialVal =  T.init)","url":"/ddoc/phobos/std/parallelism/TaskPool.workerLocalStorage.html"},{"doc":"Signals to all worker threads to terminate as soon as they are finished with their current `Task`, or immediately if they are not executing a `Task...","kind":"method","module":"std.parallelism","name":"stop","package":"phobos","parentType":"TaskPool","signature":"void stop()","url":"/ddoc/phobos/std/parallelism/TaskPool.stop.html"},{"doc":"Signals worker threads to terminate when the queue becomes empty.","kind":"method","module":"std.parallelism","name":"finish","package":"phobos","parentType":"TaskPool","signature":"void finish(bool  blocking =  false)","url":"/ddoc/phobos/std/parallelism/TaskPool.finish.html"},{"doc":"Returns the number of worker threads in the pool.","kind":"method","module":"std.parallelism","name":"size","package":"phobos","parentType":"TaskPool","signature":"size_t size()","url":"/ddoc/phobos/std/parallelism/TaskPool.size.html"},{"doc":"Put a `Task` object on the back of the task queue.  The `Task` object may be passed by pointer or reference.","kind":"method","module":"std.parallelism","name":"put","package":"phobos","parentType":"TaskPool","signature":"void put(alias  fun,  Args...)(ref  Task!(fun,  Args)  task) if (!isSafeReturn!(typeof(task)))","url":"/ddoc/phobos/std/parallelism/TaskPool.put.html"},{"doc":"Ditto","kind":"method","module":"std.parallelism","name":"put","package":"phobos","parentType":"TaskPool","signature":"void put(alias  fun,  Args...)(Task!(fun,  Args) *  task) if (!isSafeReturn!(typeof(* task)))","url":"/ddoc/phobos/std/parallelism/TaskPool.put.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"put","package":"phobos","parentType":"TaskPool","signature":"void put(alias  fun,  Args...)(ref  Task!(fun,  Args)  task) if (isSafeReturn!(typeof(task)))","url":"/ddoc/phobos/std/parallelism/TaskPool.put.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"put","package":"phobos","parentType":"TaskPool","signature":"void put(alias  fun,  Args...)(Task!(fun,  Args) *  task) if (isSafeReturn!(typeof(* task)))","url":"/ddoc/phobos/std/parallelism/TaskPool.put.html"},{"doc":"These properties control whether the worker threads are daemon threads. A daemon thread is automatically terminated when all non-daemon threads hav...","kind":"method","module":"std.parallelism","name":"isDaemon","package":"phobos","parentType":"TaskPool","signature":"bool isDaemon()","url":"/ddoc/phobos/std/parallelism/TaskPool.isDaemon.html"},{"doc":"Ditto","kind":"method","module":"std.parallelism","name":"isDaemon","package":"phobos","parentType":"TaskPool","signature":"void isDaemon(bool  newVal)","url":"/ddoc/phobos/std/parallelism/TaskPool.isDaemon.html"},{"doc":"These functions allow getting and setting the OS scheduling priority of the worker threads in this `TaskPool`.  They forward to `core.thread.Thread...","kind":"method","module":"std.parallelism","name":"priority","package":"phobos","parentType":"TaskPool","signature":"int priority()","url":"/ddoc/phobos/std/parallelism/TaskPool.priority.html"},{"doc":"Ditto","kind":"method","module":"std.parallelism","name":"priority","package":"phobos","parentType":"TaskPool","signature":"void priority(int  newPriority)","url":"/ddoc/phobos/std/parallelism/TaskPool.priority.html"},{"doc":"","kind":"class","module":"std.parallelism","name":"ParallelForeachError","package":"phobos","parentType":"","signature":"ParallelForeachError : Error","url":"/ddoc/phobos/std/parallelism.html#ParallelForeachError"},{"doc":"","kind":"struct","module":"std.parallelism","name":"ParallelForeach","package":"phobos","parentType":"","signature":"ParallelForeach(R)","url":"/ddoc/phobos/std/parallelism.html#ParallelForeach"},{"doc":"","kind":"method","module":"std.parallelism","name":"opApply","package":"phobos","parentType":"ParallelForeach","signature":"int opApply(scope  NoIndexDg dg)","url":"/ddoc/phobos/std/parallelism/ParallelForeach.opApply.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"opApply","package":"phobos","parentType":"ParallelForeach","signature":"int opApply(scope  IndexDg dg)","url":"/ddoc/phobos/std/parallelism/ParallelForeach.opApply.html"},{"doc":"","kind":"struct","module":"std.parallelism","name":"RoundRobinBuffer","package":"phobos","parentType":"","signature":"RoundRobinBuffer(C1,  C2)","url":"/ddoc/phobos/std/parallelism.html#RoundRobinBuffer"},{"doc":"","kind":"method","module":"std.parallelism","name":"prime","package":"phobos","parentType":"RoundRobinBuffer","signature":"void prime()","url":"/ddoc/phobos/std/parallelism/RoundRobinBuffer.prime.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"front","package":"phobos","parentType":"RoundRobinBuffer","signature":"T[] front()","url":"/ddoc/phobos/std/parallelism/RoundRobinBuffer.front.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"popFront","package":"phobos","parentType":"RoundRobinBuffer","signature":"void popFront()","url":"/ddoc/phobos/std/parallelism/RoundRobinBuffer.popFront.html"},{"doc":"","kind":"method","module":"std.parallelism","name":"empty","package":"phobos","parentType":"RoundRobinBuffer","signature":"bool empty()","url":"/ddoc/phobos/std/parallelism/RoundRobinBuffer.empty.html"},{"doc":"","kind":"template","module":"std.parallelism","name":"MapType","package":"phobos","parentType":"","signature":"MapType(R,  functions...)","url":"/ddoc/phobos/std/parallelism.html#MapType"},{"doc":"","kind":"template","module":"std.parallelism","name":"ReduceType","package":"phobos","parentType":"","signature":"ReduceType(alias  fun,  R,  E)","url":"/ddoc/phobos/std/parallelism.html#ReduceType"},{"doc":"","kind":"template","module":"std.parallelism","name":"noUnsharedAliasing","package":"phobos","parentType":"","signature":"noUnsharedAliasing(T)","url":"/ddoc/phobos/std/parallelism.html#noUnsharedAliasing"},{"doc":"","kind":"template","module":"std.parallelism","name":"isSafeTask","package":"phobos","parentType":"","signature":"isSafeTask(F)","url":"/ddoc/phobos/std/parallelism.html#isSafeTask"},{"doc":"","kind":"template","module":"std.parallelism","name":"isSafeReturn","package":"phobos","parentType":"","signature":"isSafeReturn(T)","url":"/ddoc/phobos/std/parallelism.html#isSafeReturn"},{"doc":"","kind":"template","module":"std.parallelism","name":"randAssignable","package":"phobos","parentType":"","signature":"randAssignable(R)","url":"/ddoc/phobos/std/parallelism.html#randAssignable"},{"doc":"","kind":"template","module":"std.parallelism","name":"AliasReturn","package":"phobos","parentType":"","signature":"AliasReturn(alias  fun,  T...)","url":"/ddoc/phobos/std/parallelism.html#AliasReturn"},{"doc":"","kind":"template","module":"std.parallelism","name":"reduceAdjoin","package":"phobos","parentType":"","signature":"reduceAdjoin(functions...)","url":"/ddoc/phobos/std/parallelism.html#reduceAdjoin"},{"doc":"","kind":"template","module":"std.parallelism","name":"reduceFinish","package":"phobos","parentType":"","signature":"reduceFinish(functions...)","url":"/ddoc/phobos/std/parallelism.html#reduceFinish"},{"doc":"","kind":"template","module":"std.parallelism","name":"isRoundRobin","package":"phobos","parentType":"","signature":"isRoundRobin(R :  RoundRobinBuffer!(C1,  C2),  C1,  C2)","url":"/ddoc/phobos/std/parallelism.html#isRoundRobin"},{"doc":"","kind":"template","module":"std.parallelism","name":"isRoundRobin","package":"phobos","parentType":"","signature":"isRoundRobin(T)","url":"/ddoc/phobos/std/parallelism.html#isRoundRobin"},{"doc":"","kind":"template","module":"std.parallelism","name":"randLen","package":"phobos","parentType":"","signature":"randLen(R)","url":"/ddoc/phobos/std/parallelism.html#randLen"},{"doc":"","kind":"variable","module":"std.parallelism","name":"_defaultPoolThreads","package":"phobos","parentType":"","signature":"uint _defaultPoolThreads","url":"/ddoc/phobos/std/parallelism.html#_defaultPoolThreads"},{"doc":"","kind":"variable","module":"std.parallelism","name":"parallelApplyMixinRandomAccess","package":"phobos","parentType":"","signature":"string parallelApplyMixinRandomAccess","url":"/ddoc/phobos/std/parallelism.html#parallelApplyMixinRandomAccess"},{"doc":"","kind":"variable","module":"std.parallelism","name":"parallelApplyMixinInputRange","package":"phobos","parentType":"","signature":"string parallelApplyMixinInputRange","url":"/ddoc/phobos/std/parallelism.html#parallelApplyMixinInputRange"},{"doc":"This module is used to manipulate path strings.","kind":"module","module":"std.path","name":"std.path","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/path.html"},{"doc":"Determines whether the given character is a directory separator.","kind":"function","module":"std.path","name":"isDirSeparator","package":"phobos","parentType":"","signature":"bool isDirSeparator(dchar  c)","url":"/ddoc/phobos/std/path/isDirSeparator.html"},{"doc":"","kind":"function","module":"std.path","name":"isDriveSeparator","package":"phobos","parentType":"","signature":"bool isDriveSeparator(dchar  c)","url":"/ddoc/phobos/std/path/isDriveSeparator.html"},{"doc":"","kind":"function","module":"std.path","name":"lastSeparator","package":"phobos","parentType":"","signature":"ptrdiff_t lastSeparator(R)(R path) if (isRandomAccessRange!R &&  isSomeChar!(ElementType!R)  ||\n     isNarrowString!R)","url":"/ddoc/phobos/std/path/lastSeparator.html"},{"doc":"","kind":"function","module":"std.path","name":"ltrimDirSeparators","package":"phobos","parentType":"","signature":"auto ltrimDirSeparators(R)(R path) if (isSomeFiniteCharInputRange!R ||  isNarrowString!R)","url":"/ddoc/phobos/std/path/ltrimDirSeparators.html"},{"doc":"","kind":"function","module":"std.path","name":"rtrimDirSeparators","package":"phobos","parentType":"","signature":"auto rtrimDirSeparators(R)(R path) if (isBidirectionalRange!R &&  isSomeChar!(ElementType!R)  ||\n     isNarrowString!R)","url":"/ddoc/phobos/std/path/rtrimDirSeparators.html"},{"doc":"","kind":"function","module":"std.path","name":"trimDirSeparators","package":"phobos","parentType":"","signature":"auto trimDirSeparators(R)(R path) if (isBidirectionalRange!R &&  isSomeChar!(ElementType!R)  ||\n     isNarrowString!R)","url":"/ddoc/phobos/std/path/trimDirSeparators.html"},{"doc":"Params: cs = Whether or not suffix matching is case-sensitive. path = A path name. It can be a string, or any random-access range of characters. su...","kind":"function","module":"std.path","name":"baseName","package":"phobos","parentType":"","signature":"auto baseName(R)(return  scope  R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/baseName.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"baseName","package":"phobos","parentType":"","signature":"auto baseName(C)(return  scope  C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/baseName.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"baseName","package":"phobos","parentType":"","signature":"inout(C)[] baseName(CaseSensitive cs =  CaseSensitive.osDefault,  C,  C1)(return  scope  inout(C)[]  path,  in  C1[]  suffix) if (isSomeChar!C &&  isSomeChar!C1)","url":"/ddoc/phobos/std/path/baseName.html"},{"doc":"","kind":"function","module":"std.path","name":"_baseName","package":"phobos","parentType":"","signature":"R _baseName(R)(return  scope  R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  isSomeChar!(ElementType!R)  ||  isNarrowString!R)","url":"/ddoc/phobos/std/path/_baseName.html"},{"doc":"Returns the parent directory of `path`. On Windows, this includes the drive letter if present. If `path` is a relative path and the parent director...","kind":"function","module":"std.path","name":"dirName","package":"phobos","parentType":"","signature":"auto dirName(R)(return  scope  R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/dirName.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"dirName","package":"phobos","parentType":"","signature":"auto dirName(C)(return  scope  C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/dirName.html"},{"doc":"","kind":"function","module":"std.path","name":"_dirName","package":"phobos","parentType":"","signature":"auto _dirName(R)(return  scope  R path)","url":"/ddoc/phobos/std/path/_dirName.html"},{"doc":"Returns the root directory of the specified path, or `null` if the path is not rooted.","kind":"function","module":"std.path","name":"rootName","package":"phobos","parentType":"","signature":"auto rootName(R)(R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/rootName.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"rootName","package":"phobos","parentType":"","signature":"auto rootName(C)(C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/rootName.html"},{"doc":"","kind":"function","module":"std.path","name":"_rootName","package":"phobos","parentType":"","signature":"auto _rootName(R)(R path)","url":"/ddoc/phobos/std/path/_rootName.html"},{"doc":"Get the drive portion of a path.","kind":"function","module":"std.path","name":"driveName","package":"phobos","parentType":"","signature":"auto driveName(R)(R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/driveName.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"driveName","package":"phobos","parentType":"","signature":"auto driveName(C)(C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/driveName.html"},{"doc":"","kind":"function","module":"std.path","name":"_driveName","package":"phobos","parentType":"","signature":"auto _driveName(R)(R path)","url":"/ddoc/phobos/std/path/_driveName.html"},{"doc":"Strips the drive from a Windows path.  On POSIX, the path is returned unaltered.","kind":"function","module":"std.path","name":"stripDrive","package":"phobos","parentType":"","signature":"auto stripDrive(R)(R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/stripDrive.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"stripDrive","package":"phobos","parentType":"","signature":"auto stripDrive(C)(C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/stripDrive.html"},{"doc":"","kind":"function","module":"std.path","name":"_stripDrive","package":"phobos","parentType":"","signature":"auto _stripDrive(R)(R path)","url":"/ddoc/phobos/std/path/_stripDrive.html"},{"doc":"","kind":"function","module":"std.path","name":"extSeparatorPos","package":"phobos","parentType":"","signature":"ptrdiff_t extSeparatorPos(R)(R path) if (isRandomAccessRange!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  ||\n     isNarrowString!R)","url":"/ddoc/phobos/std/path/extSeparatorPos.html"},{"doc":"Params: path = A path name. Returns: The _extension part of a file name, including the dot.","kind":"function","module":"std.path","name":"extension","package":"phobos","parentType":"","signature":"auto extension(R)(R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  isSomeChar!(ElementType!R)  ||\n     is(StringTypeOf!R))","url":"/ddoc/phobos/std/path/extension.html"},{"doc":"Remove extension from path.","kind":"function","module":"std.path","name":"stripExtension","package":"phobos","parentType":"","signature":"auto stripExtension(R)(R path) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  && !isSomeString!R)","url":"/ddoc/phobos/std/path/stripExtension.html"},{"doc":"Ditto","kind":"function","module":"std.path","name":"stripExtension","package":"phobos","parentType":"","signature":"auto stripExtension(C)(C[]  path) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/stripExtension.html"},{"doc":"","kind":"function","module":"std.path","name":"_stripExtension","package":"phobos","parentType":"","signature":"auto _stripExtension(R)(R path)","url":"/ddoc/phobos/std/path/_stripExtension.html"},{"doc":"Sets or replaces an extension.","kind":"function","module":"std.path","name":"setExtension","package":"phobos","parentType":"","signature":"immutable(C1)[] setExtension(C1,  C2)(in  C1[]  path,  in  C2[]  ext) if (isSomeChar!C1 && !is(C1 ==  immutable)  &&  is(immutable  C1 ==  immutable  C2))","url":"/ddoc/phobos/std/path/setExtension.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"setExtension","package":"phobos","parentType":"","signature":"immutable(C1)[] setExtension(C1,  C2)(immutable(C1)[]  path,  const(C2)[]  ext) if (isSomeChar!C1 &&  is(immutable  C1 ==  immutable  C2))","url":"/ddoc/phobos/std/path/setExtension.html"},{"doc":"Replace existing extension on filespec with new one.","kind":"function","module":"std.path","name":"withExtension","package":"phobos","parentType":"","signature":"auto withExtension(R,  C)(R path,  C[]  ext) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  &&\n    !isSomeString!R &&  isSomeChar!C)","url":"/ddoc/phobos/std/path/withExtension.html"},{"doc":"Ditto","kind":"function","module":"std.path","name":"withExtension","package":"phobos","parentType":"","signature":"auto withExtension(C1,  C2)(C1[]  path,  C2[]  ext) if (isSomeChar!C1 &&  isSomeChar!C2)","url":"/ddoc/phobos/std/path/withExtension.html"},{"doc":"","kind":"function","module":"std.path","name":"_withExtension","package":"phobos","parentType":"","signature":"auto _withExtension(R,  C)(R path,  C[]  ext)","url":"/ddoc/phobos/std/path/_withExtension.html"},{"doc":"Params: path = A path name. ext = The default extension to use.","kind":"function","module":"std.path","name":"defaultExtension","package":"phobos","parentType":"","signature":"immutable(C1)[] defaultExtension(C1,  C2)(in  C1[]  path,  in  C2[]  ext) if (isSomeChar!C1 &&  is(immutable  C1 ==  immutable  C2))","url":"/ddoc/phobos/std/path/defaultExtension.html"},{"doc":"Set the extension of `path` to `ext` if `path` doesn't have one.","kind":"function","module":"std.path","name":"withDefaultExtension","package":"phobos","parentType":"","signature":"auto withDefaultExtension(R,  C)(R path,  C[]  ext) if (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R &&  isSomeChar!(ElementType!R)  &&\n    !isSomeString!R &&  isSomeChar!C)","url":"/ddoc/phobos/std/path/withDefaultExtension.html"},{"doc":"Ditto","kind":"function","module":"std.path","name":"withDefaultExtension","package":"phobos","parentType":"","signature":"auto withDefaultExtension(C1,  C2)(C1[]  path,  C2[]  ext) if (isSomeChar!C1 &&  isSomeChar!C2)","url":"/ddoc/phobos/std/path/withDefaultExtension.html"},{"doc":"","kind":"function","module":"std.path","name":"_withDefaultExtension","package":"phobos","parentType":"","signature":"auto _withDefaultExtension(R,  C)(R path,  C[]  ext)","url":"/ddoc/phobos/std/path/_withDefaultExtension.html"},{"doc":"Combines one or more path segments.","kind":"function","module":"std.path","name":"buildPath","package":"phobos","parentType":"","signature":"immutable(ElementEncodingType!(ElementType!Range))[] buildPath(Range)(scope  Range segments) if (isInputRange!Range && !isInfinite!Range &&  isSomeString!(ElementType!Range))","url":"/ddoc/phobos/std/path/buildPath.html"},{"doc":"ditto","kind":"function","module":"std.path","name":"buildPath","package":"phobos","parentType":"","signature":"immutable(C)[] buildPath(C)(const(C)[][]  paths...) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/buildPath.html"},{"doc":"Concatenate path segments together to form one path.","kind":"function","module":"std.path","name":"chainPath","package":"phobos","parentType":"","signature":"auto chainPath(R1,  R2,  Ranges...)(R1 r1,  R2 r2,  Ranges ranges) if ((isRandomAccessRange!R1 &&  hasSlicing!R1 &&  hasLength!R1 &&  isSomeChar!(ElementType!R1)  ||\n     isNarrowString!R1 &&\n    !isConvertibleToString!R1)  &&\n    (isRandomAccessRange!R2 &&  hasSlicing!R2 &&  hasLength!R2 &&  isSomeChar!(ElementType!R2)  ||\n     isNarrowString!R2 &&\n    !isConvertibleToString!R2)  &&\n    (Ranges.length ==  0 ||  is(typeof(chainPath(r2,  ranges))))\n    )","url":"/ddoc/phobos/std/path/chainPath.html"},{"doc":"","kind":"function","module":"std.path","name":"chainPath","package":"phobos","parentType":"","signature":"auto chainPath(Ranges...)(auto  ref  Ranges ranges) if (Ranges.length >=  2 &&\n     std.meta.anySatisfy!(isConvertibleToString,  Ranges))","url":"/ddoc/phobos/std/path/chainPath.html"},{"doc":"Performs the same task as $(LREF buildPath), while at the same time resolving current/parent directory symbols (`\".\"` and `\"..\"`) and removing supe...","kind":"function","module":"std.path","name":"buildNormalizedPath","package":"phobos","parentType":"","signature":"immutable(C)[] buildNormalizedPath(C)(const(C[])[]  paths...) if (isSomeChar!C)","url":"/ddoc/phobos/std/path/buildNormalizedPath.html"},{"doc":"Normalize a path by resolving current/parent directory symbols (`\".\"` and `\"..\"`) and removing superfluous directory separators. It will return \".\"...","kind":"function","module":"std.path","name":"asNormalizedPath","package":"phobos","parentType":"","signature":"auto asNormalizedPath(R)(return  scope  R path) if (isSomeChar!(ElementEncodingType!R)  &&\n    (isRandomAccessRange!R &&  hasSlicing!R &&  hasLength!R ||  isNarrowString!R)  &&\n    !isConvertibleToString!R)","url":"/ddoc/phobos/std/path/asNormalizedPath.html"},{"doc":"","kind":"function","module":"std.path","name":"asNormalizedPath","package":"phobos","parentType":"","signature":"auto asNormalizedPath(R)(return  scope  auto  ref  R path) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/path/asNormalizedPath.html"},{"doc":"Slice up a path into its elements.","kind":"function","module":"std.path","name":"pathSplitter","package":"phobos","parentType":"","signature":"auto pathSplitter(R)(R path) if ((isRandomAccessRange!R &&  hasSlicing!R ||\n     isNarrowString!R)  &&\n    !isConvertibleToString!R)","url":"/ddoc/phobos/std/path/pathSplitter.html"},{"doc":"","kind":"function","module":"std.path","name":"pathSplitter","package":"phobos","parentType":"","signature":"auto pathSplitter(R)(auto  ref  R path) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/path/pathSplitter.html"},{"doc":"Determines whether a path starts at a root directory.","kind":"function","module":"std.path","name":"isRooted","package":"phobos","parentType":"","signature":"bool isRooted(R)(R path) if (isRandomAccessRange!R &&  isSomeChar!(ElementType!R)  ||\n     is(StringTypeOf!R))","url":"/ddoc/phobos/std/path/isRooted.html"},{"doc":"Transforms `path` into an absolute path.","kind":"function","module":"std.path","name":"absolutePath","package":"phobos","parentType":"","signature":"string absolutePath(return  scope  const  string path,  lazy  string base =  getcwd())","url":"/ddoc/phobos/std/path/absolutePath.html"},{"doc":"Transforms `path` into an absolute path.","kind":"function","module":"std.path","name":"asAbsolutePath","package":"phobos","parentType":"","signature":"auto asAbsolutePath(R)(R path) if ((isRandomAccessRange!R &&  isSomeChar!(ElementType!R)  ||\n     isNarrowString!R)  &&\n    !isConvertibleToString!R)","url":"/ddoc/phobos/std/path/asAbsolutePath.html"},{"doc":"","kind":"function","module":"std.path","name":"asAbsolutePath","package":"phobos","parentType":"","signature":"auto asAbsolutePath(R)(auto  ref  R path) if (isConvertibleToString!R)","url":"/ddoc/phobos/std/path/asAbsolutePath.html"},{"doc":"Translates `path` into a relative path.","kind":"function","module":"std.path","name":"relativePath","package":"phobos","parentType":"","signature":"string relativePath(CaseSensitive cs =  CaseSensitive.osDefault)(string path,  lazy  string base =  getcwd())","url":"/ddoc/phobos/std/path/relativePath.html"},{"doc":"Transforms `path` into a path relative to `base`.","kind":"function","module":"std.path","name":"asRelativePath","package":"phobos","parentType":"","signature":"auto asRelativePath(CaseSensitive cs =  CaseSensitive.osDefault,  R1,  R2)(R1 path,  R2 base) if ((isNarrowString!R1 ||\n    (isRandomAccessRange!R1 &&  hasSlicing!R1 &&  isSomeChar!(ElementType!R1))  &&\n    !isConvertibleToString!R1)  &&\n    (isNarrowString!R2 ||\n    (isRandomAccessRange!R2 &&  hasSlicing!R2 &&  isSomeChar!(ElementType!R2))  &&\n    !isConvertibleToString!R2))","url":"/ddoc/phobos/std/path/asRelativePath.html"},{"doc":"","kind":"function","module":"std.path","name":"asRelativePath","package":"phobos","parentType":"","signature":"auto asRelativePath(CaseSensitive cs =  CaseSensitive.osDefault,  R1,  R2)(auto  ref  R1 path,  auto  ref  R2 base) if (isConvertibleToString!R1 ||  isConvertibleToString!R2)","url":"/ddoc/phobos/std/path/asRelativePath.html"},{"doc":"Compares filename characters.","kind":"function","module":"std.path","name":"filenameCharCmp","package":"phobos","parentType":"","signature":"int filenameCharCmp(CaseSensitive cs =  CaseSensitive.osDefault)(dchar  a,  dchar  b)","url":"/ddoc/phobos/std/path/filenameCharCmp.html"},{"doc":"Compares file names and returns","kind":"function","module":"std.path","name":"filenameCmp","package":"phobos","parentType":"","signature":"int filenameCmp(CaseSensitive cs =  CaseSensitive.osDefault,  Range1,  Range2)(Range1 filename1,  Range2 filename2) if (isSomeFiniteCharInputRange!Range1 && !isConvertibleToString!Range1 &&\n     isSomeFiniteCharInputRange!Range2 && !isConvertibleToString!Range2)","url":"/ddoc/phobos/std/path/filenameCmp.html"},{"doc":"","kind":"function","module":"std.path","name":"filenameCmp","package":"phobos","parentType":"","signature":"int filenameCmp(CaseSensitive cs =  CaseSensitive.osDefault,  Range1,  Range2)(auto  ref  Range1 filename1,  auto  ref  Range2 filename2) if (isConvertibleToString!Range1 ||  isConvertibleToString!Range2)","url":"/ddoc/phobos/std/path/filenameCmp.html"},{"doc":"Matches a pattern against a path.","kind":"function","module":"std.path","name":"globMatch","package":"phobos","parentType":"","signature":"bool globMatch(CaseSensitive cs =  CaseSensitive.osDefault,  C,  Range)(Range path,  const(C)[]  pattern) if (isForwardRange!Range && !isInfinite!Range &&\n     isSomeChar!(ElementEncodingType!Range)  && !isConvertibleToString!Range &&\n     isSomeChar!C &&  is(immutable  C ==  immutable  ElementEncodingType!Range))","url":"/ddoc/phobos/std/path/globMatch.html"},{"doc":"","kind":"function","module":"std.path","name":"globMatch","package":"phobos","parentType":"","signature":"bool globMatch(CaseSensitive cs =  CaseSensitive.osDefault,  C,  Range)(auto  ref  Range path,  const(C)[]  pattern) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/path/globMatch.html"},{"doc":"Checks that the given file or directory name is valid.","kind":"function","module":"std.path","name":"isValidFilename","package":"phobos","parentType":"","signature":"bool isValidFilename(Range)(Range filename) if ((isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/path/isValidFilename.html"},{"doc":"","kind":"function","module":"std.path","name":"isValidFilename","package":"phobos","parentType":"","signature":"bool isValidFilename(Range)(auto  ref  Range filename) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/path/isValidFilename.html"},{"doc":"Checks whether `path` is a valid path.","kind":"function","module":"std.path","name":"isValidPath","package":"phobos","parentType":"","signature":"bool isValidPath(Range)(Range path) if ((isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/path/isValidPath.html"},{"doc":"","kind":"function","module":"std.path","name":"isValidPath","package":"phobos","parentType":"","signature":"bool isValidPath(Range)(auto  ref  Range path) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/path/isValidPath.html"},{"doc":"Performs tilde expansion in paths on POSIX systems. On Windows, this function does nothing.","kind":"function","module":"std.path","name":"expandTilde","package":"phobos","parentType":"","signature":"string expandTilde(return  scope  const  string inputPath)","url":"/ddoc/phobos/std/path/expandTilde.html"},{"doc":"This `enum` is used as a template argument to functions which compare file names, and determines whether the comparison is case sensitive or not.","kind":"enum","module":"std.path","name":"CaseSensitive","package":"phobos","parentType":"","signature":"CaseSensitive : bool","url":"/ddoc/phobos/std/path.html#CaseSensitive"},{"doc":"File names are case insensitive","kind":"enum_member","module":"std.path","name":"no","package":"phobos","parentType":"","signature":"no = false","url":"/ddoc/phobos/std/path.html#CaseSensitive"},{"doc":"File names are case sensitive","kind":"enum_member","module":"std.path","name":"yes","package":"phobos","parentType":"","signature":"yes = true","url":"/ddoc/phobos/std/path.html#CaseSensitive"},{"doc":"The default (or most common) setting for the current platform. That is, `no` on Windows and Mac OS X, and `yes` on all POSIX systems except Darwin ...","kind":"enum_member","module":"std.path","name":"osDefault","package":"phobos","parentType":"","signature":"osDefault = osDefaultCaseSensitivity","url":"/ddoc/phobos/std/path.html#CaseSensitive"},{"doc":"","kind":"template","module":"std.path","name":"BaseOf","package":"phobos","parentType":"","signature":"BaseOf(R)","url":"/ddoc/phobos/std/path.html#BaseOf"},{"doc":"Functions for starting and interacting with other processes, and for working with the current process' execution environment.","kind":"module","module":"std.process","name":"std.process","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/process.html"},{"doc":"Returns the process ID of the current process, which is guaranteed to be unique on the system.","kind":"function","module":"std.process","name":"thisProcessID","package":"phobos","parentType":"","signature":"int thisProcessID()","url":"/ddoc/phobos/std/process/thisProcessID.html"},{"doc":"Returns the process ID of the current thread, which is guaranteed to be unique within the current process.","kind":"function","module":"std.process","name":"thisThreadID","package":"phobos","parentType":"","signature":"ThreadID thisThreadID()","url":"/ddoc/phobos/std/process/thisThreadID.html"},{"doc":"","kind":"function","module":"std.process","name":"uniqueTempPath","package":"phobos","parentType":"","signature":"string uniqueTempPath()","url":"/ddoc/phobos/std/process/uniqueTempPath.html"},{"doc":"Manipulates _environment variables using an associative-array-like interface.","kind":"class","module":"std.process","name":"environment","package":"phobos","parentType":"","signature":"environment","url":"/ddoc/phobos/std/process.html#environment"},{"doc":"Retrieves the value of the environment variable with the given `name`. --- auto path = environment[\"PATH\"]; ---","kind":"method","module":"std.process","name":"opIndex","package":"phobos","parentType":"environment","signature":"string opIndex(scope  const(char)[]  name)","url":"/ddoc/phobos/std/process/environment.opIndex.html"},{"doc":"Retrieves the value of the environment variable with the given `name`, or a default value if the variable doesn't exist.","kind":"method","module":"std.process","name":"get","package":"phobos","parentType":"environment","signature":"string get(scope  const(char)[]  name,  string defaultValue =  null)","url":"/ddoc/phobos/std/process/environment.get.html"},{"doc":"Assigns the given `value` to the environment variable with the given `name`. If `value` is null the variable is removed from environment.","kind":"method","module":"std.process","name":"opIndexAssign","package":"phobos","parentType":"environment","signature":"inout(char)[] opIndexAssign(return  scope  inout  char[]  value,  scope  const(char)[]  name)","url":"/ddoc/phobos/std/process/environment.opIndexAssign.html"},{"doc":"Removes the environment variable with the given `name`.","kind":"method","module":"std.process","name":"remove","package":"phobos","parentType":"environment","signature":"void remove(scope  const(char)[]  name)","url":"/ddoc/phobos/std/process/environment.remove.html"},{"doc":"Identify whether a variable is defined in the environment.","kind":"method","module":"std.process","name":"opBinaryRight","package":"phobos","parentType":"environment","signature":"bool opBinaryRight(string op :  \"in\")(scope  const(char)[]  name)","url":"/ddoc/phobos/std/process/environment.opBinaryRight.html"},{"doc":"Copies all environment variables into an associative array.","kind":"method","module":"std.process","name":"toAA","package":"phobos","parentType":"environment","signature":"string[string] toAA()","url":"/ddoc/phobos/std/process/environment.toAA.html"},{"doc":"","kind":"method","module":"std.process","name":"getImpl","package":"phobos","parentType":"environment","signature":"void getImpl(scope  const(char)[]  name,  scope  void  delegate(const(OSChar)[]) @safe sink)","url":"/ddoc/phobos/std/process/environment.getImpl.html"},{"doc":"","kind":"method","module":"std.process","name":"cachedToString","package":"phobos","parentType":"environment","signature":"string cachedToString(C)(scope  const(C)[]  v)","url":"/ddoc/phobos/std/process/environment.cachedToString.html"},{"doc":"Facilities for random number generation.","kind":"module","module":"std.random","name":"std.random","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/random.html"},{"doc":"A \"good\" seed for initializing random number engines. Initializing with $(D_PARAM unpredictableSeed) makes engines generate different random number...","kind":"function","module":"std.random","name":"unpredictableSeed","package":"phobos","parentType":"","signature":"uint unpredictableSeed()","url":"/ddoc/phobos/std/random/unpredictableSeed.html"},{"doc":"Global random number generator used by various functions in this module whenever no generator is specified. It is allocated per-thread and initiali...","kind":"function","module":"std.random","name":"rndGen","package":"phobos","parentType":"","signature":"Random rndGen()","url":"/ddoc/phobos/std/random/rndGen.html"},{"doc":"","kind":"function","module":"std.random","name":"initMTEngine","package":"phobos","parentType":"","signature":"void initMTEngine(MTEngine)(scope  ref  MTEngine mt) if (is(MTEngine :  MersenneTwisterEngine!Params,  Params...))","url":"/ddoc/phobos/std/random/initMTEngine.html"},{"doc":"Generates a number between `a` and `b`. The `boundaries` parameter controls the shape of the interval (open vs. closed on either side). Valid value...","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(string boundaries =  \"[)\",  T1,  T2)(T1 a,  T2 b) if (!is(CommonType!(T1,  T2)  ==  void))","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(string boundaries =  \"[)\",\n         T1,  T2,  UniformRandomNumberGenerator)(T1 a,  T2 b,  ref  UniformRandomNumberGenerator urng) if (isFloatingPoint!(CommonType!(T1,  T2))  &&  isUniformRNG!UniformRandomNumberGenerator)","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(string boundaries =  \"[)\",  T1,  T2,  RandomGen)(T1 a,  T2 b,  ref  RandomGen rng) if ((isIntegral!(CommonType!(T1,  T2))  ||  isSomeChar!(CommonType!(T1,  T2)))  &&\n      isUniformRNG!RandomGen)","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"","kind":"function","module":"std.random","name":"_uniformIndex","package":"phobos","parentType":"","signature":"UInt _uniformIndex(UniformRNG,  UInt =  size_t)(const  UInt k,  ref  UniformRNG rng) if (isUnsigned!UInt &&  isUniformRNG!UniformRNG)","url":"/ddoc/phobos/std/random/_uniformIndex.html"},{"doc":"Generates a uniformly-distributed number in the range $(D [T.min, T.max]) for any integral or character type `T`. If no random number generator is ...","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(T,  UniformRandomNumberGenerator)(ref  UniformRandomNumberGenerator urng) if (!is(T ==  enum)  && (isIntegral!T ||  isSomeChar!T)  &&  isUniformRNG!UniformRandomNumberGenerator)","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(T)() if (!is(T ==  enum)  && (isIntegral!T ||  isSomeChar!T))","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(E,  UniformRandomNumberGenerator)(ref  UniformRandomNumberGenerator urng) if (is(E ==  enum)  &&  isUniformRNG!UniformRandomNumberGenerator)","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"uniform","package":"phobos","parentType":"","signature":"auto uniform(E)() if (is(E ==  enum))","url":"/ddoc/phobos/std/random/uniform.html"},{"doc":"Generates a uniformly-distributed floating point number of type `T` in the range [0, 1$(RPAREN).  If no random number generator is specified, the d...","kind":"function","module":"std.random","name":"uniform01","package":"phobos","parentType":"","signature":"T uniform01(T =  double)() if (isFloatingPoint!T)","url":"/ddoc/phobos/std/random/uniform01.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"uniform01","package":"phobos","parentType":"","signature":"T uniform01(T =  double,  UniformRNG)(ref  UniformRNG rng) if (isFloatingPoint!T &&  isUniformRNG!UniformRNG)","url":"/ddoc/phobos/std/random/uniform01.html"},{"doc":"Generates a uniform probability distribution of size `n`, i.e., an array of size `n` of positive numbers of type `F` that sum to `1`. If `useThis` ...","kind":"function","module":"std.random","name":"uniformDistribution","package":"phobos","parentType":"","signature":"F[] uniformDistribution(F =  double)(size_t n,  F[]  useThis =  null) if (isFloatingPoint!F)","url":"/ddoc/phobos/std/random/uniformDistribution.html"},{"doc":"Returns a random, uniformly chosen, element `e` from the supplied $(D Range range). If no random number generator is passed, the default `rndGen` i...","kind":"function","module":"std.random","name":"choice","package":"phobos","parentType":"","signature":"auto ref choice(Range,  RandomGen =  Random)(Range range,  ref  RandomGen urng) if (isRandomAccessRange!Range &&  hasLength!Range &&  isUniformRNG!RandomGen)","url":"/ddoc/phobos/std/random/choice.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"choice","package":"phobos","parentType":"","signature":"auto ref choice(Range)(Range range)","url":"/ddoc/phobos/std/random/choice.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"choice","package":"phobos","parentType":"","signature":"auto ref choice(Range,  RandomGen =  Random)(ref  Range range,  ref  RandomGen urng) if (isRandomAccessRange!Range &&  hasLength!Range &&  isUniformRNG!RandomGen)","url":"/ddoc/phobos/std/random/choice.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"choice","package":"phobos","parentType":"","signature":"auto ref choice(Range)(ref  Range range)","url":"/ddoc/phobos/std/random/choice.html"},{"doc":"Shuffles elements of `r` using `gen` as a shuffler. `r` must be a random-access range with length.  If no RNG is specified, `rndGen` will be used.","kind":"function","module":"std.random","name":"randomShuffle","package":"phobos","parentType":"","signature":"Range randomShuffle(Range,  RandomGen)(Range r,  ref  RandomGen gen) if (isRandomAccessRange!Range &&  isUniformRNG!RandomGen)","url":"/ddoc/phobos/std/random/randomShuffle.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"randomShuffle","package":"phobos","parentType":"","signature":"Range randomShuffle(Range)(Range r) if (isRandomAccessRange!Range)","url":"/ddoc/phobos/std/random/randomShuffle.html"},{"doc":"Partially shuffles the elements of `r` such that upon returning $(D r[0 .. n]) is a random subset of `r` and is randomly ordered.  $(D r[n .. r.len...","kind":"function","module":"std.random","name":"partialShuffle","package":"phobos","parentType":"","signature":"Range partialShuffle(Range,  RandomGen)(Range r,  in  size_t n,  ref  RandomGen gen) if (isRandomAccessRange!Range &&  isUniformRNG!RandomGen)","url":"/ddoc/phobos/std/random/partialShuffle.html"},{"doc":"ditto","kind":"function","module":"std.random","name":"partialShuffle","package":"phobos","parentType":"","signature":"Range partialShuffle(Range)(Range r,  in  size_t n) if (isRandomAccessRange!Range)","url":"/ddoc/phobos/std/random/partialShuffle.html"},{"doc":"Get a random index into a list of weights corresponding to each index","kind":"function","module":"std.random","name":"dice","package":"phobos","parentType":"","signature":"size_t dice(Rng,  Num)(ref  Rng rnd,  Num[]  proportions...) if (isNumeric!Num &&  isForwardRange!Rng)","url":"/ddoc/phobos/std/random/dice.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"dice","package":"phobos","parentType":"","signature":"size_t dice(R,  Range)(ref  R rnd,  Range proportions) if (isForwardRange!Range &&  isNumeric!(ElementType!Range)  && !isArray!Range)","url":"/ddoc/phobos/std/random/dice.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"dice","package":"phobos","parentType":"","signature":"size_t dice(Range)(Range proportions) if (isForwardRange!Range &&  isNumeric!(ElementType!Range)  && !isArray!Range)","url":"/ddoc/phobos/std/random/dice.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"dice","package":"phobos","parentType":"","signature":"size_t dice(Num)(Num[]  proportions...) if (isNumeric!Num)","url":"/ddoc/phobos/std/random/dice.html"},{"doc":"","kind":"function","module":"std.random","name":"diceImpl","package":"phobos","parentType":"","signature":"size_t diceImpl(Rng,  Range)(ref  Rng rng,  scope  Range proportions) if (isForwardRange!Range &&  isNumeric!(ElementType!Range)  &&  isForwardRange!Rng)","url":"/ddoc/phobos/std/random/diceImpl.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomCover","package":"phobos","parentType":"","signature":"auto randomCover(Range,  UniformRNG)(Range r,  auto  ref  UniformRNG rng) if (isRandomAccessRange!Range &&  isUniformRNG!UniformRNG)","url":"/ddoc/phobos/std/random/randomCover.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomCover","package":"phobos","parentType":"","signature":"auto randomCover(Range)(Range r) if (isRandomAccessRange!Range)","url":"/ddoc/phobos/std/random/randomCover.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomSample","package":"phobos","parentType":"","signature":"auto randomSample(Range)(Range r,  size_t n,  size_t total) if (isInputRange!Range)","url":"/ddoc/phobos/std/random/randomSample.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomSample","package":"phobos","parentType":"","signature":"auto randomSample(Range)(Range r,  size_t n) if (isInputRange!Range &&  hasLength!Range)","url":"/ddoc/phobos/std/random/randomSample.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomSample","package":"phobos","parentType":"","signature":"auto randomSample(Range,  UniformRNG)(Range r,  size_t n,  size_t total,  auto  ref  UniformRNG rng) if (isInputRange!Range &&  isUniformRNG!UniformRNG)","url":"/ddoc/phobos/std/random/randomSample.html"},{"doc":"Ditto","kind":"function","module":"std.random","name":"randomSample","package":"phobos","parentType":"","signature":"auto randomSample(Range,  UniformRNG)(Range r,  size_t n,  auto  ref  UniformRNG rng) if (isInputRange!Range &&  hasLength!Range &&  isUniformRNG!UniformRNG)","url":"/ddoc/phobos/std/random/randomSample.html"},{"doc":"Linear Congruential generator. When m = 0, no modulus is used.","kind":"struct","module":"std.random","name":"LinearCongruentialEngine","package":"phobos","parentType":"","signature":"LinearCongruentialEngine(UIntType,  UIntType a,  UIntType c,  UIntType m) if (isUnsigned!UIntType)","url":"/ddoc/phobos/std/random.html#LinearCongruentialEngine"},{"doc":"","kind":"method","module":"std.random","name":"gcd","package":"phobos","parentType":"LinearCongruentialEngine","signature":"ulong gcd(ulong  a,  ulong  b)","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.gcd.html"},{"doc":"","kind":"method","module":"std.random","name":"primeFactorsOnly","package":"phobos","parentType":"LinearCongruentialEngine","signature":"ulong primeFactorsOnly(ulong  n)","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.primeFactorsOnly.html"},{"doc":"","kind":"method","module":"std.random","name":"properLinearCongruentialParameters","package":"phobos","parentType":"LinearCongruentialEngine","signature":"bool properLinearCongruentialParameters(ulong  m,\n             ulong  a,  ulong  c)","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.properLinearCongruentialParameters.html"},{"doc":"(Re)seeds the generator.","kind":"method","module":"std.random","name":"seed","package":"phobos","parentType":"LinearCongruentialEngine","signature":"void seed(UIntType x0 =  1)","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.seed.html"},{"doc":"Advances the random sequence.","kind":"method","module":"std.random","name":"popFront","package":"phobos","parentType":"LinearCongruentialEngine","signature":"void popFront()","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.popFront.html"},{"doc":"Returns the current number in the random sequence.","kind":"method","module":"std.random","name":"front","package":"phobos","parentType":"LinearCongruentialEngine","signature":"UIntType front()","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.front.html"},{"doc":"","kind":"method","module":"std.random","name":"save","package":"phobos","parentType":"LinearCongruentialEngine","signature":"typeof(this) save()","url":"/ddoc/phobos/std/random/LinearCongruentialEngine.save.html"},{"doc":"Define $(D_PARAM LinearCongruentialEngine) generators with well-chosen parameters. `MinstdRand0` implements Park and Miller's \"minimal standard\" $(...","kind":"alias","module":"std.random","name":"MinstdRand0","package":"phobos","parentType":"","signature":"MinstdRand0 = LinearCongruentialEngine!(uint,  16_807,  0,  2_147_483_647)","url":"/ddoc/phobos/std/random.html#MinstdRand0"},{"doc":"ditto","kind":"alias","module":"std.random","name":"MinstdRand","package":"phobos","parentType":"","signature":"MinstdRand = LinearCongruentialEngine!(uint,  48_271,  0,  2_147_483_647)","url":"/ddoc/phobos/std/random.html#MinstdRand"},{"doc":"The $(LINK2 https://en.wikipedia.org/wiki/Mersenne_Twister, Mersenne Twister) generator.","kind":"struct","module":"std.random","name":"MersenneTwisterEngine","package":"phobos","parentType":"","signature":"MersenneTwisterEngine(UIntType,  size_t w,  size_t n,  size_t m,  size_t r,\n                              UIntType a,  size_t u,  UIntType d,  size_t s,\n                              UIntType b,  size_t t,\n                              UIntType c,  size_t l,  UIntType f) if (isUnsigned!UIntType)","url":"/ddoc/phobos/std/random.html#MersenneTwisterEngine"},{"doc":"Generates the default initial state for a Mersenne Twister; equivalent to the internal state obtained by calling `seed(defaultSeed)`","kind":"method","module":"std.random","name":"defaultState","package":"phobos","parentType":"MersenneTwisterEngine","signature":"State defaultState()","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.defaultState.html"},{"doc":"Seeds a MersenneTwisterEngine object. Note: This seed function gives 2^w starting points (the lowest w bits of the value provided will be used). To...","kind":"method","module":"std.random","name":"seed","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void seed()(UIntType value =  defaultSeed)","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.seed.html"},{"doc":"Implementation of the seeding mechanism, which can be used with an arbitrary `State` instance","kind":"method","module":"std.random","name":"seedImpl","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void seedImpl(UIntType value,  ref  State mtState)","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.seedImpl.html"},{"doc":"Seeds a MersenneTwisterEngine object using an InputRange.","kind":"method","module":"std.random","name":"seed","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void seed(T)(T range) if (isInputRange!T &&  is(immutable  ElementType!T ==  immutable  UIntType))","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.seed.html"},{"doc":"Implementation of the range-based seeding mechanism, which can be used with an arbitrary `State` instance","kind":"method","module":"std.random","name":"seedImpl","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void seedImpl(T)(T range,  ref  State mtState) if (isInputRange!T &&  is(immutable  ElementType!T ==  immutable  UIntType))","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.seedImpl.html"},{"doc":"Advances the generator.","kind":"method","module":"std.random","name":"popFront","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void popFront()","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.popFront.html"},{"doc":"","kind":"method","module":"std.random","name":"popFrontImpl","package":"phobos","parentType":"MersenneTwisterEngine","signature":"void popFrontImpl(ref  State mtState)","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.popFrontImpl.html"},{"doc":"Returns the current random value.","kind":"method","module":"std.random","name":"front","package":"phobos","parentType":"MersenneTwisterEngine","signature":"UIntType front()","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.front.html"},{"doc":"","kind":"method","module":"std.random","name":"save","package":"phobos","parentType":"MersenneTwisterEngine","signature":"typeof(this) save()","url":"/ddoc/phobos/std/random/MersenneTwisterEngine.save.html"},{"doc":"A `MersenneTwisterEngine` instantiated with the parameters of the original engine $(HTTP math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html, MT19937), g...","kind":"alias","module":"std.random","name":"Mt19937","package":"phobos","parentType":"","signature":"Mt19937 = MersenneTwisterEngine!(uint,  32,  624,  397,  31,\n                                        0x9908b0df,  11,  0xffffffff,  7,\n                                        0x9d2c5680,  15,\n                                        0xefc60000,  18,  1_812_433_253)","url":"/ddoc/phobos/std/random.html#Mt19937"},{"doc":"A `MersenneTwisterEngine` instantiated with the parameters of the original engine $(HTTP en.wikipedia.org/wiki/Mersenne_Twister, MT19937-64), gener...","kind":"alias","module":"std.random","name":"Mt19937_64","package":"phobos","parentType":"","signature":"Mt19937_64 = MersenneTwisterEngine!(ulong,  64,  312,  156,  31,\n                                           0xb5026f5aa96619e9,  29,  0x5555555555555555,  17,\n                                           0x71d67fffeda60000,  37,\n                                           0xfff7eee000000000,  43,  6_364_136_223_846_793_005)","url":"/ddoc/phobos/std/random.html#Mt19937_64"},{"doc":"Xorshift generator. Implemented according to $(HTTP www.jstatsoft.org/v08/i14/paper, Xorshift RNGs) (Marsaglia, 2003) when the size is small. For l...","kind":"struct","module":"std.random","name":"XorshiftEngine","package":"phobos","parentType":"","signature":"XorshiftEngine(UIntType,  uint  nbits,  int  sa,  int  sb,  int  sc) if (isUnsigned!UIntType && !(sa >  0 &&  sb >  0 &&  sc >  0))","url":"/ddoc/phobos/std/random.html#XorshiftEngine"},{"doc":"(Re)seeds the generator.","kind":"method","module":"std.random","name":"seed","package":"phobos","parentType":"XorshiftEngine","signature":"void seed()(UIntType x0)","url":"/ddoc/phobos/std/random/XorshiftEngine.seed.html"},{"doc":"Returns the current number in the random sequence.","kind":"method","module":"std.random","name":"front","package":"phobos","parentType":"XorshiftEngine","signature":"UIntType front()","url":"/ddoc/phobos/std/random/XorshiftEngine.front.html"},{"doc":"Advances the random sequence.","kind":"method","module":"std.random","name":"popFront","package":"phobos","parentType":"XorshiftEngine","signature":"void popFront()","url":"/ddoc/phobos/std/random/XorshiftEngine.popFront.html"},{"doc":"Captures a range state.","kind":"method","module":"std.random","name":"save","package":"phobos","parentType":"XorshiftEngine","signature":"typeof(this) save()","url":"/ddoc/phobos/std/random/XorshiftEngine.save.html"},{"doc":"Define `XorshiftEngine` generators with well-chosen parameters. See each bits examples of \"Xorshift RNGs\". `Xorshift` is a Xorshift128's alias beca...","kind":"alias","module":"std.random","name":"Xorshift32","package":"phobos","parentType":"","signature":"Xorshift32 = XorshiftEngine!(uint,  32,   13,  17,  15)","url":"/ddoc/phobos/std/random.html#Xorshift32"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift64","package":"phobos","parentType":"","signature":"Xorshift64 = XorshiftEngine!(uint,  64,   10,  13,  10)","url":"/ddoc/phobos/std/random.html#Xorshift64"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift96","package":"phobos","parentType":"","signature":"Xorshift96 = XorshiftEngine!(uint,  96,   10,  5,   26)","url":"/ddoc/phobos/std/random.html#Xorshift96"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift128","package":"phobos","parentType":"","signature":"Xorshift128 = XorshiftEngine!(uint,  128,  11,  8,   19)","url":"/ddoc/phobos/std/random.html#Xorshift128"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift160","package":"phobos","parentType":"","signature":"Xorshift160 = XorshiftEngine!(uint,  160,  2,   1,   4)","url":"/ddoc/phobos/std/random.html#Xorshift160"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift192","package":"phobos","parentType":"","signature":"Xorshift192 = XorshiftEngine!(uint,  192,  2,   1,   4)","url":"/ddoc/phobos/std/random.html#Xorshift192"},{"doc":"ditto","kind":"alias","module":"std.random","name":"Xorshift","package":"phobos","parentType":"","signature":"Xorshift = Xorshift128","url":"/ddoc/phobos/std/random.html#Xorshift"},{"doc":"The \"default\", \"favorite\", \"suggested\" random number generator type on the current platform. It is an alias for one of the previously-defined gener...","kind":"alias","module":"std.random","name":"Random","package":"phobos","parentType":"","signature":"Random = Mt19937","url":"/ddoc/phobos/std/random.html#Random"},{"doc":"","kind":"struct","module":"std.random","name":"RandomCoverChoices","package":"phobos","parentType":"","signature":"RandomCoverChoices","url":"/ddoc/phobos/std/random.html#RandomCoverChoices"},{"doc":"","kind":"method","module":"std.random","name":"opAssign","package":"phobos","parentType":"RandomCoverChoices","signature":"void opAssign(T)(T)","url":"/ddoc/phobos/std/random/RandomCoverChoices.opAssign.html"},{"doc":"","kind":"method","module":"std.random","name":"length","package":"phobos","parentType":"RandomCoverChoices","signature":"size_t length()","url":"/ddoc/phobos/std/random/RandomCoverChoices.length.html"},{"doc":"","kind":"method","module":"std.random","name":"opIndex","package":"phobos","parentType":"RandomCoverChoices","signature":"bool opIndex(size_t index)","url":"/ddoc/phobos/std/random/RandomCoverChoices.opIndex.html"},{"doc":"","kind":"method","module":"std.random","name":"opIndexAssign","package":"phobos","parentType":"RandomCoverChoices","signature":"void opIndexAssign(bool  value,  size_t index)","url":"/ddoc/phobos/std/random/RandomCoverChoices.opIndexAssign.html"},{"doc":"Covers a given range `r` in a random manner, i.e. goes through each element of `r` once and only once, just in a random order. `r` must be a random...","kind":"struct","module":"std.random","name":"RandomCover","package":"phobos","parentType":"","signature":"RandomCover(Range,  UniformRNG =  void) if (isRandomAccessRange!Range && (isUniformRNG!UniformRNG ||  is(UniformRNG ==  void)))","url":"/ddoc/phobos/std/random.html#RandomCover"},{"doc":"","kind":"method","module":"std.random","name":"front","package":"phobos","parentType":"RandomCover","signature":"@property auto ref front()","url":"/ddoc/phobos/std/random/RandomCover.front.html"},{"doc":"","kind":"method","module":"std.random","name":"popFront","package":"phobos","parentType":"RandomCover","signature":"void popFront()","url":"/ddoc/phobos/std/random/RandomCover.popFront.html"},{"doc":"","kind":"method","module":"std.random","name":"empty","package":"phobos","parentType":"RandomCover","signature":"bool empty()","url":"/ddoc/phobos/std/random/RandomCover.empty.html"},{"doc":"Selects a random subsample out of `r`, containing exactly `n` elements. The order of elements is the same as in the original range. The total lengt...","kind":"struct","module":"std.random","name":"RandomSample","package":"phobos","parentType":"","signature":"RandomSample(Range,  UniformRNG =  void) if (isInputRange!Range && (isUniformRNG!UniformRNG ||  is(UniformRNG ==  void)))","url":"/ddoc/phobos/std/random.html#RandomSample"},{"doc":"","kind":"method","module":"std.random","name":"initialize","package":"phobos","parentType":"RandomSample","signature":"void initialize(size_t howMany,  size_t total)","url":"/ddoc/phobos/std/random/RandomSample.initialize.html"},{"doc":"","kind":"method","module":"std.random","name":"initializeFront","package":"phobos","parentType":"RandomSample","signature":"void initializeFront()","url":"/ddoc/phobos/std/random/RandomSample.initializeFront.html"},{"doc":"Range primitives.","kind":"method","module":"std.random","name":"empty","package":"phobos","parentType":"RandomSample","signature":"bool empty()","url":"/ddoc/phobos/std/random/RandomSample.empty.html"},{"doc":"Ditto","kind":"method","module":"std.random","name":"front","package":"phobos","parentType":"RandomSample","signature":"@property auto ref front()","url":"/ddoc/phobos/std/random/RandomSample.front.html"},{"doc":"Ditto","kind":"method","module":"std.random","name":"popFront","package":"phobos","parentType":"RandomSample","signature":"void popFront()","url":"/ddoc/phobos/std/random/RandomSample.popFront.html"},{"doc":"Ditto","kind":"method","module":"std.random","name":"length","package":"phobos","parentType":"RandomSample","signature":"size_t length()","url":"/ddoc/phobos/std/random/RandomSample.length.html"},{"doc":"Returns the index of the visited record.","kind":"method","module":"std.random","name":"index","package":"phobos","parentType":"RandomSample","signature":"size_t index()","url":"/ddoc/phobos/std/random/RandomSample.index.html"},{"doc":"","kind":"method","module":"std.random","name":"skip","package":"phobos","parentType":"RandomSample","signature":"size_t skip()","url":"/ddoc/phobos/std/random/RandomSample.skip.html"},{"doc":"","kind":"method","module":"std.random","name":"skipA","package":"phobos","parentType":"RandomSample","signature":"size_t skipA()","url":"/ddoc/phobos/std/random/RandomSample.skipA.html"},{"doc":"","kind":"method","module":"std.random","name":"newVprime","package":"phobos","parentType":"RandomSample","signature":"double newVprime(size_t remaining)","url":"/ddoc/phobos/std/random/RandomSample.newVprime.html"},{"doc":"","kind":"method","module":"std.random","name":"skipD","package":"phobos","parentType":"RandomSample","signature":"size_t skipD()","url":"/ddoc/phobos/std/random/RandomSample.skipD.html"},{"doc":"","kind":"method","module":"std.random","name":"prime","package":"phobos","parentType":"RandomSample","signature":"void prime()","url":"/ddoc/phobos/std/random/RandomSample.prime.html"},{"doc":"ditto","kind":"template","module":"std.random","name":"XorshiftEngine","package":"phobos","parentType":"","signature":"XorshiftEngine(UIntType,  int  bits,  int  a,  int  b,  int  c)","url":"/ddoc/phobos/std/random.html#XorshiftEngine"},{"doc":"ditto","kind":"template","module":"std.random","name":"unpredictableSeed","package":"phobos","parentType":"","signature":"unpredictableSeed(UIntType)","url":"/ddoc/phobos/std/random.html#unpredictableSeed"},{"doc":"This module is a submodule of $(MREF std, range).","kind":"module","module":"std.range.interfaces","name":"std.range.interfaces","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/range/interfaces.html"},{"doc":"","kind":"function","module":"std.range.interfaces","name":"putMethods","package":"phobos","parentType":"","signature":"string putMethods(E...)()","url":"/ddoc/phobos/std/range/interfaces/putMethods.html"},{"doc":"Convenience function for creating an `InputRangeObject` of the proper type. See $(LREF InputRange) for an example.","kind":"function","module":"std.range.interfaces","name":"inputRangeObject","package":"phobos","parentType":"","signature":"InputRangeObject!R inputRangeObject(R)(R range) if (isInputRange!R)","url":"/ddoc/phobos/std/range/interfaces/inputRangeObject.html"},{"doc":"These interfaces are intended to provide virtual function-based wrappers around input ranges with element type E.  This is useful where a well-defi...","kind":"interface","module":"std.range.interfaces","name":"InputRange","package":"phobos","parentType":"","signature":"InputRange(E)","url":"/ddoc/phobos/std/range/interfaces.html#InputRange"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"front","package":"phobos","parentType":"InputRange","signature":"E front()","url":"/ddoc/phobos/std/range/interfaces/InputRange.front.html"},{"doc":"Calls $(REF moveFront, std, range, primitives) on the wrapped range, if possible. Otherwise, throws an $(LREF UnsupportedRangeMethod) exception.","kind":"method","module":"std.range.interfaces","name":"moveFront","package":"phobos","parentType":"InputRange","signature":"E moveFront()","url":"/ddoc/phobos/std/range/interfaces/InputRange.moveFront.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"popFront","package":"phobos","parentType":"InputRange","signature":"void popFront()","url":"/ddoc/phobos/std/range/interfaces/InputRange.popFront.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"empty","package":"phobos","parentType":"InputRange","signature":"bool empty()","url":"/ddoc/phobos/std/range/interfaces/InputRange.empty.html"},{"doc":"`foreach` iteration uses opApply, since one delegate call per loop iteration is faster than three virtual function calls.","kind":"method","module":"std.range.interfaces","name":"opApply","package":"phobos","parentType":"InputRange","signature":"int opApply(scope  int  delegate(E))","url":"/ddoc/phobos/std/range/interfaces/InputRange.opApply.html"},{"doc":"Ditto","kind":"method","module":"std.range.interfaces","name":"opApply","package":"phobos","parentType":"InputRange","signature":"int opApply(scope  int  delegate(size_t,  E))","url":"/ddoc/phobos/std/range/interfaces/InputRange.opApply.html"},{"doc":"Interface for a forward range of type `E`.","kind":"interface","module":"std.range.interfaces","name":"ForwardRange","package":"phobos","parentType":"","signature":"ForwardRange(E) : InputRange!E","url":"/ddoc/phobos/std/range/interfaces.html#ForwardRange"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"ForwardRange","signature":"ForwardRange!E save()","url":"/ddoc/phobos/std/range/interfaces/ForwardRange.save.html"},{"doc":"Interface for a bidirectional range of type `E`.","kind":"interface","module":"std.range.interfaces","name":"BidirectionalRange","package":"phobos","parentType":"","signature":"BidirectionalRange(E) : ForwardRange!(E)","url":"/ddoc/phobos/std/range/interfaces.html#BidirectionalRange"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"BidirectionalRange","signature":"BidirectionalRange!E save()","url":"/ddoc/phobos/std/range/interfaces/BidirectionalRange.save.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"back","package":"phobos","parentType":"BidirectionalRange","signature":"E back()","url":"/ddoc/phobos/std/range/interfaces/BidirectionalRange.back.html"},{"doc":"Calls $(REF moveBack, std, range, primitives) on the wrapped range, if possible. Otherwise, throws an $(LREF UnsupportedRangeMethod) exception","kind":"method","module":"std.range.interfaces","name":"moveBack","package":"phobos","parentType":"BidirectionalRange","signature":"E moveBack()","url":"/ddoc/phobos/std/range/interfaces/BidirectionalRange.moveBack.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"popBack","package":"phobos","parentType":"BidirectionalRange","signature":"void popBack()","url":"/ddoc/phobos/std/range/interfaces/BidirectionalRange.popBack.html"},{"doc":"Interface for a finite random access range of type `E`.","kind":"interface","module":"std.range.interfaces","name":"RandomAccessFinite","package":"phobos","parentType":"","signature":"RandomAccessFinite(E) : BidirectionalRange!(E)","url":"/ddoc/phobos/std/range/interfaces.html#RandomAccessFinite"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"RandomAccessFinite","signature":"RandomAccessFinite!E save()","url":"/ddoc/phobos/std/range/interfaces/RandomAccessFinite.save.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"opIndex","package":"phobos","parentType":"RandomAccessFinite","signature":"E opIndex(size_t)","url":"/ddoc/phobos/std/range/interfaces/RandomAccessFinite.opIndex.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"moveAt","package":"phobos","parentType":"RandomAccessFinite","signature":"E moveAt(size_t)","url":"/ddoc/phobos/std/range/interfaces/RandomAccessFinite.moveAt.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"length","package":"phobos","parentType":"RandomAccessFinite","signature":"size_t length()","url":"/ddoc/phobos/std/range/interfaces/RandomAccessFinite.length.html"},{"doc":"Interface for an infinite random access range of type `E`.","kind":"interface","module":"std.range.interfaces","name":"RandomAccessInfinite","package":"phobos","parentType":"","signature":"RandomAccessInfinite(E) : ForwardRange!E","url":"/ddoc/phobos/std/range/interfaces.html#RandomAccessInfinite"},{"doc":"Calls $(REF moveAt, std, range, primitives) on the wrapped range, if possible. Otherwise, throws an $(LREF UnsupportedRangeMethod) exception.","kind":"method","module":"std.range.interfaces","name":"moveAt","package":"phobos","parentType":"RandomAccessInfinite","signature":"E moveAt(size_t)","url":"/ddoc/phobos/std/range/interfaces/RandomAccessInfinite.moveAt.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"RandomAccessInfinite","signature":"RandomAccessInfinite!E save()","url":"/ddoc/phobos/std/range/interfaces/RandomAccessInfinite.save.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"opIndex","package":"phobos","parentType":"RandomAccessInfinite","signature":"E opIndex(size_t)","url":"/ddoc/phobos/std/range/interfaces/RandomAccessInfinite.opIndex.html"},{"doc":"Adds assignable elements to InputRange.","kind":"interface","module":"std.range.interfaces","name":"InputAssignable","package":"phobos","parentType":"","signature":"InputAssignable(E) : InputRange!E","url":"/ddoc/phobos/std/range/interfaces.html#InputAssignable"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"front","package":"phobos","parentType":"InputAssignable","signature":"void front(E newVal)","url":"/ddoc/phobos/std/range/interfaces/InputAssignable.front.html"},{"doc":"Adds assignable elements to ForwardRange.","kind":"interface","module":"std.range.interfaces","name":"ForwardAssignable","package":"phobos","parentType":"","signature":"ForwardAssignable(E) : InputAssignable!E,   ForwardRange!E","url":"/ddoc/phobos/std/range/interfaces.html#ForwardAssignable"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"ForwardAssignable","signature":"ForwardAssignable!E save()","url":"/ddoc/phobos/std/range/interfaces/ForwardAssignable.save.html"},{"doc":"Adds assignable elements to BidirectionalRange.","kind":"interface","module":"std.range.interfaces","name":"BidirectionalAssignable","package":"phobos","parentType":"","signature":"BidirectionalAssignable(E) : ForwardAssignable!E,   BidirectionalRange!E","url":"/ddoc/phobos/std/range/interfaces.html#BidirectionalAssignable"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"BidirectionalAssignable","signature":"BidirectionalAssignable!E save()","url":"/ddoc/phobos/std/range/interfaces/BidirectionalAssignable.save.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"back","package":"phobos","parentType":"BidirectionalAssignable","signature":"void back(E newVal)","url":"/ddoc/phobos/std/range/interfaces/BidirectionalAssignable.back.html"},{"doc":"Adds assignable elements to RandomAccessFinite.","kind":"interface","module":"std.range.interfaces","name":"RandomFiniteAssignable","package":"phobos","parentType":"","signature":"RandomFiniteAssignable(E) : RandomAccessFinite!E,   BidirectionalAssignable!E","url":"/ddoc/phobos/std/range/interfaces.html#RandomFiniteAssignable"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"save","package":"phobos","parentType":"RandomFiniteAssignable","signature":"RandomFiniteAssignable!E save()","url":"/ddoc/phobos/std/range/interfaces/RandomFiniteAssignable.save.html"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"opIndexAssign","package":"phobos","parentType":"RandomFiniteAssignable","signature":"void opIndexAssign(E val,  size_t index)","url":"/ddoc/phobos/std/range/interfaces/RandomFiniteAssignable.opIndexAssign.html"},{"doc":"Interface for an output range of type `E`.  Usage is similar to the `InputRange` interface and descendants.","kind":"interface","module":"std.range.interfaces","name":"OutputRange","package":"phobos","parentType":"","signature":"OutputRange(E)","url":"/ddoc/phobos/std/range/interfaces.html#OutputRange"},{"doc":"","kind":"method","module":"std.range.interfaces","name":"put","package":"phobos","parentType":"OutputRange","signature":"void put(E)","url":"/ddoc/phobos/std/range/interfaces/OutputRange.put.html"},{"doc":"Implements the `OutputRange` interface for all types E and wraps the `put` method for each type `E` in a virtual function.","kind":"class","module":"std.range.interfaces","name":"OutputRangeObject","package":"phobos","parentType":"","signature":"OutputRangeObject(R,  E...) : staticMap!(OutputRange,   E)","url":"/ddoc/phobos/std/range/interfaces.html#OutputRangeObject"},{"doc":"Thrown when an interface method is not supported by the wrapped range","kind":"class","module":"std.range.interfaces","name":"UnsupportedRangeMethod","package":"phobos","parentType":"","signature":"UnsupportedRangeMethod : Exception","url":"/ddoc/phobos/std/range/interfaces.html#UnsupportedRangeMethod"},{"doc":"Returns the interface type that best matches `R`.","kind":"template","module":"std.range.interfaces","name":"MostDerivedInputRange","package":"phobos","parentType":"","signature":"MostDerivedInputRange(R)","url":"/ddoc/phobos/std/range/interfaces.html#MostDerivedInputRange"},{"doc":"Implements the most derived interface that `R` works with and wraps all relevant range primitives in virtual functions.  If `R` is already derived ...","kind":"template","module":"std.range.interfaces","name":"InputRangeObject","package":"phobos","parentType":"","signature":"InputRangeObject(R)","url":"/ddoc/phobos/std/range/interfaces.html#InputRangeObject"},{"doc":"Convenience function for creating an `OutputRangeObject` with a base range of type `R` that accepts types `E`.","kind":"template","module":"std.range.interfaces","name":"outputRangeObject","package":"phobos","parentType":"","signature":"outputRangeObject(E...)","url":"/ddoc/phobos/std/range/interfaces.html#outputRangeObject"},{"doc":"","kind":"function","module":"std.range.interfaces","name":"outputRangeObject","package":"phobos","parentType":"","signature":"OutputRangeObject!(R,  E) outputRangeObject(R)(R range)","url":"/ddoc/phobos/std/range/interfaces.html#outputRangeObject"},{"doc":"This module defines the notion of a range. Ranges generalize the concept of arrays, lists, or anything that involves sequential access. This abstra...","kind":"module","module":"std.range","name":"std.range","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/range.html"},{"doc":"Iterates a bidirectional range backwards. The original range can be accessed by using the `source` property. Applying retro twice to the same range...","kind":"function","module":"std.range","name":"retro","package":"phobos","parentType":"","signature":"auto retro(Range)(Range r) if (isBidirectionalRange!(Unqual!Range))","url":"/ddoc/phobos/std/range/retro.html"},{"doc":"Iterates range `r` with stride `n`. If the range is a random-access range, moves by indexing into the range; otherwise, moves by successive calls t...","kind":"function","module":"std.range","name":"stride","package":"phobos","parentType":"","signature":"auto stride(Range)(Range r,  size_t n) if (isInputRange!(Unqual!Range))","url":"/ddoc/phobos/std/range/stride.html"},{"doc":"Spans multiple ranges in sequence. The function `chain` takes any number of ranges and returns a $(D Chain!(R1, R2,...)) object. The ranges may be ...","kind":"function","module":"std.range","name":"chain","package":"phobos","parentType":"","signature":"auto chain(Ranges...)(Ranges rs) if (Ranges.length >  0 &&\n     allSatisfy!(isInputRange,  staticMap!(Unqual,  Ranges))  &&\n    !is(CommonType!(staticMap!(ElementType,  staticMap!(Unqual,  Ranges)))  ==  void))","url":"/ddoc/phobos/std/range/chain.html"},{"doc":"Choose one of two ranges at runtime depending on a Boolean condition.","kind":"function","module":"std.range","name":"choose","package":"phobos","parentType":"","signature":"auto choose(R1,  R2)(bool  condition,  return  scope  R1 r1,  return  scope  R2 r2) if (isInputRange!(Unqual!R1)  &&  isInputRange!(Unqual!R2)  &&\n    !is(CommonType!(ElementType!(Unqual!R1),  ElementType!(Unqual!R2))  ==  void))","url":"/ddoc/phobos/std/range/choose.html"},{"doc":"Choose one of multiple ranges at runtime.","kind":"function","module":"std.range","name":"chooseAmong","package":"phobos","parentType":"","signature":"auto chooseAmong(Ranges...)(size_t index,  return  scope  Ranges rs) if (Ranges.length >=  2\n        &&  allSatisfy!(isInputRange,  staticMap!(Unqual,  Ranges))\n         && !is(CommonType!(staticMap!(ElementType,  Ranges))  ==  void))","url":"/ddoc/phobos/std/range/chooseAmong.html"},{"doc":"$(D roundRobin(r1, r2, r3)) yields `r1.front`, then `r2.front`, then `r3.front`, after which it pops off one element from each and continues again ...","kind":"function","module":"std.range","name":"roundRobin","package":"phobos","parentType":"","signature":"auto roundRobin(Rs...)(Rs rs) if (Rs.length >  1 &&  allSatisfy!(isInputRange,  staticMap!(Unqual,  Rs)))","url":"/ddoc/phobos/std/range/roundRobin.html"},{"doc":"Iterates a random-access range starting from a given point and progressively extending left and right from that point. If no initial point is given...","kind":"function","module":"std.range","name":"radial","package":"phobos","parentType":"","signature":"auto radial(Range,  I)(Range r,  I startingIndex) if (isRandomAccessRange!(Unqual!Range)  &&  hasLength!(Unqual!Range)  &&  hasSlicing!(Unqual!Range)  &&  isIntegral!I)","url":"/ddoc/phobos/std/range/radial.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"radial","package":"phobos","parentType":"","signature":"auto radial(R)(R r) if (isRandomAccessRange!(Unqual!R)  &&  hasLength!(Unqual!R)  &&  hasSlicing!(Unqual!R))","url":"/ddoc/phobos/std/range/radial.html"},{"doc":"Lazily takes only up to `n` elements of a range. This is particularly useful when using with infinite ranges.","kind":"function","module":"std.range","name":"take","package":"phobos","parentType":"","signature":"Take!R take(R)(R input,  size_t n) if (isInputRange!(Unqual!R))","url":"/ddoc/phobos/std/range/take.html"},{"doc":"Similar to $(LREF take), but assumes that `range` has at least $(D n) elements. Consequently, the result of $(D takeExactly(range, n)) always defin...","kind":"function","module":"std.range","name":"takeExactly","package":"phobos","parentType":"","signature":"auto takeExactly(R)(R range,  size_t n) if (isInputRange!R)","url":"/ddoc/phobos/std/range/takeExactly.html"},{"doc":"Returns a range with at most one element; for example, $(D takeOne([42, 43, 44])) returns a range consisting of the integer $(D 42). Calling `popFr...","kind":"function","module":"std.range","name":"takeOne","package":"phobos","parentType":"","signature":"auto takeOne(R)(R source) if (isInputRange!R)","url":"/ddoc/phobos/std/range/takeOne.html"},{"doc":"Returns an empty range which is statically known to be empty and is guaranteed to have `length` and be random access regardless of `R`'s capabilities.","kind":"function","module":"std.range","name":"takeNone","package":"phobos","parentType":"","signature":"auto takeNone(R)() if (isInputRange!R)","url":"/ddoc/phobos/std/range/takeNone.html"},{"doc":"Creates an empty range from the given range in $(BIGOH 1). If it can, it will return the same range type. If not, it will return $(D takeExactly(ra...","kind":"function","module":"std.range","name":"takeNone","package":"phobos","parentType":"","signature":"auto takeNone(R)(R range) if (isInputRange!R)","url":"/ddoc/phobos/std/range/takeNone.html"},{"doc":"Return a range advanced to within `_n` elements of the end of `range`.","kind":"function","module":"std.range","name":"tail","package":"phobos","parentType":"","signature":"auto tail(Range)(Range range,  size_t n) if (isInputRange!Range && !isInfinite!Range &&\n    (hasLength!Range ||  isForwardRange!Range))","url":"/ddoc/phobos/std/range/tail.html"},{"doc":"`drop` is a convenience function which calls $(REF popFrontN, std, range, primitives)`(range, n)` and returns `range`. Unlike `popFrontN`, the rang...","kind":"function","module":"std.range","name":"drop","package":"phobos","parentType":"","signature":"R drop(R)(R range,  size_t n) if (isInputRange!R)","url":"/ddoc/phobos/std/range/drop.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"dropBack","package":"phobos","parentType":"","signature":"R dropBack(R)(R range,  size_t n) if (isBidirectionalRange!R)","url":"/ddoc/phobos/std/range/dropBack.html"},{"doc":"Similar to $(LREF drop) and `dropBack` but they call $(D range.$(LREF popFrontExactly)(n)) and `range.popBackExactly(n)` instead.","kind":"function","module":"std.range","name":"dropExactly","package":"phobos","parentType":"","signature":"R dropExactly(R)(R range,  size_t n) if (isInputRange!R)","url":"/ddoc/phobos/std/range/dropExactly.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"dropBackExactly","package":"phobos","parentType":"","signature":"R dropBackExactly(R)(R range,  size_t n) if (isBidirectionalRange!R)","url":"/ddoc/phobos/std/range/dropBackExactly.html"},{"doc":"`dropOne` is a convenience function which calls `range.popFront()` and returns `range`. Unlike `popFront`, the range argument is passed by copy, no...","kind":"function","module":"std.range","name":"dropOne","package":"phobos","parentType":"","signature":"R dropOne(R)(R range) if (isInputRange!R)","url":"/ddoc/phobos/std/range/dropOne.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"dropBackOne","package":"phobos","parentType":"","signature":"R dropBackOne(R)(R range) if (isBidirectionalRange!R)","url":"/ddoc/phobos/std/range/dropBackOne.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"repeat","package":"phobos","parentType":"","signature":"Repeat!T repeat(T)(T value)","url":"/ddoc/phobos/std/range/repeat.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"repeat","package":"phobos","parentType":"","signature":"Take!(Repeat!T) repeat(T)(T value,  size_t n)","url":"/ddoc/phobos/std/range/repeat.html"},{"doc":"Given callable ($(REF isCallable, std,traits)) `fun`, create as a range whose front is defined by successive calls to `fun()`. This is especially u...","kind":"function","module":"std.range","name":"generate","package":"phobos","parentType":"","signature":"auto generate(Fun)(Fun fun) if (isCallable!fun)","url":"/ddoc/phobos/std/range/generate.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"generate","package":"phobos","parentType":"","signature":"auto generate(alias  fun)() if (isCallable!fun)","url":"/ddoc/phobos/std/range/generate.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"cycle","package":"phobos","parentType":"","signature":"auto cycle(R)(R input) if (isInputRange!R)","url":"/ddoc/phobos/std/range/cycle.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"cycle","package":"phobos","parentType":"","signature":"Cycle!R cycle(R)(R input,  size_t index =  0) if (isRandomAccessRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/range/cycle.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"cycle","package":"phobos","parentType":"","signature":"Cycle!R cycle(R)(ref  R input,  size_t index =  0) if (isStaticArray!R)","url":"/ddoc/phobos/std/range/cycle.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"zip","package":"phobos","parentType":"","signature":"auto zip(Ranges...)(Ranges ranges) if (Ranges.length &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range/zip.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"zip","package":"phobos","parentType":"","signature":"auto zip(Ranges...)(StoppingPolicy sp,  Ranges ranges) if (Ranges.length &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range/zip.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"lockstep","package":"phobos","parentType":"","signature":"Lockstep!(Ranges) lockstep(Ranges...)(Ranges ranges) if (allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range/lockstep.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"lockstep","package":"phobos","parentType":"","signature":"Lockstep!(Ranges) lockstep(Ranges...)(Ranges ranges,  StoppingPolicy s) if (allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range/lockstep.html"},{"doc":"","kind":"function","module":"std.range","name":"lockstepReverseFailMixin","package":"phobos","parentType":"","signature":"string lockstepReverseFailMixin(Ranges...)(bool  withIndex)","url":"/ddoc/phobos/std/range/lockstepReverseFailMixin.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"recurrence","package":"phobos","parentType":"","signature":"Recurrence!(fun,  CommonType!(State),  State.length) recurrence(alias  fun,  State...)(State initial)","url":"/ddoc/phobos/std/range/recurrence.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"sequence","package":"phobos","parentType":"","signature":"auto sequence(alias  fun,  State...)(State args)","url":"/ddoc/phobos/std/range/sequence.html"},{"doc":"Creates a range of values that span the given starting and stopping values.","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(B,  E,  S)(B begin,  E end,  S step) if ((isIntegral!(CommonType!(B,  E))  ||  isPointer!(CommonType!(B,  E)))\n         &&  isIntegral!S)","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(B,  E)(B begin,  E end) if (isFloatingPoint!(CommonType!(B,  E)))","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(B,  E)(B begin,  E end) if (isIntegral!(CommonType!(B,  E))  ||  isPointer!(CommonType!(B,  E)))","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(E)(E end) if (is(typeof(iota(E(0),  end))))","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(B,  E,  S)(B begin,  E end,  S step) if (isFloatingPoint!(CommonType!(B,  E,  S)))","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"iota","package":"phobos","parentType":"","signature":"auto iota(B,  E)(B begin,  E end) if (!isIntegral!(CommonType!(B,  E))  &&\n    !isFloatingPoint!(CommonType!(B,  E))  &&\n    !isPointer!(CommonType!(B,  E))  &&\n     is(typeof((ref  B b)  {  ++ b;  }))  &&\n    (is(typeof(B.init <  E.init))  ||  is(typeof(B.init ==  E.init))) )","url":"/ddoc/phobos/std/range/iota.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"frontTransversal","package":"phobos","parentType":"","signature":"FrontTransversal!(RangeOfRanges,  opt) frontTransversal(\n     TransverseOptions opt =  TransverseOptions.assumeJagged,\n     RangeOfRanges)(RangeOfRanges rr)","url":"/ddoc/phobos/std/range/frontTransversal.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"transversal","package":"phobos","parentType":"","signature":"Transversal!(RangeOfRanges,  opt) transversal(TransverseOptions opt =  TransverseOptions.assumeJagged,  RangeOfRanges)(RangeOfRanges rr,  size_t n)","url":"/ddoc/phobos/std/range/transversal.html"},{"doc":"Given a range of ranges, returns a range of ranges where the $(I i)'th subrange contains the $(I i)'th elements of the original subranges.","kind":"function","module":"std.range","name":"transposed","package":"phobos","parentType":"","signature":"Transposed!(RangeOfRanges,  opt) transposed(TransverseOptions opt =  TransverseOptions.assumeJagged,  RangeOfRanges)(RangeOfRanges rr) if (isForwardRange!RangeOfRanges &&\n     isInputRange!(ElementType!RangeOfRanges)  &&\n     hasAssignableElements!RangeOfRanges)","url":"/ddoc/phobos/std/range/transposed.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"indexed","package":"phobos","parentType":"","signature":"Indexed!(Source,  Indices) indexed(Source,  Indices)(Source source,  Indices indices)","url":"/ddoc/phobos/std/range/indexed.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"chunks","package":"phobos","parentType":"","signature":"Chunks!Source chunks(Source)(Source source,  size_t chunkSize) if (isInputRange!Source)","url":"/ddoc/phobos/std/range/chunks.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"evenChunks","package":"phobos","parentType":"","signature":"EvenChunks!Source evenChunks(Source)(Source source,  size_t chunkCount) if (isForwardRange!Source &&  hasLength!Source)","url":"/ddoc/phobos/std/range/evenChunks.html"},{"doc":"A fixed-sized sliding window iteration of size `windowSize` over a `source` range by a custom `stepSize`.","kind":"function","module":"std.range","name":"slide","package":"phobos","parentType":"","signature":"auto slide(Flag!\"withPartial\" f =  Yes.withPartial,\n             Source)(Source source,  size_t windowSize,  size_t stepSize =  1) if (isForwardRange!Source)","url":"/ddoc/phobos/std/range/slide.html"},{"doc":"Assemble `values` into a range that carries all its elements in-situ.","kind":"function","module":"std.range","name":"only","package":"phobos","parentType":"","signature":"auto only(Values...)(return  scope  Values values) if (!is(CommonType!Values ==  void))","url":"/ddoc/phobos/std/range/only.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"only","package":"phobos","parentType":"","signature":"auto only()()","url":"/ddoc/phobos/std/range/only.html"},{"doc":"Iterate over `range` with an attached index variable.","kind":"function","module":"std.range","name":"enumerate","package":"phobos","parentType":"","signature":"auto enumerate(Enumerator =  size_t,  Range)(Range range,  Enumerator start =  0) if (isIntegral!Enumerator &&  isInputRange!Range)","url":"/ddoc/phobos/std/range/enumerate.html"},{"doc":"Assumes `r` is sorted by predicate `pred` and returns the corresponding $(D SortedRange!(pred, R)) having `r` as support. To check for sorted-ness ...","kind":"function","module":"std.range","name":"assumeSorted","package":"phobos","parentType":"","signature":"auto assumeSorted(alias  pred =  \"a < b\",  R)(R r) if (isInputRange!(Unqual!R))","url":"/ddoc/phobos/std/range/assumeSorted.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"refRange","package":"phobos","parentType":"","signature":"auto refRange(R)(R *  range) if (isInputRange!R)","url":"/ddoc/phobos/std/range/refRange.html"},{"doc":"Bitwise adapter over an integral type range. Consumes the range elements bit by bit, from the least significant bit to the most significant bit.","kind":"function","module":"std.range","name":"bitwise","package":"phobos","parentType":"","signature":"auto bitwise(R)(auto  ref  R range) if (isInputRange!R &&  isIntegral!(ElementType!R))","url":"/ddoc/phobos/std/range/bitwise.html"},{"doc":"ditto","kind":"function","module":"std.range","name":"nullSink","package":"phobos","parentType":"","signature":"auto ref nullSink()","url":"/ddoc/phobos/std/range/nullSink.html"},{"doc":"Implements a \"tee\" style pipe, wrapping an input range so that elements of the range can be passed to a provided function or $(LREF OutputRange) as...","kind":"function","module":"std.range","name":"tee","package":"phobos","parentType":"","signature":"auto tee(Flag!\"pipeOnPop\" pipeOnPop =  Yes.pipeOnPop,  R1,  R2)(R1 inputRange,  R2 outputRange) if (isInputRange!R1 &&  isOutputRange!(R2,  ElementType!R1))","url":"/ddoc/phobos/std/range/tee.html"},{"doc":"Ditto","kind":"function","module":"std.range","name":"tee","package":"phobos","parentType":"","signature":"auto tee(alias  fun,  Flag!\"pipeOnPop\" pipeOnPop =  Yes.pipeOnPop,  R1)(R1 inputRange) if (is(typeof(fun)  ==  void)  ||  isSomeFunction!fun)","url":"/ddoc/phobos/std/range/tee.html"},{"doc":"Extends the length of the input range `r` by padding out the start of the range with the element `e`. The element `e` must be of a common type with...","kind":"function","module":"std.range","name":"padLeft","package":"phobos","parentType":"","signature":"auto padLeft(R,  E)(R r,  E e,  size_t n) if (\n    ((isInputRange!R &&  hasLength!R)  ||  isForwardRange!R)  &&\n    !is(CommonType!(ElementType!R,  E)  ==  void)\n)","url":"/ddoc/phobos/std/range/padLeft.html"},{"doc":"Extend the length of the input range `r` by padding out the end of the range with the element `e`. The element `e` must be of a common type with th...","kind":"function","module":"std.range","name":"padRight","package":"phobos","parentType":"","signature":"auto padRight(R,  E)(R r,  E e,  size_t n) if (\n     isInputRange!R &&\n    !isInfinite!R &&\n    !is(CommonType!(ElementType!R,  E)  ==  void))","url":"/ddoc/phobos/std/range/padRight.html"},{"doc":"","kind":"struct","module":"std.range","name":"ChooseResult","package":"phobos","parentType":"","signature":"ChooseResult(Ranges...)","url":"/ddoc/phobos/std/range.html#ChooseResult"},{"doc":"","kind":"method","module":"std.range","name":"actOnChosen","package":"phobos","parentType":"ChooseResult","signature":"static auto ref actOnChosen(alias  foo,  ExtraArgs ...)(ref  ChooseResult r,  auto  ref  ExtraArgs extraArgs)","url":"/ddoc/phobos/std/range/ChooseResult.actOnChosen.html"},{"doc":"","kind":"method","module":"std.range","name":"opAssign","package":"phobos","parentType":"ChooseResult","signature":"void opAssign(ChooseResult r)","url":"/ddoc/phobos/std/range/ChooseResult.opAssign.html"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"ChooseResult","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/ChooseResult.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"ChooseResult","signature":"void popFront()","url":"/ddoc/phobos/std/range/ChooseResult.popFront.html"},{"doc":"ditto","kind":"struct","module":"std.range","name":"Take","package":"phobos","parentType":"","signature":"Take(Range) if (isInputRange!(Unqual!Range)  &&\n    //take _cannot_ test hasSlicing on infinite ranges, because hasSlicing uses\n    //take for slicing infinite ranges.\n    !((!isInfinite!(Unqual!Range)  &&  hasSlicing!(Unqual!Range))  ||  is(Range T ==  Take!T)))","url":"/ddoc/phobos/std/range.html#Take"},{"doc":"Range primitives","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"Take","signature":"bool empty()","url":"/ddoc/phobos/std/range/Take.empty.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Take","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/Take.front.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Take","signature":"void popFront()","url":"/ddoc/phobos/std/range/Take.popFront.html"},{"doc":"Access to maximal length of the range. Note: the actual length of the range depends on the underlying range. If it has fewer elements, it will stop...","kind":"method","module":"std.range","name":"maxLength","package":"phobos","parentType":"Take","signature":"size_t maxLength()","url":"/ddoc/phobos/std/range/Take.maxLength.html"},{"doc":"Create a range which repeats one value.","kind":"struct","module":"std.range","name":"Repeat","package":"phobos","parentType":"","signature":"Repeat(T)","url":"/ddoc/phobos/std/range.html#Repeat"},{"doc":"Range primitives","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Repeat","signature":"inout(T) front()","url":"/ddoc/phobos/std/range/Repeat.front.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"back","package":"phobos","parentType":"Repeat","signature":"inout(T) back()","url":"/ddoc/phobos/std/range/Repeat.back.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Repeat","signature":"void popFront()","url":"/ddoc/phobos/std/range/Repeat.popFront.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"popBack","package":"phobos","parentType":"Repeat","signature":"void popBack()","url":"/ddoc/phobos/std/range/Repeat.popBack.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"Repeat","signature":"@property auto save()","url":"/ddoc/phobos/std/range/Repeat.save.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opIndex","package":"phobos","parentType":"Repeat","signature":"inout(T) opIndex(size_t)","url":"/ddoc/phobos/std/range/Repeat.opIndex.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Repeat","signature":"auto opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/range/Repeat.opSlice.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Repeat","signature":"auto opSlice(size_t,  DollarToken)","url":"/ddoc/phobos/std/range/Repeat.opSlice.html"},{"doc":"","kind":"struct","module":"std.range","name":"Generator","package":"phobos","parentType":"","signature":"Generator(Fun...)","url":"/ddoc/phobos/std/range.html#Generator"},{"doc":"Repeats the given forward range ad infinitum. If the original range is infinite (fact that would make `Cycle` the identity application), `Cycle` de...","kind":"struct","module":"std.range","name":"Cycle","package":"phobos","parentType":"","signature":"Cycle(R) if (isForwardRange!R && !isInfinite!R)","url":"/ddoc/phobos/std/range.html#Cycle"},{"doc":"ditto","kind":"struct","module":"std.range","name":"Cycle","package":"phobos","parentType":"","signature":"Cycle(R) if (isStaticArray!R)","url":"/ddoc/phobos/std/range.html#Cycle"},{"doc":"ditto","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Cycle","signature":"inout(ElementType) front()","url":"/ddoc/phobos/std/range/Cycle.front.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Cycle","signature":"void popFront()","url":"/ddoc/phobos/std/range/Cycle.popFront.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opIndex","package":"phobos","parentType":"Cycle","signature":"inout(ElementType) opIndex(size_t n)","url":"/ddoc/phobos/std/range/Cycle.opIndex.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"Cycle","signature":"inout(Cycle) save()","url":"/ddoc/phobos/std/range/Cycle.save.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Cycle","signature":"auto opSlice(size_t i,  size_t j)","url":"/ddoc/phobos/std/range/Cycle.opSlice.html"},{"doc":"ditto","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Cycle","signature":"inout(typeof(this)) opSlice(size_t i,  DollarToken)","url":"/ddoc/phobos/std/range/Cycle.opSlice.html"},{"doc":"","kind":"alias","module":"std.range","name":"lengthType","package":"phobos","parentType":"","signature":"lengthType(R) = typeof(R.init.length.init)","url":"/ddoc/phobos/std/range.html#lengthType"},{"doc":"Iterate several ranges in lockstep. The element type is a proxy tuple that allows accessing the current element in the `n`th range by using `e[n]`.","kind":"struct","module":"std.range","name":"Zip","package":"phobos","parentType":"","signature":"Zip(Ranges...) if (Ranges.length &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range.html#Zip"},{"doc":"","kind":"method","module":"std.range","name":"tryGetInit","package":"phobos","parentType":"Zip","signature":".ElementType!(R[i]) tryGetInit(size_t i)()","url":"/ddoc/phobos/std/range/Zip.tryGetInit.html"},{"doc":"Returns the current iterated element.","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Zip","signature":"ElementType front()","url":"/ddoc/phobos/std/range/Zip.front.html"},{"doc":"Advances to the next element in all controlled ranges.","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Zip","signature":"void popFront()","url":"/ddoc/phobos/std/range/Zip.popFront.html"},{"doc":"Dictates how iteration in a $(LREF zip) and $(LREF lockstep) should stop. By default stop at the end of the shortest of all ranges.","kind":"enum","module":"std.range","name":"StoppingPolicy","package":"phobos","parentType":"","signature":"StoppingPolicy","url":"/ddoc/phobos/std/range.html#StoppingPolicy"},{"doc":"Stop when the shortest range is exhausted","kind":"enum_member","module":"std.range","name":"shortest","package":"phobos","parentType":"","signature":"shortest = ","url":"/ddoc/phobos/std/range.html#StoppingPolicy"},{"doc":"Stop when the longest range is exhausted","kind":"enum_member","module":"std.range","name":"longest","package":"phobos","parentType":"","signature":"longest = ","url":"/ddoc/phobos/std/range.html#StoppingPolicy"},{"doc":"Require that all ranges are equal","kind":"enum_member","module":"std.range","name":"requireSameLength","package":"phobos","parentType":"","signature":"requireSameLength = ","url":"/ddoc/phobos/std/range.html#StoppingPolicy"},{"doc":"","kind":"struct","module":"std.range","name":"ZipShortest","package":"phobos","parentType":"","signature":"ZipShortest(Flag!\"allKnownSameLength\" allKnownSameLength,  Ranges...) if (Ranges.length &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range.html#ZipShortest"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"ZipShortest","signature":"ElementType front()","url":"/ddoc/phobos/std/range/ZipShortest.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"ZipShortest","signature":"void popFront()","url":"/ddoc/phobos/std/range/ZipShortest.popFront.html"},{"doc":"","kind":"struct","module":"std.range","name":"LockstepMixin","package":"phobos","parentType":"","signature":"LockstepMixin(Ranges...)","url":"/ddoc/phobos/std/range.html#LockstepMixin"},{"doc":"","kind":"method","module":"std.range","name":"getAlias","package":"phobos","parentType":"LockstepMixin","signature":"string getAlias()","url":"/ddoc/phobos/std/range/LockstepMixin.getAlias.html"},{"doc":"","kind":"method","module":"std.range","name":"getImpl","package":"phobos","parentType":"LockstepMixin","signature":"string getImpl()","url":"/ddoc/phobos/std/range/LockstepMixin.getImpl.html"},{"doc":"Iterate multiple ranges in lockstep using a `foreach` loop. In contrast to $(LREF zip) it allows reference access to its elements. If only a single...","kind":"struct","module":"std.range","name":"Lockstep","package":"phobos","parentType":"","signature":"Lockstep(Ranges...) if (Ranges.length >  1 &&  allSatisfy!(isInputRange,  Ranges))","url":"/ddoc/phobos/std/range.html#Lockstep"},{"doc":"Creates a mathematical sequence given the initial values and a recurrence function that computes the next value from the existing values. The seque...","kind":"struct","module":"std.range","name":"Recurrence","package":"phobos","parentType":"","signature":"Recurrence(alias  fun,  StateType,  size_t stateSize)","url":"/ddoc/phobos/std/range.html#Recurrence"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Recurrence","signature":"void popFront()","url":"/ddoc/phobos/std/range/Recurrence.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Recurrence","signature":"StateType front()","url":"/ddoc/phobos/std/range/Recurrence.front.html"},{"doc":"","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"Recurrence","signature":"typeof(this) save()","url":"/ddoc/phobos/std/range/Recurrence.save.html"},{"doc":"`Sequence` is similar to `Recurrence` except that iteration is presented in the so-called $(HTTP en.wikipedia.org/wiki/Closed_form, closed form). T...","kind":"struct","module":"std.range","name":"Sequence","package":"phobos","parentType":"","signature":"Sequence(alias  fun,  State)","url":"/ddoc/phobos/std/range.html#Sequence"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Sequence","signature":"ElementType front()","url":"/ddoc/phobos/std/range/Sequence.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Sequence","signature":"void popFront()","url":"/ddoc/phobos/std/range/Sequence.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Sequence","signature":"auto opSlice(size_t lower,  size_t upper)","url":"/ddoc/phobos/std/range/Sequence.opSlice.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Sequence","signature":"auto opSlice(size_t lower,  DollarToken)","url":"/ddoc/phobos/std/range/Sequence.opSlice.html"},{"doc":"","kind":"method","module":"std.range","name":"opIndex","package":"phobos","parentType":"Sequence","signature":"ElementType opIndex(size_t n)","url":"/ddoc/phobos/std/range/Sequence.opIndex.html"},{"doc":"","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"Sequence","signature":"Sequence save()","url":"/ddoc/phobos/std/range/Sequence.save.html"},{"doc":"Options for the $(LREF FrontTransversal) and $(LREF Transversal) ranges (below).","kind":"enum","module":"std.range","name":"TransverseOptions","package":"phobos","parentType":"","signature":"TransverseOptions","url":"/ddoc/phobos/std/range.html#TransverseOptions"},{"doc":"When transversed, the elements of a range of ranges are assumed to have different lengths (e.g. a jagged array).","kind":"enum_member","module":"std.range","name":"assumeJagged","package":"phobos","parentType":"","signature":"assumeJagged = ","url":"/ddoc/phobos/std/range.html#TransverseOptions"},{"doc":"The transversal enforces that the elements of a range of ranges have all the same length (e.g. an array of arrays, all having the same length). Che...","kind":"enum_member","module":"std.range","name":"enforceNotJagged","package":"phobos","parentType":"","signature":"enforceNotJagged = ","url":"/ddoc/phobos/std/range.html#TransverseOptions"},{"doc":"The transversal assumes, without verifying, that the elements of a range of ranges have all the same length. This option is useful if checking was ...","kind":"enum_member","module":"std.range","name":"assumeNotJagged","package":"phobos","parentType":"","signature":"assumeNotJagged = ","url":"/ddoc/phobos/std/range.html#TransverseOptions"},{"doc":"Given a range of ranges, iterate transversally through the first elements of each of the enclosed ranges.","kind":"struct","module":"std.range","name":"FrontTransversal","package":"phobos","parentType":"","signature":"FrontTransversal(Ror,\n         TransverseOptions opt =  TransverseOptions.assumeJagged)","url":"/ddoc/phobos/std/range.html#FrontTransversal"},{"doc":"","kind":"method","module":"std.range","name":"prime","package":"phobos","parentType":"FrontTransversal","signature":"void prime()","url":"/ddoc/phobos/std/range/FrontTransversal.prime.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"FrontTransversal","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/FrontTransversal.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"FrontTransversal","signature":"void popFront()","url":"/ddoc/phobos/std/range/FrontTransversal.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"FrontTransversal","signature":"auto opSlice()","url":"/ddoc/phobos/std/range/FrontTransversal.opSlice.html"},{"doc":"Given a range of ranges, iterate transversally through the `n`th element of each of the enclosed ranges. This function is similar to `unzip` in oth...","kind":"struct","module":"std.range","name":"Transversal","package":"phobos","parentType":"","signature":"Transversal(Ror,\n         TransverseOptions opt =  TransverseOptions.assumeJagged)","url":"/ddoc/phobos/std/range.html#Transversal"},{"doc":"","kind":"method","module":"std.range","name":"prime","package":"phobos","parentType":"Transversal","signature":"void prime()","url":"/ddoc/phobos/std/range/Transversal.prime.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Transversal","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/Transversal.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Transversal","signature":"void popFront()","url":"/ddoc/phobos/std/range/Transversal.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Transversal","signature":"auto opSlice()","url":"/ddoc/phobos/std/range/Transversal.opSlice.html"},{"doc":"","kind":"struct","module":"std.range","name":"Transposed","package":"phobos","parentType":"","signature":"Transposed(RangeOfRanges,\n     TransverseOptions opt =  TransverseOptions.assumeJagged) if (isForwardRange!RangeOfRanges &&\n     isInputRange!(ElementType!RangeOfRanges)  &&\n     hasAssignableElements!RangeOfRanges)","url":"/ddoc/phobos/std/range.html#Transposed"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Transposed","signature":"@property auto front()","url":"/ddoc/phobos/std/range/Transposed.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Transposed","signature":"void popFront()","url":"/ddoc/phobos/std/range/Transposed.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"Transposed","signature":"bool empty()","url":"/ddoc/phobos/std/range/Transposed.empty.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"Transposed","signature":"auto opSlice()","url":"/ddoc/phobos/std/range/Transposed.opSlice.html"},{"doc":"This struct takes two ranges, `source` and `indices`, and creates a view of `source` as if its elements were reordered according to `indices`. `ind...","kind":"struct","module":"std.range","name":"Indexed","package":"phobos","parentType":"","signature":"Indexed(Source,  Indices) if (isRandomAccessRange!Source &&  isInputRange!Indices &&\n     is(typeof(Source.init[ElementType!(Indices).init])))","url":"/ddoc/phobos/std/range.html#Indexed"},{"doc":"Range primitives","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Indexed","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/Indexed.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Indexed","signature":"void popFront()","url":"/ddoc/phobos/std/range/Indexed.popFront.html"},{"doc":"Returns the source range.","kind":"method","module":"std.range","name":"source","package":"phobos","parentType":"Indexed","signature":"Source source()","url":"/ddoc/phobos/std/range/Indexed.source.html"},{"doc":"Returns the indices range.","kind":"method","module":"std.range","name":"indices","package":"phobos","parentType":"Indexed","signature":"Indices indices()","url":"/ddoc/phobos/std/range/Indexed.indices.html"},{"doc":"This range iterates over fixed-sized chunks of size `chunkSize` of a `source` range. `Source` must be an $(REF_ALTTEXT input range, isInputRange, s...","kind":"struct","module":"std.range","name":"Chunks","package":"phobos","parentType":"","signature":"Chunks(Source) if (isInputRange!Source)","url":"/ddoc/phobos/std/range.html#Chunks"},{"doc":"This range splits a `source` range into `chunkCount` chunks of approximately equal length. `Source` must be a forward range with known length.","kind":"struct","module":"std.range","name":"EvenChunks","package":"phobos","parentType":"","signature":"EvenChunks(Source) if (isForwardRange!Source &&  hasLength!Source)","url":"/ddoc/phobos/std/range.html#EvenChunks"},{"doc":"Forward range primitives. Always present.","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"EvenChunks","signature":"@property auto front()","url":"/ddoc/phobos/std/range/EvenChunks.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"EvenChunks","signature":"void popFront()","url":"/ddoc/phobos/std/range/EvenChunks.popFront.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"EvenChunks","signature":"bool empty()","url":"/ddoc/phobos/std/range/EvenChunks.empty.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"EvenChunks","signature":"typeof(this) save()","url":"/ddoc/phobos/std/range/EvenChunks.save.html"},{"doc":"Length","kind":"method","module":"std.range","name":"length","package":"phobos","parentType":"EvenChunks","signature":"size_t length()","url":"/ddoc/phobos/std/range/EvenChunks.length.html"},{"doc":"","kind":"method","module":"std.range","name":"_chunkPos","package":"phobos","parentType":"EvenChunks","signature":"size_t _chunkPos(size_t i)","url":"/ddoc/phobos/std/range/EvenChunks._chunkPos.html"},{"doc":"","kind":"struct","module":"std.range","name":"Slides","package":"phobos","parentType":"","signature":"Slides(Flag!\"withPartial\" withPartial =  Yes.withPartial,  Source) if (isForwardRange!Source)","url":"/ddoc/phobos/std/range.html#Slides"},{"doc":"Forward range primitives. Always present.","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Slides","signature":"@property auto front()","url":"/ddoc/phobos/std/range/Slides.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Slides","signature":"void popFront()","url":"/ddoc/phobos/std/range/Slides.popFront.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"Slides","signature":"typeof(this) save()","url":"/ddoc/phobos/std/range/Slides.save.html"},{"doc":"","kind":"struct","module":"std.range","name":"OnlyResult","package":"phobos","parentType":"","signature":"OnlyResult(Values...) if (Values.length >  1)","url":"/ddoc/phobos/std/range.html#OnlyResult"},{"doc":"","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"OnlyResult","signature":"bool empty()","url":"/ddoc/phobos/std/range/OnlyResult.empty.html"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"OnlyResult","signature":"CommonType!Values front()","url":"/ddoc/phobos/std/range/OnlyResult.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"OnlyResult","signature":"void popFront()","url":"/ddoc/phobos/std/range/OnlyResult.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"back","package":"phobos","parentType":"OnlyResult","signature":"CommonType!Values back()","url":"/ddoc/phobos/std/range/OnlyResult.back.html"},{"doc":"","kind":"method","module":"std.range","name":"popBack","package":"phobos","parentType":"OnlyResult","signature":"void popBack()","url":"/ddoc/phobos/std/range/OnlyResult.popBack.html"},{"doc":"","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"OnlyResult","signature":"OnlyResult save()","url":"/ddoc/phobos/std/range/OnlyResult.save.html"},{"doc":"","kind":"method","module":"std.range","name":"length","package":"phobos","parentType":"OnlyResult","signature":"size_t length()","url":"/ddoc/phobos/std/range/OnlyResult.length.html"},{"doc":"","kind":"method","module":"std.range","name":"opIndex","package":"phobos","parentType":"OnlyResult","signature":"CommonType!Values opIndex(size_t idx)","url":"/ddoc/phobos/std/range/OnlyResult.opIndex.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"OnlyResult","signature":"OnlyResult opSlice()","url":"/ddoc/phobos/std/range/OnlyResult.opSlice.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"OnlyResult","signature":"OnlyResult opSlice(size_t from,  size_t to)","url":"/ddoc/phobos/std/range/OnlyResult.opSlice.html"},{"doc":"","kind":"struct","module":"std.range","name":"OnlyResult","package":"phobos","parentType":"","signature":"OnlyResult(T)","url":"/ddoc/phobos/std/range.html#OnlyResult"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"OnlyResult","signature":"T front()","url":"/ddoc/phobos/std/range/OnlyResult.front.html"},{"doc":"","kind":"method","module":"std.range","name":"back","package":"phobos","parentType":"OnlyResult","signature":"T back()","url":"/ddoc/phobos/std/range/OnlyResult.back.html"},{"doc":"","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"OnlyResult","signature":"bool empty()","url":"/ddoc/phobos/std/range/OnlyResult.empty.html"},{"doc":"","kind":"method","module":"std.range","name":"length","package":"phobos","parentType":"OnlyResult","signature":"size_t length()","url":"/ddoc/phobos/std/range/OnlyResult.length.html"},{"doc":"","kind":"method","module":"std.range","name":"save","package":"phobos","parentType":"OnlyResult","signature":"@property auto save()","url":"/ddoc/phobos/std/range/OnlyResult.save.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"OnlyResult","signature":"void popFront()","url":"/ddoc/phobos/std/range/OnlyResult.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"popBack","package":"phobos","parentType":"OnlyResult","signature":"void popBack()","url":"/ddoc/phobos/std/range/OnlyResult.popBack.html"},{"doc":"","kind":"method","module":"std.range","name":"opIndex","package":"phobos","parentType":"OnlyResult","signature":"T opIndex(size_t i)","url":"/ddoc/phobos/std/range/OnlyResult.opIndex.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"OnlyResult","signature":"OnlyResult opSlice()","url":"/ddoc/phobos/std/range/OnlyResult.opSlice.html"},{"doc":"","kind":"method","module":"std.range","name":"opSlice","package":"phobos","parentType":"OnlyResult","signature":"OnlyResult opSlice(size_t from,  size_t to)","url":"/ddoc/phobos/std/range/OnlyResult.opSlice.html"},{"doc":"","kind":"method","module":"std.range","name":"fetchFront","package":"phobos","parentType":"OnlyResult","signature":"T fetchFront()","url":"/ddoc/phobos/std/range/OnlyResult.fetchFront.html"},{"doc":"Policy used with the searching primitives `lowerBound`, $(D upperBound), and `equalRange` of $(LREF SortedRange) below.","kind":"enum","module":"std.range","name":"SearchPolicy","package":"phobos","parentType":"","signature":"SearchPolicy","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Searches in a linear fashion.","kind":"enum_member","module":"std.range","name":"linear","package":"phobos","parentType":"","signature":"linear = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Searches with a step that is grows linearly (1, 2, 3,...) leading to a quadratic search schedule (indexes tried are 0, 1, 3, 6, 10, 15, 21, 28,...)...","kind":"enum_member","module":"std.range","name":"trot","package":"phobos","parentType":"","signature":"trot = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Performs a $(LINK2 https://en.wikipedia.org/wiki/Exponential_search, galloping search algorithm), i.e. searches with a step that doubles every time...","kind":"enum_member","module":"std.range","name":"gallop","package":"phobos","parentType":"","signature":"gallop = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Searches using a classic interval halving policy. The search starts in the middle of the range, and each search step cuts the range in half. This p...","kind":"enum_member","module":"std.range","name":"binarySearch","package":"phobos","parentType":"","signature":"binarySearch = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Similar to `trot` but starts backwards. Use it when confident that the value is around the end of the range.","kind":"enum_member","module":"std.range","name":"trotBackwards","package":"phobos","parentType":"","signature":"trotBackwards = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Similar to `gallop` but starts backwards. Use it when confident that the value is around the end of the range.","kind":"enum_member","module":"std.range","name":"gallopBackwards","package":"phobos","parentType":"","signature":"gallopBackwards = ","url":"/ddoc/phobos/std/range.html#SearchPolicy"},{"doc":"Options for $(LREF SortedRange) ranges (below).","kind":"enum","module":"std.range","name":"SortedRangeOptions","package":"phobos","parentType":"","signature":"SortedRangeOptions","url":"/ddoc/phobos/std/range.html#SortedRangeOptions"},{"doc":"Assume, that the range is sorted without checking.","kind":"enum_member","module":"std.range","name":"assumeSorted","package":"phobos","parentType":"","signature":"assumeSorted = ","url":"/ddoc/phobos/std/range.html#SortedRangeOptions"},{"doc":"All elements of the range are checked to be sorted. The check is performed in O(n) time.","kind":"enum_member","module":"std.range","name":"checkStrictly","package":"phobos","parentType":"","signature":"checkStrictly = ","url":"/ddoc/phobos/std/range.html#SortedRangeOptions"},{"doc":"Some elements of the range are checked to be sorted. For ranges with random order, this will almost surely detect, that it is not sorted. For almos...","kind":"enum_member","module":"std.range","name":"checkRoughly","package":"phobos","parentType":"","signature":"checkRoughly = ","url":"/ddoc/phobos/std/range.html#SortedRangeOptions"},{"doc":"Represents a sorted range. In addition to the regular range primitives, supports additional operations that take advantage of the ordering, such as...","kind":"struct","module":"std.range","name":"SortedRange","package":"phobos","parentType":"","signature":"SortedRange(Range,  alias  pred =  \"a < b\",\n     SortedRangeOptions opt =  SortedRangeOptions.assumeSorted) if (isInputRange!Range && !isInstanceOf!(SortedRange,  Range))","url":"/ddoc/phobos/std/range.html#SortedRange"},{"doc":"","kind":"method","module":"std.range","name":"geq","package":"phobos","parentType":"SortedRange","signature":"bool geq(L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/range/SortedRange.geq.html"},{"doc":"","kind":"method","module":"std.range","name":"gt","package":"phobos","parentType":"SortedRange","signature":"bool gt(L,  R)(L lhs,  R rhs)","url":"/ddoc/phobos/std/range/SortedRange.gt.html"},{"doc":"Range primitives.","kind":"method","module":"std.range","name":"empty","package":"phobos","parentType":"SortedRange","signature":"bool empty()","url":"/ddoc/phobos/std/range/SortedRange.empty.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"SortedRange","signature":"@property auto ref front()","url":"/ddoc/phobos/std/range/SortedRange.front.html"},{"doc":"Ditto","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"SortedRange","signature":"void popFront()","url":"/ddoc/phobos/std/range/SortedRange.popFront.html"},{"doc":"Releases the controlled range and returns it.","kind":"method","module":"std.range","name":"release","package":"phobos","parentType":"SortedRange","signature":"auto release()","url":"/ddoc/phobos/std/range/SortedRange.release.html"},{"doc":"","kind":"method","module":"std.range","name":"getTransitionIndex","package":"phobos","parentType":"SortedRange","signature":"size_t getTransitionIndex(SearchPolicy sp,  alias  test,  V)(V v) if (sp ==  SearchPolicy.binarySearch &&  isRandomAccessRange!Range &&  hasLength!Range)","url":"/ddoc/phobos/std/range/SortedRange.getTransitionIndex.html"},{"doc":"","kind":"method","module":"std.range","name":"getTransitionIndex","package":"phobos","parentType":"SortedRange","signature":"size_t getTransitionIndex(SearchPolicy sp,  alias  test,  V)(V v) if ((sp ==  SearchPolicy.trot ||  sp ==  SearchPolicy.gallop)\n         &&  isRandomAccessRange!Range)","url":"/ddoc/phobos/std/range/SortedRange.getTransitionIndex.html"},{"doc":"","kind":"method","module":"std.range","name":"getTransitionIndex","package":"phobos","parentType":"SortedRange","signature":"size_t getTransitionIndex(SearchPolicy sp,  alias  test,  V)(V v) if ((sp ==  SearchPolicy.trotBackwards ||  sp ==  SearchPolicy.gallopBackwards)\n         &&  isRandomAccessRange!Range)","url":"/ddoc/phobos/std/range/SortedRange.getTransitionIndex.html"},{"doc":"This function uses a search with policy `sp` to find the largest left subrange on which $(D pred(x, value)) is `true` for all `x` (e.g., if `pred` ...","kind":"method","module":"std.range","name":"lowerBound","package":"phobos","parentType":"SortedRange","signature":"auto lowerBound(SearchPolicy sp =  SearchPolicy.binarySearch,  V)(V value) if (isTwoWayCompatible!(predFun,  ElementType!Range,  V)\n          &&  hasSlicing!Range)","url":"/ddoc/phobos/std/range/SortedRange.lowerBound.html"},{"doc":"This function searches with policy `sp` to find the largest right subrange on which $(D pred(value, x)) is `true` for all `x` (e.g., if `pred` is \"...","kind":"method","module":"std.range","name":"upperBound","package":"phobos","parentType":"SortedRange","signature":"auto upperBound(SearchPolicy sp =  SearchPolicy.binarySearch,  V)(V value) if (isTwoWayCompatible!(predFun,  ElementType!Range,  V))","url":"/ddoc/phobos/std/range/SortedRange.upperBound.html"},{"doc":"Returns the subrange containing all elements `e` for which both $(D pred(e, value)) and $(D pred(value, e)) evaluate to `false` (e.g., if `pred` is...","kind":"method","module":"std.range","name":"equalRange","package":"phobos","parentType":"SortedRange","signature":"auto equalRange(V)(V value) if (isTwoWayCompatible!(predFun,  ElementType!Range,  V)\n         &&  isRandomAccessRange!Range)","url":"/ddoc/phobos/std/range/SortedRange.equalRange.html"},{"doc":"Returns a tuple `r` such that `r[0]` is the same as the result of `lowerBound(value)`, `r[1]` is the same as the result of $(D equalRange(value)), ...","kind":"method","module":"std.range","name":"trisect","package":"phobos","parentType":"SortedRange","signature":"auto trisect(V)(V value) if (isTwoWayCompatible!(predFun,  ElementType!Range,  V)\n         &&  isRandomAccessRange!Range &&  hasLength!Range)","url":"/ddoc/phobos/std/range/SortedRange.trisect.html"},{"doc":"Returns `true` if and only if `value` can be found in $(D range), which is assumed to be sorted. Performs $(BIGOH log(r.length)) evaluations of `pr...","kind":"method","module":"std.range","name":"contains","package":"phobos","parentType":"SortedRange","signature":"bool contains(V)(V value) if (isRandomAccessRange!Range)","url":"/ddoc/phobos/std/range/SortedRange.contains.html"},{"doc":"Like `contains`, but the value is specified before the range.","kind":"method","module":"std.range","name":"opBinaryRight","package":"phobos","parentType":"SortedRange","signature":"bool opBinaryRight(string op,  V)(V value) if (op ==  \"in\" &&  isRandomAccessRange!Range)","url":"/ddoc/phobos/std/range/SortedRange.opBinaryRight.html"},{"doc":"Returns a range of subranges of elements that are equivalent according to the sorting relation.","kind":"method","module":"std.range","name":"groupBy","package":"phobos","parentType":"SortedRange","signature":"auto groupBy()()","url":"/ddoc/phobos/std/range/SortedRange.groupBy.html"},{"doc":"Wrapper which effectively makes it possible to pass a range by reference. Both the original range and the RefRange will always have the exact same ...","kind":"struct","module":"std.range","name":"RefRange","package":"phobos","parentType":"","signature":"RefRange(R) if (isInputRange!R)","url":"/ddoc/phobos/std/range.html#RefRange"},{"doc":"This does not assign the pointer of `rhs` to this `RefRange`. Rather it assigns the range pointed to by `rhs` to the range pointed to by this `RefR...","kind":"method","module":"std.range","name":"opAssign","package":"phobos","parentType":"RefRange","signature":"auto opAssign(RefRange rhs)","url":"/ddoc/phobos/std/range/RefRange.opAssign.html"},{"doc":"","kind":"method","module":"std.range","name":"opAssign","package":"phobos","parentType":"RefRange","signature":"void opAssign(typeof(null)  rhs)","url":"/ddoc/phobos/std/range/RefRange.opAssign.html"},{"doc":"A pointer to the wrapped range.","kind":"method","module":"std.range","name":"ptr","package":"phobos","parentType":"RefRange","signature":"inout(R *) ptr()","url":"/ddoc/phobos/std/range/RefRange.ptr.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"RefRange","signature":"void popFront()","url":"/ddoc/phobos/std/range/RefRange.popFront.html"},{"doc":"","kind":"struct","module":"std.range","name":"Bitwise","package":"phobos","parentType":"","signature":"Bitwise(R) if (isInputRange!R &&  isIntegral!(ElementType!R))","url":"/ddoc/phobos/std/range.html#Bitwise"},{"doc":"","kind":"method","module":"std.range","name":"front","package":"phobos","parentType":"Bitwise","signature":"bool front()","url":"/ddoc/phobos/std/range/Bitwise.front.html"},{"doc":"","kind":"method","module":"std.range","name":"popFront","package":"phobos","parentType":"Bitwise","signature":"void popFront()","url":"/ddoc/phobos/std/range/Bitwise.popFront.html"},{"doc":"","kind":"method","module":"std.range","name":"mask","package":"phobos","parentType":"Bitwise","signature":"auto mask(size_t maskPos)","url":"/ddoc/phobos/std/range/Bitwise.mask.html"},{"doc":"An OutputRange that discards the data it receives.","kind":"struct","module":"std.range","name":"NullSink","package":"phobos","parentType":"","signature":"NullSink","url":"/ddoc/phobos/std/range.html#NullSink"},{"doc":"","kind":"method","module":"std.range","name":"put","package":"phobos","parentType":"NullSink","signature":"void put(E)(scope  const  E)","url":"/ddoc/phobos/std/range/NullSink.put.html"},{"doc":"ditto","kind":"template","module":"std.range","name":"Take","package":"phobos","parentType":"","signature":"Take(R)","url":"/ddoc/phobos/std/range.html#Take"},{"doc":"ditto","kind":"template","module":"std.range","name":"Cycle","package":"phobos","parentType":"","signature":"Cycle(R)","url":"/ddoc/phobos/std/range.html#Cycle"},{"doc":"","kind":"template","module":"std.range","name":"ZipShortest","package":"phobos","parentType":"","signature":"ZipShortest(Ranges...)","url":"/ddoc/phobos/std/range.html#ZipShortest"},{"doc":"","kind":"template","module":"std.range","name":"Lockstep","package":"phobos","parentType":"","signature":"Lockstep(Range)","url":"/ddoc/phobos/std/range.html#Lockstep"},{"doc":"Returns true if `fn` accepts variables of type T1 and T2 in any order. The following code should compile: --- (ref T1 a, ref T2 b) { fn(a, b); fn(b...","kind":"template","module":"std.range","name":"isTwoWayCompatible","package":"phobos","parentType":"","signature":"isTwoWayCompatible(alias  fn,  T1,  T2)","url":"/ddoc/phobos/std/range.html#isTwoWayCompatible"},{"doc":"ditto","kind":"template","module":"std.range","name":"SortedRange","package":"phobos","parentType":"","signature":"SortedRange(Range,  alias  pred =  \"a < b\",\n                      SortedRangeOptions opt =  SortedRangeOptions.assumeSorted)","url":"/ddoc/phobos/std/range.html#SortedRange"},{"doc":"This simplifies a commonly used idiom in phobos for accepting any kind of string parameter. The type `R` can for example be a simple string, chaine...","kind":"template","module":"std.range","name":"isSomeFiniteCharInputRange","package":"phobos","parentType":"","signature":"isSomeFiniteCharInputRange(R)","url":"/ddoc/phobos/std/range.html#isSomeFiniteCharInputRange"},{"doc":"This module is a submodule of $(MREF std, range).","kind":"module","module":"std.range.primitives","name":"std.range.primitives","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/range/primitives.html"},{"doc":"","kind":"function","module":"std.range.primitives","name":"doPut","package":"phobos","parentType":"","signature":"void doPut(R,  E)(ref  R r,  auto  ref  E e)","url":"/ddoc/phobos/std/range/primitives/doPut.html"},{"doc":"Outputs `e` to `r`. The exact effect is dependent upon the two types. Several cases are accepted, as described below. The code snippets are attempt...","kind":"function","module":"std.range.primitives","name":"put","package":"phobos","parentType":"","signature":"void put(R,  E)(ref  R r,  E e)","url":"/ddoc/phobos/std/range/primitives/put.html"},{"doc":"","kind":"function","module":"std.range.primitives","name":"putChar","package":"phobos","parentType":"","signature":"void putChar(R,  E)(ref  R r,  E e) if (isSomeChar!E)","url":"/ddoc/phobos/std/range/primitives/putChar.html"},{"doc":"","kind":"function","module":"std.range.primitives","name":"isLvalue","package":"phobos","parentType":"","signature":"void isLvalue(T)(T) if (0)","url":"/ddoc/phobos/std/range/primitives/isLvalue.html"},{"doc":"","kind":"function","module":"std.range.primitives","name":"isLvalue","package":"phobos","parentType":"","signature":"void isLvalue(T)(ref  T) if (1)","url":"/ddoc/phobos/std/range/primitives/isLvalue.html"},{"doc":"This is a best-effort implementation of `length` for any kind of range.","kind":"function","module":"std.range.primitives","name":"walkLength","package":"phobos","parentType":"","signature":"auto walkLength(Range)(Range range) if (isInputRange!Range && !isInfinite!Range)","url":"/ddoc/phobos/std/range/primitives/walkLength.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"walkLength","package":"phobos","parentType":"","signature":"auto walkLength(Range)(Range range,  const  size_t upTo) if (isInputRange!Range)","url":"/ddoc/phobos/std/range/primitives/walkLength.html"},{"doc":"`popFrontN` eagerly advances `r` itself (not a copy) up to `n` times (by calling `r.popFront`). `popFrontN` takes `r` by `ref`, so it mutates the o...","kind":"function","module":"std.range.primitives","name":"popFrontN","package":"phobos","parentType":"","signature":"size_t popFrontN(Range)(ref  Range r,  size_t n) if (isInputRange!Range)","url":"/ddoc/phobos/std/range/primitives/popFrontN.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"popBackN","package":"phobos","parentType":"","signature":"size_t popBackN(Range)(ref  Range r,  size_t n) if (isBidirectionalRange!Range)","url":"/ddoc/phobos/std/range/primitives/popBackN.html"},{"doc":"Eagerly advances `r` itself (not a copy) exactly `n` times (by calling `r.popFront`). `popFrontExactly` takes `r` by `ref`, so it mutates the origi...","kind":"function","module":"std.range.primitives","name":"popFrontExactly","package":"phobos","parentType":"","signature":"void popFrontExactly(Range)(ref  Range r,  size_t n) if (isInputRange!Range)","url":"/ddoc/phobos/std/range/primitives/popFrontExactly.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"popBackExactly","package":"phobos","parentType":"","signature":"void popBackExactly(Range)(ref  Range r,  size_t n) if (isBidirectionalRange!Range)","url":"/ddoc/phobos/std/range/primitives/popBackExactly.html"},{"doc":"Moves the front of `r` out and returns it.","kind":"function","module":"std.range.primitives","name":"moveFront","package":"phobos","parentType":"","signature":"ElementType!R moveFront(R)(R r)","url":"/ddoc/phobos/std/range/primitives/moveFront.html"},{"doc":"Moves the back of `r` out and returns it. Leaves `r.back` in a destroyable state that does not allocate any resources (usually equal to its `.init`...","kind":"function","module":"std.range.primitives","name":"moveBack","package":"phobos","parentType":"","signature":"ElementType!R moveBack(R)(R r)","url":"/ddoc/phobos/std/range/primitives/moveBack.html"},{"doc":"Moves element at index `i` of `r` out and returns it. Leaves $(D r[i]) in a destroyable state that does not allocate any resources (usually equal t...","kind":"function","module":"std.range.primitives","name":"moveAt","package":"phobos","parentType":"","signature":"ElementType!R moveAt(R)(R r,  size_t i)","url":"/ddoc/phobos/std/range/primitives/moveAt.html"},{"doc":"Implements the range interface primitive `empty` for types that obey $(LREF hasLength) property and for narrow strings. Due to the fact that nonmem...","kind":"function","module":"std.range.primitives","name":"empty","package":"phobos","parentType":"","signature":"bool empty(T)(auto  ref  scope  T a) if (is(typeof(a.length) :  size_t))","url":"/ddoc/phobos/std/range/primitives/empty.html"},{"doc":"Implements the range interface primitive `save` for built-in arrays. Due to the fact that nonmember functions can be called with the first argument...","kind":"function","module":"std.range.primitives","name":"save","package":"phobos","parentType":"","signature":"inout(T)[] save(T)(return  scope  inout(T)[]  a)","url":"/ddoc/phobos/std/range/primitives/save.html"},{"doc":"Implements the range interface primitive `popFront` for built-in arrays. Due to the fact that nonmember functions can be called with the first argu...","kind":"function","module":"std.range.primitives","name":"popFront","package":"phobos","parentType":"","signature":"void popFront(T)(scope  ref  inout(T)[]  a) if (!isAutodecodableString!(T[])  && !is(T[]  ==  void[]))","url":"/ddoc/phobos/std/range/primitives/popFront.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"popFront","package":"phobos","parentType":"","signature":"void popFront(C)(scope  ref  inout(C)[]  str) if (isAutodecodableString!(C[]))","url":"/ddoc/phobos/std/range/primitives/popFront.html"},{"doc":"Implements the range interface primitive `popBack` for built-in arrays. Due to the fact that nonmember functions can be called with the first argum...","kind":"function","module":"std.range.primitives","name":"popBack","package":"phobos","parentType":"","signature":"void popBack(T)(scope  ref  inout(T)[]  a) if (!isAutodecodableString!(T[])  && !is(T[]  ==  void[]))","url":"/ddoc/phobos/std/range/primitives/popBack.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"popBack","package":"phobos","parentType":"","signature":"void popBack(T)(scope  ref  inout(T)[]  a) if (isAutodecodableString!(T[]))","url":"/ddoc/phobos/std/range/primitives/popBack.html"},{"doc":"Implements the range interface primitive `front` for built-in arrays. Due to the fact that nonmember functions can be called with the first argumen...","kind":"function","module":"std.range.primitives","name":"front","package":"phobos","parentType":"","signature":"inout(T) front(T)(return  scope  inout(T)[]  a) if (!isAutodecodableString!(T[])  && !is(T[]  ==  void[]))","url":"/ddoc/phobos/std/range/primitives/front.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"front","package":"phobos","parentType":"","signature":"dchar front(T)(scope  const(T)[]  a) if (isAutodecodableString!(T[]))","url":"/ddoc/phobos/std/range/primitives/front.html"},{"doc":"Implements the range interface primitive `back` for built-in arrays. Due to the fact that nonmember functions can be called with the first argument...","kind":"function","module":"std.range.primitives","name":"back","package":"phobos","parentType":"","signature":"inout(T) back(T)(return  scope  inout(T)[]  a) if (!isAutodecodableString!(T[])  && !is(T[]  ==  void[]))","url":"/ddoc/phobos/std/range/primitives/back.html"},{"doc":"ditto","kind":"function","module":"std.range.primitives","name":"back","package":"phobos","parentType":"","signature":"dchar back(T)(scope  const(T)[]  a) if (isAutodecodableString!(T[]))","url":"/ddoc/phobos/std/range/primitives/back.html"},{"doc":"The element type of `R`. `R` does not have to be a range. The element type is determined as the type yielded by `r.front` for an object `r` of type...","kind":"template","module":"std.range.primitives","name":"ElementType","package":"phobos","parentType":"","signature":"ElementType(R)","url":"/ddoc/phobos/std/range/primitives.html#ElementType"},{"doc":"The encoding element type of `R`. For narrow strings (`char[]`, `wchar[]` and their qualified variants including `string` and `wstring`), `ElementE...","kind":"template","module":"std.range.primitives","name":"ElementEncodingType","package":"phobos","parentType":"","signature":"ElementEncodingType(R)","url":"/ddoc/phobos/std/range/primitives.html#ElementEncodingType"},{"doc":"Returns `true` if `R` is an input range and has swappable elements. The following code should compile for any range with swappable elements.","kind":"template","module":"std.range.primitives","name":"hasSwappableElements","package":"phobos","parentType":"","signature":"hasSwappableElements(R)","url":"/ddoc/phobos/std/range/primitives.html#hasSwappableElements"},{"doc":"Yields `true` if `R` has a `length` member that returns a value of `size_t` type. `R` does not have to be a range. If `R` is a range, algorithms in...","kind":"template","module":"std.range.primitives","name":"hasLength","package":"phobos","parentType":"","signature":"hasLength(R)","url":"/ddoc/phobos/std/range/primitives.html#hasLength"},{"doc":"Returns `true` if `R` is an infinite input range. An infinite input range is an input range that has a statically-defined enumerated member called ...","kind":"template","module":"std.range.primitives","name":"isInfinite","package":"phobos","parentType":"","signature":"isInfinite(R)","url":"/ddoc/phobos/std/range/primitives.html#isInfinite"},{"doc":"Returns `true` if `R` is an input range. An input range must define the primitives `empty`, `popFront`, and `front`. The following code should comp...","kind":"variable","module":"std.range.primitives","name":"isInputRange","package":"phobos","parentType":"","signature":"bool isInputRange","url":"/ddoc/phobos/std/range/primitives.html#isInputRange"},{"doc":"ditto","kind":"variable","module":"std.range.primitives","name":"isInputRange","package":"phobos","parentType":"","signature":"bool isInputRange","url":"/ddoc/phobos/std/range/primitives.html#isInputRange"},{"doc":"","kind":"variable","module":"std.range.primitives","name":"isNativeOutputRange","package":"phobos","parentType":"","signature":"bool isNativeOutputRange","url":"/ddoc/phobos/std/range/primitives.html#isNativeOutputRange"},{"doc":"Returns `true` if `R` is an output range for elements of type `E`. An output range is defined functionally as a range that supports the operation $...","kind":"variable","module":"std.range.primitives","name":"isOutputRange","package":"phobos","parentType":"","signature":"bool isOutputRange","url":"/ddoc/phobos/std/range/primitives.html#isOutputRange"},{"doc":"Returns `true` if `R` is a forward range. A forward range is an input range `r` that can save \"checkpoints\" by saving `r.save` to another value of ...","kind":"variable","module":"std.range.primitives","name":"isForwardRange","package":"phobos","parentType":"","signature":"bool isForwardRange","url":"/ddoc/phobos/std/range/primitives.html#isForwardRange"},{"doc":"ditto","kind":"variable","module":"std.range.primitives","name":"isForwardRange","package":"phobos","parentType":"","signature":"bool isForwardRange","url":"/ddoc/phobos/std/range/primitives.html#isForwardRange"},{"doc":"Returns `true` if `R` is a bidirectional range. A bidirectional range is a forward range that also offers the primitives `back` and `popBack`. The ...","kind":"variable","module":"std.range.primitives","name":"isBidirectionalRange","package":"phobos","parentType":"","signature":"bool isBidirectionalRange","url":"/ddoc/phobos/std/range/primitives.html#isBidirectionalRange"},{"doc":"ditto","kind":"variable","module":"std.range.primitives","name":"isBidirectionalRange","package":"phobos","parentType":"","signature":"bool isBidirectionalRange","url":"/ddoc/phobos/std/range/primitives.html#isBidirectionalRange"},{"doc":"Returns `true` if `R` is a random-access range. A random-access range is a bidirectional range that also offers the primitive $(D opIndex), OR an i...","kind":"variable","module":"std.range.primitives","name":"isRandomAccessRange","package":"phobos","parentType":"","signature":"bool isRandomAccessRange","url":"/ddoc/phobos/std/range/primitives.html#isRandomAccessRange"},{"doc":"ditto","kind":"variable","module":"std.range.primitives","name":"isRandomAccessRange","package":"phobos","parentType":"","signature":"bool isRandomAccessRange","url":"/ddoc/phobos/std/range/primitives.html#isRandomAccessRange"},{"doc":"Returns `true` iff `R` is an input range that supports the `moveFront` primitive, as well as `moveBack` and `moveAt` if it's a bidirectional or ran...","kind":"variable","module":"std.range.primitives","name":"hasMobileElements","package":"phobos","parentType":"","signature":"bool hasMobileElements","url":"/ddoc/phobos/std/range/primitives.html#hasMobileElements"},{"doc":"Returns `true` if `R` is an input range and has mutable elements. The following code should compile for any range with assignable elements.","kind":"variable","module":"std.range.primitives","name":"hasAssignableElements","package":"phobos","parentType":"","signature":"bool hasAssignableElements","url":"/ddoc/phobos/std/range/primitives.html#hasAssignableElements"},{"doc":"Tests whether the range `R` has lvalue elements. These are defined as elements that can be passed by reference and have their address taken. The fo...","kind":"variable","module":"std.range.primitives","name":"hasLvalueElements","package":"phobos","parentType":"","signature":"bool hasLvalueElements","url":"/ddoc/phobos/std/range/primitives.html#hasLvalueElements"},{"doc":"Returns `true` if `R` offers a slicing operator with integral boundaries that returns a forward range type.","kind":"variable","module":"std.range.primitives","name":"hasSlicing","package":"phobos","parentType":"","signature":"bool hasSlicing","url":"/ddoc/phobos/std/range/primitives.html#hasSlicing"},{"doc":"","kind":"module","module":"std.regex.internal.backtracking","name":"std.regex.internal.backtracking","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/backtracking.html"},{"doc":"","kind":"function","module":"std.regex.internal.backtracking","name":"ctSub","package":"phobos","parentType":"","signature":"string ctSub(  U...)(string format,  U args)","url":"/ddoc/phobos/std/regex/internal/backtracking/ctSub.html"},{"doc":"","kind":"function","module":"std.regex.internal.backtracking","name":"ctGenRegExCode","package":"phobos","parentType":"","signature":"string ctGenRegExCode(Char)(const  Regex!Char re)","url":"/ddoc/phobos/std/regex/internal/backtracking/ctGenRegExCode.html"},{"doc":"","kind":"class","module":"std.regex.internal.backtracking","name":"BacktrackingMatcher","package":"phobos","parentType":"","signature":"BacktrackingMatcher(Char,  Stream =  Input!Char) : Matcher!Char if (is(Char :  dchar))","url":"/ddoc/phobos/std/regex/internal/backtracking.html#BacktrackingMatcher"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"refCount","package":"phobos","parentType":"BacktrackingMatcher","signature":"size_t refCount()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.refCount.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"pattern","package":"phobos","parentType":"BacktrackingMatcher","signature":"const(RegEx) pattern(){","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.pattern.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"initialMemory","package":"phobos","parentType":"BacktrackingMatcher","signature":"size_t initialMemory(const  ref  RegEx re)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.initialMemory.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackSize","package":"phobos","parentType":"BacktrackingMatcher","signature":"size_t stackSize(const  ref  RegEx re)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackSize.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"atStart","package":"phobos","parentType":"BacktrackingMatcher","signature":"bool atStart(){","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.atStart.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"atEnd","package":"phobos","parentType":"BacktrackingMatcher","signature":"bool atEnd(){","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.atEnd.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"next","package":"phobos","parentType":"BacktrackingMatcher","signature":"void next()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.next.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"search","package":"phobos","parentType":"BacktrackingMatcher","signature":"void search()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.search.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"newStack","package":"phobos","parentType":"BacktrackingMatcher","signature":"void newStack()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.newStack.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"prevStack","package":"phobos","parentType":"BacktrackingMatcher","signature":"bool prevStack()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.prevStack.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"initExternalMemory","package":"phobos","parentType":"BacktrackingMatcher","signature":"void initExternalMemory(void[]  memBlock)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.initExternalMemory.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"initialize","package":"phobos","parentType":"BacktrackingMatcher","signature":"void initialize(ref  const  RegEx program,  Stream stream,  void[]  memBlock)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.initialize.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"dupTo","package":"phobos","parentType":"BacktrackingMatcher","signature":"void dupTo(Matcher!Char m,  void[]  memBlock)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.dupTo.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"rearm","package":"phobos","parentType":"BacktrackingMatcher","signature":"Matcher!Char rearm(in  Char[]  data)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.rearm.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"fwdMatcher","package":"phobos","parentType":"BacktrackingMatcher","signature":"auto fwdMatcher(ref  const  RegEx re,  void[]  memBlock)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.fwdMatcher.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"bwdMatcher","package":"phobos","parentType":"BacktrackingMatcher","signature":"auto bwdMatcher(ref  const  RegEx re,  void[]  memBlock)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.bwdMatcher.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"matchFinalize","package":"phobos","parentType":"BacktrackingMatcher","signature":"int matchFinalize()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.matchFinalize.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"match","package":"phobos","parentType":"BacktrackingMatcher","signature":"int match(Group!DataIndex[]  matches)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.match.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"matchImpl","package":"phobos","parentType":"BacktrackingMatcher","signature":"int matchImpl()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.matchImpl.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackAvail","package":"phobos","parentType":"BacktrackingMatcher","signature":"size_t stackAvail()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackAvail.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackPush","package":"phobos","parentType":"BacktrackingMatcher","signature":"void stackPush(T)(T val) if (!isDynamicArray!T)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackPush.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackPush","package":"phobos","parentType":"BacktrackingMatcher","signature":"void stackPush(T)(T[]  val)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackPush.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackPop","package":"phobos","parentType":"BacktrackingMatcher","signature":"void stackPop(T)(ref  T val) if (!isDynamicArray!T)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackPop.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackPop","package":"phobos","parentType":"BacktrackingMatcher","signature":"void stackPop(T)(T[]  val)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackPop.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"stackPop","package":"phobos","parentType":"BacktrackingMatcher","signature":"void stackPop(T)(ref  T[]  val)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.stackPop.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"pushState","package":"phobos","parentType":"BacktrackingMatcher","signature":"void pushState(uint  pc,  uint  counter)","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.pushState.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"popState","package":"phobos","parentType":"BacktrackingMatcher","signature":"bool popState()","url":"/ddoc/phobos/std/regex/internal/backtracking/BacktrackingMatcher.popState.html"},{"doc":"","kind":"struct","module":"std.regex.internal.backtracking","name":"CtContext","package":"phobos","parentType":"","signature":"CtContext","url":"/ddoc/phobos/std/regex/internal/backtracking.html#CtContext"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"lookaround","package":"phobos","parentType":"CtContext","signature":"CtContext lookaround(uint  s,  uint  e)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.lookaround.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"restoreCode","package":"phobos","parentType":"CtContext","signature":"string restoreCode()","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.restoreCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"saveCode","package":"phobos","parentType":"CtContext","signature":"string saveCode(uint  pc,  string count_expr = \"counter\")","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.saveCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenBlock","package":"phobos","parentType":"CtContext","signature":"CtState ctGenBlock(const(Bytecode)[]  ir,  int  addr)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenBlock.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenGroup","package":"phobos","parentType":"CtContext","signature":"CtState ctGenGroup(ref  const(Bytecode)[]  ir,  int  addr)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenAlternation","package":"phobos","parentType":"CtContext","signature":"CtState ctGenAlternation(const(Bytecode)[]  ir,  int  addr)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenAlternation.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenFixupCode","package":"phobos","parentType":"CtContext","signature":"string ctGenFixupCode(const(Bytecode)[]  ir,  int  addr,  int  fixup)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenFixupCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenFixupCode","package":"phobos","parentType":"CtContext","signature":"string ctGenFixupCode(ref  const(Bytecode)[]  ir,  int  addr,  int  fixup)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenFixupCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctQuickTest","package":"phobos","parentType":"CtContext","signature":"string ctQuickTest(const(Bytecode)[]  ir,  int  id)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctQuickTest.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenAtom","package":"phobos","parentType":"CtContext","signature":"CtState ctGenAtom(ref  const(Bytecode)[]  ir,  int  addr)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenAtom.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctAtomCode","package":"phobos","parentType":"CtContext","signature":"string ctAtomCode(const(Bytecode)[]  ir,  int  addr)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctAtomCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.backtracking","name":"ctGenRegEx","package":"phobos","parentType":"CtContext","signature":"string ctGenRegEx(const(Bytecode)[]  ir)","url":"/ddoc/phobos/std/regex/internal/backtracking/CtContext.ctGenRegEx.html"},{"doc":"","kind":"module","module":"std.regex.internal.generator","name":"std.regex.internal.generator","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/generator.html"},{"doc":"","kind":"struct","module":"std.regex.internal.generator","name":"SampleGenerator","package":"phobos","parentType":"","signature":"SampleGenerator(Char)","url":"/ddoc/phobos/std/regex/internal/generator.html#SampleGenerator"},{"doc":"","kind":"method","module":"std.regex.internal.generator","name":"rand","package":"phobos","parentType":"SampleGenerator","signature":"uint rand(uint  x)","url":"/ddoc/phobos/std/regex/internal/generator/SampleGenerator.rand.html"},{"doc":"","kind":"method","module":"std.regex.internal.generator","name":"compose","package":"phobos","parentType":"SampleGenerator","signature":"void compose()","url":"/ddoc/phobos/std/regex/internal/generator/SampleGenerator.compose.html"},{"doc":"","kind":"method","module":"std.regex.internal.generator","name":"front","package":"phobos","parentType":"SampleGenerator","signature":"Char[] front()","url":"/ddoc/phobos/std/regex/internal/generator/SampleGenerator.front.html"},{"doc":"","kind":"method","module":"std.regex.internal.generator","name":"popFront","package":"phobos","parentType":"SampleGenerator","signature":"void popFront()","url":"/ddoc/phobos/std/regex/internal/generator/SampleGenerator.popFront.html"},{"doc":"","kind":"module","module":"std.regex.internal.ir","name":"std.regex.internal.ir","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/ir.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"getMatcher","package":"phobos","parentType":"","signature":"CharMatcher getMatcher(CodepointSet set)","url":"/ddoc/phobos/std/regex/internal/ir/getMatcher.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"wordMatcher","package":"phobos","parentType":"","signature":"@property ref wordMatcher()()","url":"/ddoc/phobos/std/regex/internal/ir/wordMatcher.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"regexOptionsToString","package":"phobos","parentType":"","signature":"string regexOptionsToString()(uint  flags)","url":"/ddoc/phobos/std/regex/internal/ir/regexOptionsToString.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"immediateParamsIR","package":"phobos","parentType":"","signature":"int immediateParamsIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/immediateParamsIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"lengthOfIR","package":"phobos","parentType":"","signature":"int lengthOfIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/lengthOfIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"lengthOfPairedIR","package":"phobos","parentType":"","signature":"int lengthOfPairedIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/lengthOfPairedIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"hasMerge","package":"phobos","parentType":"","signature":"bool hasMerge(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/hasMerge.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"isStartIR","package":"phobos","parentType":"","signature":"bool isStartIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/isStartIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"isEndIR","package":"phobos","parentType":"","signature":"bool isEndIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/isEndIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"isAtomIR","package":"phobos","parentType":"","signature":"bool isAtomIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/isAtomIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"pairedIR","package":"phobos","parentType":"","signature":"IR pairedIR(IR i)","url":"/ddoc/phobos/std/regex/internal/ir/pairedIR.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"defaultFactoryImpl","package":"phobos","parentType":"","signature":"auto defaultFactoryImpl(Char)(const  ref  Regex!Char re)","url":"/ddoc/phobos/std/regex/internal/ir/defaultFactoryImpl.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"assumePureFunction","package":"phobos","parentType":"","signature":"auto assumePureFunction(T)(T t) if (isFunctionPointer!T)","url":"/ddoc/phobos/std/regex/internal/ir/assumePureFunction.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"mallocArray","package":"phobos","parentType":"","signature":"T[] mallocArray(T)(size_t len)","url":"/ddoc/phobos/std/regex/internal/ir/mallocArray.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"arrayInChunk","package":"phobos","parentType":"","signature":"T[] arrayInChunk(T)(size_t len,  ref  void[]  chunk)","url":"/ddoc/phobos/std/regex/internal/ir/arrayInChunk.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"lookupNamedGroup","package":"phobos","parentType":"","signature":"uint lookupNamedGroup(String)(const(NamedGroup)[]  dict,  String name)","url":"/ddoc/phobos/std/regex/internal/ir/lookupNamedGroup.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"endOfLine","package":"phobos","parentType":"","signature":"bool endOfLine()(dchar  front,  bool  seenCr)","url":"/ddoc/phobos/std/regex/internal/ir/endOfLine.html"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"startOfLine","package":"phobos","parentType":"","signature":"bool startOfLine()(dchar  back,  bool  seenNl)","url":"/ddoc/phobos/std/regex/internal/ir/startOfLine.html"},{"doc":"","kind":"alias","module":"std.regex.internal.ir","name":"BasicElementOf","package":"phobos","parentType":"","signature":"BasicElementOf(Range) = Unqual!(ElementEncodingType!Range)","url":"/ddoc/phobos/std/regex/internal/ir.html#BasicElementOf"},{"doc":"","kind":"alias","module":"std.regex.internal.ir","name":"Trie","package":"phobos","parentType":"","signature":"Trie = CodepointSetTrie!(13,  8)","url":"/ddoc/phobos/std/regex/internal/ir.html#Trie"},{"doc":"","kind":"alias","module":"std.regex.internal.ir","name":"makeTrie","package":"phobos","parentType":"","signature":"makeTrie = codepointSetTrie!(13,  8)","url":"/ddoc/phobos/std/regex/internal/ir.html#makeTrie"},{"doc":"","kind":"enum","module":"std.regex.internal.ir","name":"RegexOption","package":"phobos","parentType":"","signature":"RegexOption : uint","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"global","package":"phobos","parentType":"","signature":"global = 0x1","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"casefold","package":"phobos","parentType":"","signature":"casefold = 0x2","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"freeform","package":"phobos","parentType":"","signature":"freeform = 0x4","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"nonunicode","package":"phobos","parentType":"","signature":"nonunicode = 0x8","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"multiline","package":"phobos","parentType":"","signature":"multiline = 0x10","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"singleline","package":"phobos","parentType":"","signature":"singleline = 0x20","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOption"},{"doc":"","kind":"alias","module":"std.regex.internal.ir","name":"RegexOptionNames","package":"phobos","parentType":"","signature":"RegexOptionNames = AliasSeq!('g',  'i',  'x',  'U',  'm',  's')","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexOptionNames"},{"doc":"","kind":"enum","module":"std.regex.internal.ir","name":"RegexInfo","package":"phobos","parentType":"","signature":"RegexInfo : uint","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexInfo"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"oneShot","package":"phobos","parentType":"","signature":"oneShot = 0x80","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexInfo"},{"doc":"","kind":"enum","module":"std.regex.internal.ir","name":"IR","package":"phobos","parentType":"","signature":"IR : uint","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Char","package":"phobos","parentType":"","signature":"Char = 0b1_00000_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Any","package":"phobos","parentType":"","signature":"Any = 0b1_00001_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"CodepointSet","package":"phobos","parentType":"","signature":"CodepointSet = 0b1_00010_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Trie","package":"phobos","parentType":"","signature":"Trie = 0b1_00011_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"OrChar","package":"phobos","parentType":"","signature":"OrChar = 0b1_00100_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Nop","package":"phobos","parentType":"","signature":"Nop = 0b1_00101_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"End","package":"phobos","parentType":"","signature":"End = 0b1_00110_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Bol","package":"phobos","parentType":"","signature":"Bol = 0b1_00111_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Eol","package":"phobos","parentType":"","signature":"Eol = 0b1_01000_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Wordboundary","package":"phobos","parentType":"","signature":"Wordboundary = 0b1_01001_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Notwordboundary","package":"phobos","parentType":"","signature":"Notwordboundary = 0b1_01010_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Backref","package":"phobos","parentType":"","signature":"Backref = 0b1_01011_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"GroupStart","package":"phobos","parentType":"","signature":"GroupStart = 0b1_01100_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"GroupEnd","package":"phobos","parentType":"","signature":"GroupEnd = 0b1_01101_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Option","package":"phobos","parentType":"","signature":"Option = 0b1_01110_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"GotoEndOr","package":"phobos","parentType":"","signature":"GotoEndOr = 0b1_01111_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Bof","package":"phobos","parentType":"","signature":"Bof = 0b1_10000_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"Eof","package":"phobos","parentType":"","signature":"Eof = 0b1_10001_00","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"OrStart","package":"phobos","parentType":"","signature":"OrStart = 0b1_00000_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"OrEnd","package":"phobos","parentType":"","signature":"OrEnd = 0b1_00000_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteStart","package":"phobos","parentType":"","signature":"InfiniteStart = 0b1_00001_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteEnd","package":"phobos","parentType":"","signature":"InfiniteEnd = 0b1_00001_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteQStart","package":"phobos","parentType":"","signature":"InfiniteQStart = 0b1_00010_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteQEnd","package":"phobos","parentType":"","signature":"InfiniteQEnd = 0b1_00010_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteBloomStart","package":"phobos","parentType":"","signature":"InfiniteBloomStart = 0b1_00011_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"InfiniteBloomEnd","package":"phobos","parentType":"","signature":"InfiniteBloomEnd = 0b1_00011_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"RepeatStart","package":"phobos","parentType":"","signature":"RepeatStart = 0b1_00100_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"RepeatEnd","package":"phobos","parentType":"","signature":"RepeatEnd = 0b1_00100_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"RepeatQStart","package":"phobos","parentType":"","signature":"RepeatQStart = 0b1_00101_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"RepeatQEnd","package":"phobos","parentType":"","signature":"RepeatQEnd = 0b1_00101_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"LookaheadStart","package":"phobos","parentType":"","signature":"LookaheadStart = 0b1_00110_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"LookaheadEnd","package":"phobos","parentType":"","signature":"LookaheadEnd = 0b1_00110_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"NeglookaheadStart","package":"phobos","parentType":"","signature":"NeglookaheadStart = 0b1_00111_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"NeglookaheadEnd","package":"phobos","parentType":"","signature":"NeglookaheadEnd = 0b1_00111_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"LookbehindStart","package":"phobos","parentType":"","signature":"LookbehindStart = 0b1_01000_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"LookbehindEnd","package":"phobos","parentType":"","signature":"LookbehindEnd = 0b1_01000_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"NeglookbehindStart","package":"phobos","parentType":"","signature":"NeglookbehindStart = 0b1_01001_01","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"enum_member","module":"std.regex.internal.ir","name":"NeglookbehindEnd","package":"phobos","parentType":"","signature":"NeglookbehindEnd = 0b1_01001_10","url":"/ddoc/phobos/std/regex/internal/ir.html#IR"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"Bytecode","package":"phobos","parentType":"","signature":"Bytecode","url":"/ddoc/phobos/std/regex/internal/ir.html#Bytecode"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"fromRaw","package":"phobos","parentType":"Bytecode","signature":"Bytecode fromRaw(uint  data)","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.fromRaw.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"data","package":"phobos","parentType":"Bytecode","signature":"uint data()()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.data.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"data","package":"phobos","parentType":"Bytecode","signature":"void data()(uint  val)","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.data.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"sequence","package":"phobos","parentType":"Bytecode","signature":"uint sequence()()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.sequence.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"code","package":"phobos","parentType":"Bytecode","signature":"IR code()()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.code.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"hotspot","package":"phobos","parentType":"Bytecode","signature":"bool hotspot()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.hotspot.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"isAtom","package":"phobos","parentType":"Bytecode","signature":"bool isAtom()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.isAtom.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"isStart","package":"phobos","parentType":"Bytecode","signature":"bool isStart()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.isStart.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"isEnd","package":"phobos","parentType":"Bytecode","signature":"bool isEnd()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.isEnd.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"args","package":"phobos","parentType":"Bytecode","signature":"int args()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.args.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"setBackrefence","package":"phobos","parentType":"Bytecode","signature":"void setBackrefence()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.setBackrefence.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"backreference","package":"phobos","parentType":"Bytecode","signature":"bool backreference()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.backreference.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"setLocalRef","package":"phobos","parentType":"Bytecode","signature":"void setLocalRef()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.setLocalRef.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"localRef","package":"phobos","parentType":"Bytecode","signature":"bool localRef()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.localRef.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"mnemonic","package":"phobos","parentType":"Bytecode","signature":"string mnemonic()()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.mnemonic.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"length","package":"phobos","parentType":"Bytecode","signature":"uint length()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.length.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"pairedLength","package":"phobos","parentType":"Bytecode","signature":"uint pairedLength()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.pairedLength.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"paired","package":"phobos","parentType":"Bytecode","signature":"Bytecode paired()","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.paired.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"indexOfPair","package":"phobos","parentType":"Bytecode","signature":"uint indexOfPair(uint  pc)","url":"/ddoc/phobos/std/regex/internal/ir/Bytecode.indexOfPair.html"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"NamedGroup","package":"phobos","parentType":"","signature":"NamedGroup","url":"/ddoc/phobos/std/regex/internal/ir.html#NamedGroup"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"Group","package":"phobos","parentType":"","signature":"Group(DataIndex)","url":"/ddoc/phobos/std/regex/internal/ir.html#Group"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opCast","package":"phobos","parentType":"Group","signature":"bool opCast(T :  bool)()","url":"/ddoc/phobos/std/regex/internal/ir/Group.opCast.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"toString","package":"phobos","parentType":"Group","signature":"string toString()()","url":"/ddoc/phobos/std/regex/internal/ir/Group.toString.html"},{"doc":"","kind":"interface","module":"std.regex.internal.ir","name":"MatcherFactory","package":"phobos","parentType":"","signature":"MatcherFactory(Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#MatcherFactory"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"create","package":"phobos","parentType":"MatcherFactory","signature":"Matcher!Char create(const  ref  Regex!Char,  in  Char[]  input)","url":"/ddoc/phobos/std/regex/internal/ir/MatcherFactory.create.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"dup","package":"phobos","parentType":"MatcherFactory","signature":"Matcher!Char dup(Matcher!Char m,  in  Char[]  input)","url":"/ddoc/phobos/std/regex/internal/ir/MatcherFactory.dup.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"incRef","package":"phobos","parentType":"MatcherFactory","signature":"size_t incRef(Matcher!Char m)","url":"/ddoc/phobos/std/regex/internal/ir/MatcherFactory.incRef.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"decRef","package":"phobos","parentType":"MatcherFactory","signature":"size_t decRef(Matcher!Char m)","url":"/ddoc/phobos/std/regex/internal/ir/MatcherFactory.decRef.html"},{"doc":"","kind":"class","module":"std.regex.internal.ir","name":"GenericFactory","package":"phobos","parentType":"","signature":"GenericFactory(alias  EngineType,  Char) : MatcherFactory!Char","url":"/ddoc/phobos/std/regex/internal/ir.html#GenericFactory"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"construct","package":"phobos","parentType":"GenericFactory","signature":"EngineType!Char construct(const  ref  Regex!Char re,  in  Char[]  input,  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/ir/GenericFactory.construct.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"create","package":"phobos","parentType":"GenericFactory","signature":"EngineType!Char create(const  ref  Regex!Char re,  in  Char[]  input)","url":"/ddoc/phobos/std/regex/internal/ir/GenericFactory.create.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"dup","package":"phobos","parentType":"GenericFactory","signature":"EngineType!Char dup(Matcher!Char engine,  in  Char[]  input)","url":"/ddoc/phobos/std/regex/internal/ir/GenericFactory.dup.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"incRef","package":"phobos","parentType":"GenericFactory","signature":"size_t incRef(Matcher!Char m)","url":"/ddoc/phobos/std/regex/internal/ir/GenericFactory.incRef.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"decRef","package":"phobos","parentType":"GenericFactory","signature":"size_t decRef(Matcher!Char m)","url":"/ddoc/phobos/std/regex/internal/ir/GenericFactory.decRef.html"},{"doc":"","kind":"class","module":"std.regex.internal.ir","name":"RuntimeFactory","package":"phobos","parentType":"","signature":"RuntimeFactory(alias  EngineType,  Char) : GenericFactory!(EngineType,   Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#RuntimeFactory"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"construct","package":"phobos","parentType":"RuntimeFactory","signature":"EngineType!Char construct(const  ref  Regex!Char re,  in  Char[]  input,  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/ir/RuntimeFactory.construct.html"},{"doc":"","kind":"class","module":"std.regex.internal.ir","name":"CtfeFactory","package":"phobos","parentType":"","signature":"CtfeFactory(alias  EngineType,  Char,  alias  func) : GenericFactory!(EngineType,   Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#CtfeFactory"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"construct","package":"phobos","parentType":"CtfeFactory","signature":"EngineType!Char construct(const  ref  Regex!Char re,  in  Char[]  input,  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/ir/CtfeFactory.construct.html"},{"doc":"","kind":"class","module":"std.regex.internal.ir","name":"Matcher","package":"phobos","parentType":"","signature":"Matcher(Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#Matcher"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"match","package":"phobos","parentType":"Matcher","signature":"int match(Group!size_t[]  matches)","url":"/ddoc/phobos/std/regex/internal/ir/Matcher.match.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"refCount","package":"phobos","parentType":"Matcher","signature":"size_t refCount()","url":"/ddoc/phobos/std/regex/internal/ir/Matcher.refCount.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"dupTo","package":"phobos","parentType":"Matcher","signature":"void dupTo(Matcher!Char m,  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/ir/Matcher.dupTo.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"pattern","package":"phobos","parentType":"Matcher","signature":"const(Regex!Char) pattern()","url":"/ddoc/phobos/std/regex/internal/ir/Matcher.pattern.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"rearm","package":"phobos","parentType":"Matcher","signature":"Matcher rearm(in  Char[]  stream)","url":"/ddoc/phobos/std/regex/internal/ir/Matcher.rearm.html"},{"doc":"`Regex` object holds regular expression pattern in compiled form. Instances of this object are constructed via calls to `regex`. This is an intende...","kind":"struct","module":"std.regex.internal.ir","name":"Regex","package":"phobos","parentType":"","signature":"Regex(Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#Regex"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"empty","package":"phobos","parentType":"Regex","signature":"bool empty()","url":"/ddoc/phobos/std/regex/internal/ir/Regex.empty.html"},{"doc":"`namedCaptures` returns a range of all named captures in a given regular expression.","kind":"method","module":"std.regex.internal.ir","name":"namedCaptures","package":"phobos","parentType":"Regex","signature":"@safe @property auto namedCaptures()","url":"/ddoc/phobos/std/regex/internal/ir/Regex.namedCaptures.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"withFactory","package":"phobos","parentType":"Regex","signature":"const(Regex) withFactory(MatcherFactory!Char factory)","url":"/ddoc/phobos/std/regex/internal/ir/Regex.withFactory.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"withFlags","package":"phobos","parentType":"Regex","signature":"const(Regex) withFlags(uint  newFlags)","url":"/ddoc/phobos/std/regex/internal/ir/Regex.withFlags.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"withCode","package":"phobos","parentType":"Regex","signature":"const(Regex) withCode(const(Bytecode)[]  code)","url":"/ddoc/phobos/std/regex/internal/ir/Regex.withCode.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"withNGroup","package":"phobos","parentType":"Regex","signature":"const(Regex) withNGroup(uint  nGroup)","url":"/ddoc/phobos/std/regex/internal/ir/Regex.withNGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"isBackref","package":"phobos","parentType":"Regex","signature":"uint isBackref(uint  n)","url":"/ddoc/phobos/std/regex/internal/ir/Regex.isBackref.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"checkIfOneShot","package":"phobos","parentType":"Regex","signature":"void checkIfOneShot()","url":"/ddoc/phobos/std/regex/internal/ir/Regex.checkIfOneShot.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"toString","package":"phobos","parentType":"Regex","signature":"string toString()()","url":"/ddoc/phobos/std/regex/internal/ir/Regex.toString.html"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"Input","package":"phobos","parentType":"","signature":"Input(Char) if (is(Char : dchar))","url":"/ddoc/phobos/std/regex/internal/ir.html#Input"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"nextChar","package":"phobos","parentType":"Input","signature":"bool nextChar(ref  dchar  res,  ref  size_t pos)","url":"/ddoc/phobos/std/regex/internal/ir/Input.nextChar.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"atEnd","package":"phobos","parentType":"Input","signature":"bool atEnd(){","url":"/ddoc/phobos/std/regex/internal/ir/Input.atEnd.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"search","package":"phobos","parentType":"Input","signature":"bool search(Kickstart)(ref  const  Kickstart kick,  ref  dchar  res,  ref  size_t pos)","url":"/ddoc/phobos/std/regex/internal/ir/Input.search.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"lastIndex","package":"phobos","parentType":"Input","signature":"size_t lastIndex(){","url":"/ddoc/phobos/std/regex/internal/ir/Input.lastIndex.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"reset","package":"phobos","parentType":"Input","signature":"void reset(size_t index){","url":"/ddoc/phobos/std/regex/internal/ir/Input.reset.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opSlice","package":"phobos","parentType":"Input","signature":"String opSlice(size_t start,  size_t end){","url":"/ddoc/phobos/std/regex/internal/ir/Input.opSlice.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"loopBack","package":"phobos","parentType":"Input","signature":"auto loopBack(size_t index){","url":"/ddoc/phobos/std/regex/internal/ir/Input.loopBack.html"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"BackLooperImpl","package":"phobos","parentType":"","signature":"BackLooperImpl(Input)","url":"/ddoc/phobos/std/regex/internal/ir.html#BackLooperImpl"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"nextChar","package":"phobos","parentType":"BackLooperImpl","signature":"bool nextChar(ref  dchar  res, ref  size_t pos)","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.nextChar.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"atEnd","package":"phobos","parentType":"BackLooperImpl","signature":"@property atEnd(){","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.atEnd.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"loopBack","package":"phobos","parentType":"BackLooperImpl","signature":"auto loopBack(size_t index){","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.loopBack.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"reset","package":"phobos","parentType":"BackLooperImpl","signature":"void reset(size_t index){","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.reset.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opSlice","package":"phobos","parentType":"BackLooperImpl","signature":"String opSlice(size_t start,  size_t end){","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.opSlice.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"lastIndex","package":"phobos","parentType":"BackLooperImpl","signature":"size_t lastIndex(){","url":"/ddoc/phobos/std/regex/internal/ir/BackLooperImpl.lastIndex.html"},{"doc":"Exception object thrown in case of errors during regex compilation.","kind":"class","module":"std.regex.internal.ir","name":"RegexException","package":"phobos","parentType":"","signature":"RegexException : Exception","url":"/ddoc/phobos/std/regex/internal/ir.html#RegexException"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"BitTable","package":"phobos","parentType":"","signature":"BitTable","url":"/ddoc/phobos/std/regex/internal/ir.html#BitTable"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"add","package":"phobos","parentType":"BitTable","signature":"void add()(dchar  ch){","url":"/ddoc/phobos/std/regex/internal/ir/BitTable.add.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opIndex","package":"phobos","parentType":"BitTable","signature":"bool opIndex()(dchar  ch)","url":"/ddoc/phobos/std/regex/internal/ir/BitTable.opIndex.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"index","package":"phobos","parentType":"BitTable","signature":"uint index()(dchar  ch){","url":"/ddoc/phobos/std/regex/internal/ir/BitTable.index.html"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"CharMatcher","package":"phobos","parentType":"","signature":"CharMatcher","url":"/ddoc/phobos/std/regex/internal/ir.html#CharMatcher"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opIndex","package":"phobos","parentType":"CharMatcher","signature":"bool opIndex()(dchar  ch)","url":"/ddoc/phobos/std/regex/internal/ir/CharMatcher.opIndex.html"},{"doc":"","kind":"struct","module":"std.regex.internal.ir","name":"SmallFixedArray","package":"phobos","parentType":"","signature":"SmallFixedArray(T,  uint  SMALL = 3) if (!hasElaborateDestructor!T)","url":"/ddoc/phobos/std/regex/internal/ir.html#SmallFixedArray"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"isBig","package":"phobos","parentType":"SmallFixedArray","signature":"bool isBig()","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.isBig.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"length","package":"phobos","parentType":"SmallFixedArray","signature":"size_t length()","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.length.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"internalSlice","package":"phobos","parentType":"SmallFixedArray","signature":"inout(T)[] internalSlice()","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.internalSlice.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opEquals","package":"phobos","parentType":"SmallFixedArray","signature":"bool opEquals(SmallFixedArray a)","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.opEquals.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"toHash","package":"phobos","parentType":"SmallFixedArray","signature":"size_t toHash()","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.toHash.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opIndex","package":"phobos","parentType":"SmallFixedArray","signature":"inout(T) opIndex(size_t idx)","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.opIndex.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"opAssign","package":"phobos","parentType":"SmallFixedArray","signature":"@trusted ref opAssign(SmallFixedArray arr)","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.opAssign.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"mutate","package":"phobos","parentType":"SmallFixedArray","signature":"void mutate(scope  void  delegate(T[])  pure  filler)","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.mutate.html"},{"doc":"","kind":"method","module":"std.regex.internal.ir","name":"abandonRef","package":"phobos","parentType":"SmallFixedArray","signature":"void abandonRef()","url":"/ddoc/phobos/std/regex/internal/ir/SmallFixedArray.abandonRef.html"},{"doc":"","kind":"template","module":"std.regex.internal.ir","name":"IRL","package":"phobos","parentType":"","signature":"IRL(IR code)","url":"/ddoc/phobos/std/regex/internal/ir.html#IRL"},{"doc":"","kind":"template","module":"std.regex.internal.ir","name":"defaultFactory","package":"phobos","parentType":"","signature":"defaultFactory(Char)","url":"/ddoc/phobos/std/regex/internal/ir.html#defaultFactory"},{"doc":"","kind":"function","module":"std.regex.internal.ir","name":"defaultFactory","package":"phobos","parentType":"","signature":"MatcherFactory!Char defaultFactory(const  ref  Regex!Char re)","url":"/ddoc/phobos/std/regex/internal/ir.html#defaultFactory"},{"doc":"","kind":"template","module":"std.regex.internal.ir","name":"BackLooper","package":"phobos","parentType":"","signature":"BackLooper(E)","url":"/ddoc/phobos/std/regex/internal/ir.html#BackLooper"},{"doc":"","kind":"variable","module":"std.regex.internal.ir","name":"privateUseStart","package":"phobos","parentType":"","signature":"privateUseStart","url":"/ddoc/phobos/std/regex/internal/ir.html#privateUseStart"},{"doc":"","kind":"variable","module":"std.regex.internal.ir","name":"maxCharsetUsed","package":"phobos","parentType":"","signature":"maxCharsetUsed","url":"/ddoc/phobos/std/regex/internal/ir.html#maxCharsetUsed"},{"doc":"","kind":"variable","module":"std.regex.internal.ir","name":"maxCachedMatchers","package":"phobos","parentType":"","signature":"maxCachedMatchers","url":"/ddoc/phobos/std/regex/internal/ir.html#maxCachedMatchers"},{"doc":"","kind":"variable","module":"std.regex.internal.ir","name":"matcherCache","package":"phobos","parentType":"","signature":"CharMatcher[CodepointSet] matcherCache","url":"/ddoc/phobos/std/regex/internal/ir.html#matcherCache"},{"doc":"","kind":"variable","module":"std.regex.internal.ir","name":"NEL","package":"phobos","parentType":"","signature":"NEL","url":"/ddoc/phobos/std/regex/internal/ir.html#NEL"},{"doc":"","kind":"module","module":"std.regex.internal.kickstart","name":"std.regex.internal.kickstart","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/kickstart.html"},{"doc":"","kind":"function","module":"std.regex.internal.kickstart","name":"effectiveSize","package":"phobos","parentType":"","signature":"uint effectiveSize(Char)()","url":"/ddoc/phobos/std/regex/internal/kickstart/effectiveSize.html"},{"doc":"","kind":"struct","module":"std.regex.internal.kickstart","name":"ShiftOr","package":"phobos","parentType":"","signature":"ShiftOr(Char)","url":"/ddoc/phobos/std/regex/internal/kickstart.html#ShiftOr"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"fork","package":"phobos","parentType":"ShiftOr","signature":"ShiftThread fork(ShiftThread t,  uint  newPc,  uint  newCounter)","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.fork.html"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"fetch","package":"phobos","parentType":"ShiftOr","signature":"ShiftThread fetch(ref  ShiftThread[]  worklist)","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.fetch.html"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"charLen","package":"phobos","parentType":"ShiftOr","signature":"uint charLen(uint  ch)","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.charLen.html"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"empty","package":"phobos","parentType":"ShiftOr","signature":"bool empty()","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.empty.html"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"length","package":"phobos","parentType":"ShiftOr","signature":"uint length()","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.length.html"},{"doc":"","kind":"method","module":"std.regex.internal.kickstart","name":"search","package":"phobos","parentType":"ShiftOr","signature":"size_t search(const(Char)[]  haystack,  size_t idx)","url":"/ddoc/phobos/std/regex/internal/kickstart/ShiftOr.search.html"},{"doc":"","kind":"alias","module":"std.regex.internal.kickstart","name":"Kickstart","package":"phobos","parentType":"","signature":"Kickstart = ShiftOr","url":"/ddoc/phobos/std/regex/internal/kickstart.html#Kickstart"},{"doc":"","kind":"module","module":"std.regex.internal.parser","name":"std.regex.internal.parser","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/parser.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"makeRegex","package":"phobos","parentType":"","signature":"auto makeRegex(S,  CG)(Parser!(S,  CG)  p)","url":"/ddoc/phobos/std/regex/internal/parser/makeRegex.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"makeRegex","package":"phobos","parentType":"","signature":"auto makeRegex(S)(S arg) if (isSomeString!S)","url":"/ddoc/phobos/std/regex/internal/parser/makeRegex.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"reverseBytecode","package":"phobos","parentType":"","signature":"void reverseBytecode()(Bytecode[]  code)","url":"/ddoc/phobos/std/regex/internal/parser/reverseBytecode.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"postprocess","package":"phobos","parentType":"","signature":"void postprocess(Char)(ref  Regex!Char zis)","url":"/ddoc/phobos/std/regex/internal/parser/postprocess.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"fixupBytecode","package":"phobos","parentType":"","signature":"void fixupBytecode()(Bytecode[]  ir)","url":"/ddoc/phobos/std/regex/internal/parser/fixupBytecode.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"optimize","package":"phobos","parentType":"","signature":"void optimize(Char)(ref  Regex!Char zis)","url":"/ddoc/phobos/std/regex/internal/parser/optimize.html"},{"doc":"","kind":"function","module":"std.regex.internal.parser","name":"validateRe","package":"phobos","parentType":"","signature":"void validateRe(Char)(ref  Regex!Char zis)","url":"/ddoc/phobos/std/regex/internal/parser/validateRe.html"},{"doc":"","kind":"struct","module":"std.regex.internal.parser","name":"CodeGen","package":"phobos","parentType":"","signature":"CodeGen","url":"/ddoc/phobos/std/regex/internal/parser.html#CodeGen"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"start","package":"phobos","parentType":"CodeGen","signature":"void start(uint  length)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.start.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"markBackref","package":"phobos","parentType":"CodeGen","signature":"void markBackref(uint  n)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.markBackref.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"isOpenGroup","package":"phobos","parentType":"CodeGen","signature":"bool isOpenGroup(uint  n)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.isOpenGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"put","package":"phobos","parentType":"CodeGen","signature":"void put(Bytecode code)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.put.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"putRaw","package":"phobos","parentType":"CodeGen","signature":"void putRaw(uint  number)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.putRaw.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"charsetToIr","package":"phobos","parentType":"CodeGen","signature":"void charsetToIr(CodepointSet set)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.charsetToIr.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"genLogicGroup","package":"phobos","parentType":"CodeGen","signature":"void genLogicGroup()","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.genLogicGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"genGroup","package":"phobos","parentType":"CodeGen","signature":"void genGroup()","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.genGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"genNamedGroup","package":"phobos","parentType":"CodeGen","signature":"void genNamedGroup(string name)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.genNamedGroup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"genLookaround","package":"phobos","parentType":"CodeGen","signature":"void genLookaround(IR opcode)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.genLookaround.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"endPattern","package":"phobos","parentType":"CodeGen","signature":"void endPattern(uint  num)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.endPattern.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"fixLookaround","package":"phobos","parentType":"CodeGen","signature":"void fixLookaround(uint  fix)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.fixLookaround.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"fixRepetition","package":"phobos","parentType":"CodeGen","signature":"void fixRepetition(uint  offset)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.fixRepetition.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"fixRepetition","package":"phobos","parentType":"CodeGen","signature":"void fixRepetition(uint  offset,  uint  min,  uint  max,  bool  greedy)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.fixRepetition.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"fixAlternation","package":"phobos","parentType":"CodeGen","signature":"void fixAlternation()","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.fixAlternation.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"finishAlternation","package":"phobos","parentType":"CodeGen","signature":"void finishAlternation(uint  fix)","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.finishAlternation.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"onClose","package":"phobos","parentType":"CodeGen","signature":"Tuple!(bool,  uint) onClose()","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.onClose.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"popFixup","package":"phobos","parentType":"CodeGen","signature":"uint popFixup(){","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.popFixup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"pushFixup","package":"phobos","parentType":"CodeGen","signature":"void pushFixup(uint  val){","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.pushFixup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"topFixup","package":"phobos","parentType":"CodeGen","signature":"uint topFixup(){","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.topFixup.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"fixupLength","package":"phobos","parentType":"CodeGen","signature":"size_t fixupLength(){","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.fixupLength.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"length","package":"phobos","parentType":"CodeGen","signature":"uint length(){","url":"/ddoc/phobos/std/regex/internal/parser/CodeGen.length.html"},{"doc":"","kind":"struct","module":"std.regex.internal.parser","name":"Parser","package":"phobos","parentType":"","signature":"Parser(R,  Generator) if (isForwardRange!R &&  is(ElementType!R :  dchar))","url":"/ddoc/phobos/std/regex/internal/parser.html#Parser"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"_popFront","package":"phobos","parentType":"Parser","signature":"void _popFront()","url":"/ddoc/phobos/std/regex/internal/parser/Parser._popFront.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"skipSpace","package":"phobos","parentType":"Parser","signature":"void skipSpace()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.skipSpace.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"popFront","package":"phobos","parentType":"Parser","signature":"void popFront()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.popFront.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"save","package":"phobos","parentType":"Parser","signature":"auto save(){","url":"/ddoc/phobos/std/regex/internal/parser/Parser.save.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseDecimal","package":"phobos","parentType":"Parser","signature":"uint parseDecimal()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseDecimal.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseFlags","package":"phobos","parentType":"Parser","signature":"void parseFlags(S)(S flags)","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseFlags.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseRegex","package":"phobos","parentType":"Parser","signature":"void parseRegex()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseRegex.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseQuantifier","package":"phobos","parentType":"Parser","signature":"void parseQuantifier(uint  offset)","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseQuantifier.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseAtom","package":"phobos","parentType":"Parser","signature":"void parseAtom()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseAtom.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseCharset","package":"phobos","parentType":"Parser","signature":"void parseCharset()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseCharset.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"parseEscape","package":"phobos","parentType":"Parser","signature":"void parseEscape()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.parseEscape.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"error","package":"phobos","parentType":"Parser","signature":"void error(string msg)","url":"/ddoc/phobos/std/regex/internal/parser/Parser.error.html"},{"doc":"","kind":"method","module":"std.regex.internal.parser","name":"program","package":"phobos","parentType":"Parser","signature":"@property program()","url":"/ddoc/phobos/std/regex/internal/parser/Parser.program.html"},{"doc":"","kind":"variable","module":"std.regex.internal.parser","name":"maxGroupNumber","package":"phobos","parentType":"","signature":"maxGroupNumber","url":"/ddoc/phobos/std/regex/internal/parser.html#maxGroupNumber"},{"doc":"","kind":"variable","module":"std.regex.internal.parser","name":"maxLookaroundDepth","package":"phobos","parentType":"","signature":"maxLookaroundDepth","url":"/ddoc/phobos/std/regex/internal/parser.html#maxLookaroundDepth"},{"doc":"","kind":"variable","module":"std.regex.internal.parser","name":"maxCompiledLength","package":"phobos","parentType":"","signature":"maxCompiledLength","url":"/ddoc/phobos/std/regex/internal/parser.html#maxCompiledLength"},{"doc":"","kind":"variable","module":"std.regex.internal.parser","name":"maxCumulativeRepetitionLength","package":"phobos","parentType":"","signature":"maxCumulativeRepetitionLength","url":"/ddoc/phobos/std/regex/internal/parser.html#maxCumulativeRepetitionLength"},{"doc":"","kind":"variable","module":"std.regex.internal.parser","name":"infinite","package":"phobos","parentType":"","signature":"infinite","url":"/ddoc/phobos/std/regex/internal/parser.html#infinite"},{"doc":"","kind":"module","module":"std.regex.internal.tests","name":"std.regex.internal.tests","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/tests.html"},{"doc":"","kind":"module","module":"std.regex.internal.tests2","name":"std.regex.internal.tests2","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/tests2.html"},{"doc":"","kind":"module","module":"std.regex.internal.thompson","name":"std.regex.internal.thompson","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex/internal/thompson.html"},{"doc":"","kind":"struct","module":"std.regex.internal.thompson","name":"Thread","package":"phobos","parentType":"","signature":"Thread(DataIndex)","url":"/ddoc/phobos/std/regex/internal/thompson.html#Thread"},{"doc":"","kind":"struct","module":"std.regex.internal.thompson","name":"ThreadList","package":"phobos","parentType":"","signature":"ThreadList(DataIndex)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThreadList"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"insertFront","package":"phobos","parentType":"ThreadList","signature":"void insertFront(Thread!DataIndex *  t)","url":"/ddoc/phobos/std/regex/internal/thompson/ThreadList.insertFront.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"insertBack","package":"phobos","parentType":"ThreadList","signature":"void insertBack(Thread!DataIndex *  t)","url":"/ddoc/phobos/std/regex/internal/thompson/ThreadList.insertBack.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"fetch","package":"phobos","parentType":"ThreadList","signature":"Thread!DataIndex * fetch()","url":"/ddoc/phobos/std/regex/internal/thompson/ThreadList.fetch.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"empty","package":"phobos","parentType":"ThreadList","signature":"bool empty()","url":"/ddoc/phobos/std/regex/internal/thompson/ThreadList.empty.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"opSlice","package":"phobos","parentType":"ThreadList","signature":"ThreadRange opSlice()","url":"/ddoc/phobos/std/regex/internal/thompson/ThreadList.opSlice.html"},{"doc":"","kind":"class","module":"std.regex.internal.thompson","name":"ThompsonMatcher","package":"phobos","parentType":"","signature":"ThompsonMatcher(Char,  StreamType =  Input!Char): : Matcher!Char if (is(Char :  dchar))","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonMatcher"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"getThreadSize","package":"phobos","parentType":"ThompsonMatcher","signature":"size_t getThreadSize(const  ref  Regex!Char re)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.getThreadSize.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"initialMemory","package":"phobos","parentType":"ThompsonMatcher","signature":"size_t initialMemory(const  ref  Regex!Char re)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.initialMemory.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"atStart","package":"phobos","parentType":"ThompsonMatcher","signature":"bool atStart(){","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.atStart.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"atEnd","package":"phobos","parentType":"ThompsonMatcher","signature":"bool atEnd(){","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.atEnd.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"refCount","package":"phobos","parentType":"ThompsonMatcher","signature":"size_t refCount()","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.refCount.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"pattern","package":"phobos","parentType":"ThompsonMatcher","signature":"const(Regex!Char) pattern()","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.pattern.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"next","package":"phobos","parentType":"ThompsonMatcher","signature":"bool next()","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.next.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"initExternalMemory","package":"phobos","parentType":"ThompsonMatcher","signature":"void initExternalMemory(void[]  memory)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.initExternalMemory.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"rearm","package":"phobos","parentType":"ThompsonMatcher","signature":"Matcher!Char rearm(in  Char[]  data)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.rearm.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"fwdMatcher","package":"phobos","parentType":"ThompsonMatcher","signature":"auto fwdMatcher()(size_t lo,  size_t hi,  uint  nGroup,  size_t counter)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.fwdMatcher.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"bwdMatcher","package":"phobos","parentType":"ThompsonMatcher","signature":"auto bwdMatcher()(size_t lo,  size_t hi,  uint  nGroup,  size_t counter)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.bwdMatcher.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"dupTo","package":"phobos","parentType":"ThompsonMatcher","signature":"void dupTo(Matcher!Char engine,  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.dupTo.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"match","package":"phobos","parentType":"ThompsonMatcher","signature":"int match(Group!DataIndex[]  matches)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.match.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"matchImpl","package":"phobos","parentType":"ThompsonMatcher","signature":"int matchImpl(bool  withSearch)(Group!DataIndex[]  matches)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.matchImpl.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"finish","package":"phobos","parentType":"ThompsonMatcher","signature":"void finish(const(Thread!DataIndex) *  t,  Group!DataIndex[]  matches,  int  code)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.finish.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"eval","package":"phobos","parentType":"ThompsonMatcher","signature":"void eval(bool  withInput)(State *  state)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.eval.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"matchOneShot","package":"phobos","parentType":"ThompsonMatcher","signature":"int matchOneShot(Group!DataIndex[]  matches,  uint  startPc =  0)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.matchOneShot.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"allocate","package":"phobos","parentType":"ThompsonMatcher","signature":"Thread!DataIndex * allocate()","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.allocate.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"prepareFreeList","package":"phobos","parentType":"ThompsonMatcher","signature":"void prepareFreeList(size_t size,  ref  void[]  memory)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.prepareFreeList.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"recycle","package":"phobos","parentType":"ThompsonMatcher","signature":"void recycle(Thread!DataIndex *  t)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.recycle.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"recycle","package":"phobos","parentType":"ThompsonMatcher","signature":"void recycle(ref  ThreadList!DataIndex list)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.recycle.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"fork","package":"phobos","parentType":"ThompsonMatcher","signature":"Thread!DataIndex * fork(Thread!DataIndex *  master,  uint  pc,  uint  counter)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.fork.html"},{"doc":"","kind":"method","module":"std.regex.internal.thompson","name":"createStart","package":"phobos","parentType":"ThompsonMatcher","signature":"Thread!DataIndex * createStart(DataIndex index,  uint  pc =  0)","url":"/ddoc/phobos/std/regex/internal/thompson/ThompsonMatcher.createStart.html"},{"doc":"","kind":"template","module":"std.regex.internal.thompson","name":"ThompsonOps","package":"phobos","parentType":"","signature":"ThompsonOps(E,  S,  bool  withInput: true)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.End)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Wordboundary)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Notwordboundary)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Bof)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Bol)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Eof)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Eol)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.InfiniteStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.InfiniteBloomStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.InfiniteQStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.RepeatStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.RepeatQStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.RepeatEnd ||  code ==  IR.RepeatQEnd)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.InfiniteEnd ||  code ==  IR.InfiniteQEnd)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.InfiniteBloomEnd)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.OrEnd)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.OrStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Option)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.GotoEndOr)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.GroupStart)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.GroupEnd)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Backref)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.LookbehindStart ||  code ==  IR.NeglookbehindStart)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.LookaheadStart ||  code ==  IR.NeglookaheadStart)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.LookaheadEnd ||  code ==  IR.NeglookaheadEnd ||\n         code ==  IR.LookbehindEnd ||  code ==  IR.NeglookbehindEnd)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Nop)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.OrChar)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Char)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Any)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.CodepointSet)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Trie)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"template","module":"std.regex.internal.thompson","name":"ThompsonOps","package":"phobos","parentType":"","signature":"ThompsonOps(E, S,  bool  withInput: false)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code ==  IR.Char ||  code ==  IR.OrChar ||  code ==  IR.CodepointSet\n        ||  code ==  IR.Trie ||  code ==  IR.Char ||  code ==  IR.Any)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code: IR.Backref)(E e,  S *  state)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"","kind":"function","module":"std.regex.internal.thompson","name":"op","package":"phobos","parentType":"","signature":"bool op(IR code)(E e,  S *  state) if (code !=  IR.Char &&  code !=  IR.OrChar &&  code !=  IR.CodepointSet\n        &&  code !=  IR.Trie &&  code !=  IR.Char &&  code !=  IR.Any &&  code !=  IR.Backref)","url":"/ddoc/phobos/std/regex/internal/thompson.html#ThompsonOps"},{"doc":"$(LINK2 https://en.wikipedia.org/wiki/Regular_expression, Regular expressions) are a commonly used method of pattern matching on strings, with $(I ...","kind":"module","module":"std.regex","name":"std.regex","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/regex.html"},{"doc":"Compile regular expression pattern for the later execution. Returns: `Regex` object that works on inputs having the same character width as `pattern`.","kind":"function","module":"std.regex","name":"regex","package":"phobos","parentType":"","signature":"auto regex(S :  C[],  C)(const  S[]  patterns,  const(char)[]  flags = \"\") if (isSomeString!(S))","url":"/ddoc/phobos/std/regex/regex.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"regex","package":"phobos","parentType":"","signature":"auto regex(S)(S pattern,  const(char)[]  flags = \"\") if (isSomeString!(S))","url":"/ddoc/phobos/std/regex/regex.html"},{"doc":"","kind":"function","module":"std.regex","name":"regexImpl","package":"phobos","parentType":"","signature":"auto regexImpl(S)(const  S pattern,  const(char)[]  flags = \"\") if (isSomeString!(typeof(pattern)))","url":"/ddoc/phobos/std/regex/regexImpl.html"},{"doc":"","kind":"function","module":"std.regex","name":"matchOnceImpl","package":"phobos","parentType":"","signature":"auto matchOnceImpl(RegEx,  R)(R input,  const  auto  ref  RegEx prog)","url":"/ddoc/phobos/std/regex/matchOnceImpl.html"},{"doc":"","kind":"function","module":"std.regex","name":"matchOnce","package":"phobos","parentType":"","signature":"@safe auto matchOnce(RegEx,  R)(R input,  const  auto  ref  RegEx prog)","url":"/ddoc/phobos/std/regex/matchOnce.html"},{"doc":"","kind":"function","module":"std.regex","name":"matchMany","package":"phobos","parentType":"","signature":"auto matchMany(RegEx,  R)(R input,  auto  ref  RegEx re)","url":"/ddoc/phobos/std/regex/matchMany.html"},{"doc":"","kind":"function","module":"std.regex","name":"replaceCapturesInto","package":"phobos","parentType":"","signature":"void replaceCapturesInto(alias  output,  Sink,  R,  T)(ref  Sink sink,  R input,  T captures) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R)","url":"/ddoc/phobos/std/regex/replaceCapturesInto.html"},{"doc":"","kind":"function","module":"std.regex","name":"replaceMatchesInto","package":"phobos","parentType":"","signature":"void replaceMatchesInto(alias  output,  Sink,  R,  T)(ref  Sink sink,  R input,  T matches) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R)","url":"/ddoc/phobos/std/regex/replaceMatchesInto.html"},{"doc":"","kind":"function","module":"std.regex","name":"replaceFirstWith","package":"phobos","parentType":"","signature":"R replaceFirstWith(alias  output,  R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceFirstWith.html"},{"doc":"","kind":"function","module":"std.regex","name":"replaceAllWith","package":"phobos","parentType":"","signature":"R replaceAllWith(alias  output,\n         alias  method = matchAll,  R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceAllWith.html"},{"doc":"Start matching `input` to regex pattern `re`, using Thompson NFA matching scheme.","kind":"function","module":"std.regex","name":"match","package":"phobos","parentType":"","signature":"auto match(R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx, R))","url":"/ddoc/phobos/std/regex/match.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"match","package":"phobos","parentType":"","signature":"auto match(R,  String)(R input,  String re) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/match.html"},{"doc":"Find the first (leftmost) slice of the `input` that matches the pattern `re`. This function picks the most suitable regular expression engine depen...","kind":"function","module":"std.regex","name":"matchFirst","package":"phobos","parentType":"","signature":"auto matchFirst(R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/matchFirst.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"matchFirst","package":"phobos","parentType":"","signature":"auto matchFirst(R,  String)(R input,  String re) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/matchFirst.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"matchFirst","package":"phobos","parentType":"","signature":"auto matchFirst(R,  String)(R input,  String[]  re...) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/matchFirst.html"},{"doc":"Initiate a search for all non-overlapping matches to the pattern `re` in the given `input`. The result is a lazy range of matches generated as they...","kind":"function","module":"std.regex","name":"matchAll","package":"phobos","parentType":"","signature":"auto matchAll(R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/matchAll.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"matchAll","package":"phobos","parentType":"","signature":"auto matchAll(R,  String)(R input,  String re) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/matchAll.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"matchAll","package":"phobos","parentType":"","signature":"auto matchAll(R,  String)(R input,  String[]  re...) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/matchAll.html"},{"doc":"Start matching of `input` to regex pattern `re`, using traditional $(LINK2 https://en.wikipedia.org/wiki/Backtracking, backtracking) matching scheme.","kind":"function","module":"std.regex","name":"bmatch","package":"phobos","parentType":"","signature":"auto bmatch(R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/bmatch.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"bmatch","package":"phobos","parentType":"","signature":"auto bmatch(R,  String)(R input,  String re) if (isSomeString!R &&  isSomeString!String)","url":"/ddoc/phobos/std/regex/bmatch.html"},{"doc":"","kind":"function","module":"std.regex","name":"replaceFmt","package":"phobos","parentType":"","signature":"void replaceFmt(R,  Capt,  OutR)(R format,  Capt captures,  OutR sink,  bool  ignoreBadSubs =  false) if (isOutputRange!(OutR,  ElementEncodingType!R[])  &&\n     isOutputRange!(OutR,  ElementEncodingType!(Capt.String)[]))","url":"/ddoc/phobos/std/regex/replaceFmt.html"},{"doc":"Construct a new string from `input` by replacing the first match with a string generated from it according to the `format` specifier.","kind":"function","module":"std.regex","name":"replaceFirst","package":"phobos","parentType":"","signature":"R replaceFirst(R,  C,  RegEx)(R input,  RegEx re,  const(C)[]  format) if (isSomeString!R &&  is(C :  dchar)  &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceFirst.html"},{"doc":"This is a general replacement tool that construct a new string by replacing matches of pattern `re` in the `input`. Unlike the other overload there...","kind":"function","module":"std.regex","name":"replaceFirst","package":"phobos","parentType":"","signature":"R replaceFirst(alias  fun,  R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceFirst.html"},{"doc":"A variation on $(LREF replaceFirst) that instead of allocating a new string on each call outputs the result piece-wise to the `sink`. In particular...","kind":"function","module":"std.regex","name":"replaceFirstInto","package":"phobos","parentType":"","signature":"void replaceFirstInto(Sink,  R,  C,  RegEx)(ref  Sink sink,  R input,  RegEx re,  const(C)[]  format) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R\n    &&  is(C :  dchar)  &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceFirstInto.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"replaceFirstInto","package":"phobos","parentType":"","signature":"void replaceFirstInto(alias  fun,  Sink,  R,  RegEx)(Sink sink,  R input,  RegEx re) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceFirstInto.html"},{"doc":"Construct a new string from `input` by replacing all of the fragments that match a pattern `re` with a string generated from the match according to...","kind":"function","module":"std.regex","name":"replaceAll","package":"phobos","parentType":"","signature":"R replaceAll(R,  C,  RegEx)(R input,  RegEx re,  const(C)[]  format) if (isSomeString!R &&  is(C :  dchar)  &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceAll.html"},{"doc":"This is a general replacement tool that construct a new string by replacing matches of pattern `re` in the `input`. Unlike the other overload there...","kind":"function","module":"std.regex","name":"replaceAll","package":"phobos","parentType":"","signature":"R replaceAll(alias  fun,  R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceAll.html"},{"doc":"A variation on $(LREF replaceAll) that instead of allocating a new string on each call outputs the result piece-wise to the `sink`. In particular t...","kind":"function","module":"std.regex","name":"replaceAllInto","package":"phobos","parentType":"","signature":"void replaceAllInto(Sink,  R,  C,  RegEx)(Sink sink,  R input,  RegEx re,  const(C)[]  format) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R\n    &&  is(C :  dchar)  &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceAllInto.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"replaceAllInto","package":"phobos","parentType":"","signature":"void replaceAllInto(alias  fun,  Sink,  R,  RegEx)(Sink sink,  R input,  RegEx re) if (isOutputRange!(Sink,  dchar)  &&  isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replaceAllInto.html"},{"doc":"Old API for replacement, operation depends on flags of pattern `re`. With \"g\" flag it performs the equivalent of $(LREF replaceAll) otherwise it wo...","kind":"function","module":"std.regex","name":"replace","package":"phobos","parentType":"","signature":"R replace(alias  scheme =  match,  R,  C,  RegEx)(R input,  RegEx re,  const(C)[]  format) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replace.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"replace","package":"phobos","parentType":"","signature":"R replace(alias  fun,  R,  RegEx)(R input,  RegEx re) if (isSomeString!R &&  isRegexFor!(RegEx,  R))","url":"/ddoc/phobos/std/regex/replace.html"},{"doc":"ditto","kind":"function","module":"std.regex","name":"splitter","package":"phobos","parentType":"","signature":"Splitter!(keepSeparators,  Range,  RegEx) splitter(\n     Flag!\"keepSeparators\" keepSeparators =  No.keepSeparators,  Range,  RegEx)(Range r,  RegEx pat) if (\n     is(BasicElementOf!Range :  dchar)  &&  isRegexFor!(RegEx,  Range))","url":"/ddoc/phobos/std/regex/splitter.html"},{"doc":"An eager version of `splitter` that creates an array with splitted slices of `input`.","kind":"function","module":"std.regex","name":"split","package":"phobos","parentType":"","signature":"String[] split(String,  RegEx)(String input,  RegEx rx) if (isSomeString!String  &&  isRegexFor!(RegEx,  String))","url":"/ddoc/phobos/std/regex/split.html"},{"doc":"A range that lazily produces a string output escaped to be used inside of a regular expression.","kind":"function","module":"std.regex","name":"escaper","package":"phobos","parentType":"","signature":"auto escaper(Range)(Range r)","url":"/ddoc/phobos/std/regex/escaper.html"},{"doc":"`Regex` object holds regular expression pattern in compiled form.","kind":"alias","module":"std.regex","name":"Regex","package":"phobos","parentType":"","signature":"Regex(Char) = std.regex.internal.ir.Regex!(Char)","url":"/ddoc/phobos/std/regex.html#Regex"},{"doc":"A `StaticRegex` is `Regex` object that contains D code specially generated at compile-time to speed up matching.","kind":"alias","module":"std.regex","name":"StaticRegex","package":"phobos","parentType":"","signature":"StaticRegex = Regex","url":"/ddoc/phobos/std/regex.html#StaticRegex"},{"doc":"","kind":"struct","module":"std.regex","name":"CTRegexWrapper","package":"phobos","parentType":"","signature":"CTRegexWrapper(Char)","url":"/ddoc/phobos/std/regex.html#CTRegexWrapper"},{"doc":"","kind":"method","module":"std.regex","name":"getRe","package":"phobos","parentType":"CTRegexWrapper","signature":"@property @trusted ref getRe()","url":"/ddoc/phobos/std/regex/CTRegexWrapper.getRe.html"},{"doc":"`Captures` object contains submatches captured during a call to `match` or iteration over `RegexMatch` range.","kind":"struct","module":"std.regex","name":"Captures","package":"phobos","parentType":"","signature":"Captures(R) if (isSomeString!R)","url":"/ddoc/phobos/std/regex.html#Captures"},{"doc":"","kind":"method","module":"std.regex","name":"getMatch","package":"phobos","parentType":"Captures","signature":"inout(R) getMatch(size_t index)","url":"/ddoc/phobos/std/regex/Captures.getMatch.html"},{"doc":"Slice of input prior to the match.","kind":"method","module":"std.regex","name":"pre","package":"phobos","parentType":"Captures","signature":"R pre()","url":"/ddoc/phobos/std/regex/Captures.pre.html"},{"doc":"Slice of input immediately after the match.","kind":"method","module":"std.regex","name":"post","package":"phobos","parentType":"Captures","signature":"R post()","url":"/ddoc/phobos/std/regex/Captures.post.html"},{"doc":"Slice of matched portion of input.","kind":"method","module":"std.regex","name":"hit","package":"phobos","parentType":"Captures","signature":"R hit()","url":"/ddoc/phobos/std/regex/Captures.hit.html"},{"doc":"Range interface.","kind":"method","module":"std.regex","name":"front","package":"phobos","parentType":"Captures","signature":"R front()","url":"/ddoc/phobos/std/regex/Captures.front.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"back","package":"phobos","parentType":"Captures","signature":"R back()","url":"/ddoc/phobos/std/regex/Captures.back.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"popFront","package":"phobos","parentType":"Captures","signature":"void popFront()","url":"/ddoc/phobos/std/regex/Captures.popFront.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"popBack","package":"phobos","parentType":"Captures","signature":"void popBack()","url":"/ddoc/phobos/std/regex/Captures.popBack.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"empty","package":"phobos","parentType":"Captures","signature":"bool empty()","url":"/ddoc/phobos/std/regex/Captures.empty.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"opIndex","package":"phobos","parentType":"Captures","signature":"inout(R) opIndex()(size_t i)","url":"/ddoc/phobos/std/regex/Captures.opIndex.html"},{"doc":"Explicit cast to bool. Useful as a shorthand for !(x.empty) in if and assert statements.","kind":"method","module":"std.regex","name":"opCast","package":"phobos","parentType":"Captures","signature":"bool opCast(T: bool)()","url":"/ddoc/phobos/std/regex/Captures.opCast.html"},{"doc":"Number of pattern matched counting, where 1 - the first pattern. Returns 0 on no match.","kind":"method","module":"std.regex","name":"whichPattern","package":"phobos","parentType":"Captures","signature":"int whichPattern()","url":"/ddoc/phobos/std/regex/Captures.whichPattern.html"},{"doc":"Lookup named submatch.","kind":"method","module":"std.regex","name":"opIndex","package":"phobos","parentType":"Captures","signature":"R opIndex(String)(String i) if (isSomeString!String)","url":"/ddoc/phobos/std/regex/Captures.opIndex.html"},{"doc":"Number of matches in this object.","kind":"method","module":"std.regex","name":"length","package":"phobos","parentType":"Captures","signature":"size_t length()","url":"/ddoc/phobos/std/regex/Captures.length.html"},{"doc":"A hook for compatibility with original std.regex.","kind":"method","module":"std.regex","name":"captures","package":"phobos","parentType":"Captures","signature":"@property ref captures(){","url":"/ddoc/phobos/std/regex/Captures.captures.html"},{"doc":"A regex engine state, as returned by `match` family of functions.","kind":"struct","module":"std.regex","name":"RegexMatch","package":"phobos","parentType":"","signature":"RegexMatch(R) if (isSomeString!R)","url":"/ddoc/phobos/std/regex.html#RegexMatch"},{"doc":"Shorthands for front.pre, front.post, front.hit.","kind":"method","module":"std.regex","name":"pre","package":"phobos","parentType":"RegexMatch","signature":"R pre()","url":"/ddoc/phobos/std/regex/RegexMatch.pre.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"post","package":"phobos","parentType":"RegexMatch","signature":"R post()","url":"/ddoc/phobos/std/regex/RegexMatch.post.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"hit","package":"phobos","parentType":"RegexMatch","signature":"R hit()","url":"/ddoc/phobos/std/regex/RegexMatch.hit.html"},{"doc":"Functionality for processing subsequent matches of global regexes via range interface: --- import std.regex; auto m = matchAll(\"Hello, world!\", reg...","kind":"method","module":"std.regex","name":"front","package":"phobos","parentType":"RegexMatch","signature":"inout(Captures!R) front()","url":"/ddoc/phobos/std/regex/RegexMatch.front.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"popFront","package":"phobos","parentType":"RegexMatch","signature":"void popFront()","url":"/ddoc/phobos/std/regex/RegexMatch.popFront.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"save","package":"phobos","parentType":"RegexMatch","signature":"auto save(){","url":"/ddoc/phobos/std/regex/RegexMatch.save.html"},{"doc":"Test if this match object is empty.","kind":"method","module":"std.regex","name":"empty","package":"phobos","parentType":"RegexMatch","signature":"bool empty()","url":"/ddoc/phobos/std/regex/RegexMatch.empty.html"},{"doc":"Same as !(x.empty), provided for its convenience  in conditional statements.","kind":"method","module":"std.regex","name":"opCast","package":"phobos","parentType":"RegexMatch","signature":"T opCast(T: bool)(){","url":"/ddoc/phobos/std/regex/RegexMatch.opCast.html"},{"doc":"Same as .front, provided for compatibility with original std.regex.","kind":"method","module":"std.regex","name":"captures","package":"phobos","parentType":"RegexMatch","signature":"inout(Captures!R) captures()","url":"/ddoc/phobos/std/regex/RegexMatch.captures.html"},{"doc":"Splits a string `r` using a regular expression `pat` as a separator.","kind":"struct","module":"std.regex","name":"Splitter","package":"phobos","parentType":"","signature":"Splitter(Flag!\"keepSeparators\" keepSeparators =  No.keepSeparators,  Range,  alias  RegEx =  Regex) if (isSomeString!Range &&  isRegexFor!(RegEx,  Range))","url":"/ddoc/phobos/std/regex.html#Splitter"},{"doc":"","kind":"method","module":"std.regex","name":"opSlice","package":"phobos","parentType":"Splitter","signature":"auto ref opSlice()","url":"/ddoc/phobos/std/regex/Splitter.opSlice.html"},{"doc":"Forward range primitives.","kind":"method","module":"std.regex","name":"front","package":"phobos","parentType":"Splitter","signature":"Range front()","url":"/ddoc/phobos/std/regex/Splitter.front.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"empty","package":"phobos","parentType":"Splitter","signature":"bool empty()","url":"/ddoc/phobos/std/regex/Splitter.empty.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"popFront","package":"phobos","parentType":"Splitter","signature":"void popFront()","url":"/ddoc/phobos/std/regex/Splitter.popFront.html"},{"doc":"ditto","kind":"method","module":"std.regex","name":"save","package":"phobos","parentType":"Splitter","signature":"@property auto save()","url":"/ddoc/phobos/std/regex/Splitter.save.html"},{"doc":"Exception object thrown in case of errors during regex compilation.","kind":"alias","module":"std.regex","name":"RegexException","package":"phobos","parentType":"","signature":"RegexException = std.regex.internal.ir.RegexException","url":"/ddoc/phobos/std/regex.html#RegexException"},{"doc":"","kind":"template","module":"std.regex","name":"ctRegexImpl","package":"phobos","parentType":"","signature":"ctRegexImpl(alias  pattern,  string flags = \"\")","url":"/ddoc/phobos/std/regex.html#ctRegexImpl"},{"doc":"","kind":"function","module":"std.regex","name":"func","package":"phobos","parentType":"","signature":"bool func(BacktrackingMatcher!Char matcher)","url":"/ddoc/phobos/std/regex.html#ctRegexImpl"},{"doc":"Signals and Slots are an implementation of the Observer Pattern. Essentially, when a Signal is emitted, a list of connected Observers (called slots...","kind":"module","module":"std.signals","name":"std.signals","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/signals.html"},{"doc":"","kind":"function","module":"std.signals","name":"_d_toObject","package":"phobos","parentType":"","signature":"Object _d_toObject(void *  p)","url":"/ddoc/phobos/std/signals/_d_toObject.html"},{"doc":"","kind":"function","module":"std.signals","name":"rt_attachDisposeEvent","package":"phobos","parentType":"","signature":"void rt_attachDisposeEvent(  Object obj,  DisposeEvt evt )","url":"/ddoc/phobos/std/signals/rt_attachDisposeEvent.html"},{"doc":"","kind":"function","module":"std.signals","name":"rt_detachDisposeEvent","package":"phobos","parentType":"","signature":"void rt_detachDisposeEvent(  Object obj,  DisposeEvt evt )","url":"/ddoc/phobos/std/signals/rt_detachDisposeEvent.html"},{"doc":"","kind":"function","module":"std.signals","name":"linkin","package":"phobos","parentType":"","signature":"void linkin()","url":"/ddoc/phobos/std/signals/linkin.html"},{"doc":"","kind":"alias","module":"std.signals","name":"DisposeEvt","package":"phobos","parentType":"","signature":"DisposeEvt = void  delegate(Object)","url":"/ddoc/phobos/std/signals.html#DisposeEvt"},{"doc":"Socket primitives. Example: See [listener.d](https://github.com/dlang/undeaD/blob/master/dmdsamples/listener.d) and [htmlget.d](https://github.com/...","kind":"module","module":"std.socket","name":"std.socket","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/socket.html"},{"doc":"","kind":"function","module":"std.socket","name":"formatSocketError","package":"phobos","parentType":"","signature":"string formatSocketError(int  err)","url":"/ddoc/phobos/std/socket/formatSocketError.html"},{"doc":"Returns the error message of the most recently encountered network error.","kind":"function","module":"std.socket","name":"lastSocketError","package":"phobos","parentType":"","signature":"string lastSocketError()","url":"/ddoc/phobos/std/socket/lastSocketError.html"},{"doc":"Returns: `true` if the last socket operation failed because the socket was in non-blocking mode and the operation would have blocked, or if the soc...","kind":"function","module":"std.socket","name":"wouldHaveBlocked","package":"phobos","parentType":"","signature":"bool wouldHaveBlocked()","url":"/ddoc/phobos/std/socket/wouldHaveBlocked.html"},{"doc":"On POSIX, getaddrinfo uses its own error codes, and thus has its own formatting function.","kind":"function","module":"std.socket","name":"formatGaiError","package":"phobos","parentType":"","signature":"string formatGaiError(int  err)","url":"/ddoc/phobos/std/socket/formatGaiError.html"},{"doc":"Provides _protocol-independent translation from host names to socket addresses. If advanced functionality is not required, consider using `getAddre...","kind":"function","module":"std.socket","name":"getAddressInfo","package":"phobos","parentType":"","signature":"AddressInfo[] getAddressInfo(T...)(scope  const(char)[]  node,  scope  T options)","url":"/ddoc/phobos/std/socket/getAddressInfo.html"},{"doc":"","kind":"function","module":"std.socket","name":"getAddressInfoImpl","package":"phobos","parentType":"","signature":"AddressInfo[] getAddressInfoImpl(scope  const(char)[]  node,  scope  const(char)[]  service,  addrinfo *  hints)","url":"/ddoc/phobos/std/socket/getAddressInfoImpl.html"},{"doc":"","kind":"function","module":"std.socket","name":"serviceToPort","package":"phobos","parentType":"","signature":"ushort serviceToPort(scope  const(char)[]  service)","url":"/ddoc/phobos/std/socket/serviceToPort.html"},{"doc":"Provides _protocol-independent translation from host names to socket addresses. Uses `getAddressInfo` if the current system supports it, and `Inter...","kind":"function","module":"std.socket","name":"getAddress","package":"phobos","parentType":"","signature":"Address[] getAddress(scope  const(char)[]  hostname,  scope  const(char)[]  service =  null)","url":"/ddoc/phobos/std/socket/getAddress.html"},{"doc":"ditto","kind":"function","module":"std.socket","name":"getAddress","package":"phobos","parentType":"","signature":"Address[] getAddress(scope  const(char)[]  hostname,  ushort  port)","url":"/ddoc/phobos/std/socket/getAddress.html"},{"doc":"Provides _protocol-independent parsing of network addresses. Does not attempt name resolution. Uses `getAddressInfo` with `AddressInfoFlags.NUMERIC...","kind":"function","module":"std.socket","name":"parseAddress","package":"phobos","parentType":"","signature":"Address parseAddress(scope  const(char)[]  hostaddr,  scope  const(char)[]  service =  null)","url":"/ddoc/phobos/std/socket/parseAddress.html"},{"doc":"ditto","kind":"function","module":"std.socket","name":"parseAddress","package":"phobos","parentType":"","signature":"Address parseAddress(scope  const(char)[]  hostaddr,  ushort  port)","url":"/ddoc/phobos/std/socket/parseAddress.html"},{"doc":"Creates a pair of connected sockets.","kind":"function","module":"std.socket","name":"socketPair","package":"phobos","parentType":"","signature":"Socket[2] socketPair()","url":"/ddoc/phobos/std/socket/socketPair.html"},{"doc":"Base exception thrown by `std.socket`.","kind":"class","module":"std.socket","name":"SocketException","package":"phobos","parentType":"","signature":"SocketException : Exception","url":"/ddoc/phobos/std/socket.html#SocketException"},{"doc":"Socket exception representing network errors reported by the operating system.","kind":"class","module":"std.socket","name":"SocketOSException","package":"phobos","parentType":"","signature":"SocketOSException : SocketException","url":"/ddoc/phobos/std/socket.html#SocketOSException"},{"doc":"Socket exception representing invalid parameters specified by user code.","kind":"class","module":"std.socket","name":"SocketParameterException","package":"phobos","parentType":"","signature":"SocketParameterException : SocketException","url":"/ddoc/phobos/std/socket.html#SocketParameterException"},{"doc":"Socket exception representing attempts to use network capabilities not available on the current system.","kind":"class","module":"std.socket","name":"SocketFeatureException","package":"phobos","parentType":"","signature":"SocketFeatureException : SocketException","url":"/ddoc/phobos/std/socket.html#SocketFeatureException"},{"doc":"The communication domain used to resolve an address.","kind":"enum","module":"std.socket","name":"AddressFamily","package":"phobos","parentType":"","signature":"AddressFamily : ushort","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Unspecified address family","kind":"enum_member","module":"std.socket","name":"UNSPEC","package":"phobos","parentType":"","signature":"UNSPEC = AF_UNSPEC","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Local communication (Unix socket)","kind":"enum_member","module":"std.socket","name":"UNIX","package":"phobos","parentType":"","signature":"UNIX = AF_UNIX","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Internet Protocol version 4","kind":"enum_member","module":"std.socket","name":"INET","package":"phobos","parentType":"","signature":"INET = AF_INET","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Novell IPX","kind":"enum_member","module":"std.socket","name":"IPX","package":"phobos","parentType":"","signature":"IPX = AF_IPX","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"AppleTalk","kind":"enum_member","module":"std.socket","name":"APPLETALK","package":"phobos","parentType":"","signature":"APPLETALK = AF_APPLETALK","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Internet Protocol version 6","kind":"enum_member","module":"std.socket","name":"INET6","package":"phobos","parentType":"","signature":"INET6 = AF_INET6","url":"/ddoc/phobos/std/socket.html#AddressFamily"},{"doc":"Communication semantics","kind":"enum","module":"std.socket","name":"SocketType","package":"phobos","parentType":"","signature":"SocketType : int","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Sequenced, reliable, two-way communication-based byte streams","kind":"enum_member","module":"std.socket","name":"STREAM","package":"phobos","parentType":"","signature":"STREAM = SOCK_STREAM","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Connectionless, unreliable datagrams with a fixed maximum length; data may be lost or arrive out of order","kind":"enum_member","module":"std.socket","name":"DGRAM","package":"phobos","parentType":"","signature":"DGRAM = SOCK_DGRAM","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Raw protocol access","kind":"enum_member","module":"std.socket","name":"RAW","package":"phobos","parentType":"","signature":"RAW = SOCK_RAW","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Reliably-delivered message datagrams","kind":"enum_member","module":"std.socket","name":"RDM","package":"phobos","parentType":"","signature":"RDM = SOCK_RDM","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Sequenced, reliable, two-way connection-based datagrams with a fixed maximum length","kind":"enum_member","module":"std.socket","name":"SEQPACKET","package":"phobos","parentType":"","signature":"SEQPACKET = SOCK_SEQPACKET","url":"/ddoc/phobos/std/socket.html#SocketType"},{"doc":"Protocol","kind":"enum","module":"std.socket","name":"ProtocolType","package":"phobos","parentType":"","signature":"ProtocolType : int","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Internet Protocol version 4","kind":"enum_member","module":"std.socket","name":"IP","package":"phobos","parentType":"","signature":"IP = IPPROTO_IP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Internet Control Message Protocol","kind":"enum_member","module":"std.socket","name":"ICMP","package":"phobos","parentType":"","signature":"ICMP = IPPROTO_ICMP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Internet Group Management Protocol","kind":"enum_member","module":"std.socket","name":"IGMP","package":"phobos","parentType":"","signature":"IGMP = IPPROTO_IGMP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Gateway to Gateway Protocol","kind":"enum_member","module":"std.socket","name":"GGP","package":"phobos","parentType":"","signature":"GGP = IPPROTO_GGP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Transmission Control Protocol","kind":"enum_member","module":"std.socket","name":"TCP","package":"phobos","parentType":"","signature":"TCP = IPPROTO_TCP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"PARC Universal Packet Protocol","kind":"enum_member","module":"std.socket","name":"PUP","package":"phobos","parentType":"","signature":"PUP = IPPROTO_PUP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"User Datagram Protocol","kind":"enum_member","module":"std.socket","name":"UDP","package":"phobos","parentType":"","signature":"UDP = IPPROTO_UDP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Xerox NS protocol","kind":"enum_member","module":"std.socket","name":"IDP","package":"phobos","parentType":"","signature":"IDP = IPPROTO_IDP","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Raw IP packets","kind":"enum_member","module":"std.socket","name":"RAW","package":"phobos","parentType":"","signature":"RAW = IPPROTO_RAW","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Internet Protocol version 6","kind":"enum_member","module":"std.socket","name":"IPV6","package":"phobos","parentType":"","signature":"IPV6 = IPPROTO_IPV6","url":"/ddoc/phobos/std/socket.html#ProtocolType"},{"doc":"Class for retrieving protocol information.","kind":"class","module":"std.socket","name":"Protocol","package":"phobos","parentType":"","signature":"Protocol","url":"/ddoc/phobos/std/socket.html#Protocol"},{"doc":"","kind":"method","module":"std.socket","name":"populate","package":"phobos","parentType":"Protocol","signature":"void populate(protoent *  proto)","url":"/ddoc/phobos/std/socket/Protocol.populate.html"},{"doc":"Returns: false on failure","kind":"method","module":"std.socket","name":"getProtocolByName","package":"phobos","parentType":"Protocol","signature":"bool getProtocolByName(scope  const(char)[]  name)","url":"/ddoc/phobos/std/socket/Protocol.getProtocolByName.html"},{"doc":"Returns: false on failure","kind":"method","module":"std.socket","name":"getProtocolByType","package":"phobos","parentType":"Protocol","signature":"bool getProtocolByType(ProtocolType type)","url":"/ddoc/phobos/std/socket/Protocol.getProtocolByType.html"},{"doc":"Class for retrieving service information.","kind":"class","module":"std.socket","name":"Service","package":"phobos","parentType":"","signature":"Service","url":"/ddoc/phobos/std/socket.html#Service"},{"doc":"","kind":"method","module":"std.socket","name":"populate","package":"phobos","parentType":"Service","signature":"void populate(servent *  serv)","url":"/ddoc/phobos/std/socket/Service.populate.html"},{"doc":"If a protocol name is omitted, any protocol will be matched. Returns: false on failure.","kind":"method","module":"std.socket","name":"getServiceByName","package":"phobos","parentType":"Service","signature":"bool getServiceByName(scope  const(char)[]  name,  scope  const(char)[]  protocolName =  null)","url":"/ddoc/phobos/std/socket/Service.getServiceByName.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"getServiceByPort","package":"phobos","parentType":"Service","signature":"bool getServiceByPort(ushort  port,  scope  const(char)[]  protocolName =  null)","url":"/ddoc/phobos/std/socket/Service.getServiceByPort.html"},{"doc":"Class for exceptions thrown from an `InternetHost`.","kind":"class","module":"std.socket","name":"HostException","package":"phobos","parentType":"","signature":"HostException : SocketOSException","url":"/ddoc/phobos/std/socket.html#HostException"},{"doc":"Class for resolving IPv4 addresses.","kind":"class","module":"std.socket","name":"InternetHost","package":"phobos","parentType":"","signature":"InternetHost","url":"/ddoc/phobos/std/socket.html#InternetHost"},{"doc":"","kind":"method","module":"std.socket","name":"validHostent","package":"phobos","parentType":"InternetHost","signature":"void validHostent(in  hostent *  he)","url":"/ddoc/phobos/std/socket/InternetHost.validHostent.html"},{"doc":"","kind":"method","module":"std.socket","name":"populate","package":"phobos","parentType":"InternetHost","signature":"void populate(hostent *  he)","url":"/ddoc/phobos/std/socket/InternetHost.populate.html"},{"doc":"","kind":"method","module":"std.socket","name":"getHostNoSync","package":"phobos","parentType":"InternetHost","signature":"bool getHostNoSync(string opMixin,  T)(T param)","url":"/ddoc/phobos/std/socket/InternetHost.getHostNoSync.html"},{"doc":"Resolve host name. Returns: false if unable to resolve.","kind":"method","module":"std.socket","name":"getHostByName","package":"phobos","parentType":"InternetHost","signature":"bool getHostByName(scope  const(char)[]  name)","url":"/ddoc/phobos/std/socket/InternetHost.getHostByName.html"},{"doc":"Resolve IPv4 address number.","kind":"method","module":"std.socket","name":"getHostByAddr","package":"phobos","parentType":"InternetHost","signature":"bool getHostByAddr(uint  addr)","url":"/ddoc/phobos/std/socket/InternetHost.getHostByAddr.html"},{"doc":"Same as previous, but addr is an IPv4 address string in the dotted-decimal form $(I a.b.c.d). Returns: false if unable to resolve.","kind":"method","module":"std.socket","name":"getHostByAddr","package":"phobos","parentType":"InternetHost","signature":"bool getHostByAddr(scope  const(char)[]  addr)","url":"/ddoc/phobos/std/socket/InternetHost.getHostByAddr.html"},{"doc":"Holds information about a socket _address retrieved by `getAddressInfo`.","kind":"struct","module":"std.socket","name":"AddressInfo","package":"phobos","parentType":"","signature":"AddressInfo","url":"/ddoc/phobos/std/socket.html#AddressInfo"},{"doc":"A subset of flags supported on all platforms with getaddrinfo. Specifies option flags for `getAddressInfo`.","kind":"enum","module":"std.socket","name":"AddressInfoFlags","package":"phobos","parentType":"","signature":"AddressInfoFlags : int","url":"/ddoc/phobos/std/socket.html#AddressInfoFlags"},{"doc":"The resulting addresses will be used in a call to `Socket.bind`.","kind":"enum_member","module":"std.socket","name":"PASSIVE","package":"phobos","parentType":"","signature":"PASSIVE = AI_PASSIVE","url":"/ddoc/phobos/std/socket.html#AddressInfoFlags"},{"doc":"The canonical name is returned in `canonicalName` member in the first `AddressInfo`.","kind":"enum_member","module":"std.socket","name":"CANONNAME","package":"phobos","parentType":"","signature":"CANONNAME = AI_CANONNAME","url":"/ddoc/phobos/std/socket.html#AddressInfoFlags"},{"doc":"The `node` parameter passed to `getAddressInfo` must be a numeric string. This will suppress any potentially lengthy network host address lookups.","kind":"enum_member","module":"std.socket","name":"NUMERICHOST","package":"phobos","parentType":"","signature":"NUMERICHOST = AI_NUMERICHOST","url":"/ddoc/phobos/std/socket.html#AddressInfoFlags"},{"doc":"Class for exceptions thrown from an `Address`.","kind":"class","module":"std.socket","name":"AddressException","package":"phobos","parentType":"","signature":"AddressException : SocketOSException","url":"/ddoc/phobos/std/socket.html#AddressException"},{"doc":"Abstract class for representing a socket address.","kind":"class","module":"std.socket","name":"Address","package":"phobos","parentType":"","signature":"Address","url":"/ddoc/phobos/std/socket.html#Address"},{"doc":"Returns pointer to underlying `sockaddr` structure.","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"Address","signature":"sockaddr * name()","url":"/ddoc/phobos/std/socket/Address.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"Address","signature":"const(sockaddr) * name()","url":"/ddoc/phobos/std/socket/Address.name.html"},{"doc":"Returns actual size of underlying `sockaddr` structure.","kind":"method","module":"std.socket","name":"nameLen","package":"phobos","parentType":"Address","signature":"socklen_t nameLen()","url":"/ddoc/phobos/std/socket/Address.nameLen.html"},{"doc":"","kind":"method","module":"std.socket","name":"setNameLen","package":"phobos","parentType":"Address","signature":"void setNameLen(socklen_t len)","url":"/ddoc/phobos/std/socket/Address.setNameLen.html"},{"doc":"Family of this address.","kind":"method","module":"std.socket","name":"addressFamily","package":"phobos","parentType":"Address","signature":"AddressFamily addressFamily()","url":"/ddoc/phobos/std/socket/Address.addressFamily.html"},{"doc":"","kind":"method","module":"std.socket","name":"toHostString","package":"phobos","parentType":"Address","signature":"string toHostString(bool  numeric)","url":"/ddoc/phobos/std/socket/Address.toHostString.html"},{"doc":"","kind":"method","module":"std.socket","name":"toServiceString","package":"phobos","parentType":"Address","signature":"string toServiceString(bool  numeric)","url":"/ddoc/phobos/std/socket/Address.toServiceString.html"},{"doc":"Attempts to retrieve the host address as a human-readable string.","kind":"method","module":"std.socket","name":"toAddrString","package":"phobos","parentType":"Address","signature":"string toAddrString()","url":"/ddoc/phobos/std/socket/Address.toAddrString.html"},{"doc":"Attempts to retrieve the host name as a fully qualified domain name.","kind":"method","module":"std.socket","name":"toHostNameString","package":"phobos","parentType":"Address","signature":"string toHostNameString()","url":"/ddoc/phobos/std/socket/Address.toHostNameString.html"},{"doc":"Attempts to retrieve the numeric port number as a string.","kind":"method","module":"std.socket","name":"toPortString","package":"phobos","parentType":"Address","signature":"string toPortString()","url":"/ddoc/phobos/std/socket/Address.toPortString.html"},{"doc":"Attempts to retrieve the service name as a string.","kind":"method","module":"std.socket","name":"toServiceNameString","package":"phobos","parentType":"Address","signature":"string toServiceNameString()","url":"/ddoc/phobos/std/socket/Address.toServiceNameString.html"},{"doc":"Human readable string representing this address.","kind":"method","module":"std.socket","name":"toString","package":"phobos","parentType":"Address","signature":"string toString()","url":"/ddoc/phobos/std/socket/Address.toString.html"},{"doc":"Encapsulates an unknown socket address.","kind":"class","module":"std.socket","name":"UnknownAddress","package":"phobos","parentType":"","signature":"UnknownAddress : Address","url":"/ddoc/phobos/std/socket.html#UnknownAddress"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"UnknownAddress","signature":"sockaddr * name()","url":"/ddoc/phobos/std/socket/UnknownAddress.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"UnknownAddress","signature":"const(sockaddr) * name()","url":"/ddoc/phobos/std/socket/UnknownAddress.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"nameLen","package":"phobos","parentType":"UnknownAddress","signature":"socklen_t nameLen()","url":"/ddoc/phobos/std/socket/UnknownAddress.nameLen.html"},{"doc":"Encapsulates a reference to an arbitrary socket address.","kind":"class","module":"std.socket","name":"UnknownAddressReference","package":"phobos","parentType":"","signature":"UnknownAddressReference : Address","url":"/ddoc/phobos/std/socket.html#UnknownAddressReference"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"UnknownAddressReference","signature":"sockaddr * name()","url":"/ddoc/phobos/std/socket/UnknownAddressReference.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"UnknownAddressReference","signature":"const(sockaddr) * name()","url":"/ddoc/phobos/std/socket/UnknownAddressReference.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"nameLen","package":"phobos","parentType":"UnknownAddressReference","signature":"socklen_t nameLen()","url":"/ddoc/phobos/std/socket/UnknownAddressReference.nameLen.html"},{"doc":"Encapsulates an IPv4 (Internet Protocol version 4) socket address.","kind":"class","module":"std.socket","name":"InternetAddress","package":"phobos","parentType":"","signature":"InternetAddress : Address","url":"/ddoc/phobos/std/socket.html#InternetAddress"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"InternetAddress","signature":"sockaddr * name()","url":"/ddoc/phobos/std/socket/InternetAddress.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"InternetAddress","signature":"const(sockaddr) * name()","url":"/ddoc/phobos/std/socket/InternetAddress.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"nameLen","package":"phobos","parentType":"InternetAddress","signature":"socklen_t nameLen()","url":"/ddoc/phobos/std/socket/InternetAddress.nameLen.html"},{"doc":"Returns the IPv4 _port number (in host byte order).","kind":"method","module":"std.socket","name":"port","package":"phobos","parentType":"InternetAddress","signature":"ushort port()","url":"/ddoc/phobos/std/socket/InternetAddress.port.html"},{"doc":"Returns the IPv4 address number (in host byte order).","kind":"method","module":"std.socket","name":"addr","package":"phobos","parentType":"InternetAddress","signature":"uint addr()","url":"/ddoc/phobos/std/socket/InternetAddress.addr.html"},{"doc":"Human readable string representing the IPv4 address in dotted-decimal form.","kind":"method","module":"std.socket","name":"toAddrString","package":"phobos","parentType":"InternetAddress","signature":"string toAddrString()","url":"/ddoc/phobos/std/socket/InternetAddress.toAddrString.html"},{"doc":"Human readable string representing the IPv4 port.","kind":"method","module":"std.socket","name":"toPortString","package":"phobos","parentType":"InternetAddress","signature":"string toPortString()","url":"/ddoc/phobos/std/socket/InternetAddress.toPortString.html"},{"doc":"Attempts to retrieve the host name as a fully qualified domain name.","kind":"method","module":"std.socket","name":"toHostNameString","package":"phobos","parentType":"InternetAddress","signature":"string toHostNameString()","url":"/ddoc/phobos/std/socket/InternetAddress.toHostNameString.html"},{"doc":"Provides support for comparing equality with another InternetAddress of the same type. Returns: true if the InternetAddresses share the same addres...","kind":"method","module":"std.socket","name":"opEquals","package":"phobos","parentType":"InternetAddress","signature":"bool opEquals(Object o)","url":"/ddoc/phobos/std/socket/InternetAddress.opEquals.html"},{"doc":"Parse an IPv4 address string in the dotted-decimal form $(I a.b.c.d) and return the number. Returns: If the string is not a legitimate IPv4 address...","kind":"method","module":"std.socket","name":"parse","package":"phobos","parentType":"InternetAddress","signature":"uint parse(scope  const(char)[]  addr)","url":"/ddoc/phobos/std/socket/InternetAddress.parse.html"},{"doc":"Convert an IPv4 address number in host byte order to a human readable string representing the IPv4 address in dotted-decimal form.","kind":"method","module":"std.socket","name":"addrToString","package":"phobos","parentType":"InternetAddress","signature":"string addrToString(uint  addr)","url":"/ddoc/phobos/std/socket/InternetAddress.addrToString.html"},{"doc":"Encapsulates an IPv6 (Internet Protocol version 6) socket address.","kind":"class","module":"std.socket","name":"Internet6Address","package":"phobos","parentType":"","signature":"Internet6Address : Address","url":"/ddoc/phobos/std/socket.html#Internet6Address"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"Internet6Address","signature":"sockaddr * name()","url":"/ddoc/phobos/std/socket/Internet6Address.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"name","package":"phobos","parentType":"Internet6Address","signature":"const(sockaddr) * name()","url":"/ddoc/phobos/std/socket/Internet6Address.name.html"},{"doc":"","kind":"method","module":"std.socket","name":"nameLen","package":"phobos","parentType":"Internet6Address","signature":"socklen_t nameLen()","url":"/ddoc/phobos/std/socket/Internet6Address.nameLen.html"},{"doc":"Any IPv6 host address.","kind":"method","module":"std.socket","name":"ADDR_ANY","package":"phobos","parentType":"Internet6Address","signature":"const(ubyte)[16] ADDR_ANY()","url":"/ddoc/phobos/std/socket/Internet6Address.ADDR_ANY.html"},{"doc":"Returns the IPv6 port number.","kind":"method","module":"std.socket","name":"port","package":"phobos","parentType":"Internet6Address","signature":"ushort port()","url":"/ddoc/phobos/std/socket/Internet6Address.port.html"},{"doc":"Returns the IPv6 address.","kind":"method","module":"std.socket","name":"addr","package":"phobos","parentType":"Internet6Address","signature":"ubyte[16] addr()","url":"/ddoc/phobos/std/socket/Internet6Address.addr.html"},{"doc":"Parse an IPv6 host address string as described in RFC 2373, and return the address. Throws: `SocketException` on error.","kind":"method","module":"std.socket","name":"parse","package":"phobos","parentType":"Internet6Address","signature":"ubyte[16] parse(scope  const(char)[]  addr)","url":"/ddoc/phobos/std/socket/Internet6Address.parse.html"},{"doc":"Exception thrown by `Socket.accept`.","kind":"class","module":"std.socket","name":"SocketAcceptException","package":"phobos","parentType":"","signature":"SocketAcceptException : SocketOSException","url":"/ddoc/phobos/std/socket.html#SocketAcceptException"},{"doc":"How a socket is shutdown:","kind":"enum","module":"std.socket","name":"SocketShutdown","package":"phobos","parentType":"","signature":"SocketShutdown : int","url":"/ddoc/phobos/std/socket.html#SocketShutdown"},{"doc":"socket receives are disallowed","kind":"enum_member","module":"std.socket","name":"RECEIVE","package":"phobos","parentType":"","signature":"RECEIVE = SD_RECEIVE","url":"/ddoc/phobos/std/socket.html#SocketShutdown"},{"doc":"socket sends are disallowed","kind":"enum_member","module":"std.socket","name":"SEND","package":"phobos","parentType":"","signature":"SEND = SD_SEND","url":"/ddoc/phobos/std/socket.html#SocketShutdown"},{"doc":"both RECEIVE and SEND","kind":"enum_member","module":"std.socket","name":"BOTH","package":"phobos","parentType":"","signature":"BOTH = SD_BOTH","url":"/ddoc/phobos/std/socket.html#SocketShutdown"},{"doc":"Socket flags that may be OR'ed together:","kind":"enum","module":"std.socket","name":"SocketFlags","package":"phobos","parentType":"","signature":"SocketFlags : int","url":"/ddoc/phobos/std/socket.html#SocketFlags"},{"doc":"no flags specified","kind":"enum_member","module":"std.socket","name":"NONE","package":"phobos","parentType":"","signature":"NONE = 0","url":"/ddoc/phobos/std/socket.html#SocketFlags"},{"doc":"out-of-band stream data","kind":"enum_member","module":"std.socket","name":"OOB","package":"phobos","parentType":"","signature":"OOB = MSG_OOB","url":"/ddoc/phobos/std/socket.html#SocketFlags"},{"doc":"peek at incoming data without removing it from the queue, only for receiving","kind":"enum_member","module":"std.socket","name":"PEEK","package":"phobos","parentType":"","signature":"PEEK = MSG_PEEK","url":"/ddoc/phobos/std/socket.html#SocketFlags"},{"doc":"data should not be subject to routing; this flag may be ignored. Only for sending","kind":"enum_member","module":"std.socket","name":"DONTROUTE","package":"phobos","parentType":"","signature":"DONTROUTE = MSG_DONTROUTE","url":"/ddoc/phobos/std/socket.html#SocketFlags"},{"doc":"Duration timeout value.","kind":"struct","module":"std.socket","name":"TimeVal","package":"phobos","parentType":"","signature":"TimeVal","url":"/ddoc/phobos/std/socket.html#TimeVal"},{"doc":"Number of _seconds.","kind":"method","module":"std.socket","name":"seconds","package":"phobos","parentType":"TimeVal","signature":"inout(tv_sec_t) seconds()","url":"/ddoc/phobos/std/socket/TimeVal.seconds.html"},{"doc":"Number of additional _microseconds.","kind":"method","module":"std.socket","name":"microseconds","package":"phobos","parentType":"TimeVal","signature":"inout(tv_usec_t) microseconds()","url":"/ddoc/phobos/std/socket/TimeVal.microseconds.html"},{"doc":"A collection of sockets for use with `Socket.select`.","kind":"class","module":"std.socket","name":"SocketSet","package":"phobos","parentType":"","signature":"SocketSet","url":"/ddoc/phobos/std/socket.html#SocketSet"},{"doc":"Reset the `SocketSet` so that there are 0 `Socket`s in the collection.","kind":"method","module":"std.socket","name":"reset","package":"phobos","parentType":"SocketSet","signature":"void reset()","url":"/ddoc/phobos/std/socket/SocketSet.reset.html"},{"doc":"","kind":"method","module":"std.socket","name":"add","package":"phobos","parentType":"SocketSet","signature":"void add(socket_t s)","url":"/ddoc/phobos/std/socket/SocketSet.add.html"},{"doc":"Add a `Socket` to the collection. The socket must not already be in the collection.","kind":"method","module":"std.socket","name":"add","package":"phobos","parentType":"SocketSet","signature":"void add(Socket s)","url":"/ddoc/phobos/std/socket/SocketSet.add.html"},{"doc":"","kind":"method","module":"std.socket","name":"remove","package":"phobos","parentType":"SocketSet","signature":"void remove(socket_t s)","url":"/ddoc/phobos/std/socket/SocketSet.remove.html"},{"doc":"Remove this `Socket` from the collection. Does nothing if the socket is not in the collection already.","kind":"method","module":"std.socket","name":"remove","package":"phobos","parentType":"SocketSet","signature":"void remove(Socket s)","url":"/ddoc/phobos/std/socket/SocketSet.remove.html"},{"doc":"","kind":"method","module":"std.socket","name":"isSet","package":"phobos","parentType":"SocketSet","signature":"int isSet(socket_t s)","url":"/ddoc/phobos/std/socket/SocketSet.isSet.html"},{"doc":"Return nonzero if this `Socket` is in the collection.","kind":"method","module":"std.socket","name":"isSet","package":"phobos","parentType":"SocketSet","signature":"int isSet(Socket s)","url":"/ddoc/phobos/std/socket/SocketSet.isSet.html"},{"doc":"Returns: The current capacity of this `SocketSet`. The exact meaning of the return value varies from platform to platform.","kind":"method","module":"std.socket","name":"max","package":"phobos","parentType":"SocketSet","signature":"uint max()","url":"/ddoc/phobos/std/socket/SocketSet.max.html"},{"doc":"","kind":"method","module":"std.socket","name":"toFd_set","package":"phobos","parentType":"SocketSet","signature":"fd_set * toFd_set()","url":"/ddoc/phobos/std/socket/SocketSet.toFd_set.html"},{"doc":"","kind":"method","module":"std.socket","name":"selectn","package":"phobos","parentType":"SocketSet","signature":"int selectn()","url":"/ddoc/phobos/std/socket/SocketSet.selectn.html"},{"doc":"The level at which a socket option is defined:","kind":"enum","module":"std.socket","name":"SocketOptionLevel","package":"phobos","parentType":"","signature":"SocketOptionLevel : int","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Socket level","kind":"enum_member","module":"std.socket","name":"SOCKET","package":"phobos","parentType":"","signature":"SOCKET = SOL_SOCKET","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Internet Protocol version 4 level","kind":"enum_member","module":"std.socket","name":"IP","package":"phobos","parentType":"","signature":"IP = ProtocolType.IP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Internet Control Message Protocol level","kind":"enum_member","module":"std.socket","name":"ICMP","package":"phobos","parentType":"","signature":"ICMP = ProtocolType.ICMP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Internet Group Management Protocol level","kind":"enum_member","module":"std.socket","name":"IGMP","package":"phobos","parentType":"","signature":"IGMP = ProtocolType.IGMP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Gateway to Gateway Protocol level","kind":"enum_member","module":"std.socket","name":"GGP","package":"phobos","parentType":"","signature":"GGP = ProtocolType.GGP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Transmission Control Protocol level","kind":"enum_member","module":"std.socket","name":"TCP","package":"phobos","parentType":"","signature":"TCP = ProtocolType.TCP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"PARC Universal Packet Protocol level","kind":"enum_member","module":"std.socket","name":"PUP","package":"phobos","parentType":"","signature":"PUP = ProtocolType.PUP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"User Datagram Protocol level","kind":"enum_member","module":"std.socket","name":"UDP","package":"phobos","parentType":"","signature":"UDP = ProtocolType.UDP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Xerox NS protocol level","kind":"enum_member","module":"std.socket","name":"IDP","package":"phobos","parentType":"","signature":"IDP = ProtocolType.IDP","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Raw IP packet level","kind":"enum_member","module":"std.socket","name":"RAW","package":"phobos","parentType":"","signature":"RAW = ProtocolType.RAW","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"Internet Protocol version 6 level","kind":"enum_member","module":"std.socket","name":"IPV6","package":"phobos","parentType":"","signature":"IPV6 = ProtocolType.IPV6","url":"/ddoc/phobos/std/socket.html#SocketOptionLevel"},{"doc":"_Linger information for use with SocketOption.LINGER.","kind":"struct","module":"std.socket","name":"Linger","package":"phobos","parentType":"","signature":"Linger","url":"/ddoc/phobos/std/socket.html#Linger"},{"doc":"Nonzero for _on.","kind":"method","module":"std.socket","name":"on","package":"phobos","parentType":"Linger","signature":"inout(l_onoff_t) on()","url":"/ddoc/phobos/std/socket/Linger.on.html"},{"doc":"Linger _time.","kind":"method","module":"std.socket","name":"time","package":"phobos","parentType":"Linger","signature":"inout(l_linger_t) time()","url":"/ddoc/phobos/std/socket/Linger.time.html"},{"doc":"Specifies a socket option:","kind":"enum","module":"std.socket","name":"SocketOption","package":"phobos","parentType":"","signature":"SocketOption : int","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Record debugging information","kind":"enum_member","module":"std.socket","name":"DEBUG","package":"phobos","parentType":"","signature":"DEBUG = SO_DEBUG","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Allow transmission of broadcast messages","kind":"enum_member","module":"std.socket","name":"BROADCAST","package":"phobos","parentType":"","signature":"BROADCAST = SO_BROADCAST","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Allow local reuse of address","kind":"enum_member","module":"std.socket","name":"REUSEADDR","package":"phobos","parentType":"","signature":"REUSEADDR = SO_REUSEADDR","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Allow local reuse of port","kind":"enum_member","module":"std.socket","name":"REUSEPORT","package":"phobos","parentType":"","signature":"REUSEPORT = SO_REUSEPORT","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Linger on close if unsent data is present","kind":"enum_member","module":"std.socket","name":"LINGER","package":"phobos","parentType":"","signature":"LINGER = SO_LINGER","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Receive out-of-band data in band","kind":"enum_member","module":"std.socket","name":"OOBINLINE","package":"phobos","parentType":"","signature":"OOBINLINE = SO_OOBINLINE","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Send buffer size","kind":"enum_member","module":"std.socket","name":"SNDBUF","package":"phobos","parentType":"","signature":"SNDBUF = SO_SNDBUF","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Receive buffer size","kind":"enum_member","module":"std.socket","name":"RCVBUF","package":"phobos","parentType":"","signature":"RCVBUF = SO_RCVBUF","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Do not route","kind":"enum_member","module":"std.socket","name":"DONTROUTE","package":"phobos","parentType":"","signature":"DONTROUTE = SO_DONTROUTE","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Send timeout","kind":"enum_member","module":"std.socket","name":"SNDTIMEO","package":"phobos","parentType":"","signature":"SNDTIMEO = SO_SNDTIMEO","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Receive timeout","kind":"enum_member","module":"std.socket","name":"RCVTIMEO","package":"phobos","parentType":"","signature":"RCVTIMEO = SO_RCVTIMEO","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Retrieve and clear error status","kind":"enum_member","module":"std.socket","name":"ERROR","package":"phobos","parentType":"","signature":"ERROR = SO_ERROR","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Enable keep-alive packets","kind":"enum_member","module":"std.socket","name":"KEEPALIVE","package":"phobos","parentType":"","signature":"KEEPALIVE = SO_KEEPALIVE","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Listen","kind":"enum_member","module":"std.socket","name":"ACCEPTCONN","package":"phobos","parentType":"","signature":"ACCEPTCONN = SO_ACCEPTCONN","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Minimum number of input bytes to process","kind":"enum_member","module":"std.socket","name":"RCVLOWAT","package":"phobos","parentType":"","signature":"RCVLOWAT = SO_RCVLOWAT","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Minimum number of output bytes to process","kind":"enum_member","module":"std.socket","name":"SNDLOWAT","package":"phobos","parentType":"","signature":"SNDLOWAT = SO_SNDLOWAT","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Socket type","kind":"enum_member","module":"std.socket","name":"TYPE","package":"phobos","parentType":"","signature":"TYPE = SO_TYPE","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Disable the Nagle algorithm for send coalescing","kind":"enum_member","module":"std.socket","name":"TCP_NODELAY","package":"phobos","parentType":"","signature":"TCP_NODELAY = .TCP_NODELAY","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"IP unicast hop limit","kind":"enum_member","module":"std.socket","name":"IPV6_UNICAST_HOPS","package":"phobos","parentType":"","signature":"IPV6_UNICAST_HOPS = .IPV6_UNICAST_HOPS","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"IP multicast interface","kind":"enum_member","module":"std.socket","name":"IPV6_MULTICAST_IF","package":"phobos","parentType":"","signature":"IPV6_MULTICAST_IF = .IPV6_MULTICAST_IF","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"IP multicast loopback","kind":"enum_member","module":"std.socket","name":"IPV6_MULTICAST_LOOP","package":"phobos","parentType":"","signature":"IPV6_MULTICAST_LOOP = .IPV6_MULTICAST_LOOP","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"IP multicast hops","kind":"enum_member","module":"std.socket","name":"IPV6_MULTICAST_HOPS","package":"phobos","parentType":"","signature":"IPV6_MULTICAST_HOPS = .IPV6_MULTICAST_HOPS","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Add an IP group membership","kind":"enum_member","module":"std.socket","name":"IPV6_JOIN_GROUP","package":"phobos","parentType":"","signature":"IPV6_JOIN_GROUP = .IPV6_JOIN_GROUP","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Drop an IP group membership","kind":"enum_member","module":"std.socket","name":"IPV6_LEAVE_GROUP","package":"phobos","parentType":"","signature":"IPV6_LEAVE_GROUP = .IPV6_LEAVE_GROUP","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Treat wildcard bind as AF_INET6-only","kind":"enum_member","module":"std.socket","name":"IPV6_V6ONLY","package":"phobos","parentType":"","signature":"IPV6_V6ONLY = .IPV6_V6ONLY","url":"/ddoc/phobos/std/socket.html#SocketOption"},{"doc":"Class that creates a network communication endpoint using the Berkeley sockets interface.","kind":"class","module":"std.socket","name":"Socket","package":"phobos","parentType":"","signature":"Socket","url":"/ddoc/phobos/std/socket.html#Socket"},{"doc":"","kind":"method","module":"std.socket","name":"setSock","package":"phobos","parentType":"Socket","signature":"void setSock(socket_t handle)","url":"/ddoc/phobos/std/socket/Socket.setSock.html"},{"doc":"Get underlying socket handle.","kind":"method","module":"std.socket","name":"handle","package":"phobos","parentType":"Socket","signature":"socket_t handle()","url":"/ddoc/phobos/std/socket/Socket.handle.html"},{"doc":"Releases the underlying socket handle from the Socket object. Once it is released, you cannot use the Socket object's methods anymore. This also me...","kind":"method","module":"std.socket","name":"release","package":"phobos","parentType":"Socket","signature":"socket_t release()","url":"/ddoc/phobos/std/socket/Socket.release.html"},{"doc":"Get/set socket's blocking flag.","kind":"method","module":"std.socket","name":"blocking","package":"phobos","parentType":"Socket","signature":"bool blocking()","url":"/ddoc/phobos/std/socket/Socket.blocking.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"blocking","package":"phobos","parentType":"Socket","signature":"void blocking(bool  byes)","url":"/ddoc/phobos/std/socket/Socket.blocking.html"},{"doc":"Get the socket's address family.","kind":"method","module":"std.socket","name":"addressFamily","package":"phobos","parentType":"Socket","signature":"AddressFamily addressFamily()","url":"/ddoc/phobos/std/socket/Socket.addressFamily.html"},{"doc":"Property that indicates if this is a valid, alive socket.","kind":"method","module":"std.socket","name":"isAlive","package":"phobos","parentType":"Socket","signature":"bool isAlive()","url":"/ddoc/phobos/std/socket/Socket.isAlive.html"},{"doc":"Associate a local address with this socket.","kind":"method","module":"std.socket","name":"bind","package":"phobos","parentType":"Socket","signature":"void bind(Address addr)","url":"/ddoc/phobos/std/socket/Socket.bind.html"},{"doc":"Establish a connection. If the socket is blocking, connect waits for the connection to be made. If the socket is nonblocking, connect returns immed...","kind":"method","module":"std.socket","name":"connect","package":"phobos","parentType":"Socket","signature":"void connect(Address to)","url":"/ddoc/phobos/std/socket/Socket.connect.html"},{"doc":"Listen for an incoming connection. `bind` must be called before you can `listen`. The `backlog` is a request of how many pending incoming connectio...","kind":"method","module":"std.socket","name":"listen","package":"phobos","parentType":"Socket","signature":"void listen(int  backlog)","url":"/ddoc/phobos/std/socket/Socket.listen.html"},{"doc":"Called by `accept` when a new `Socket` must be created for a new connection. To use a derived class, override this method and return an instance of...","kind":"method","module":"std.socket","name":"accepting","package":"phobos","parentType":"Socket","signature":"Socket accepting()","url":"/ddoc/phobos/std/socket/Socket.accepting.html"},{"doc":"Accept an incoming connection. If the socket is blocking, `accept` waits for a connection request. Throws `SocketAcceptException` if unable to _acc...","kind":"method","module":"std.socket","name":"accept","package":"phobos","parentType":"Socket","signature":"Socket accept()","url":"/ddoc/phobos/std/socket/Socket.accept.html"},{"doc":"Disables sends and/or receives.","kind":"method","module":"std.socket","name":"shutdown","package":"phobos","parentType":"Socket","signature":"void shutdown(SocketShutdown how)","url":"/ddoc/phobos/std/socket/Socket.shutdown.html"},{"doc":"","kind":"method","module":"std.socket","name":"_close","package":"phobos","parentType":"Socket","signature":"void _close(socket_t sock)","url":"/ddoc/phobos/std/socket/Socket._close.html"},{"doc":"Immediately drop any connections and release socket resources. The `Socket` object is no longer usable after `close`. Calling `shutdown` before `cl...","kind":"method","module":"std.socket","name":"close","package":"phobos","parentType":"Socket","signature":"void close()","url":"/ddoc/phobos/std/socket/Socket.close.html"},{"doc":"Returns: The local machine's host name","kind":"method","module":"std.socket","name":"hostName","package":"phobos","parentType":"Socket","signature":"string hostName()","url":"/ddoc/phobos/std/socket/Socket.hostName.html"},{"doc":"Remote endpoint `Address`.","kind":"method","module":"std.socket","name":"remoteAddress","package":"phobos","parentType":"Socket","signature":"Address remoteAddress()","url":"/ddoc/phobos/std/socket/Socket.remoteAddress.html"},{"doc":"Local endpoint `Address`.","kind":"method","module":"std.socket","name":"localAddress","package":"phobos","parentType":"Socket","signature":"Address localAddress()","url":"/ddoc/phobos/std/socket/Socket.localAddress.html"},{"doc":"","kind":"method","module":"std.socket","name":"capToInt","package":"phobos","parentType":"Socket","signature":"int capToInt(size_t size)","url":"/ddoc/phobos/std/socket/Socket.capToInt.html"},{"doc":"Send data on the connection. If the socket is blocking and there is no buffer space left, `send` waits. Returns: The number of bytes actually sent,...","kind":"method","module":"std.socket","name":"send","package":"phobos","parentType":"Socket","signature":"ptrdiff_t send(scope  const(void)[]  buf,  SocketFlags flags)","url":"/ddoc/phobos/std/socket/Socket.send.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"send","package":"phobos","parentType":"Socket","signature":"ptrdiff_t send(scope  const(void)[]  buf)","url":"/ddoc/phobos/std/socket/Socket.send.html"},{"doc":"Send data to a specific destination Address. If the destination address is not specified, a connection must have been made and that address is used...","kind":"method","module":"std.socket","name":"sendTo","package":"phobos","parentType":"Socket","signature":"ptrdiff_t sendTo(scope  const(void)[]  buf,  SocketFlags flags,  Address to)","url":"/ddoc/phobos/std/socket/Socket.sendTo.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"sendTo","package":"phobos","parentType":"Socket","signature":"ptrdiff_t sendTo(scope  const(void)[]  buf,  Address to)","url":"/ddoc/phobos/std/socket/Socket.sendTo.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"sendTo","package":"phobos","parentType":"Socket","signature":"ptrdiff_t sendTo(scope  const(void)[]  buf,  SocketFlags flags)","url":"/ddoc/phobos/std/socket/Socket.sendTo.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"sendTo","package":"phobos","parentType":"Socket","signature":"ptrdiff_t sendTo(scope  const(void)[]  buf)","url":"/ddoc/phobos/std/socket/Socket.sendTo.html"},{"doc":"Receive data on the connection. If the socket is blocking, `receive` waits until there is data to be received. Returns: The number of bytes actuall...","kind":"method","module":"std.socket","name":"receive","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receive(scope  void[]  buf,  SocketFlags flags)","url":"/ddoc/phobos/std/socket/Socket.receive.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"receive","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receive(scope  void[]  buf)","url":"/ddoc/phobos/std/socket/Socket.receive.html"},{"doc":"Receive data and get the remote endpoint `Address`. If the socket is blocking, `receiveFrom` waits until there is data to be received. Returns: The...","kind":"method","module":"std.socket","name":"receiveFrom","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receiveFrom(scope  void[]  buf,  SocketFlags flags,  ref  Address from)","url":"/ddoc/phobos/std/socket/Socket.receiveFrom.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"receiveFrom","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receiveFrom(scope  void[]  buf,  ref  Address from)","url":"/ddoc/phobos/std/socket/Socket.receiveFrom.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"receiveFrom","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receiveFrom(scope  void[]  buf,  SocketFlags flags)","url":"/ddoc/phobos/std/socket/Socket.receiveFrom.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"receiveFrom","package":"phobos","parentType":"Socket","signature":"ptrdiff_t receiveFrom(scope  void[]  buf)","url":"/ddoc/phobos/std/socket/Socket.receiveFrom.html"},{"doc":"Get a socket option. Returns: The number of bytes written to `result`. The length, in bytes, of the actual result - very different from getsockopt()","kind":"method","module":"std.socket","name":"getOption","package":"phobos","parentType":"Socket","signature":"int getOption(SocketOptionLevel level,  SocketOption option,  scope  void[]  result)","url":"/ddoc/phobos/std/socket/Socket.getOption.html"},{"doc":"Common case of getting integer and boolean options.","kind":"method","module":"std.socket","name":"getOption","package":"phobos","parentType":"Socket","signature":"int getOption(SocketOptionLevel level,  SocketOption option,  out  int32_t result)","url":"/ddoc/phobos/std/socket/Socket.getOption.html"},{"doc":"Get the linger option.","kind":"method","module":"std.socket","name":"getOption","package":"phobos","parentType":"Socket","signature":"int getOption(SocketOptionLevel level,  SocketOption option,  out  Linger result)","url":"/ddoc/phobos/std/socket/Socket.getOption.html"},{"doc":"Get a timeout (duration) option.","kind":"method","module":"std.socket","name":"getOption","package":"phobos","parentType":"Socket","signature":"void getOption(SocketOptionLevel level,  SocketOption option,  out  Duration result)","url":"/ddoc/phobos/std/socket/Socket.getOption.html"},{"doc":"Set a socket option.","kind":"method","module":"std.socket","name":"setOption","package":"phobos","parentType":"Socket","signature":"void setOption(SocketOptionLevel level,  SocketOption option,  scope  void[]  value)","url":"/ddoc/phobos/std/socket/Socket.setOption.html"},{"doc":"Common case for setting integer and boolean options.","kind":"method","module":"std.socket","name":"setOption","package":"phobos","parentType":"Socket","signature":"void setOption(SocketOptionLevel level,  SocketOption option,  int32_t value)","url":"/ddoc/phobos/std/socket/Socket.setOption.html"},{"doc":"Set the linger option.","kind":"method","module":"std.socket","name":"setOption","package":"phobos","parentType":"Socket","signature":"void setOption(SocketOptionLevel level,  SocketOption option,  Linger value)","url":"/ddoc/phobos/std/socket/Socket.setOption.html"},{"doc":"Sets a timeout (duration) option, i.e. `SocketOption.SNDTIMEO` or `RCVTIMEO`. Zero indicates no timeout.","kind":"method","module":"std.socket","name":"setOption","package":"phobos","parentType":"Socket","signature":"void setOption(SocketOptionLevel level,  SocketOption option,  Duration value)","url":"/ddoc/phobos/std/socket/Socket.setOption.html"},{"doc":"Get a text description of this socket's error status, and clear the socket's error status.","kind":"method","module":"std.socket","name":"getErrorText","package":"phobos","parentType":"Socket","signature":"string getErrorText()","url":"/ddoc/phobos/std/socket/Socket.getErrorText.html"},{"doc":"Enables TCP keep-alive with the specified parameters.","kind":"method","module":"std.socket","name":"setKeepAlive","package":"phobos","parentType":"Socket","signature":"void setKeepAlive(int  time,  int  interval)","url":"/ddoc/phobos/std/socket/Socket.setKeepAlive.html"},{"doc":"Wait for a socket to change status. A wait timeout of $(REF Duration, core, time) or `TimeVal`, may be specified; if a timeout is not specified or ...","kind":"method","module":"std.socket","name":"select","package":"phobos","parentType":"Socket","signature":"int select(SocketSet checkRead,  SocketSet checkWrite,  SocketSet checkError,  Duration timeout)","url":"/ddoc/phobos/std/socket/Socket.select.html"},{"doc":"ditto","kind":"method","module":"std.socket","name":"select","package":"phobos","parentType":"Socket","signature":"int select(SocketSet checkRead,  SocketSet checkWrite,  SocketSet checkError)","url":"/ddoc/phobos/std/socket/Socket.select.html"},{"doc":"Ditto","kind":"method","module":"std.socket","name":"select","package":"phobos","parentType":"Socket","signature":"int select(SocketSet checkRead,  SocketSet checkWrite,  SocketSet checkError,  TimeVal *  timeout)","url":"/ddoc/phobos/std/socket/Socket.select.html"},{"doc":"Can be overridden to support other addresses. Returns: A new `Address` object for the current address family.","kind":"method","module":"std.socket","name":"createAddress","package":"phobos","parentType":"Socket","signature":"Address createAddress()","url":"/ddoc/phobos/std/socket/Socket.createAddress.html"},{"doc":"Shortcut class for a TCP Socket.","kind":"class","module":"std.socket","name":"TcpSocket","package":"phobos","parentType":"","signature":"TcpSocket : Socket","url":"/ddoc/phobos/std/socket.html#TcpSocket"},{"doc":"Shortcut class for a UDP Socket.","kind":"class","module":"std.socket","name":"UdpSocket","package":"phobos","parentType":"","signature":"UdpSocket : Socket","url":"/ddoc/phobos/std/socket.html#UdpSocket"},{"doc":"","kind":"variable","module":"std.socket","name":"getnameinfoPointer","package":"phobos","parentType":"","signature":"typeof(& getnameinfo) getnameinfoPointer","url":"/ddoc/phobos/std/socket.html#getnameinfoPointer"},{"doc":"","kind":"variable","module":"std.socket","name":"getaddrinfoPointer","package":"phobos","parentType":"","signature":"typeof(& getaddrinfo) getaddrinfoPointer","url":"/ddoc/phobos/std/socket.html#getaddrinfoPointer"},{"doc":"","kind":"variable","module":"std.socket","name":"freeaddrinfoPointer","package":"phobos","parentType":"","signature":"typeof(& freeaddrinfo) freeaddrinfoPointer","url":"/ddoc/phobos/std/socket.html#freeaddrinfoPointer"},{"doc":"* D constrains integral types to specific sizes. But efficiency of different sizes varies from machine to machine, pointer sizes vary, and the maxi...","kind":"module","module":"std.stdint","name":"std.stdint","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/stdint.html"},{"doc":"$(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Symbols)) $(TR $(TD File handles) $(TD $(MYREF __popen) $...","kind":"module","module":"std.stdio","name":"std.stdio","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/stdio.html"},{"doc":"","kind":"function","module":"std.stdio","name":"trustedFPUTC","package":"phobos","parentType":"","signature":"int trustedFPUTC(int  ch,  _iobuf *  h)","url":"/ddoc/phobos/std/stdio/trustedFPUTC.html"},{"doc":"","kind":"function","module":"std.stdio","name":"trustedFPUTWC","package":"phobos","parentType":"","signature":"int trustedFPUTWC(wchar_t ch,  _iobuf *  h)","url":"/ddoc/phobos/std/stdio/trustedFPUTWC.html"},{"doc":"Property used by writeln/etc. so it can infer @safe since stdout is __gshared","kind":"function","module":"std.stdio","name":"trustedStdout","package":"phobos","parentType":"","signature":"File trustedStdout()","url":"/ddoc/phobos/std/stdio/trustedStdout.html"},{"doc":"Writes its arguments in text format to standard output (without a trailing newline).","kind":"function","module":"std.stdio","name":"write","package":"phobos","parentType":"","signature":"void write(T...)(T args) if (!is(T[0] :  File))","url":"/ddoc/phobos/std/stdio/write.html"},{"doc":"* Equivalent to `write(args, '\\n')`.  Calling `writeln` without * arguments is valid and just prints a newline to the standard * output. * * Params...","kind":"function","module":"std.stdio","name":"writeln","package":"phobos","parentType":"","signature":"void writeln(T...)(T args)","url":"/ddoc/phobos/std/stdio/writeln.html"},{"doc":"Writes formatted data to standard output (without a trailing newline).","kind":"function","module":"std.stdio","name":"writef","package":"phobos","parentType":"","signature":"void writef(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/stdio/writef.html"},{"doc":"ditto","kind":"function","module":"std.stdio","name":"writef","package":"phobos","parentType":"","signature":"void writef(Char,  A...)(in  Char[]  fmt,  A args)","url":"/ddoc/phobos/std/stdio/writef.html"},{"doc":"Equivalent to $(D writef(fmt, args, '\\n')).","kind":"function","module":"std.stdio","name":"writefln","package":"phobos","parentType":"","signature":"void writefln(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/stdio/writefln.html"},{"doc":"ditto","kind":"function","module":"std.stdio","name":"writefln","package":"phobos","parentType":"","signature":"void writefln(Char,  A...)(in  Char[]  fmt,  A args)","url":"/ddoc/phobos/std/stdio/writefln.html"},{"doc":"* Reads formatted data from `stdin` using $(REF formattedRead, std,_format). * Params: * format = The $(REF_ALTTEXT format string, formattedWrite, ...","kind":"function","module":"std.stdio","name":"readf","package":"phobos","parentType":"","signature":"uint readf(alias  format,  A...)(auto  ref  A args) if (isSomeString!(typeof(format)))","url":"/ddoc/phobos/std/stdio/readf.html"},{"doc":"ditto","kind":"function","module":"std.stdio","name":"readf","package":"phobos","parentType":"","signature":"uint readf(A...)(scope  const(char)[]  format,  auto  ref  A args)","url":"/ddoc/phobos/std/stdio/readf.html"},{"doc":"* Read line from `stdin`. * * This version manages its own read buffer, which means one memory allocation per call. If you are not * retaining a re...","kind":"function","module":"std.stdio","name":"readln","package":"phobos","parentType":"","signature":"S readln(S =  string)(dchar  terminator =  '\\n') if (isSomeString!S)","url":"/ddoc/phobos/std/stdio/readln.html"},{"doc":"* Read line from `stdin` and write it to buf[], including terminating character. * * This can be faster than $(D line = readln()) because you can r...","kind":"function","module":"std.stdio","name":"readln","package":"phobos","parentType":"","signature":"size_t readln(C)(ref  C[]  buf,  dchar  terminator =  '\\n') if (isSomeChar!C &&  is(Unqual!C ==  C)  && !is(C ==  enum))","url":"/ddoc/phobos/std/stdio/readln.html"},{"doc":"ditto","kind":"function","module":"std.stdio","name":"readln","package":"phobos","parentType":"","signature":"size_t readln(C,  R)(ref  C[]  buf,  R terminator) if (isSomeChar!C &&  is(Unqual!C ==  C)  && !is(C ==  enum)  &&\n     isBidirectionalRange!R &&  is(typeof(terminator.front ==  dchar.init)))","url":"/ddoc/phobos/std/stdio/readln.html"},{"doc":"Reads a line from `stdin` and parses it using $(REF formattedRead, std,format,read).","kind":"function","module":"std.stdio","name":"readfln","package":"phobos","parentType":"","signature":"uint readfln(alias  format,  Data...)(auto  ref  Data data)","url":"/ddoc/phobos/std/stdio/readfln.html"},{"doc":"ditto","kind":"function","module":"std.stdio","name":"readfln","package":"phobos","parentType":"","signature":"uint readfln(Data...)(scope  const(char)[]  format,  auto  ref  Data data)","url":"/ddoc/phobos/std/stdio/readfln.html"},{"doc":"","kind":"function","module":"std.stdio","name":"_fopen","package":"phobos","parentType":"","signature":"FILE * _fopen(R1,  R2)(R1 name,  R2 mode =  \"r\") if ((isSomeFiniteCharInputRange!R1 ||  isSomeString!R1)  &&\n    (isSomeFiniteCharInputRange!R2 ||  isSomeString!R2))","url":"/ddoc/phobos/std/stdio/_fopen.html"},{"doc":"","kind":"function","module":"std.stdio","name":"trustedFwrite","package":"phobos","parentType":"","signature":"auto trustedFwrite(T)(FILE *  f,  const  T[]  obj)","url":"/ddoc/phobos/std/stdio/trustedFwrite.html"},{"doc":"","kind":"function","module":"std.stdio","name":"trustedFread","package":"phobos","parentType":"","signature":"auto trustedFread(T)(FILE *  f,  T[]  obj) if (!imported!\"std.traits\".hasIndirections!T)","url":"/ddoc/phobos/std/stdio/trustedFread.html"},{"doc":"","kind":"function","module":"std.stdio","name":"trustedFread","package":"phobos","parentType":"","signature":"auto trustedFread(T)(FILE *  f,  T[]  obj) if (imported!\"std.traits\".hasIndirections!T)","url":"/ddoc/phobos/std/stdio/trustedFread.html"},{"doc":"Iterates through a file a chunk at a time by using `foreach`.","kind":"function","module":"std.stdio","name":"chunks","package":"phobos","parentType":"","signature":"auto chunks(File f,  size_t size)","url":"/ddoc/phobos/std/stdio/chunks.html"},{"doc":"Writes an array or range to a file. Shorthand for $(D data.copy(File(fileName, \"wb\").lockingBinaryWriter)). Similar to $(REF write, std,file), stri...","kind":"function","module":"std.stdio","name":"toFile","package":"phobos","parentType":"","signature":"void toFile(T)(T data,  string fileName) if (is(typeof(copy(data,  stdout.lockingBinaryWriter))))","url":"/ddoc/phobos/std/stdio/toFile.html"},{"doc":"","kind":"function","module":"std.stdio","name":"makeGlobal","package":"phobos","parentType":"","signature":"File makeGlobal(StdFileHandle _iob)()","url":"/ddoc/phobos/std/stdio/makeGlobal.html"},{"doc":"","kind":"function","module":"std.stdio","name":"readlnImpl","package":"phobos","parentType":"","signature":"size_t readlnImpl(FILE *  fps,  ref  char[]  buf,  dchar  terminator,  File.Orientation orientation)","url":"/ddoc/phobos/std/stdio/readlnImpl.html"},{"doc":"If flag `KeepTerminator` is set to `KeepTerminator.yes`, then the delimiter is included in the strings returned.","kind":"alias","module":"std.stdio","name":"KeepTerminator","package":"phobos","parentType":"","signature":"KeepTerminator = Flag!\"keepTerminator\"","url":"/ddoc/phobos/std/stdio.html#KeepTerminator"},{"doc":"","kind":"alias","module":"std.stdio","name":"fileno_t","package":"phobos","parentType":"","signature":"fileno_t = int","url":"/ddoc/phobos/std/stdio.html#fileno_t"},{"doc":"","kind":"struct","module":"std.stdio","name":"ByRecordImpl","package":"phobos","parentType":"","signature":"ByRecordImpl(Fields...)","url":"/ddoc/phobos/std/stdio.html#ByRecordImpl"},{"doc":"Range primitive implementations.","kind":"method","module":"std.stdio","name":"empty","package":"phobos","parentType":"ByRecordImpl","signature":"bool empty()","url":"/ddoc/phobos/std/stdio/ByRecordImpl.empty.html"},{"doc":"Ditto","kind":"method","module":"std.stdio","name":"front","package":"phobos","parentType":"ByRecordImpl","signature":"Tuple!(Fields) front()","url":"/ddoc/phobos/std/stdio/ByRecordImpl.front.html"},{"doc":"Ditto","kind":"method","module":"std.stdio","name":"popFront","package":"phobos","parentType":"ByRecordImpl","signature":"void popFront()","url":"/ddoc/phobos/std/stdio/ByRecordImpl.popFront.html"},{"doc":"Encapsulates a `FILE*`. Generally D does not attempt to provide thin wrappers over equivalent functions in the C standard library, but manipulating...","kind":"struct","module":"std.stdio","name":"File","package":"phobos","parentType":"","signature":"File","url":"/ddoc/phobos/std/stdio.html#File"},{"doc":"","kind":"method","module":"std.stdio","name":"initImpl","package":"phobos","parentType":"File","signature":"void initImpl(FILE *  handle,  string name,  uint  refs =  1,  bool  isPopened =  false)","url":"/ddoc/phobos/std/stdio/File.initImpl.html"},{"doc":"Assigns a file to another. The target of the assignment gets detached from whatever file it was attached to, and attaches itself to the new file.","kind":"method","module":"std.stdio","name":"opAssign","package":"phobos","parentType":"File","signature":"File opAssign(File rhs)","url":"/ddoc/phobos/std/stdio/File.opAssign.html"},{"doc":"Detaches from the current file (throwing on failure), and then attempts to _open file `name` with mode `stdioOpenmode`. The mode has the same seman...","kind":"method","module":"std.stdio","name":"open","package":"phobos","parentType":"File","signature":"void open(string name,  scope  const(char)[]  stdioOpenmode =  \"rb\")","url":"/ddoc/phobos/std/stdio/File.open.html"},{"doc":"","kind":"method","module":"std.stdio","name":"resetFile","package":"phobos","parentType":"File","signature":"void resetFile(string name,  scope  const(char)[]  stdioOpenmode,  bool  isPopened)","url":"/ddoc/phobos/std/stdio/File.resetFile.html"},{"doc":"","kind":"method","module":"std.stdio","name":"closeHandles","package":"phobos","parentType":"File","signature":"void closeHandles()","url":"/ddoc/phobos/std/stdio/File.closeHandles.html"},{"doc":"Reuses the `File` object to either open a different file, or change the file mode. If `name` is `null`, the mode of the currently open file is chan...","kind":"method","module":"std.stdio","name":"reopen","package":"phobos","parentType":"File","signature":"void reopen(string name,  scope  const(char)[]  stdioOpenmode =  \"rb\")","url":"/ddoc/phobos/std/stdio/File.reopen.html"},{"doc":"First calls `detach` (throwing on failure), then attempts to associate the given file descriptor with the `File`, and sets the file's name to `null`.","kind":"method","module":"std.stdio","name":"fdopen","package":"phobos","parentType":"File","signature":"void fdopen(int  fd,  scope  const(char)[]  stdioOpenmode =  \"rb\")","url":"/ddoc/phobos/std/stdio/File.fdopen.html"},{"doc":"","kind":"method","module":"std.stdio","name":"fdopen","package":"phobos","parentType":"File","signature":"void fdopen(int  fd,  scope  const(char)[]  stdioOpenmode,  string name)","url":"/ddoc/phobos/std/stdio/File.fdopen.html"},{"doc":"Returns `true` if the file is opened.","kind":"method","module":"std.stdio","name":"isOpen","package":"phobos","parentType":"File","signature":"bool isOpen()","url":"/ddoc/phobos/std/stdio/File.isOpen.html"},{"doc":"Returns `true` if the file is at end (see $(CSTDIO feof)).","kind":"method","module":"std.stdio","name":"eof","package":"phobos","parentType":"File","signature":"bool eof()","url":"/ddoc/phobos/std/stdio/File.eof.html"},{"doc":"Returns the name last used to initialize this `File`, if any.","kind":"method","module":"std.stdio","name":"name","package":"phobos","parentType":"File","signature":"string name()","url":"/ddoc/phobos/std/stdio/File.name.html"},{"doc":"If the file is closed or not yet opened, returns `true`. Otherwise, returns $(CSTDIO ferror) for the file handle.","kind":"method","module":"std.stdio","name":"error","package":"phobos","parentType":"File","signature":"bool error()","url":"/ddoc/phobos/std/stdio/File.error.html"},{"doc":"Detaches from the underlying file. If the sole owner, calls `close`.","kind":"method","module":"std.stdio","name":"detach","package":"phobos","parentType":"File","signature":"void detach()","url":"/ddoc/phobos/std/stdio/File.detach.html"},{"doc":"If the file was closed or not yet opened, succeeds vacuously. Otherwise closes the file (by calling $(CSTDIO fclose)), throwing on error. Even if a...","kind":"method","module":"std.stdio","name":"close","package":"phobos","parentType":"File","signature":"void close()","url":"/ddoc/phobos/std/stdio/File.close.html"},{"doc":"If the file is closed or not yet opened, succeeds vacuously. Otherwise, returns $(CSTDIO clearerr) for the file handle.","kind":"method","module":"std.stdio","name":"clearerr","package":"phobos","parentType":"File","signature":"void clearerr()","url":"/ddoc/phobos/std/stdio/File.clearerr.html"},{"doc":"Flushes the C `FILE` buffers.","kind":"method","module":"std.stdio","name":"flush","package":"phobos","parentType":"File","signature":"void flush()","url":"/ddoc/phobos/std/stdio/File.flush.html"},{"doc":"Forces any data buffered by the OS to be written to disk. Call $(LREF flush) before calling this function to flush the C `FILE` buffers first.","kind":"method","module":"std.stdio","name":"sync","package":"phobos","parentType":"File","signature":"void sync()","url":"/ddoc/phobos/std/stdio/File.sync.html"},{"doc":"Calls $(CSTDIO fread) for the file handle. The number of items to read and the size of each item is inferred from the size and type of the input ar...","kind":"method","module":"std.stdio","name":"rawRead","package":"phobos","parentType":"File","signature":"T[] rawRead(T)(T[]  buffer)","url":"/ddoc/phobos/std/stdio/File.rawRead.html"},{"doc":"Calls $(CSTDIO fwrite) for the file handle. The number of items to write and the size of each item is inferred from the size and type of the input ...","kind":"method","module":"std.stdio","name":"rawWrite","package":"phobos","parentType":"File","signature":"void rawWrite(T)(in  T[]  buffer)","url":"/ddoc/phobos/std/stdio/File.rawWrite.html"},{"doc":"Calls $(CSTDIO fseek) for the file handle to move its position indicator.","kind":"method","module":"std.stdio","name":"seek","package":"phobos","parentType":"File","signature":"void seek(long  offset,  int  origin =  SEEK_SET)","url":"/ddoc/phobos/std/stdio/File.seek.html"},{"doc":"Calls $(CSTDIO ftell) for the managed file handle, which returns the current value of the position indicator of the file handle.","kind":"method","module":"std.stdio","name":"tell","package":"phobos","parentType":"File","signature":"ulong tell()","url":"/ddoc/phobos/std/stdio/File.tell.html"},{"doc":"Calls $(CSTDIO rewind) for the file handle.","kind":"method","module":"std.stdio","name":"rewind","package":"phobos","parentType":"File","signature":"void rewind()","url":"/ddoc/phobos/std/stdio/File.rewind.html"},{"doc":"Calls $(CSTDIO setvbuf) for the file handle.","kind":"method","module":"std.stdio","name":"setvbuf","package":"phobos","parentType":"File","signature":"void setvbuf(size_t size,  int  mode =  _IOFBF)","url":"/ddoc/phobos/std/stdio/File.setvbuf.html"},{"doc":"Calls $(CSTDIO setvbuf) for the file handle.","kind":"method","module":"std.stdio","name":"setvbuf","package":"phobos","parentType":"File","signature":"void setvbuf(void[]  buf,  int  mode =  _IOFBF)","url":"/ddoc/phobos/std/stdio/File.setvbuf.html"},{"doc":"Locks the specified file segment. If the file segment is already locked by another process, waits until the existing lock is released. If both `sta...","kind":"method","module":"std.stdio","name":"lock","package":"phobos","parentType":"File","signature":"void lock(LockType lockType =  LockType.readWrite,\n         ulong  start =  0,  ulong  length =  0)","url":"/ddoc/phobos/std/stdio/File.lock.html"},{"doc":"Attempts to lock the specified file segment. If both `start` and `length` are zero, the entire file is locked. Returns: `true` if the lock was succ...","kind":"method","module":"std.stdio","name":"tryLock","package":"phobos","parentType":"File","signature":"bool tryLock(LockType lockType =  LockType.readWrite,\n         ulong  start =  0,  ulong  length =  0)","url":"/ddoc/phobos/std/stdio/File.tryLock.html"},{"doc":"Removes the lock over the specified file segment.","kind":"method","module":"std.stdio","name":"unlock","package":"phobos","parentType":"File","signature":"void unlock(ulong  start =  0,  ulong  length =  0)","url":"/ddoc/phobos/std/stdio/File.unlock.html"},{"doc":"Writes its arguments in text format to the file.","kind":"method","module":"std.stdio","name":"write","package":"phobos","parentType":"File","signature":"void write(S...)(S args)","url":"/ddoc/phobos/std/stdio/File.write.html"},{"doc":"Writes its arguments in text format to the file, followed by a newline.","kind":"method","module":"std.stdio","name":"writeln","package":"phobos","parentType":"File","signature":"void writeln(S...)(S args)","url":"/ddoc/phobos/std/stdio/File.writeln.html"},{"doc":"Writes its arguments in text format to the file, according to the format string fmt.","kind":"method","module":"std.stdio","name":"writef","package":"phobos","parentType":"File","signature":"void writef(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/stdio/File.writef.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"writef","package":"phobos","parentType":"File","signature":"void writef(Char,  A...)(in  Char[]  fmt,  A args)","url":"/ddoc/phobos/std/stdio/File.writef.html"},{"doc":"Equivalent to `file.writef(fmt, args, '\\n')`.","kind":"method","module":"std.stdio","name":"writefln","package":"phobos","parentType":"File","signature":"void writefln(alias  fmt,  A...)(A args) if (isSomeString!(typeof(fmt)))","url":"/ddoc/phobos/std/stdio/File.writefln.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"writefln","package":"phobos","parentType":"File","signature":"void writefln(Char,  A...)(in  Char[]  fmt,  A args)","url":"/ddoc/phobos/std/stdio/File.writefln.html"},{"doc":"Read line from the file handle and return it as a specified type.","kind":"method","module":"std.stdio","name":"readln","package":"phobos","parentType":"File","signature":"S readln(S =  string)(dchar  terminator =  '\\n') if (isSomeString!S)","url":"/ddoc/phobos/std/stdio/File.readln.html"},{"doc":"Read line from the file handle and write it to `buf[]`, including terminating character.","kind":"method","module":"std.stdio","name":"readln","package":"phobos","parentType":"File","signature":"size_t readln(C)(ref  C[]  buf,  dchar  terminator =  '\\n') if (isSomeChar!C &&  is(Unqual!C ==  C)  && !is(C ==  enum))","url":"/ddoc/phobos/std/stdio/File.readln.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"readln","package":"phobos","parentType":"File","signature":"size_t readln(C,  R)(ref  C[]  buf,  R terminator) if (isSomeChar!C &&  is(Unqual!C ==  C)  && !is(C ==  enum)  &&\n         isBidirectionalRange!R &&  is(typeof(terminator.front ==  dchar.init)))","url":"/ddoc/phobos/std/stdio/File.readln.html"},{"doc":"* Reads formatted _data from the file using $(REF formattedRead, std,_format). * Params: * format = The $(REF_ALTTEXT format string, formattedWrite...","kind":"method","module":"std.stdio","name":"readf","package":"phobos","parentType":"File","signature":"uint readf(alias  format,  Data...)(auto  ref  Data data) if (isSomeString!(typeof(format)))","url":"/ddoc/phobos/std/stdio/File.readf.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"readf","package":"phobos","parentType":"File","signature":"uint readf(Data...)(scope  const(char)[]  format,  auto  ref  Data data)","url":"/ddoc/phobos/std/stdio/File.readf.html"},{"doc":"Reads a line from the file and parses it using $(REF formattedRead, std,format,read).","kind":"method","module":"std.stdio","name":"readfln","package":"phobos","parentType":"File","signature":"uint readfln(alias  format,  Data...)(auto  ref  Data data) if (isSomeString!(typeof(format)))","url":"/ddoc/phobos/std/stdio/File.readfln.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"readfln","package":"phobos","parentType":"File","signature":"uint readfln(Data...)(scope  const(char)[]  format,  auto  ref  Data data)","url":"/ddoc/phobos/std/stdio/File.readfln.html"},{"doc":"Returns a temporary file by calling $(CSTDIO tmpfile). Note that the created file has no $(LREF name).","kind":"method","module":"std.stdio","name":"tmpfile","package":"phobos","parentType":"File","signature":"File tmpfile()","url":"/ddoc/phobos/std/stdio/File.tmpfile.html"},{"doc":"Unsafe function that wraps an existing `FILE*`. The resulting $(D File) never takes the initiative in closing the file. Note that the created file ...","kind":"method","module":"std.stdio","name":"wrapFile","package":"phobos","parentType":"File","signature":"File wrapFile(FILE *  f)","url":"/ddoc/phobos/std/stdio/File.wrapFile.html"},{"doc":"Returns the `FILE*` corresponding to this object.","kind":"method","module":"std.stdio","name":"getFP","package":"phobos","parentType":"File","signature":"FILE * getFP()","url":"/ddoc/phobos/std/stdio/File.getFP.html"},{"doc":"Returns the file number corresponding to this object.","kind":"method","module":"std.stdio","name":"fileno","package":"phobos","parentType":"File","signature":"fileno_t fileno()","url":"/ddoc/phobos/std/stdio/File.fileno.html"},{"doc":"Returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) set up to read from the file handle one line at a time.","kind":"method","module":"std.stdio","name":"byLine","package":"phobos","parentType":"File","signature":"auto byLine(Terminator =  char,  Char =  char)(KeepTerminator keepTerminator =  No.keepTerminator,\n             Terminator terminator =  '\\n') if (isScalarType!Terminator)","url":"/ddoc/phobos/std/stdio/File.byLine.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"byLine","package":"phobos","parentType":"File","signature":"auto byLine(Terminator,  Char =  char)(KeepTerminator keepTerminator,  Terminator terminator) if (is(immutable  ElementEncodingType!Terminator ==  immutable  Char))","url":"/ddoc/phobos/std/stdio/File.byLine.html"},{"doc":"Returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) set up to read from the file handle one line at a time. Each line will be...","kind":"method","module":"std.stdio","name":"byLineCopy","package":"phobos","parentType":"File","signature":"auto byLineCopy(Terminator =  char,  Char =  immutable  char)(KeepTerminator keepTerminator =  No.keepTerminator,\n             Terminator terminator =  '\\n') if (isScalarType!Terminator)","url":"/ddoc/phobos/std/stdio/File.byLineCopy.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"byLineCopy","package":"phobos","parentType":"File","signature":"auto byLineCopy(Terminator,  Char =  immutable  char)(KeepTerminator keepTerminator,  Terminator terminator) if (is(immutable  ElementEncodingType!Terminator ==  immutable  Char))","url":"/ddoc/phobos/std/stdio/File.byLineCopy.html"},{"doc":"Returns an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) set up to read from the file handle a chunk at a time.","kind":"method","module":"std.stdio","name":"byChunk","package":"phobos","parentType":"File","signature":"auto byChunk(size_t chunkSize)","url":"/ddoc/phobos/std/stdio/File.byChunk.html"},{"doc":"Ditto","kind":"method","module":"std.stdio","name":"byChunk","package":"phobos","parentType":"File","signature":"auto byChunk(ubyte[]  buffer)","url":"/ddoc/phobos/std/stdio/File.byChunk.html"},{"doc":"Output range which locks the file when created, and unlocks the file when it goes out of scope.","kind":"method","module":"std.stdio","name":"lockingTextWriter","package":"phobos","parentType":"File","signature":"auto lockingTextWriter()","url":"/ddoc/phobos/std/stdio/File.lockingTextWriter.html"},{"doc":"Returns an output range that locks the file and allows fast writing to it.","kind":"method","module":"std.stdio","name":"lockingBinaryWriter","package":"phobos","parentType":"File","signature":"auto lockingBinaryWriter()","url":"/ddoc/phobos/std/stdio/File.lockingBinaryWriter.html"},{"doc":"Returns the size of the file in bytes, ulong.max if file is not searchable or throws if the operation fails. Example: --- import std.stdio, std.file;","kind":"method","module":"std.stdio","name":"size","package":"phobos","parentType":"File","signature":"ulong size()","url":"/ddoc/phobos/std/stdio/File.size.html"},{"doc":"Used to specify the lock type for `File.lock` and `File.tryLock`.","kind":"enum","module":"std.stdio","name":"LockType","package":"phobos","parentType":"","signature":"LockType","url":"/ddoc/phobos/std/stdio.html#LockType"},{"doc":"Specifies a _read (shared) lock. A _read lock denies all processes write access to the specified region of the file, including the process that fir...","kind":"enum_member","module":"std.stdio","name":"read","package":"phobos","parentType":"","signature":"read = ","url":"/ddoc/phobos/std/stdio.html#LockType"},{"doc":"Specifies a read/write (exclusive) lock. A read/write lock denies all other processes both read and write access to the locked file region. If a se...","kind":"enum_member","module":"std.stdio","name":"readWrite","package":"phobos","parentType":"","signature":"readWrite = ","url":"/ddoc/phobos/std/stdio.html#LockType"},{"doc":"","kind":"struct","module":"std.stdio","name":"LockingTextReader","package":"phobos","parentType":"","signature":"LockingTextReader","url":"/ddoc/phobos/std/stdio.html#LockingTextReader"},{"doc":"","kind":"method","module":"std.stdio","name":"opAssign","package":"phobos","parentType":"LockingTextReader","signature":"void opAssign(LockingTextReader r)","url":"/ddoc/phobos/std/stdio/LockingTextReader.opAssign.html"},{"doc":"","kind":"method","module":"std.stdio","name":"empty","package":"phobos","parentType":"LockingTextReader","signature":"bool empty()","url":"/ddoc/phobos/std/stdio/LockingTextReader.empty.html"},{"doc":"","kind":"method","module":"std.stdio","name":"front","package":"phobos","parentType":"LockingTextReader","signature":"char front()","url":"/ddoc/phobos/std/stdio/LockingTextReader.front.html"},{"doc":"","kind":"method","module":"std.stdio","name":"popFront","package":"phobos","parentType":"LockingTextReader","signature":"void popFront()","url":"/ddoc/phobos/std/stdio/LockingTextReader.popFront.html"},{"doc":"* Iterates through the lines of a file by using `foreach`. * * Example: * --------- void main() { foreach (string line; lines(stdin)) { ... use lin...","kind":"struct","module":"std.stdio","name":"lines","package":"phobos","parentType":"","signature":"lines","url":"/ddoc/phobos/std/stdio.html#lines"},{"doc":"","kind":"method","module":"std.stdio","name":"opApply","package":"phobos","parentType":"lines","signature":"int opApply(D)(scope  D dg)","url":"/ddoc/phobos/std/stdio/lines.opApply.html"},{"doc":"","kind":"method","module":"std.stdio","name":"opApplyRaw","package":"phobos","parentType":"lines","signature":"int opApplyRaw(D)(scope  D dg)","url":"/ddoc/phobos/std/stdio/lines.opApplyRaw.html"},{"doc":"","kind":"struct","module":"std.stdio","name":"ChunksImpl","package":"phobos","parentType":"","signature":"ChunksImpl","url":"/ddoc/phobos/std/stdio.html#ChunksImpl"},{"doc":"","kind":"method","module":"std.stdio","name":"opApply","package":"phobos","parentType":"ChunksImpl","signature":"int opApply(D)(scope  D dg)","url":"/ddoc/phobos/std/stdio/ChunksImpl.opApply.html"},{"doc":"Thrown if I/O errors happen.","kind":"class","module":"std.stdio","name":"StdioException","package":"phobos","parentType":"","signature":"StdioException : Exception","url":"/ddoc/phobos/std/stdio.html#StdioException"},{"doc":"Convenience functions that throw an `StdioException`.","kind":"method","module":"std.stdio","name":"opCall","package":"phobos","parentType":"StdioException","signature":"void opCall(string msg)","url":"/ddoc/phobos/std/stdio/StdioException.opCall.html"},{"doc":"ditto","kind":"method","module":"std.stdio","name":"opCall","package":"phobos","parentType":"StdioException","signature":"void opCall()","url":"/ddoc/phobos/std/stdio/StdioException.opCall.html"},{"doc":"","kind":"enum","module":"std.stdio","name":"StdFileHandle","package":"phobos","parentType":"","signature":"StdFileHandle : string","url":"/ddoc/phobos/std/stdio.html#StdFileHandle"},{"doc":"","kind":"enum_member","module":"std.stdio","name":"stdin","package":"phobos","parentType":"","signature":"stdin = \"core.stdc.stdio.stdin\"","url":"/ddoc/phobos/std/stdio.html#StdFileHandle"},{"doc":"","kind":"enum_member","module":"std.stdio","name":"stdout","package":"phobos","parentType":"","signature":"stdout = \"core.stdc.stdio.stdout\"","url":"/ddoc/phobos/std/stdio.html#StdFileHandle"},{"doc":"","kind":"enum_member","module":"std.stdio","name":"stderr","package":"phobos","parentType":"","signature":"stderr = \"core.stdc.stdio.stderr\"","url":"/ddoc/phobos/std/stdio.html#StdFileHandle"},{"doc":"The standard input stream.","kind":"alias","module":"std.stdio","name":"stdin","package":"phobos","parentType":"","signature":"stdin = makeGlobal!(StdFileHandle.stdin)","url":"/ddoc/phobos/std/stdio.html#stdin"},{"doc":"The standard output stream.","kind":"alias","module":"std.stdio","name":"stdout","package":"phobos","parentType":"","signature":"stdout = makeGlobal!(StdFileHandle.stdout)","url":"/ddoc/phobos/std/stdio.html#stdout"},{"doc":"The standard error stream.","kind":"alias","module":"std.stdio","name":"stderr","package":"phobos","parentType":"","signature":"stderr = makeGlobal!(StdFileHandle.stderr)","url":"/ddoc/phobos/std/stdio.html#stderr"},{"doc":"","kind":"struct","module":"std.stdio","name":"ReadlnAppender","package":"phobos","parentType":"","signature":"ReadlnAppender","url":"/ddoc/phobos/std/stdio.html#ReadlnAppender"},{"doc":"","kind":"method","module":"std.stdio","name":"initialize","package":"phobos","parentType":"ReadlnAppender","signature":"void initialize(char[]  b)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.initialize.html"},{"doc":"","kind":"method","module":"std.stdio","name":"data","package":"phobos","parentType":"ReadlnAppender","signature":"char[] data()","url":"/ddoc/phobos/std/stdio/ReadlnAppender.data.html"},{"doc":"","kind":"method","module":"std.stdio","name":"reserveWithoutAllocating","package":"phobos","parentType":"ReadlnAppender","signature":"bool reserveWithoutAllocating(size_t n)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.reserveWithoutAllocating.html"},{"doc":"","kind":"method","module":"std.stdio","name":"reserve","package":"phobos","parentType":"ReadlnAppender","signature":"void reserve(size_t n)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.reserve.html"},{"doc":"","kind":"method","module":"std.stdio","name":"putchar","package":"phobos","parentType":"ReadlnAppender","signature":"void putchar(char  c)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.putchar.html"},{"doc":"","kind":"method","module":"std.stdio","name":"putdchar","package":"phobos","parentType":"ReadlnAppender","signature":"void putdchar(dchar  dc)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.putdchar.html"},{"doc":"","kind":"method","module":"std.stdio","name":"putonly","package":"phobos","parentType":"ReadlnAppender","signature":"void putonly(const  char[]  b)","url":"/ddoc/phobos/std/stdio/ReadlnAppender.putonly.html"},{"doc":"","kind":"struct","module":"std.stdio","name":"LockedFile","package":"phobos","parentType":"","signature":"LockedFile","url":"/ddoc/phobos/std/stdio.html#LockedFile"},{"doc":"","kind":"method","module":"std.stdio","name":"opAssign","package":"phobos","parentType":"LockedFile","signature":"void opAssign(LockedFile)","url":"/ddoc/phobos/std/stdio/LockedFile.opAssign.html"},{"doc":"","kind":"method","module":"std.stdio","name":"fgetc","package":"phobos","parentType":"LockedFile","signature":"@trusted fgetc()","url":"/ddoc/phobos/std/stdio/LockedFile.fgetc.html"},{"doc":"","kind":"method","module":"std.stdio","name":"fgetwc","package":"phobos","parentType":"LockedFile","signature":"@trusted fgetwc()","url":"/ddoc/phobos/std/stdio/LockedFile.fgetwc.html"},{"doc":"","kind":"template","module":"std.stdio","name":"byRecord","package":"phobos","parentType":"","signature":"byRecord(Fields...)","url":"/ddoc/phobos/std/stdio.html#byRecord"},{"doc":"","kind":"function","module":"std.stdio","name":"byRecord","package":"phobos","parentType":"","signature":"auto byRecord(File f,  string format)","url":"/ddoc/phobos/std/stdio.html#byRecord"},{"doc":"Indicates whether `T` is a file handle, i.e. the type is implicitly convertable to $(LREF File) or a pointer to a $(REF FILE, core,stdc,stdio).","kind":"template","module":"std.stdio","name":"isFileHandle","package":"phobos","parentType":"","signature":"isFileHandle(T)","url":"/ddoc/phobos/std/stdio.html#isFileHandle"},{"doc":"String handling functions.","kind":"module","module":"std.string","name":"std.string","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/string.html"},{"doc":"Params: cString = A null-terminated c-style string.","kind":"function","module":"std.string","name":"fromStringz","package":"phobos","parentType":"","signature":"inout(Char)[] fromStringz(Char)(return  scope  inout(Char) *  cString) if (isSomeChar!Char)","url":"/ddoc/phobos/std/string/fromStringz.html"},{"doc":"ditto","kind":"function","module":"std.string","name":"fromStringz","package":"phobos","parentType":"","signature":"inout(Char)[] fromStringz(Char)(return  scope  inout(Char)[]  cString) if (isSomeChar!Char)","url":"/ddoc/phobos/std/string/fromStringz.html"},{"doc":"Params: s = A D-style string.","kind":"function","module":"std.string","name":"toStringz","package":"phobos","parentType":"","signature":"immutable(char) * toStringz(scope  const(char)[]  s)","url":"/ddoc/phobos/std/string/toStringz.html"},{"doc":"Searches for a character in a string or range.","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range)(Range s,  dchar  c,  CaseSensitive cs =  Yes.caseSensitive) if (isInputRange!Range &&  isSomeChar!(ElementType!Range)  && !isSomeString!Range)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(C)(scope  const(C)[]  s,  dchar  c,  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!C)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range)(Range s,  dchar  c,  size_t startIdx,  CaseSensitive cs =  Yes.caseSensitive) if (isInputRange!Range &&  isSomeChar!(ElementType!Range)  && !isSomeString!Range)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(C)(scope  const(C)[]  s,  dchar  c,  size_t startIdx,  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!C)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"","kind":"function","module":"std.string","name":"_indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t _indexOf(Range)(Range s,  dchar  c,  CaseSensitive cs =  Yes.caseSensitive) if (isInputRange!Range &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/string/_indexOf.html"},{"doc":"","kind":"function","module":"std.string","name":"_indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t _indexOf(Range)(Range s,  dchar  c,  size_t startIdx,  CaseSensitive cs =  Yes.caseSensitive) if (isInputRange!Range &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/string/_indexOf.html"},{"doc":"Searches for a substring in a string or range.","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range,  Char)(Range s,  const(Char)[]  sub) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n     isSomeChar!Char)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range,  Char)(Range s,  const(Char)[]  sub,  in  CaseSensitive cs) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n     isSomeChar!Char)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Char1,  Char2)(const(Char1)[]  s,  const(Char2)[]  sub,\n         in  size_t startIdx) if (isSomeChar!Char1 &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Char1,  Char2)(const(Char1)[]  s,  const(Char2)[]  sub,\n         in  size_t startIdx,  in  CaseSensitive cs) if (isSomeChar!Char1 &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range,  Char)(auto  ref  Range s,  const(Char)[]  sub) if (!(isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n     isSomeChar!Char)  &&\n     is(StringTypeOf!Range))","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"","kind":"function","module":"std.string","name":"indexOf","package":"phobos","parentType":"","signature":"ptrdiff_t indexOf(Range,  Char)(auto  ref  Range s,  const(Char)[]  sub,\n         in  CaseSensitive cs) if (!(isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n     isSomeChar!Char)  &&\n     is(StringTypeOf!Range))","url":"/ddoc/phobos/std/string/indexOf.html"},{"doc":"Searches for the last occurrence of a character in a string.","kind":"function","module":"std.string","name":"lastIndexOf","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOf(Char)(const(Char)[]  s,  in  dchar  c,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char)","url":"/ddoc/phobos/std/string/lastIndexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"lastIndexOf","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOf(Char)(const(Char)[]  s,  in  dchar  c,  in  size_t startIdx,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char)","url":"/ddoc/phobos/std/string/lastIndexOf.html"},{"doc":"Searches for the last occurrence of a substring in a string.","kind":"function","module":"std.string","name":"lastIndexOf","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOf(Char1,  Char2)(const(Char1)[]  s,  const(Char2)[]  sub,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char1 &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOf.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"lastIndexOf","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOf(Char1,  Char2)(const(Char1)[]  s,  const(Char2)[]  sub,\n         in  size_t startIdx,  in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char1 &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOf.html"},{"doc":"","kind":"function","module":"std.string","name":"indexOfAnyNeitherImpl","package":"phobos","parentType":"","signature":"ptrdiff_t indexOfAnyNeitherImpl(bool  forward,  bool  any,  Char,  Char2)(\n         const(Char)[]  haystack,  const(Char2)[]  needles,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOfAnyNeitherImpl.html"},{"doc":"Searches the string `haystack` for one of the characters in `needles` starting at index `startIdx`. If `startIdx` is not given, it defaults to 0.","kind":"function","module":"std.string","name":"indexOfAny","package":"phobos","parentType":"","signature":"ptrdiff_t indexOfAny(Char, Char2)(const(Char)[]  haystack,  const(Char2)[]  needles,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOfAny.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOfAny","package":"phobos","parentType":"","signature":"ptrdiff_t indexOfAny(Char, Char2)(const(Char)[]  haystack,  const(Char2)[]  needles,\n         in  size_t startIdx,  in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOfAny.html"},{"doc":"Searches `haystack` for the last occurrence of any of the characters in `needles`.","kind":"function","module":"std.string","name":"lastIndexOfAny","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOfAny(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOfAny.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"lastIndexOfAny","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOfAny(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  size_t stopIdx,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOfAny.html"},{"doc":"Searches `haystack` for a character not in `needles`.","kind":"function","module":"std.string","name":"indexOfNeither","package":"phobos","parentType":"","signature":"ptrdiff_t indexOfNeither(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOfNeither.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"indexOfNeither","package":"phobos","parentType":"","signature":"ptrdiff_t indexOfNeither(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  size_t startIdx,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/indexOfNeither.html"},{"doc":"Searches for the last character in `haystack` that is not in `needles`.","kind":"function","module":"std.string","name":"lastIndexOfNeither","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOfNeither(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOfNeither.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"lastIndexOfNeither","package":"phobos","parentType":"","signature":"ptrdiff_t lastIndexOfNeither(Char, Char2)(const(Char)[]  haystack,\n         const(Char2)[]  needles,  in  size_t stopIdx,\n         in  CaseSensitive cs =  Yes.caseSensitive) if (isSomeChar!Char &&  isSomeChar!Char2)","url":"/ddoc/phobos/std/string/lastIndexOfNeither.html"},{"doc":"Returns the _representation of a string, which has the same type as the string except the character type is replaced by `ubyte`, `ushort`, or `uint...","kind":"function","module":"std.string","name":"representation","package":"phobos","parentType":"","signature":"auto representation(Char)(Char[]  s) if (isSomeChar!Char)","url":"/ddoc/phobos/std/string/representation.html"},{"doc":"Capitalize the first character of `s` and convert the rest of `s` to lowercase.","kind":"function","module":"std.string","name":"capitalize","package":"phobos","parentType":"","signature":"S capitalize(S)(S input) if (isSomeString!S)","url":"/ddoc/phobos/std/string/capitalize.html"},{"doc":"","kind":"function","module":"std.string","name":"capitalize","package":"phobos","parentType":"","signature":"auto capitalize(S)(auto  ref  S s) if (!isSomeString!S &&  is(StringTypeOf!S))","url":"/ddoc/phobos/std/string/capitalize.html"},{"doc":"ditto","kind":"function","module":"std.string","name":"splitLines","package":"phobos","parentType":"","signature":"C[][] splitLines(C)(C[]  s,  KeepTerminator keepTerm =  No.keepTerminator) if (isSomeChar!C)","url":"/ddoc/phobos/std/string/splitLines.html"},{"doc":"*  Split an array or slicable range of characters into a range of lines using `'\\r'`, `'\\n'`, `'\\v'`, `'\\f'`, `\"\\r\\n\"`, $(REF lineSep, std,uni), $(...","kind":"function","module":"std.string","name":"lineSplitter","package":"phobos","parentType":"","signature":"auto lineSplitter(KeepTerminator keepTerm =  No.keepTerminator,  Range)(Range r) if (hasSlicing!Range &&  hasLength!Range &&  isSomeChar!(ElementType!Range)  && !isSomeString!Range)","url":"/ddoc/phobos/std/string/lineSplitter.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"lineSplitter","package":"phobos","parentType":"","signature":"auto lineSplitter(KeepTerminator keepTerm =  No.keepTerminator,  C)(C[]  r) if (isSomeChar!C)","url":"/ddoc/phobos/std/string/lineSplitter.html"},{"doc":"Strips leading whitespace (as defined by $(REF isWhite, std,uni)) or as specified in the second argument.","kind":"function","module":"std.string","name":"stripLeft","package":"phobos","parentType":"","signature":"auto stripLeft(Range)(Range input) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isInfinite!Range && !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/stripLeft.html"},{"doc":"","kind":"function","module":"std.string","name":"stripLeft","package":"phobos","parentType":"","signature":"auto stripLeft(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/stripLeft.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"stripLeft","package":"phobos","parentType":"","signature":"auto stripLeft(Range,  Char)(Range input,  const(Char)[]  chars) if (((isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range))  ||\n      isConvertibleToString!Range)  &&  isSomeChar!Char)","url":"/ddoc/phobos/std/string/stripLeft.html"},{"doc":"Strips trailing whitespace (as defined by $(REF isWhite, std,uni)) or as specified in the second argument.","kind":"function","module":"std.string","name":"stripRight","package":"phobos","parentType":"","signature":"auto stripRight(Range)(Range str) if (isSomeString!Range ||\n     isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&\n    !isConvertibleToString!Range &&\n     isSomeChar!(ElementEncodingType!Range))","url":"/ddoc/phobos/std/string/stripRight.html"},{"doc":"","kind":"function","module":"std.string","name":"stripRight","package":"phobos","parentType":"","signature":"auto stripRight(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/stripRight.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"stripRight","package":"phobos","parentType":"","signature":"auto stripRight(Range,  Char)(Range str,  const(Char)[]  chars) if (((isBidirectionalRange!Range &&  isSomeChar!(ElementEncodingType!Range))  ||\n      isConvertibleToString!Range)  &&  isSomeChar!Char)","url":"/ddoc/phobos/std/string/stripRight.html"},{"doc":"Strips both leading and trailing whitespace (as defined by $(REF isWhite, std,uni)) or as specified in the second argument.","kind":"function","module":"std.string","name":"strip","package":"phobos","parentType":"","signature":"auto strip(Range)(Range str) if (isSomeString!Range ||\n     isRandomAccessRange!Range &&  hasLength!Range &&  hasSlicing!Range &&\n    !isConvertibleToString!Range &&\n     isSomeChar!(ElementEncodingType!Range))","url":"/ddoc/phobos/std/string/strip.html"},{"doc":"","kind":"function","module":"std.string","name":"strip","package":"phobos","parentType":"","signature":"auto strip(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/strip.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"strip","package":"phobos","parentType":"","signature":"auto strip(Range,  Char)(Range str,  const(Char)[]  chars) if (((isBidirectionalRange!Range &&  isSomeChar!(ElementEncodingType!Range))  ||\n      isConvertibleToString!Range)  &&  isSomeChar!Char)","url":"/ddoc/phobos/std/string/strip.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"strip","package":"phobos","parentType":"","signature":"auto strip(Range,  Char)(Range str,  const(Char)[]  leftChars,  const(Char)[]  rightChars) if (((isBidirectionalRange!Range &&  isSomeChar!(ElementEncodingType!Range))  ||\n      isConvertibleToString!Range)  &&  isSomeChar!Char)","url":"/ddoc/phobos/std/string/strip.html"},{"doc":"If `str` ends with `delimiter`, then `str` is returned without `delimiter` on its end. If it `str` does $(I not) end with `delimiter`, then it is r...","kind":"function","module":"std.string","name":"chomp","package":"phobos","parentType":"","signature":"Range chomp(Range)(Range str) if ((isRandomAccessRange!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chomp.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"chomp","package":"phobos","parentType":"","signature":"Range chomp(Range,  C2)(Range str,  const(C2)[]  delimiter) if ((isBidirectionalRange!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range &&\n     isSomeChar!C2)","url":"/ddoc/phobos/std/string/chomp.html"},{"doc":"","kind":"function","module":"std.string","name":"chomp","package":"phobos","parentType":"","signature":"StringTypeOf!Range chomp(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chomp.html"},{"doc":"","kind":"function","module":"std.string","name":"chomp","package":"phobos","parentType":"","signature":"StringTypeOf!Range chomp(Range,  C2)(auto  ref  Range str,  const(C2)[]  delimiter) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chomp.html"},{"doc":"If `str` starts with `delimiter`, then the part of `str` following `delimiter` is returned. If `str` does $(I not) start with","kind":"function","module":"std.string","name":"chompPrefix","package":"phobos","parentType":"","signature":"Range chompPrefix(Range,  C2)(Range str,  const(C2)[]  delimiter) if ((isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range &&\n     isSomeChar!C2)","url":"/ddoc/phobos/std/string/chompPrefix.html"},{"doc":"","kind":"function","module":"std.string","name":"chompPrefix","package":"phobos","parentType":"","signature":"StringTypeOf!Range chompPrefix(Range,  C2)(auto  ref  Range str,  const(C2)[]  delimiter) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chompPrefix.html"},{"doc":"Returns `str` without its last character, if there is one. If `str` ends with `\"\\r\\n\"`, then both are removed. If `str` is empty, then it is return...","kind":"function","module":"std.string","name":"chop","package":"phobos","parentType":"","signature":"Range chop(Range)(Range str) if ((isBidirectionalRange!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chop.html"},{"doc":"","kind":"function","module":"std.string","name":"chop","package":"phobos","parentType":"","signature":"StringTypeOf!Range chop(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/chop.html"},{"doc":"Left justify `s` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `s` doesn...","kind":"function","module":"std.string","name":"leftJustify","package":"phobos","parentType":"","signature":"S leftJustify(S)(S s,  size_t width,  dchar  fillChar =  ' ') if (isSomeString!S)","url":"/ddoc/phobos/std/string/leftJustify.html"},{"doc":"Left justify `s` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `s` doesn...","kind":"function","module":"std.string","name":"leftJustifier","package":"phobos","parentType":"","signature":"auto leftJustifier(Range)(Range r,  size_t width,  dchar  fillChar =  ' ') if (isInputRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/leftJustifier.html"},{"doc":"","kind":"function","module":"std.string","name":"leftJustifier","package":"phobos","parentType":"","signature":"auto leftJustifier(Range)(auto  ref  Range r,  size_t width,  dchar  fillChar =  ' ') if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/leftJustifier.html"},{"doc":"Right justify `s` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `s` does...","kind":"function","module":"std.string","name":"rightJustify","package":"phobos","parentType":"","signature":"S rightJustify(S)(S s,  size_t width,  dchar  fillChar =  ' ') if (isSomeString!S)","url":"/ddoc/phobos/std/string/rightJustify.html"},{"doc":"Right justify `s` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `s` does...","kind":"function","module":"std.string","name":"rightJustifier","package":"phobos","parentType":"","signature":"auto rightJustifier(Range)(Range r,  size_t width,  dchar  fillChar =  ' ') if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/rightJustifier.html"},{"doc":"","kind":"function","module":"std.string","name":"rightJustifier","package":"phobos","parentType":"","signature":"auto rightJustifier(Range)(auto  ref  Range r,  size_t width,  dchar  fillChar =  ' ') if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/rightJustifier.html"},{"doc":"Center `s` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `s` doesn't fill.","kind":"function","module":"std.string","name":"center","package":"phobos","parentType":"","signature":"S center(S)(S s,  size_t width,  dchar  fillChar =  ' ') if (isSomeString!S)","url":"/ddoc/phobos/std/string/center.html"},{"doc":"Center justify `r` in a field `width` characters wide. `fillChar` is the character that will be used to fill up the space in the field that `r` doe...","kind":"function","module":"std.string","name":"centerJustifier","package":"phobos","parentType":"","signature":"auto centerJustifier(Range)(Range r,  size_t width,  dchar  fillChar =  ' ') if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/centerJustifier.html"},{"doc":"","kind":"function","module":"std.string","name":"centerJustifier","package":"phobos","parentType":"","signature":"auto centerJustifier(Range)(auto  ref  Range r,  size_t width,  dchar  fillChar =  ' ') if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/centerJustifier.html"},{"doc":"Replace each tab character in `s` with the number of spaces necessary to align the following character at the next tab stop.","kind":"function","module":"std.string","name":"detab","package":"phobos","parentType":"","signature":"auto detab(Range)(auto  ref  Range s,  size_t tabSize =  8) if ((isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range))\n     ||  __traits(compiles,  StringTypeOf!Range))","url":"/ddoc/phobos/std/string/detab.html"},{"doc":"Replace each tab character in `r` with the number of spaces necessary to align the following character at the next tab stop.","kind":"function","module":"std.string","name":"detabber","package":"phobos","parentType":"","signature":"auto detabber(Range)(Range r,  size_t tabSize =  8) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/detabber.html"},{"doc":"ditto","kind":"function","module":"std.string","name":"detabber","package":"phobos","parentType":"","signature":"auto detabber(Range)(auto  ref  Range r,  size_t tabSize =  8) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/detabber.html"},{"doc":"Replaces spaces in `s` with the optimal number of tabs. All spaces and tabs at the end of a line are removed.","kind":"function","module":"std.string","name":"entab","package":"phobos","parentType":"","signature":"auto entab(Range)(Range s,  size_t tabSize =  8) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range))","url":"/ddoc/phobos/std/string/entab.html"},{"doc":"","kind":"function","module":"std.string","name":"entab","package":"phobos","parentType":"","signature":"auto entab(Range)(auto  ref  Range s,  size_t tabSize =  8) if (!(isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range))  &&\n     is(StringTypeOf!Range))","url":"/ddoc/phobos/std/string/entab.html"},{"doc":"Replaces spaces in range `r` with the optimal number of tabs. All spaces and tabs at the end of a line are removed.","kind":"function","module":"std.string","name":"entabber","package":"phobos","parentType":"","signature":"auto entabber(Range)(Range r,  size_t tabSize =  8) if (isForwardRange!Range && !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/entabber.html"},{"doc":"","kind":"function","module":"std.string","name":"entabber","package":"phobos","parentType":"","signature":"auto entabber(Range)(auto  ref  Range r,  size_t tabSize =  8) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/entabber.html"},{"doc":"Replaces the characters in `str` which are keys in `transTable` with their corresponding values in `transTable`. `transTable` is an AA where its ke...","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"C1[] translate(C1,  C2 =  immutable  char)(C1[]  str,\n                                         in  dchar[dchar]  transTable,\n                                         const(C2)[]  toRemove =  null) if (isSomeChar!C1 &&  isSomeChar!C2)","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"C1[] translate(C1,  S,  C2 =  immutable  char)(C1[]  str,\n                                            in  S[dchar]  transTable,\n                                            const(C2)[]  toRemove =  null) if (isSomeChar!C1 &&  isSomeString!S &&  isSomeChar!C2)","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"This is an overload of `translate` which takes an existing buffer to write the contents to.","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"void translate(C1,  C2 =  immutable  char,  Buffer)(const(C1)[]  str,\n                                         in  dchar[dchar]  transTable,\n                                         const(C2)[]  toRemove,\n                                         Buffer buffer) if (isSomeChar!C1 &&  isSomeChar!C2 &&  isOutputRange!(Buffer,  C1))","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"Ditto","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"void translate(C1,  S,  C2 =  immutable  char,  Buffer)(C1[]  str,\n                                                    in  S[dchar]  transTable,\n                                                    const(C2)[]  toRemove,\n                                                    Buffer buffer) if (isSomeChar!C1 &&  isSomeString!S &&  isSomeChar!C2 &&  isOutputRange!(Buffer,  S))","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"","kind":"function","module":"std.string","name":"translateImpl","package":"phobos","parentType":"","signature":"void translateImpl(C1,  T,  C2,  Buffer)(const(C1)[]  str,\n                                       scope  T transTable,\n                                       const(C2)[]  toRemove,\n                                       Buffer buffer)","url":"/ddoc/phobos/std/string/translateImpl.html"},{"doc":"This is an $(I $(RED ASCII-only)) overload of $(LREF _translate). It will $(I not) work with Unicode. It exists as an optimization for the cases wh...","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"C[] translate(C =  immutable  char)(scope  const(char)[]  str,  scope  const(char)[]  transTable,\n               scope  const(char)[]  toRemove =  null) if (is(immutable  C ==  immutable  char))","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"Do same thing as $(LREF makeTransTable) but allocate the translation table on the GC heap.","kind":"function","module":"std.string","name":"makeTrans","package":"phobos","parentType":"","signature":"string makeTrans(scope  const(char)[]  from,  scope  const(char)[]  to)","url":"/ddoc/phobos/std/string/makeTrans.html"},{"doc":"Construct 256 character translation table, where characters in from[] are replaced by corresponding characters in to[].","kind":"function","module":"std.string","name":"makeTransTable","package":"phobos","parentType":"","signature":"char[256] makeTransTable(scope  const(char)[]  from,  scope  const(char)[]  to)","url":"/ddoc/phobos/std/string/makeTransTable.html"},{"doc":"This is an $(I $(RED ASCII-only)) overload of `translate` which takes an existing buffer to write the contents to.","kind":"function","module":"std.string","name":"translate","package":"phobos","parentType":"","signature":"void translate(C =  immutable  char,  Buffer)(scope  const(char)[]  str,  scope  const(char)[]  transTable,\n         scope  const(char)[]  toRemove,  Buffer buffer) if (is(immutable  C ==  immutable  char)  &&  isOutputRange!(Buffer,  char))","url":"/ddoc/phobos/std/string/translate.html"},{"doc":"Return string that is the 'successor' to s[]. If the rightmost character is a-zA-Z0-9, it is incremented within its case or digits. If it generates...","kind":"function","module":"std.string","name":"succ","package":"phobos","parentType":"","signature":"S succ(S)(S s) if (isSomeString!S)","url":"/ddoc/phobos/std/string/succ.html"},{"doc":"Replaces the characters in `str` which are in `from` with the the corresponding characters in `to` and returns the resulting string.","kind":"function","module":"std.string","name":"tr","package":"phobos","parentType":"","signature":"C1[] tr(C1,  C2,  C3,  C4 =  immutable  char)(C1[]  str,  const(C2)[]  from,  const(C3)[]  to,  const(C4)[]  modifiers =  null)","url":"/ddoc/phobos/std/string/tr.html"},{"doc":"Takes a string `s` and determines if it represents a number. This function also takes an optional parameter, `bAllowSep`, which will accept the sep...","kind":"function","module":"std.string","name":"isNumeric","package":"phobos","parentType":"","signature":"bool isNumeric(S)(S s,  bool  bAllowSep =  false) if (isSomeString!S ||\n    (isRandomAccessRange!S &&\n     hasSlicing!S &&\n     isSomeChar!(ElementType!S)  &&\n    !isInfinite!S))","url":"/ddoc/phobos/std/string/isNumeric.html"},{"doc":"Soundex algorithm.","kind":"function","module":"std.string","name":"soundexer","package":"phobos","parentType":"","signature":"char[4] soundexer(Range)(Range str) if (isInputRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/soundexer.html"},{"doc":"ditto","kind":"function","module":"std.string","name":"soundexer","package":"phobos","parentType":"","signature":"char[4] soundexer(Range)(auto  ref  Range str) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/soundexer.html"},{"doc":"Like $(LREF soundexer), but with different parameters and return value.","kind":"function","module":"std.string","name":"soundex","package":"phobos","parentType":"","signature":"char[] soundex(scope  const(char)[]  str,  return  scope  char[]  buffer =  null)","url":"/ddoc/phobos/std/string/soundex.html"},{"doc":"Construct an associative array consisting of all abbreviations that uniquely map to the strings in values.","kind":"function","module":"std.string","name":"abbrev","package":"phobos","parentType":"","signature":"string[string] abbrev(string[]  values)","url":"/ddoc/phobos/std/string/abbrev.html"},{"doc":"Compute _column number at the end of the printed form of the string, assuming the string starts in the leftmost _column, which is numbered starting...","kind":"function","module":"std.string","name":"column","package":"phobos","parentType":"","signature":"size_t column(Range)(Range str,  in  size_t tabsize =  8) if ((isInputRange!Range &&  isSomeChar!(ElementEncodingType!Range)  ||\n     isNarrowString!Range)  &&\n    !isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/column.html"},{"doc":"","kind":"function","module":"std.string","name":"column","package":"phobos","parentType":"","signature":"size_t column(Range)(auto  ref  Range str,  in  size_t tabsize =  8) if (isConvertibleToString!Range)","url":"/ddoc/phobos/std/string/column.html"},{"doc":"Wrap text into a paragraph.","kind":"function","module":"std.string","name":"wrap","package":"phobos","parentType":"","signature":"S wrap(S)(S s,  in  size_t columns =  80,  S firstindent =  null,\n S indent =  null,  in  size_t tabsize =  8) if (isSomeString!S)","url":"/ddoc/phobos/std/string/wrap.html"},{"doc":"Removes one level of indentation from a multi-line string.","kind":"function","module":"std.string","name":"outdent","package":"phobos","parentType":"","signature":"S outdent(S)(S str) if (isSomeString!S)","url":"/ddoc/phobos/std/string/outdent.html"},{"doc":"Removes one level of indentation from an array of single-line strings.","kind":"function","module":"std.string","name":"outdent","package":"phobos","parentType":"","signature":"S[] outdent(S)(return  scope  S[]  lines) if (isSomeString!S)","url":"/ddoc/phobos/std/string/outdent.html"},{"doc":"Assume the given array of integers `arr` is a well-formed UTF string and return it typed as a UTF string.","kind":"function","module":"std.string","name":"assumeUTF","package":"phobos","parentType":"","signature":"auto assumeUTF(T)(T[]  arr) if (staticIndexOf!(immutable  T,  immutable  ubyte,  immutable  ushort,  immutable  uint) !=  - 1)","url":"/ddoc/phobos/std/string/assumeUTF.html"},{"doc":"Exception thrown on errors in std.string functions.","kind":"class","module":"std.string","name":"StringException","package":"phobos","parentType":"","signature":"StringException : Exception","url":"/ddoc/phobos/std/string.html#StringException"},{"doc":"Flag indicating whether a search is case-sensitive.","kind":"alias","module":"std.string","name":"CaseSensitive","package":"phobos","parentType":"","signature":"CaseSensitive = Flag!\"caseSensitive\"","url":"/ddoc/phobos/std/string.html#CaseSensitive"},{"doc":"Split `s` into an array of lines according to the unicode standard using `'\\r'`, `'\\n'`, `\"\\r\\n\"`, $(REF lineSep, std,uni), $(REF paraSep, std,uni)...","kind":"alias","module":"std.string","name":"KeepTerminator","package":"phobos","parentType":"","signature":"KeepTerminator = Flag!\"keepTerminator\"","url":"/ddoc/phobos/std/string.html#KeepTerminator"},{"doc":"","kind":"struct","module":"std.string","name":"LineSplitter","package":"phobos","parentType":"","signature":"LineSplitter(KeepTerminator keepTerm =  No.keepTerminator,  Range)","url":"/ddoc/phobos/std/string.html#LineSplitter"},{"doc":"","kind":"method","module":"std.string","name":"front","package":"phobos","parentType":"LineSplitter","signature":"typeof(_input) front()","url":"/ddoc/phobos/std/string/LineSplitter.front.html"},{"doc":"","kind":"method","module":"std.string","name":"popFront","package":"phobos","parentType":"LineSplitter","signature":"void popFront()","url":"/ddoc/phobos/std/string/LineSplitter.popFront.html"},{"doc":"","kind":"template","module":"std.string","name":"_indexOfStr","package":"phobos","parentType":"","signature":"_indexOfStr(CaseSensitive cs)","url":"/ddoc/phobos/std/string.html#_indexOfStr"},{"doc":"","kind":"function","module":"std.string","name":"_indexOfStr","package":"phobos","parentType":"","signature":"ptrdiff_t _indexOfStr(Range,  Char)(Range s,  const(Char)[]  sub) if (isForwardRange!Range &&  isSomeChar!(ElementEncodingType!Range)  &&\n         isSomeChar!Char)","url":"/ddoc/phobos/std/string.html#_indexOfStr"},{"doc":"[SumType] is a generic discriminated union implementation that uses design-by-introspection to generate safe and efficient code. Its features include:","kind":"module","module":"std.sumtype","name":"std.sumtype","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/sumtype.html"},{"doc":"","kind":"function","module":"std.sumtype","name":"stride","package":"phobos","parentType":"","signature":"size_t stride(size_t dim,  lengths...)()","url":"/ddoc/phobos/std/sumtype/stride.html"},{"doc":"","kind":"function","module":"std.sumtype","name":"destroyIfOwner","package":"phobos","parentType":"","signature":"void destroyIfOwner(T)(ref  T value)","url":"/ddoc/phobos/std/sumtype/destroyIfOwner.html"},{"doc":"Placeholder used to refer to the enclosing [SumType].","kind":"struct","module":"std.sumtype","name":"This","package":"phobos","parentType":"","signature":"This","url":"/ddoc/phobos/std/sumtype.html#This"},{"doc":"A [tagged union](https://en.wikipedia.org/wiki/Tagged_union) that can hold a single value from any of a specified set of types.","kind":"struct","module":"std.sumtype","name":"SumType","package":"phobos","parentType":"","signature":"SumType(Types...) if (is(NoDuplicates!Types ==  Types)  &&  Types.length >  0)","url":"/ddoc/phobos/std/sumtype.html#SumType"},{"doc":"","kind":"method","module":"std.sumtype","name":"getByIndex","package":"phobos","parentType":"SumType","signature":"@trusted ref getByIndex(size_t tid)() if (tid <  Types.length)","url":"/ddoc/phobos/std/sumtype/SumType.getByIndex.html"},{"doc":"Compares two `SumType`s for equality.","kind":"method","module":"std.sumtype","name":"opEquals","package":"phobos","parentType":"SumType","signature":"bool opEquals(this  This,  Rhs)(auto  ref  Rhs rhs) if (!is(CommonType!(This,  Rhs)  ==  void))","url":"/ddoc/phobos/std/sumtype/SumType.opEquals.html"},{"doc":"","kind":"struct","module":"std.sumtype","name":"TagTuple","package":"phobos","parentType":"","signature":"TagTuple(typeCounts...)","url":"/ddoc/phobos/std/sumtype.html#TagTuple"},{"doc":"","kind":"method","module":"std.sumtype","name":"fromCaseId","package":"phobos","parentType":"TagTuple","signature":"TagTuple fromCaseId(size_t caseId)","url":"/ddoc/phobos/std/sumtype/TagTuple.fromCaseId.html"},{"doc":"","kind":"method","module":"std.sumtype","name":"toCaseId","package":"phobos","parentType":"TagTuple","signature":"size_t toCaseId()","url":"/ddoc/phobos/std/sumtype/TagTuple.toCaseId.html"},{"doc":"Calls a type-appropriate function with the value held in a [SumType].","kind":"template","module":"std.sumtype","name":"match","package":"phobos","parentType":"","signature":"match(handlers...)","url":"/ddoc/phobos/std/sumtype.html#match"},{"doc":"The actual `match` function.","kind":"function","module":"std.sumtype","name":"match","package":"phobos","parentType":"","signature":"auto ref match(SumTypes...)(auto  ref  SumTypes args) if (allSatisfy!(isSumType,  SumTypes)  &&  args.length >  0)","url":"/ddoc/phobos/std/sumtype.html#match"},{"doc":"True if `handler` is a potential match for `Ts`, otherwise false.","kind":"template","module":"std.sumtype","name":"canMatch","package":"phobos","parentType":"","signature":"canMatch(alias  handler,  Ts...)","url":"/ddoc/phobos/std/sumtype.html#canMatch"},{"doc":"","kind":"template","module":"std.sumtype","name":"Iota","package":"phobos","parentType":"","signature":"Iota(size_t n)","url":"/ddoc/phobos/std/sumtype.html#Iota"},{"doc":"","kind":"template","module":"std.sumtype","name":"matchImpl","package":"phobos","parentType":"","signature":"matchImpl(Flag!\"exhaustive\" exhaustive,  handlers...)","url":"/ddoc/phobos/std/sumtype.html#matchImpl"},{"doc":"","kind":"function","module":"std.sumtype","name":"matchImpl","package":"phobos","parentType":"","signature":"auto ref matchImpl(SumTypes...)(auto  ref  SumTypes args) if (allSatisfy!(isSumType,  SumTypes)  &&  args.length >  0)","url":"/ddoc/phobos/std/sumtype.html#matchImpl"},{"doc":"","kind":"template","module":"std.sumtype","name":"handlerArgs","package":"phobos","parentType":"","signature":"handlerArgs(size_t caseId,  typeCounts...)","url":"/ddoc/phobos/std/sumtype.html#handlerArgs"},{"doc":"Checks whether a `SumType` contains a value of a given type.","kind":"template","module":"std.sumtype","name":"has","package":"phobos","parentType":"","signature":"has(T)","url":"/ddoc/phobos/std/sumtype.html#has"},{"doc":"The actual `has` function.","kind":"function","module":"std.sumtype","name":"has","package":"phobos","parentType":"","signature":"bool has(Self)(auto  ref  Self self) if (isSumType!Self)","url":"/ddoc/phobos/std/sumtype.html#has"},{"doc":"","kind":"function","module":"std.sumtype","name":"checkType","package":"phobos","parentType":"","signature":"bool checkType(Value)(ref  Value value)","url":"/ddoc/phobos/std/sumtype.html#has"},{"doc":"Accesses a `SumType`'s value.","kind":"template","module":"std.sumtype","name":"get","package":"phobos","parentType":"","signature":"get(T)","url":"/ddoc/phobos/std/sumtype.html#get"},{"doc":"The actual `get` function.","kind":"function","module":"std.sumtype","name":"get","package":"phobos","parentType":"","signature":"T get(Self)(auto  ref  Self self) if (isSumType!Self)","url":"/ddoc/phobos/std/sumtype.html#get"},{"doc":"","kind":"template","module":"std.sumtype","name":"failedGetMessage","package":"phobos","parentType":"","signature":"failedGetMessage(Expected,  Actual)","url":"/ddoc/phobos/std/sumtype.html#failedGetMessage"},{"doc":"","kind":"template","module":"std.sumtype","name":"getLvalue","package":"phobos","parentType":"","signature":"getLvalue(Flag!\"try_\" try_,  T)","url":"/ddoc/phobos/std/sumtype.html#getLvalue"},{"doc":"","kind":"function","module":"std.sumtype","name":"getLvalue","package":"phobos","parentType":"","signature":"T getLvalue(Value)(ref  Value value)","url":"/ddoc/phobos/std/sumtype.html#getLvalue"},{"doc":"","kind":"template","module":"std.sumtype","name":"getRvalue","package":"phobos","parentType":"","signature":"getRvalue(Flag!\"try_\" try_,  T)","url":"/ddoc/phobos/std/sumtype.html#getRvalue"},{"doc":"","kind":"function","module":"std.sumtype","name":"getRvalue","package":"phobos","parentType":"","signature":"T getRvalue(Value)(ref  Value value)","url":"/ddoc/phobos/std/sumtype.html#getRvalue"},{"doc":"True if `T` is an instance of the `SumType` template, otherwise false.","kind":"variable","module":"std.sumtype","name":"isSumTypeInstance","package":"phobos","parentType":"","signature":"bool isSumTypeInstance","url":"/ddoc/phobos/std/sumtype.html#isSumTypeInstance"},{"doc":"True if `T` is a [SumType] or implicitly converts to one, otherwise false.","kind":"variable","module":"std.sumtype","name":"isSumType","package":"phobos","parentType":"","signature":"bool isSumType","url":"/ddoc/phobos/std/sumtype.html#isSumType"},{"doc":"* Information about the target operating system, environment, and CPU. * *  Copyright: Copyright The D Language Foundation 2000 - 2011 *  License: ...","kind":"module","module":"std.system","name":"std.system","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/system.html"},{"doc":"Operating system.","kind":"enum","module":"std.system","name":"OS","package":"phobos","parentType":"","signature":"OS","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Microsoft 32 bit Windows systems","kind":"enum_member","module":"std.system","name":"win32","package":"phobos","parentType":"","signature":"win32 = 1","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Microsoft 64 bit Windows systems","kind":"enum_member","module":"std.system","name":"win64","package":"phobos","parentType":"","signature":"win64 = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"All Linux Systems, except for Android","kind":"enum_member","module":"std.system","name":"linux","package":"phobos","parentType":"","signature":"linux = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Mac OS X","kind":"enum_member","module":"std.system","name":"osx","package":"phobos","parentType":"","signature":"osx = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"iOS","kind":"enum_member","module":"std.system","name":"iOS","package":"phobos","parentType":"","signature":"iOS = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"tvOS","kind":"enum_member","module":"std.system","name":"tvOS","package":"phobos","parentType":"","signature":"tvOS = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"watchOS","kind":"enum_member","module":"std.system","name":"watchOS","package":"phobos","parentType":"","signature":"watchOS = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"FreeBSD","kind":"enum_member","module":"std.system","name":"freeBSD","package":"phobos","parentType":"","signature":"freeBSD = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"NetBSD","kind":"enum_member","module":"std.system","name":"netBSD","package":"phobos","parentType":"","signature":"netBSD = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"OpenBSD","kind":"enum_member","module":"std.system","name":"openBSD","package":"phobos","parentType":"","signature":"openBSD = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"DragonFlyBSD","kind":"enum_member","module":"std.system","name":"dragonFlyBSD","package":"phobos","parentType":"","signature":"dragonFlyBSD = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Solaris","kind":"enum_member","module":"std.system","name":"solaris","package":"phobos","parentType":"","signature":"solaris = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"HaikuOS","kind":"enum_member","module":"std.system","name":"haiku","package":"phobos","parentType":"","signature":"haiku = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Android","kind":"enum_member","module":"std.system","name":"android","package":"phobos","parentType":"","signature":"android = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Other Posix Systems","kind":"enum_member","module":"std.system","name":"otherPosix","package":"phobos","parentType":"","signature":"otherPosix = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Unknown","kind":"enum_member","module":"std.system","name":"unknown","package":"phobos","parentType":"","signature":"unknown = ","url":"/ddoc/phobos/std/system.html#OS"},{"doc":"Byte order endianness.","kind":"enum","module":"std.system","name":"Endian","package":"phobos","parentType":"","signature":"Endian","url":"/ddoc/phobos/std/system.html#Endian"},{"doc":"Big endian byte order","kind":"enum_member","module":"std.system","name":"bigEndian","package":"phobos","parentType":"","signature":"bigEndian = ","url":"/ddoc/phobos/std/system.html#Endian"},{"doc":"Little endian byte order","kind":"enum_member","module":"std.system","name":"littleEndian","package":"phobos","parentType":"","signature":"littleEndian = ","url":"/ddoc/phobos/std/system.html#Endian"},{"doc":"Instruction Set Architecture.","kind":"enum","module":"std.system","name":"ISA","package":"phobos","parentType":"","signature":"ISA","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"Intel and AMD 32-bit processors","kind":"enum_member","module":"std.system","name":"x86","package":"phobos","parentType":"","signature":"x86 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"Intel and AMD 64-bit processors","kind":"enum_member","module":"std.system","name":"x86_64","package":"phobos","parentType":"","signature":"x86_64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The ARM architecture (32-bit) (AArch32 et al)","kind":"enum_member","module":"std.system","name":"arm","package":"phobos","parentType":"","signature":"arm = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Advanced RISC Machine architecture (64-bit)","kind":"enum_member","module":"std.system","name":"aarch64","package":"phobos","parentType":"","signature":"aarch64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The asm.js intermediate programming language","kind":"enum_member","module":"std.system","name":"asmJS","package":"phobos","parentType":"","signature":"asmJS = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"8-bit Atmel AVR Microcontrollers","kind":"enum_member","module":"std.system","name":"avr","package":"phobos","parentType":"","signature":"avr = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Epiphany architecture","kind":"enum_member","module":"std.system","name":"epiphany","package":"phobos","parentType":"","signature":"epiphany = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The PowerPC architecture, 32-bit","kind":"enum_member","module":"std.system","name":"ppc","package":"phobos","parentType":"","signature":"ppc = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The PowerPC architecture, 64-bit","kind":"enum_member","module":"std.system","name":"ppc64","package":"phobos","parentType":"","signature":"ppc64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Itanium architecture (64-bit)","kind":"enum_member","module":"std.system","name":"ia64","package":"phobos","parentType":"","signature":"ia64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The MIPS architecture, 32-bit","kind":"enum_member","module":"std.system","name":"mips32","package":"phobos","parentType":"","signature":"mips32 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The MIPS architecture, 64-bit","kind":"enum_member","module":"std.system","name":"mips64","package":"phobos","parentType":"","signature":"mips64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The MSP430 architecture","kind":"enum_member","module":"std.system","name":"msp430","package":"phobos","parentType":"","signature":"msp430 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Nvidia Parallel Thread Execution (PTX) architecture, 32-bit","kind":"enum_member","module":"std.system","name":"nvptx","package":"phobos","parentType":"","signature":"nvptx = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Nvidia Parallel Thread Execution (PTX) architecture, 64-bit","kind":"enum_member","module":"std.system","name":"nvptx64","package":"phobos","parentType":"","signature":"nvptx64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The RISC-V architecture, 32-bit","kind":"enum_member","module":"std.system","name":"riscv32","package":"phobos","parentType":"","signature":"riscv32 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The RISC-V architecture, 64-bit","kind":"enum_member","module":"std.system","name":"riscv64","package":"phobos","parentType":"","signature":"riscv64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The SPARC architecture, 32-bit","kind":"enum_member","module":"std.system","name":"sparc","package":"phobos","parentType":"","signature":"sparc = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The SPARC architecture, 64-bit","kind":"enum_member","module":"std.system","name":"sparc64","package":"phobos","parentType":"","signature":"sparc64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The System/390 architecture, 32-bit","kind":"enum_member","module":"std.system","name":"s390","package":"phobos","parentType":"","signature":"s390 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The System Z architecture, 64-bit","kind":"enum_member","module":"std.system","name":"systemZ","package":"phobos","parentType":"","signature":"systemZ = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The HP PA-RISC architecture, 32-bit","kind":"enum_member","module":"std.system","name":"hppa","package":"phobos","parentType":"","signature":"hppa = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The HP PA-RISC architecture, 64-bit","kind":"enum_member","module":"std.system","name":"hppa64","package":"phobos","parentType":"","signature":"hppa64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The SuperH architecture, 32-bit","kind":"enum_member","module":"std.system","name":"sh","package":"phobos","parentType":"","signature":"sh = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The WebAssembly virtual ISA (instruction set architecture), 32-bit","kind":"enum_member","module":"std.system","name":"webAssembly","package":"phobos","parentType":"","signature":"webAssembly = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Alpha architecture","kind":"enum_member","module":"std.system","name":"alpha","package":"phobos","parentType":"","signature":"alpha = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The LoongAtch architecture, 32-bit","kind":"enum_member","module":"std.system","name":"loongArch32","package":"phobos","parentType":"","signature":"loongArch32 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The LoongArch architecture, 64-bit","kind":"enum_member","module":"std.system","name":"loongArch64","package":"phobos","parentType":"","signature":"loongArch64 = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"The Xtensa architecture, 32-bit","kind":"enum_member","module":"std.system","name":"xtensa","package":"phobos","parentType":"","signature":"xtensa = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"Unknown","kind":"enum_member","module":"std.system","name":"unknown","package":"phobos","parentType":"","signature":"unknown = ","url":"/ddoc/phobos/std/system.html#ISA"},{"doc":"Templates which extract information about types and symbols at compile time.","kind":"module","module":"std.traits","name":"std.traits","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/traits.html"},{"doc":"","kind":"function","module":"std.traits","name":"extractAttribFlags","package":"phobos","parentType":"","signature":"FunctionAttribute extractAttribFlags(Attribs...)()","url":"/ddoc/phobos/std/traits/extractAttribFlags.html"},{"doc":"Creates an lvalue or rvalue of type `T` for `typeof(...)` and $(DDSUBLINK spec/traits, compiles, `__traits(compiles, ...)`) purposes. No actual val...","kind":"function","module":"std.traits","name":"rvalueOf","package":"phobos","parentType":"","signature":"T rvalueOf(T)(inout  __InoutWorkaroundStruct =  __InoutWorkaroundStruct.init)","url":"/ddoc/phobos/std/traits/rvalueOf.html"},{"doc":"ditto","kind":"function","module":"std.traits","name":"lvalueOf","package":"phobos","parentType":"","signature":"T lvalueOf(T)(inout  __InoutWorkaroundStruct =  __InoutWorkaroundStruct.init)","url":"/ddoc/phobos/std/traits/lvalueOf.html"},{"doc":"Select one of two functions to run via template parameter.","kind":"function","module":"std.traits","name":"select","package":"phobos","parentType":"","signature":"A select(bool  cond :  true,  A,  B)(A a,  lazy  B b)","url":"/ddoc/phobos/std/traits/select.html"},{"doc":"Ditto","kind":"function","module":"std.traits","name":"select","package":"phobos","parentType":"","signature":"B select(bool  cond :  false,  A,  B)(lazy  A a,  B b)","url":"/ddoc/phobos/std/traits/select.html"},{"doc":"","kind":"function","module":"std.traits","name":"dip1000Test","package":"phobos","parentType":"","signature":"auto dip1000Test(int  x)","url":"/ddoc/phobos/std/traits/dip1000Test.html"},{"doc":"","kind":"alias","module":"std.traits","name":"staticMap","package":"phobos","parentType":"","signature":"staticMap = staticMapMeta","url":"/ddoc/phobos/std/traits.html#staticMap"},{"doc":"","kind":"alias","module":"std.traits","name":"IntegralTypeList","package":"phobos","parentType":"","signature":"IntegralTypeList = AliasSeq!(byte,  ubyte,  short,  ushort,  int,  uint,  long,  ulong,  CentTypeList)","url":"/ddoc/phobos/std/traits.html#IntegralTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"SignedIntTypeList","package":"phobos","parentType":"","signature":"SignedIntTypeList = AliasSeq!(byte,  short,  int,  long,  SignedCentTypeList)","url":"/ddoc/phobos/std/traits.html#SignedIntTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"UnsignedIntTypeList","package":"phobos","parentType":"","signature":"UnsignedIntTypeList = AliasSeq!(ubyte,  ushort,  uint,  ulong,  UnsignedCentTypeList)","url":"/ddoc/phobos/std/traits.html#UnsignedIntTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"FloatingPointTypeList","package":"phobos","parentType":"","signature":"FloatingPointTypeList = AliasSeq!(float,  double,  real)","url":"/ddoc/phobos/std/traits.html#FloatingPointTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"ImaginaryTypeList","package":"phobos","parentType":"","signature":"ImaginaryTypeList = AliasSeq!(ifloat,  idouble,  ireal)","url":"/ddoc/phobos/std/traits.html#ImaginaryTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"ComplexTypeList","package":"phobos","parentType":"","signature":"ComplexTypeList = AliasSeq!(cfloat,  cdouble,  creal)","url":"/ddoc/phobos/std/traits.html#ComplexTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"NumericTypeList","package":"phobos","parentType":"","signature":"NumericTypeList = AliasSeq!(IntegralTypeList,  FloatingPointTypeList)","url":"/ddoc/phobos/std/traits.html#NumericTypeList"},{"doc":"","kind":"alias","module":"std.traits","name":"CharTypeList","package":"phobos","parentType":"","signature":"CharTypeList = AliasSeq!(char,  wchar,  dchar)","url":"/ddoc/phobos/std/traits.html#CharTypeList"},{"doc":"Params: T = The type to qualify Returns: `T` with the `inout` qualifier added.","kind":"alias","module":"std.traits","name":"InoutOf","package":"phobos","parentType":"","signature":"InoutOf(T) = inout(T)","url":"/ddoc/phobos/std/traits.html#InoutOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `const` qualifier added.","kind":"alias","module":"std.traits","name":"ConstOf","package":"phobos","parentType":"","signature":"ConstOf(T) = const(T)","url":"/ddoc/phobos/std/traits.html#ConstOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `shared` qualifier added.","kind":"alias","module":"std.traits","name":"SharedOf","package":"phobos","parentType":"","signature":"SharedOf(T) = shared(T)","url":"/ddoc/phobos/std/traits.html#SharedOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `inout` and `shared` qualifiers added.","kind":"alias","module":"std.traits","name":"SharedInoutOf","package":"phobos","parentType":"","signature":"SharedInoutOf(T) = shared(inout(T))","url":"/ddoc/phobos/std/traits.html#SharedInoutOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `const` and `shared` qualifiers added.","kind":"alias","module":"std.traits","name":"SharedConstOf","package":"phobos","parentType":"","signature":"SharedConstOf(T) = shared(const(T))","url":"/ddoc/phobos/std/traits.html#SharedConstOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `const`, `shared`, and `inout` qualifiers added.","kind":"alias","module":"std.traits","name":"SharedConstInoutOf","package":"phobos","parentType":"","signature":"SharedConstInoutOf(T) = shared(const(inout(T)))","url":"/ddoc/phobos/std/traits.html#SharedConstInoutOf"},{"doc":"Params: T = The type to qualify Returns: `T` with the `immutable` qualifier added.","kind":"alias","module":"std.traits","name":"ImmutableOf","package":"phobos","parentType":"","signature":"ImmutableOf(T) = immutable(T)","url":"/ddoc/phobos/std/traits.html#ImmutableOf"},{"doc":"","kind":"alias","module":"std.traits","name":"parentOf","package":"phobos","parentType":"","signature":"parentOf(alias  sym) = Identity!(__traits(parent,  sym))","url":"/ddoc/phobos/std/traits.html#parentOf"},{"doc":"","kind":"alias","module":"std.traits","name":"parentOf","package":"phobos","parentType":"","signature":"parentOf(alias  sym :  T!Args,  alias  T,  Args...) = Identity!(__traits(parent,  T))","url":"/ddoc/phobos/std/traits.html#parentOf"},{"doc":"Alternate name for $(LREF Parameters), kept for legacy compatibility.","kind":"alias","module":"std.traits","name":"ParameterTypeTuple","package":"phobos","parentType":"","signature":"ParameterTypeTuple = Parameters","url":"/ddoc/phobos/std/traits.html#ParameterTypeTuple"},{"doc":"Get a tuple of the storage classes of a function's parameters. Params: func = function symbol or type of function, delegate, or pointer to function...","kind":"enum","module":"std.traits","name":"ParameterStorageClass","package":"phobos","parentType":"","signature":"ParameterStorageClass : uint","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"These flags can be bitwise OR-ed together to represent complex storage class.","kind":"enum_member","module":"std.traits","name":"none","package":"phobos","parentType":"","signature":"none = 0x00","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"in_","package":"phobos","parentType":"","signature":"in_ = 0x01","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"ref_","package":"phobos","parentType":"","signature":"ref_ = 0x02","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"out_","package":"phobos","parentType":"","signature":"out_ = 0x04","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"lazy_","package":"phobos","parentType":"","signature":"lazy_ = 0x08","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"scope_","package":"phobos","parentType":"","signature":"scope_ = 0x10","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"return_","package":"phobos","parentType":"","signature":"return_ = 0x20","url":"/ddoc/phobos/std/traits.html#ParameterStorageClass"},{"doc":"Alternate name for $(LREF ParameterDefaults), kept for legacy compatibility.","kind":"alias","module":"std.traits","name":"ParameterDefaultValueTuple","package":"phobos","parentType":"","signature":"ParameterDefaultValueTuple = ParameterDefaults","url":"/ddoc/phobos/std/traits.html#ParameterDefaultValueTuple"},{"doc":"Returns the FunctionAttribute mask for function `func`.","kind":"enum","module":"std.traits","name":"FunctionAttribute","package":"phobos","parentType":"","signature":"FunctionAttribute : uint","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"These flags can be bitwise OR-ed together to represent a complex attribute.","kind":"enum_member","module":"std.traits","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"pure_","package":"phobos","parentType":"","signature":"pure_ = 1 <<  0","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"nothrow_","package":"phobos","parentType":"","signature":"nothrow_ = 1 <<  1","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"ref_","package":"phobos","parentType":"","signature":"ref_ = 1 <<  2","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"property","package":"phobos","parentType":"","signature":"property = 1 <<  3","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"trusted","package":"phobos","parentType":"","signature":"trusted = 1 <<  4","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"safe","package":"phobos","parentType":"","signature":"safe = 1 <<  5","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"nogc","package":"phobos","parentType":"","signature":"nogc = 1 <<  6","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"system","package":"phobos","parentType":"","signature":"system = 1 <<  7","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"const_","package":"phobos","parentType":"","signature":"const_ = 1 <<  8","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"immutable_","package":"phobos","parentType":"","signature":"immutable_ = 1 <<  9","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"inout_","package":"phobos","parentType":"","signature":"inout_ = 1 <<  10","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"shared_","package":"phobos","parentType":"","signature":"shared_ = 1 <<  11","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"return_","package":"phobos","parentType":"","signature":"return_ = 1 <<  12","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"scope_","package":"phobos","parentType":"","signature":"scope_ = 1 <<  13","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"ditto","kind":"enum_member","module":"std.traits","name":"live","package":"phobos","parentType":"","signature":"live = 1 <<  14","url":"/ddoc/phobos/std/traits.html#FunctionAttribute"},{"doc":"Determines what kind of variadic parameters function has. Params: func = function symbol or type of function, delegate, or pointer to function Retu...","kind":"enum","module":"std.traits","name":"Variadic","package":"phobos","parentType":"","signature":"Variadic","url":"/ddoc/phobos/std/traits.html#Variadic"},{"doc":"Function is not variadic.","kind":"enum_member","module":"std.traits","name":"no","package":"phobos","parentType":"","signature":"no = ","url":"/ddoc/phobos/std/traits.html#Variadic"},{"doc":"Function is a _C-style variadic function, which uses `core.stdc.stdarg`","kind":"enum_member","module":"std.traits","name":"c","package":"phobos","parentType":"","signature":"c = ","url":"/ddoc/phobos/std/traits.html#Variadic"},{"doc":"Function is a _D-style variadic function, which uses `__argptr` and `__arguments`.","kind":"enum_member","module":"std.traits","name":"d","package":"phobos","parentType":"","signature":"d = ","url":"/ddoc/phobos/std/traits.html#Variadic"},{"doc":"Function is a typesafe variadic function.","kind":"enum_member","module":"std.traits","name":"typesafe","package":"phobos","parentType":"","signature":"typesafe = ","url":"/ddoc/phobos/std/traits.html#Variadic"},{"doc":"Alternate name for $(LREF Fields), kept for legacy compatibility.","kind":"alias","module":"std.traits","name":"FieldTypeTuple","package":"phobos","parentType":"","signature":"FieldTypeTuple = Fields","url":"/ddoc/phobos/std/traits.html#FieldTypeTuple"},{"doc":"","kind":"alias","module":"std.traits","name":"Identity","package":"phobos","parentType":"","signature":"Identity(alias  A) = A","url":"/ddoc/phobos/std/traits.html#Identity"},{"doc":"Get a $(D_PARAM AliasSeq) of $(I all) base classes of $(D_PARAM T), in decreasing order, followed by $(D_PARAM T)'s interfaces. $(D_PARAM Transitiv...","kind":"alias","module":"std.traits","name":"TransitiveBaseTypeTuple","package":"phobos","parentType":"","signature":"TransitiveBaseTypeTuple(T) = AliasSeq!(BaseClassesTuple!T,  InterfacesTuple!T)","url":"/ddoc/phobos/std/traits.html#TransitiveBaseTypeTuple"},{"doc":"Returns an alias to the template that `T` is an instance of. It will return `void` if a symbol without a template is given.","kind":"alias","module":"std.traits","name":"TemplateOf","package":"phobos","parentType":"","signature":"TemplateOf(alias  T :  Base!Args,  alias  Base,  Args...) = Base","url":"/ddoc/phobos/std/traits.html#TemplateOf"},{"doc":"ditto","kind":"alias","module":"std.traits","name":"TemplateOf","package":"phobos","parentType":"","signature":"TemplateOf(alias  T) = void","url":"/ddoc/phobos/std/traits.html#TemplateOf"},{"doc":"Returns a `AliasSeq` of the template arguments used to instantiate `T`.","kind":"alias","module":"std.traits","name":"TemplateArgsOf","package":"phobos","parentType":"","signature":"TemplateArgsOf(alias  T :  Base!Args,  alias  Base,  Args...) = Args","url":"/ddoc/phobos/std/traits.html#TemplateArgsOf"},{"doc":"ditto","kind":"alias","module":"std.traits","name":"TemplateArgsOf","package":"phobos","parentType":"","signature":"TemplateArgsOf(T :  Base!Args,  alias  Base,  Args...) = Args","url":"/ddoc/phobos/std/traits.html#TemplateArgsOf"},{"doc":"","kind":"struct","module":"std.traits","name":"__InoutWorkaroundStruct","package":"phobos","parentType":"","signature":"__InoutWorkaroundStruct","url":"/ddoc/phobos/std/traits.html#__InoutWorkaroundStruct"},{"doc":"Returns the target type of a pointer.","kind":"alias","module":"std.traits","name":"PointerTarget","package":"phobos","parentType":"","signature":"PointerTarget(T :  T *) = T","url":"/ddoc/phobos/std/traits.html#PointerTarget"},{"doc":"Alternate name for $(LREF isExpressions), kept for legacy compatibility.","kind":"alias","module":"std.traits","name":"isExpressionTuple","package":"phobos","parentType":"","signature":"isExpressionTuple = isExpressions","url":"/ddoc/phobos/std/traits.html#isExpressionTuple"},{"doc":"Get the Key type of an Associative Array.","kind":"alias","module":"std.traits","name":"KeyType","package":"phobos","parentType":"","signature":"KeyType(V :  V[K],  K) = K","url":"/ddoc/phobos/std/traits.html#KeyType"},{"doc":"Get the Value type of an Associative Array.","kind":"alias","module":"std.traits","name":"ValueType","package":"phobos","parentType":"","signature":"ValueType(V :  V[K],  K) = V","url":"/ddoc/phobos/std/traits.html#ValueType"},{"doc":"The parameter type deduced by IFTI when an expression of type T is passed as an argument to a template function.","kind":"alias","module":"std.traits","name":"DeducedParameterType","package":"phobos","parentType":"","signature":"DeducedParameterType(T) = DeducedParameterTypeImpl!T","url":"/ddoc/phobos/std/traits.html#DeducedParameterType"},{"doc":"ditto","kind":"alias","module":"std.traits","name":"DeducedParameterType","package":"phobos","parentType":"","signature":"DeducedParameterType(alias  T) = DeducedParameterTypeImpl!T","url":"/ddoc/phobos/std/traits.html#DeducedParameterType"},{"doc":"Gives a template that can be used to apply the same attributes that are on the given type `T`. E.g. passing `inout shared int` will return `SharedI...","kind":"template","module":"std.traits","name":"QualifierOf","package":"phobos","parentType":"","signature":"QualifierOf(T)","url":"/ddoc/phobos/std/traits.html#QualifierOf"},{"doc":"Get the full package name for the given symbol.","kind":"template","module":"std.traits","name":"packageName","package":"phobos","parentType":"","signature":"packageName(alias  T)","url":"/ddoc/phobos/std/traits.html#packageName"},{"doc":"Get the module name (including package) for the given symbol.","kind":"template","module":"std.traits","name":"moduleName","package":"phobos","parentType":"","signature":"moduleName(alias  T)","url":"/ddoc/phobos/std/traits.html#moduleName"},{"doc":"","kind":"template","module":"std.traits","name":"fqnSym","package":"phobos","parentType":"","signature":"fqnSym(alias  T :  X!A,  alias  X,  A...)","url":"/ddoc/phobos/std/traits.html#fqnSym"},{"doc":"","kind":"template","module":"std.traits","name":"fqnSym","package":"phobos","parentType":"","signature":"fqnSym(alias  T)","url":"/ddoc/phobos/std/traits.html#fqnSym"},{"doc":"","kind":"function","module":"std.traits","name":"adjustIdent","package":"phobos","parentType":"","signature":"string adjustIdent(string s)","url":"/ddoc/phobos/std/traits.html#fqnSym"},{"doc":"","kind":"template","module":"std.traits","name":"fqnType","package":"phobos","parentType":"","signature":"fqnType(T,\n     bool  alreadyConst,  bool  alreadyImmutable,  bool  alreadyShared,  bool  alreadyInout)","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"","kind":"function","module":"std.traits","name":"storageClassesString","package":"phobos","parentType":"","signature":"string storageClassesString(uint  psc)()","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"","kind":"function","module":"std.traits","name":"parametersTypeString","package":"phobos","parentType":"","signature":"string parametersTypeString(T)()","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"","kind":"function","module":"std.traits","name":"linkageString","package":"phobos","parentType":"","signature":"string linkageString(T)()","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"","kind":"function","module":"std.traits","name":"functionAttributeString","package":"phobos","parentType":"","signature":"string functionAttributeString(T)()","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"","kind":"function","module":"std.traits","name":"addQualifiers","package":"phobos","parentType":"","signature":"string addQualifiers(string typeString,\n         bool  addConst,  bool  addImmutable,  bool  addShared,  bool  addInout)","url":"/ddoc/phobos/std/traits.html#fqnType"},{"doc":"Get the type of the return value from a function, a pointer to function, a delegate, a struct with an opCall, a pointer to a struct with an opCall,...","kind":"template","module":"std.traits","name":"ReturnType","package":"phobos","parentType":"","signature":"ReturnType(alias  func)","url":"/ddoc/phobos/std/traits.html#ReturnType"},{"doc":"Get, as a tuple, the types of the parameters to a function, a pointer to function, a delegate, a struct with an `opCall`, a pointer to a struct wit...","kind":"template","module":"std.traits","name":"Parameters","package":"phobos","parentType":"","signature":"Parameters(alias  func)","url":"/ddoc/phobos/std/traits.html#Parameters"},{"doc":"Returns the number of arguments of function `func`. arity is undefined for variadic functions.","kind":"template","module":"std.traits","name":"arity","package":"phobos","parentType":"","signature":"arity(alias  func)","url":"/ddoc/phobos/std/traits.html#arity"},{"doc":"ditto","kind":"template","module":"std.traits","name":"ParameterStorageClassTuple","package":"phobos","parentType":"","signature":"ParameterStorageClassTuple(alias  func)","url":"/ddoc/phobos/std/traits.html#ParameterStorageClassTuple"},{"doc":"Convert the result of $(DDSUBLINK spec/traits, getParameterStorageClasses, `__traits(getParameterStorageClasses)`) to $(LREF ParameterStorageClass)...","kind":"template","module":"std.traits","name":"extractParameterStorageClassFlags","package":"phobos","parentType":"","signature":"extractParameterStorageClassFlags(Attribs...)","url":"/ddoc/phobos/std/traits.html#extractParameterStorageClassFlags"},{"doc":"Get, as a tuple, the identifiers of the parameters to a function symbol.","kind":"template","module":"std.traits","name":"ParameterIdentifierTuple","package":"phobos","parentType":"","signature":"ParameterIdentifierTuple(alias  func)","url":"/ddoc/phobos/std/traits.html#ParameterIdentifierTuple"},{"doc":"Get, as a tuple, the default values of the parameters to a function symbol. If a parameter doesn't have the default value, `void` is returned instead.","kind":"template","module":"std.traits","name":"ParameterDefaults","package":"phobos","parentType":"","signature":"ParameterDefaults(alias  func)","url":"/ddoc/phobos/std/traits.html#ParameterDefaults"},{"doc":"ditto","kind":"template","module":"std.traits","name":"functionAttributes","package":"phobos","parentType":"","signature":"functionAttributes(alias  func)","url":"/ddoc/phobos/std/traits.html#functionAttributes"},{"doc":"Checks whether a function has the given attributes attached.","kind":"template","module":"std.traits","name":"hasFunctionAttributes","package":"phobos","parentType":"","signature":"hasFunctionAttributes(args...)","url":"/ddoc/phobos/std/traits.html#hasFunctionAttributes"},{"doc":"`true` if `func` is `@safe` or `@trusted`.","kind":"template","module":"std.traits","name":"isSafe","package":"phobos","parentType":"","signature":"isSafe(alias  func)","url":"/ddoc/phobos/std/traits.html#isSafe"},{"doc":"`true` if `func` is `@system`.","kind":"template","module":"std.traits","name":"isUnsafe","package":"phobos","parentType":"","signature":"isUnsafe(alias  func)","url":"/ddoc/phobos/std/traits.html#isUnsafe"},{"doc":"Determine the linkage attribute of the function. Params: func = the function symbol, or the type of a function, delegate, or pointer to function Re...","kind":"template","module":"std.traits","name":"functionLinkage","package":"phobos","parentType":"","signature":"functionLinkage(alias  func)","url":"/ddoc/phobos/std/traits.html#functionLinkage"},{"doc":"ditto","kind":"template","module":"std.traits","name":"variadicFunctionStyle","package":"phobos","parentType":"","signature":"variadicFunctionStyle(alias  func)","url":"/ddoc/phobos/std/traits.html#variadicFunctionStyle"},{"doc":"Get the function type from a callable object `func`, or from a function pointer/delegate type.","kind":"template","module":"std.traits","name":"FunctionTypeOf","package":"phobos","parentType":"","signature":"FunctionTypeOf(alias  func)","url":"/ddoc/phobos/std/traits.html#FunctionTypeOf"},{"doc":"Constructs a new function or delegate type with the same basic signature as the given one, but different attributes (including linkage).","kind":"template","module":"std.traits","name":"SetFunctionAttributes","package":"phobos","parentType":"","signature":"SetFunctionAttributes(T,  string linkage,  uint  attrs)","url":"/ddoc/phobos/std/traits.html#SetFunctionAttributes"},{"doc":"Ditto","kind":"template","module":"std.traits","name":"SetFunctionAttributes","package":"phobos","parentType":"","signature":"SetFunctionAttributes(T,  string linkage,  uint  attrs)","url":"/ddoc/phobos/std/traits.html#SetFunctionAttributes"},{"doc":"Determines whether `T` is a class nested inside another class and that `T.outer` is the implicit reference to the outer class (i.e. `outer` has not...","kind":"template","module":"std.traits","name":"isInnerClass","package":"phobos","parentType":"","signature":"isInnerClass(T)","url":"/ddoc/phobos/std/traits.html#isInnerClass"},{"doc":"Determines whether `T` has its own context pointer. `T` must be either `class`, `struct`, or `union`.","kind":"template","module":"std.traits","name":"isNested","package":"phobos","parentType":"","signature":"isNested(T)","url":"/ddoc/phobos/std/traits.html#isNested"},{"doc":"Determines whether `T` or any of its representation types have a context pointer.","kind":"template","module":"std.traits","name":"hasNested","package":"phobos","parentType":"","signature":"hasNested(T)","url":"/ddoc/phobos/std/traits.html#hasNested"},{"doc":"Get as a tuple the types of the fields of a struct, class, or union. This consists of the fields that take up memory space, excluding the hidden fi...","kind":"template","module":"std.traits","name":"Fields","package":"phobos","parentType":"","signature":"Fields(T)","url":"/ddoc/phobos/std/traits.html#Fields"},{"doc":"Get as an expression tuple the names of the fields of a struct, class, or union. This consists of the fields that take up memory space, excluding t...","kind":"template","module":"std.traits","name":"FieldNameTuple","package":"phobos","parentType":"","signature":"FieldNameTuple(T)","url":"/ddoc/phobos/std/traits.html#FieldNameTuple"},{"doc":"Get the primitive types of the fields of a struct or class, in topological order.","kind":"template","module":"std.traits","name":"RepresentationTypeTuple","package":"phobos","parentType":"","signature":"RepresentationTypeTuple(T)","url":"/ddoc/phobos/std/traits.html#RepresentationTypeTuple"},{"doc":"","kind":"template","module":"std.traits","name":"RepresentationTypeTupleImpl","package":"phobos","parentType":"","signature":"RepresentationTypeTupleImpl(T)","url":"/ddoc/phobos/std/traits.html#RepresentationTypeTupleImpl"},{"doc":"","kind":"template","module":"std.traits","name":"hasRawAliasing","package":"phobos","parentType":"","signature":"hasRawAliasing(T)","url":"/ddoc/phobos/std/traits.html#hasRawAliasing"},{"doc":"","kind":"template","module":"std.traits","name":"hasRawAliasingImpl","package":"phobos","parentType":"","signature":"hasRawAliasingImpl(T)","url":"/ddoc/phobos/std/traits.html#hasRawAliasingImpl"},{"doc":"","kind":"template","module":"std.traits","name":"hasRawUnsharedAliasing","package":"phobos","parentType":"","signature":"hasRawUnsharedAliasing(T)","url":"/ddoc/phobos/std/traits.html#hasRawUnsharedAliasing"},{"doc":"","kind":"template","module":"std.traits","name":"hasRawUnsharedAliasingImpl","package":"phobos","parentType":"","signature":"hasRawUnsharedAliasingImpl(T)","url":"/ddoc/phobos/std/traits.html#hasRawUnsharedAliasingImpl"},{"doc":"","kind":"template","module":"std.traits","name":"hasObjects","package":"phobos","parentType":"","signature":"hasObjects(T)","url":"/ddoc/phobos/std/traits.html#hasObjects"},{"doc":"","kind":"template","module":"std.traits","name":"hasUnsharedObjects","package":"phobos","parentType":"","signature":"hasUnsharedObjects(T)","url":"/ddoc/phobos/std/traits.html#hasUnsharedObjects"},{"doc":"Returns `true` if and only if `T`'s representation includes at least one of the following: $(OL $(LI a raw pointer `U*` and `U` is not immutable;) ...","kind":"template","module":"std.traits","name":"hasAliasing","package":"phobos","parentType":"","signature":"hasAliasing(T...)","url":"/ddoc/phobos/std/traits.html#hasAliasing"},{"doc":"","kind":"template","module":"std.traits","name":"hasAliasingImpl","package":"phobos","parentType":"","signature":"hasAliasingImpl(T)","url":"/ddoc/phobos/std/traits.html#hasAliasingImpl"},{"doc":"Returns `true` if and only if `T`'s representation includes at least one of the following: $(OL $(LI a raw pointer `U*`;) $(LI an array `U[]`;) $(L...","kind":"template","module":"std.traits","name":"hasIndirections","package":"phobos","parentType":"","signature":"hasIndirections(T)","url":"/ddoc/phobos/std/traits.html#hasIndirections"},{"doc":"Returns `true` if and only if `T`'s representation includes at least one of the following: $(OL $(LI a raw pointer `U*` and `U` is not immutable or...","kind":"template","module":"std.traits","name":"hasUnsharedAliasing","package":"phobos","parentType":"","signature":"hasUnsharedAliasing(T...)","url":"/ddoc/phobos/std/traits.html#hasUnsharedAliasing"},{"doc":"","kind":"template","module":"std.traits","name":"hasUnsharedAliasingImpl","package":"phobos","parentType":"","signature":"hasUnsharedAliasingImpl(T)","url":"/ddoc/phobos/std/traits.html#hasUnsharedAliasingImpl"},{"doc":"True if `S` or any type directly embedded in the representation of `S` defines an elaborate assignment. Elaborate assignments are introduced by def...","kind":"template","module":"std.traits","name":"hasElaborateAssign","package":"phobos","parentType":"","signature":"hasElaborateAssign(S)","url":"/ddoc/phobos/std/traits.html#hasElaborateAssign"},{"doc":"Whether the symbol represented by the string, member, exists and is a static member of T.","kind":"template","module":"std.traits","name":"hasStaticMember","package":"phobos","parentType":"","signature":"hasStaticMember(T,  string member)","url":"/ddoc/phobos/std/traits.html#hasStaticMember"},{"doc":"Retrieves the members of an enumerated type `enum E`.","kind":"template","module":"std.traits","name":"EnumMembers","package":"phobos","parentType":"","signature":"EnumMembers(E)","url":"/ddoc/phobos/std/traits.html#EnumMembers"},{"doc":"Get a $(D_PARAM AliasSeq) of the base class and base interfaces of this class or interface. $(D_PARAM BaseTypeTuple!Object) returns the empty type ...","kind":"template","module":"std.traits","name":"BaseTypeTuple","package":"phobos","parentType":"","signature":"BaseTypeTuple(A)","url":"/ddoc/phobos/std/traits.html#BaseTypeTuple"},{"doc":"Get a $(D_PARAM AliasSeq) of $(I all) base classes of this class, in decreasing order. Interfaces are not included. $(D_PARAM BaseClassesTuple!Obje...","kind":"template","module":"std.traits","name":"BaseClassesTuple","package":"phobos","parentType":"","signature":"BaseClassesTuple(T)","url":"/ddoc/phobos/std/traits.html#BaseClassesTuple"},{"doc":"Params: T = The `class` or `interface` to search.","kind":"template","module":"std.traits","name":"InterfacesTuple","package":"phobos","parentType":"","signature":"InterfacesTuple(T)","url":"/ddoc/phobos/std/traits.html#InterfacesTuple"},{"doc":"Returns a tuple of non-static functions with the name `name` declared in the class or interface `C`.  Covariant duplicates are shrunk into the most...","kind":"template","module":"std.traits","name":"MemberFunctionsTuple","package":"phobos","parentType":"","signature":"MemberFunctionsTuple(C,  string name)","url":"/ddoc/phobos/std/traits.html#MemberFunctionsTuple"},{"doc":"Returns class instance alignment.","kind":"template","module":"std.traits","name":"classInstanceAlignment","package":"phobos","parentType":"","signature":"classInstanceAlignment(T)","url":"/ddoc/phobos/std/traits.html#classInstanceAlignment"},{"doc":"Get the type that all types can be implicitly converted to. Useful e.g. in figuring out an array type from a bunch of initializing values. Returns ...","kind":"template","module":"std.traits","name":"CommonType","package":"phobos","parentType":"","signature":"CommonType(T...)","url":"/ddoc/phobos/std/traits.html#CommonType"},{"doc":"Params: T = The type to check","kind":"template","module":"std.traits","name":"AllImplicitConversionTargets","package":"phobos","parentType":"","signature":"AllImplicitConversionTargets(T)","url":"/ddoc/phobos/std/traits.html#AllImplicitConversionTargets"},{"doc":"Params: T = The type to check","kind":"template","module":"std.traits","name":"ImplicitConversionTargets","package":"phobos","parentType":"","signature":"ImplicitConversionTargets(T)","url":"/ddoc/phobos/std/traits.html#ImplicitConversionTargets"},{"doc":"","kind":"template","module":"std.traits","name":"isBlitAssignable","package":"phobos","parentType":"","signature":"isBlitAssignable(T)","url":"/ddoc/phobos/std/traits.html#isBlitAssignable"},{"doc":"","kind":"template","module":"std.traits","name":"isStorageClassImplicitlyConvertible","package":"phobos","parentType":"","signature":"isStorageClassImplicitlyConvertible(From,  To)","url":"/ddoc/phobos/std/traits.html#isStorageClassImplicitlyConvertible"},{"doc":"Determines whether the function type `F` is covariant with `G`, i.e., functions of the type `F` can override ones of the type `G`.","kind":"template","module":"std.traits","name":"isCovariantWith","package":"phobos","parentType":"","signature":"isCovariantWith(F,  G)","url":"/ddoc/phobos/std/traits.html#isCovariantWith"},{"doc":"","kind":"template","module":"std.traits","name":"BooleanTypeOf","package":"phobos","parentType":"","signature":"BooleanTypeOf(T)","url":"/ddoc/phobos/std/traits.html#BooleanTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"IntegralTypeOf","package":"phobos","parentType":"","signature":"IntegralTypeOf(T)","url":"/ddoc/phobos/std/traits.html#IntegralTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"FloatingPointTypeOf","package":"phobos","parentType":"","signature":"FloatingPointTypeOf(T)","url":"/ddoc/phobos/std/traits.html#FloatingPointTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"NumericTypeOf","package":"phobos","parentType":"","signature":"NumericTypeOf(T)","url":"/ddoc/phobos/std/traits.html#NumericTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"UnsignedTypeOf","package":"phobos","parentType":"","signature":"UnsignedTypeOf(T)","url":"/ddoc/phobos/std/traits.html#UnsignedTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"SignedTypeOf","package":"phobos","parentType":"","signature":"SignedTypeOf(T)","url":"/ddoc/phobos/std/traits.html#SignedTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"CharTypeOf","package":"phobos","parentType":"","signature":"CharTypeOf(T)","url":"/ddoc/phobos/std/traits.html#CharTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"StaticArrayTypeOf","package":"phobos","parentType":"","signature":"StaticArrayTypeOf(T)","url":"/ddoc/phobos/std/traits.html#StaticArrayTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"DynamicArrayTypeOf","package":"phobos","parentType":"","signature":"DynamicArrayTypeOf(T)","url":"/ddoc/phobos/std/traits.html#DynamicArrayTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"ArrayTypeOf","package":"phobos","parentType":"","signature":"ArrayTypeOf(T)","url":"/ddoc/phobos/std/traits.html#ArrayTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"StringTypeOf","package":"phobos","parentType":"","signature":"StringTypeOf(T)","url":"/ddoc/phobos/std/traits.html#StringTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"AssocArrayTypeOf","package":"phobos","parentType":"","signature":"AssocArrayTypeOf(T)","url":"/ddoc/phobos/std/traits.html#AssocArrayTypeOf"},{"doc":"","kind":"template","module":"std.traits","name":"BuiltinTypeOf","package":"phobos","parentType":"","signature":"BuiltinTypeOf(T)","url":"/ddoc/phobos/std/traits.html#BuiltinTypeOf"},{"doc":"Detect whether `T` is a built-in integral type. Integral types are `byte`, `ubyte`, `short`, `ushort`, `int`, `uint`, `long`, `ulong`, `cent`, `uce...","kind":"template","module":"std.traits","name":"isIntegral","package":"phobos","parentType":"","signature":"isIntegral(T)","url":"/ddoc/phobos/std/traits.html#isIntegral"},{"doc":"Detect whether `T` is a built-in numeric type (integral or floating point).","kind":"template","module":"std.traits","name":"isNumeric","package":"phobos","parentType":"","signature":"isNumeric(T)","url":"/ddoc/phobos/std/traits.html#isNumeric"},{"doc":"Detect whether `T` is a built-in unsigned numeric type.","kind":"template","module":"std.traits","name":"isUnsigned","package":"phobos","parentType":"","signature":"isUnsigned(T)","url":"/ddoc/phobos/std/traits.html#isUnsigned"},{"doc":"Detect whether `T` is one of the built-in character types.","kind":"template","module":"std.traits","name":"isSomeChar","package":"phobos","parentType":"","signature":"isSomeChar(T)","url":"/ddoc/phobos/std/traits.html#isSomeChar"},{"doc":"$(RED Warning: This trait will be deprecated as soon as it is no longer used in Phobos. For a function parameter to safely accept a type that impli...","kind":"template","module":"std.traits","name":"isConvertibleToString","package":"phobos","parentType":"","signature":"isConvertibleToString(T)","url":"/ddoc/phobos/std/traits.html#isConvertibleToString"},{"doc":"","kind":"template","module":"std.traits","name":"convertToString","package":"phobos","parentType":"","signature":"convertToString(T)","url":"/ddoc/phobos/std/traits.html#convertToString"},{"doc":"Detect whether type `T` is a string that will be autodecoded.","kind":"template","module":"std.traits","name":"isAutodecodableString","package":"phobos","parentType":"","signature":"isAutodecodableString(T)","url":"/ddoc/phobos/std/traits.html#isAutodecodableString"},{"doc":"Detect whether type `T` is a dynamic array.","kind":"template","module":"std.traits","name":"isDynamicArray","package":"phobos","parentType":"","signature":"isDynamicArray(T)","url":"/ddoc/phobos/std/traits.html#isDynamicArray"},{"doc":"Detect whether type `T` is an aggregate type.","kind":"template","module":"std.traits","name":"isAggregateType","package":"phobos","parentType":"","signature":"isAggregateType(T)","url":"/ddoc/phobos/std/traits.html#isAggregateType"},{"doc":"ditto","kind":"template","module":"std.traits","name":"isInstanceOf","package":"phobos","parentType":"","signature":"isInstanceOf(alias  S,  alias  T)","url":"/ddoc/phobos/std/traits.html#isInstanceOf"},{"doc":"Check whether the tuple T is an expression tuple. An expression tuple only contains expressions.","kind":"template","module":"std.traits","name":"isExpressions","package":"phobos","parentType":"","signature":"isExpressions(T...)","url":"/ddoc/phobos/std/traits.html#isExpressions"},{"doc":"Detect whether `T` is a callable object, which can be called with the function call operator `$(LPAREN)...$(RPAREN)`.","kind":"template","module":"std.traits","name":"isCallable","package":"phobos","parentType":"","signature":"isCallable(alias  callable)","url":"/ddoc/phobos/std/traits.html#isCallable"},{"doc":"Determines if `f` is a function that requires a context pointer.","kind":"template","module":"std.traits","name":"isNestedFunction","package":"phobos","parentType":"","signature":"isNestedFunction(alias  f)","url":"/ddoc/phobos/std/traits.html#isNestedFunction"},{"doc":"Removes `shared` qualifier, if any, from type `T`.","kind":"template","module":"std.traits","name":"Unshared","package":"phobos","parentType":"","signature":"Unshared(T)","url":"/ddoc/phobos/std/traits.html#Unshared"},{"doc":"","kind":"template","module":"std.traits","name":"ModifyTypePreservingTQ","package":"phobos","parentType":"","signature":"ModifyTypePreservingTQ(alias  Modifier,  T)","url":"/ddoc/phobos/std/traits.html#ModifyTypePreservingTQ"},{"doc":"Copies type qualifiers from `FromType` to `ToType`.","kind":"template","module":"std.traits","name":"CopyTypeQualifiers","package":"phobos","parentType":"","signature":"CopyTypeQualifiers(FromType,  ToType)","url":"/ddoc/phobos/std/traits.html#CopyTypeQualifiers"},{"doc":"Returns the type of `ToType` with the \"constness\" of `FromType`. A type's $(B constness) refers to whether it is `const`, `immutable`, or `inout`. ...","kind":"template","module":"std.traits","name":"CopyConstness","package":"phobos","parentType":"","signature":"CopyConstness(FromType,  ToType)","url":"/ddoc/phobos/std/traits.html#CopyConstness"},{"doc":"Returns the inferred type of the loop variable when a variable of type T is iterated over using a `foreach` loop with a single loop variable and au...","kind":"template","module":"std.traits","name":"ForeachType","package":"phobos","parentType":"","signature":"ForeachType(T)","url":"/ddoc/phobos/std/traits.html#ForeachType"},{"doc":"Strips off all `enum`s from type `T`.","kind":"template","module":"std.traits","name":"OriginalType","package":"phobos","parentType":"","signature":"OriginalType(T)","url":"/ddoc/phobos/std/traits.html#OriginalType"},{"doc":"Params: T = A built in integral or vector type.","kind":"template","module":"std.traits","name":"Unsigned","package":"phobos","parentType":"","signature":"Unsigned(T)","url":"/ddoc/phobos/std/traits.html#Unsigned"},{"doc":"Returns the largest type, i.e. T such that T.sizeof is the largest.  If more than one type is of the same size, the leftmost argument of these in w...","kind":"template","module":"std.traits","name":"Largest","package":"phobos","parentType":"","signature":"Largest(T...)","url":"/ddoc/phobos/std/traits.html#Largest"},{"doc":"Returns the corresponding signed type for T. T must be a numeric integral type, otherwise a compile-time error occurs.","kind":"template","module":"std.traits","name":"Signed","package":"phobos","parentType":"","signature":"Signed(T)","url":"/ddoc/phobos/std/traits.html#Signed"},{"doc":"Returns the most negative value of the numeric type T.","kind":"template","module":"std.traits","name":"mostNegative","package":"phobos","parentType":"","signature":"mostNegative(T)","url":"/ddoc/phobos/std/traits.html#mostNegative"},{"doc":"Get the type that a scalar type `T` will $(LINK2 $(ROOT_DIR)spec/type.html#integer-promotions, promote) to in multi-term arithmetic expressions.","kind":"template","module":"std.traits","name":"Promoted","package":"phobos","parentType":"","signature":"Promoted(T)","url":"/ddoc/phobos/std/traits.html#Promoted"},{"doc":"Aliases itself to `T[0]` if the boolean `condition` is `true` and to `T[1]` otherwise.","kind":"template","module":"std.traits","name":"Select","package":"phobos","parentType":"","signature":"Select(bool  condition,  T...)","url":"/ddoc/phobos/std/traits.html#Select"},{"doc":"Gets the matching $(DDSUBLINK spec/attribute, uda, user-defined attributes) from the given symbol.","kind":"template","module":"std.traits","name":"getUDAs","package":"phobos","parentType":"","signature":"getUDAs(alias  symbol,  alias  attribute)","url":"/ddoc/phobos/std/traits.html#getUDAs"},{"doc":"","kind":"template","module":"std.traits","name":"isDesiredUDA","package":"phobos","parentType":"","signature":"isDesiredUDA(alias  attribute)","url":"/ddoc/phobos/std/traits.html#isDesiredUDA"},{"doc":"Params: symbol = The aggregate type or module to search attribute = The user-defined attribute to search for","kind":"template","module":"std.traits","name":"getSymbolsByUDA","package":"phobos","parentType":"","signature":"getSymbolsByUDA(alias  symbol,  alias  attribute)","url":"/ddoc/phobos/std/traits.html#getSymbolsByUDA"},{"doc":"","kind":"template","module":"std.traits","name":"isAliasSeq","package":"phobos","parentType":"","signature":"isAliasSeq(Args...)","url":"/ddoc/phobos/std/traits.html#isAliasSeq"},{"doc":"","kind":"template","module":"std.traits","name":"getSymbolsByUDAImpl","package":"phobos","parentType":"","signature":"getSymbolsByUDAImpl(alias  symbol,  alias  attribute,  names...)","url":"/ddoc/phobos/std/traits.html#getSymbolsByUDAImpl"},{"doc":"Detect whether symbol or type `X` is a function. This is different that finding if a symbol is callable or satisfying `is(X == function)`, it finds...","kind":"template","module":"std.traits","name":"isFunction","package":"phobos","parentType":"","signature":"isFunction(alias  X)","url":"/ddoc/phobos/std/traits.html#isFunction"},{"doc":"Detect whether `X` is a final method or class.","kind":"template","module":"std.traits","name":"isFinal","package":"phobos","parentType":"","signature":"isFinal(alias  X)","url":"/ddoc/phobos/std/traits.html#isFinal"},{"doc":"","kind":"template","module":"std.traits","name":"DeducedParameterTypeImpl","package":"phobos","parentType":"","signature":"DeducedParameterTypeImpl(T)","url":"/ddoc/phobos/std/traits.html#DeducedParameterTypeImpl"},{"doc":"Is `From` implicitly convertible to `To`?","kind":"variable","module":"std.traits","name":"isImplicitlyConvertible","package":"phobos","parentType":"","signature":"bool isImplicitlyConvertible","url":"/ddoc/phobos/std/traits.html#isImplicitlyConvertible"},{"doc":"Is `From` $(DDSUBLINK spec/const3, implicit_qualifier_conversions, qualifier-convertible) to `To`?","kind":"variable","module":"std.traits","name":"isQualifierConvertible","package":"phobos","parentType":"","signature":"bool isQualifierConvertible","url":"/ddoc/phobos/std/traits.html#isQualifierConvertible"},{"doc":"Detect whether `T` is a built-in boolean type or enum of boolean base type.","kind":"variable","module":"std.traits","name":"isBoolean","package":"phobos","parentType":"","signature":"bool isBoolean","url":"/ddoc/phobos/std/traits.html#isBoolean"},{"doc":"Detect whether `T` is a built-in floating point type.","kind":"variable","module":"std.traits","name":"isFloatingPoint","package":"phobos","parentType":"","signature":"bool isFloatingPoint","url":"/ddoc/phobos/std/traits.html#isFloatingPoint"},{"doc":"Detect whether `T` is a scalar type (a built-in numeric, character or boolean type).","kind":"variable","module":"std.traits","name":"isScalarType","package":"phobos","parentType":"","signature":"bool isScalarType","url":"/ddoc/phobos/std/traits.html#isScalarType"},{"doc":"Detect whether `T` is a basic type (scalar type or void).","kind":"variable","module":"std.traits","name":"isBasicType","package":"phobos","parentType":"","signature":"bool isBasicType","url":"/ddoc/phobos/std/traits.html#isBasicType"},{"doc":"Detect whether `T` is a built-in signed numeric type.","kind":"variable","module":"std.traits","name":"isSigned","package":"phobos","parentType":"","signature":"bool isSigned","url":"/ddoc/phobos/std/traits.html#isSigned"},{"doc":"Detect whether `T` is one of the built-in string types.","kind":"variable","module":"std.traits","name":"isSomeString","package":"phobos","parentType":"","signature":"bool isSomeString","url":"/ddoc/phobos/std/traits.html#isSomeString"},{"doc":"Detect whether type `T` is a narrow string.","kind":"variable","module":"std.traits","name":"isNarrowString","package":"phobos","parentType":"","signature":"bool isNarrowString","url":"/ddoc/phobos/std/traits.html#isNarrowString"},{"doc":"Detects whether `T` is a comparable type. Basic types and structs and classes that implement opCmp are ordering comparable.","kind":"variable","module":"std.traits","name":"isOrderingComparable","package":"phobos","parentType":"","signature":"bool isOrderingComparable","url":"/ddoc/phobos/std/traits.html#isOrderingComparable"},{"doc":"ditto","kind":"variable","module":"std.traits","name":"isEqualityComparable","package":"phobos","parentType":"","signature":"bool isEqualityComparable","url":"/ddoc/phobos/std/traits.html#isEqualityComparable"},{"doc":"Detect whether type `T` is a static array.","kind":"variable","module":"std.traits","name":"isStaticArray","package":"phobos","parentType":"","signature":"bool isStaticArray","url":"/ddoc/phobos/std/traits.html#isStaticArray"},{"doc":"Detect whether type `T` is an array (static or dynamic; for associative arrays see $(LREF isAssociativeArray)).","kind":"variable","module":"std.traits","name":"isArray","package":"phobos","parentType":"","signature":"bool isArray","url":"/ddoc/phobos/std/traits.html#isArray"},{"doc":"Detect whether `T` is an associative array type","kind":"variable","module":"std.traits","name":"isAssociativeArray","package":"phobos","parentType":"","signature":"bool isAssociativeArray","url":"/ddoc/phobos/std/traits.html#isAssociativeArray"},{"doc":"Detect whether type `T` is a builtin type.","kind":"variable","module":"std.traits","name":"isBuiltinType","package":"phobos","parentType":"","signature":"bool isBuiltinType","url":"/ddoc/phobos/std/traits.html#isBuiltinType"},{"doc":"Detect whether type `T` is a SIMD vector type.","kind":"variable","module":"std.traits","name":"isSIMDVector","package":"phobos","parentType":"","signature":"bool isSIMDVector","url":"/ddoc/phobos/std/traits.html#isSIMDVector"},{"doc":"Detect whether type `T` is a pointer.","kind":"variable","module":"std.traits","name":"isPointer","package":"phobos","parentType":"","signature":"bool isPointer","url":"/ddoc/phobos/std/traits.html#isPointer"},{"doc":"Returns `true` if T can be iterated over using a `foreach` loop with a single loop variable of automatically inferred type, regardless of how the `...","kind":"variable","module":"std.traits","name":"isIterable","package":"phobos","parentType":"","signature":"bool isIterable","url":"/ddoc/phobos/std/traits.html#isIterable"},{"doc":"Returns true if T is not const or immutable.  Note that isMutable is true for string, or immutable(char)[], because the 'head' is mutable.","kind":"variable","module":"std.traits","name":"isMutable","package":"phobos","parentType":"","signature":"bool isMutable","url":"/ddoc/phobos/std/traits.html#isMutable"},{"doc":"Returns true if T is an instance of the template S.","kind":"variable","module":"std.traits","name":"isInstanceOf","package":"phobos","parentType":"","signature":"bool isInstanceOf","url":"/ddoc/phobos/std/traits.html#isInstanceOf"},{"doc":"Detect whether symbol or type `T` is a function pointer.","kind":"variable","module":"std.traits","name":"isFunctionPointer","package":"phobos","parentType":"","signature":"bool isFunctionPointer","url":"/ddoc/phobos/std/traits.html#isFunctionPointer"},{"doc":"Detect whether symbol or type `T` is a delegate.","kind":"variable","module":"std.traits","name":"isDelegate","package":"phobos","parentType":"","signature":"bool isDelegate","url":"/ddoc/phobos/std/traits.html#isDelegate"},{"doc":"Detect whether symbol or type `T` is a function, a function pointer or a delegate.","kind":"variable","module":"std.traits","name":"isSomeFunction","package":"phobos","parentType":"","signature":"bool isSomeFunction","url":"/ddoc/phobos/std/traits.html#isSomeFunction"},{"doc":"Returns: `true` iff all types `Ts` are the same.","kind":"variable","module":"std.traits","name":"allSameType","package":"phobos","parentType":"","signature":"bool allSameType","url":"/ddoc/phobos/std/traits.html#allSameType"},{"doc":"","kind":"variable","module":"std.traits","name":"dip1000Enabled","package":"phobos","parentType":"","signature":"dip1000Enabled","url":"/ddoc/phobos/std/traits.html#dip1000Enabled"},{"doc":"This module implements a variety of type constructors, i.e., templates that allow construction of new, useful general-purpose types.","kind":"module","module":"std.typecons","name":"std.typecons","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/typecons.html"},{"doc":"Creates a copy of a $(LREF Tuple) with its fields in _reverse order.","kind":"function","module":"std.typecons","name":"reverse","package":"phobos","parentType":"","signature":"auto reverse(T)(T t) if (isTuple!T)","url":"/ddoc/phobos/std/typecons/reverse.html"},{"doc":"Convenience function for creating a `Rebindable` using automatic type inference.","kind":"function","module":"std.typecons","name":"rebindable","package":"phobos","parentType":"","signature":"Rebindable!T rebindable(T)(T obj) if (is(T ==  class)  ||  is(T ==  interface)  ||  isDynamicArray!T ||  isAssociativeArray!T)","url":"/ddoc/phobos/std/typecons/rebindable.html"},{"doc":"ditto","kind":"function","module":"std.typecons","name":"rebindable","package":"phobos","parentType":"","signature":"Rebindable!T rebindable(T)(T value) if (!is(T ==  class)  && !is(T ==  interface)  && !isDynamicArray!T && !isAssociativeArray!T\n    && !is(T :  Rebindable!U,  U))","url":"/ddoc/phobos/std/typecons/rebindable.html"},{"doc":"This function simply returns the `Rebindable` object passed in.  It's useful in generic programming cases when a given object may be either a regul...","kind":"function","module":"std.typecons","name":"rebindable","package":"phobos","parentType":"","signature":"Rebindable!T rebindable(T)(Rebindable!T obj)","url":"/ddoc/phobos/std/typecons/rebindable.html"},{"doc":"","kind":"function","module":"std.typecons","name":"rebindable2","package":"phobos","parentType":"","signature":"Rebindable2!T rebindable2(T)(T value)","url":"/ddoc/phobos/std/typecons/rebindable2.html"},{"doc":"Order the provided members to minimize size while preserving alignment. Alignment is not always optimal for 80-bit reals, nor for structs declared ...","kind":"function","module":"std.typecons","name":"alignForSize","package":"phobos","parentType":"","signature":"string alignForSize(E...)(const  char[][]  names...)","url":"/ddoc/phobos/std/typecons/alignForSize.html"},{"doc":"ditto","kind":"function","module":"std.typecons","name":"nullable","package":"phobos","parentType":"","signature":"auto nullable(T)(T t)","url":"/ddoc/phobos/std/typecons/nullable.html"},{"doc":"ditto","kind":"function","module":"std.typecons","name":"nullable","package":"phobos","parentType":"","signature":"auto nullable(alias  nullValue,  T)(T t) if (is (typeof(nullValue)  ==  T))","url":"/ddoc/phobos/std/typecons/nullable.html"},{"doc":"ditto","kind":"function","module":"std.typecons","name":"nullableRef","package":"phobos","parentType":"","signature":"auto nullableRef(T)(T *  t)","url":"/ddoc/phobos/std/typecons/nullableRef.html"},{"doc":"","kind":"function","module":"std.typecons","name":"typecons_d_toObject","package":"phobos","parentType":"","signature":"Object typecons_d_toObject(void *  p)","url":"/ddoc/phobos/std/typecons/typecons_d_toObject.html"},{"doc":"Initializes a `SafeRefCounted` with `val`. The template parameter `T` of `SafeRefCounted` is inferred from `val`. This function can be used to move...","kind":"function","module":"std.typecons","name":"safeRefCounted","package":"phobos","parentType":"","signature":"SafeRefCounted!(T,  RefCountedAutoInitialize.no) safeRefCounted(T)(T val)","url":"/ddoc/phobos/std/typecons/safeRefCounted.html"},{"doc":"","kind":"function","module":"std.typecons","name":"_alignUp","package":"phobos","parentType":"","signature":"size_t _alignUp(size_t alignment)(size_t n) if (alignment >  0 && !((alignment -  1)  &  alignment))","url":"/ddoc/phobos/std/typecons/_alignUp.html"},{"doc":"Like $(LREF safeRefCounted) but used to initialize $(LREF RefCounted) instead. Intended for backwards compatibility, otherwise it is preferable to ...","kind":"function","module":"std.typecons","name":"refCounted","package":"phobos","parentType":"","signature":"RefCounted!(T,  RefCountedAutoInitialize.no) refCounted(T)(T val)","url":"/ddoc/phobos/std/typecons/refCounted.html"},{"doc":"Encapsulates unique ownership of a resource.","kind":"struct","module":"std.typecons","name":"Unique","package":"phobos","parentType":"","signature":"Unique(T)","url":"/ddoc/phobos/std/typecons.html#Unique"},{"doc":"Transfer ownership from a `Unique` of a type that is convertible to our type.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Unique","signature":"void opAssign(U)(Unique!U u) if (is(u.RefT: RefT))","url":"/ddoc/phobos/std/typecons/Unique.opAssign.html"},{"doc":"Returns whether the resource exists.","kind":"method","module":"std.typecons","name":"isEmpty","package":"phobos","parentType":"Unique","signature":"bool isEmpty()","url":"/ddoc/phobos/std/typecons/Unique.isEmpty.html"},{"doc":"Transfer ownership to a `Unique` rvalue. Nullifies the current contents. Same as calling std.algorithm.move on it.","kind":"method","module":"std.typecons","name":"release","package":"phobos","parentType":"Unique","signature":"Unique release()","url":"/ddoc/phobos/std/typecons/Unique.release.html"},{"doc":"","kind":"alias","module":"std.typecons","name":"extractType","package":"phobos","parentType":"","signature":"extractType(alias  spec) = spec.Type","url":"/ddoc/phobos/std/typecons.html#extractType"},{"doc":"","kind":"alias","module":"std.typecons","name":"extractName","package":"phobos","parentType":"","signature":"extractName(alias  spec) = spec.name","url":"/ddoc/phobos/std/typecons.html#extractName"},{"doc":"ditto","kind":"struct","module":"std.typecons","name":"Rebindable","package":"phobos","parentType":"","signature":"Rebindable(T) if (!is(T ==  class)  && !is(T ==  interface)  && !isDynamicArray!T && !isAssociativeArray!T)","url":"/ddoc/phobos/std/typecons.html#Rebindable"},{"doc":"Overwrites the currently stored value with `value`.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Rebindable","signature":"void opAssign(this  This)(T value)","url":"/ddoc/phobos/std/typecons/Rebindable.opAssign.html"},{"doc":"Returns the value currently stored in the `Rebindable`.","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Rebindable","signature":"T get(this  This)()","url":"/ddoc/phobos/std/typecons/Rebindable.get.html"},{"doc":"","kind":"method","module":"std.typecons","name":"set","package":"phobos","parentType":"Rebindable","signature":"void set(this  This)(T value)","url":"/ddoc/phobos/std/typecons/Rebindable.set.html"},{"doc":"","kind":"method","module":"std.typecons","name":"clear","package":"phobos","parentType":"Rebindable","signature":"void clear(this  This)()","url":"/ddoc/phobos/std/typecons/Rebindable.clear.html"},{"doc":"","kind":"struct","module":"std.typecons","name":"Rebindable2","package":"phobos","parentType":"","signature":"Rebindable2(T)","url":"/ddoc/phobos/std/typecons.html#Rebindable2"},{"doc":"Overwrites the currently stored value with `value`.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Rebindable2","signature":"void opAssign(this  This)(T value)","url":"/ddoc/phobos/std/typecons/Rebindable2.opAssign.html"},{"doc":"Returns the value currently stored in the `Rebindable2`.","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Rebindable2","signature":"T get(this  This)()","url":"/ddoc/phobos/std/typecons/Rebindable2.get.html"},{"doc":"Ditto","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Rebindable2","signature":"inout(T) get()","url":"/ddoc/phobos/std/typecons/Rebindable2.get.html"},{"doc":"","kind":"method","module":"std.typecons","name":"set","package":"phobos","parentType":"Rebindable2","signature":"void set(this  This)(T value)","url":"/ddoc/phobos/std/typecons/Rebindable2.set.html"},{"doc":"","kind":"method","module":"std.typecons","name":"clear","package":"phobos","parentType":"Rebindable2","signature":"void clear(this  This)()","url":"/ddoc/phobos/std/typecons/Rebindable2.clear.html"},{"doc":"Defines a value paired with a distinctive \"null\" state that denotes the absence of a value. If default constructed, a $(D Nullable!T) object starts...","kind":"struct","module":"std.typecons","name":"Nullable","package":"phobos","parentType":"","signature":"Nullable(T)","url":"/ddoc/phobos/std/typecons.html#Nullable"},{"doc":"If they are both null, then they are equal. If one is null and the other is not, then they are not equal. If they are both non-null, then they are ...","kind":"method","module":"std.typecons","name":"opEquals","package":"phobos","parentType":"Nullable","signature":"bool opEquals(this  This,  Rhs)(auto  ref  Rhs rhs) if (!is(CommonType!(This,  Rhs)  ==  void))","url":"/ddoc/phobos/std/typecons/Nullable.opEquals.html"},{"doc":"Ditto","kind":"method","module":"std.typecons","name":"opEquals","package":"phobos","parentType":"Nullable","signature":"bool opEquals(this  This,  Rhs)(auto  ref  Rhs rhs) if (is(CommonType!(This,  Rhs)  ==  void)  &&  is(typeof(this.get ==  rhs)))","url":"/ddoc/phobos/std/typecons/Nullable.opEquals.html"},{"doc":"","kind":"method","module":"std.typecons","name":"toHash","package":"phobos","parentType":"Nullable","signature":"size_t toHash()","url":"/ddoc/phobos/std/typecons/Nullable.toHash.html"},{"doc":"Gives the string `\"Nullable.null\"` if `isNull` is `true`. Otherwise, the result is equivalent to calling $(REF formattedWrite, std,format) on the u...","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Nullable","signature":"string toString()()","url":"/ddoc/phobos/std/typecons/Nullable.toString.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Nullable","signature":"string toString()()","url":"/ddoc/phobos/std/typecons/Nullable.toString.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Nullable","signature":"void toString(W)(ref  W writer,  scope  const  ref  FormatSpec!char  fmt) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/typecons/Nullable.toString.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Nullable","signature":"void toString(W)(ref  W writer,  scope  const  ref  FormatSpec!char  fmt) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/typecons/Nullable.toString.html"},{"doc":"Check if `this` is in the null state.","kind":"method","module":"std.typecons","name":"isNull","package":"phobos","parentType":"Nullable","signature":"bool isNull()","url":"/ddoc/phobos/std/typecons/Nullable.isNull.html"},{"doc":"Returns true if `this` has a value, otherwise false.","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"Nullable","signature":"bool opCast(T :  bool)()","url":"/ddoc/phobos/std/typecons/Nullable.opCast.html"},{"doc":"Prevents `opCast` from disabling built-in conversions.","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"Nullable","signature":"T opCast(T,  this  This)() if (is(This :  T)  ||  This.sizeof ==  T.sizeof)","url":"/ddoc/phobos/std/typecons/Nullable.opCast.html"},{"doc":"Forces `this` to the null state.","kind":"method","module":"std.typecons","name":"nullify","package":"phobos","parentType":"Nullable","signature":"void nullify()()","url":"/ddoc/phobos/std/typecons/Nullable.nullify.html"},{"doc":"Assigns `value` to the internally-held state. If the assignment succeeds, `this` becomes non-null.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Nullable","signature":"Nullable opAssign()(T value)","url":"/ddoc/phobos/std/typecons/Nullable.opAssign.html"},{"doc":"Gets the value if not null. If `this` is in the null state, and the optional parameter `fallback` was provided, it will be returned. Without `fallb...","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Nullable","signature":"inout(T) get()","url":"/ddoc/phobos/std/typecons/Nullable.get.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Nullable","signature":"inout(T) get()(inout(T)  fallback)","url":"/ddoc/phobos/std/typecons/Nullable.get.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Nullable","signature":"@property auto get(U)(inout(U)  fallback)","url":"/ddoc/phobos/std/typecons/Nullable.get.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"front","package":"phobos","parentType":"Nullable","signature":"inout(T) front()","url":"/ddoc/phobos/std/typecons/Nullable.front.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opSlice","package":"phobos","parentType":"Nullable","signature":"size_t[2] opSlice(size_t dim :  0)(size_t from,  size_t to)","url":"/ddoc/phobos/std/typecons/Nullable.opSlice.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"length","package":"phobos","parentType":"Nullable","signature":"size_t length()","url":"/ddoc/phobos/std/typecons/Nullable.length.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opIndex","package":"phobos","parentType":"Nullable","signature":"inout(T) opIndex(size_t index)","url":"/ddoc/phobos/std/typecons/Nullable.opIndex.html"},{"doc":"Converts `Nullable` to a range. Works even when the contained type is `immutable`.","kind":"method","module":"std.typecons","name":"opSlice","package":"phobos","parentType":"Nullable","signature":"auto opSlice(this  This)()","url":"/ddoc/phobos/std/typecons/Nullable.opSlice.html"},{"doc":"Just like `Nullable!T`, except that the null state is defined as a particular value. For example, $(D Nullable!(uint, uint.max)) is an `uint` that ...","kind":"struct","module":"std.typecons","name":"Nullable","package":"phobos","parentType":"","signature":"Nullable(T,  T nullValue)","url":"/ddoc/phobos/std/typecons.html#Nullable"},{"doc":"Check if `this` is in the null state.","kind":"method","module":"std.typecons","name":"isNull","package":"phobos","parentType":"Nullable","signature":"bool isNull()","url":"/ddoc/phobos/std/typecons/Nullable.isNull.html"},{"doc":"Forces `this` to the null state.","kind":"method","module":"std.typecons","name":"nullify","package":"phobos","parentType":"Nullable","signature":"void nullify()()","url":"/ddoc/phobos/std/typecons/Nullable.nullify.html"},{"doc":"Assigns `value` to the internally-held state. If the assignment succeeds, `this` becomes non-null. No null checks are made. Note that the assignmen...","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Nullable","signature":"void opAssign()(T value)","url":"/ddoc/phobos/std/typecons/Nullable.opAssign.html"},{"doc":"Gets the value. `this` must not be in the null state. This function is also called for the implicit conversion to `T`.","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"Nullable","signature":"inout(T) get()","url":"/ddoc/phobos/std/typecons/Nullable.get.html"},{"doc":"Just like `Nullable!T`, except that the object refers to a value sitting elsewhere in memory. This makes assignments overwrite the initially assign...","kind":"struct","module":"std.typecons","name":"NullableRef","package":"phobos","parentType":"","signature":"NullableRef(T)","url":"/ddoc/phobos/std/typecons.html#NullableRef"},{"doc":"Binds the internal state to `value`.","kind":"method","module":"std.typecons","name":"bind","package":"phobos","parentType":"NullableRef","signature":"void bind(T *  value)","url":"/ddoc/phobos/std/typecons/NullableRef.bind.html"},{"doc":"Returns `true` if and only if `this` is in the null state.","kind":"method","module":"std.typecons","name":"isNull","package":"phobos","parentType":"NullableRef","signature":"bool isNull()","url":"/ddoc/phobos/std/typecons/NullableRef.isNull.html"},{"doc":"Forces `this` to the null state.","kind":"method","module":"std.typecons","name":"nullify","package":"phobos","parentType":"NullableRef","signature":"void nullify()","url":"/ddoc/phobos/std/typecons/NullableRef.nullify.html"},{"doc":"Assigns `value` to the internally-held state.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"NullableRef","signature":"void opAssign()(T value) if (isAssignable!T)","url":"/ddoc/phobos/std/typecons/NullableRef.opAssign.html"},{"doc":"Gets the value. `this` must not be in the null state. This function is also called for the implicit conversion to `T`.","kind":"method","module":"std.typecons","name":"get","package":"phobos","parentType":"NullableRef","signature":"inout(T) get()","url":"/ddoc/phobos/std/typecons/NullableRef.get.html"},{"doc":"`BlackHole!Base` is a subclass of `Base` which automatically implements all abstract member functions in `Base` as do-nothing functions.  Each auto...","kind":"alias","module":"std.typecons","name":"BlackHole","package":"phobos","parentType":"","signature":"BlackHole(Base) = AutoImplement!(Base,  generateEmptyFunction,  isAbstractFunction)","url":"/ddoc/phobos/std/typecons.html#BlackHole"},{"doc":"`WhiteHole!Base` is a subclass of `Base` which automatically implements all abstract member functions as functions that always fail. These function...","kind":"alias","module":"std.typecons","name":"WhiteHole","package":"phobos","parentType":"","signature":"WhiteHole(Base) = AutoImplement!(Base,  generateAssertTrap,  isAbstractFunction)","url":"/ddoc/phobos/std/typecons.html#WhiteHole"},{"doc":"ditto","kind":"class","module":"std.typecons","name":"NotImplementedError","package":"phobos","parentType":"","signature":"NotImplementedError : Error","url":"/ddoc/phobos/std/typecons.html#NotImplementedError"},{"doc":"`AutoImplement` automatically implements (by default) all abstract member functions in the class or interface `Base` in specified way.","kind":"class","module":"std.typecons","name":"AutoImplement","package":"phobos","parentType":"","signature":"AutoImplement(Base,  alias  how,  alias  what =  isAbstractFunction) : Base if (!is(how ==  class))","url":"/ddoc/phobos/std/typecons.html#AutoImplement"},{"doc":"ditto","kind":"class","module":"std.typecons","name":"AutoImplement","package":"phobos","parentType":"","signature":"AutoImplement(\n     Interface,  BaseClass,  alias  how,\n     alias  what =  isAbstractFunction) : BaseClass,   Interface if (is(Interface ==  interface)  &&  is(BaseClass ==  class))","url":"/ddoc/phobos/std/typecons.html#AutoImplement"},{"doc":"","kind":"interface","module":"std.typecons","name":"Structural","package":"phobos","parentType":"","signature":"Structural","url":"/ddoc/phobos/std/typecons.html#Structural"},{"doc":"","kind":"method","module":"std.typecons","name":"_wrap_getSource","package":"phobos","parentType":"Structural","signature":"inout(Object) _wrap_getSource()","url":"/ddoc/phobos/std/typecons/Structural._wrap_getSource.html"},{"doc":"","kind":"enum","module":"std.typecons","name":"TypeModifier","package":"phobos","parentType":"","signature":"TypeModifier","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"","kind":"enum_member","module":"std.typecons","name":"mutable","package":"phobos","parentType":"","signature":"mutable = 0","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"","kind":"enum_member","module":"std.typecons","name":"const_","package":"phobos","parentType":"","signature":"const_ = 1","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"","kind":"enum_member","module":"std.typecons","name":"immutable_","package":"phobos","parentType":"","signature":"immutable_ = 2","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"","kind":"enum_member","module":"std.typecons","name":"shared_","package":"phobos","parentType":"","signature":"shared_ = 4","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"","kind":"enum_member","module":"std.typecons","name":"inout_","package":"phobos","parentType":"","signature":"inout_ = 8","url":"/ddoc/phobos/std/typecons.html#TypeModifier"},{"doc":"Options regarding auto-initialization of a `SafeRefCounted` object (see the definition of `SafeRefCounted` below).","kind":"enum","module":"std.typecons","name":"RefCountedAutoInitialize","package":"phobos","parentType":"","signature":"RefCountedAutoInitialize","url":"/ddoc/phobos/std/typecons.html#RefCountedAutoInitialize"},{"doc":"Do not auto-initialize the object","kind":"enum_member","module":"std.typecons","name":"no","package":"phobos","parentType":"","signature":"no = ","url":"/ddoc/phobos/std/typecons.html#RefCountedAutoInitialize"},{"doc":"Auto-initialize the object","kind":"enum_member","module":"std.typecons","name":"yes","package":"phobos","parentType":"","signature":"yes = ","url":"/ddoc/phobos/std/typecons.html#RefCountedAutoInitialize"},{"doc":"Defines a reference-counted object containing a `T` value as payload.","kind":"struct","module":"std.typecons","name":"SafeRefCounted","package":"phobos","parentType":"","signature":"SafeRefCounted(T,  RefCountedAutoInitialize autoInit =\n         RefCountedAutoInitialize.yes) if (!is(T ==  class)  && !(is(T ==  interface)))","url":"/ddoc/phobos/std/typecons.html#SafeRefCounted"},{"doc":"","kind":"method","module":"std.typecons","name":"pureFree","package":"phobos","parentType":"SafeRefCounted","signature":"void pureFree(  void  * ptr )","url":"/ddoc/phobos/std/typecons/SafeRefCounted.pureFree.html"},{"doc":"","kind":"method","module":"std.typecons","name":"checkInit","package":"phobos","parentType":"SafeRefCounted","signature":"void checkInit()() if (autoInit ==  RefCountedAutoInitialize.yes)","url":"/ddoc/phobos/std/typecons/SafeRefCounted.checkInit.html"},{"doc":"","kind":"method","module":"std.typecons","name":"checkInit","package":"phobos","parentType":"SafeRefCounted","signature":"void checkInit()() if (autoInit ==  RefCountedAutoInitialize.no)","url":"/ddoc/phobos/std/typecons/SafeRefCounted.checkInit.html"},{"doc":"Returns storage implementation struct.","kind":"method","module":"std.typecons","name":"refCountedStore","package":"phobos","parentType":"SafeRefCounted","signature":"inout(RefCountedStore) refCountedStore()","url":"/ddoc/phobos/std/typecons/SafeRefCounted.refCountedStore.html"},{"doc":"Assignment operators.","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"SafeRefCounted","signature":"void opAssign(typeof(this)  rhs)","url":"/ddoc/phobos/std/typecons/SafeRefCounted.opAssign.html"},{"doc":"Ditto","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"SafeRefCounted","signature":"void opAssign(T rhs)","url":"/ddoc/phobos/std/typecons/SafeRefCounted.opAssign.html"},{"doc":"$(B Typedef) allows the creation of a unique type which is based on an existing type. Unlike the `alias` feature, $(B Typedef) ensures the two type...","kind":"struct","module":"std.typecons","name":"Typedef","package":"phobos","parentType":"","signature":"Typedef(T,  T init =  T.init,  string cookie = null)","url":"/ddoc/phobos/std/typecons.html#Typedef"},{"doc":"","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"Typedef","signature":"T2 opCast(T2 :  Typedef!(T,  Unused),  this  X,  T,  Unused...)()","url":"/ddoc/phobos/std/typecons/Typedef.opCast.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"Typedef","signature":"auto ref opCast(T2,  this  X)()","url":"/ddoc/phobos/std/typecons/Typedef.opCast.html"},{"doc":"Convert wrapped value to a human readable string","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Typedef","signature":"string toString(this  T)()","url":"/ddoc/phobos/std/typecons/Typedef.toString.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"toString","package":"phobos","parentType":"Typedef","signature":"void toString(this  T,  W)(ref  W writer,  scope  const  ref  FormatSpec!char  fmt) if (isOutputRange!(W,  char))","url":"/ddoc/phobos/std/typecons/Typedef.toString.html"},{"doc":"Convenience names that allow using e.g. `Yes.encryption` instead of `Flag!\"encryption\".yes` and `No.encryption` instead of $(D Flag!\"encryption\".no).","kind":"struct","module":"std.typecons","name":"Yes","package":"phobos","parentType":"","signature":"Yes","url":"/ddoc/phobos/std/typecons.html#Yes"},{"doc":"Ditto","kind":"struct","module":"std.typecons","name":"No","package":"phobos","parentType":"","signature":"No","url":"/ddoc/phobos/std/typecons.html#No"},{"doc":"A typesafe structure for storing combinations of enum values.","kind":"struct","module":"std.typecons","name":"BitFlags","package":"phobos","parentType":"","signature":"BitFlags(E,  Flag!\"unsafe\" unsafe =  No.unsafe) if (unsafe ||  isBitFlagEnum!(E))","url":"/ddoc/phobos/std/typecons.html#BitFlags"},{"doc":"","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"BitFlags","signature":"bool opCast(B:  bool)()","url":"/ddoc/phobos/std/typecons/BitFlags.opCast.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opCast","package":"phobos","parentType":"BitFlags","signature":"Base opCast(B)() if (is(Base :  B))","url":"/ddoc/phobos/std/typecons/BitFlags.opCast.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opUnary","package":"phobos","parentType":"BitFlags","signature":"auto opUnary(string op)() if (op ==  \"~\")","url":"/ddoc/phobos/std/typecons/BitFlags.opUnary.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opAssign(T...)(T flags) if (allSatisfy!(isBaseEnumType,  T))","url":"/ddoc/phobos/std/typecons/BitFlags.opAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opAssign(E flag)","url":"/ddoc/phobos/std/typecons/BitFlags.opAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opOpAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opOpAssign(string op:  \"|\")(BitFlags flags)","url":"/ddoc/phobos/std/typecons/BitFlags.opOpAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opOpAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opOpAssign(string op:  \"&\")(BitFlags  flags)","url":"/ddoc/phobos/std/typecons/BitFlags.opOpAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opOpAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opOpAssign(string op:  \"|\")(E flag)","url":"/ddoc/phobos/std/typecons/BitFlags.opOpAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opOpAssign","package":"phobos","parentType":"BitFlags","signature":"auto ref opOpAssign(string op:  \"&\")(E flag)","url":"/ddoc/phobos/std/typecons/BitFlags.opOpAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"BitFlags","signature":"auto opBinary(string op)(BitFlags flags) if (op ==  \"|\" ||  op ==  \"&\")","url":"/ddoc/phobos/std/typecons/BitFlags.opBinary.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"BitFlags","signature":"auto opBinary(string op)(E flag) if (op ==  \"|\" ||  op ==  \"&\")","url":"/ddoc/phobos/std/typecons/BitFlags.opBinary.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opBinaryRight","package":"phobos","parentType":"BitFlags","signature":"auto opBinaryRight(string op)(E flag) if (op ==  \"|\" ||  op ==  \"&\")","url":"/ddoc/phobos/std/typecons/BitFlags.opBinaryRight.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opDispatch","package":"phobos","parentType":"BitFlags","signature":"bool opDispatch(string name)() if (__traits(hasMember,  E,  name))","url":"/ddoc/phobos/std/typecons/BitFlags.opDispatch.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opDispatch","package":"phobos","parentType":"BitFlags","signature":"void opDispatch(string name)(bool  set) if (__traits(hasMember,  E,  name))","url":"/ddoc/phobos/std/typecons/BitFlags.opDispatch.html"},{"doc":"Replaces all occurrences of `From` into `To`, in one or more types `T`. For example, `ReplaceType!(int, uint, Tuple!(int, float)[string])` yields `...","kind":"alias","module":"std.typecons","name":"ReplaceType","package":"phobos","parentType":"","signature":"ReplaceType(From,  To,  T...) = ReplaceTypeUnless!(false_,  From,  To,  T)","url":"/ddoc/phobos/std/typecons.html#ReplaceType"},{"doc":"Ternary type with three truth values:","kind":"struct","module":"std.typecons","name":"Ternary","package":"phobos","parentType":"","signature":"Ternary","url":"/ddoc/phobos/std/typecons.html#Ternary"},{"doc":"","kind":"method","module":"std.typecons","name":"make","package":"phobos","parentType":"Ternary","signature":"Ternary make(ubyte  b)","url":"/ddoc/phobos/std/typecons/Ternary.make.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"Ternary","signature":"void opAssign(bool  b)","url":"/ddoc/phobos/std/typecons/Ternary.opAssign.html"},{"doc":"$(TABLE Truth table for logical operations, $(TR $(TH `a`) $(TH `b`) $(TH `$(TILDE)a`) $(TH `a | b`) $(TH `a & b`) $(TH `a ^ b`)) $(TR $(TD `no`) $...","kind":"method","module":"std.typecons","name":"opUnary","package":"phobos","parentType":"Ternary","signature":"Ternary opUnary(string s)() if (s ==  \"~\")","url":"/ddoc/phobos/std/typecons/Ternary.opUnary.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"Ternary","signature":"Ternary opBinary(string s)(Ternary rhs) if (s ==  \"|\")","url":"/ddoc/phobos/std/typecons/Ternary.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"Ternary","signature":"Ternary opBinary(string s)(Ternary rhs) if (s ==  \"&\")","url":"/ddoc/phobos/std/typecons/Ternary.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"Ternary","signature":"Ternary opBinary(string s)(Ternary rhs) if (s ==  \"^\")","url":"/ddoc/phobos/std/typecons/Ternary.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.typecons","name":"opBinary","package":"phobos","parentType":"Ternary","signature":"Ternary opBinary(string s)(bool  rhs) if (s ==  \"|\" ||  s ==  \"&\" ||  s ==  \"^\")","url":"/ddoc/phobos/std/typecons/Ternary.opBinary.html"},{"doc":"The old version of $(LREF SafeRefCounted), before $(LREF borrow) existed. Old code may be relying on `@safe`ty of some of the member functions whic...","kind":"struct","module":"std.typecons","name":"RefCounted","package":"phobos","parentType":"","signature":"RefCounted(T,  RefCountedAutoInitialize autoInit =\n     RefCountedAutoInitialize.yes)","url":"/ddoc/phobos/std/typecons.html#RefCounted"},{"doc":"","kind":"method","module":"std.typecons","name":"pureFree","package":"phobos","parentType":"RefCounted","signature":"void pureFree(  void  * ptr )","url":"/ddoc/phobos/std/typecons/RefCounted.pureFree.html"},{"doc":"","kind":"method","module":"std.typecons","name":"refCountedStore","package":"phobos","parentType":"RefCounted","signature":"inout(RefCountedStore) refCountedStore()","url":"/ddoc/phobos/std/typecons/RefCounted.refCountedStore.html"},{"doc":"","kind":"method","module":"std.typecons","name":"opAssign","package":"phobos","parentType":"RefCounted","signature":"void opAssign(typeof(this)  rhs)","url":"/ddoc/phobos/std/typecons/RefCounted.opAssign.html"},{"doc":"","kind":"method","module":"std.typecons","name":"refCountedPayload","package":"phobos","parentType":"RefCounted","signature":"inout(T) refCountedPayload()","url":"/ddoc/phobos/std/typecons/RefCounted.refCountedPayload.html"},{"doc":"","kind":"template","module":"std.typecons","name":"parseSpecs","package":"phobos","parentType":"","signature":"parseSpecs(Specs...)","url":"/ddoc/phobos/std/typecons.html#parseSpecs"},{"doc":"","kind":"template","module":"std.typecons","name":"FieldSpec","package":"phobos","parentType":"","signature":"FieldSpec(T,  string s =  \"\")","url":"/ddoc/phobos/std/typecons.html#FieldSpec"},{"doc":"","kind":"template","module":"std.typecons","name":"expandSpec","package":"phobos","parentType":"","signature":"expandSpec(alias  spec)","url":"/ddoc/phobos/std/typecons.html#expandSpec"},{"doc":"","kind":"template","module":"std.typecons","name":"isBuildableFrom","package":"phobos","parentType":"","signature":"isBuildableFrom(U)","url":"/ddoc/phobos/std/typecons.html#isBuildableFrom"},{"doc":"","kind":"template","module":"std.typecons","name":"noMemberHasCopyCtor","package":"phobos","parentType":"","signature":"noMemberHasCopyCtor(T)","url":"/ddoc/phobos/std/typecons.html#noMemberHasCopyCtor"},{"doc":"_Tuple of values, for example $(D Tuple!(int, string)) is a record that stores an `int` and a `string`. `Tuple` can be used to bundle values togeth...","kind":"template","module":"std.typecons","name":"Tuple","package":"phobos","parentType":"","signature":"Tuple(Specs...)","url":"/ddoc/phobos/std/typecons.html#Tuple"},{"doc":"","kind":"struct","module":"std.typecons","name":"Tuple","package":"phobos","parentType":"","signature":"Tuple","url":"/ddoc/phobos/std/typecons.html#Tuple"},{"doc":"","kind":"template","module":"std.typecons","name":"ReverseTupleType","package":"phobos","parentType":"","signature":"ReverseTupleType(T)","url":"/ddoc/phobos/std/typecons.html#ReverseTupleType"},{"doc":"","kind":"template","module":"std.typecons","name":"ReverseTupleSpecs","package":"phobos","parentType":"","signature":"ReverseTupleSpecs(T...)","url":"/ddoc/phobos/std/typecons.html#ReverseTupleSpecs"},{"doc":"Constructs a $(LREF Tuple) object instantiated and initialized according to the given arguments.","kind":"template","module":"std.typecons","name":"tuple","package":"phobos","parentType":"","signature":"tuple(Names...)","url":"/ddoc/phobos/std/typecons.html#tuple"},{"doc":"Params: args = Values to initialize the `Tuple` with. The `Tuple`'s type will be inferred from the types of the values given.","kind":"function","module":"std.typecons","name":"tuple","package":"phobos","parentType":"","signature":"auto tuple(Args...)(Args args)","url":"/ddoc/phobos/std/typecons.html#tuple"},{"doc":"`Rebindable!(T)` is a simple, efficient wrapper that behaves just like an object of type `T`, except that you can reassign it to refer to another o...","kind":"template","module":"std.typecons","name":"Rebindable","package":"phobos","parentType":"","signature":"Rebindable(T)","url":"/ddoc/phobos/std/typecons.html#Rebindable"},{"doc":"Similar to `Rebindable!(T)` but strips all qualifiers from the reference as opposed to just constness / immutability. Primary intended use case is ...","kind":"template","module":"std.typecons","name":"UnqualRef","package":"phobos","parentType":"","signature":"UnqualRef(T)","url":"/ddoc/phobos/std/typecons.html#UnqualRef"},{"doc":"Unpacks the content of a `Nullable`, performs an operation and packs it again. Does nothing if isNull.","kind":"template","module":"std.typecons","name":"apply","package":"phobos","parentType":"","signature":"apply(alias  fun)","url":"/ddoc/phobos/std/typecons.html#apply"},{"doc":"","kind":"function","module":"std.typecons","name":"apply","package":"phobos","parentType":"","signature":"auto apply(T)(auto  ref  T t) if (isInstanceOf!(Nullable,  T))","url":"/ddoc/phobos/std/typecons.html#apply"},{"doc":"","kind":"template","module":"std.typecons","name":"AutoImplement_Helper","package":"phobos","parentType":"","signature":"AutoImplement_Helper(string myName,  string baseName,\n         Base,  Self,  alias  generateMethodBody,  alias  cherrypickMethod)","url":"/ddoc/phobos/std/typecons.html#AutoImplement_Helper"},{"doc":"","kind":"template","module":"std.typecons","name":"OverloadSet","package":"phobos","parentType":"","signature":"OverloadSet(string nam,  T...)","url":"/ddoc/phobos/std/typecons.html#OverloadSet"},{"doc":"","kind":"template","module":"std.typecons","name":"FuncInfo","package":"phobos","parentType":"","signature":"FuncInfo(alias  func)","url":"/ddoc/phobos/std/typecons.html#FuncInfo"},{"doc":"","kind":"template","module":"std.typecons","name":"FuncInfo","package":"phobos","parentType":"","signature":"FuncInfo(Func)","url":"/ddoc/phobos/std/typecons.html#FuncInfo"},{"doc":"","kind":"template","module":"std.typecons","name":"MemberFunctionGenerator","package":"phobos","parentType":"","signature":"MemberFunctionGenerator(alias  Policy)","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"function","module":"std.typecons","name":"generateCode","package":"phobos","parentType":"","signature":"string generateCode(overloads...)()","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"function","module":"std.typecons","name":"generateCodeForOverloadSet","package":"phobos","parentType":"","signature":"string generateCodeForOverloadSet(alias  oset)()","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"function","module":"std.typecons","name":"generateFunction","package":"phobos","parentType":"","signature":"string generateFunction(\n             string myFuncInfo,  string name,  func... )()","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"function","module":"std.typecons","name":"generateParameters","package":"phobos","parentType":"","signature":"GenParams generateParameters(string myFuncInfo,  func...)()","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"function","module":"std.typecons","name":"enumerateParameters","package":"phobos","parentType":"","signature":"string enumerateParameters(size_t n)()","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"","kind":"struct","module":"std.typecons","name":"GenParams","package":"phobos","parentType":"","signature":"GenParams","url":"/ddoc/phobos/std/typecons.html#MemberFunctionGenerator"},{"doc":"Predefined how-policies for `AutoImplement`.  These templates are also used by `BlackHole` and `WhiteHole`, respectively.","kind":"template","module":"std.typecons","name":"generateEmptyFunction","package":"phobos","parentType":"","signature":"generateEmptyFunction(C,  func.../+[https://issues.dlang.org/show_bug.cgi?id=4217]+/)","url":"/ddoc/phobos/std/typecons.html#generateEmptyFunction"},{"doc":"ditto","kind":"template","module":"std.typecons","name":"generateAssertTrap","package":"phobos","parentType":"","signature":"generateAssertTrap(C,  func...)","url":"/ddoc/phobos/std/typecons.html#generateAssertTrap"},{"doc":"","kind":"template","module":"std.typecons","name":"dynamicCast","package":"phobos","parentType":"","signature":"dynamicCast(T)","url":"/ddoc/phobos/std/typecons.html#dynamicCast"},{"doc":"","kind":"function","module":"std.typecons","name":"dynamicCast","package":"phobos","parentType":"","signature":"T dynamicCast(S)(inout  S source) if (is(S ==  class)  ||  is(S ==  interface))","url":"/ddoc/phobos/std/typecons.html#dynamicCast"},{"doc":"Supports structural based typesafe conversion.","kind":"template","module":"std.typecons","name":"wrap","package":"phobos","parentType":"","signature":"wrap(Targets...)","url":"/ddoc/phobos/std/typecons.html#wrap"},{"doc":"","kind":"function","module":"std.typecons","name":"wrap","package":"phobos","parentType":"","signature":"auto wrap(Source)(inout  Source src) if (Targets.length ==  1 &&  is(Source :  Targets[0]))","url":"/ddoc/phobos/std/typecons.html#wrap"},{"doc":"ditto","kind":"template","module":"std.typecons","name":"wrap","package":"phobos","parentType":"","signature":"wrap(Targets...)","url":"/ddoc/phobos/std/typecons.html#wrap"},{"doc":"ditto","kind":"template","module":"std.typecons","name":"unwrap","package":"phobos","parentType":"","signature":"unwrap(Target)","url":"/ddoc/phobos/std/typecons.html#unwrap"},{"doc":"","kind":"function","module":"std.typecons","name":"unwrap","package":"phobos","parentType":"","signature":"auto unwrap(Source)(inout  Source src) if (is(Target :  Source))","url":"/ddoc/phobos/std/typecons.html#unwrap"},{"doc":"","kind":"function","module":"std.typecons","name":"unwrap","package":"phobos","parentType":"","signature":"auto unwrap(Source)(inout  Source src) if (!is(Target :  Source))","url":"/ddoc/phobos/std/typecons.html#unwrap"},{"doc":"ditto","kind":"template","module":"std.typecons","name":"unwrap","package":"phobos","parentType":"","signature":"unwrap(Target)","url":"/ddoc/phobos/std/typecons.html#unwrap"},{"doc":"","kind":"template","module":"std.typecons","name":"GetOverloadedMethods","package":"phobos","parentType":"","signature":"GetOverloadedMethods(T)","url":"/ddoc/phobos/std/typecons.html#GetOverloadedMethods"},{"doc":"","kind":"template","module":"std.typecons","name":"findCovariantFunction","package":"phobos","parentType":"","signature":"findCovariantFunction(alias  finfo,  Source,  Fs...)","url":"/ddoc/phobos/std/typecons.html#findCovariantFunction"},{"doc":"","kind":"template","module":"std.typecons","name":"TypeMod","package":"phobos","parentType":"","signature":"TypeMod(T)","url":"/ddoc/phobos/std/typecons.html#TypeMod"},{"doc":"","kind":"template","module":"std.typecons","name":"DerivedFunctionType","package":"phobos","parentType":"","signature":"DerivedFunctionType(T...)","url":"/ddoc/phobos/std/typecons.html#DerivedFunctionType"},{"doc":"","kind":"template","module":"std.typecons","name":"Bind","package":"phobos","parentType":"","signature":"Bind(alias  Template,  args1...)","url":"/ddoc/phobos/std/typecons.html#Bind"},{"doc":"Borrows the payload of $(LREF SafeRefCounted) for use in `fun`. Inferred as `@safe` if `fun` is `@safe` and does not escape a reference to the payl...","kind":"template","module":"std.typecons","name":"borrow","package":"phobos","parentType":"","signature":"borrow(alias  fun)","url":"/ddoc/phobos/std/typecons.html#borrow"},{"doc":"","kind":"function","module":"std.typecons","name":"borrow","package":"phobos","parentType":"","signature":"auto ref borrow(RC)(RC refCount) if\n    (\n         isInstanceOf!(SafeRefCounted,  RC)\n         &&  is(typeof(unaryFun!fun(refCount.refCountedPayload)))\n    )","url":"/ddoc/phobos/std/typecons.html#borrow"},{"doc":"Get the underlying type which a `Typedef` wraps. If `T` is not a `Typedef` it will alias itself to `T`.","kind":"template","module":"std.typecons","name":"TypedefType","package":"phobos","parentType":"","signature":"TypedefType(T)","url":"/ddoc/phobos/std/typecons.html#TypedefType"},{"doc":"Allocates a `class` object right inside the current scope, therefore avoiding the overhead of `new`. This facility is unsafe; it is the responsibil...","kind":"template","module":"std.typecons","name":"scoped","package":"phobos","parentType":"","signature":"scoped(T)","url":"/ddoc/phobos/std/typecons.html#scoped"},{"doc":"Returns the _scoped object. Params: args = Arguments to pass to `T`'s constructor.","kind":"function","module":"std.typecons","name":"scoped","package":"phobos","parentType":"","signature":"@system auto scoped(Args...)(auto  ref  Args args)","url":"/ddoc/phobos/std/typecons.html#scoped"},{"doc":"","kind":"struct","module":"std.typecons","name":"Scoped","package":"phobos","parentType":"","signature":"Scoped","url":"/ddoc/phobos/std/typecons.html#scoped"},{"doc":"Defines a simple, self-documenting yes/no flag. This makes it easy for APIs to define functions accepting flags without resorting to $(D bool), whi...","kind":"template","module":"std.typecons","name":"Flag","package":"phobos","parentType":"","signature":"Flag(string name)","url":"/ddoc/phobos/std/typecons.html#Flag"},{"doc":"","kind":"enum","module":"std.typecons","name":"Flag","package":"phobos","parentType":"","signature":"Flag : bool","url":"/ddoc/phobos/std/typecons.html#Flag"},{"doc":"Detect whether an enum is of integral type and has only \"flag\" values (i.e. values with a bit count of exactly 1). Additionally, a zero value is al...","kind":"template","module":"std.typecons","name":"isBitFlagEnum","package":"phobos","parentType":"","signature":"isBitFlagEnum(E)","url":"/ddoc/phobos/std/typecons.html#isBitFlagEnum"},{"doc":"Like $(LREF ReplaceType), but does not perform replacement in types for which `pred` evaluates to `true`.","kind":"template","module":"std.typecons","name":"ReplaceTypeUnless","package":"phobos","parentType":"","signature":"ReplaceTypeUnless(alias  pred,  From,  To,  T...)","url":"/ddoc/phobos/std/typecons.html#ReplaceTypeUnless"},{"doc":"","kind":"template","module":"std.typecons","name":"replaceTypeInFunctionTypeUnless","package":"phobos","parentType":"","signature":"replaceTypeInFunctionTypeUnless(alias  pred,  From,  To,  fun)","url":"/ddoc/phobos/std/typecons.html#replaceTypeInFunctionTypeUnless"},{"doc":"","kind":"function","module":"std.typecons","name":"gen","package":"phobos","parentType":"","signature":"string gen()","url":"/ddoc/phobos/std/typecons.html#replaceTypeInFunctionTypeUnless"},{"doc":"","kind":"variable","module":"std.typecons","name":"distinctFieldNames","package":"phobos","parentType":"","signature":"bool distinctFieldNames","url":"/ddoc/phobos/std/typecons.html#distinctFieldNames"},{"doc":"","kind":"variable","module":"std.typecons","name":"isDIP1000","package":"phobos","parentType":"","signature":"isDIP1000","url":"/ddoc/phobos/std/typecons.html#isDIP1000"},{"doc":"This module was renamed to disambiguate the term tuple, use $(MREF std, meta) instead.","kind":"module","module":"std.typetuple","name":"std.typetuple","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/typetuple.html"},{"doc":"Alternate name for $(REF AliasSeq, std,meta) for legacy compatibility.","kind":"alias","module":"std.typetuple","name":"TypeTuple","package":"phobos","parentType":"","signature":"TypeTuple = AliasSeq","url":"/ddoc/phobos/std/typetuple.html#TypeTuple"},{"doc":"$(P The `std.uni` module provides an implementation of fundamental Unicode algorithms and data structures. This doesn't include UTF encoding and de...","kind":"module","module":"std.uni","name":"std.uni","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/uni.html"},{"doc":"","kind":"function","module":"std.uni","name":"copyBackwards","package":"phobos","parentType":"","signature":"void copyBackwards(T, U)(T[]  src,  U[]  dest)","url":"/ddoc/phobos/std/uni/copyBackwards.html"},{"doc":"","kind":"function","module":"std.uni","name":"copyForward","package":"phobos","parentType":"","signature":"void copyForward(T, U)(T[]  src,  U[]  dest)","url":"/ddoc/phobos/std/uni/copyForward.html"},{"doc":"","kind":"function","module":"std.uni","name":"force","package":"phobos","parentType":"","signature":"auto force(T,  F)(F from) if (isIntegral!T && !is(T ==  F))","url":"/ddoc/phobos/std/uni/force.html"},{"doc":"","kind":"function","module":"std.uni","name":"force","package":"phobos","parentType":"","signature":"auto force(T,  F)(F from) if (isBitPacked!T && !is(T ==  F))","url":"/ddoc/phobos/std/uni/force.html"},{"doc":"","kind":"function","module":"std.uni","name":"force","package":"phobos","parentType":"","signature":"auto force(T,  F)(F from) if (is(T ==  F))","url":"/ddoc/phobos/std/uni/force.html"},{"doc":"","kind":"function","module":"std.uni","name":"replicateBits","package":"phobos","parentType":"","signature":"size_t replicateBits(size_t times,  size_t bits)(size_t val)","url":"/ddoc/phobos/std/uni/replicateBits.html"},{"doc":"","kind":"function","module":"std.uni","name":"spaceFor","package":"phobos","parentType":"","signature":"size_t spaceFor(size_t _bits)(size_t new_len)","url":"/ddoc/phobos/std/uni/spaceFor.html"},{"doc":"","kind":"function","module":"std.uni","name":"sliceOverIndexed","package":"phobos","parentType":"","signature":"SliceOverIndexed!(const(T)) sliceOverIndexed(T)(size_t a,  size_t b,  const(T) *  x) if (is(Unqual!T ==  T))","url":"/ddoc/phobos/std/uni/sliceOverIndexed.html"},{"doc":"","kind":"function","module":"std.uni","name":"sliceOverIndexed","package":"phobos","parentType":"","signature":"SliceOverIndexed!T sliceOverIndexed(T)(size_t a,  size_t b,  T *  x) if (is(Unqual!T ==  T))","url":"/ddoc/phobos/std/uni/sliceOverIndexed.html"},{"doc":"","kind":"function","module":"std.uni","name":"packedArrayView","package":"phobos","parentType":"","signature":"inout(PackedArrayView!T) packedArrayView(T)(inout(size_t) *  ptr,  size_t items)","url":"/ddoc/phobos/std/uni/packedArrayView.html"},{"doc":"","kind":"function","module":"std.uni","name":"genUnrolledSwitchSearch","package":"phobos","parentType":"","signature":"string genUnrolledSwitchSearch(size_t size)","url":"/ddoc/phobos/std/uni/genUnrolledSwitchSearch.html"},{"doc":"","kind":"function","module":"std.uni","name":"isPow2OrZero","package":"phobos","parentType":"","signature":"bool isPow2OrZero(size_t sz)","url":"/ddoc/phobos/std/uni/isPow2OrZero.html"},{"doc":"","kind":"function","module":"std.uni","name":"uniformLowerBound","package":"phobos","parentType":"","signature":"size_t uniformLowerBound(alias  pred,  Range,  T)(Range range,  T needle) if (is(T :  ElementType!Range))","url":"/ddoc/phobos/std/uni/uniformLowerBound.html"},{"doc":"","kind":"function","module":"std.uni","name":"switchUniformLowerBound","package":"phobos","parentType":"","signature":"size_t switchUniformLowerBound(alias  pred,  Range,  T)(Range range,  T needle) if (is(T :  ElementType!Range))","url":"/ddoc/phobos/std/uni/switchUniformLowerBound.html"},{"doc":"","kind":"function","module":"std.uni","name":"genericReplace","package":"phobos","parentType":"","signature":"size_t genericReplace(Policy = void,  T,  Range)(ref  T dest,  size_t from,  size_t to,  Range stuff)","url":"/ddoc/phobos/std/uni/genericReplace.html"},{"doc":"","kind":"function","module":"std.uni","name":"safeRead24","package":"phobos","parentType":"","signature":"uint safeRead24(scope  const  ubyte *  ptr,  size_t idx)","url":"/ddoc/phobos/std/uni/safeRead24.html"},{"doc":"","kind":"function","module":"std.uni","name":"safeWrite24","package":"phobos","parentType":"","signature":"void safeWrite24(scope  ubyte *  ptr,  uint  val,  size_t idx)","url":"/ddoc/phobos/std/uni/safeWrite24.html"},{"doc":"","kind":"function","module":"std.uni","name":"unalignedRead24","package":"phobos","parentType":"","signature":"uint unalignedRead24(scope  const  ubyte *  ptr,  size_t idx)","url":"/ddoc/phobos/std/uni/unalignedRead24.html"},{"doc":"","kind":"function","module":"std.uni","name":"unalignedWrite24","package":"phobos","parentType":"","signature":"void unalignedWrite24(scope  ubyte *  ptr,  uint  val,  size_t idx)","url":"/ddoc/phobos/std/uni/unalignedWrite24.html"},{"doc":"","kind":"function","module":"std.uni","name":"read24","package":"phobos","parentType":"","signature":"uint read24(scope  const  ubyte *  ptr,  size_t idx)","url":"/ddoc/phobos/std/uni/read24.html"},{"doc":"","kind":"function","module":"std.uni","name":"write24","package":"phobos","parentType":"","signature":"void write24(scope  ubyte *  ptr,  uint  val,  size_t idx)","url":"/ddoc/phobos/std/uni/write24.html"},{"doc":"","kind":"function","module":"std.uni","name":"arrayRepr","package":"phobos","parentType":"","signature":"auto arrayRepr(T)(T x)","url":"/ddoc/phobos/std/uni/arrayRepr.html"},{"doc":"","kind":"function","module":"std.uni","name":"sumOfIntegerTuple","package":"phobos","parentType":"","signature":"size_t sumOfIntegerTuple(ints...)()","url":"/ddoc/phobos/std/uni/sumOfIntegerTuple.html"},{"doc":"","kind":"function","module":"std.uni","name":"utf8Matcher","package":"phobos","parentType":"","signature":"auto utf8Matcher(Set)(Set set)","url":"/ddoc/phobos/std/uni/utf8Matcher.html"},{"doc":"","kind":"function","module":"std.uni","name":"utf16Matcher","package":"phobos","parentType":"","signature":"auto utf16Matcher(Set)(Set set)","url":"/ddoc/phobos/std/uni/utf16Matcher.html"},{"doc":"Constructs a matcher object to classify $(CODEPOINTS) from the `set` for encoding that has `Char` as code unit.","kind":"function","module":"std.uni","name":"utfMatcher","package":"phobos","parentType":"","signature":"auto utfMatcher(Char,  Set)(Set set) if (isCodepointSet!Set)","url":"/ddoc/phobos/std/uni/utfMatcher.html"},{"doc":"","kind":"function","module":"std.uni","name":"decoder","package":"phobos","parentType":"","signature":"auto decoder(C)(C[]  s,  size_t offset = 0) if (is(C :  wchar)  ||  is(C :  char))","url":"/ddoc/phobos/std/uni/decoder.html"},{"doc":"Convenience function to construct optimal configurations for packed Trie from any `set` of $(CODEPOINTS).","kind":"function","module":"std.uni","name":"toTrie","package":"phobos","parentType":"","signature":"auto toTrie(size_t level,  Set)(Set set) if (isCodepointSet!Set)","url":"/ddoc/phobos/std/uni/toTrie.html"},{"doc":"$(P Builds a `Trie` with typically optimal speed-size trade-off and wraps it into a delegate of the following type: $(D bool delegate(dchar ch)). )","kind":"function","module":"std.uni","name":"toDelegate","package":"phobos","parentType":"","signature":"auto toDelegate(Set)(Set set) if (isCodepointSet!Set)","url":"/ddoc/phobos/std/uni/toDelegate.html"},{"doc":"","kind":"function","module":"std.uni","name":"low_8","package":"phobos","parentType":"","signature":"uint low_8(uint  x)","url":"/ddoc/phobos/std/uni/low_8.html"},{"doc":"","kind":"function","module":"std.uni","name":"midlow_8","package":"phobos","parentType":"","signature":"uint midlow_8(uint  x){","url":"/ddoc/phobos/std/uni/midlow_8.html"},{"doc":"","kind":"function","module":"std.uni","name":"comparePropertyName","package":"phobos","parentType":"","signature":"int comparePropertyName(Char1,  Char2)(const(Char1)[]  a,  const(Char2)[]  b) if (is(Char1 :  dchar)  &&  is(Char2 :  dchar))","url":"/ddoc/phobos/std/uni/comparePropertyName.html"},{"doc":"","kind":"function","module":"std.uni","name":"propertyNameLess","package":"phobos","parentType":"","signature":"bool propertyNameLess(Char1,  Char2)(const(Char1)[]  a,  const(Char2)[]  b) if (is(Char1 :  dchar)  &&  is(Char2 :  dchar))","url":"/ddoc/phobos/std/uni/propertyNameLess.html"},{"doc":"","kind":"function","module":"std.uni","name":"compressTo","package":"phobos","parentType":"","signature":"void compressTo(uint  val,  ref  scope  ubyte[]  arr)","url":"/ddoc/phobos/std/uni/compressTo.html"},{"doc":"","kind":"function","module":"std.uni","name":"decompressFrom","package":"phobos","parentType":"","signature":"uint decompressFrom(scope  const(ubyte)[]  arr,  ref  size_t idx)","url":"/ddoc/phobos/std/uni/decompressFrom.html"},{"doc":"","kind":"function","module":"std.uni","name":"compressIntervals","package":"phobos","parentType":"","signature":"ubyte[] compressIntervals(Range)(Range intervals) if (isInputRange!Range &&  isIntegralPair!(ElementType!Range))","url":"/ddoc/phobos/std/uni/compressIntervals.html"},{"doc":"","kind":"function","module":"std.uni","name":"decompressIntervals","package":"phobos","parentType":"","signature":"auto decompressIntervals(const(ubyte)[]  data)","url":"/ddoc/phobos/std/uni/decompressIntervals.html"},{"doc":"","kind":"struct","module":"std.uni","name":"MultiArray","package":"phobos","parentType":"","signature":"MultiArray(Types...)","url":"/ddoc/phobos/std/uni.html#MultiArray"},{"doc":"","kind":"method","module":"std.uni","name":"slice","package":"phobos","parentType":"MultiArray","signature":"@property auto slice(size_t n)()inout","url":"/ddoc/phobos/std/uni/MultiArray.slice.html"},{"doc":"","kind":"method","module":"std.uni","name":"ptr","package":"phobos","parentType":"MultiArray","signature":"@property auto ptr(size_t n)()inout","url":"/ddoc/phobos/std/uni/MultiArray.ptr.html"},{"doc":"","kind":"method","module":"std.uni","name":"bytes","package":"phobos","parentType":"MultiArray","signature":"size_t bytes(size_t n = size_t.max)()","url":"/ddoc/phobos/std/uni/MultiArray.bytes.html"},{"doc":"","kind":"method","module":"std.uni","name":"store","package":"phobos","parentType":"MultiArray","signature":"void store(OutRange)(scope  OutRange sink) if (isOutputRange!(OutRange,  char))","url":"/ddoc/phobos/std/uni/MultiArray.store.html"},{"doc":"","kind":"method","module":"std.uni","name":"raw_ptr","package":"phobos","parentType":"MultiArray","signature":"@property auto raw_ptr(size_t n)()inout","url":"/ddoc/phobos/std/uni/MultiArray.raw_ptr.html"},{"doc":"","kind":"struct","module":"std.uni","name":"PackedPtrImpl","package":"phobos","parentType":"","signature":"PackedPtrImpl(T,  size_t bits)","url":"/ddoc/phobos/std/uni.html#PackedPtrImpl"},{"doc":"","kind":"method","module":"std.uni","name":"simpleIndex","package":"phobos","parentType":"PackedPtrImpl","signature":"T simpleIndex(size_t n)","url":"/ddoc/phobos/std/uni/PackedPtrImpl.simpleIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"simpleWrite","package":"phobos","parentType":"PackedPtrImpl","signature":"void simpleWrite(TypeOfBitPacked!T val,  size_t n)","url":"/ddoc/phobos/std/uni/PackedPtrImpl.simpleWrite.html"},{"doc":"","kind":"struct","module":"std.uni","name":"PackedArrayViewImpl","package":"phobos","parentType":"","signature":"PackedArrayViewImpl(T,  size_t bits)","url":"/ddoc/phobos/std/uni.html#PackedArrayViewImpl"},{"doc":"","kind":"method","module":"std.uni","name":"zeros","package":"phobos","parentType":"PackedArrayViewImpl","signature":"bool zeros(size_t s,  size_t e)","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.zeros.html"},{"doc":"","kind":"method","module":"std.uni","name":"opIndex","package":"phobos","parentType":"PackedArrayViewImpl","signature":"T opIndex(size_t idx)","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"opIndexAssign","package":"phobos","parentType":"PackedArrayViewImpl","signature":"void opIndexAssign(TypeOfBitPacked!T val,  size_t idx)","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opIndexAssign.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSliceAssign","package":"phobos","parentType":"PackedArrayViewImpl","signature":"void opSliceAssign(TypeOfBitPacked!T val,  size_t start,  size_t end)","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opSliceAssign.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"PackedArrayViewImpl","signature":"auto opSlice(size_t from,  size_t to)inout","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"PackedArrayViewImpl","signature":"auto opSlice(){","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opEquals","package":"phobos","parentType":"PackedArrayViewImpl","signature":"bool opEquals(T)(auto  ref  T arr)","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.opEquals.html"},{"doc":"","kind":"method","module":"std.uni","name":"length","package":"phobos","parentType":"PackedArrayViewImpl","signature":"size_t length()const{","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.length.html"},{"doc":"","kind":"method","module":"std.uni","name":"roundUp","package":"phobos","parentType":"PackedArrayViewImpl","signature":"auto roundUp()(size_t val){","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.roundUp.html"},{"doc":"","kind":"method","module":"std.uni","name":"roundDown","package":"phobos","parentType":"PackedArrayViewImpl","signature":"auto roundDown()(size_t val){","url":"/ddoc/phobos/std/uni/PackedArrayViewImpl.roundDown.html"},{"doc":"","kind":"struct","module":"std.uni","name":"SliceOverIndexed","package":"phobos","parentType":"","signature":"SliceOverIndexed(T)","url":"/ddoc/phobos/std/uni.html#SliceOverIndexed"},{"doc":"","kind":"method","module":"std.uni","name":"opIndex","package":"phobos","parentType":"SliceOverIndexed","signature":"auto opIndex(size_t idx)const","url":"/ddoc/phobos/std/uni/SliceOverIndexed.opIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"SliceOverIndexed","signature":"auto opSlice(size_t a,  size_t b)","url":"/ddoc/phobos/std/uni/SliceOverIndexed.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSliceAssign","package":"phobos","parentType":"SliceOverIndexed","signature":"void opSliceAssign(T)(T val,  size_t start,  size_t end)","url":"/ddoc/phobos/std/uni/SliceOverIndexed.opSliceAssign.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"SliceOverIndexed","signature":"auto opSlice()","url":"/ddoc/phobos/std/uni/SliceOverIndexed.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"length","package":"phobos","parentType":"SliceOverIndexed","signature":"size_t length()const","url":"/ddoc/phobos/std/uni/SliceOverIndexed.length.html"},{"doc":"","kind":"method","module":"std.uni","name":"empty","package":"phobos","parentType":"SliceOverIndexed","signature":"bool empty()const","url":"/ddoc/phobos/std/uni/SliceOverIndexed.empty.html"},{"doc":"","kind":"method","module":"std.uni","name":"front","package":"phobos","parentType":"SliceOverIndexed","signature":"@property auto front()const","url":"/ddoc/phobos/std/uni/SliceOverIndexed.front.html"},{"doc":"","kind":"method","module":"std.uni","name":"back","package":"phobos","parentType":"SliceOverIndexed","signature":"@property auto back()const","url":"/ddoc/phobos/std/uni/SliceOverIndexed.back.html"},{"doc":"","kind":"method","module":"std.uni","name":"save","package":"phobos","parentType":"SliceOverIndexed","signature":"@property auto save()","url":"/ddoc/phobos/std/uni/SliceOverIndexed.save.html"},{"doc":"","kind":"method","module":"std.uni","name":"popFront","package":"phobos","parentType":"SliceOverIndexed","signature":"void popFront()","url":"/ddoc/phobos/std/uni/SliceOverIndexed.popFront.html"},{"doc":"","kind":"method","module":"std.uni","name":"popBack","package":"phobos","parentType":"SliceOverIndexed","signature":"void popBack()","url":"/ddoc/phobos/std/uni/SliceOverIndexed.popBack.html"},{"doc":"","kind":"method","module":"std.uni","name":"opEquals","package":"phobos","parentType":"SliceOverIndexed","signature":"bool opEquals(T)(auto  ref  T arr)","url":"/ddoc/phobos/std/uni/SliceOverIndexed.opEquals.html"},{"doc":"","kind":"alias","module":"std.uni","name":"sharLowerBound","package":"phobos","parentType":"","signature":"sharLowerBound = sharMethod!uniformLowerBound","url":"/ddoc/phobos/std/uni.html#sharLowerBound"},{"doc":"","kind":"alias","module":"std.uni","name":"sharSwitchLowerBound","package":"phobos","parentType":"","signature":"sharSwitchLowerBound = sharMethod!switchUniformLowerBound","url":"/ddoc/phobos/std/uni.html#sharSwitchLowerBound"},{"doc":"","kind":"struct","module":"std.uni","name":"GcPolicy","package":"phobos","parentType":"","signature":"GcPolicy","url":"/ddoc/phobos/std/uni.html#GcPolicy"},{"doc":"","kind":"method","module":"std.uni","name":"dup","package":"phobos","parentType":"GcPolicy","signature":"T[] dup(T)(const  T[]  arr)","url":"/ddoc/phobos/std/uni/GcPolicy.dup.html"},{"doc":"","kind":"method","module":"std.uni","name":"alloc","package":"phobos","parentType":"GcPolicy","signature":"T[] alloc(T)(size_t size)","url":"/ddoc/phobos/std/uni/GcPolicy.alloc.html"},{"doc":"","kind":"method","module":"std.uni","name":"realloc","package":"phobos","parentType":"GcPolicy","signature":"T[] realloc(T)(T[]  arr,  size_t sz)","url":"/ddoc/phobos/std/uni/GcPolicy.realloc.html"},{"doc":"","kind":"method","module":"std.uni","name":"replaceImpl","package":"phobos","parentType":"GcPolicy","signature":"void replaceImpl(T,  Range)(ref  T[]  dest,  size_t from,  size_t to,  Range stuff)","url":"/ddoc/phobos/std/uni/GcPolicy.replaceImpl.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"GcPolicy","signature":"void append(T,  V)(ref  T[]  arr,  V value) if (!isInputRange!V)","url":"/ddoc/phobos/std/uni/GcPolicy.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"GcPolicy","signature":"void append(T,  V)(ref  T[]  arr,  V value) if (isInputRange!V)","url":"/ddoc/phobos/std/uni/GcPolicy.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"destroy","package":"phobos","parentType":"GcPolicy","signature":"void destroy(T)(ref  T arr) if (isDynamicArray!T &&  is(Unqual!T ==  T))","url":"/ddoc/phobos/std/uni/GcPolicy.destroy.html"},{"doc":"","kind":"method","module":"std.uni","name":"destroy","package":"phobos","parentType":"GcPolicy","signature":"void destroy(T)(ref  T arr) if (isDynamicArray!T && !is(Unqual!T ==  T))","url":"/ddoc/phobos/std/uni/GcPolicy.destroy.html"},{"doc":"","kind":"method","module":"std.uni","name":"pureInGCFinalizer","package":"phobos","parentType":"GcPolicy","signature":"bool pureInGCFinalizer()","url":"/ddoc/phobos/std/uni/GcPolicy.pureInGCFinalizer.html"},{"doc":"","kind":"method","module":"std.uni","name":"accessIsSafe","package":"phobos","parentType":"GcPolicy","signature":"bool accessIsSafe()","url":"/ddoc/phobos/std/uni/GcPolicy.accessIsSafe.html"},{"doc":"","kind":"struct","module":"std.uni","name":"ReallocPolicy","package":"phobos","parentType":"","signature":"ReallocPolicy","url":"/ddoc/phobos/std/uni.html#ReallocPolicy"},{"doc":"","kind":"method","module":"std.uni","name":"dup","package":"phobos","parentType":"ReallocPolicy","signature":"T[] dup(T)(const  T[]  arr)","url":"/ddoc/phobos/std/uni/ReallocPolicy.dup.html"},{"doc":"","kind":"method","module":"std.uni","name":"alloc","package":"phobos","parentType":"ReallocPolicy","signature":"T[] alloc(T)(size_t size)","url":"/ddoc/phobos/std/uni/ReallocPolicy.alloc.html"},{"doc":"","kind":"method","module":"std.uni","name":"realloc","package":"phobos","parentType":"ReallocPolicy","signature":"T[] realloc(T)(return  scope  T[]  arr,  size_t size)","url":"/ddoc/phobos/std/uni/ReallocPolicy.realloc.html"},{"doc":"","kind":"method","module":"std.uni","name":"replaceImpl","package":"phobos","parentType":"ReallocPolicy","signature":"void replaceImpl(T,  Range)(ref  T[]  dest,  size_t from,  size_t to,  Range stuff)","url":"/ddoc/phobos/std/uni/ReallocPolicy.replaceImpl.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"ReallocPolicy","signature":"void append(T,  V)(ref  T[]  arr,  V value) if (!isInputRange!V)","url":"/ddoc/phobos/std/uni/ReallocPolicy.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"ReallocPolicy","signature":"void append(T,  V)(ref  T[]  arr,  V value) if (isInputRange!V &&  hasLength!V)","url":"/ddoc/phobos/std/uni/ReallocPolicy.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"destroy","package":"phobos","parentType":"ReallocPolicy","signature":"void destroy(T)(scope  ref  T[]  arr)","url":"/ddoc/phobos/std/uni/ReallocPolicy.destroy.html"},{"doc":"","kind":"alias","module":"std.uni","name":"_RealArray","package":"phobos","parentType":"","signature":"_RealArray = CowArray!ReallocPolicy","url":"/ddoc/phobos/std/uni.html#_RealArray"},{"doc":"The recommended default type for set of $(CODEPOINTS). For details, see the current implementation: $(LREF InversionList).","kind":"alias","module":"std.uni","name":"CodepointSet","package":"phobos","parentType":"","signature":"CodepointSet = InversionList!GcPolicy","url":"/ddoc/phobos/std/uni.html#CodepointSet"},{"doc":"The recommended type of $(REF Tuple, std,_typecons) to represent [a, b$(RPAREN) intervals of $(CODEPOINTS). As used in $(LREF InversionList). Any i...","kind":"struct","module":"std.uni","name":"CodepointInterval","package":"phobos","parentType":"","signature":"CodepointInterval","url":"/ddoc/phobos/std/uni.html#CodepointInterval"},{"doc":"","kind":"method","module":"std.uni","name":"opEquals","package":"phobos","parentType":"CodepointInterval","signature":"bool opEquals(T)(T val)","url":"/ddoc/phobos/std/uni/CodepointInterval.opEquals.html"},{"doc":"","kind":"method","module":"std.uni","name":"a","package":"phobos","parentType":"CodepointInterval","signature":"inout(uint) a()","url":"/ddoc/phobos/std/uni/CodepointInterval.a.html"},{"doc":"","kind":"method","module":"std.uni","name":"b","package":"phobos","parentType":"CodepointInterval","signature":"inout(uint) b()","url":"/ddoc/phobos/std/uni/CodepointInterval.b.html"},{"doc":"$(P `InversionList` is a set of $(CODEPOINTS) represented as an array of open-right [a, b$(RPAREN) intervals (see $(LREF CodepointInterval) above)....","kind":"struct","module":"std.uni","name":"InversionList","package":"phobos","parentType":"","signature":"InversionList(SP = GcPolicy)","url":"/ddoc/phobos/std/uni.html#InversionList"},{"doc":"","kind":"method","module":"std.uni","name":"fromIntervals","package":"phobos","parentType":"InversionList","signature":"static fromIntervals(Range)(Range intervals)","url":"/ddoc/phobos/std/uni/InversionList.fromIntervals.html"},{"doc":"","kind":"method","module":"std.uni","name":"fromIntervals","package":"phobos","parentType":"InversionList","signature":"static fromIntervals()(uint[]  intervals...)","url":"/ddoc/phobos/std/uni/InversionList.fromIntervals.html"},{"doc":"Get range that spans all of the $(CODEPOINT) intervals in this $(LREF InversionList).","kind":"method","module":"std.uni","name":"byInterval","package":"phobos","parentType":"InversionList","signature":"@property auto byInterval()","url":"/ddoc/phobos/std/uni/InversionList.byInterval.html"},{"doc":"","kind":"method","module":"std.uni","name":"intervals","package":"phobos","parentType":"InversionList","signature":"const(CodepointInterval)[] intervals()","url":"/ddoc/phobos/std/uni/InversionList.intervals.html"},{"doc":"Tests the presence of code point `val` in this set.","kind":"method","module":"std.uni","name":"opIndex","package":"phobos","parentType":"InversionList","signature":"bool opIndex(uint  val)","url":"/ddoc/phobos/std/uni/InversionList.opIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"scanFor","package":"phobos","parentType":"InversionList","signature":"auto scanFor()(dchar  ch)","url":"/ddoc/phobos/std/uni/InversionList.scanFor.html"},{"doc":"Number of $(CODEPOINTS) in this set","kind":"method","module":"std.uni","name":"length","package":"phobos","parentType":"InversionList","signature":"size_t length()","url":"/ddoc/phobos/std/uni/InversionList.length.html"},{"doc":"$(P Sets support natural syntax for set algebra, namely: ) $(BOOKTABLE , $(TR $(TH Operator) $(TH Math notation) $(TH Description) ) $(TR $(TD &) $...","kind":"method","module":"std.uni","name":"opBinary","package":"phobos","parentType":"InversionList","signature":"This opBinary(string op,  U)(U rhs) if (isCodepointSet!U ||  is(U: dchar))","url":"/ddoc/phobos/std/uni/InversionList.opBinary.html"},{"doc":"The 'op=' versions of the above overloaded operators.","kind":"method","module":"std.uni","name":"opOpAssign","package":"phobos","parentType":"InversionList","signature":"This opOpAssign(string op,  U)(U rhs) if (isCodepointSet!U ||  is(U: dchar))","url":"/ddoc/phobos/std/uni/InversionList.opOpAssign.html"},{"doc":"Tests the presence of codepoint `ch` in this set, the same as $(LREF opIndex).","kind":"method","module":"std.uni","name":"opBinaryRight","package":"phobos","parentType":"InversionList","signature":"bool opBinaryRight(string op:  \"in\",  U)(U ch) if (is(U :  dchar))","url":"/ddoc/phobos/std/uni/InversionList.opBinaryRight.html"},{"doc":"Obtains a set that is the inversion of this set.","kind":"method","module":"std.uni","name":"opUnary","package":"phobos","parentType":"InversionList","signature":"auto opUnary(string op:  \"!\")()","url":"/ddoc/phobos/std/uni/InversionList.opUnary.html"},{"doc":"A range that spans each $(CODEPOINT) in this set.","kind":"method","module":"std.uni","name":"byCodepoint","package":"phobos","parentType":"InversionList","signature":"@property auto byCodepoint()","url":"/ddoc/phobos/std/uni/InversionList.byCodepoint.html"},{"doc":"Obtain a textual representation of this InversionList in form of open-right intervals.","kind":"method","module":"std.uni","name":"toString","package":"phobos","parentType":"InversionList","signature":"void toString(Writer)(scope  Writer sink,  scope  const  ref  FormatSpec!char  fmt)","url":"/ddoc/phobos/std/uni/InversionList.toString.html"},{"doc":"Add an interval [a, b$(RPAREN) to this set.","kind":"method","module":"std.uni","name":"add","package":"phobos","parentType":"InversionList","signature":"ref add()(uint  a,  uint  b)","url":"/ddoc/phobos/std/uni/InversionList.add.html"},{"doc":"","kind":"method","module":"std.uni","name":"intersect","package":"phobos","parentType":"InversionList","signature":"ref intersect(U)(U rhs) if (isCodepointSet!U)","url":"/ddoc/phobos/std/uni/InversionList.intersect.html"},{"doc":"","kind":"method","module":"std.uni","name":"intersect","package":"phobos","parentType":"InversionList","signature":"ref intersect()(dchar  ch)","url":"/ddoc/phobos/std/uni/InversionList.intersect.html"},{"doc":"","kind":"method","module":"std.uni","name":"sub","package":"phobos","parentType":"InversionList","signature":"ref sub()(dchar  ch)","url":"/ddoc/phobos/std/uni/InversionList.sub.html"},{"doc":"","kind":"method","module":"std.uni","name":"sub","package":"phobos","parentType":"InversionList","signature":"ref sub(U)(U rhs) if (isCodepointSet!U)","url":"/ddoc/phobos/std/uni/InversionList.sub.html"},{"doc":"","kind":"method","module":"std.uni","name":"add","package":"phobos","parentType":"InversionList","signature":"ref add(U)(U rhs) if (isCodepointSet!U)","url":"/ddoc/phobos/std/uni/InversionList.add.html"},{"doc":"Obtains a set that is the inversion of this set.","kind":"method","module":"std.uni","name":"inverted","package":"phobos","parentType":"InversionList","signature":"@property auto inverted()","url":"/ddoc/phobos/std/uni/InversionList.inverted.html"},{"doc":"","kind":"method","module":"std.uni","name":"toSourceCode","package":"phobos","parentType":"InversionList","signature":"string toSourceCode(const(CodepointInterval)[]  range,  string funcName)","url":"/ddoc/phobos/std/uni/InversionList.toSourceCode.html"},{"doc":"Generates string with D source code of unary function with name of `funcName` taking a single `dchar` argument. If `funcName` is empty the code is ...","kind":"method","module":"std.uni","name":"toSourceCode","package":"phobos","parentType":"InversionList","signature":"string toSourceCode(string funcName = \"\")","url":"/ddoc/phobos/std/uni/InversionList.toSourceCode.html"},{"doc":"True if this set doesn't contain any $(CODEPOINTS).","kind":"method","module":"std.uni","name":"empty","package":"phobos","parentType":"InversionList","signature":"bool empty()","url":"/ddoc/phobos/std/uni/InversionList.empty.html"},{"doc":"","kind":"method","module":"std.uni","name":"sanitize","package":"phobos","parentType":"InversionList","signature":"void sanitize()","url":"/ddoc/phobos/std/uni/InversionList.sanitize.html"},{"doc":"","kind":"method","module":"std.uni","name":"subChar","package":"phobos","parentType":"InversionList","signature":"ref subChar(dchar  ch)","url":"/ddoc/phobos/std/uni/InversionList.subChar.html"},{"doc":"","kind":"method","module":"std.uni","name":"addInterval","package":"phobos","parentType":"InversionList","signature":"Marker addInterval(int  a,  int  b,  Marker hint = Marker.init)","url":"/ddoc/phobos/std/uni/InversionList.addInterval.html"},{"doc":"","kind":"method","module":"std.uni","name":"dropUpTo","package":"phobos","parentType":"InversionList","signature":"Marker dropUpTo(uint  a,  Marker pos = Marker.init)","url":"/ddoc/phobos/std/uni/InversionList.dropUpTo.html"},{"doc":"","kind":"method","module":"std.uni","name":"skipUpTo","package":"phobos","parentType":"InversionList","signature":"Marker skipUpTo(uint  a,  Marker pos = Marker.init)","url":"/ddoc/phobos/std/uni/InversionList.skipUpTo.html"},{"doc":"","kind":"struct","module":"std.uni","name":"CowArray","package":"phobos","parentType":"","signature":"CowArray(SP = GcPolicy)","url":"/ddoc/phobos/std/uni.html#CowArray"},{"doc":"","kind":"method","module":"std.uni","name":"reuse","package":"phobos","parentType":"CowArray","signature":"static auto reuse(uint[]  arr)","url":"/ddoc/phobos/std/uni/CowArray.reuse.html"},{"doc":"","kind":"method","module":"std.uni","name":"empty","package":"phobos","parentType":"CowArray","signature":"bool empty()","url":"/ddoc/phobos/std/uni/CowArray.empty.html"},{"doc":"","kind":"method","module":"std.uni","name":"length","package":"phobos","parentType":"CowArray","signature":"size_t length()","url":"/ddoc/phobos/std/uni/CowArray.length.html"},{"doc":"","kind":"method","module":"std.uni","name":"length","package":"phobos","parentType":"CowArray","signature":"void length(size_t len)","url":"/ddoc/phobos/std/uni/CowArray.length.html"},{"doc":"","kind":"method","module":"std.uni","name":"opIndex","package":"phobos","parentType":"CowArray","signature":"uint opIndex()(size_t idx)const","url":"/ddoc/phobos/std/uni/CowArray.opIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"opIndexAssign","package":"phobos","parentType":"CowArray","signature":"void opIndexAssign(uint  val,  size_t idx)","url":"/ddoc/phobos/std/uni/CowArray.opIndexAssign.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"CowArray","signature":"auto opSlice(size_t from,  size_t to)","url":"/ddoc/phobos/std/uni/CowArray.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"CowArray","signature":"auto opSlice(size_t from,  size_t to)","url":"/ddoc/phobos/std/uni/CowArray.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"CowArray","signature":"auto opSlice()","url":"/ddoc/phobos/std/uni/CowArray.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"opSlice","package":"phobos","parentType":"CowArray","signature":"auto opSlice()","url":"/ddoc/phobos/std/uni/CowArray.opSlice.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"CowArray","signature":"void append(Range)(Range range) if (isInputRange!Range &&  hasLength!Range &&  is(ElementType!Range :  uint))","url":"/ddoc/phobos/std/uni/CowArray.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"append","package":"phobos","parentType":"CowArray","signature":"void append()(uint[]  val...)","url":"/ddoc/phobos/std/uni/CowArray.append.html"},{"doc":"","kind":"method","module":"std.uni","name":"opEquals","package":"phobos","parentType":"CowArray","signature":"bool opEquals()(auto  ref  const  CowArray rhs)","url":"/ddoc/phobos/std/uni/CowArray.opEquals.html"},{"doc":"","kind":"method","module":"std.uni","name":"refCount","package":"phobos","parentType":"CowArray","signature":"uint refCount()","url":"/ddoc/phobos/std/uni/CowArray.refCount.html"},{"doc":"","kind":"method","module":"std.uni","name":"refCount","package":"phobos","parentType":"CowArray","signature":"void refCount(uint  cnt)","url":"/ddoc/phobos/std/uni/CowArray.refCount.html"},{"doc":"","kind":"method","module":"std.uni","name":"freeThisReference","package":"phobos","parentType":"CowArray","signature":"void freeThisReference()","url":"/ddoc/phobos/std/uni/CowArray.freeThisReference.html"},{"doc":"","kind":"method","module":"std.uni","name":"dupThisReference","package":"phobos","parentType":"CowArray","signature":"void dupThisReference(uint  count)","url":"/ddoc/phobos/std/uni/CowArray.dupThisReference.html"},{"doc":"","kind":"struct","module":"std.uni","name":"TrieBuilder","package":"phobos","parentType":"","signature":"TrieBuilder(Value,  Key,  Args...) if (isBitPackableType!Value &&  isValidArgsForTrie!(Key,  Args))","url":"/ddoc/phobos/std/uni.html#TrieBuilder"},{"doc":"","kind":"method","module":"std.uni","name":"deduceMaxIndex","package":"phobos","parentType":"TrieBuilder","signature":"static auto deduceMaxIndex(Preds...)()","url":"/ddoc/phobos/std/uni/TrieBuilder.deduceMaxIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"idx","package":"phobos","parentType":"TrieBuilder","signature":"@property ref idx(size_t level)(){","url":"/ddoc/phobos/std/uni/TrieBuilder.idx.html"},{"doc":"","kind":"method","module":"std.uni","name":"addValue","package":"phobos","parentType":"TrieBuilder","signature":"void addValue(size_t level,  T)(T val,  size_t numVals)","url":"/ddoc/phobos/std/uni/TrieBuilder.addValue.html"},{"doc":"","kind":"method","module":"std.uni","name":"spillToNextPage","package":"phobos","parentType":"TrieBuilder","signature":"void spillToNextPage(size_t level,  Slice)(ref  Slice ptr)","url":"/ddoc/phobos/std/uni/TrieBuilder.spillToNextPage.html"},{"doc":"","kind":"method","module":"std.uni","name":"spillToNextPageImpl","package":"phobos","parentType":"TrieBuilder","signature":"void spillToNextPageImpl(size_t level,  Slice)(ref  Slice ptr)","url":"/ddoc/phobos/std/uni/TrieBuilder.spillToNextPageImpl.html"},{"doc":"","kind":"method","module":"std.uni","name":"putAt","package":"phobos","parentType":"TrieBuilder","signature":"void putAt(size_t idx,  Value v)","url":"/ddoc/phobos/std/uni/TrieBuilder.putAt.html"},{"doc":"","kind":"method","module":"std.uni","name":"putRangeAt","package":"phobos","parentType":"TrieBuilder","signature":"void putRangeAt(size_t idxA,  size_t idxB,  Value v)","url":"/ddoc/phobos/std/uni/TrieBuilder.putRangeAt.html"},{"doc":"Put a value `v` into interval as mapped by keys from `a` to `b`. All slots prior to `a` are filled with the default filler.","kind":"method","module":"std.uni","name":"putRange","package":"phobos","parentType":"TrieBuilder","signature":"void putRange(Key a,  Key b,  Value v)","url":"/ddoc/phobos/std/uni/TrieBuilder.putRange.html"},{"doc":"Put a value `v` into slot mapped by `key`. All slots prior to `key` are filled with the default filler.","kind":"method","module":"std.uni","name":"putValue","package":"phobos","parentType":"TrieBuilder","signature":"void putValue(Key key,  Value v)","url":"/ddoc/phobos/std/uni/TrieBuilder.putValue.html"},{"doc":"Finishes construction of Trie, yielding an immutable Trie instance.","kind":"method","module":"std.uni","name":"build","package":"phobos","parentType":"TrieBuilder","signature":"auto build()","url":"/ddoc/phobos/std/uni/TrieBuilder.build.html"},{"doc":"$(P A generic Trie data-structure for a fixed number of stages. The design goal is optimal speed with smallest footprint size. ) $(P It's intention...","kind":"struct","module":"std.uni","name":"Trie","package":"phobos","parentType":"","signature":"Trie(Value,  Key,  Args...) if (isValidPrefixForTrie!(Key,  Args)\n     || (isValidPrefixForTrie!(Key,  Args[1..$])\n     &&  is(typeof(Args[0]) :  size_t)))","url":"/ddoc/phobos/std/uni.html#Trie"},{"doc":"$(P Lookup the `key` in this `Trie`. )","kind":"method","module":"std.uni","name":"opIndex","package":"phobos","parentType":"Trie","signature":"TypeOfBitPacked!Value opIndex()(Key key)","url":"/ddoc/phobos/std/uni/Trie.opIndex.html"},{"doc":"","kind":"method","module":"std.uni","name":"bytes","package":"phobos","parentType":"Trie","signature":"size_t bytes(size_t n = size_t.max)()","url":"/ddoc/phobos/std/uni/Trie.bytes.html"},{"doc":"","kind":"method","module":"std.uni","name":"pages","package":"phobos","parentType":"Trie","signature":"size_t pages(size_t n)()","url":"/ddoc/phobos/std/uni/Trie.pages.html"},{"doc":"","kind":"method","module":"std.uni","name":"store","package":"phobos","parentType":"Trie","signature":"void store(OutRange)(scope  OutRange sink) if (isOutputRange!(OutRange,  char))","url":"/ddoc/phobos/std/uni/Trie.store.html"},{"doc":"","kind":"struct","module":"std.uni","name":"clamp","package":"phobos","parentType":"","signature":"clamp(size_t bits)","url":"/ddoc/phobos/std/uni.html#clamp"},{"doc":"","kind":"method","module":"std.uni","name":"opCall","package":"phobos","parentType":"clamp","signature":"size_t opCall(T)(T arg){","url":"/ddoc/phobos/std/uni/clamp.opCall.html"},{"doc":"","kind":"struct","module":"std.uni","name":"clampIdx","package":"phobos","parentType":"","signature":"clampIdx(size_t idx,  size_t bits)","url":"/ddoc/phobos/std/uni.html#clampIdx"},{"doc":"","kind":"method","module":"std.uni","name":"opCall","package":"phobos","parentType":"clampIdx","signature":"size_t opCall(T)(T arg){","url":"/ddoc/phobos/std/uni/clampIdx.opCall.html"},{"doc":"Conceptual type that outlines the common properties of all UTF Matchers.","kind":"struct","module":"std.uni","name":"MatcherConcept","package":"phobos","parentType":"","signature":"MatcherConcept","url":"/ddoc/phobos/std/uni.html#MatcherConcept"},{"doc":"$(P Perform a semantic equivalent 2 operations: decoding a $(CODEPOINT) at front of `inp` and testing if it belongs to the set of $(CODEPOINTS) of ...","kind":"method","module":"std.uni","name":"match","package":"phobos","parentType":"MatcherConcept","signature":"bool match(Range)(ref  Range inp) if (isRandomAccessRange!Range &&  is(ElementType!Range :  char))","url":"/ddoc/phobos/std/uni/MatcherConcept.match.html"},{"doc":"ditto","kind":"method","module":"std.uni","name":"skip","package":"phobos","parentType":"MatcherConcept","signature":"bool skip(Range)(ref  Range inp) if (isRandomAccessRange!Range &&  is(ElementType!Range :  char))","url":"/ddoc/phobos/std/uni/MatcherConcept.skip.html"},{"doc":"ditto","kind":"method","module":"std.uni","name":"test","package":"phobos","parentType":"MatcherConcept","signature":"bool test(Range)(ref  Range inp) if (isRandomAccessRange!Range &&  is(ElementType!Range :  char))","url":"/ddoc/phobos/std/uni/MatcherConcept.test.html"},{"doc":"Advanced feature - provide direct access to a subset of matcher based a set of known encoding lengths. Lengths are provided in $(S_LINK Code unit, ...","kind":"method","module":"std.uni","name":"subMatcher","package":"phobos","parentType":"MatcherConcept","signature":"@property auto subMatcher(Lengths...)()","url":"/ddoc/phobos/std/uni/MatcherConcept.subMatcher.html"},{"doc":"","kind":"enum","module":"std.uni","name":"Mode","package":"phobos","parentType":"","signature":"Mode","url":"/ddoc/phobos/std/uni.html#Mode"},{"doc":"","kind":"enum_member","module":"std.uni","name":"alwaysSkip","package":"phobos","parentType":"","signature":"alwaysSkip = ","url":"/ddoc/phobos/std/uni.html#Mode"},{"doc":"","kind":"enum_member","module":"std.uni","name":"neverSkip","package":"phobos","parentType":"","signature":"neverSkip = ","url":"/ddoc/phobos/std/uni.html#Mode"},{"doc":"","kind":"enum_member","module":"std.uni","name":"skipOnMatch","package":"phobos","parentType":"","signature":"skipOnMatch = ","url":"/ddoc/phobos/std/uni.html#Mode"},{"doc":"$(P Opaque wrapper around unsigned built-in integers and code unit (char/wchar/dchar) types. Parameter `sz` indicates that the value is confined to...","kind":"struct","module":"std.uni","name":"BitPacked","package":"phobos","parentType":"","signature":"BitPacked(T,  size_t sz) if (isIntegral!T ||  is(T: dchar))","url":"/ddoc/phobos/std/uni.html#BitPacked"},{"doc":"","kind":"struct","module":"std.uni","name":"assumeSize","package":"phobos","parentType":"","signature":"assumeSize(alias  Fn,  size_t bits)","url":"/ddoc/phobos/std/uni.html#assumeSize"},{"doc":"","kind":"method","module":"std.uni","name":"opCall","package":"phobos","parentType":"assumeSize","signature":"static auto ref opCall(T)(auto  ref  T arg)","url":"/ddoc/phobos/std/uni/assumeSize.opCall.html"},{"doc":"","kind":"struct","module":"std.uni","name":"sliceBits","package":"phobos","parentType":"","signature":"sliceBits(size_t from,  size_t to)","url":"/ddoc/phobos/std/uni.html#sliceBits"},{"doc":"","kind":"method","module":"std.uni","name":"opCall","package":"phobos","parentType":"sliceBits","signature":"static auto opCall(T)(T x)","url":"/ddoc/phobos/std/uni/sliceBits.opCall.html"},{"doc":"","kind":"alias","module":"std.uni","name":"lo8","package":"phobos","parentType":"","signature":"lo8 = assumeSize!(low_8,  8)","url":"/ddoc/phobos/std/uni.html#lo8"},{"doc":"","kind":"alias","module":"std.uni","name":"mlo8","package":"phobos","parentType":"","signature":"mlo8 = assumeSize!(midlow_8,  8)","url":"/ddoc/phobos/std/uni.html#mlo8"},{"doc":"","kind":"struct","module":"std.uni","name":"DecompressedIntervals","package":"phobos","parentType":"","signature":"DecompressedIntervals","url":"/ddoc/phobos/std/uni.html#DecompressedIntervals"},{"doc":"","kind":"method","module":"std.uni","name":"front","package":"phobos","parentType":"DecompressedIntervals","signature":"CodepointInterval front()","url":"/ddoc/phobos/std/uni/DecompressedIntervals.front.html"},{"doc":"","kind":"method","module":"std.uni","name":"popFront","package":"phobos","parentType":"DecompressedIntervals","signature":"void popFront()","url":"/ddoc/phobos/std/uni/DecompressedIntervals.popFront.html"},{"doc":"","kind":"method","module":"std.uni","name":"empty","package":"phobos","parentType":"DecompressedIntervals","signature":"bool empty()","url":"/ddoc/phobos/std/uni/DecompressedIntervals.empty.html"},{"doc":"","kind":"method","module":"std.uni","name":"save","package":"phobos","parentType":"DecompressedIntervals","signature":"DecompressedIntervals save()","url":"/ddoc/phobos/std/uni/DecompressedIntervals.save.html"},{"doc":"","kind":"template","module":"std.uni","name":"isBitPackableType","package":"phobos","parentType":"","signature":"isBitPackableType(T)","url":"/ddoc/phobos/std/uni.html#isBitPackableType"},{"doc":"","kind":"template","module":"std.uni","name":"PackedArrayView","package":"phobos","parentType":"","signature":"PackedArrayView(T)","url":"/ddoc/phobos/std/uni.html#PackedArrayView"},{"doc":"","kind":"template","module":"std.uni","name":"PackedPtr","package":"phobos","parentType":"","signature":"PackedPtr(T)","url":"/ddoc/phobos/std/uni.html#PackedPtr"},{"doc":"","kind":"template","module":"std.uni","name":"sharMethod","package":"phobos","parentType":"","signature":"sharMethod(alias  uniLowerBound)","url":"/ddoc/phobos/std/uni.html#sharMethod"},{"doc":"","kind":"function","module":"std.uni","name":"sharMethod","package":"phobos","parentType":"","signature":"size_t sharMethod(alias  _pred = \"a<b\",  Range,  T)(Range range,  T needle) if (is(T :  ElementType!Range))","url":"/ddoc/phobos/std/uni.html#sharMethod"},{"doc":"Tests if T is some kind a set of code points. Intended for template constraints.","kind":"template","module":"std.uni","name":"isCodepointSet","package":"phobos","parentType":"","signature":"isCodepointSet(T)","url":"/ddoc/phobos/std/uni.html#isCodepointSet"},{"doc":"Tests if `T` is a pair of integers that implicitly convert to `V`. The following code must compile for any pair `T`: --- (T x){ V a = x[0]; V b = x...","kind":"template","module":"std.uni","name":"isIntegralPair","package":"phobos","parentType":"","signature":"isIntegralPair(T,  V = uint)","url":"/ddoc/phobos/std/uni.html#isIntegralPair"},{"doc":"Maps `Key` to a suitable integer index within the range of `size_t`. The mapping is constructed by applying predicates from `Prefix` left to right ...","kind":"template","module":"std.uni","name":"mapTrieIndex","package":"phobos","parentType":"","signature":"mapTrieIndex(Prefix...)","url":"/ddoc/phobos/std/uni.html#mapTrieIndex"},{"doc":"","kind":"function","module":"std.uni","name":"mapTrieIndex","package":"phobos","parentType":"","signature":"size_t mapTrieIndex(Key)(Key key) if (isValidPrefixForTrie!(Key,  Prefix))","url":"/ddoc/phobos/std/uni.html#mapTrieIndex"},{"doc":"","kind":"template","module":"std.uni","name":"GetBitSlicing","package":"phobos","parentType":"","signature":"GetBitSlicing(size_t top,  sizes...)","url":"/ddoc/phobos/std/uni.html#GetBitSlicing"},{"doc":"","kind":"template","module":"std.uni","name":"callableWith","package":"phobos","parentType":"","signature":"callableWith(T)","url":"/ddoc/phobos/std/uni.html#callableWith"},{"doc":"","kind":"template","module":"std.uni","name":"isValidPrefixForTrie","package":"phobos","parentType":"","signature":"isValidPrefixForTrie(Key,  Prefix...)","url":"/ddoc/phobos/std/uni.html#isValidPrefixForTrie"},{"doc":"","kind":"template","module":"std.uni","name":"isValidArgsForTrie","package":"phobos","parentType":"","signature":"isValidArgsForTrie(Key,  Args...)","url":"/ddoc/phobos/std/uni.html#isValidArgsForTrie"},{"doc":"A shorthand for creating a custom multi-level fixed Trie from a `CodepointSet`. `sizes` are numbers of bits per level, with the most significant bi...","kind":"template","module":"std.uni","name":"codepointSetTrie","package":"phobos","parentType":"","signature":"codepointSetTrie(sizes...)","url":"/ddoc/phobos/std/uni.html#codepointSetTrie"},{"doc":"","kind":"function","module":"std.uni","name":"codepointSetTrie","package":"phobos","parentType":"","signature":"auto codepointSetTrie(Set)(Set set) if (isCodepointSet!Set)","url":"/ddoc/phobos/std/uni.html#codepointSetTrie"},{"doc":"Type of Trie generated by codepointSetTrie function.","kind":"template","module":"std.uni","name":"CodepointSetTrie","package":"phobos","parentType":"","signature":"CodepointSetTrie(sizes...)","url":"/ddoc/phobos/std/uni.html#CodepointSetTrie"},{"doc":"A slightly more general tool for building fixed `Trie` for the Unicode data.","kind":"template","module":"std.uni","name":"codepointTrie","package":"phobos","parentType":"","signature":"codepointTrie(T,  sizes...)","url":"/ddoc/phobos/std/uni.html#codepointTrie"},{"doc":"","kind":"function","module":"std.uni","name":"codepointTrie","package":"phobos","parentType":"","signature":"auto codepointTrie()(T[dchar]  map,  T defValue = T.init)","url":"/ddoc/phobos/std/uni.html#codepointTrie"},{"doc":"","kind":"function","module":"std.uni","name":"codepointTrie","package":"phobos","parentType":"","signature":"auto codepointTrie(R)(R range,  T defValue = T.init) if (isInputRange!R\n        &&  is(typeof(ElementType!R.init[0]) :  T)\n         &&  is(typeof(ElementType!R.init[1]) :  dchar))","url":"/ddoc/phobos/std/uni.html#codepointTrie"},{"doc":"ditto","kind":"template","module":"std.uni","name":"CodepointTrie","package":"phobos","parentType":"","signature":"CodepointTrie(T,  sizes...)","url":"/ddoc/phobos/std/uni.html#CodepointTrie"},{"doc":"","kind":"template","module":"std.uni","name":"cmpK0","package":"phobos","parentType":"","signature":"cmpK0(alias  Pred)","url":"/ddoc/phobos/std/uni.html#cmpK0"},{"doc":"","kind":"function","module":"std.uni","name":"cmpK0","package":"phobos","parentType":"","signature":"bool cmpK0(Value,  Key)(Tuple!(Value,  Key)  a,  Tuple!(Value,  Key)  b)","url":"/ddoc/phobos/std/uni.html#cmpK0"},{"doc":"The most general utility for construction of `Trie`s short of using `TrieBuilder` directly.","kind":"template","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"buildTrie(Value,  Key,  Args...)","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie(Range)(Range range,  Value filler = Value.init) if (isInputRange!Range &&  is(typeof(Range.init.front[0]) :  Value)\n         &&  is(typeof(Range.init.front[1]) :  Key))","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie(Range)(Range range,  Value filler = Value.init) if (is(TypeOfBitPacked!Value ==   bool)\n         &&  isInputRange!Range &&  is(typeof(Range.init.front[0]) :  Key)\n         &&  is(typeof(Range.init.front[1]) :  Key))","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie(Range)(Range range,  Value filler,  bool  unsorted) if (isInputRange!Range\n        &&  is(typeof(Range.init.front[0]) :  Value)\n         &&  is(typeof(Range.init.front[1]) :  Key))","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie(Range)(Range range,  Value filler = Value.init) if (is(TypeOfBitPacked!Value ==   bool)\n         &&  isInputRange!Range &&  is(typeof(Range.init.front) :  Key))","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie()(Value[]  array,  Value filler = Value.init) if (isUnsigned!Key)","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"function","module":"std.uni","name":"buildTrie","package":"phobos","parentType":"","signature":"auto buildTrie(Key,  Value)(Value[Key]  map,  Value filler = Value.init)","url":"/ddoc/phobos/std/uni.html#buildTrie"},{"doc":"","kind":"template","module":"std.uni","name":"Utf8Matcher","package":"phobos","parentType":"","signature":"Utf8Matcher()","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"badEncoding","package":"phobos","parentType":"","signature":"void badEncoding()","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"truncate","package":"phobos","parentType":"","signature":"char truncate()(char  ch)","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"encode","package":"phobos","parentType":"","signature":"static auto encode(size_t sz)(dchar  ch) if (sz >  1)","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"build","package":"phobos","parentType":"","signature":"auto build(Set)(Set set)","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"struct","module":"std.uni","name":"Impl","package":"phobos","parentType":"","signature":"Impl(Sizes...)","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"struct","module":"std.uni","name":"CherryPick","package":"phobos","parentType":"","signature":"CherryPick(I,  Sizes...)","url":"/ddoc/phobos/std/uni.html#Utf8Matcher"},{"doc":"","kind":"template","module":"std.uni","name":"Utf16Matcher","package":"phobos","parentType":"","signature":"Utf16Matcher()","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"badEncoding","package":"phobos","parentType":"","signature":"void badEncoding()","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"encode2","package":"phobos","parentType":"","signature":"auto encode2(dchar  ch)","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"function","module":"std.uni","name":"build","package":"phobos","parentType":"","signature":"auto build(Set)(Set set)","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"struct","module":"std.uni","name":"Impl","package":"phobos","parentType":"","signature":"Impl(Sizes...) if (Sizes.length >=  1 &&  Sizes.length <=  2)","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"struct","module":"std.uni","name":"CherryPick","package":"phobos","parentType":"","signature":"CherryPick(I,  Sizes...) if (Sizes.length >=  1 &&  Sizes.length <=  2)","url":"/ddoc/phobos/std/uni.html#Utf16Matcher"},{"doc":"","kind":"template","module":"std.uni","name":"bitSizeOf","package":"phobos","parentType":"","signature":"bitSizeOf(Args...)","url":"/ddoc/phobos/std/uni.html#bitSizeOf"},{"doc":"Tests if `T` is some instantiation of $(LREF BitPacked)!(U, x) and thus suitable for packing.","kind":"template","module":"std.uni","name":"isBitPacked","package":"phobos","parentType":"","signature":"isBitPacked(T)","url":"/ddoc/phobos/std/uni.html#isBitPacked"},{"doc":"Gives the type `U` from $(LREF BitPacked)!(U, x) or `T` itself for every other type.","kind":"template","module":"std.uni","name":"TypeOfBitPacked","package":"phobos","parentType":"","signature":"TypeOfBitPacked(T)","url":"/ddoc/phobos/std/uni.html#TypeOfBitPacked"},{"doc":"","kind":"template","module":"std.uni","name":"Sequence","package":"phobos","parentType":"","signature":"Sequence(size_t start,  size_t end)","url":"/ddoc/phobos/std/uni.html#Sequence"},{"doc":"","kind":"template","module":"std.uni","name":"useItemAt","package":"phobos","parentType":"","signature":"useItemAt(size_t idx,  T)","url":"/ddoc/phobos/std/uni.html#useItemAt"},{"doc":"","kind":"function","module":"std.uni","name":"impl","package":"phobos","parentType":"","signature":"size_t impl(const  scope  T[]  arr){","url":"/ddoc/phobos/std/uni.html#useItemAt"},{"doc":"","kind":"template","module":"std.uni","name":"useLastItem","package":"phobos","parentType":"","signature":"useLastItem(T)","url":"/ddoc/phobos/std/uni.html#useLastItem"},{"doc":"","kind":"function","module":"std.uni","name":"impl","package":"phobos","parentType":"","signature":"size_t impl(const  scope  T[]  arr){","url":"/ddoc/phobos/std/uni.html#useLastItem"},{"doc":"","kind":"template","module":"std.uni","name":"fullBitSize","package":"phobos","parentType":"","signature":"fullBitSize(Prefix...)","url":"/ddoc/phobos/std/uni.html#fullBitSize"},{"doc":"","kind":"template","module":"std.uni","name":"idxTypes","package":"phobos","parentType":"","signature":"idxTypes(Key,  size_t fullBits,  Prefix...)","url":"/ddoc/phobos/std/uni.html#idxTypes"},{"doc":"","kind":"variable","module":"std.uni","name":"lineSep","package":"phobos","parentType":"","signature":"dchar lineSep","url":"/ddoc/phobos/std/uni.html#lineSep"},{"doc":"","kind":"variable","module":"std.uni","name":"paraSep","package":"phobos","parentType":"","signature":"dchar paraSep","url":"/ddoc/phobos/std/uni.html#paraSep"},{"doc":"","kind":"variable","module":"std.uni","name":"nelSep","package":"phobos","parentType":"","signature":"dchar nelSep","url":"/ddoc/phobos/std/uni.html#nelSep"},{"doc":"","kind":"variable","module":"std.uni","name":"lastDchar","package":"phobos","parentType":"","signature":"lastDchar","url":"/ddoc/phobos/std/uni.html#lastDchar"},{"doc":"Encode and decode Uniform Resource Identifiers (URIs). URIs are used in internet transfer protocols. Valid URI characters consist of letters, digit...","kind":"module","module":"std.uri","name":"std.uri","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/uri.html"},{"doc":"","kind":"function","module":"std.uri","name":"URI_Encode","package":"phobos","parentType":"","signature":"string URI_Encode(dstring str,  uint  unescapedSet)","url":"/ddoc/phobos/std/uri/URI_Encode.html"},{"doc":"","kind":"function","module":"std.uri","name":"ascii2hex","package":"phobos","parentType":"","signature":"uint ascii2hex(dchar  c)","url":"/ddoc/phobos/std/uri/ascii2hex.html"},{"doc":"","kind":"function","module":"std.uri","name":"URI_Decode","package":"phobos","parentType":"","signature":"dstring URI_Decode(Char)(scope  const(Char)[]  uri,  uint  reservedSet) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/URI_Decode.html"},{"doc":"Decodes the URI string encodedURI into a UTF-8 string and returns it. Escape sequences that resolve to reserved URI characters are not replaced. Es...","kind":"function","module":"std.uri","name":"decode","package":"phobos","parentType":"","signature":"string decode(Char)(scope  const(Char)[]  encodedURI) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/decode.html"},{"doc":"Decodes the URI string encodedURI into a UTF-8 string and returns it. All escape sequences are decoded.","kind":"function","module":"std.uri","name":"decodeComponent","package":"phobos","parentType":"","signature":"string decodeComponent(Char)(scope  const(Char)[]  encodedURIComponent) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/decodeComponent.html"},{"doc":"Encodes the UTF-8 string uri into a URI and returns that URI. Any character not a valid URI character is escaped. The '#' character is not escaped.","kind":"function","module":"std.uri","name":"encode","package":"phobos","parentType":"","signature":"string encode(Char)(scope  const(Char)[]  uri) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/encode.html"},{"doc":"Encodes the UTF-8 string uriComponent into a URI and returns that URI. Any character not a letter, digit, or one of -_.!~*'() is escaped.","kind":"function","module":"std.uri","name":"encodeComponent","package":"phobos","parentType":"","signature":"string encodeComponent(Char)(scope  const(Char)[]  uriComponent) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/encodeComponent.html"},{"doc":"","kind":"function","module":"std.uri","name":"urlEncode","package":"phobos","parentType":"","signature":"string urlEncode(scope  string[string]  values)","url":"/ddoc/phobos/std/uri/urlEncode.html"},{"doc":"Does string s[] start with a URL? Returns: -1   it does not len  it does, and s[0 .. len] is the slice of s[] that is that URL","kind":"function","module":"std.uri","name":"uriLength","package":"phobos","parentType":"","signature":"ptrdiff_t uriLength(Char)(scope  const(Char)[]  s) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/uriLength.html"},{"doc":"Does string s[] start with an email address? Returns: -1    it does not len   it does, and s[0 .. i] is the slice of s[] that is that email address...","kind":"function","module":"std.uri","name":"emailLength","package":"phobos","parentType":"","signature":"ptrdiff_t emailLength(Char)(scope  const(Char)[]  s) if (isSomeChar!Char)","url":"/ddoc/phobos/std/uri/emailLength.html"},{"doc":"This Exception is thrown if something goes wrong when encoding or decoding a URI.","kind":"class","module":"std.uri","name":"URIException","package":"phobos","parentType":"","signature":"URIException : Exception","url":"/ddoc/phobos/std/uri.html#URIException"},{"doc":"","kind":"variable","module":"std.uri","name":"hex2ascii","package":"phobos","parentType":"","signature":"char[16] hex2ascii","url":"/ddoc/phobos/std/uri.html#hex2ascii"},{"doc":"","kind":"variable","module":"std.uri","name":"uri_flags","package":"phobos","parentType":"","signature":"ubyte[128] uri_flags","url":"/ddoc/phobos/std/uri.html#uri_flags"},{"doc":"Encode and decode UTF-8, UTF-16 and UTF-32 strings.","kind":"module","module":"std.utf","name":"std.utf","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/utf.html"},{"doc":"","kind":"function","module":"std.utf","name":"invalidUTFstrings","package":"phobos","parentType":"","signature":"auto invalidUTFstrings(Char)() if (isSomeChar!Char)","url":"/ddoc/phobos/std/utf/invalidUTFstrings.html"},{"doc":"Check whether the given Unicode code point is valid.","kind":"function","module":"std.utf","name":"isValidDchar","package":"phobos","parentType":"","signature":"bool isValidDchar(dchar  c)","url":"/ddoc/phobos/std/utf/isValidDchar.html"},{"doc":"Checks if a single character forms a valid code point.","kind":"function","module":"std.utf","name":"isValidCodepoint","package":"phobos","parentType":"","signature":"bool isValidCodepoint(Char)(Char c) if (isSomeChar!Char)","url":"/ddoc/phobos/std/utf/isValidCodepoint.html"},{"doc":"Calculate the length of the UTF sequence starting at `index` in `str`.","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str,  size_t index) if (is(S :  const  char[])  ||\n    (isRandomAccessRange!S &&  is(immutable  ElementType!S ==  immutable  char)))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str) if (is(S :  const  char[])  ||\n    (isInputRange!S &&  is(immutable  ElementType!S ==  immutable  char)))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str,  size_t index) if (is(S :  const  wchar[])  ||\n    (isRandomAccessRange!S &&  is(immutable  ElementType!S ==  immutable  wchar)))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str) if (is(S :  const  wchar[]))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str) if (isInputRange!S &&  is(immutable  ElementType!S ==  immutable  wchar)  &&\n    !is(S :  const  wchar[]))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"stride","package":"phobos","parentType":"","signature":"uint stride(S)(auto  ref  S str,  size_t index =  0) if (is(S :  const  dchar[])  ||\n    (isInputRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  dchar)))","url":"/ddoc/phobos/std/utf/stride.html"},{"doc":"","kind":"function","module":"std.utf","name":"strideImpl","package":"phobos","parentType":"","signature":"uint strideImpl(char  c,  size_t index)","url":"/ddoc/phobos/std/utf/strideImpl.html"},{"doc":"Calculate the length of the UTF sequence ending one code unit before `index` in `str`.","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str,  size_t index) if (is(S :  const  char[])  ||\n    (isRandomAccessRange!S &&  is(immutable  ElementType!S ==  immutable  char)))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str) if (is(S :  const  char[])  ||\n    (isRandomAccessRange!S &&  hasLength!S &&  is(immutable  ElementType!S ==  immutable  char)))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str) if (isBidirectionalRange!S &&  is(immutable  ElementType!S ==  immutable  char)  && !isRandomAccessRange!S)","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str,  size_t index) if (is(S :  const  wchar[])  ||\n    (isRandomAccessRange!S &&  is(immutable  ElementType!S ==  immutable  wchar)))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str) if (is(S :  const  wchar[])  ||\n    (isBidirectionalRange!S &&  is(immutable  ElementType!S ==  immutable  wchar)))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str,  size_t index) if (isRandomAccessRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  dchar))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"strideBack","package":"phobos","parentType":"","signature":"uint strideBack(S)(auto  ref  S str) if (isBidirectionalRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  dchar))","url":"/ddoc/phobos/std/utf/strideBack.html"},{"doc":"Given `index` into `str` and assuming that `index` is at the start of a UTF sequence, `toUCSindex` determines the number of UCS characters up to `i...","kind":"function","module":"std.utf","name":"toUCSindex","package":"phobos","parentType":"","signature":"size_t toUCSindex(C)(const(C)[]  str,  size_t index) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/toUCSindex.html"},{"doc":"Given a UCS index `n` into `str`, returns the UTF index. So, `n` is how many code points into the string the code point is, and the array index of ...","kind":"function","module":"std.utf","name":"toUTFindex","package":"phobos","parentType":"","signature":"size_t toUTFindex(C)(const(C)[]  str,  size_t n) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/toUTFindex.html"},{"doc":"Decodes and returns the code point starting at `str[index]`. `index` is advanced to one past the decoded code point. If the code point is not well-...","kind":"function","module":"std.utf","name":"decode","package":"phobos","parentType":"","signature":"dchar decode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(auto  ref  S str,  ref  size_t index) if (!isSomeString!S &&\n     isRandomAccessRange!S &&  hasSlicing!S &&  hasLength!S &&  isSomeChar!(ElementType!S))","url":"/ddoc/phobos/std/utf/decode.html"},{"doc":"ditto","kind":"function","module":"std.utf","name":"decode","package":"phobos","parentType":"","signature":"dchar decode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n auto  ref  scope  S str,  ref  size_t index) if (isSomeString!S)","url":"/ddoc/phobos/std/utf/decode.html"},{"doc":"`decodeFront` is a variant of $(LREF decode) which specifically decodes the first code point. Unlike $(LREF decode), `decodeFront` accepts any $(RE...","kind":"function","module":"std.utf","name":"decodeFront","package":"phobos","parentType":"","signature":"dchar decodeFront(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n ref  S str,  out  size_t numCodeUnits) if (!isSomeString!S &&  isInputRange!S &&  isSomeChar!(ElementType!S))","url":"/ddoc/phobos/std/utf/decodeFront.html"},{"doc":"ditto","kind":"function","module":"std.utf","name":"decodeFront","package":"phobos","parentType":"","signature":"dchar decodeFront(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n ref  scope  S str,  out  size_t numCodeUnits) if (isSomeString!S)","url":"/ddoc/phobos/std/utf/decodeFront.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"decodeFront","package":"phobos","parentType":"","signature":"dchar decodeFront(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(ref  S str) if (isInputRange!S &&  isSomeChar!(ElementType!S))","url":"/ddoc/phobos/std/utf/decodeFront.html"},{"doc":"`decodeBack` is a variant of $(LREF decode) which specifically decodes the last code point. Unlike $(LREF decode), `decodeBack` accepts any bidirec...","kind":"function","module":"std.utf","name":"decodeBack","package":"phobos","parentType":"","signature":"dchar decodeBack(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n     ref  S str,  out  size_t numCodeUnits) if (isSomeString!S)","url":"/ddoc/phobos/std/utf/decodeBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"decodeBack","package":"phobos","parentType":"","signature":"dchar decodeBack(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n     ref  S str,  out  size_t numCodeUnits) if (!isSomeString!S &&  isSomeChar!(ElementType!S)  &&  isBidirectionalRange!S\n    && ((isRandomAccessRange!S &&  hasLength!S)  || !isRandomAccessRange!S))","url":"/ddoc/phobos/std/utf/decodeBack.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"decodeBack","package":"phobos","parentType":"","signature":"dchar decodeBack(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(ref  S str) if (isSomeString!S\n    || (isRandomAccessRange!S &&  hasLength!S &&  isSomeChar!(ElementType!S))\n     || (!isRandomAccessRange!S &&  isBidirectionalRange!S &&  isSomeChar!(ElementType!S)))","url":"/ddoc/phobos/std/utf/decodeBack.html"},{"doc":"","kind":"function","module":"std.utf","name":"decodeImpl","package":"phobos","parentType":"","signature":"dchar decodeImpl(bool  canIndex,  UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n     auto  ref  S str,  ref  size_t index) if (\n     is(S :  const  char[])  || (isInputRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  char)))","url":"/ddoc/phobos/std/utf/decodeImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"decodeImpl","package":"phobos","parentType":"","signature":"dchar decodeImpl(bool  canIndex,  UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(auto  ref  S str,  ref  size_t index) if (is(S :  const  wchar[])  || (isInputRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  wchar)))","url":"/ddoc/phobos/std/utf/decodeImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"decodeImpl","package":"phobos","parentType":"","signature":"dchar decodeImpl(bool  canIndex,  UseReplacementDchar useReplacementDchar =  No.useReplacementDchar,  S)(\n     auto  ref  S str,  ref  size_t index) if (is(S :  const  dchar[])  || (isInputRange!S &&  is(immutable  ElementEncodingType!S ==  immutable  dchar)))","url":"/ddoc/phobos/std/utf/decodeImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"_utfException","package":"phobos","parentType":"","signature":"dchar _utfException(UseReplacementDchar useReplacementDchar)(string msg,  dchar  c)","url":"/ddoc/phobos/std/utf/_utfException.html"},{"doc":"Encodes `c` into the static array, `buf`, and returns the actual length of the encoded character (a number between `1` and `4` for `char[4]` buffer...","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     out  char[4]  buf,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     out  wchar[2]  buf,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"Ditto","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"size_t encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     out  dchar[1]  buf,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"Encodes `c` in `str`'s encoding and appends it to `str`.","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"void encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     ref  scope  char[]  str,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"ditto","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"void encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     ref  scope  wchar[]  str,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"ditto","kind":"function","module":"std.utf","name":"encode","package":"phobos","parentType":"","signature":"void encode(UseReplacementDchar useReplacementDchar =  No.useReplacementDchar)(\n     ref  scope  dchar[]  str,  dchar  c)","url":"/ddoc/phobos/std/utf/encode.html"},{"doc":"Returns the number of code units that are required to encode the code point `c` when `C` is the character type used to encode it.","kind":"function","module":"std.utf","name":"codeLength","package":"phobos","parentType":"","signature":"ubyte codeLength(C)(dchar  c) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/codeLength.html"},{"doc":"Returns the number of code units that are required to encode `str` in a string whose character type is `C`. This is particularly useful when slicin...","kind":"function","module":"std.utf","name":"codeLength","package":"phobos","parentType":"","signature":"size_t codeLength(C,  InputRange)(InputRange input) if (isSomeFiniteCharInputRange!InputRange)","url":"/ddoc/phobos/std/utf/codeLength.html"},{"doc":"","kind":"function","module":"std.utf","name":"canSearchInCodeUnits","package":"phobos","parentType":"","signature":"bool canSearchInCodeUnits(C)(dchar  c) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/canSearchInCodeUnits.html"},{"doc":"Checks to see if `str` is well-formed unicode or not.","kind":"function","module":"std.utf","name":"validate","package":"phobos","parentType":"","signature":"void validate(S)(in  S str) if (isSomeString!S)","url":"/ddoc/phobos/std/utf/validate.html"},{"doc":"Encodes the elements of `s` to UTF-8 and returns a newly allocated string of the elements.","kind":"function","module":"std.utf","name":"toUTF8","package":"phobos","parentType":"","signature":"string toUTF8(S)(S s) if (isSomeFiniteCharInputRange!S)","url":"/ddoc/phobos/std/utf/toUTF8.html"},{"doc":"Encodes the elements of `s` to UTF-16 and returns a newly GC allocated `wstring` of the elements.","kind":"function","module":"std.utf","name":"toUTF16","package":"phobos","parentType":"","signature":"wstring toUTF16(S)(S s) if (isSomeFiniteCharInputRange!S)","url":"/ddoc/phobos/std/utf/toUTF16.html"},{"doc":"Encodes the elements of `s` to UTF-32 and returns a newly GC allocated `dstring` of the elements.","kind":"function","module":"std.utf","name":"toUTF32","package":"phobos","parentType":"","signature":"dstring toUTF32(S)(scope  S s) if (isSomeFiniteCharInputRange!S)","url":"/ddoc/phobos/std/utf/toUTF32.html"},{"doc":"","kind":"function","module":"std.utf","name":"toUTFImpl","package":"phobos","parentType":"","signature":"T toUTFImpl(T,  S)(scope  S s)","url":"/ddoc/phobos/std/utf/toUTFImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"toUTFzImpl","package":"phobos","parentType":"","signature":"P toUTFzImpl(P,  S)(return  scope  S str) if (is(immutable  typeof(* P.init)  ==  typeof(str[0])))","url":"/ddoc/phobos/std/utf/toUTFzImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"toUTFzImpl","package":"phobos","parentType":"","signature":"P toUTFzImpl(P,  S)(return  scope  S str) if (is(typeof(str[0])  C)  &&  is(immutable  typeof(* P.init)  ==  immutable  C)  && !is(C ==  immutable))","url":"/ddoc/phobos/std/utf/toUTFzImpl.html"},{"doc":"","kind":"function","module":"std.utf","name":"toUTFzImpl","package":"phobos","parentType":"","signature":"P toUTFzImpl(P,  S)(S str) if (!is(immutable  typeof(* P.init)  ==  immutable  typeof(str[0])))","url":"/ddoc/phobos/std/utf/toUTFzImpl.html"},{"doc":"`toUTF16z` is a convenience function for `toUTFz!(const(wchar)*)`.","kind":"function","module":"std.utf","name":"toUTF16z","package":"phobos","parentType":"","signature":"const(wchar) * toUTF16z(C)(const(C)[]  str) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/toUTF16z.html"},{"doc":"Returns the total number of code points encoded in `str`.","kind":"function","module":"std.utf","name":"count","package":"phobos","parentType":"","signature":"size_t count(C)(const(C)[]  str) if (isSomeChar!C)","url":"/ddoc/phobos/std/utf/count.html"},{"doc":"Iterate a range of char, wchar, or dchars by code unit.","kind":"function","module":"std.utf","name":"byCodeUnit","package":"phobos","parentType":"","signature":"auto byCodeUnit(R)(R r) if ((isConvertibleToString!R && !isStaticArray!R)  ||\n    (isInputRange!R &&  isSomeChar!(ElementEncodingType!R)))","url":"/ddoc/phobos/std/utf/byCodeUnit.html"},{"doc":"Exception thrown on errors in std.utf functions.","kind":"class","module":"std.utf","name":"UTFException","package":"phobos","parentType":"","signature":"UTFException : UnicodeException","url":"/ddoc/phobos/std/utf.html#UTFException"},{"doc":"","kind":"method","module":"std.utf","name":"setSequence","package":"phobos","parentType":"UTFException","signature":"UTFException setSequence(scope  uint[]  data...)","url":"/ddoc/phobos/std/utf/UTFException.setSequence.html"},{"doc":"Returns: A `string` detailing the invalid UTF sequence.","kind":"method","module":"std.utf","name":"toString","package":"phobos","parentType":"UTFException","signature":"string toString()","url":"/ddoc/phobos/std/utf/UTFException.toString.html"},{"doc":"Whether or not to replace invalid UTF with $(LREF replacementDchar)","kind":"alias","module":"std.utf","name":"UseReplacementDchar","package":"phobos","parentType":"","signature":"UseReplacementDchar = Flag!\"useReplacementDchar\"","url":"/ddoc/phobos/std/utf.html#UseReplacementDchar"},{"doc":"Iterate an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) of characters by char, wchar, or dchar. These aliases simply forward to $...","kind":"alias","module":"std.utf","name":"byChar","package":"phobos","parentType":"","signature":"byChar = byUTF!char","url":"/ddoc/phobos/std/utf.html#byChar"},{"doc":"Ditto","kind":"alias","module":"std.utf","name":"byWchar","package":"phobos","parentType":"","signature":"byWchar = byUTF!wchar","url":"/ddoc/phobos/std/utf.html#byWchar"},{"doc":"Ditto","kind":"alias","module":"std.utf","name":"byDchar","package":"phobos","parentType":"","signature":"byDchar = byUTF!dchar","url":"/ddoc/phobos/std/utf.html#byDchar"},{"doc":"","kind":"template","module":"std.utf","name":"codeUnitLimit","package":"phobos","parentType":"","signature":"codeUnitLimit(S)","url":"/ddoc/phobos/std/utf.html#codeUnitLimit"},{"doc":"Returns a C-style zero-terminated string equivalent to `str`. `str` must not contain embedded `'\\0'`'s as any C function will treat the first `'\\0'...","kind":"template","module":"std.utf","name":"toUTFz","package":"phobos","parentType":"","signature":"toUTFz(P)","url":"/ddoc/phobos/std/utf.html#toUTFz"},{"doc":"","kind":"function","module":"std.utf","name":"toUTFz","package":"phobos","parentType":"","signature":"P toUTFz(S)(S str) if (isSomeString!S)","url":"/ddoc/phobos/std/utf.html#toUTFz"},{"doc":"Iterate an $(REF_ALTTEXT input range, isInputRange, std,range,primitives) of characters by char type `C` by encoding the elements of the range.","kind":"template","module":"std.utf","name":"byUTF","package":"phobos","parentType":"","signature":"byUTF(C,  UseReplacementDchar useReplacementDchar =  Yes.useReplacementDchar)","url":"/ddoc/phobos/std/utf.html#byUTF"},{"doc":"Inserted in place of invalid UTF sequences.","kind":"variable","module":"std.utf","name":"replacementDchar","package":"phobos","parentType":"","signature":"dchar replacementDchar","url":"/ddoc/phobos/std/utf.html#replacementDchar"},{"doc":"* A $(LINK2 http://en.wikipedia.org/wiki/Universally_unique_identifier, UUID), or * $(LINK2 http://en.wikipedia.org/wiki/Universally_unique_identif...","kind":"module","module":"std.uuid","name":"std.uuid","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/uuid.html"},{"doc":"This function generates a name based (Version 3) UUID from a namespace UUID and a name. If no namespace UUID was passed, the empty UUID `UUID.init`...","kind":"function","module":"std.uuid","name":"md5UUID","package":"phobos","parentType":"","signature":"UUID md5UUID(const(char[])  name,  const  UUID namespace =  UUID.init)","url":"/ddoc/phobos/std/uuid/md5UUID.html"},{"doc":"ditto","kind":"function","module":"std.uuid","name":"md5UUID","package":"phobos","parentType":"","signature":"UUID md5UUID(const(ubyte[])  data,  const  UUID namespace =  UUID.init)","url":"/ddoc/phobos/std/uuid/md5UUID.html"},{"doc":"This function generates a name based (Version 5) UUID from a namespace UUID and a name. If no namespace UUID was passed, the empty UUID `UUID.init`...","kind":"function","module":"std.uuid","name":"sha1UUID","package":"phobos","parentType":"","signature":"UUID sha1UUID(scope  const(char)[]  name,  scope  const  UUID namespace =  UUID.init)","url":"/ddoc/phobos/std/uuid/sha1UUID.html"},{"doc":"ditto","kind":"function","module":"std.uuid","name":"sha1UUID","package":"phobos","parentType":"","signature":"UUID sha1UUID(scope  const(ubyte)[]  data,  scope  const  UUID namespace =  UUID.init)","url":"/ddoc/phobos/std/uuid/sha1UUID.html"},{"doc":"This function generates a random number based UUID from a random number generator.","kind":"function","module":"std.uuid","name":"randomUUID","package":"phobos","parentType":"","signature":"UUID randomUUID()","url":"/ddoc/phobos/std/uuid/randomUUID.html"},{"doc":"ditto","kind":"function","module":"std.uuid","name":"randomUUID","package":"phobos","parentType":"","signature":"UUID randomUUID(RNG)(ref  RNG randomGen) if (isInputRange!RNG &&  isIntegral!(ElementType!RNG))","url":"/ddoc/phobos/std/uuid/randomUUID.html"},{"doc":"This function returns a timestamp + random based UUID aka. uuid v7.","kind":"function","module":"std.uuid","name":"timestampRandomUUID","package":"phobos","parentType":"","signature":"UUID timestampRandomUUID()","url":"/ddoc/phobos/std/uuid/timestampRandomUUID.html"},{"doc":"This is a less strict parser compared to the parser used in the UUID constructor. It enforces the following rules:","kind":"function","module":"std.uuid","name":"parseUUID","package":"phobos","parentType":"","signature":"UUID parseUUID(T)(T uuidString) if (isSomeString!T)","url":"/ddoc/phobos/std/uuid/parseUUID.html"},{"doc":"ditto","kind":"function","module":"std.uuid","name":"parseUUID","package":"phobos","parentType":"","signature":"UUID parseUUID(Range)(ref  Range uuidRange) if (isInputRange!Range &&  isSomeChar!(ElementType!Range))","url":"/ddoc/phobos/std/uuid/parseUUID.html"},{"doc":"","kind":"function","module":"std.uuid","name":"generateV7RandomData","package":"phobos","parentType":"","signature":"ubyte[10] generateV7RandomData()","url":"/ddoc/phobos/std/uuid/generateV7RandomData.html"},{"doc":"","kind":"struct","module":"std.uuid","name":"UUID","package":"phobos","parentType":"","signature":"UUID","url":"/ddoc/phobos/std/uuid.html#UUID"},{"doc":"","kind":"method","module":"std.uuid","name":"toChar","package":"phobos","parentType":"UUID","signature":"Char toChar(Char)(size_t i)","url":"/ddoc/phobos/std/uuid/UUID.toChar.html"},{"doc":"","kind":"method","module":"std.uuid","name":"asArrayOf","package":"phobos","parentType":"UUID","signature":"T[16 /  T.sizeof] asArrayOf(T)() if (isIntegral!T)","url":"/ddoc/phobos/std/uuid/UUID.asArrayOf.html"},{"doc":"Returns true if and only if the UUID is equal to {00000000-0000-0000-0000-000000000000}","kind":"method","module":"std.uuid","name":"empty","package":"phobos","parentType":"UUID","signature":"bool empty()","url":"/ddoc/phobos/std/uuid/UUID.empty.html"},{"doc":"If the UUID is of version 7 it has a timestamp that this function returns, otherwise and UUIDParsingException is thrown.","kind":"method","module":"std.uuid","name":"v7Timestamp","package":"phobos","parentType":"UUID","signature":"SysTime v7Timestamp()","url":"/ddoc/phobos/std/uuid/UUID.v7Timestamp.html"},{"doc":"RFC 4122 defines different internal data layouts for UUIDs. Returns the format used by this UUID.","kind":"method","module":"std.uuid","name":"variant","package":"phobos","parentType":"UUID","signature":"Variant variant()","url":"/ddoc/phobos/std/uuid/UUID.variant.html"},{"doc":"RFC 4122 defines different UUID versions. The version shows how a UUID was generated, e.g. a version 4 UUID was generated from a random number, a v...","kind":"method","module":"std.uuid","name":"uuidVersion","package":"phobos","parentType":"UUID","signature":"Version uuidVersion()","url":"/ddoc/phobos/std/uuid/UUID.uuidVersion.html"},{"doc":"Swap the data of this UUID with the data of rhs.","kind":"method","module":"std.uuid","name":"swap","package":"phobos","parentType":"UUID","signature":"void swap(ref  UUID rhs)","url":"/ddoc/phobos/std/uuid/UUID.swap.html"},{"doc":"All of the standard numeric operators are defined for the UUID struct.","kind":"method","module":"std.uuid","name":"opEquals","package":"phobos","parentType":"UUID","signature":"bool opEquals(const  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"opEquals","package":"phobos","parentType":"UUID","signature":"bool opEquals(ref  const  scope  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opEquals.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"opCmp","package":"phobos","parentType":"UUID","signature":"int opCmp(const  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"opCmp","package":"phobos","parentType":"UUID","signature":"int opCmp(ref  const  scope  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opCmp.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"opAssign","package":"phobos","parentType":"UUID","signature":"UUID opAssign(const  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opAssign.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"opAssign","package":"phobos","parentType":"UUID","signature":"UUID opAssign(ref  const  scope  UUID s)","url":"/ddoc/phobos/std/uuid/UUID.opAssign.html"},{"doc":"ditto","kind":"method","module":"std.uuid","name":"toHash","package":"phobos","parentType":"UUID","signature":"size_t toHash()","url":"/ddoc/phobos/std/uuid/UUID.toHash.html"},{"doc":"Write the UUID into `sink` as an ASCII string in the canonical form, which is 36 characters in the form \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\" Para...","kind":"method","module":"std.uuid","name":"toString","package":"phobos","parentType":"UUID","signature":"void toString(Writer)(scope  Writer sink)","url":"/ddoc/phobos/std/uuid/UUID.toString.html"},{"doc":"Return the UUID as a string in the canonical form.","kind":"method","module":"std.uuid","name":"toString","package":"phobos","parentType":"UUID","signature":"string toString()","url":"/ddoc/phobos/std/uuid/UUID.toString.html"},{"doc":"This exception is thrown if an error occurs when parsing a UUID from a string.","kind":"class","module":"std.uuid","name":"UUIDParsingException","package":"phobos","parentType":"","signature":"UUIDParsingException : Exception","url":"/ddoc/phobos/std/uuid.html#UUIDParsingException"},{"doc":"Default namespace from RFC 4122","kind":"variable","module":"std.uuid","name":"dnsNamespace","package":"phobos","parentType":"","signature":"dnsNamespace","url":"/ddoc/phobos/std/uuid.html#dnsNamespace"},{"doc":"Default namespace from RFC 4122","kind":"variable","module":"std.uuid","name":"urlNamespace","package":"phobos","parentType":"","signature":"urlNamespace","url":"/ddoc/phobos/std/uuid.html#urlNamespace"},{"doc":"Default namespace from RFC 4122","kind":"variable","module":"std.uuid","name":"oidNamespace","package":"phobos","parentType":"","signature":"oidNamespace","url":"/ddoc/phobos/std/uuid.html#oidNamespace"},{"doc":"Default namespace from RFC 4122","kind":"variable","module":"std.uuid","name":"x500Namespace","package":"phobos","parentType":"","signature":"x500Namespace","url":"/ddoc/phobos/std/uuid.html#x500Namespace"},{"doc":"Regex string to extract UUIDs from text.","kind":"variable","module":"std.uuid","name":"uuidRegex","package":"phobos","parentType":"","signature":"uuidRegex","url":"/ddoc/phobos/std/uuid.html#uuidRegex"},{"doc":"This module implements a $(HTTP erdani.org/publications/cuj-04-2002.php.html,discriminated union) type (a.k.a. $(HTTP en.wikipedia.org/wiki/Tagged_...","kind":"module","module":"std.variant","name":"std.variant","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/variant.html"},{"doc":"Returns an array of variants constructed from `args`.","kind":"function","module":"std.variant","name":"variantArray","package":"phobos","parentType":"","signature":"Variant[] variantArray(T...)(T args)","url":"/ddoc/phobos/std/variant/variantArray.html"},{"doc":"","kind":"function","module":"std.variant","name":"visitImpl","package":"phobos","parentType":"","signature":"auto visitImpl(bool  Strict,  VariantType,  Handler...)(VariantType variant) if (isAlgebraic!VariantType &&  Handler.length >  0)","url":"/ddoc/phobos/std/variant/visitImpl.html"},{"doc":"","kind":"struct","module":"std.variant","name":"This","package":"phobos","parentType":"","signature":"This","url":"/ddoc/phobos/std/variant.html#This"},{"doc":"","kind":"alias","module":"std.variant","name":"This2Variant","package":"phobos","parentType":"","signature":"This2Variant(V,  T...) = AliasSeq!(ReplaceTypeUnless!(isAlgebraic,  This,  V,  T))","url":"/ddoc/phobos/std/variant.html#This2Variant"},{"doc":"Back-end type seldom used directly by user code. Two commonly-used types using `VariantN` are:","kind":"struct","module":"std.variant","name":"VariantN","package":"phobos","parentType":"","signature":"VariantN(size_t maxDataSize,  AllowedTypesParam...)","url":"/ddoc/phobos/std/variant.html#VariantN"},{"doc":"","kind":"method","module":"std.variant","name":"handler","package":"phobos","parentType":"VariantN","signature":"ptrdiff_t handler(A :  void)(OpID selector,  ubyte[size] *,  void *  parm)","url":"/ddoc/phobos/std/variant/VariantN.handler.html"},{"doc":"","kind":"method","module":"std.variant","name":"handler","package":"phobos","parentType":"VariantN","signature":"ptrdiff_t handler(A)(OpID selector,  ubyte[size] *  pStore,  void *  parm)","url":"/ddoc/phobos/std/variant/VariantN.handler.html"},{"doc":"Assigns a `VariantN` from a generic argument. Statically rejects disallowed types.","kind":"method","module":"std.variant","name":"opAssign","package":"phobos","parentType":"VariantN","signature":"VariantN opAssign(T)(T rhs)","url":"/ddoc/phobos/std/variant/VariantN.opAssign.html"},{"doc":"","kind":"method","module":"std.variant","name":"opAssign","package":"phobos","parentType":"VariantN","signature":"VariantN opAssign(T :  VariantN!(tsize,  Types),  size_t tsize,  Types...)(T rhs) if (!is(T :  VariantN)  &&  Types.length >  0 &&  allSatisfy!(allowed,  Types))","url":"/ddoc/phobos/std/variant/VariantN.opAssign.html"},{"doc":"","kind":"method","module":"std.variant","name":"opCall","package":"phobos","parentType":"VariantN","signature":"Variant opCall(P...)(auto  ref  P params)","url":"/ddoc/phobos/std/variant/VariantN.opCall.html"},{"doc":"Returns true if and only if the `VariantN` object holds a valid value (has been initialized with, or assigned from, a valid value).","kind":"method","module":"std.variant","name":"hasValue","package":"phobos","parentType":"VariantN","signature":"bool hasValue()","url":"/ddoc/phobos/std/variant/VariantN.hasValue.html"},{"doc":"If the `VariantN` object holds a value of the $(I exact) type `T`, returns a pointer to that value. Otherwise, returns `null`. In cases where `T` i...","kind":"method","module":"std.variant","name":"peek","package":"phobos","parentType":"VariantN","signature":"inout(T) * peek(T)()","url":"/ddoc/phobos/std/variant/VariantN.peek.html"},{"doc":"Returns the `typeid` of the currently held value.","kind":"method","module":"std.variant","name":"type","package":"phobos","parentType":"VariantN","signature":"TypeInfo type()","url":"/ddoc/phobos/std/variant/VariantN.type.html"},{"doc":"Returns `true` if and only if the `VariantN` object holds an object implicitly convertible to type `T`. Implicit convertibility is defined as per $...","kind":"method","module":"std.variant","name":"convertsTo","package":"phobos","parentType":"VariantN","signature":"bool convertsTo(T)()","url":"/ddoc/phobos/std/variant/VariantN.convertsTo.html"},{"doc":"Returns the value stored in the `VariantN` object, either by specifying the needed type or the index in the list of allowed types. The latter overl...","kind":"method","module":"std.variant","name":"get","package":"phobos","parentType":"VariantN","signature":"inout(T) get(T)()","url":"/ddoc/phobos/std/variant/VariantN.get.html"},{"doc":"Ditto","kind":"method","module":"std.variant","name":"get","package":"phobos","parentType":"VariantN","signature":"@property auto get(uint  index)() if (index <  AllowedTypes.length)","url":"/ddoc/phobos/std/variant/VariantN.get.html"},{"doc":"Returns the value stored in the `VariantN` object, explicitly converted (coerced) to the requested type $(D T). If `T` is a string type, the value ...","kind":"method","module":"std.variant","name":"coerce","package":"phobos","parentType":"VariantN","signature":"T coerce(T)()","url":"/ddoc/phobos/std/variant/VariantN.coerce.html"},{"doc":"Formats the stored value as a string.","kind":"method","module":"std.variant","name":"toString","package":"phobos","parentType":"VariantN","signature":"string toString()","url":"/ddoc/phobos/std/variant/VariantN.toString.html"},{"doc":"Comparison for equality used by the \"==\" and \"!=\"  operators.","kind":"method","module":"std.variant","name":"opEquals","package":"phobos","parentType":"VariantN","signature":"bool opEquals(T)(auto  ref  T rhs) if (allowed!T ||  is(immutable  T ==  immutable  VariantN))","url":"/ddoc/phobos/std/variant/VariantN.opEquals.html"},{"doc":"","kind":"method","module":"std.variant","name":"opCmp","package":"phobos","parentType":"VariantN","signature":"int opCmp(ref  const  VariantN rhs)","url":"/ddoc/phobos/std/variant/VariantN.opCmp.html"},{"doc":"Ordering comparison used by the \"<\", \"<=\", \">\", and \">=\" operators. In case comparison is not sensible between the held value and `rhs`, an excepti...","kind":"method","module":"std.variant","name":"opCmp","package":"phobos","parentType":"VariantN","signature":"int opCmp(T)(T rhs) if (allowed!T)","url":"/ddoc/phobos/std/variant/VariantN.opCmp.html"},{"doc":"Computes the hash of the held value.","kind":"method","module":"std.variant","name":"toHash","package":"phobos","parentType":"VariantN","signature":"size_t toHash()","url":"/ddoc/phobos/std/variant/VariantN.toHash.html"},{"doc":"","kind":"method","module":"std.variant","name":"opArithmetic","package":"phobos","parentType":"VariantN","signature":"VariantN opArithmetic(T,  string op)(T other)","url":"/ddoc/phobos/std/variant/VariantN.opArithmetic.html"},{"doc":"","kind":"method","module":"std.variant","name":"opLogic","package":"phobos","parentType":"VariantN","signature":"VariantN opLogic(T,  string op)(T other)","url":"/ddoc/phobos/std/variant/VariantN.opLogic.html"},{"doc":"Arithmetic between `VariantN` objects and numeric values. All arithmetic operations return a `VariantN` object typed depending on the types of both...","kind":"method","module":"std.variant","name":"opBinary","package":"phobos","parentType":"VariantN","signature":"VariantN opBinary(string op,  T)(T rhs) if ((op ==  \"+\" ||  op ==  \"-\" ||  op ==  \"*\" ||  op ==  \"/\" ||  op ==  \"^^\" ||  op ==  \"%\")  &&\n         is(typeof(opArithmetic!(T,  op)(rhs))))","url":"/ddoc/phobos/std/variant/VariantN.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opBinary","package":"phobos","parentType":"VariantN","signature":"VariantN opBinary(string op,  T)(T rhs) if ((op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\" ||  op ==  \">>\" ||  op ==  \"<<\" ||  op ==  \">>>\")  &&\n         is(typeof(opLogic!(T,  op)(rhs))))","url":"/ddoc/phobos/std/variant/VariantN.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opBinaryRight","package":"phobos","parentType":"VariantN","signature":"VariantN opBinaryRight(string op,  T)(T lhs) if ((op ==  \"+\" ||  op ==  \"*\")  &&\n         is(typeof(opArithmetic!(T,  op)(lhs))))","url":"/ddoc/phobos/std/variant/VariantN.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opBinaryRight","package":"phobos","parentType":"VariantN","signature":"VariantN opBinaryRight(string op,  T)(T lhs) if ((op ==  \"&\" ||  op ==  \"|\" ||  op ==  \"^\")  &&\n         is(typeof(opLogic!(T,  op)(lhs))))","url":"/ddoc/phobos/std/variant/VariantN.opBinaryRight.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opBinary","package":"phobos","parentType":"VariantN","signature":"VariantN opBinary(string op,  T)(T rhs) if (op ==  \"~\")","url":"/ddoc/phobos/std/variant/VariantN.opBinary.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opOpAssign","package":"phobos","parentType":"VariantN","signature":"VariantN opOpAssign(string op,  T)(T rhs)","url":"/ddoc/phobos/std/variant/VariantN.opOpAssign.html"},{"doc":"Array and associative array operations. If a $(D VariantN) contains an (associative) array, it can be indexed into. Otherwise, an exception is thrown.","kind":"method","module":"std.variant","name":"opIndex","package":"phobos","parentType":"VariantN","signature":"inout(Variant) opIndex(K)(K i)","url":"/ddoc/phobos/std/variant/VariantN.opIndex.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opIndexAssign","package":"phobos","parentType":"VariantN","signature":"Variant opIndexAssign(T,  N)(T value,  N i)","url":"/ddoc/phobos/std/variant/VariantN.opIndexAssign.html"},{"doc":"ditto","kind":"method","module":"std.variant","name":"opIndexOpAssign","package":"phobos","parentType":"VariantN","signature":"Variant opIndexOpAssign(string op,  T,  N)(T value,  N i)","url":"/ddoc/phobos/std/variant/VariantN.opIndexOpAssign.html"},{"doc":"If the `VariantN` contains an (associative) array, returns the _length of that array. Otherwise, throws an exception.","kind":"method","module":"std.variant","name":"length","package":"phobos","parentType":"VariantN","signature":"size_t length()","url":"/ddoc/phobos/std/variant/VariantN.length.html"},{"doc":"If the `VariantN` contains an array, applies `dg` to each element of the array in turn. Otherwise, throws an exception.","kind":"method","module":"std.variant","name":"opApply","package":"phobos","parentType":"VariantN","signature":"int opApply(Delegate)(scope  Delegate dg) if (is(Delegate ==  delegate))","url":"/ddoc/phobos/std/variant/VariantN.opApply.html"},{"doc":"","kind":"struct","module":"std.variant","name":"FakeComplexReal","package":"phobos","parentType":"","signature":"FakeComplexReal","url":"/ddoc/phobos/std/variant.html#FakeComplexReal"},{"doc":"Alias for $(LREF VariantN) instantiated with the largest size of `creal`, `char[]`, and `void delegate()`. This ensures that `Variant` is large eno...","kind":"alias","module":"std.variant","name":"Variant","package":"phobos","parentType":"","signature":"Variant = VariantN!(maxSize!(FakeComplexReal,  char[],  void  delegate()))","url":"/ddoc/phobos/std/variant.html#Variant"},{"doc":"Thrown in three cases:","kind":"class","module":"std.variant","name":"VariantException","package":"phobos","parentType":"","signature":"VariantException : Exception","url":"/ddoc/phobos/std/variant.html#VariantException"},{"doc":"Gives the `sizeof` the largest type given.","kind":"template","module":"std.variant","name":"maxSize","package":"phobos","parentType":"","signature":"maxSize(Ts...)","url":"/ddoc/phobos/std/variant.html#maxSize"},{"doc":"","kind":"template","module":"std.variant","name":"maxVariantAlignment","package":"phobos","parentType":"","signature":"maxVariantAlignment(U...)","url":"/ddoc/phobos/std/variant.html#maxVariantAlignment"},{"doc":"_Algebraic data type restricted to a closed set of possible types. It's an alias for $(LREF VariantN) with an appropriately-constructed maximum siz...","kind":"template","module":"std.variant","name":"Algebraic","package":"phobos","parentType":"","signature":"Algebraic(T...)","url":"/ddoc/phobos/std/variant.html#Algebraic"},{"doc":"Applies a delegate or function to the given $(LREF Algebraic) depending on the held type, ensuring that all types are handled by the visiting funct...","kind":"template","module":"std.variant","name":"visit","package":"phobos","parentType":"","signature":"visit(Handlers...)","url":"/ddoc/phobos/std/variant.html#visit"},{"doc":"","kind":"function","module":"std.variant","name":"visit","package":"phobos","parentType":"","signature":"auto visit(VariantType)(VariantType variant) if (isAlgebraic!VariantType)","url":"/ddoc/phobos/std/variant.html#visit"},{"doc":"Behaves as $(LREF visit) but doesn't enforce that all types are handled by the visiting functions.","kind":"template","module":"std.variant","name":"tryVisit","package":"phobos","parentType":"","signature":"tryVisit(Handlers...)","url":"/ddoc/phobos/std/variant.html#tryVisit"},{"doc":"","kind":"function","module":"std.variant","name":"tryVisit","package":"phobos","parentType":"","signature":"auto tryVisit(VariantType)(VariantType variant) if (isAlgebraic!VariantType)","url":"/ddoc/phobos/std/variant.html#tryVisit"},{"doc":"","kind":"template","module":"std.variant","name":"isAlgebraic","package":"phobos","parentType":"","signature":"isAlgebraic(Type)","url":"/ddoc/phobos/std/variant.html#isAlgebraic"},{"doc":"Support UTF-8 on Windows 95, 98 and ME systems.","kind":"module","module":"std.windows.charset","name":"std.windows.charset","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/windows/charset.html"},{"doc":"This library provides Win32 Registry facilities.","kind":"module","module":"std.windows.registry","name":"std.windows.registry","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/windows/registry.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"enforceSucc","package":"phobos","parentType":"","signature":"void enforceSucc(LONG res,  lazy  string message,  string fn =  __FILE__,  size_t ln =  __LINE__)","url":"/ddoc/phobos/std/windows/registry/enforceSucc.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"compatibleRegsam","package":"phobos","parentType":"","signature":"REGSAM compatibleRegsam(in  REGSAM samDesired)","url":"/ddoc/phobos/std/windows/registry/compatibleRegsam.html"},{"doc":"Returns true, if we are in WoW64 mode and have WoW64 flags","kind":"function","module":"std.windows.registry","name":"haveWoW64Job","package":"phobos","parentType":"","signature":"bool haveWoW64Job(in  REGSAM samDesired)","url":"/ddoc/phobos/std/windows/registry/haveWoW64Job.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"_RVT_from_Endian","package":"phobos","parentType":"","signature":"REG_VALUE_TYPE _RVT_from_Endian(Endian endian)","url":"/ddoc/phobos/std/windows/registry/_RVT_from_Endian.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regCloseKey","package":"phobos","parentType":"","signature":"LONG regCloseKey(in  HKEY hkey)","url":"/ddoc/phobos/std/windows/registry/regCloseKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regFlushKey","package":"phobos","parentType":"","signature":"void regFlushKey(in  HKEY hkey)","url":"/ddoc/phobos/std/windows/registry/regFlushKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regCreateKey","package":"phobos","parentType":"","signature":"HKEY regCreateKey(in  HKEY hkey,  in  string subKey,  in  DWORD dwOptions,  in  REGSAM samDesired,\n                           in  LPSECURITY_ATTRIBUTES lpsa,  out  DWORD disposition)","url":"/ddoc/phobos/std/windows/registry/regCreateKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regDeleteKey","package":"phobos","parentType":"","signature":"void regDeleteKey(in  HKEY hkey,  in  string subKey,  in  REGSAM samDesired)","url":"/ddoc/phobos/std/windows/registry/regDeleteKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regDeleteValue","package":"phobos","parentType":"","signature":"void regDeleteValue(in  HKEY hkey,  in  string valueName)","url":"/ddoc/phobos/std/windows/registry/regDeleteValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regDup","package":"phobos","parentType":"","signature":"HKEY regDup(HKEY hkey)","url":"/ddoc/phobos/std/windows/registry/regDup.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regEnumKeyName","package":"phobos","parentType":"","signature":"LONG regEnumKeyName(in  HKEY hkey,  in  DWORD index,  ref  wchar[]  name,  out  DWORD cchName)","url":"/ddoc/phobos/std/windows/registry/regEnumKeyName.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regEnumValueName","package":"phobos","parentType":"","signature":"LONG regEnumValueName(in  HKEY hkey,  in  DWORD dwIndex,  ref  wchar[]  name,  out  DWORD cchName)","url":"/ddoc/phobos/std/windows/registry/regEnumValueName.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regGetNumSubKeys","package":"phobos","parentType":"","signature":"LONG regGetNumSubKeys(in  HKEY hkey,  out  DWORD cSubKeys,  out  DWORD cchSubKeyMaxLen)","url":"/ddoc/phobos/std/windows/registry/regGetNumSubKeys.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regGetNumValues","package":"phobos","parentType":"","signature":"LONG regGetNumValues(in  HKEY hkey,  out  DWORD cValues,  out  DWORD cchValueMaxLen)","url":"/ddoc/phobos/std/windows/registry/regGetNumValues.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regGetValueType","package":"phobos","parentType":"","signature":"REG_VALUE_TYPE regGetValueType(in  HKEY hkey,  in  string name)","url":"/ddoc/phobos/std/windows/registry/regGetValueType.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regOpenKey","package":"phobos","parentType":"","signature":"HKEY regOpenKey(in  HKEY hkey,  in  string subKey,  in  REGSAM samDesired)","url":"/ddoc/phobos/std/windows/registry/regOpenKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regQueryValue","package":"phobos","parentType":"","signature":"void regQueryValue(in  HKEY hkey,  string name,  out  string value,  REG_VALUE_TYPE reqType)","url":"/ddoc/phobos/std/windows/registry/regQueryValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regQueryValue","package":"phobos","parentType":"","signature":"void regQueryValue(in  HKEY hkey,  in  string name,  out  string[]  value,  REG_VALUE_TYPE reqType)","url":"/ddoc/phobos/std/windows/registry/regQueryValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regQueryValue","package":"phobos","parentType":"","signature":"void regQueryValue(in  HKEY hkey,  in  string name,  out  uint  value,  REG_VALUE_TYPE reqType)","url":"/ddoc/phobos/std/windows/registry/regQueryValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regQueryValue","package":"phobos","parentType":"","signature":"void regQueryValue(in  HKEY hkey,  in  string name,  out  ulong  value,  REG_VALUE_TYPE reqType)","url":"/ddoc/phobos/std/windows/registry/regQueryValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regQueryValue","package":"phobos","parentType":"","signature":"void regQueryValue(in  HKEY hkey,  in  string name,  out  byte[]  value,  REG_VALUE_TYPE reqType)","url":"/ddoc/phobos/std/windows/registry/regQueryValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regSetValue","package":"phobos","parentType":"","signature":"void regSetValue(in  HKEY hkey,  in  string subKey,  in  REG_VALUE_TYPE type,  in  LPCVOID lpData,  in  DWORD cbData)","url":"/ddoc/phobos/std/windows/registry/regSetValue.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regProcessNthKey","package":"phobos","parentType":"","signature":"void regProcessNthKey(Key key,  scope  void  delegate(scope  LONG delegate(DWORD,  out  string))  dg)","url":"/ddoc/phobos/std/windows/registry/regProcessNthKey.html"},{"doc":"","kind":"function","module":"std.windows.registry","name":"regProcessNthValue","package":"phobos","parentType":"","signature":"void regProcessNthValue(Key key,  scope  void  delegate(scope  LONG delegate(DWORD,  out  string))  dg)","url":"/ddoc/phobos/std/windows/registry/regProcessNthValue.html"},{"doc":"","kind":"class","module":"std.windows.registry","name":"Win32Exception","package":"phobos","parentType":"","signature":"Win32Exception : WindowsException","url":"/ddoc/phobos/std/windows/registry.html#Win32Exception"},{"doc":"","kind":"method","module":"std.windows.registry","name":"error","package":"phobos","parentType":"Win32Exception","signature":"int error()","url":"/ddoc/phobos/std/windows/registry/Win32Exception.error.html"},{"doc":"Exception class thrown by the std.windows.registry classes.","kind":"class","module":"std.windows.registry","name":"RegistryException","package":"phobos","parentType":"","signature":"RegistryException : Win32Exception","url":"/ddoc/phobos/std/windows/registry.html#RegistryException"},{"doc":"Enumeration of the recognised registry access modes.","kind":"enum","module":"std.windows.registry","name":"REGSAM","package":"phobos","parentType":"","signature":"REGSAM","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission to query subkey data","kind":"enum_member","module":"std.windows.registry","name":"KEY_QUERY_VALUE","package":"phobos","parentType":"","signature":"KEY_QUERY_VALUE = 0x0001","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission to set subkey data","kind":"enum_member","module":"std.windows.registry","name":"KEY_SET_VALUE","package":"phobos","parentType":"","signature":"KEY_SET_VALUE = 0x0002","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission to create subkeys","kind":"enum_member","module":"std.windows.registry","name":"KEY_CREATE_SUB_KEY","package":"phobos","parentType":"","signature":"KEY_CREATE_SUB_KEY = 0x0004","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission to enumerate subkeys","kind":"enum_member","module":"std.windows.registry","name":"KEY_ENUMERATE_SUB_KEYS","package":"phobos","parentType":"","signature":"KEY_ENUMERATE_SUB_KEYS = 0x0008","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission for change notification","kind":"enum_member","module":"std.windows.registry","name":"KEY_NOTIFY","package":"phobos","parentType":"","signature":"KEY_NOTIFY = 0x0010","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission to create a symbolic link","kind":"enum_member","module":"std.windows.registry","name":"KEY_CREATE_LINK","package":"phobos","parentType":"","signature":"KEY_CREATE_LINK = 0x0020","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Enables a 64- or 32-bit application to open a 32-bit key","kind":"enum_member","module":"std.windows.registry","name":"KEY_WOW64_32KEY","package":"phobos","parentType":"","signature":"KEY_WOW64_32KEY = 0x0200","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Enables a 64- or 32-bit application to open a 64-bit key","kind":"enum_member","module":"std.windows.registry","name":"KEY_WOW64_64KEY","package":"phobos","parentType":"","signature":"KEY_WOW64_64KEY = 0x0100","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"","kind":"enum_member","module":"std.windows.registry","name":"KEY_WOW64_RES","package":"phobos","parentType":"","signature":"KEY_WOW64_RES = 0x0300","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"","kind":"enum_member","module":"std.windows.registry","name":"KEY_READ","package":"phobos","parentType":"","signature":"KEY_READ = (STANDARD_RIGHTS_READ\n                               |  KEY_QUERY_VALUE |  KEY_ENUMERATE_SUB_KEYS |  KEY_NOTIFY)\n                               &  ~(SYNCHRONIZE)","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Combines the STANDARD_RIGHTS_READ, KEY_QUERY_VALUE, KEY_ENUMERATE_SUB_KEYS, and KEY_NOTIFY access rights","kind":"enum_member","module":"std.windows.registry","name":"KEY_WRITE","package":"phobos","parentType":"","signature":"KEY_WRITE = (STANDARD_RIGHTS_WRITE\n                               |  KEY_SET_VALUE |  KEY_CREATE_SUB_KEY)\n                               &  ~(SYNCHRONIZE)","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Combines the STANDARD_RIGHTS_WRITE, KEY_SET_VALUE, and KEY_CREATE_SUB_KEY access rights","kind":"enum_member","module":"std.windows.registry","name":"KEY_EXECUTE","package":"phobos","parentType":"","signature":"KEY_EXECUTE = KEY_READ &  ~(SYNCHRONIZE)","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Permission for read access","kind":"enum_member","module":"std.windows.registry","name":"KEY_ALL_ACCESS","package":"phobos","parentType":"","signature":"KEY_ALL_ACCESS = (STANDARD_RIGHTS_ALL\n                               |  KEY_QUERY_VALUE |  KEY_SET_VALUE |  KEY_CREATE_SUB_KEY\n                               |  KEY_ENUMERATE_SUB_KEYS |  KEY_NOTIFY |  KEY_CREATE_LINK)\n                               &  ~(SYNCHRONIZE)","url":"/ddoc/phobos/std/windows/registry.html#REGSAM"},{"doc":"Enumeration of the recognised registry value types.","kind":"enum","module":"std.windows.registry","name":"REG_VALUE_TYPE","package":"phobos","parentType":"","signature":"REG_VALUE_TYPE : DWORD","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"","kind":"enum_member","module":"std.windows.registry","name":"REG_UNKNOWN","package":"phobos","parentType":"","signature":"REG_UNKNOWN = - 1","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"The null value type. (In practise this is treated as a zero-length binary array by the Win32 registry)","kind":"enum_member","module":"std.windows.registry","name":"REG_NONE","package":"phobos","parentType":"","signature":"REG_NONE = 0","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A zero-terminated string","kind":"enum_member","module":"std.windows.registry","name":"REG_SZ","package":"phobos","parentType":"","signature":"REG_SZ = 1","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A zero-terminated string containing expandable environment variable references","kind":"enum_member","module":"std.windows.registry","name":"REG_EXPAND_SZ","package":"phobos","parentType":"","signature":"REG_EXPAND_SZ = 2","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A binary blob","kind":"enum_member","module":"std.windows.registry","name":"REG_BINARY","package":"phobos","parentType":"","signature":"REG_BINARY = 3","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A 32-bit unsigned integer","kind":"enum_member","module":"std.windows.registry","name":"REG_DWORD","package":"phobos","parentType":"","signature":"REG_DWORD = 4","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A 32-bit unsigned integer, stored in little-endian byte order","kind":"enum_member","module":"std.windows.registry","name":"REG_DWORD_LITTLE_ENDIAN","package":"phobos","parentType":"","signature":"REG_DWORD_LITTLE_ENDIAN = 4","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A 32-bit unsigned integer, stored in big-endian byte order","kind":"enum_member","module":"std.windows.registry","name":"REG_DWORD_BIG_ENDIAN","package":"phobos","parentType":"","signature":"REG_DWORD_BIG_ENDIAN = 5","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A registry link","kind":"enum_member","module":"std.windows.registry","name":"REG_LINK","package":"phobos","parentType":"","signature":"REG_LINK = 6","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A set of zero-terminated strings","kind":"enum_member","module":"std.windows.registry","name":"REG_MULTI_SZ","package":"phobos","parentType":"","signature":"REG_MULTI_SZ = 7","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A hardware resource list","kind":"enum_member","module":"std.windows.registry","name":"REG_RESOURCE_LIST","package":"phobos","parentType":"","signature":"REG_RESOURCE_LIST = 8","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A hardware resource descriptor","kind":"enum_member","module":"std.windows.registry","name":"REG_FULL_RESOURCE_DESCRIPTOR","package":"phobos","parentType":"","signature":"REG_FULL_RESOURCE_DESCRIPTOR = 9","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A hardware resource requirements list","kind":"enum_member","module":"std.windows.registry","name":"REG_RESOURCE_REQUIREMENTS_LIST","package":"phobos","parentType":"","signature":"REG_RESOURCE_REQUIREMENTS_LIST = 10","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A 64-bit unsigned integer","kind":"enum_member","module":"std.windows.registry","name":"REG_QWORD","package":"phobos","parentType":"","signature":"REG_QWORD = 11","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"A 64-bit unsigned integer, stored in little-endian byte order","kind":"enum_member","module":"std.windows.registry","name":"REG_QWORD_LITTLE_ENDIAN","package":"phobos","parentType":"","signature":"REG_QWORD_LITTLE_ENDIAN = 11","url":"/ddoc/phobos/std/windows/registry.html#REG_VALUE_TYPE"},{"doc":"This class represents a registry key.","kind":"class","module":"std.windows.registry","name":"Key","package":"phobos","parentType":"","signature":"Key","url":"/ddoc/phobos/std/windows/registry.html#Key"},{"doc":"The name of the key","kind":"method","module":"std.windows.registry","name":"name","package":"phobos","parentType":"Key","signature":"string name()","url":"/ddoc/phobos/std/windows/registry/Key.name.html"},{"doc":"The number of sub keys.","kind":"method","module":"std.windows.registry","name":"keyCount","package":"phobos","parentType":"Key","signature":"size_t keyCount()","url":"/ddoc/phobos/std/windows/registry/Key.keyCount.html"},{"doc":"An enumerable sequence of all the sub-keys of this key.","kind":"method","module":"std.windows.registry","name":"keys","package":"phobos","parentType":"Key","signature":"KeySequence keys()","url":"/ddoc/phobos/std/windows/registry/Key.keys.html"},{"doc":"An enumerable sequence of the names of all the sub-keys of this key.","kind":"method","module":"std.windows.registry","name":"keyNames","package":"phobos","parentType":"Key","signature":"KeyNameSequence keyNames()","url":"/ddoc/phobos/std/windows/registry/Key.keyNames.html"},{"doc":"The number of values.","kind":"method","module":"std.windows.registry","name":"valueCount","package":"phobos","parentType":"Key","signature":"size_t valueCount()","url":"/ddoc/phobos/std/windows/registry/Key.valueCount.html"},{"doc":"An enumerable sequence of all the values of this key.","kind":"method","module":"std.windows.registry","name":"values","package":"phobos","parentType":"Key","signature":"ValueSequence values()","url":"/ddoc/phobos/std/windows/registry/Key.values.html"},{"doc":"An enumerable sequence of the names of all the values of this key.","kind":"method","module":"std.windows.registry","name":"valueNames","package":"phobos","parentType":"Key","signature":"ValueNameSequence valueNames()","url":"/ddoc/phobos/std/windows/registry/Key.valueNames.html"},{"doc":"Returns the named sub-key of this key.","kind":"method","module":"std.windows.registry","name":"createKey","package":"phobos","parentType":"Key","signature":"Key createKey(string name,  REGSAM access =  REGSAM.KEY_ALL_ACCESS)","url":"/ddoc/phobos/std/windows/registry/Key.createKey.html"},{"doc":"Returns the named sub-key of this key.","kind":"method","module":"std.windows.registry","name":"getKey","package":"phobos","parentType":"Key","signature":"Key getKey(string name,  REGSAM access =  REGSAM.KEY_READ)","url":"/ddoc/phobos/std/windows/registry/Key.getKey.html"},{"doc":"Deletes the named key.","kind":"method","module":"std.windows.registry","name":"deleteKey","package":"phobos","parentType":"Key","signature":"void deleteKey(string name,  REGSAM access =  cast(REGSAM)  0)","url":"/ddoc/phobos/std/windows/registry/Key.deleteKey.html"},{"doc":"Returns the named value. If `name` is the empty string, then the default value is returned.","kind":"method","module":"std.windows.registry","name":"getValue","package":"phobos","parentType":"Key","signature":"Value getValue(string name)","url":"/ddoc/phobos/std/windows/registry/Key.getValue.html"},{"doc":"Sets the named value with the given 32-bit unsigned integer value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  uint  value)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given 32-bit unsigned integer value, according to the desired byte-ordering.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  uint  value,  Endian endian)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given 64-bit unsigned integer value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  ulong  value)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given string value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  string value)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given string value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  string value,  bool  asEXPAND_SZ)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given multiple-strings value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  string[]  value)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Sets the named value with the given binary value.","kind":"method","module":"std.windows.registry","name":"setValue","package":"phobos","parentType":"Key","signature":"void setValue(string name,  byte[]  value)","url":"/ddoc/phobos/std/windows/registry/Key.setValue.html"},{"doc":"Deletes the named value.","kind":"method","module":"std.windows.registry","name":"deleteValue","package":"phobos","parentType":"Key","signature":"void deleteValue(string name)","url":"/ddoc/phobos/std/windows/registry/Key.deleteValue.html"},{"doc":"Flushes any changes to the key to disk.","kind":"method","module":"std.windows.registry","name":"flush","package":"phobos","parentType":"Key","signature":"void flush()","url":"/ddoc/phobos/std/windows/registry/Key.flush.html"},{"doc":"This class represents a value of a registry key.","kind":"class","module":"std.windows.registry","name":"Value","package":"phobos","parentType":"","signature":"Value","url":"/ddoc/phobos/std/windows/registry.html#Value"},{"doc":"The name of the value. If the value represents a default value of a key, which has no name, the returned string will be of zero length.","kind":"method","module":"std.windows.registry","name":"name","package":"phobos","parentType":"Value","signature":"string name()","url":"/ddoc/phobos/std/windows/registry/Value.name.html"},{"doc":"The type of value.","kind":"method","module":"std.windows.registry","name":"type","package":"phobos","parentType":"Value","signature":"REG_VALUE_TYPE type()","url":"/ddoc/phobos/std/windows/registry/Value.type.html"},{"doc":"Obtains the current value of the value as a string. If the value's type is REG_EXPAND_SZ the returned value is <b>not</b> expanded; `value_EXPAND_S...","kind":"method","module":"std.windows.registry","name":"value_SZ","package":"phobos","parentType":"Value","signature":"string value_SZ()","url":"/ddoc/phobos/std/windows/registry/Value.value_SZ.html"},{"doc":"Obtains the current value as a string, within which any environment variables have undergone expansion. This function works with the same value-typ...","kind":"method","module":"std.windows.registry","name":"value_EXPAND_SZ","package":"phobos","parentType":"Value","signature":"string value_EXPAND_SZ()","url":"/ddoc/phobos/std/windows/registry/Value.value_EXPAND_SZ.html"},{"doc":"Obtains the current value as an array of strings.","kind":"method","module":"std.windows.registry","name":"value_MULTI_SZ","package":"phobos","parentType":"Value","signature":"string[] value_MULTI_SZ()","url":"/ddoc/phobos/std/windows/registry/Value.value_MULTI_SZ.html"},{"doc":"Obtains the current value as a 32-bit unsigned integer, ordered correctly according to the current architecture.","kind":"method","module":"std.windows.registry","name":"value_DWORD","package":"phobos","parentType":"Value","signature":"uint value_DWORD()","url":"/ddoc/phobos/std/windows/registry/Value.value_DWORD.html"},{"doc":"Obtains the value as a 64-bit unsigned integer, ordered correctly according to the current architecture.","kind":"method","module":"std.windows.registry","name":"value_QWORD","package":"phobos","parentType":"Value","signature":"ulong value_QWORD()","url":"/ddoc/phobos/std/windows/registry/Value.value_QWORD.html"},{"doc":"Obtains the value as a binary blob.","kind":"method","module":"std.windows.registry","name":"value_BINARY","package":"phobos","parentType":"Value","signature":"byte[] value_BINARY()","url":"/ddoc/phobos/std/windows/registry/Value.value_BINARY.html"},{"doc":"Represents the local system registry.","kind":"class","module":"std.windows.registry","name":"Registry","package":"phobos","parentType":"","signature":"Registry","url":"/ddoc/phobos/std/windows/registry.html#Registry"},{"doc":"Returns the root key for the HKEY_CLASSES_ROOT hive","kind":"method","module":"std.windows.registry","name":"classesRoot","package":"phobos","parentType":"Registry","signature":"Key classesRoot()","url":"/ddoc/phobos/std/windows/registry/Registry.classesRoot.html"},{"doc":"Returns the root key for the HKEY_CURRENT_USER hive","kind":"method","module":"std.windows.registry","name":"currentUser","package":"phobos","parentType":"Registry","signature":"Key currentUser()","url":"/ddoc/phobos/std/windows/registry/Registry.currentUser.html"},{"doc":"Returns the root key for the HKEY_LOCAL_MACHINE hive","kind":"method","module":"std.windows.registry","name":"localMachine","package":"phobos","parentType":"Registry","signature":"Key localMachine()","url":"/ddoc/phobos/std/windows/registry/Registry.localMachine.html"},{"doc":"Returns the root key for the HKEY_USERS hive","kind":"method","module":"std.windows.registry","name":"users","package":"phobos","parentType":"Registry","signature":"Key users()","url":"/ddoc/phobos/std/windows/registry/Registry.users.html"},{"doc":"Returns the root key for the HKEY_PERFORMANCE_DATA hive","kind":"method","module":"std.windows.registry","name":"performanceData","package":"phobos","parentType":"Registry","signature":"Key performanceData()","url":"/ddoc/phobos/std/windows/registry/Registry.performanceData.html"},{"doc":"Returns the root key for the HKEY_CURRENT_CONFIG hive","kind":"method","module":"std.windows.registry","name":"currentConfig","package":"phobos","parentType":"Registry","signature":"Key currentConfig()","url":"/ddoc/phobos/std/windows/registry/Registry.currentConfig.html"},{"doc":"Returns the root key for the HKEY_DYN_DATA hive","kind":"method","module":"std.windows.registry","name":"dynData","package":"phobos","parentType":"Registry","signature":"Key dynData()","url":"/ddoc/phobos/std/windows/registry/Registry.dynData.html"},{"doc":"An enumerable sequence representing the names of the sub-keys of a registry Key.","kind":"class","module":"std.windows.registry","name":"KeyNameSequence","package":"phobos","parentType":"","signature":"KeyNameSequence","url":"/ddoc/phobos/std/windows/registry.html#KeyNameSequence"},{"doc":"The number of keys.","kind":"method","module":"std.windows.registry","name":"count","package":"phobos","parentType":"KeyNameSequence","signature":"size_t count()","url":"/ddoc/phobos/std/windows/registry/KeyNameSequence.count.html"},{"doc":"The name of the key at the given index.","kind":"method","module":"std.windows.registry","name":"getKeyName","package":"phobos","parentType":"KeyNameSequence","signature":"string getKeyName(size_t index)","url":"/ddoc/phobos/std/windows/registry/KeyNameSequence.getKeyName.html"},{"doc":"The name of the key at the given index.","kind":"method","module":"std.windows.registry","name":"opIndex","package":"phobos","parentType":"KeyNameSequence","signature":"string opIndex(size_t index)","url":"/ddoc/phobos/std/windows/registry/KeyNameSequence.opIndex.html"},{"doc":"","kind":"method","module":"std.windows.registry","name":"opApply","package":"phobos","parentType":"KeyNameSequence","signature":"int opApply(scope  int  delegate(ref  string name)  dg)","url":"/ddoc/phobos/std/windows/registry/KeyNameSequence.opApply.html"},{"doc":"An enumerable sequence representing the sub-keys of a registry Key.","kind":"class","module":"std.windows.registry","name":"KeySequence","package":"phobos","parentType":"","signature":"KeySequence","url":"/ddoc/phobos/std/windows/registry.html#KeySequence"},{"doc":"The number of keys.","kind":"method","module":"std.windows.registry","name":"count","package":"phobos","parentType":"KeySequence","signature":"size_t count()","url":"/ddoc/phobos/std/windows/registry/KeySequence.count.html"},{"doc":"The key at the given index.","kind":"method","module":"std.windows.registry","name":"getKey","package":"phobos","parentType":"KeySequence","signature":"Key getKey(size_t index)","url":"/ddoc/phobos/std/windows/registry/KeySequence.getKey.html"},{"doc":"The key at the given index.","kind":"method","module":"std.windows.registry","name":"opIndex","package":"phobos","parentType":"KeySequence","signature":"Key opIndex(size_t index)","url":"/ddoc/phobos/std/windows/registry/KeySequence.opIndex.html"},{"doc":"","kind":"method","module":"std.windows.registry","name":"opApply","package":"phobos","parentType":"KeySequence","signature":"int opApply(scope  int  delegate(ref  Key key)  dg)","url":"/ddoc/phobos/std/windows/registry/KeySequence.opApply.html"},{"doc":"An enumerable sequence representing the names of the values of a registry Key.","kind":"class","module":"std.windows.registry","name":"ValueNameSequence","package":"phobos","parentType":"","signature":"ValueNameSequence","url":"/ddoc/phobos/std/windows/registry.html#ValueNameSequence"},{"doc":"The number of values.","kind":"method","module":"std.windows.registry","name":"count","package":"phobos","parentType":"ValueNameSequence","signature":"size_t count()","url":"/ddoc/phobos/std/windows/registry/ValueNameSequence.count.html"},{"doc":"The name of the value at the given index.","kind":"method","module":"std.windows.registry","name":"getValueName","package":"phobos","parentType":"ValueNameSequence","signature":"string getValueName(size_t index)","url":"/ddoc/phobos/std/windows/registry/ValueNameSequence.getValueName.html"},{"doc":"The name of the value at the given index.","kind":"method","module":"std.windows.registry","name":"opIndex","package":"phobos","parentType":"ValueNameSequence","signature":"string opIndex(size_t index)","url":"/ddoc/phobos/std/windows/registry/ValueNameSequence.opIndex.html"},{"doc":"","kind":"method","module":"std.windows.registry","name":"opApply","package":"phobos","parentType":"ValueNameSequence","signature":"int opApply(scope  int  delegate(ref  string name)  dg)","url":"/ddoc/phobos/std/windows/registry/ValueNameSequence.opApply.html"},{"doc":"An enumerable sequence representing the values of a registry Key.","kind":"class","module":"std.windows.registry","name":"ValueSequence","package":"phobos","parentType":"","signature":"ValueSequence","url":"/ddoc/phobos/std/windows/registry.html#ValueSequence"},{"doc":"The number of values","kind":"method","module":"std.windows.registry","name":"count","package":"phobos","parentType":"ValueSequence","signature":"size_t count()","url":"/ddoc/phobos/std/windows/registry/ValueSequence.count.html"},{"doc":"The value at the given `index`.","kind":"method","module":"std.windows.registry","name":"getValue","package":"phobos","parentType":"ValueSequence","signature":"Value getValue(size_t index)","url":"/ddoc/phobos/std/windows/registry/ValueSequence.getValue.html"},{"doc":"The value at the given `index`.","kind":"method","module":"std.windows.registry","name":"opIndex","package":"phobos","parentType":"ValueSequence","signature":"Value opIndex(size_t index)","url":"/ddoc/phobos/std/windows/registry/ValueSequence.opIndex.html"},{"doc":"","kind":"method","module":"std.windows.registry","name":"opApply","package":"phobos","parentType":"ValueSequence","signature":"int opApply(scope  int  delegate(ref  Value value)  dg)","url":"/ddoc/phobos/std/windows/registry/ValueSequence.opApply.html"},{"doc":"Convert Win32 error code to string.","kind":"module","module":"std.windows.syserror","name":"std.windows.syserror","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/windows/syserror.html"},{"doc":"Read and write data in the $(LINK2 https://en.wikipedia.org/wiki/Zip_%28file_format%29, zip archive) format.","kind":"module","module":"std.zip","name":"std.zip","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/zip.html"},{"doc":"Thrown on error.","kind":"class","module":"std.zip","name":"ZipException","package":"phobos","parentType":"","signature":"ZipException : Exception","url":"/ddoc/phobos/std/zip.html#ZipException"},{"doc":"Compression method used by `ArchiveMember`.","kind":"enum","module":"std.zip","name":"CompressionMethod","package":"phobos","parentType":"","signature":"CompressionMethod : ushort","url":"/ddoc/phobos/std/zip.html#CompressionMethod"},{"doc":"No compression, just archiving.","kind":"enum_member","module":"std.zip","name":"none","package":"phobos","parentType":"","signature":"none = 0","url":"/ddoc/phobos/std/zip.html#CompressionMethod"},{"doc":"Deflate algorithm. Use zlib library to compress.","kind":"enum_member","module":"std.zip","name":"deflate","package":"phobos","parentType":"","signature":"deflate = 8","url":"/ddoc/phobos/std/zip.html#CompressionMethod"},{"doc":"A single file or directory inside the archive.","kind":"class","module":"std.zip","name":"ArchiveMember","package":"phobos","parentType":"","signature":"ArchiveMember","url":"/ddoc/phobos/std/zip.html#ArchiveMember"},{"doc":"The zip file format version needed to extract this member.","kind":"method","module":"std.zip","name":"extractVersion","package":"phobos","parentType":"ArchiveMember","signature":"ushort extractVersion()","url":"/ddoc/phobos/std/zip/ArchiveMember.extractVersion.html"},{"doc":"Cyclic redundancy check (CRC) value.","kind":"method","module":"std.zip","name":"crc32","package":"phobos","parentType":"ArchiveMember","signature":"uint crc32()","url":"/ddoc/phobos/std/zip/ArchiveMember.crc32.html"},{"doc":"Size of data of member in compressed form.","kind":"method","module":"std.zip","name":"compressedSize","package":"phobos","parentType":"ArchiveMember","signature":"uint compressedSize()","url":"/ddoc/phobos/std/zip/ArchiveMember.compressedSize.html"},{"doc":"Size of data of member in uncompressed form.","kind":"method","module":"std.zip","name":"expandedSize","package":"phobos","parentType":"ArchiveMember","signature":"uint expandedSize()","url":"/ddoc/phobos/std/zip/ArchiveMember.expandedSize.html"},{"doc":"Data of member in compressed form.","kind":"method","module":"std.zip","name":"compressedData","package":"phobos","parentType":"ArchiveMember","signature":"ubyte[] compressedData()","url":"/ddoc/phobos/std/zip/ArchiveMember.compressedData.html"},{"doc":"Get or set data of member in uncompressed form. When an existing archive is read `ZipArchive.expand` needs to be called before this can be accessed.","kind":"method","module":"std.zip","name":"expandedData","package":"phobos","parentType":"ArchiveMember","signature":"ubyte[] expandedData()","url":"/ddoc/phobos/std/zip/ArchiveMember.expandedData.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"expandedData","package":"phobos","parentType":"ArchiveMember","signature":"void expandedData(ubyte[]  ed)","url":"/ddoc/phobos/std/zip/ArchiveMember.expandedData.html"},{"doc":"Get or set the OS specific file attributes for this archive member.","kind":"method","module":"std.zip","name":"fileAttributes","package":"phobos","parentType":"ArchiveMember","signature":"void fileAttributes(uint  attr)","url":"/ddoc/phobos/std/zip/ArchiveMember.fileAttributes.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"fileAttributes","package":"phobos","parentType":"ArchiveMember","signature":"uint fileAttributes()","url":"/ddoc/phobos/std/zip/ArchiveMember.fileAttributes.html"},{"doc":"Get or set the last modification time for this member.","kind":"method","module":"std.zip","name":"time","package":"phobos","parentType":"ArchiveMember","signature":"DosFileTime time()","url":"/ddoc/phobos/std/zip/ArchiveMember.time.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"time","package":"phobos","parentType":"ArchiveMember","signature":"void time(SysTime time)","url":"/ddoc/phobos/std/zip/ArchiveMember.time.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"time","package":"phobos","parentType":"ArchiveMember","signature":"void time(DosFileTime time)","url":"/ddoc/phobos/std/zip/ArchiveMember.time.html"},{"doc":"Get or set compression method used for this member.","kind":"method","module":"std.zip","name":"compressionMethod","package":"phobos","parentType":"ArchiveMember","signature":"CompressionMethod compressionMethod()","url":"/ddoc/phobos/std/zip/ArchiveMember.compressionMethod.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"compressionMethod","package":"phobos","parentType":"ArchiveMember","signature":"void compressionMethod(CompressionMethod cm)","url":"/ddoc/phobos/std/zip/ArchiveMember.compressionMethod.html"},{"doc":"The index of this archive member within the archive. Set this to a different value for reordering the members of an archive.","kind":"method","module":"std.zip","name":"index","package":"phobos","parentType":"ArchiveMember","signature":"uint index(uint  value)","url":"/ddoc/phobos/std/zip/ArchiveMember.index.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"index","package":"phobos","parentType":"ArchiveMember","signature":"uint index()","url":"/ddoc/phobos/std/zip/ArchiveMember.index.html"},{"doc":"Object representing the entire archive. ZipArchives are collections of ArchiveMembers.","kind":"class","module":"std.zip","name":"ZipArchive","package":"phobos","parentType":"","signature":"ZipArchive","url":"/ddoc/phobos/std/zip.html#ZipArchive"},{"doc":"Array representing the entire contents of the archive.","kind":"method","module":"std.zip","name":"data","package":"phobos","parentType":"ZipArchive","signature":"ubyte[] data()","url":"/ddoc/phobos/std/zip/ZipArchive.data.html"},{"doc":"Number of ArchiveMembers in the directory.","kind":"method","module":"std.zip","name":"totalEntries","package":"phobos","parentType":"ZipArchive","signature":"uint totalEntries()","url":"/ddoc/phobos/std/zip/ZipArchive.totalEntries.html"},{"doc":"True when the archive is in Zip64 format. Set this to true to force building a Zip64 archive.","kind":"method","module":"std.zip","name":"isZip64","package":"phobos","parentType":"ZipArchive","signature":"bool isZip64()","url":"/ddoc/phobos/std/zip/ZipArchive.isZip64.html"},{"doc":"ditto","kind":"method","module":"std.zip","name":"isZip64","package":"phobos","parentType":"ZipArchive","signature":"void isZip64(bool  value)","url":"/ddoc/phobos/std/zip/ZipArchive.isZip64.html"},{"doc":"Associative array indexed by the name of each member of the archive.","kind":"method","module":"std.zip","name":"directory","package":"phobos","parentType":"ZipArchive","signature":"ArchiveMember[string] directory()","url":"/ddoc/phobos/std/zip/ZipArchive.directory.html"},{"doc":"Add a member to the archive. The file is compressed on the fly.","kind":"method","module":"std.zip","name":"addMember","package":"phobos","parentType":"ZipArchive","signature":"void addMember(ArchiveMember de)","url":"/ddoc/phobos/std/zip/ZipArchive.addMember.html"},{"doc":"Delete member `de` from the archive. Uses the name of the member to detect which element to delete.","kind":"method","module":"std.zip","name":"deleteMember","package":"phobos","parentType":"ZipArchive","signature":"void deleteMember(ArchiveMember de)","url":"/ddoc/phobos/std/zip/ZipArchive.deleteMember.html"},{"doc":"Construct the entire contents of the current members of the archive.","kind":"method","module":"std.zip","name":"build","package":"phobos","parentType":"ZipArchive","signature":"void[] build()","url":"/ddoc/phobos/std/zip/ZipArchive.build.html"},{"doc":"","kind":"method","module":"std.zip","name":"findEndOfCentralDirRecord","package":"phobos","parentType":"ZipArchive","signature":"uint findEndOfCentralDirRecord()","url":"/ddoc/phobos/std/zip/ZipArchive.findEndOfCentralDirRecord.html"},{"doc":"Decompress the contents of a member.","kind":"method","module":"std.zip","name":"expand","package":"phobos","parentType":"ZipArchive","signature":"ubyte[] expand(ArchiveMember de)","url":"/ddoc/phobos/std/zip/ZipArchive.expand.html"},{"doc":"","kind":"method","module":"std.zip","name":"getUshort","package":"phobos","parentType":"ZipArchive","signature":"ushort getUshort(uint  i)","url":"/ddoc/phobos/std/zip/ZipArchive.getUshort.html"},{"doc":"","kind":"method","module":"std.zip","name":"getUint","package":"phobos","parentType":"ZipArchive","signature":"uint getUint(uint  i)","url":"/ddoc/phobos/std/zip/ZipArchive.getUint.html"},{"doc":"","kind":"method","module":"std.zip","name":"getUlong","package":"phobos","parentType":"ZipArchive","signature":"ulong getUlong(uint  i)","url":"/ddoc/phobos/std/zip/ZipArchive.getUlong.html"},{"doc":"","kind":"method","module":"std.zip","name":"putUshort","package":"phobos","parentType":"ZipArchive","signature":"void putUshort(uint  i,  ushort  us)","url":"/ddoc/phobos/std/zip/ZipArchive.putUshort.html"},{"doc":"","kind":"method","module":"std.zip","name":"putUint","package":"phobos","parentType":"ZipArchive","signature":"void putUint(uint  i,  uint  ui)","url":"/ddoc/phobos/std/zip/ZipArchive.putUint.html"},{"doc":"","kind":"method","module":"std.zip","name":"putUlong","package":"phobos","parentType":"ZipArchive","signature":"void putUlong(uint  i,  ulong  ul)","url":"/ddoc/phobos/std/zip/ZipArchive.putUlong.html"},{"doc":"","kind":"method","module":"std.zip","name":"removeSegment","package":"phobos","parentType":"ZipArchive","signature":"void removeSegment(uint  start,  uint  end)","url":"/ddoc/phobos/std/zip/ZipArchive.removeSegment.html"},{"doc":"* Compress/decompress data using the $(HTTP www.zlib.net, zlib library). * * Examples: * * If you have a small buffer you can use $(LREF compress) ...","kind":"module","module":"std.zlib","name":"std.zlib","package":"phobos","parentType":"","signature":"","url":"/ddoc/phobos/std/zlib.html"},{"doc":"$(P Compute the Adler-32 checksum of a buffer's worth of data.)","kind":"function","module":"std.zlib","name":"adler32","package":"phobos","parentType":"","signature":"uint adler32(uint  adler,  const(void)[]  buf)","url":"/ddoc/phobos/std/zlib/adler32.html"},{"doc":"$(P Compute the CRC32 checksum of a buffer's worth of data.)","kind":"function","module":"std.zlib","name":"crc32","package":"phobos","parentType":"","signature":"uint crc32(uint  crc,  const(void)[]  buf)","url":"/ddoc/phobos/std/zlib/crc32.html"},{"doc":"$(P Compress data)","kind":"function","module":"std.zlib","name":"compress","package":"phobos","parentType":"","signature":"ubyte[] compress(const(void)[]  srcbuf,  int  level)","url":"/ddoc/phobos/std/zlib/compress.html"},{"doc":"ditto","kind":"function","module":"std.zlib","name":"compress","package":"phobos","parentType":"","signature":"ubyte[] compress(const(void)[]  srcbuf)","url":"/ddoc/phobos/std/zlib/compress.html"},{"doc":"Decompresses the data in srcbuf[]. Params: srcbuf  = buffer containing the compressed data. destlen = size of the uncompressed data. It need not be...","kind":"function","module":"std.zlib","name":"uncompress","package":"phobos","parentType":"","signature":"void[] uncompress(const(void)[]  srcbuf,  size_t destlen =  0u,  int  winbits =  15)","url":"/ddoc/phobos/std/zlib/uncompress.html"},{"doc":"Errors throw a ZlibException.","kind":"class","module":"std.zlib","name":"ZlibException","package":"phobos","parentType":"","signature":"ZlibException : Exception","url":"/ddoc/phobos/std/zlib.html#ZlibException"},{"doc":"","kind":"method","module":"std.zlib","name":"getmsg","package":"phobos","parentType":"ZlibException","signature":"string getmsg(int  errnum)","url":"/ddoc/phobos/std/zlib/ZlibException.getmsg.html"},{"doc":"the header format the compressed stream is wrapped in","kind":"enum","module":"std.zlib","name":"HeaderFormat","package":"phobos","parentType":"","signature":"HeaderFormat","url":"/ddoc/phobos/std/zlib.html#HeaderFormat"},{"doc":"a standard zlib header","kind":"enum_member","module":"std.zlib","name":"deflate","package":"phobos","parentType":"","signature":"deflate = ","url":"/ddoc/phobos/std/zlib.html#HeaderFormat"},{"doc":"a gzip file format header","kind":"enum_member","module":"std.zlib","name":"gzip","package":"phobos","parentType":"","signature":"gzip = ","url":"/ddoc/phobos/std/zlib.html#HeaderFormat"},{"doc":"used when decompressing. Try to automatically detect the stream format by looking at the data","kind":"enum_member","module":"std.zlib","name":"determineFromData","package":"phobos","parentType":"","signature":"determineFromData = ","url":"/ddoc/phobos/std/zlib.html#HeaderFormat"},{"doc":"Used when the data to be compressed is not all in one buffer.","kind":"class","module":"std.zlib","name":"Compress","package":"phobos","parentType":"","signature":"Compress","url":"/ddoc/phobos/std/zlib.html#Compress"},{"doc":"","kind":"method","module":"std.zlib","name":"error","package":"phobos","parentType":"Compress","signature":"void error(int  err)","url":"/ddoc/phobos/std/zlib/Compress.error.html"},{"doc":"Compress the data in buf and return the compressed data. Params: buf = data to compress","kind":"method","module":"std.zlib","name":"compress","package":"phobos","parentType":"Compress","signature":"const(void)[] compress(const(void)[]  buf)","url":"/ddoc/phobos/std/zlib/Compress.compress.html"},{"doc":"* Compress and return any remaining data. * The returned data should be appended to that returned by compress(). * Params: *  mode = one of the fol...","kind":"method","module":"std.zlib","name":"flush","package":"phobos","parentType":"Compress","signature":"void[] flush(int  mode =  Z_FINISH)","url":"/ddoc/phobos/std/zlib/Compress.flush.html"},{"doc":"Used when the data to be decompressed is not all in one buffer.","kind":"class","module":"std.zlib","name":"UnCompress","package":"phobos","parentType":"","signature":"UnCompress","url":"/ddoc/phobos/std/zlib.html#UnCompress"},{"doc":"","kind":"method","module":"std.zlib","name":"error","package":"phobos","parentType":"UnCompress","signature":"void error(int  err)","url":"/ddoc/phobos/std/zlib/UnCompress.error.html"},{"doc":"Decompress the data in buf and return the decompressed data. The buffers returned from successive calls to this should be concatenated together.","kind":"method","module":"std.zlib","name":"uncompress","package":"phobos","parentType":"UnCompress","signature":"const(void)[] uncompress(const(void)[]  buf)","url":"/ddoc/phobos/std/zlib/UnCompress.uncompress.html"},{"doc":"Decompress and return any remaining data. The returned data should be appended to that returned by uncompress(). The UnCompress object cannot be us...","kind":"method","module":"std.zlib","name":"flush","package":"phobos","parentType":"UnCompress","signature":"void[] flush()","url":"/ddoc/phobos/std/zlib/UnCompress.flush.html"},{"doc":"Returns true if all input data has been decompressed and no further data can be decompressed (inflate() returned Z_STREAM_END)","kind":"method","module":"std.zlib","name":"empty","package":"phobos","parentType":"UnCompress","signature":"bool empty()","url":"/ddoc/phobos/std/zlib/UnCompress.empty.html"},{"doc":"lilv LV2 audio plugin binding for Dlang","kind":"package","module":"","name":"lilv-d","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/index.html"},{"doc":"","kind":"module","module":"lilv.c","name":"lilv.c","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/c.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_free","package":"lilv-d","parentType":"","signature":"void lilv_free(void *  ptr)","url":"/ddoc/lilv-d/lilv/c/lilv_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uri_to_path","package":"lilv-d","parentType":"","signature":"const(char) * lilv_uri_to_path(const(char) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_uri_to_path.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_file_uri_parse","package":"lilv-d","parentType":"","signature":"char * lilv_file_uri_parse(const(char) *  uri,  char * *  hostname)","url":"/ddoc/lilv-d/lilv/c/lilv_file_uri_parse.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_uri","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_uri(LilvWorld *  world,  const(char) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_new_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_file_uri","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_file_uri(LilvWorld *  world,  const(char) *  host,  const(char) *  path)","url":"/ddoc/lilv-d/lilv/c/lilv_new_file_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_string","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_string(LilvWorld *  world,  const(char) *  str)","url":"/ddoc/lilv-d/lilv/c/lilv_new_string.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_int","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_int(LilvWorld *  world,  int  val)","url":"/ddoc/lilv-d/lilv/c/lilv_new_int.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_float","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_float(LilvWorld *  world,  float  val)","url":"/ddoc/lilv-d/lilv/c/lilv_new_float.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_new_bool","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_new_bool(LilvWorld *  world,  bool  val)","url":"/ddoc/lilv-d/lilv/c/lilv_new_bool.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_free","package":"lilv-d","parentType":"","signature":"void lilv_node_free(LilvNode *  val)","url":"/ddoc/lilv-d/lilv/c/lilv_node_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_duplicate","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_node_duplicate(const(LilvNode) *  val)","url":"/ddoc/lilv-d/lilv/c/lilv_node_duplicate.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_equals","package":"lilv-d","parentType":"","signature":"bool lilv_node_equals(const(LilvNode) *  value,  const(LilvNode) *  other)","url":"/ddoc/lilv-d/lilv/c/lilv_node_equals.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_get_turtle_token","package":"lilv-d","parentType":"","signature":"char * lilv_node_get_turtle_token(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_get_turtle_token.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_uri","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_uri(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_uri","package":"lilv-d","parentType":"","signature":"const(char) * lilv_node_as_uri(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_blank","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_blank(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_blank.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_blank","package":"lilv-d","parentType":"","signature":"const(char) * lilv_node_as_blank(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_blank.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_literal","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_literal(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_literal.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_string","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_string(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_string.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_string","package":"lilv-d","parentType":"","signature":"const(char) * lilv_node_as_string(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_string.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_get_path","package":"lilv-d","parentType":"","signature":"char * lilv_node_get_path(const(LilvNode) *  value,  char * *  hostname)","url":"/ddoc/lilv-d/lilv/c/lilv_node_get_path.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_float","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_float(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_float.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_float","package":"lilv-d","parentType":"","signature":"float lilv_node_as_float(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_float.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_int","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_int(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_int.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_int","package":"lilv-d","parentType":"","signature":"int lilv_node_as_int(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_int.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_is_bool","package":"lilv-d","parentType":"","signature":"bool lilv_node_is_bool(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_is_bool.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_node_as_bool","package":"lilv-d","parentType":"","signature":"bool lilv_node_as_bool(const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_node_as_bool.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_free","package":"lilv-d","parentType":"","signature":"void lilv_plugin_classes_free(LilvPluginClasses *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_size","package":"lilv-d","parentType":"","signature":"uint lilv_plugin_classes_size(const(LilvPluginClasses) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_size.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_begin","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_plugin_classes_begin(const(LilvPluginClasses) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_begin.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_get","package":"lilv-d","parentType":"","signature":"const(LilvPluginClass) * lilv_plugin_classes_get(const(LilvPluginClasses) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_next","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_plugin_classes_next(const(LilvPluginClasses) *  collection,  LilvIter *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_next.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_is_end","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_classes_is_end(const(LilvPluginClasses) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_is_end.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_classes_get_by_uri","package":"lilv-d","parentType":"","signature":"const(LilvPluginClass) * lilv_plugin_classes_get_by_uri(const(LilvPluginClasses) *  classes,  const(LilvNode) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_classes_get_by_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_free","package":"lilv-d","parentType":"","signature":"void lilv_scale_points_free(LilvScalePoints *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_size","package":"lilv-d","parentType":"","signature":"uint lilv_scale_points_size(const(LilvScalePoints) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_size.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_begin","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_scale_points_begin(const(LilvScalePoints) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_begin.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_get","package":"lilv-d","parentType":"","signature":"const(LilvScalePoint) * lilv_scale_points_get(const(LilvScalePoints) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_next","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_scale_points_next(const(LilvScalePoints) *  collection,  LilvIter *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_next.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_points_is_end","package":"lilv-d","parentType":"","signature":"bool lilv_scale_points_is_end(const(LilvScalePoints) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_points_is_end.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_free","package":"lilv-d","parentType":"","signature":"void lilv_uis_free(LilvUIs *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_size","package":"lilv-d","parentType":"","signature":"uint lilv_uis_size(const(LilvUIs) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_size.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_begin","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_uis_begin(const(LilvUIs) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_begin.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_get","package":"lilv-d","parentType":"","signature":"const(LilvUI) * lilv_uis_get(const(LilvUIs) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_next","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_uis_next(const(LilvUIs) *  collection,  LilvIter *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_next.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_is_end","package":"lilv-d","parentType":"","signature":"bool lilv_uis_is_end(const(LilvUIs) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_is_end.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_uis_get_by_uri","package":"lilv-d","parentType":"","signature":"const(LilvUI) * lilv_uis_get_by_uri(const(LilvUIs) *  uis,  const(LilvNode) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_uis_get_by_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_free","package":"lilv-d","parentType":"","signature":"void lilv_nodes_free(LilvNodes *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_size","package":"lilv-d","parentType":"","signature":"uint lilv_nodes_size(const(LilvNodes) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_size.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_begin","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_nodes_begin(const(LilvNodes) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_begin.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_get","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_nodes_get(const(LilvNodes) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_next","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_nodes_next(const(LilvNodes) *  collection,  LilvIter *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_next.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_is_end","package":"lilv-d","parentType":"","signature":"bool lilv_nodes_is_end(const(LilvNodes) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_is_end.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_get_first","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_nodes_get_first(const(LilvNodes) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_get_first.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_contains","package":"lilv-d","parentType":"","signature":"bool lilv_nodes_contains(const(LilvNodes) *  nodes,  const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_contains.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_nodes_merge","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_nodes_merge(const(LilvNodes) *  a,  const(LilvNodes) *  b)","url":"/ddoc/lilv-d/lilv/c/lilv_nodes_merge.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_size","package":"lilv-d","parentType":"","signature":"uint lilv_plugins_size(const(LilvPlugins) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_size.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_begin","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_plugins_begin(const(LilvPlugins) *  collection)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_begin.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_get","package":"lilv-d","parentType":"","signature":"const(LilvPlugin) * lilv_plugins_get(const(LilvPlugins) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_next","package":"lilv-d","parentType":"","signature":"LilvIter * lilv_plugins_next(const(LilvPlugins) *  collection,  LilvIter *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_next.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_is_end","package":"lilv-d","parentType":"","signature":"bool lilv_plugins_is_end(const(LilvPlugins) *  collection,  const(LilvIter) *  i)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_is_end.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugins_get_by_uri","package":"lilv-d","parentType":"","signature":"const(LilvPlugin) * lilv_plugins_get_by_uri(const(LilvPlugins) *  plugins,  const(LilvNode) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_plugins_get_by_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_new","package":"lilv-d","parentType":"","signature":"LilvWorld * lilv_world_new()","url":"/ddoc/lilv-d/lilv/c/lilv_world_new.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_set_option","package":"lilv-d","parentType":"","signature":"void lilv_world_set_option(LilvWorld *  world,  const(char) *  uri,  const(LilvNode) *  value)","url":"/ddoc/lilv-d/lilv/c/lilv_world_set_option.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_free","package":"lilv-d","parentType":"","signature":"void lilv_world_free(LilvWorld *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_load_all","package":"lilv-d","parentType":"","signature":"void lilv_world_load_all(LilvWorld *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_load_all.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_load_bundle","package":"lilv-d","parentType":"","signature":"void lilv_world_load_bundle(LilvWorld *  world,  const(LilvNode) *  bundle_uri)","url":"/ddoc/lilv-d/lilv/c/lilv_world_load_bundle.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_load_specifications","package":"lilv-d","parentType":"","signature":"void lilv_world_load_specifications(LilvWorld *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_load_specifications.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_load_plugin_classes","package":"lilv-d","parentType":"","signature":"void lilv_world_load_plugin_classes(LilvWorld *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_load_plugin_classes.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_unload_bundle","package":"lilv-d","parentType":"","signature":"int lilv_world_unload_bundle(LilvWorld *  world,  const(LilvNode) *  bundle_uri)","url":"/ddoc/lilv-d/lilv/c/lilv_world_unload_bundle.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_load_resource","package":"lilv-d","parentType":"","signature":"int lilv_world_load_resource(LilvWorld *  world,  const(LilvNode) *  resource)","url":"/ddoc/lilv-d/lilv/c/lilv_world_load_resource.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_unload_resource","package":"lilv-d","parentType":"","signature":"int lilv_world_unload_resource(LilvWorld *  world,  const(LilvNode) *  resource)","url":"/ddoc/lilv-d/lilv/c/lilv_world_unload_resource.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_get_plugin_class","package":"lilv-d","parentType":"","signature":"const(LilvPluginClass) * lilv_world_get_plugin_class(const(LilvWorld) *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_get_plugin_class.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_get_plugin_classes","package":"lilv-d","parentType":"","signature":"const(LilvPluginClasses) * lilv_world_get_plugin_classes(const(LilvWorld) *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_get_plugin_classes.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_get_all_plugins","package":"lilv-d","parentType":"","signature":"const(LilvPlugins) * lilv_world_get_all_plugins(const(LilvWorld) *  world)","url":"/ddoc/lilv-d/lilv/c/lilv_world_get_all_plugins.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_find_nodes","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_world_find_nodes(LilvWorld *  world,  const(LilvNode) *  subject,  const(LilvNode) *  predicate,  const(LilvNode) *  obj)","url":"/ddoc/lilv-d/lilv/c/lilv_world_find_nodes.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_get","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_world_get(LilvWorld *  world,  const(LilvNode) *  subject,  const(LilvNode) *  predicate,  const(LilvNode) *  obj)","url":"/ddoc/lilv-d/lilv/c/lilv_world_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_ask","package":"lilv-d","parentType":"","signature":"bool lilv_world_ask(LilvWorld *  world,  const(LilvNode) *  subject,  const(LilvNode) *  predicate,  const(LilvNode) *  obj)","url":"/ddoc/lilv-d/lilv/c/lilv_world_ask.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_world_get_symbol","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_world_get_symbol(LilvWorld *  world,  const(LilvNode) *  subject)","url":"/ddoc/lilv-d/lilv/c/lilv_world_get_symbol.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_verify","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_verify(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_verify.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_get_uri(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_bundle_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_get_bundle_uri(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_bundle_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_data_uris","package":"lilv-d","parentType":"","signature":"const(LilvNodes) * lilv_plugin_get_data_uris(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_data_uris.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_library_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_get_library_uri(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_library_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_name","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_plugin_get_name(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_name.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_class","package":"lilv-d","parentType":"","signature":"const(LilvPluginClass) * lilv_plugin_get_class(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_class.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_value","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_value(const(LilvPlugin) *  plugin,  const(LilvNode) *  predicate)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_value.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_has_feature","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_has_feature(const(LilvPlugin) *  plugin,  const(LilvNode) *  feature)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_has_feature.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_supported_features","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_supported_features(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_supported_features.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_required_features","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_required_features(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_required_features.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_optional_features","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_optional_features(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_optional_features.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_has_extension_data","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_has_extension_data(const(LilvPlugin) *  plugin,  const(LilvNode) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_has_extension_data.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_extension_data","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_extension_data(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_extension_data.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_num_ports","package":"lilv-d","parentType":"","signature":"uint lilv_plugin_get_num_ports(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_num_ports.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_port_ranges_float","package":"lilv-d","parentType":"","signature":"void lilv_plugin_get_port_ranges_float(const(LilvPlugin) *  plugin,  float *  min_values,  float *  max_values,  float *  def_values)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_port_ranges_float.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_num_ports_of_class","package":"lilv-d","parentType":"","signature":"uint lilv_plugin_get_num_ports_of_class(const(LilvPlugin) *  plugin,  const(LilvNode) *  class_1, ...)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_num_ports_of_class.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_num_ports_of_class_va","package":"lilv-d","parentType":"","signature":"uint lilv_plugin_get_num_ports_of_class_va(const(LilvPlugin) *  plugin,  const(LilvNode) *  class_1,  va_list args)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_num_ports_of_class_va.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_has_latency","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_has_latency(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_has_latency.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_latency_port_index","package":"lilv-d","parentType":"","signature":"uint lilv_plugin_get_latency_port_index(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_latency_port_index.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_port_by_index","package":"lilv-d","parentType":"","signature":"const(LilvPort) * lilv_plugin_get_port_by_index(const(LilvPlugin) *  plugin,  uint  index)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_port_by_index.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_port_by_symbol","package":"lilv-d","parentType":"","signature":"const(LilvPort) * lilv_plugin_get_port_by_symbol(const(LilvPlugin) *  plugin,  const(LilvNode) *  symbol)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_port_by_symbol.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_port_by_designation","package":"lilv-d","parentType":"","signature":"const(LilvPort) * lilv_plugin_get_port_by_designation(const(LilvPlugin) *  plugin,  const(LilvNode) *  port_class,  const(LilvNode) *  designation)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_port_by_designation.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_project","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_plugin_get_project(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_project.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_author_name","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_plugin_get_author_name(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_author_name.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_author_email","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_plugin_get_author_email(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_author_email.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_author_homepage","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_plugin_get_author_homepage(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_author_homepage.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_is_replaced","package":"lilv-d","parentType":"","signature":"bool lilv_plugin_is_replaced(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_is_replaced.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_write_description","package":"lilv-d","parentType":"","signature":"void lilv_plugin_write_description(LilvWorld *  world,  const(LilvPlugin) *  plugin,  const(LilvNode) *  base_uri,  FILE *  plugin_file)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_write_description.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_write_manifest_entry","package":"lilv-d","parentType":"","signature":"void lilv_plugin_write_manifest_entry(LilvWorld *  world,  const(LilvPlugin) *  plugin,  const(LilvNode) *  base_uri,  FILE *  manifest_file,  const(char) *  plugin_file_path)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_write_manifest_entry.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_related","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_plugin_get_related(const(LilvPlugin) *  plugin,  const(LilvNode) *  type)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_related.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_node","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_port_get_node(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_node.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_value","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_port_get_value(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  const(LilvNode) *  predicate)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_value.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_port_get(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  const(LilvNode) *  predicate)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_properties","package":"lilv-d","parentType":"","signature":"LilvNodes * lilv_port_get_properties(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_properties.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_has_property","package":"lilv-d","parentType":"","signature":"bool lilv_port_has_property(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  const(LilvNode) *  property)","url":"/ddoc/lilv-d/lilv/c/lilv_port_has_property.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_supports_event","package":"lilv-d","parentType":"","signature":"bool lilv_port_supports_event(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  const(LilvNode) *  event_type)","url":"/ddoc/lilv-d/lilv/c/lilv_port_supports_event.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_index","package":"lilv-d","parentType":"","signature":"uint lilv_port_get_index(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_index.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_symbol","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_port_get_symbol(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_symbol.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_name","package":"lilv-d","parentType":"","signature":"LilvNode * lilv_port_get_name(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_name.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_classes","package":"lilv-d","parentType":"","signature":"const(LilvNodes) * lilv_port_get_classes(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_classes.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_is_a","package":"lilv-d","parentType":"","signature":"bool lilv_port_is_a(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  const(LilvNode) *  port_class)","url":"/ddoc/lilv-d/lilv/c/lilv_port_is_a.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_range","package":"lilv-d","parentType":"","signature":"void lilv_port_get_range(const(LilvPlugin) *  plugin,  const(LilvPort) *  port,  LilvNode * *  def,  LilvNode * *  min,  LilvNode * *  max)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_range.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_port_get_scale_points","package":"lilv-d","parentType":"","signature":"LilvScalePoints * lilv_port_get_scale_points(const(LilvPlugin) *  plugin,  const(LilvPort) *  port)","url":"/ddoc/lilv-d/lilv/c/lilv_port_get_scale_points.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_new_from_world","package":"lilv-d","parentType":"","signature":"LilvState * lilv_state_new_from_world(LilvWorld *  world,  LV2_URID_Map *  map,  const(LilvNode) *  node)","url":"/ddoc/lilv-d/lilv/c/lilv_state_new_from_world.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_new_from_file","package":"lilv-d","parentType":"","signature":"LilvState * lilv_state_new_from_file(LilvWorld *  world,  LV2_URID_Map *  map,  const(LilvNode) *  subject,  const(char) *  path)","url":"/ddoc/lilv-d/lilv/c/lilv_state_new_from_file.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_new_from_string","package":"lilv-d","parentType":"","signature":"LilvState * lilv_state_new_from_string(LilvWorld *  world,  LV2_URID_Map *  map,  const(char) *  str)","url":"/ddoc/lilv-d/lilv/c/lilv_state_new_from_string.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_new_from_instance","package":"lilv-d","parentType":"","signature":"LilvState * lilv_state_new_from_instance(const(LilvPlugin) *  plugin,  LilvInstance *  instance,  LV2_URID_Map *  map,\n   const(char) *  scratch_dir,  const(char) *  copy_dir,  const(char) *  link_dir,  const(char) *  save_dir,\n   LilvGetPortValueFunc get_value,  void *  user_data,  uint  flags,  const(LV2_Feature *) *  features)","url":"/ddoc/lilv-d/lilv/c/lilv_state_new_from_instance.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_free","package":"lilv-d","parentType":"","signature":"void lilv_state_free(LilvState *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_equals","package":"lilv-d","parentType":"","signature":"bool lilv_state_equals(const(LilvState) *  a,  const(LilvState) *  b)","url":"/ddoc/lilv-d/lilv/c/lilv_state_equals.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_get_num_properties","package":"lilv-d","parentType":"","signature":"uint lilv_state_get_num_properties(const(LilvState) *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_get_num_properties.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_get_plugin_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_state_get_plugin_uri(const(LilvState) *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_get_plugin_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_get_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_state_get_uri(const(LilvState) *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_get_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_get_label","package":"lilv-d","parentType":"","signature":"const(char) * lilv_state_get_label(const(LilvState) *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_get_label.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_set_label","package":"lilv-d","parentType":"","signature":"void lilv_state_set_label(LilvState *  state,  const(char) *  label)","url":"/ddoc/lilv-d/lilv/c/lilv_state_set_label.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_set_metadata","package":"lilv-d","parentType":"","signature":"int lilv_state_set_metadata(LilvState *  state,  uint  key,  const(void) *  value,  size_t size,  uint  type,  uint  flags)","url":"/ddoc/lilv-d/lilv/c/lilv_state_set_metadata.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_emit_port_values","package":"lilv-d","parentType":"","signature":"void lilv_state_emit_port_values(const(LilvState) *  state,  LilvSetPortValueFunc set_value,  void *  user_data)","url":"/ddoc/lilv-d/lilv/c/lilv_state_emit_port_values.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_restore","package":"lilv-d","parentType":"","signature":"void lilv_state_restore(const(LilvState) *  state,  LilvInstance *  instance,  LilvSetPortValueFunc set_value,\n   void *  user_data,  uint  flags,  const(LV2_Feature *) *  features)","url":"/ddoc/lilv-d/lilv/c/lilv_state_restore.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_save","package":"lilv-d","parentType":"","signature":"int lilv_state_save(LilvWorld *  world,  LV2_URID_Map *  map,  LV2_URID_Unmap *  unmap,  const(LilvState) *  state,\n   const(char) *  uri,  const(char) *  dir,  const(char) *  filename)","url":"/ddoc/lilv-d/lilv/c/lilv_state_save.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_to_string","package":"lilv-d","parentType":"","signature":"char * lilv_state_to_string(LilvWorld *  world,  LV2_URID_Map *  map,  LV2_URID_Unmap *  unmap,  const(LilvState) *  state,\n   const(char) *  uri,  const(char) *  base_uri)","url":"/ddoc/lilv-d/lilv/c/lilv_state_to_string.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_state_delete","package":"lilv-d","parentType":"","signature":"int lilv_state_delete(LilvWorld *  world,  const(LilvState) *  state)","url":"/ddoc/lilv-d/lilv/c/lilv_state_delete.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_point_get_label","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_scale_point_get_label(const(LilvScalePoint) *  point)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_point_get_label.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_scale_point_get_value","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_scale_point_get_value(const(LilvScalePoint) *  point)","url":"/ddoc/lilv-d/lilv/c/lilv_scale_point_get_value.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_class_get_parent_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_class_get_parent_uri(const(LilvPluginClass) *  plugin_class)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_class_get_parent_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_class_get_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_class_get_uri(const(LilvPluginClass) *  plugin_class)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_class_get_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_class_get_label","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_plugin_class_get_label(const(LilvPluginClass) *  plugin_class)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_class_get_label.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_class_get_children","package":"lilv-d","parentType":"","signature":"LilvPluginClasses * lilv_plugin_class_get_children(const(LilvPluginClass) *  plugin_class)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_class_get_children.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_instantiate","package":"lilv-d","parentType":"","signature":"LilvInstance * lilv_plugin_instantiate(const(LilvPlugin) *  plugin,  double  sample_rate,  const(LV2_Feature *) *  features)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_instantiate.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_free","package":"lilv-d","parentType":"","signature":"void lilv_instance_free(LilvInstance *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_free.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_get_uri","package":"lilv-d","parentType":"","signature":"const(char) * lilv_instance_get_uri(const(LilvInstance) *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_get_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_connect_port","package":"lilv-d","parentType":"","signature":"void lilv_instance_connect_port(LilvInstance *  instance,  uint  port_index,  void *  data_location)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_connect_port.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_activate","package":"lilv-d","parentType":"","signature":"void lilv_instance_activate(LilvInstance *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_activate.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_run","package":"lilv-d","parentType":"","signature":"void lilv_instance_run(LilvInstance *  instance,  uint  sample_count)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_run.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_deactivate","package":"lilv-d","parentType":"","signature":"void lilv_instance_deactivate(LilvInstance *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_deactivate.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_get_extension_data","package":"lilv-d","parentType":"","signature":"const(void) * lilv_instance_get_extension_data(const(LilvInstance) *  instance,  const(char) *  uri)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_get_extension_data.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_get_descriptor","package":"lilv-d","parentType":"","signature":"const(LV2_Descriptor) * lilv_instance_get_descriptor(const(LilvInstance) *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_get_descriptor.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_instance_get_handle","package":"lilv-d","parentType":"","signature":"LV2_Handle lilv_instance_get_handle(const(LilvInstance) *  instance)","url":"/ddoc/lilv-d/lilv/c/lilv_instance_get_handle.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_plugin_get_uis","package":"lilv-d","parentType":"","signature":"LilvUIs * lilv_plugin_get_uis(const(LilvPlugin) *  plugin)","url":"/ddoc/lilv-d/lilv/c/lilv_plugin_get_uis.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_get_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_ui_get_uri(const(LilvUI) *  ui)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_get_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_get_classes","package":"lilv-d","parentType":"","signature":"const(LilvNodes) * lilv_ui_get_classes(const(LilvUI) *  ui)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_get_classes.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_is_a","package":"lilv-d","parentType":"","signature":"bool lilv_ui_is_a(const(LilvUI) *  ui,  const(LilvNode) *  class_uri)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_is_a.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_is_supported","package":"lilv-d","parentType":"","signature":"uint lilv_ui_is_supported(const(LilvUI) *  ui,  LilvUISupportedFunc supported_func,\n   const(LilvNode) *  container_type,  const(LilvNode) * *  ui_type)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_is_supported.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_get_bundle_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_ui_get_bundle_uri(const(LilvUI) *  ui)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_get_bundle_uri.html"},{"doc":"","kind":"function","module":"lilv.c","name":"lilv_ui_get_binary_uri","package":"lilv-d","parentType":"","signature":"const(LilvNode) * lilv_ui_get_binary_uri(const(LilvUI) *  ui)","url":"/ddoc/lilv-d/lilv/c/lilv_ui_get_binary_uri.html"},{"doc":"","kind":"alias","module":"lilv.c","name":"LV2_Handle","package":"lilv-d","parentType":"","signature":"LV2_Handle = void *","url":"/ddoc/lilv-d/lilv/c.html#LV2_Handle"},{"doc":"","kind":"alias","module":"lilv.c","name":"LV2_URID","package":"lilv-d","parentType":"","signature":"LV2_URID = uint","url":"/ddoc/lilv-d/lilv/c.html#LV2_URID"},{"doc":"","kind":"struct","module":"lilv.c","name":"LV2_Feature","package":"lilv-d","parentType":"","signature":"LV2_Feature","url":"/ddoc/lilv-d/lilv/c.html#LV2_Feature"},{"doc":"","kind":"struct","module":"lilv.c","name":"LV2_Descriptor","package":"lilv-d","parentType":"","signature":"LV2_Descriptor","url":"/ddoc/lilv-d/lilv/c.html#LV2_Descriptor"},{"doc":"","kind":"struct","module":"lilv.c","name":"LV2_URID_Map","package":"lilv-d","parentType":"","signature":"LV2_URID_Map","url":"/ddoc/lilv-d/lilv/c.html#LV2_URID_Map"},{"doc":"","kind":"struct","module":"lilv.c","name":"LV2_URID_Unmap","package":"lilv-d","parentType":"","signature":"LV2_URID_Unmap","url":"/ddoc/lilv-d/lilv/c.html#LV2_URID_Unmap"},{"doc":"","kind":"enum","module":"lilv.c","name":"LV2_State_Flags","package":"lilv-d","parentType":"","signature":"LV2_State_Flags : uint","url":"/ddoc/lilv-d/lilv/c.html#LV2_State_Flags"},{"doc":"","kind":"enum_member","module":"lilv.c","name":"IsPod","package":"lilv-d","parentType":"","signature":"IsPod = 1u <<  0u","url":"/ddoc/lilv-d/lilv/c.html#LV2_State_Flags"},{"doc":"","kind":"enum_member","module":"lilv.c","name":"IsPortable","package":"lilv-d","parentType":"","signature":"IsPortable = 1u <<  1u","url":"/ddoc/lilv-d/lilv/c.html#LV2_State_Flags"},{"doc":"","kind":"enum_member","module":"lilv.c","name":"IsNative","package":"lilv-d","parentType":"","signature":"IsNative = 1u <<  2u","url":"/ddoc/lilv-d/lilv/c.html#LV2_State_Flags"},{"doc":"","kind":"alias","module":"lilv.c","name":"StateFlags","package":"lilv-d","parentType":"","signature":"StateFlags = LV2_State_Flags","url":"/ddoc/lilv-d/lilv/c.html#StateFlags"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvPlugin","package":"lilv-d","parentType":"","signature":"LilvPlugin","url":"/ddoc/lilv-d/lilv/c.html#LilvPlugin"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvPluginClass","package":"lilv-d","parentType":"","signature":"LilvPluginClass","url":"/ddoc/lilv-d/lilv/c.html#LilvPluginClass"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvPort","package":"lilv-d","parentType":"","signature":"LilvPort","url":"/ddoc/lilv-d/lilv/c.html#LilvPort"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvScalePoint","package":"lilv-d","parentType":"","signature":"LilvScalePoint","url":"/ddoc/lilv-d/lilv/c.html#LilvScalePoint"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvUI","package":"lilv-d","parentType":"","signature":"LilvUI","url":"/ddoc/lilv-d/lilv/c.html#LilvUI"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvNode","package":"lilv-d","parentType":"","signature":"LilvNode","url":"/ddoc/lilv-d/lilv/c.html#LilvNode"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvWorld","package":"lilv-d","parentType":"","signature":"LilvWorld","url":"/ddoc/lilv-d/lilv/c.html#LilvWorld"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvState","package":"lilv-d","parentType":"","signature":"LilvState","url":"/ddoc/lilv-d/lilv/c.html#LilvState"},{"doc":"","kind":"struct","module":"lilv.c","name":"LilvInstance","package":"lilv-d","parentType":"","signature":"LilvInstance","url":"/ddoc/lilv-d/lilv/c.html#LilvInstance"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvIter","package":"lilv-d","parentType":"","signature":"LilvIter = void","url":"/ddoc/lilv-d/lilv/c.html#LilvIter"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvPluginClasses","package":"lilv-d","parentType":"","signature":"LilvPluginClasses = void","url":"/ddoc/lilv-d/lilv/c.html#LilvPluginClasses"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvPlugins","package":"lilv-d","parentType":"","signature":"LilvPlugins = void","url":"/ddoc/lilv-d/lilv/c.html#LilvPlugins"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvScalePoints","package":"lilv-d","parentType":"","signature":"LilvScalePoints = void","url":"/ddoc/lilv-d/lilv/c.html#LilvScalePoints"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvUIs","package":"lilv-d","parentType":"","signature":"LilvUIs = void","url":"/ddoc/lilv-d/lilv/c.html#LilvUIs"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvNodes","package":"lilv-d","parentType":"","signature":"LilvNodes = void","url":"/ddoc/lilv-d/lilv/c.html#LilvNodes"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvGetPortValueFunc","package":"lilv-d","parentType":"","signature":"LilvGetPortValueFunc = const(void) *  function(const(char) *  port_symbol,  void *  user_data,  uint *  size,\n   uint *  type)","url":"/ddoc/lilv-d/lilv/c.html#LilvGetPortValueFunc"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvSetPortValueFunc","package":"lilv-d","parentType":"","signature":"LilvSetPortValueFunc = void  function(const(char) *  port_symbol,  void *  user_data,  const(void) *  value,\n   uint  size,  uint  type)","url":"/ddoc/lilv-d/lilv/c.html#LilvSetPortValueFunc"},{"doc":"","kind":"alias","module":"lilv.c","name":"LilvUISupportedFunc","package":"lilv-d","parentType":"","signature":"LilvUISupportedFunc = uint  function(const(char) *  container_type_uri,  const(char) *  ui_type_uri)","url":"/ddoc/lilv-d/lilv/c.html#LilvUISupportedFunc"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_DOAP","package":"lilv-d","parentType":"","signature":"LILV_NS_DOAP","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_DOAP"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_FOAF","package":"lilv-d","parentType":"","signature":"LILV_NS_FOAF","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_FOAF"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_LILV","package":"lilv-d","parentType":"","signature":"LILV_NS_LILV","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_LILV"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_LV2","package":"lilv-d","parentType":"","signature":"LILV_NS_LV2","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_LV2"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_OWL","package":"lilv-d","parentType":"","signature":"LILV_NS_OWL","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_OWL"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_RDF","package":"lilv-d","parentType":"","signature":"LILV_NS_RDF","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_RDF"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_RDFS","package":"lilv-d","parentType":"","signature":"LILV_NS_RDFS","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_RDFS"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_NS_XSD","package":"lilv-d","parentType":"","signature":"LILV_NS_XSD","url":"/ddoc/lilv-d/lilv/c.html#LILV_NS_XSD"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_ATOM_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_ATOM_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_ATOM_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_AUDIO_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_AUDIO_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_AUDIO_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_CONTROL_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_CONTROL_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_CONTROL_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_CV_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_CV_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_CV_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_EVENT_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_EVENT_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_EVENT_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_INPUT_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_INPUT_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_INPUT_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_MIDI_EVENT","package":"lilv-d","parentType":"","signature":"LILV_URI_MIDI_EVENT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_MIDI_EVENT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_OUTPUT_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_OUTPUT_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_OUTPUT_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_URI_PORT","package":"lilv-d","parentType":"","signature":"LILV_URI_PORT","url":"/ddoc/lilv-d/lilv/c.html#LILV_URI_PORT"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_OPTION_FILTER_LANG","package":"lilv-d","parentType":"","signature":"LILV_OPTION_FILTER_LANG","url":"/ddoc/lilv-d/lilv/c.html#LILV_OPTION_FILTER_LANG"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_OPTION_DYN_MANIFEST","package":"lilv-d","parentType":"","signature":"LILV_OPTION_DYN_MANIFEST","url":"/ddoc/lilv-d/lilv/c.html#LILV_OPTION_DYN_MANIFEST"},{"doc":"","kind":"variable","module":"lilv.c","name":"LILV_OPTION_LV2_PATH","package":"lilv-d","parentType":"","signature":"LILV_OPTION_LV2_PATH","url":"/ddoc/lilv-d/lilv/c.html#LILV_OPTION_LV2_PATH"},{"doc":"","kind":"module","module":"lilv.collection","name":"lilv.collection","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/collection.html"},{"doc":"","kind":"module","module":"lilv.instance","name":"lilv.instance","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/instance.html"},{"doc":"A running LV2 plugin instance.","kind":"class","module":"lilv.instance","name":"Instance","package":"lilv-d","parentType":"","signature":"Instance","url":"/ddoc/lilv-d/lilv/instance.html#Instance"},{"doc":"","kind":"method","module":"lilv.instance","name":"handle","package":"lilv-d","parentType":"Instance","signature":"LilvInstance * handle()","url":"/ddoc/lilv-d/lilv/instance/Instance.handle.html"},{"doc":"","kind":"method","module":"lilv.instance","name":"world","package":"lilv-d","parentType":"Instance","signature":"World world()","url":"/ddoc/lilv-d/lilv/instance/Instance.world.html"},{"doc":"Instance URI","kind":"method","module":"lilv.instance","name":"uri","package":"lilv-d","parentType":"Instance","signature":"string uri()","url":"/ddoc/lilv-d/lilv/instance/Instance.uri.html"},{"doc":"Connect a port to a data location.","kind":"method","module":"lilv.instance","name":"connectPort","package":"lilv-d","parentType":"Instance","signature":"void connectPort(uint  portIndex,  void *  dataLocation)","url":"/ddoc/lilv-d/lilv/instance/Instance.connectPort.html"},{"doc":"Activate a plugin instance","kind":"method","module":"lilv.instance","name":"activate","package":"lilv-d","parentType":"Instance","signature":"void activate()","url":"/ddoc/lilv-d/lilv/instance/Instance.activate.html"},{"doc":"Run instance for sample_count frames.","kind":"method","module":"lilv.instance","name":"run","package":"lilv-d","parentType":"Instance","signature":"void run(uint  sampleCount)","url":"/ddoc/lilv-d/lilv/instance/Instance.run.html"},{"doc":"Deactivate a plugin instance.","kind":"method","module":"lilv.instance","name":"deactivate","package":"lilv-d","parentType":"Instance","signature":"void deactivate()","url":"/ddoc/lilv-d/lilv/instance/Instance.deactivate.html"},{"doc":"Get extension data from the plugin instance. Real-time safe. The type and semantics of the data returned is specific to the particular extension.","kind":"method","module":"lilv.instance","name":"extensionData","package":"lilv-d","parentType":"Instance","signature":"const(void) * extensionData(const(char) *  uri)","url":"/ddoc/lilv-d/lilv/instance/Instance.extensionData.html"},{"doc":"Get extension data from the plugin instance. NOT real-time safe (may allocate). The type and semantics of the data returned is specific to the part...","kind":"method","module":"lilv.instance","name":"extensionData","package":"lilv-d","parentType":"Instance","signature":"const(void) * extensionData(string uri)","url":"/ddoc/lilv-d/lilv/instance/Instance.extensionData.html"},{"doc":"Get the LV2_Descriptor of the plugin instance.","kind":"method","module":"lilv.instance","name":"descriptor","package":"lilv-d","parentType":"Instance","signature":"const(LV2_Descriptor) * descriptor()","url":"/ddoc/lilv-d/lilv/instance/Instance.descriptor.html"},{"doc":"Get the LV2_Handle of the plugin instance.","kind":"method","module":"lilv.instance","name":"lv2Handle","package":"lilv-d","parentType":"Instance","signature":"LV2_Handle lv2Handle()","url":"/ddoc/lilv-d/lilv/instance/Instance.lv2Handle.html"},{"doc":"","kind":"module","module":"lilv.node","name":"lilv.node","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/node.html"},{"doc":"Typed value (URI, string, int, float, bool, blank node, etc.).","kind":"class","module":"lilv.node","name":"Node","package":"lilv-d","parentType":"","signature":"Node","url":"/ddoc/lilv-d/lilv/node.html#Node"},{"doc":"The underlying C pointer (for passing back into lilv functions).","kind":"method","module":"lilv.node","name":"handle","package":"lilv-d","parentType":"Node","signature":"LilvNode * handle()","url":"/ddoc/lilv-d/lilv/node/Node.handle.html"},{"doc":"","kind":"method","module":"lilv.node","name":"world","package":"lilv-d","parentType":"Node","signature":"World world()","url":"/ddoc/lilv-d/lilv/node/Node.world.html"},{"doc":"Whether two nodes are equivalent.","kind":"method","module":"lilv.node","name":"opEquals","package":"lilv-d","parentType":"Node","signature":"bool opEquals(Object o)","url":"/ddoc/lilv-d/lilv/node/Node.opEquals.html"},{"doc":"Duplicate this node","kind":"method","module":"lilv.node","name":"dup","package":"lilv-d","parentType":"Node","signature":"Node dup()","url":"/ddoc/lilv-d/lilv/node/Node.dup.html"},{"doc":"Get Turtle/SPARQL token Returns: The token string","kind":"method","module":"lilv.node","name":"turtleToken","package":"lilv-d","parentType":"Node","signature":"string turtleToken()","url":"/ddoc/lilv-d/lilv/node/Node.turtleToken.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isUri","package":"lilv-d","parentType":"Node","signature":"bool isUri()","url":"/ddoc/lilv-d/lilv/node/Node.isUri.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isBlank","package":"lilv-d","parentType":"Node","signature":"bool isBlank()","url":"/ddoc/lilv-d/lilv/node/Node.isBlank.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isLiteral","package":"lilv-d","parentType":"Node","signature":"bool isLiteral()","url":"/ddoc/lilv-d/lilv/node/Node.isLiteral.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isString","package":"lilv-d","parentType":"Node","signature":"bool isString()","url":"/ddoc/lilv-d/lilv/node/Node.isString.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isFloat","package":"lilv-d","parentType":"Node","signature":"bool isFloat()","url":"/ddoc/lilv-d/lilv/node/Node.isFloat.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isInt","package":"lilv-d","parentType":"Node","signature":"bool isInt()","url":"/ddoc/lilv-d/lilv/node/Node.isInt.html"},{"doc":"","kind":"method","module":"lilv.node","name":"isBool","package":"lilv-d","parentType":"Node","signature":"bool isBool()","url":"/ddoc/lilv-d/lilv/node/Node.isBool.html"},{"doc":"URI string (only valid if isUri).","kind":"method","module":"lilv.node","name":"asUri","package":"lilv-d","parentType":"Node","signature":"string asUri()","url":"/ddoc/lilv-d/lilv/node/Node.asUri.html"},{"doc":"Blank-node identifier (only valid if isBlank).","kind":"method","module":"lilv.node","name":"asBlank","package":"lilv-d","parentType":"Node","signature":"string asBlank()","url":"/ddoc/lilv-d/lilv/node/Node.asBlank.html"},{"doc":"String value (works for many literal types).","kind":"method","module":"lilv.node","name":"asString","package":"lilv-d","parentType":"Node","signature":"string asString()","url":"/ddoc/lilv-d/lilv/node/Node.asString.html"},{"doc":"","kind":"method","module":"lilv.node","name":"asFloat","package":"lilv-d","parentType":"Node","signature":"float asFloat()","url":"/ddoc/lilv-d/lilv/node/Node.asFloat.html"},{"doc":"","kind":"method","module":"lilv.node","name":"asInt","package":"lilv-d","parentType":"Node","signature":"int asInt()","url":"/ddoc/lilv-d/lilv/node/Node.asInt.html"},{"doc":"","kind":"method","module":"lilv.node","name":"asBool","package":"lilv-d","parentType":"Node","signature":"bool asBool()","url":"/ddoc/lilv-d/lilv/node/Node.asBool.html"},{"doc":"Path of a file URI node. Params: hostname = Output hostname of URI Returns: The URI path or null if not a file URI.","kind":"method","module":"lilv.node","name":"getPath","package":"lilv-d","parentType":"Node","signature":"string getPath(out  string hostname)","url":"/ddoc/lilv-d/lilv/node/Node.getPath.html"},{"doc":"Path of a file URI node. Returns: The URI path or null if not a file URI.","kind":"method","module":"lilv.node","name":"getPath","package":"lilv-d","parentType":"Node","signature":"string getPath()","url":"/ddoc/lilv-d/lilv/node/Node.getPath.html"},{"doc":"Parse a file URI string Params: uri = URI string hostname = Output hostname string Returns: File name portion of the URI","kind":"method","module":"lilv.node","name":"fileUriParse","package":"lilv-d","parentType":"Node","signature":"string fileUriParse(string uri,  out  string hostname)","url":"/ddoc/lilv-d/lilv/node/Node.fileUriParse.html"},{"doc":"A collection of Node values.","kind":"class","module":"lilv.node","name":"Nodes","package":"lilv-d","parentType":"","signature":"Nodes","url":"/ddoc/lilv-d/lilv/node.html#Nodes"},{"doc":"","kind":"method","module":"lilv.node","name":"contains","package":"lilv-d","parentType":"Nodes","signature":"bool contains(Node value)","url":"/ddoc/lilv-d/lilv/node/Nodes.contains.html"},{"doc":"Merge two collections. Params: a = First collection b = Second collection (must be part of the same World as `a`) Returns: New merged collection","kind":"method","module":"lilv.node","name":"merge","package":"lilv-d","parentType":"Nodes","signature":"Nodes merge(Nodes a,  Nodes b)","url":"/ddoc/lilv-d/lilv/node/Nodes.merge.html"},{"doc":"","kind":"module","module":"lilv","name":"lilv","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv.html"},{"doc":"","kind":"module","module":"lilv.plugin","name":"lilv.plugin","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/plugin.html"},{"doc":"An LV2 plugin.","kind":"class","module":"lilv.plugin","name":"Plugin","package":"lilv-d","parentType":"","signature":"Plugin","url":"/ddoc/lilv-d/lilv/plugin.html#Plugin"},{"doc":"","kind":"method","module":"lilv.plugin","name":"handle","package":"lilv-d","parentType":"Plugin","signature":"const(LilvPlugin) * handle()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.handle.html"},{"doc":"","kind":"method","module":"lilv.plugin","name":"world","package":"lilv-d","parentType":"Plugin","signature":"World world()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.world.html"},{"doc":"Check if plugin is valid.","kind":"method","module":"lilv.plugin","name":"verify","package":"lilv-d","parentType":"Plugin","signature":"bool verify()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.verify.html"},{"doc":"Get the URI of plugin.","kind":"method","module":"lilv.plugin","name":"uri","package":"lilv-d","parentType":"Plugin","signature":"Node uri()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.uri.html"},{"doc":"Get the (resolvable) URI of the plugin’s “main” bundle.","kind":"method","module":"lilv.plugin","name":"bundleUri","package":"lilv-d","parentType":"Plugin","signature":"Node bundleUri()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.bundleUri.html"},{"doc":"Get the (resolvable) URI of the shared library for plugin.","kind":"method","module":"lilv.plugin","name":"libraryUri","package":"lilv-d","parentType":"Plugin","signature":"Node libraryUri()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.libraryUri.html"},{"doc":"Get the (resolvable) URIs of the RDF data files that define a plugin.","kind":"method","module":"lilv.plugin","name":"dataUris","package":"lilv-d","parentType":"Plugin","signature":"Nodes dataUris()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.dataUris.html"},{"doc":"Get the name of plugin.","kind":"method","module":"lilv.plugin","name":"name","package":"lilv-d","parentType":"Plugin","signature":"Node name()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.name.html"},{"doc":"Get the class this plugin belongs to (like “Filters” or “Effects”). Returns: Plugin class name","kind":"method","module":"lilv.plugin","name":"pluginClass","package":"lilv-d","parentType":"Plugin","signature":"PluginClass pluginClass()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.pluginClass.html"},{"doc":"Get a value associated with the plugin in a plugin’s data files. Params: predicate = must be either a URI or a QName.","kind":"method","module":"lilv.plugin","name":"getValue","package":"lilv-d","parentType":"Plugin","signature":"Nodes getValue(Node predicate)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.getValue.html"},{"doc":"Return whether a feature is supported by a plugin. Returns: This will return true if the feature is an optional or required feature of the plugin.","kind":"method","module":"lilv.plugin","name":"hasFeature","package":"lilv-d","parentType":"Plugin","signature":"bool hasFeature(Node feature)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.hasFeature.html"},{"doc":"Get the LV2 Features supported (required or optionally) by a plugin.","kind":"method","module":"lilv.plugin","name":"supportedFeatures","package":"lilv-d","parentType":"Plugin","signature":"Nodes supportedFeatures()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.supportedFeatures.html"},{"doc":"Get the LV2 Features required by a plugin.","kind":"method","module":"lilv.plugin","name":"requiredFeatures","package":"lilv-d","parentType":"Plugin","signature":"Nodes requiredFeatures()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.requiredFeatures.html"},{"doc":"Get the LV2 Features optionally supported by a plugin.","kind":"method","module":"lilv.plugin","name":"optionalFeatures","package":"lilv-d","parentType":"Plugin","signature":"Nodes optionalFeatures()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.optionalFeatures.html"},{"doc":"Return whether or not a plugin provides a specific extension data. Params: uri = The URI of the extension data Returns: true if the plugin has the ...","kind":"method","module":"lilv.plugin","name":"hasExtensionData","package":"lilv-d","parentType":"Plugin","signature":"bool hasExtensionData(Node uri)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.hasExtensionData.html"},{"doc":"Get a sequence of all extension data provided by a plugin.","kind":"method","module":"lilv.plugin","name":"extensionData","package":"lilv-d","parentType":"Plugin","signature":"Nodes extensionData()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.extensionData.html"},{"doc":"Get the number of ports on this plugin.","kind":"method","module":"lilv.plugin","name":"numPorts","package":"lilv-d","parentType":"Plugin","signature":"uint numPorts()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.numPorts.html"},{"doc":"Get the port ranges (minimum, maximum and default values) for all ports.","kind":"method","module":"lilv.plugin","name":"getPortRangesFloat","package":"lilv-d","parentType":"Plugin","signature":"void getPortRangesFloat(float[]  minValues,  float[]  maxValues,  float[]  defValues)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.getPortRangesFloat.html"},{"doc":"Return whether or not the plugin introduces (and reports) latency.","kind":"method","module":"lilv.plugin","name":"hasLatency","package":"lilv-d","parentType":"Plugin","signature":"bool hasLatency()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.hasLatency.html"},{"doc":"Return the index of the plugin’s latency port.","kind":"method","module":"lilv.plugin","name":"latencyPortIndex","package":"lilv-d","parentType":"Plugin","signature":"uint latencyPortIndex()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.latencyPortIndex.html"},{"doc":"Get a port on plugin by index. Params: index = Port index Returns: The port or null","kind":"method","module":"lilv.plugin","name":"portByIndex","package":"lilv-d","parentType":"Plugin","signature":"Port portByIndex(uint  index)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.portByIndex.html"},{"doc":"Get a port on plugin by symbol. Note this function is slower than portByIndex(), especially on plugins with a very large number of ports. Returns: ...","kind":"method","module":"lilv.plugin","name":"portBySymbol","package":"lilv-d","parentType":"Plugin","signature":"Port portBySymbol(Node symbol)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.portBySymbol.html"},{"doc":"Get a port on plugin by its lv2:designation.","kind":"method","module":"lilv.plugin","name":"portByDesignation","package":"lilv-d","parentType":"Plugin","signature":"Port portByDesignation(Node portClass,  Node designation)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.portByDesignation.html"},{"doc":"Get the project the plugin is a part of.","kind":"method","module":"lilv.plugin","name":"project","package":"lilv-d","parentType":"Plugin","signature":"Node project()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.project.html"},{"doc":"Get the full name of the plugin’s author.","kind":"method","module":"lilv.plugin","name":"authorName","package":"lilv-d","parentType":"Plugin","signature":"Node authorName()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.authorName.html"},{"doc":"Get the email address of the plugin’s author. Returns: null if author email address is not present.","kind":"method","module":"lilv.plugin","name":"authorEmail","package":"lilv-d","parentType":"Plugin","signature":"Node authorEmail()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.authorEmail.html"},{"doc":"Get the address of the plugin author’s home page. Returns: null if author homepage is not present.","kind":"method","module":"lilv.plugin","name":"authorHomepage","package":"lilv-d","parentType":"Plugin","signature":"Node authorHomepage()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.authorHomepage.html"},{"doc":"Return true if plugin has been replaced by another plugin. The plugin will still be usable, but hosts should hide them from their user interfaces t...","kind":"method","module":"lilv.plugin","name":"isReplaced","package":"lilv-d","parentType":"Plugin","signature":"bool isReplaced()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.isReplaced.html"},{"doc":"Get the resources related to plugin with lv2:appliesTo.","kind":"method","module":"lilv.plugin","name":"related","package":"lilv-d","parentType":"Plugin","signature":"Nodes related(Node type)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.related.html"},{"doc":"Get all UIs for plugin. Returns: Collection of UIs or null","kind":"method","module":"lilv.plugin","name":"uis","package":"lilv-d","parentType":"Plugin","signature":"UIs uis()","url":"/ddoc/lilv-d/lilv/plugin/Plugin.uis.html"},{"doc":"Instantiate a plugin.","kind":"method","module":"lilv.plugin","name":"instantiate","package":"lilv-d","parentType":"Plugin","signature":"Instance instantiate(double  sampleRate,  const(LV2_Feature *) *  features =  null)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.instantiate.html"},{"doc":"Instantiate a plugin.","kind":"method","module":"lilv.plugin","name":"instantiate","package":"lilv-d","parentType":"Plugin","signature":"Instance instantiate(double  sampleRate,  Feature[]  features =  null)","url":"/ddoc/lilv-d/lilv/plugin/Plugin.instantiate.html"},{"doc":"Collection of all plugins discovered by a World.","kind":"class","module":"lilv.plugin","name":"Plugins","package":"lilv-d","parentType":"","signature":"Plugins","url":"/ddoc/lilv-d/lilv/plugin.html#Plugins"},{"doc":"Get plugin by URI Params: uri = URI Returns: Plugin with the given URI or null","kind":"method","module":"lilv.plugin","name":"getByUri","package":"lilv-d","parentType":"Plugins","signature":"Plugin getByUri(Node uri)","url":"/ddoc/lilv-d/lilv/plugin/Plugins.getByUri.html"},{"doc":"","kind":"module","module":"lilv.plugin_class","name":"lilv.plugin_class","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/plugin_class.html"},{"doc":"An LV2 plugin class (e.g. \"Filters\", \"Dynamics\", \"Oscillators\").","kind":"class","module":"lilv.plugin_class","name":"PluginClass","package":"lilv-d","parentType":"","signature":"PluginClass","url":"/ddoc/lilv-d/lilv/plugin_class.html#PluginClass"},{"doc":"","kind":"method","module":"lilv.plugin_class","name":"handle","package":"lilv-d","parentType":"PluginClass","signature":"const(LilvPluginClass) * handle()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.handle.html"},{"doc":"","kind":"method","module":"lilv.plugin_class","name":"world","package":"lilv-d","parentType":"PluginClass","signature":"World world()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.world.html"},{"doc":"URI of this class","kind":"method","module":"lilv.plugin_class","name":"uri","package":"lilv-d","parentType":"PluginClass","signature":"Node uri()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.uri.html"},{"doc":"Label such as \"Oscillators\"","kind":"method","module":"lilv.plugin_class","name":"label","package":"lilv-d","parentType":"PluginClass","signature":"Node label()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.label.html"},{"doc":"Parent class URI, or null","kind":"method","module":"lilv.plugin_class","name":"parentUri","package":"lilv-d","parentType":"PluginClass","signature":"Node parentUri()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.parentUri.html"},{"doc":"Direct subclasses (owned collection).","kind":"method","module":"lilv.plugin_class","name":"children","package":"lilv-d","parentType":"PluginClass","signature":"PluginClasses children()","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClass.children.html"},{"doc":"Collection of PluginClass.","kind":"class","module":"lilv.plugin_class","name":"PluginClasses","package":"lilv-d","parentType":"","signature":"PluginClasses","url":"/ddoc/lilv-d/lilv/plugin_class.html#PluginClasses"},{"doc":"Get a plugin class from classes by URI. Params: uri = URI Returns: Collection of classes or null if none found","kind":"method","module":"lilv.plugin_class","name":"getByUri","package":"lilv-d","parentType":"PluginClasses","signature":"PluginClass getByUri(Node uri)","url":"/ddoc/lilv-d/lilv/plugin_class/PluginClasses.getByUri.html"},{"doc":"","kind":"module","module":"lilv.port","name":"lilv.port","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/port.html"},{"doc":"A port on a Plugin.","kind":"class","module":"lilv.port","name":"Port","package":"lilv-d","parentType":"","signature":"Port","url":"/ddoc/lilv-d/lilv/port.html#Port"},{"doc":"","kind":"method","module":"lilv.port","name":"handle","package":"lilv-d","parentType":"Port","signature":"const(LilvPort) * handle()","url":"/ddoc/lilv-d/lilv/port/Port.handle.html"},{"doc":"","kind":"method","module":"lilv.port","name":"world","package":"lilv-d","parentType":"Port","signature":"World world()","url":"/ddoc/lilv-d/lilv/port/Port.world.html"},{"doc":"RDF node for this port","kind":"method","module":"lilv.port","name":"node","package":"lilv-d","parentType":"Port","signature":"Node node()","url":"/ddoc/lilv-d/lilv/port/Port.node.html"},{"doc":"Port index (may change between plugin versions).","kind":"method","module":"lilv.port","name":"index","package":"lilv-d","parentType":"Port","signature":"uint index()","url":"/ddoc/lilv-d/lilv/port/Port.index.html"},{"doc":"Short symbol (valid C identifier).","kind":"method","module":"lilv.port","name":"symbol","package":"lilv-d","parentType":"Port","signature":"Node symbol()","url":"/ddoc/lilv-d/lilv/port/Port.symbol.html"},{"doc":"Human-readable name","kind":"method","module":"lilv.port","name":"name","package":"lilv-d","parentType":"Port","signature":"Node name()","url":"/ddoc/lilv-d/lilv/port/Port.name.html"},{"doc":"All classes of this port","kind":"method","module":"lilv.port","name":"classes","package":"lilv-d","parentType":"Port","signature":"Nodes classes()","url":"/ddoc/lilv-d/lilv/port/Port.classes.html"},{"doc":"Determine if a port is of a given class (input, output, audio, etc).","kind":"method","module":"lilv.port","name":"isA","package":"lilv-d","parentType":"Port","signature":"bool isA(Node portClass)","url":"/ddoc/lilv-d/lilv/port/Port.isA.html"},{"doc":"Return whether a port has a certain property. Params: property = Property name Returns: true if port has the property","kind":"method","module":"lilv.port","name":"hasProperty","package":"lilv-d","parentType":"Port","signature":"bool hasProperty(Node property)","url":"/ddoc/lilv-d/lilv/port/Port.hasProperty.html"},{"doc":"Return whether a port supports a certain event type. More precisely, this returns true iff the port has an atom:supports or an ev:supportsEvent pro...","kind":"method","module":"lilv.port","name":"supportsEvent","package":"lilv-d","parentType":"Port","signature":"bool supportsEvent(Node eventType)","url":"/ddoc/lilv-d/lilv/port/Port.supportsEvent.html"},{"doc":"Get a value from a port. Port analog of Plugin.getValue() Params: predicate = URI or a QName Returns: Values associated with the predicate or null ...","kind":"method","module":"lilv.port","name":"getValue","package":"lilv-d","parentType":"Port","signature":"Nodes getValue(Node predicate)","url":"/ddoc/lilv-d/lilv/port/Port.getValue.html"},{"doc":"Get a single value from a port. Like getValue() but just returns the first matching value. Params: predicate = URI or a QName Returns: First value ...","kind":"method","module":"lilv.port","name":"get","package":"lilv-d","parentType":"Port","signature":"Node get(Node predicate)","url":"/ddoc/lilv-d/lilv/port/Port.get.html"},{"doc":"Return the LV2 port properties of a port. Returns: A collection of LV2 port properties or null if none","kind":"method","module":"lilv.port","name":"properties","package":"lilv-d","parentType":"Port","signature":"Nodes properties()","url":"/ddoc/lilv-d/lilv/port/Port.properties.html"},{"doc":"Default / min / max values. Any of the three may be null if the port has no such value. Params: def = Output default value min = Output minimum val...","kind":"method","module":"lilv.port","name":"getRange","package":"lilv-d","parentType":"Port","signature":"void getRange(out  Node def,  out  Node min,  out  Node max)","url":"/ddoc/lilv-d/lilv/port/Port.getRange.html"},{"doc":"Get the scale points (enumeration values) of a port. This returns a collection of \"interesting\" named values of a port, which for example might be ...","kind":"method","module":"lilv.port","name":"scalePoints","package":"lilv-d","parentType":"Port","signature":"ScalePoints scalePoints()","url":"/ddoc/lilv-d/lilv/port/Port.scalePoints.html"},{"doc":"","kind":"module","module":"lilv.scale_point","name":"lilv.scale_point","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/scale_point.html"},{"doc":"An \"interesting\" named value of a port (enumeration entry).","kind":"class","module":"lilv.scale_point","name":"ScalePoint","package":"lilv-d","parentType":"","signature":"ScalePoint","url":"/ddoc/lilv-d/lilv/scale_point.html#ScalePoint"},{"doc":"","kind":"method","module":"lilv.scale_point","name":"world","package":"lilv-d","parentType":"ScalePoint","signature":"World world()","url":"/ddoc/lilv-d/lilv/scale_point/ScalePoint.world.html"},{"doc":"Get the label of this scale point (enumeration value). Returns: The scale point label","kind":"method","module":"lilv.scale_point","name":"label","package":"lilv-d","parentType":"ScalePoint","signature":"Node label()","url":"/ddoc/lilv-d/lilv/scale_point/ScalePoint.label.html"},{"doc":"Get the value of this scale point (enumeration value). Returns: The scale point value","kind":"method","module":"lilv.scale_point","name":"value","package":"lilv-d","parentType":"ScalePoint","signature":"Node value()","url":"/ddoc/lilv-d/lilv/scale_point/ScalePoint.value.html"},{"doc":"Collection of ScalePoint.","kind":"class","module":"lilv.scale_point","name":"ScalePoints","package":"lilv-d","parentType":"","signature":"ScalePoints","url":"/ddoc/lilv-d/lilv/scale_point.html#ScalePoints"},{"doc":"","kind":"module","module":"lilv.state","name":"lilv.state","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/state.html"},{"doc":"Snapshot of plugin state (presets, session save/restore).","kind":"class","module":"lilv.state","name":"State","package":"lilv-d","parentType":"","signature":"State","url":"/ddoc/lilv-d/lilv/state.html#State"},{"doc":"","kind":"method","module":"lilv.state","name":"handle","package":"lilv-d","parentType":"State","signature":"LilvState * handle()","url":"/ddoc/lilv-d/lilv/state/State.handle.html"},{"doc":"","kind":"method","module":"lilv.state","name":"world","package":"lilv-d","parentType":"State","signature":"World world()","url":"/ddoc/lilv-d/lilv/state/State.world.html"},{"doc":"Number of properties in this state.","kind":"method","module":"lilv.state","name":"numProperties","package":"lilv-d","parentType":"State","signature":"uint numProperties()","url":"/ddoc/lilv-d/lilv/state/State.numProperties.html"},{"doc":"URI of the plugin this state applies to.","kind":"method","module":"lilv.state","name":"pluginUri","package":"lilv-d","parentType":"State","signature":"Node pluginUri()","url":"/ddoc/lilv-d/lilv/state/State.pluginUri.html"},{"doc":"State URI if set, or null.","kind":"method","module":"lilv.state","name":"uri","package":"lilv-d","parentType":"State","signature":"Node uri()","url":"/ddoc/lilv-d/lilv/state/State.uri.html"},{"doc":"Human-readable label, or null.","kind":"method","module":"lilv.state","name":"label","package":"lilv-d","parentType":"State","signature":"string label()","url":"/ddoc/lilv-d/lilv/state/State.label.html"},{"doc":"Set a human-readable label for this state.","kind":"method","module":"lilv.state","name":"label","package":"lilv-d","parentType":"State","signature":"void label(string value)","url":"/ddoc/lilv-d/lilv/state/State.label.html"},{"doc":"Whether two states are equivalent.","kind":"method","module":"lilv.state","name":"opEquals","package":"lilv-d","parentType":"State","signature":"bool opEquals(Object o)","url":"/ddoc/lilv-d/lilv/state/State.opEquals.html"},{"doc":"Set a single metadata property on this state.","kind":"method","module":"lilv.state","name":"setMetadata","package":"lilv-d","parentType":"State","signature":"int setMetadata(uint  key,  const(void)[]  value,  uint  type,  StateFlags flags)","url":"/ddoc/lilv-d/lilv/state/State.setMetadata.html"},{"doc":"Emit all port values in this state via a callback. Does not touch a live Instance; useful for hosts that apply ports themselves. Low overhead C cal...","kind":"method","module":"lilv.state","name":"emitPortValues","package":"lilv-d","parentType":"State","signature":"void emitPortValues(LilvSetPortValueFunc setValue,  void *  userData)","url":"/ddoc/lilv-d/lilv/state/State.emitPortValues.html"},{"doc":"Emit all port values in this state via a callback. Does not touch a live Instance; useful for hosts that apply ports themselves. Uses a delegate wh...","kind":"method","module":"lilv.state","name":"emitPortValues","package":"lilv-d","parentType":"State","signature":"void emitPortValues(SetPortValueDelegate setValueDg)","url":"/ddoc/lilv-d/lilv/state/State.emitPortValues.html"},{"doc":"Restore this state onto a plugin instance. Low overhead C callback version which is potentially real-time safe.","kind":"method","module":"lilv.state","name":"restore","package":"lilv-d","parentType":"State","signature":"void restore(Instance instance,  LilvSetPortValueFunc setValue,  void *  userData,  StateFlags flags,\n       const(LV2_Feature *) *  features =  null)","url":"/ddoc/lilv-d/lilv/state/State.restore.html"},{"doc":"Restore this state onto a plugin instance. Uses a delegate instead of a C callback and dynamic array of Feature structures which may result in GC a...","kind":"method","module":"lilv.state","name":"restore","package":"lilv-d","parentType":"State","signature":"void restore(Instance instance,  SetPortValueDelegate setValueDg,  StateFlags flags,  Feature[]  features =  null)","url":"/ddoc/lilv-d/lilv/state/State.restore.html"},{"doc":"Save this state to a bundle directory / file on disk.","kind":"method","module":"lilv.state","name":"save","package":"lilv-d","parentType":"State","signature":"int save(LV2_URID_Map *  map,  LV2_URID_Unmap *  unmap,  string uri,  string dir,\n            string filename)","url":"/ddoc/lilv-d/lilv/state/State.save.html"},{"doc":"Serialize this state to a string (Turtle).","kind":"method","module":"lilv.state","name":"toString","package":"lilv-d","parentType":"State","signature":"string toString(LV2_URID_Map *  map,  LV2_URID_Unmap *  unmap,  string uri =  null,  string baseUri =  null)","url":"/ddoc/lilv-d/lilv/state/State.toString.html"},{"doc":"Delete the resources for this state from the World (saved bundle files, etc.). Returns: 0 on success","kind":"method","module":"lilv.state","name":"deleteFromWorld","package":"lilv-d","parentType":"State","signature":"int deleteFromWorld()","url":"/ddoc/lilv-d/lilv/state/State.deleteFromWorld.html"},{"doc":"Load state from a resource already present in the World model.","kind":"method","module":"lilv.state","name":"fromWorld","package":"lilv-d","parentType":"State","signature":"State fromWorld(World world,  LV2_URID_Map *  map,  Node subject)","url":"/ddoc/lilv-d/lilv/state/State.fromWorld.html"},{"doc":"Load state from a Turtle file.","kind":"method","module":"lilv.state","name":"fromFile","package":"lilv-d","parentType":"State","signature":"State fromFile(World world,  LV2_URID_Map *  map,  Node subject,  string path)","url":"/ddoc/lilv-d/lilv/state/State.fromFile.html"},{"doc":"Load state from a string previously produced by toString(). Params: world = Lilv world map = URID map str = The string state returned by toString()...","kind":"method","module":"lilv.state","name":"fromString","package":"lilv-d","parentType":"State","signature":"State fromString(World world,  LV2_URID_Map *  map,  string str)","url":"/ddoc/lilv-d/lilv/state/State.fromString.html"},{"doc":"Snapshot state from a live plugin instance.","kind":"method","module":"lilv.state","name":"fromInstance","package":"lilv-d","parentType":"State","signature":"State fromInstance(Plugin plugin,  Instance instance,  LV2_URID_Map *  map,  string scratchDir,  string copyDir,\n       string linkDir,  string saveDir,  LilvGetPortValueFunc getValue,  void *  userData,  StateFlags flags,\n       const(LV2_Feature *) *  features =  null)","url":"/ddoc/lilv-d/lilv/state/State.fromInstance.html"},{"doc":"Snapshot state from a live plugin instance.","kind":"method","module":"lilv.state","name":"fromInstance","package":"lilv-d","parentType":"State","signature":"State fromInstance(Plugin plugin,  Instance instance,  LV2_URID_Map *  map,  string scratchDir,  string copyDir,\n       string linkDir,  string saveDir,  GetPortValueDelegate getValueDg,  StateFlags flags,  Feature[]  features =  null)","url":"/ddoc/lilv-d/lilv/state/State.fromInstance.html"},{"doc":"","kind":"module","module":"lilv.types","name":"lilv.types","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/types.html"},{"doc":"","kind":"alias","module":"lilv.types","name":"GetPortValueDelegate","package":"lilv-d","parentType":"","signature":"GetPortValueDelegate = const(void)[]  delegate(string portSymbol,  out  uint  type)","url":"/ddoc/lilv-d/lilv/types.html#GetPortValueDelegate"},{"doc":"","kind":"alias","module":"lilv.types","name":"SetPortValueDelegate","package":"lilv-d","parentType":"","signature":"SetPortValueDelegate = void  delegate(string portSymbol,  const(void)[],  uint  type)","url":"/ddoc/lilv-d/lilv/types.html#SetPortValueDelegate"},{"doc":"D version of LV2_Feature","kind":"struct","module":"lilv.types","name":"Feature","package":"lilv-d","parentType":"","signature":"Feature","url":"/ddoc/lilv-d/lilv/types.html#Feature"},{"doc":"","kind":"module","module":"lilv.ui","name":"lilv.ui","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/ui.html"},{"doc":"Description of a plugin UI (not an instantiated widget).","kind":"class","module":"lilv.ui","name":"UI","package":"lilv-d","parentType":"","signature":"UI","url":"/ddoc/lilv-d/lilv/ui.html#UI"},{"doc":"","kind":"method","module":"lilv.ui","name":"world","package":"lilv-d","parentType":"UI","signature":"World world()","url":"/ddoc/lilv-d/lilv/ui/UI.world.html"},{"doc":"","kind":"method","module":"lilv.ui","name":"uri","package":"lilv-d","parentType":"UI","signature":"Node uri()","url":"/ddoc/lilv-d/lilv/ui/UI.uri.html"},{"doc":"","kind":"method","module":"lilv.ui","name":"classes","package":"lilv-d","parentType":"UI","signature":"Nodes classes()","url":"/ddoc/lilv-d/lilv/ui/UI.classes.html"},{"doc":"","kind":"method","module":"lilv.ui","name":"isA","package":"lilv-d","parentType":"UI","signature":"bool isA(Node classUri)","url":"/ddoc/lilv-d/lilv/ui/UI.isA.html"},{"doc":"","kind":"method","module":"lilv.ui","name":"bundleUri","package":"lilv-d","parentType":"UI","signature":"Node bundleUri()","url":"/ddoc/lilv-d/lilv/ui/UI.bundleUri.html"},{"doc":"","kind":"method","module":"lilv.ui","name":"binaryUri","package":"lilv-d","parentType":"UI","signature":"Node binaryUri()","url":"/ddoc/lilv-d/lilv/ui/UI.binaryUri.html"},{"doc":"Collection of UI descriptors.","kind":"class","module":"lilv.ui","name":"UIs","package":"lilv-d","parentType":"","signature":"UIs","url":"/ddoc/lilv-d/lilv/ui.html#UIs"},{"doc":"Get UI by URI Params: uri = URI Returns: UI with the given URI or null","kind":"method","module":"lilv.ui","name":"getByUri","package":"lilv-d","parentType":"UIs","signature":"UI getByUri(Node uri)","url":"/ddoc/lilv-d/lilv/ui/UIs.getByUri.html"},{"doc":"","kind":"module","module":"lilv.world","name":"lilv.world","package":"lilv-d","parentType":"","signature":"","url":"/ddoc/lilv-d/lilv/world.html"},{"doc":"The top-level Lilv state object.","kind":"class","module":"lilv.world","name":"World","package":"lilv-d","parentType":"","signature":"World","url":"/ddoc/lilv-d/lilv/world.html#World"},{"doc":"Get C World handle","kind":"method","module":"lilv.world","name":"handle","package":"lilv-d","parentType":"World","signature":"LilvWorld * handle()","url":"/ddoc/lilv-d/lilv/world/World.handle.html"},{"doc":"Add a reference to a World (should only be used internally)","kind":"method","module":"lilv.world","name":"addRef","package":"lilv-d","parentType":"World","signature":"void addRef()","url":"/ddoc/lilv-d/lilv/world/World.addRef.html"},{"doc":"Remove a reference to a World (should only be used internally)","kind":"method","module":"lilv.world","name":"unRef","package":"lilv-d","parentType":"World","signature":"void unRef()","url":"/ddoc/lilv-d/lilv/world/World.unRef.html"},{"doc":"Set an option for this world.","kind":"method","module":"lilv.world","name":"setOption","package":"lilv-d","parentType":"World","signature":"void setOption(string uri,  Node value)","url":"/ddoc/lilv-d/lilv/world/World.setOption.html"},{"doc":"Load all installed LV2 bundles on the system.","kind":"method","module":"lilv.world","name":"loadAll","package":"lilv-d","parentType":"World","signature":"void loadAll()","url":"/ddoc/lilv-d/lilv/world/World.loadAll.html"},{"doc":"Load a specific bundle. Params: bundleUri = a fully qualified URI to the bundle directory (with trailing slash), e.g. file:///usr/lib/lv2/foo.lv2/","kind":"method","module":"lilv.world","name":"loadBundle","package":"lilv-d","parentType":"World","signature":"void loadBundle(Node bundleUri)","url":"/ddoc/lilv-d/lilv/world/World.loadBundle.html"},{"doc":"Load all specifications from currently loaded bundles. Only needed when loading specific bundles instead of loadAll().","kind":"method","module":"lilv.world","name":"loadSpecifications","package":"lilv-d","parentType":"World","signature":"void loadSpecifications()","url":"/ddoc/lilv-d/lilv/world/World.loadSpecifications.html"},{"doc":"Load all plugin classes from currently loaded specifications. Must be called after loadSpecifications() when not using loadAll().","kind":"method","module":"lilv.world","name":"loadPluginClasses","package":"lilv-d","parentType":"World","signature":"void loadPluginClasses()","url":"/ddoc/lilv-d/lilv/world/World.loadPluginClasses.html"},{"doc":"Unload a specific bundle. Params: bundleUri = URI of bundle to unload Returns: 0 on success.","kind":"method","module":"lilv.world","name":"unloadBundle","package":"lilv-d","parentType":"World","signature":"int unloadBundle(Node bundleUri)","url":"/ddoc/lilv-d/lilv/world/World.unloadBundle.html"},{"doc":"Load all data associated with the given resource. Params: resource = Resource URI to load Returns: the number of files parsed, or -1 on error.","kind":"method","module":"lilv.world","name":"loadResource","package":"lilv-d","parentType":"World","signature":"int loadResource(Node resource)","url":"/ddoc/lilv-d/lilv/world/World.loadResource.html"},{"doc":"Unload data previously loaded by loadResource(). Params: resource = Resource URI to load Returns: the number of items removed, or -1 on error.","kind":"method","module":"lilv.world","name":"unloadResource","package":"lilv-d","parentType":"World","signature":"int unloadResource(Node resource)","url":"/ddoc/lilv-d/lilv/world/World.unloadResource.html"},{"doc":"The parent of all other plugin classes (lv2:Plugin). Returns: The parent plugin class","kind":"method","module":"lilv.world","name":"getPluginClass","package":"lilv-d","parentType":"World","signature":"PluginClass getPluginClass()","url":"/ddoc/lilv-d/lilv/world/World.getPluginClass.html"},{"doc":"All found plugin classes. Returns: Collection of all plugin classes","kind":"method","module":"lilv.world","name":"getPluginClasses","package":"lilv-d","parentType":"World","signature":"PluginClasses getPluginClasses()","url":"/ddoc/lilv-d/lilv/world/World.getPluginClasses.html"},{"doc":"All found plugins. Plugin data is loaded lazily on first query. Returns: Collection of all plugins","kind":"method","module":"lilv.world","name":"getAllPlugins","package":"lilv-d","parentType":"World","signature":"Plugins getAllPlugins()","url":"/ddoc/lilv-d/lilv/world/World.getAllPlugins.html"},{"doc":"Find nodes matching a triple pattern. subject or object may be null (wildcard), but not both. Params: subject = A subject URI (can be null for wild...","kind":"method","module":"lilv.world","name":"findNodes","package":"lilv-d","parentType":"World","signature":"Nodes findNodes(Node subject,  Node predicate,  Node obj)","url":"/ddoc/lilv-d/lilv/world/World.findNodes.html"},{"doc":"Find a single node matching a triple pattern. Like findNodes() but only returns the first item. Params: subject = A subject URI (can be null for wi...","kind":"method","module":"lilv.world","name":"get","package":"lilv-d","parentType":"World","signature":"Node get(Node subject,  Node predicate,  Node obj)","url":"/ddoc/lilv-d/lilv/world/World.get.html"},{"doc":"Return true if a statement matching the pattern exists. Any of the three arguments may be null (wildcard). Params: subject = Subject URI (null for ...","kind":"method","module":"lilv.world","name":"ask","package":"lilv-d","parentType":"World","signature":"bool ask(Node subject,  Node predicate,  Node obj)","url":"/ddoc/lilv-d/lilv/world/World.ask.html"},{"doc":"Get an LV2 symbol for some subject. Params: subject = Subject Returns: Node that is a valid LV2 symbol, or null.","kind":"method","module":"lilv.world","name":"getSymbol","package":"lilv-d","parentType":"World","signature":"Node getSymbol(Node subject)","url":"/ddoc/lilv-d/lilv/world/World.getSymbol.html"},{"doc":"Create a new URI node value","kind":"method","module":"lilv.world","name":"newUri","package":"lilv-d","parentType":"World","signature":"Node newUri(string uri)","url":"/ddoc/lilv-d/lilv/world/World.newUri.html"},{"doc":"Create a new file URI node value","kind":"method","module":"lilv.world","name":"newFileUri","package":"lilv-d","parentType":"World","signature":"Node newFileUri(string host,  string path)","url":"/ddoc/lilv-d/lilv/world/World.newFileUri.html"},{"doc":"Create a new string node value","kind":"method","module":"lilv.world","name":"newString","package":"lilv-d","parentType":"World","signature":"Node newString(string str)","url":"/ddoc/lilv-d/lilv/world/World.newString.html"},{"doc":"Create a new integer node value","kind":"method","module":"lilv.world","name":"newInt","package":"lilv-d","parentType":"World","signature":"Node newInt(int  val)","url":"/ddoc/lilv-d/lilv/world/World.newInt.html"},{"doc":"Create a new floating-point node value","kind":"method","module":"lilv.world","name":"newFloat","package":"lilv-d","parentType":"World","signature":"Node newFloat(float  val)","url":"/ddoc/lilv-d/lilv/world/World.newFloat.html"},{"doc":"Create a new boolean node value","kind":"method","module":"lilv.world","name":"newBool","package":"lilv-d","parentType":"World","signature":"Node newBool(bool  val)","url":"/ddoc/lilv-d/lilv/world/World.newBool.html"},{"doc":"Dlang bindings for JACK Audio Connection Kit","kind":"package","module":"","name":"jack-d","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/index.html"},{"doc":"","kind":"module","module":"jack.c","name":"jack.c","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/c.html"},{"doc":"Thin extern(C) bindings to libjack.","kind":"function","module":"jack.c","name":"jack_get_version","package":"jack-d","parentType":"","signature":"void jack_get_version(int *  major,  int *  minor,  int *  micro,  int *  proto)","url":"/ddoc/jack-d/jack/c/jack_get_version.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_version_string","package":"jack-d","parentType":"","signature":"const(char) * jack_get_version_string()","url":"/ddoc/jack-d/jack/c/jack_get_version_string.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_client_open","package":"jack-d","parentType":"","signature":"jack_client_t * jack_client_open(const(char) *  client_name,\n                                 jack_options_t options,\n                                 jack_status_t *  status, ...)","url":"/ddoc/jack-d/jack/c/jack_client_open.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_client_close","package":"jack-d","parentType":"","signature":"int jack_client_close(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_client_close.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_client_name_size","package":"jack-d","parentType":"","signature":"int jack_client_name_size()","url":"/ddoc/jack-d/jack/c/jack_client_name_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_client_name","package":"jack-d","parentType":"","signature":"const(char) * jack_get_client_name(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_get_client_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_activate","package":"jack-d","parentType":"","signature":"int jack_activate(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_activate.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_deactivate","package":"jack-d","parentType":"","signature":"int jack_deactivate(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_deactivate.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_client_pid","package":"jack-d","parentType":"","signature":"int jack_get_client_pid(const(char) *  name)","url":"/ddoc/jack-d/jack/c/jack_get_client_pid.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_client_thread_id","package":"jack-d","parentType":"","signature":"jack_native_thread_t jack_client_thread_id(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_client_thread_id.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_is_realtime","package":"jack-d","parentType":"","signature":"int jack_is_realtime(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_is_realtime.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_cycle_wait","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_cycle_wait(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_cycle_wait.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_cycle_signal","package":"jack-d","parentType":"","signature":"void jack_cycle_signal(jack_client_t *  client,  int  status)","url":"/ddoc/jack-d/jack/c/jack_cycle_signal.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_process_thread","package":"jack-d","parentType":"","signature":"int jack_set_process_thread(jack_client_t *  client,\n                             JackThreadCallback thread_callback,\n                             void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_process_thread.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_thread_init_callback","package":"jack-d","parentType":"","signature":"int jack_set_thread_init_callback(jack_client_t *  client,\n                                   JackThreadInitCallback cb,\n                                   void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_thread_init_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_on_shutdown","package":"jack-d","parentType":"","signature":"void jack_on_shutdown(jack_client_t *  client,\n                       JackShutdownCallback cb,\n                       void *  arg)","url":"/ddoc/jack-d/jack/c/jack_on_shutdown.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_on_info_shutdown","package":"jack-d","parentType":"","signature":"void jack_on_info_shutdown(jack_client_t *  client,\n                            JackInfoShutdownCallback cb,\n                            void *  arg)","url":"/ddoc/jack-d/jack/c/jack_on_info_shutdown.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_process_callback","package":"jack-d","parentType":"","signature":"int jack_set_process_callback(jack_client_t *  client,\n                               JackProcessCallback cb,\n                               void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_process_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_freewheel_callback","package":"jack-d","parentType":"","signature":"int jack_set_freewheel_callback(jack_client_t *  client,\n                                 JackFreewheelCallback cb,\n                                 void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_freewheel_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_buffer_size_callback","package":"jack-d","parentType":"","signature":"int jack_set_buffer_size_callback(jack_client_t *  client,\n                                   JackBufferSizeCallback cb,\n                                   void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_buffer_size_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_sample_rate_callback","package":"jack-d","parentType":"","signature":"int jack_set_sample_rate_callback(jack_client_t *  client,\n                                   JackSampleRateCallback cb,\n                                   void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_sample_rate_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_client_registration_callback","package":"jack-d","parentType":"","signature":"int jack_set_client_registration_callback(jack_client_t *  client,\n                                           JackClientRegistrationCallback cb,\n                                           void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_client_registration_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_port_registration_callback","package":"jack-d","parentType":"","signature":"int jack_set_port_registration_callback(jack_client_t *  client,\n                                         JackPortRegistrationCallback cb,\n                                         void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_port_registration_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_port_connect_callback","package":"jack-d","parentType":"","signature":"int jack_set_port_connect_callback(jack_client_t *  client,\n                                    JackPortConnectCallback cb,\n                                    void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_port_connect_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_port_rename_callback","package":"jack-d","parentType":"","signature":"int jack_set_port_rename_callback(jack_client_t *  client,\n                                   JackPortRenameCallback cb,\n                                   void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_port_rename_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_graph_order_callback","package":"jack-d","parentType":"","signature":"int jack_set_graph_order_callback(jack_client_t *  client,\n                                   JackGraphOrderCallback cb,\n                                   void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_graph_order_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_xrun_callback","package":"jack-d","parentType":"","signature":"int jack_set_xrun_callback(jack_client_t *  client,\n                            JackXRunCallback cb,\n                            void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_xrun_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_latency_callback","package":"jack-d","parentType":"","signature":"int jack_set_latency_callback(jack_client_t *  client,\n                               JackLatencyCallback cb,\n                               void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_latency_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_freewheel","package":"jack-d","parentType":"","signature":"int jack_set_freewheel(jack_client_t *  client,  int  onoff)","url":"/ddoc/jack-d/jack/c/jack_set_freewheel.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_buffer_size","package":"jack-d","parentType":"","signature":"int jack_set_buffer_size(jack_client_t *  client,  jack_nframes_t nframes)","url":"/ddoc/jack-d/jack/c/jack_set_buffer_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_sample_rate","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_get_sample_rate(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_get_sample_rate.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_buffer_size","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_get_buffer_size(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_get_buffer_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_cpu_load","package":"jack-d","parentType":"","signature":"float jack_cpu_load(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_cpu_load.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_register","package":"jack-d","parentType":"","signature":"jack_port_t * jack_port_register(jack_client_t *  client,\n                                 const(char) *  port_name,\n                                 const(char) *  port_type,\n                                 ulong  flags,\n                                 ulong  buffer_size)","url":"/ddoc/jack-d/jack/c/jack_port_register.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_unregister","package":"jack-d","parentType":"","signature":"int jack_port_unregister(jack_client_t *  client,  jack_port_t *  port)","url":"/ddoc/jack-d/jack/c/jack_port_unregister.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_get_buffer","package":"jack-d","parentType":"","signature":"void * jack_port_get_buffer(jack_port_t *  port,  jack_nframes_t nframes)","url":"/ddoc/jack-d/jack/c/jack_port_get_buffer.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_uuid","package":"jack-d","parentType":"","signature":"jack_uuid_t jack_port_uuid(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_uuid.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_name","package":"jack-d","parentType":"","signature":"const(char) * jack_port_name(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_short_name","package":"jack-d","parentType":"","signature":"const(char) * jack_port_short_name(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_short_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_flags","package":"jack-d","parentType":"","signature":"int jack_port_flags(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_flags.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_type","package":"jack-d","parentType":"","signature":"const(char) * jack_port_type(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_type.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_type_id","package":"jack-d","parentType":"","signature":"jack_port_type_id_t jack_port_type_id(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_type_id.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_is_mine","package":"jack-d","parentType":"","signature":"int jack_port_is_mine(const(jack_client_t) *  client,  const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_is_mine.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_connected","package":"jack-d","parentType":"","signature":"int jack_port_connected(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_connected.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_connected_to","package":"jack-d","parentType":"","signature":"int jack_port_connected_to(const(jack_port_t) *  port,  const(char) *  port_name)","url":"/ddoc/jack-d/jack/c/jack_port_connected_to.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_get_connections","package":"jack-d","parentType":"","signature":"const(char) * * jack_port_get_connections(const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_get_connections.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_get_all_connections","package":"jack-d","parentType":"","signature":"const(char) * * jack_port_get_all_connections(const(jack_client_t) *  client,\n                                             const(jack_port_t) *  port)","url":"/ddoc/jack-d/jack/c/jack_port_get_all_connections.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_set_name","package":"jack-d","parentType":"","signature":"int jack_port_set_name(jack_port_t *  port,  const(char) *  port_name)","url":"/ddoc/jack-d/jack/c/jack_port_set_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_set_alias","package":"jack-d","parentType":"","signature":"int jack_port_set_alias(jack_port_t *  port,  const(char) *  alias_)","url":"/ddoc/jack-d/jack/c/jack_port_set_alias.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_unset_alias","package":"jack-d","parentType":"","signature":"int jack_port_unset_alias(jack_port_t *  port,  const(char) *  alias_)","url":"/ddoc/jack-d/jack/c/jack_port_unset_alias.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_get_aliases","package":"jack-d","parentType":"","signature":"int jack_port_get_aliases(const(jack_port_t) *  port,  const(char) * *  aliases)","url":"/ddoc/jack-d/jack/c/jack_port_get_aliases.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_request_monitor","package":"jack-d","parentType":"","signature":"int jack_port_request_monitor(jack_port_t *  port,  int  onoff)","url":"/ddoc/jack-d/jack/c/jack_port_request_monitor.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_request_monitor_by_name","package":"jack-d","parentType":"","signature":"int jack_port_request_monitor_by_name(jack_client_t *  client,\n                                       const(char) *  port_name,\n                                       int  onoff)","url":"/ddoc/jack-d/jack/c/jack_port_request_monitor_by_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_ensure_monitor","package":"jack-d","parentType":"","signature":"int jack_port_ensure_monitor(jack_port_t *  port,  int  onoff)","url":"/ddoc/jack-d/jack/c/jack_port_ensure_monitor.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_monitoring_input","package":"jack-d","parentType":"","signature":"int jack_port_monitoring_input(jack_port_t *  port)","url":"/ddoc/jack-d/jack/c/jack_port_monitoring_input.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_connect","package":"jack-d","parentType":"","signature":"int jack_connect(jack_client_t *  client,\n                  const(char) *  source_port,\n                  const(char) *  destination_port)","url":"/ddoc/jack-d/jack/c/jack_connect.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_disconnect","package":"jack-d","parentType":"","signature":"int jack_disconnect(jack_client_t *  client,\n                     const(char) *  source_port,\n                     const(char) *  destination_port)","url":"/ddoc/jack-d/jack/c/jack_disconnect.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_disconnect","package":"jack-d","parentType":"","signature":"int jack_port_disconnect(jack_client_t *  client,  jack_port_t *  port)","url":"/ddoc/jack-d/jack/c/jack_port_disconnect.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_name_size","package":"jack-d","parentType":"","signature":"int jack_port_name_size()","url":"/ddoc/jack-d/jack/c/jack_port_name_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_type_size","package":"jack-d","parentType":"","signature":"int jack_port_type_size()","url":"/ddoc/jack-d/jack/c/jack_port_type_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_type_get_buffer_size","package":"jack-d","parentType":"","signature":"size_t jack_port_type_get_buffer_size(jack_client_t *  client,\n                                       const(char) *  port_type)","url":"/ddoc/jack-d/jack/c/jack_port_type_get_buffer_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_get_latency_range","package":"jack-d","parentType":"","signature":"void jack_port_get_latency_range(jack_port_t *  port,\n                                  jack_latency_callback_mode_t mode,\n                                  jack_latency_range_t *  range)","url":"/ddoc/jack-d/jack/c/jack_port_get_latency_range.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_set_latency_range","package":"jack-d","parentType":"","signature":"void jack_port_set_latency_range(jack_port_t *  port,\n                                  jack_latency_callback_mode_t mode,\n                                  jack_latency_range_t *  range)","url":"/ddoc/jack-d/jack/c/jack_port_set_latency_range.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_recompute_total_latencies","package":"jack-d","parentType":"","signature":"int jack_recompute_total_latencies(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_recompute_total_latencies.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_ports","package":"jack-d","parentType":"","signature":"const(char) * * jack_get_ports(jack_client_t *  client,\n                              const(char) *  port_name_pattern,\n                              const(char) *  type_name_pattern,\n                              ulong  flags)","url":"/ddoc/jack-d/jack/c/jack_get_ports.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_by_name","package":"jack-d","parentType":"","signature":"jack_port_t * jack_port_by_name(jack_client_t *  client,  const(char) *  port_name)","url":"/ddoc/jack-d/jack/c/jack_port_by_name.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_port_by_id","package":"jack-d","parentType":"","signature":"jack_port_t * jack_port_by_id(jack_client_t *  client,  jack_port_id_t port_id)","url":"/ddoc/jack-d/jack/c/jack_port_by_id.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_frames_since_cycle_start","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_frames_since_cycle_start(const(jack_client_t) *  client)","url":"/ddoc/jack-d/jack/c/jack_frames_since_cycle_start.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_frame_time","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_frame_time(const(jack_client_t) *  client)","url":"/ddoc/jack-d/jack/c/jack_frame_time.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_last_frame_time","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_last_frame_time(const(jack_client_t) *  client)","url":"/ddoc/jack-d/jack/c/jack_last_frame_time.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_frames_to_time","package":"jack-d","parentType":"","signature":"jack_time_t jack_frames_to_time(const(jack_client_t) *  client,  jack_nframes_t frames)","url":"/ddoc/jack-d/jack/c/jack_frames_to_time.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_time_to_frames","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_time_to_frames(const(jack_client_t) *  client,  jack_time_t time)","url":"/ddoc/jack-d/jack/c/jack_time_to_frames.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_time","package":"jack-d","parentType":"","signature":"jack_time_t jack_get_time()","url":"/ddoc/jack-d/jack/c/jack_get_time.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_release_timebase","package":"jack-d","parentType":"","signature":"int jack_release_timebase(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_release_timebase.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_sync_callback","package":"jack-d","parentType":"","signature":"int jack_set_sync_callback(jack_client_t *  client,\n                            JackSyncCallback cb,\n                            void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_sync_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_sync_timeout","package":"jack-d","parentType":"","signature":"int jack_set_sync_timeout(jack_client_t *  client,  jack_time_t timeout)","url":"/ddoc/jack-d/jack/c/jack_set_sync_timeout.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_timebase_callback","package":"jack-d","parentType":"","signature":"int jack_set_timebase_callback(jack_client_t *  client,\n                                int  conditional,\n                                JackTimebaseCallback cb,\n                                void *  arg)","url":"/ddoc/jack-d/jack/c/jack_set_timebase_callback.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_transport_locate","package":"jack-d","parentType":"","signature":"int jack_transport_locate(jack_client_t *  client,  jack_nframes_t frame)","url":"/ddoc/jack-d/jack/c/jack_transport_locate.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_transport_query","package":"jack-d","parentType":"","signature":"jack_transport_state_t jack_transport_query(const(jack_client_t) *  client,\n                                             jack_position_t *  pos)","url":"/ddoc/jack-d/jack/c/jack_transport_query.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_get_current_transport_frame","package":"jack-d","parentType":"","signature":"jack_nframes_t jack_get_current_transport_frame(const(jack_client_t) *  client)","url":"/ddoc/jack-d/jack/c/jack_get_current_transport_frame.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_transport_reposition","package":"jack-d","parentType":"","signature":"int jack_transport_reposition(jack_client_t *  client,  const(jack_position_t) *  pos)","url":"/ddoc/jack-d/jack/c/jack_transport_reposition.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_transport_start","package":"jack-d","parentType":"","signature":"void jack_transport_start(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_transport_start.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_transport_stop","package":"jack-d","parentType":"","signature":"void jack_transport_stop(jack_client_t *  client)","url":"/ddoc/jack-d/jack/c/jack_transport_stop.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_get_event_count","package":"jack-d","parentType":"","signature":"uint jack_midi_get_event_count(void *  port_buffer)","url":"/ddoc/jack-d/jack/c/jack_midi_get_event_count.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_event_get","package":"jack-d","parentType":"","signature":"int jack_midi_event_get(jack_midi_event_t *  event,\n                          void *  port_buffer,\n                          uint  event_index)","url":"/ddoc/jack-d/jack/c/jack_midi_event_get.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_clear_buffer","package":"jack-d","parentType":"","signature":"void jack_midi_clear_buffer(void *  port_buffer)","url":"/ddoc/jack-d/jack/c/jack_midi_clear_buffer.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_max_event_size","package":"jack-d","parentType":"","signature":"size_t jack_midi_max_event_size(void *  port_buffer)","url":"/ddoc/jack-d/jack/c/jack_midi_max_event_size.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_event_reserve","package":"jack-d","parentType":"","signature":"jack_midi_data_t * jack_midi_event_reserve(void *  port_buffer,\n                                           jack_nframes_t time,\n                                           size_t data_size)","url":"/ddoc/jack-d/jack/c/jack_midi_event_reserve.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_event_write","package":"jack-d","parentType":"","signature":"int jack_midi_event_write(void *  port_buffer,\n                           jack_nframes_t time,\n                           const(jack_midi_data_t) *  data,\n                           size_t data_size)","url":"/ddoc/jack-d/jack/c/jack_midi_event_write.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_midi_get_lost_event_count","package":"jack-d","parentType":"","signature":"uint jack_midi_get_lost_event_count(void *  port_buffer)","url":"/ddoc/jack-d/jack/c/jack_midi_get_lost_event_count.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_error_function","package":"jack-d","parentType":"","signature":"void jack_set_error_function(JackErrorCallback cb)","url":"/ddoc/jack-d/jack/c/jack_set_error_function.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_set_info_function","package":"jack-d","parentType":"","signature":"void jack_set_info_function(JackInfoCallback cb)","url":"/ddoc/jack-d/jack/c/jack_set_info_function.html"},{"doc":"","kind":"function","module":"jack.c","name":"jack_free","package":"jack-d","parentType":"","signature":"void jack_free(void *  ptr)","url":"/ddoc/jack-d/jack/c/jack_free.html"},{"doc":"","kind":"module","module":"jack.client","name":"jack.client","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/client.html"},{"doc":"High-level object-oriented JACK client.","kind":"alias","module":"jack.client","name":"ThreadInitDelegate","package":"jack-d","parentType":"","signature":"ThreadInitDelegate = void  delegate()","url":"/ddoc/jack-d/jack/client.html#ThreadInitDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"ProcessDelegate","package":"jack-d","parentType":"","signature":"ProcessDelegate = int   delegate(NFrames nframes)","url":"/ddoc/jack-d/jack/client.html#ProcessDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"ShutdownDelegate","package":"jack-d","parentType":"","signature":"ShutdownDelegate = void  delegate()","url":"/ddoc/jack-d/jack/client.html#ShutdownDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"InfoShutdownDelegate","package":"jack-d","parentType":"","signature":"InfoShutdownDelegate = void  delegate(JackStatus code,  string reason)","url":"/ddoc/jack-d/jack/client.html#InfoShutdownDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"FreewheelDelegate","package":"jack-d","parentType":"","signature":"FreewheelDelegate = void  delegate(bool  starting)","url":"/ddoc/jack-d/jack/client.html#FreewheelDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"BufferSizeDelegate","package":"jack-d","parentType":"","signature":"BufferSizeDelegate = int   delegate(NFrames nframes)","url":"/ddoc/jack-d/jack/client.html#BufferSizeDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"SampleRateDelegate","package":"jack-d","parentType":"","signature":"SampleRateDelegate = int   delegate(NFrames nframes)","url":"/ddoc/jack-d/jack/client.html#SampleRateDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"ClientRegistrationDelegate","package":"jack-d","parentType":"","signature":"ClientRegistrationDelegate = void  delegate(string name,  bool  registered)","url":"/ddoc/jack-d/jack/client.html#ClientRegistrationDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"PortRegistrationDelegate","package":"jack-d","parentType":"","signature":"PortRegistrationDelegate = void  delegate(PortId port,  bool  registered)","url":"/ddoc/jack-d/jack/client.html#PortRegistrationDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"PortConnectDelegate","package":"jack-d","parentType":"","signature":"PortConnectDelegate = void  delegate(PortId a,  PortId b,  bool  connected)","url":"/ddoc/jack-d/jack/client.html#PortConnectDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"PortRenameDelegate","package":"jack-d","parentType":"","signature":"PortRenameDelegate = void  delegate(PortId port,  string oldName,  string newName)","url":"/ddoc/jack-d/jack/client.html#PortRenameDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"GraphOrderDelegate","package":"jack-d","parentType":"","signature":"GraphOrderDelegate = int   delegate()","url":"/ddoc/jack-d/jack/client.html#GraphOrderDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"XRunDelegate","package":"jack-d","parentType":"","signature":"XRunDelegate = int   delegate()","url":"/ddoc/jack-d/jack/client.html#XRunDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"LatencyDelegate","package":"jack-d","parentType":"","signature":"LatencyDelegate = void  delegate(JackLatencyCallbackMode mode)","url":"/ddoc/jack-d/jack/client.html#LatencyDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"SyncDelegate","package":"jack-d","parentType":"","signature":"SyncDelegate = int   delegate(JackTransportState state,  Position *  pos)","url":"/ddoc/jack-d/jack/client.html#SyncDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"TimebaseDelegate","package":"jack-d","parentType":"","signature":"TimebaseDelegate = void  delegate(JackTransportState state,  NFrames nframes,\n                                                  Position *  pos,  bool  newPos)","url":"/ddoc/jack-d/jack/client.html#TimebaseDelegate"},{"doc":"","kind":"alias","module":"jack.client","name":"ProcessThreadDelegate","package":"jack-d","parentType":"","signature":"ProcessThreadDelegate = void *  delegate()","url":"/ddoc/jack-d/jack/client.html#ProcessThreadDelegate"},{"doc":"","kind":"class","module":"jack.client","name":"Client","package":"jack-d","parentType":"","signature":"Client","url":"/ddoc/jack-d/jack/client.html#Client"},{"doc":"Get maximum JACK client name length. Real-time safe. Returns: Maximum JACK client name length","kind":"method","module":"jack.client","name":"getMaxNameLength","package":"jack-d","parentType":"Client","signature":"int getMaxNameLength()","url":"/ddoc/jack-d/jack/client/Client.getMaxNameLength.html"},{"doc":"Open a JACK client. Not real-time safe. Params: clientName = Client name to register with the JACK server options = Option flags (defaults to JackO...","kind":"method","module":"jack.client","name":"open","package":"jack-d","parentType":"Client","signature":"void open(string clientName,  JackOptions options =  JackOptions.NullOption,  string serverName =  null)","url":"/ddoc/jack-d/jack/client/Client.open.html"},{"doc":"Close JACK client. Not real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"close","package":"jack-d","parentType":"Client","signature":"void close()","url":"/ddoc/jack-d/jack/client/Client.close.html"},{"doc":"Activate JACK client. Not real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"activate","package":"jack-d","parentType":"Client","signature":"void activate()","url":"/ddoc/jack-d/jack/client/Client.activate.html"},{"doc":"Deactivate JACK client. Not real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"deactivate","package":"jack-d","parentType":"Client","signature":"void deactivate()","url":"/ddoc/jack-d/jack/client/Client.deactivate.html"},{"doc":"Get C jack_client_t handle. Real-time safe.","kind":"method","module":"jack.client","name":"handle","package":"jack-d","parentType":"Client","signature":"jack_client_t * handle()","url":"/ddoc/jack-d/jack/client/Client.handle.html"},{"doc":"Is JACK client connection open? Real-time safe.","kind":"method","module":"jack.client","name":"isOpen","package":"jack-d","parentType":"Client","signature":"bool isOpen()","url":"/ddoc/jack-d/jack/client/Client.isOpen.html"},{"doc":"Get client name. Not real-time safe.","kind":"method","module":"jack.client","name":"name","package":"jack-d","parentType":"Client","signature":"string name()","url":"/ddoc/jack-d/jack/client/Client.name.html"},{"doc":"Is JACK server running in real-time? Real-time safe.","kind":"method","module":"jack.client","name":"isRealtime","package":"jack-d","parentType":"Client","signature":"bool isRealtime()","url":"/ddoc/jack-d/jack/client/Client.isRealtime.html"},{"doc":"Get CPU load. Real-time safe.","kind":"method","module":"jack.client","name":"cpuLoad","package":"jack-d","parentType":"Client","signature":"float cpuLoad()","url":"/ddoc/jack-d/jack/client/Client.cpuLoad.html"},{"doc":"Get sample rate. Real-time safe.","kind":"method","module":"jack.client","name":"sampleRate","package":"jack-d","parentType":"Client","signature":"NFrames sampleRate()","url":"/ddoc/jack-d/jack/client/Client.sampleRate.html"},{"doc":"Get buffer size. Real-time safe.","kind":"method","module":"jack.client","name":"bufferSize","package":"jack-d","parentType":"Client","signature":"NFrames bufferSize()","url":"/ddoc/jack-d/jack/client/Client.bufferSize.html"},{"doc":"Set buffer size Params: nframes = Buffer size in frames Returns: true on success, false otherwise","kind":"method","module":"jack.client","name":"setBufferSize","package":"jack-d","parentType":"Client","signature":"bool setBufferSize(NFrames nframes)","url":"/ddoc/jack-d/jack/client/Client.setBufferSize.html"},{"doc":"Set freewheel state. Not real-time safe. Params: on = true to enable freewheeling (JACK server processes data as fast as possible, for faster than ...","kind":"method","module":"jack.client","name":"freewheel","package":"jack-d","parentType":"Client","signature":"void freewheel(bool  on)","url":"/ddoc/jack-d/jack/client/Client.freewheel.html"},{"doc":"Set timeout value for slow-sync clients. Not real-time safe. Params: timeout = The timeout in microseconds Throws: JackException on failure","kind":"method","module":"jack.client","name":"syncTimeout","package":"jack-d","parentType":"Client","signature":"void syncTimeout(JackTime timeout)","url":"/ddoc/jack-d/jack/client/Client.syncTimeout.html"},{"doc":"Get the thread ID for the running JACK client","kind":"method","module":"jack.client","name":"threadId","package":"jack-d","parentType":"Client","signature":"NativeThread threadId()","url":"/ddoc/jack-d/jack/client/Client.threadId.html"},{"doc":"Wait until the JACK client should process data. Used with the non-callback API. Returns: Number of frames to process","kind":"method","module":"jack.client","name":"cycleWait","package":"jack-d","parentType":"Client","signature":"NFrames cycleWait()","url":"/ddoc/jack-d/jack/client/Client.cycleWait.html"},{"doc":"Signal next clients in the JACK call graph. Used with the non-callback API. Params: status = A status value, if non-zero calling thread should exit...","kind":"method","module":"jack.client","name":"cycleSignal","package":"jack-d","parentType":"Client","signature":"void cycleSignal(int  status =  0)","url":"/ddoc/jack-d/jack/client/Client.cycleSignal.html"},{"doc":"Register a port Params: portName = Name of the port portType = The type of port, such as JACK_DEFAULT_AUDIO_TYPE or JACK_DEFAULT_MIDI_TYPE flags = ...","kind":"method","module":"jack.client","name":"registerPort","package":"jack-d","parentType":"Client","signature":"Port registerPort(string portName,  string portType,  JackPortFlags flags,  ulong  bufferSize =  0)","url":"/ddoc/jack-d/jack/client/Client.registerPort.html"},{"doc":"Register an audio output port (convenience method) Params: name = The port name Returns: The new audio output Port Throws: JackException on failure","kind":"method","module":"jack.client","name":"registerAudioOut","package":"jack-d","parentType":"Client","signature":"Port registerAudioOut(string name)","url":"/ddoc/jack-d/jack/client/Client.registerAudioOut.html"},{"doc":"Register an audio input port (convenience method) Params: name = The port name Returns: The new audio input Port Throws: JackException on failure","kind":"method","module":"jack.client","name":"registerAudioIn","package":"jack-d","parentType":"Client","signature":"Port registerAudioIn(string name)","url":"/ddoc/jack-d/jack/client/Client.registerAudioIn.html"},{"doc":"Register a MIDI output port (convenience method) Params: name = The port name Returns: The new MIDI output Port Throws: JackException on failure","kind":"method","module":"jack.client","name":"registerMidiOut","package":"jack-d","parentType":"Client","signature":"Port registerMidiOut(string name)","url":"/ddoc/jack-d/jack/client/Client.registerMidiOut.html"},{"doc":"Register a MIDI input port (convenience method) Params: name = The port name Returns: The new MIDI input Port Throws: JackException on failure","kind":"method","module":"jack.client","name":"registerMidiIn","package":"jack-d","parentType":"Client","signature":"Port registerMidiIn(string name)","url":"/ddoc/jack-d/jack/client/Client.registerMidiIn.html"},{"doc":"Unregister a port Params: port = The port Throws: JackException on failure","kind":"method","module":"jack.client","name":"unregisterPort","package":"jack-d","parentType":"Client","signature":"void unregisterPort(Port port)","url":"/ddoc/jack-d/jack/client/Client.unregisterPort.html"},{"doc":"Check if port belongs to this client Params: port = The port Returns: true if the port belongs to this client","kind":"method","module":"jack.client","name":"portIsMine","package":"jack-d","parentType":"Client","signature":"bool portIsMine(Port port)","url":"/ddoc/jack-d/jack/client/Client.portIsMine.html"},{"doc":"Connect the named ports Params: src = The source port name dest =  The destination port name Throws: JackException on failure","kind":"method","module":"jack.client","name":"connect","package":"jack-d","parentType":"Client","signature":"void connect(string src,  string dst)","url":"/ddoc/jack-d/jack/client/Client.connect.html"},{"doc":"Disconnect the named ports Params: src = The source port name dest =  The destination port name Throws: JackException on failure","kind":"method","module":"jack.client","name":"disconnect","package":"jack-d","parentType":"Client","signature":"void disconnect(string src,  string dst)","url":"/ddoc/jack-d/jack/client/Client.disconnect.html"},{"doc":"Disconnect a port Params: port = The port to disconnect Throws: JackException on failure","kind":"method","module":"jack.client","name":"disconnectPort","package":"jack-d","parentType":"Client","signature":"void disconnectPort(Port port)","url":"/ddoc/jack-d/jack/client/Client.disconnectPort.html"},{"doc":"Get all connections for a port Differs from Port.getConnections() in that this should not be called from a callback and the caller does not need to...","kind":"method","module":"jack.client","name":"getAllConnections","package":"jack-d","parentType":"Client","signature":"string[] getAllConnections(Port port)","url":"/ddoc/jack-d/jack/client/Client.getAllConnections.html"},{"doc":"Get ports for this client Params: namePattern = Regular expression for matching ports by name. A null value will match any name (default) typePatte...","kind":"method","module":"jack.client","name":"getPorts","package":"jack-d","parentType":"Client","signature":"string[] getPorts(string namePattern =  null,  string typePattern =  null,  JackPortFlags flags =  cast(JackPortFlags) 0)","url":"/ddoc/jack-d/jack/client/Client.getPorts.html"},{"doc":"Get a Port by name. Real-time safe. Params: name = The port name (zero terminated string) Returns: The Port which will be a null valued port (isNul...","kind":"method","module":"jack.client","name":"portByName","package":"jack-d","parentType":"Client","signature":"Port portByName(const(char) *  name)","url":"/ddoc/jack-d/jack/client/Client.portByName.html"},{"doc":"Get a Port by name. NOT real-time safe (may allocate). Params: name = The port name Returns: The Port which will be a null valued port (isNull()) i...","kind":"method","module":"jack.client","name":"portByName","package":"jack-d","parentType":"Client","signature":"Port portByName(string name)","url":"/ddoc/jack-d/jack/client/Client.portByName.html"},{"doc":"Get a Port by ID. Real-time safe. Params: id = The ID of the port Returns: The Port which will be a null valued port (isNull()) if not found","kind":"method","module":"jack.client","name":"portById","package":"jack-d","parentType":"Client","signature":"Port portById(PortId id)","url":"/ddoc/jack-d/jack/client/Client.portById.html"},{"doc":"Get the buffer size of a port of a given type. Real-time safe. Should only be called in a buffer size callback. Params: portType = Should be passed...","kind":"method","module":"jack.client","name":"portTypeBufferSize","package":"jack-d","parentType":"Client","signature":"size_t portTypeBufferSize(const(char) *  portType)","url":"/ddoc/jack-d/jack/client/Client.portTypeBufferSize.html"},{"doc":"Get the buffer size of a port of a given type. Not real-time safe (may allocate). Should only be called in a buffer size callback. Params: portType...","kind":"method","module":"jack.client","name":"portTypeBufferSize","package":"jack-d","parentType":"Client","signature":"size_t portTypeBufferSize(string portType)","url":"/ddoc/jack-d/jack/client/Client.portTypeBufferSize.html"},{"doc":"Request to monitor a port by name. NOT real-time safe (may allocate and throw). Params: portName = The port name on = true to enable monitoring, fa...","kind":"method","module":"jack.client","name":"requestMonitorByPortName","package":"jack-d","parentType":"Client","signature":"void requestMonitorByPortName(string portName,  bool  on)","url":"/ddoc/jack-d/jack/client/Client.requestMonitorByPortName.html"},{"doc":"Request latency recompute. Can be called by a client after updating a port latencies. Real-time safe. Returns: true on success, false otherwise","kind":"method","module":"jack.client","name":"recomputeTotalLatencies","package":"jack-d","parentType":"Client","signature":"bool recomputeTotalLatencies()","url":"/ddoc/jack-d/jack/client/Client.recomputeTotalLatencies.html"},{"doc":"Start transport. Real-time safe.","kind":"method","module":"jack.client","name":"transportStart","package":"jack-d","parentType":"Client","signature":"void transportStart()","url":"/ddoc/jack-d/jack/client/Client.transportStart.html"},{"doc":"Stop transport. Real-time safe.","kind":"method","module":"jack.client","name":"transportStop","package":"jack-d","parentType":"Client","signature":"void transportStop()","url":"/ddoc/jack-d/jack/client/Client.transportStop.html"},{"doc":"Reposition the transport to a new frame number. Real-time safe. Params: frame = The frame number of the new position Returns: true on success, fals...","kind":"method","module":"jack.client","name":"transportLocate","package":"jack-d","parentType":"Client","signature":"bool transportLocate(NFrames frame)","url":"/ddoc/jack-d/jack/client/Client.transportLocate.html"},{"doc":"Query the transport state and position. Real-time safe. Params: pos = Pointer to store position information to or null to retrieve position info Re...","kind":"method","module":"jack.client","name":"transportQuery","package":"jack-d","parentType":"Client","signature":"JackTransportState transportQuery(Position *  pos =  null)","url":"/ddoc/jack-d/jack/client/Client.transportQuery.html"},{"doc":"Request transport reposition. Real-time safe. Params: pos = The new position Returns: true on success, false otherwise","kind":"method","module":"jack.client","name":"transportReposition","package":"jack-d","parentType":"Client","signature":"bool transportReposition(const(Position) *  pos)","url":"/ddoc/jack-d/jack/client/Client.transportReposition.html"},{"doc":"Get estimate of transport frame. Returns: Current transport frame","kind":"method","module":"jack.client","name":"currentTransportFrame","package":"jack-d","parentType":"Client","signature":"NFrames currentTransportFrame()","url":"/ddoc/jack-d/jack/client/Client.currentTransportFrame.html"},{"doc":"Called by the timebase master to release itself as master. Real-time safe. Returns: true on success, false otherwise","kind":"method","module":"jack.client","name":"releaseTimebase","package":"jack-d","parentType":"Client","signature":"bool releaseTimebase()","url":"/ddoc/jack-d/jack/client/Client.releaseTimebase.html"},{"doc":"Get the number of estimated frames that have passed since the JACK server started this cycle. Real-time safe. Returns: Estimated frame count","kind":"method","module":"jack.client","name":"framesSinceCycleStart","package":"jack-d","parentType":"Client","signature":"NFrames framesSinceCycleStart()","url":"/ddoc/jack-d/jack/client/Client.framesSinceCycleStart.html"},{"doc":"Get estimated time in frames. Intended for other threads (not called by process callbacks). Returns: Estimated time in frames","kind":"method","module":"jack.client","name":"frameTime","package":"jack-d","parentType":"Client","signature":"NFrames frameTime()","url":"/ddoc/jack-d/jack/client/Client.frameTime.html"},{"doc":"Get the last frame time for the current cycle. This is intended to be called from process callbacks. Real-time safe. It will return the same time f...","kind":"method","module":"jack.client","name":"lastFrameTime","package":"jack-d","parentType":"Client","signature":"NFrames lastFrameTime()","url":"/ddoc/jack-d/jack/client/Client.lastFrameTime.html"},{"doc":"Convert frames to time. Real-time safe. Params: frames = Frame count Returns: Estimated time in microseconds","kind":"method","module":"jack.client","name":"frameToTime","package":"jack-d","parentType":"Client","signature":"JackTime frameToTime(NFrames frames)","url":"/ddoc/jack-d/jack/client/Client.frameToTime.html"},{"doc":"Convert time to frames. Real-time safe. Params: time = The time in microseconds Returns: Estimated frame count","kind":"method","module":"jack.client","name":"timeToFrames","package":"jack-d","parentType":"Client","signature":"NFrames timeToFrames(JackTime time)","url":"/ddoc/jack-d/jack/client/Client.timeToFrames.html"},{"doc":"Set thread init callback which is called once after the thread is created which will call the other callbacks. Notification callback, does not need...","kind":"method","module":"jack.client","name":"threadInitCallback","package":"jack-d","parentType":"Client","signature":"void threadInitCallback(ShutdownDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.threadInitCallback.html"},{"doc":"Set process callback. Should be real-time safe. No memory allocation or other system calls should be performed in the delegate callback. Throws: Ja...","kind":"method","module":"jack.client","name":"processCallback","package":"jack-d","parentType":"Client","signature":"void processCallback(ProcessDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.processCallback.html"},{"doc":"Set shutdown callback. Notification callback, does not need to be real-time safe.","kind":"method","module":"jack.client","name":"shutdownCallback","package":"jack-d","parentType":"Client","signature":"void shutdownCallback(ShutdownDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.shutdownCallback.html"},{"doc":"Set info shutdown callback. Notification callback, does not need to be real-time safe.","kind":"method","module":"jack.client","name":"infoShutdownCallback","package":"jack-d","parentType":"Client","signature":"void infoShutdownCallback(InfoShutdownDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.infoShutdownCallback.html"},{"doc":"Set freewheel mode changed callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"freewheelCallback","package":"jack-d","parentType":"Client","signature":"void freewheelCallback(FreewheelDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.freewheelCallback.html"},{"doc":"Set buffer size changed callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"bufferSizeCallback","package":"jack-d","parentType":"Client","signature":"void bufferSizeCallback(BufferSizeDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.bufferSizeCallback.html"},{"doc":"Set sample rate changed callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"sampleRateCallback","package":"jack-d","parentType":"Client","signature":"void sampleRateCallback(SampleRateDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.sampleRateCallback.html"},{"doc":"Set client registration callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"clientRegistrationCallback","package":"jack-d","parentType":"Client","signature":"void clientRegistrationCallback(ClientRegistrationDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.clientRegistrationCallback.html"},{"doc":"Set port registration callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"portRegistrationCallback","package":"jack-d","parentType":"Client","signature":"void portRegistrationCallback(PortRegistrationDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.portRegistrationCallback.html"},{"doc":"Set port connect/disconnect callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"portConnectCallback","package":"jack-d","parentType":"Client","signature":"void portConnectCallback(PortConnectDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.portConnectCallback.html"},{"doc":"Set port rename callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"portRenameCallback","package":"jack-d","parentType":"Client","signature":"void portRenameCallback(PortRenameDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.portRenameCallback.html"},{"doc":"Set graph order callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"graphOrderCallback","package":"jack-d","parentType":"Client","signature":"void graphOrderCallback(GraphOrderDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.graphOrderCallback.html"},{"doc":"Set xrun (overrun/underrun) callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"xrunCallback","package":"jack-d","parentType":"Client","signature":"void xrunCallback(XRunDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.xrunCallback.html"},{"doc":"Set latency update callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"latencyCallback","package":"jack-d","parentType":"Client","signature":"void latencyCallback(LatencyDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.latencyCallback.html"},{"doc":"Set a slow-sync client callback. Notification callback, does not need to be real-time safe. Throws: JackException on failure","kind":"method","module":"jack.client","name":"syncCallback","package":"jack-d","parentType":"Client","signature":"void syncCallback(SyncDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.syncCallback.html"},{"doc":"Set a timebase master callback. Notification callback, does not need to be real-time safe. Params: conditional = true for a conditional request (fa...","kind":"method","module":"jack.client","name":"timebaseCallback","package":"jack-d","parentType":"Client","signature":"void timebaseCallback(bool  conditional,  TimebaseDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.timebaseCallback.html"},{"doc":"Set the non-callback API thread delegate. Used when not using the usual process callback with processCallback(). Used in conjunction with cycleWait...","kind":"method","module":"jack.client","name":"processThreadCallback","package":"jack-d","parentType":"Client","signature":"void processThreadCallback(ProcessThreadDelegate dg)","url":"/ddoc/jack-d/jack/client/Client.processThreadCallback.html"},{"doc":"","kind":"method","module":"jack.client","name":"threadInitTrampoline","package":"jack-d","parentType":"Client","signature":"void threadInitTrampoline(void *  arg)","url":"/ddoc/jack-d/jack/client/Client.threadInitTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"processTrampoline","package":"jack-d","parentType":"Client","signature":"int processTrampoline(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.processTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"shutdownTrampoline","package":"jack-d","parentType":"Client","signature":"void shutdownTrampoline(void *  arg)","url":"/ddoc/jack-d/jack/client/Client.shutdownTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"infoShutdownTrampoline","package":"jack-d","parentType":"Client","signature":"void infoShutdownTrampoline(jack_status_t code,  const(char) *  reason,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.infoShutdownTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"freewheelTrampoline","package":"jack-d","parentType":"Client","signature":"void freewheelTrampoline(int  starting,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.freewheelTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"bufferSizeTrampoline","package":"jack-d","parentType":"Client","signature":"int bufferSizeTrampoline(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.bufferSizeTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"sampleRateTrampoline","package":"jack-d","parentType":"Client","signature":"int sampleRateTrampoline(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.sampleRateTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"clientRegistrationTrampoline","package":"jack-d","parentType":"Client","signature":"void clientRegistrationTrampoline(const(char) *  name,  int  register_,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.clientRegistrationTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"portRegistrationTrampoline","package":"jack-d","parentType":"Client","signature":"void portRegistrationTrampoline(jack_port_id_t port,  int  register_,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.portRegistrationTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"portConnectTrampoline","package":"jack-d","parentType":"Client","signature":"void portConnectTrampoline(jack_port_id_t a,  jack_port_id_t b,  int  connect,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.portConnectTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"portRenameTrampoline","package":"jack-d","parentType":"Client","signature":"void portRenameTrampoline(jack_port_id_t port,  const(char) *  old_name,  const(char) *  new_name,\n     void *  arg)","url":"/ddoc/jack-d/jack/client/Client.portRenameTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"graphOrderTrampoline","package":"jack-d","parentType":"Client","signature":"int graphOrderTrampoline(void *  arg)","url":"/ddoc/jack-d/jack/client/Client.graphOrderTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"xrunTrampoline","package":"jack-d","parentType":"Client","signature":"int xrunTrampoline(void *  arg)","url":"/ddoc/jack-d/jack/client/Client.xrunTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"latencyTrampoline","package":"jack-d","parentType":"Client","signature":"void latencyTrampoline(jack_latency_callback_mode_t mode,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.latencyTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"syncTrampoline","package":"jack-d","parentType":"Client","signature":"int syncTrampoline(jack_transport_state_t state,  jack_position_t *  pos,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.syncTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"timebaseTrampoline","package":"jack-d","parentType":"Client","signature":"void timebaseTrampoline(jack_transport_state_t state,  jack_nframes_t nframes,\n     jack_position_t *  pos,  int  new_pos,  void *  arg)","url":"/ddoc/jack-d/jack/client/Client.timebaseTrampoline.html"},{"doc":"","kind":"method","module":"jack.client","name":"processThreadTrampoline","package":"jack-d","parentType":"Client","signature":"void * processThreadTrampoline(void *  arg)","url":"/ddoc/jack-d/jack/client/Client.processThreadTrampoline.html"},{"doc":"","kind":"module","module":"jack.global","name":"jack.global","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/global.html"},{"doc":"Get JACK version components Params: major = Output major version minor = Output minor version micro = Output micro version proto = Output protocol ...","kind":"function","module":"jack.global","name":"jackVersion","package":"jack-d","parentType":"","signature":"void jackVersion(out  int  major,  out  int  minor,  out  int  micro,  out  int  proto)","url":"/ddoc/jack-d/jack/global/jackVersion.html"},{"doc":"Get JACK version string Returns: JACK version as a string","kind":"function","module":"jack.global","name":"jackVersionString","package":"jack-d","parentType":"","signature":"string jackVersionString()","url":"/ddoc/jack-d/jack/global/jackVersionString.html"},{"doc":"Get JACK's current system time in microseconds. Real-time safe. Returns: JACK's current time","kind":"function","module":"jack.global","name":"getTime","package":"jack-d","parentType":"","signature":"JackTime getTime()","url":"/ddoc/jack-d/jack/global/getTime.html"},{"doc":"Set error callback delegate. Real-time safe. Params: dg = The error delegate","kind":"function","module":"jack.global","name":"setErrorDelegate","package":"jack-d","parentType":"","signature":"void setErrorDelegate(ErrorDelegate dg)","url":"/ddoc/jack-d/jack/global/setErrorDelegate.html"},{"doc":"Set info callback delegate Params: dg = The info delegate","kind":"function","module":"jack.global","name":"setInfoDelegate","package":"jack-d","parentType":"","signature":"void setInfoDelegate(InfoDelegate dg)","url":"/ddoc/jack-d/jack/global/setInfoDelegate.html"},{"doc":"","kind":"module","module":"jack.midi","name":"jack.midi","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/midi.html"},{"doc":"Clear an output MIDI port buffer (must be called at the start of process for an output MIDI port). Params: portBuffer = The MIDI port buffer","kind":"function","module":"jack.midi","name":"clearMidiBuffer","package":"jack-d","parentType":"","signature":"void clearMidiBuffer(void *  portBuffer)","url":"/ddoc/jack-d/jack/midi/clearMidiBuffer.html"},{"doc":"Write a MIDI event into an output port buffer. Params: portBuffer = The MIDI output port buffer time = The time of the event (events must be in ord...","kind":"function","module":"jack.midi","name":"writeMidiEvent","package":"jack-d","parentType":"","signature":"bool writeMidiEvent(void *  portBuffer,  NFrames time,  const(ubyte)[]  data)","url":"/ddoc/jack-d/jack/midi/writeMidiEvent.html"},{"doc":"Reserve space for a MIDI event and return a mutable slice to write into. Params: portBuffer = The MIDI output port buffer time = The time of the ev...","kind":"function","module":"jack.midi","name":"reserveMidiEvent","package":"jack-d","parentType":"","signature":"ubyte[] reserveMidiEvent(void *  portBuffer,  NFrames time,  size_t size)","url":"/ddoc/jack-d/jack/midi/reserveMidiEvent.html"},{"doc":"Get max event size for a MIDI port buffer. Real-time safe. Params: portBuffer = Port buffer pointer Returns: Max event size","kind":"function","module":"jack.midi","name":"maxMidiEventSize","package":"jack-d","parentType":"","signature":"size_t maxMidiEventSize(void *  portBuffer)","url":"/ddoc/jack-d/jack/midi/maxMidiEventSize.html"},{"doc":"Get lost MIDI event count. Real-time safe. Params: portBuffer = Port buffer pointer Returns: Count of lost MIDI events","kind":"function","module":"jack.midi","name":"getLostMidiEventCount","package":"jack-d","parentType":"","signature":"uint getLostMidiEventCount(void *  portBuffer)","url":"/ddoc/jack-d/jack/midi/getLostMidiEventCount.html"},{"doc":"MIDI event range helper, which is intended to use in the JACK process callback on MIDI input port buffers.","kind":"struct","module":"jack.midi","name":"MidiEventRange","package":"jack-d","parentType":"","signature":"MidiEventRange","url":"/ddoc/jack-d/jack/midi.html#MidiEventRange"},{"doc":"","kind":"method","module":"jack.midi","name":"empty","package":"jack-d","parentType":"MidiEventRange","signature":"bool empty()","url":"/ddoc/jack-d/jack/midi/MidiEventRange.empty.html"},{"doc":"","kind":"method","module":"jack.midi","name":"front","package":"jack-d","parentType":"MidiEventRange","signature":"MidiEvent front()","url":"/ddoc/jack-d/jack/midi/MidiEventRange.front.html"},{"doc":"","kind":"method","module":"jack.midi","name":"popFront","package":"jack-d","parentType":"MidiEventRange","signature":"void popFront()","url":"/ddoc/jack-d/jack/midi/MidiEventRange.popFront.html"},{"doc":"","kind":"module","module":"jack","name":"jack","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack.html"},{"doc":"","kind":"module","module":"jack.port","name":"jack.port","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/port.html"},{"doc":"Lightweight D wrapper around a jack_port_t.","kind":"struct","module":"jack.port","name":"Port","package":"jack-d","parentType":"","signature":"Port","url":"/ddoc/jack-d/jack/port.html#Port"},{"doc":"Get the maximum port name size. Real-time safe.","kind":"method","module":"jack.port","name":"maxPortNameSize","package":"jack-d","parentType":"Port","signature":"int maxPortNameSize()","url":"/ddoc/jack-d/jack/port/Port.maxPortNameSize.html"},{"doc":"Get the maximum port type name size. Real-time safe.","kind":"method","module":"jack.port","name":"maxPortTypeSize","package":"jack-d","parentType":"Port","signature":"int maxPortTypeSize()","url":"/ddoc/jack-d/jack/port/Port.maxPortTypeSize.html"},{"doc":"Check if a port is a null port (unset). Real-time safe.","kind":"method","module":"jack.port","name":"isNull","package":"jack-d","parentType":"Port","signature":"bool isNull()","url":"/ddoc/jack-d/jack/port/Port.isNull.html"},{"doc":"Get port name. NOT real-time safe and shouldn't be called from process callback.","kind":"method","module":"jack.port","name":"name","package":"jack-d","parentType":"Port","signature":"string name()","url":"/ddoc/jack-d/jack/port/Port.name.html"},{"doc":"Set port name. NOT real-time safe and shouldn't be called from process callback. Params: newName = The new port name Throws: JackException on failure","kind":"method","module":"jack.port","name":"name","package":"jack-d","parentType":"Port","signature":"void name(string newName)","url":"/ddoc/jack-d/jack/port/Port.name.html"},{"doc":"Get port short name. NOT real-time safe and shouldn't be called from process callback.","kind":"method","module":"jack.port","name":"shortName","package":"jack-d","parentType":"Port","signature":"string shortName()","url":"/ddoc/jack-d/jack/port/Port.shortName.html"},{"doc":"Get port type. NOT real-time safe and shouldn't be called from process callback.","kind":"method","module":"jack.port","name":"type","package":"jack-d","parentType":"Port","signature":"string type()","url":"/ddoc/jack-d/jack/port/Port.type.html"},{"doc":"Get port type ID. Real-time safe.","kind":"method","module":"jack.port","name":"typeId","package":"jack-d","parentType":"Port","signature":"PortTypeId typeId()","url":"/ddoc/jack-d/jack/port/Port.typeId.html"},{"doc":"Get port flags. Real-time safe.","kind":"method","module":"jack.port","name":"flags","package":"jack-d","parentType":"Port","signature":"JackPortFlags flags()","url":"/ddoc/jack-d/jack/port/Port.flags.html"},{"doc":"Get UUID of a JACK port. Real-time safe.","kind":"method","module":"jack.port","name":"uuid","package":"jack-d","parentType":"Port","signature":"Uuid uuid()","url":"/ddoc/jack-d/jack/port/Port.uuid.html"},{"doc":"Is input port? Real-time safe.","kind":"method","module":"jack.port","name":"isInput","package":"jack-d","parentType":"Port","signature":"bool isInput()","url":"/ddoc/jack-d/jack/port/Port.isInput.html"},{"doc":"Is output port? Real-time safe.","kind":"method","module":"jack.port","name":"isOutput","package":"jack-d","parentType":"Port","signature":"bool isOutput()","url":"/ddoc/jack-d/jack/port/Port.isOutput.html"},{"doc":"Get the buffer associated with a port. Real-time safe. This is intended to be called in the real-time process callback and the value should not be ...","kind":"method","module":"jack.port","name":"getBuffer","package":"jack-d","parentType":"Port","signature":"void * getBuffer(NFrames nframes)","url":"/ddoc/jack-d/jack/port/Port.getBuffer.html"},{"doc":"Convenience for audio ports – returns a float slice. Real-time safe. Params: nframes = Number of frames Returns: A mutable slice for writing the ...","kind":"method","module":"jack.port","name":"getAudioBuffer","package":"jack-d","parentType":"Port","signature":"float[] getAudioBuffer(NFrames nframes)","url":"/ddoc/jack-d/jack/port/Port.getAudioBuffer.html"},{"doc":"Check count of connections to a port. Real-time safe. Returns: Count of connections to this port","kind":"method","module":"jack.port","name":"connected","package":"jack-d","parentType":"Port","signature":"int connected()","url":"/ddoc/jack-d/jack/port/Port.connected.html"},{"doc":"Check if a port is connected to another port by name. NOT real-time safe and shouldn't be called from process callback. Params: portName = Other po...","kind":"method","module":"jack.port","name":"connectedTo","package":"jack-d","parentType":"Port","signature":"bool connectedTo(string portName)","url":"/ddoc/jack-d/jack/port/Port.connectedTo.html"},{"doc":"Get port connections. NOT real-time safe. Returns: Array of connected port names","kind":"method","module":"jack.port","name":"getConnections","package":"jack-d","parentType":"Port","signature":"string[] getConnections()","url":"/ddoc/jack-d/jack/port/Port.getConnections.html"},{"doc":"Request to monitor a port. NOT real-time safe and shouldn't be called from process callback. Params: on = true to request the server to monitor the...","kind":"method","module":"jack.port","name":"requestMonitor","package":"jack-d","parentType":"Port","signature":"void requestMonitor(bool  on)","url":"/ddoc/jack-d/jack/port/Port.requestMonitor.html"},{"doc":"If a port has JackPortCanMonitor set, calling this method turns on input monitor if it was off, or turns it off if only one request to turn it on h...","kind":"method","module":"jack.port","name":"ensureMonitor","package":"jack-d","parentType":"Port","signature":"void ensureMonitor(bool  on)","url":"/ddoc/jack-d/jack/port/Port.ensureMonitor.html"},{"doc":"Check if monitoring has been requested for an input port. Real-time safe. Returns: true if monitoring requested, false otherwise","kind":"method","module":"jack.port","name":"monitoringInput","package":"jack-d","parentType":"Port","signature":"bool monitoringInput()","url":"/ddoc/jack-d/jack/port/Port.monitoringInput.html"},{"doc":"Get a latency range. Real-time safe. This is intended to be called from the latency callback. Params: mode = The mode of the range to get Returns: ...","kind":"method","module":"jack.port","name":"getLatencyRange","package":"jack-d","parentType":"Port","signature":"LatencyRange getLatencyRange(JackLatencyCallbackMode mode)","url":"/ddoc/jack-d/jack/port/Port.getLatencyRange.html"},{"doc":"Set a latency range. Real-time safe. This is intended to be called from the latency callback Params: mode = The mode of the range to set range = Th...","kind":"method","module":"jack.port","name":"setLatencyRange","package":"jack-d","parentType":"Port","signature":"void setLatencyRange(JackLatencyCallbackMode mode,  LatencyRange range)","url":"/ddoc/jack-d/jack/port/Port.setLatencyRange.html"},{"doc":"Set a port alias name. Up to 2 aliases are allowed. NOT real-time safe. Throws: JackException on error (too many aliases for example)","kind":"method","module":"jack.port","name":"setAlias","package":"jack-d","parentType":"Port","signature":"void setAlias(string aliasName)","url":"/ddoc/jack-d/jack/port/Port.setAlias.html"},{"doc":"Unset a port alias name. NOT real-time safe. Throws: JackException on error","kind":"method","module":"jack.port","name":"unsetAlias","package":"jack-d","parentType":"Port","signature":"void unsetAlias(string aliasName)","url":"/ddoc/jack-d/jack/port/Port.unsetAlias.html"},{"doc":"Get port alias names. NOT real-time safe. Returns: Array of port alias names","kind":"method","module":"jack.port","name":"aliases","package":"jack-d","parentType":"Port","signature":"string[] aliases()","url":"/ddoc/jack-d/jack/port/Port.aliases.html"},{"doc":"","kind":"module","module":"jack.types","name":"jack.types","package":"jack-d","parentType":"","signature":"","url":"/ddoc/jack-d/jack/types.html"},{"doc":"Core types, enums, constants and callback prototypes for the JACK Audio Connection Kit. These mirror the public C API using native D types.","kind":"alias","module":"jack.types","name":"JackTime","package":"jack-d","parentType":"","signature":"JackTime = jack_time_t","url":"/ddoc/jack-d/jack/types.html#JackTime"},{"doc":"","kind":"alias","module":"jack.types","name":"NFrames","package":"jack-d","parentType":"","signature":"NFrames = jack_nframes_t","url":"/ddoc/jack-d/jack/types.html#NFrames"},{"doc":"","kind":"alias","module":"jack.types","name":"PortId","package":"jack-d","parentType":"","signature":"PortId = jack_port_id_t","url":"/ddoc/jack-d/jack/types.html#PortId"},{"doc":"","kind":"alias","module":"jack.types","name":"PortTypeId","package":"jack-d","parentType":"","signature":"PortTypeId = jack_port_type_id_t","url":"/ddoc/jack-d/jack/types.html#PortTypeId"},{"doc":"","kind":"alias","module":"jack.types","name":"Uuid","package":"jack-d","parentType":"","signature":"Uuid = jack_uuid_t","url":"/ddoc/jack-d/jack/types.html#Uuid"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_nframes_t","package":"jack-d","parentType":"","signature":"jack_nframes_t = uint","url":"/ddoc/jack-d/jack/types.html#jack_nframes_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_time_t","package":"jack-d","parentType":"","signature":"jack_time_t = ulong","url":"/ddoc/jack-d/jack/types.html#jack_time_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_unique_t","package":"jack-d","parentType":"","signature":"jack_unique_t = ulong","url":"/ddoc/jack-d/jack/types.html#jack_unique_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_uuid_t","package":"jack-d","parentType":"","signature":"jack_uuid_t = ulong","url":"/ddoc/jack-d/jack/types.html#jack_uuid_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_shmsize_t","package":"jack-d","parentType":"","signature":"jack_shmsize_t = int","url":"/ddoc/jack-d/jack/types.html#jack_shmsize_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_intclient_t","package":"jack-d","parentType":"","signature":"jack_intclient_t = ulong","url":"/ddoc/jack-d/jack/types.html#jack_intclient_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_port_id_t","package":"jack-d","parentType":"","signature":"jack_port_id_t = uint","url":"/ddoc/jack-d/jack/types.html#jack_port_id_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_port_type_id_t","package":"jack-d","parentType":"","signature":"jack_port_type_id_t = uint","url":"/ddoc/jack-d/jack/types.html#jack_port_type_id_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_default_audio_sample_t","package":"jack-d","parentType":"","signature":"jack_default_audio_sample_t = float","url":"/ddoc/jack-d/jack/types.html#jack_default_audio_sample_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_midi_data_t","package":"jack-d","parentType":"","signature":"jack_midi_data_t = ubyte","url":"/ddoc/jack-d/jack/types.html#jack_midi_data_t"},{"doc":"","kind":"struct","module":"jack.types","name":"_jack_client","package":"jack-d","parentType":"","signature":"_jack_client","url":"/ddoc/jack-d/jack/types.html#_jack_client"},{"doc":"","kind":"struct","module":"jack.types","name":"_jack_port","package":"jack-d","parentType":"","signature":"_jack_port","url":"/ddoc/jack-d/jack/types.html#_jack_port"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_client_t","package":"jack-d","parentType":"","signature":"jack_client_t = _jack_client","url":"/ddoc/jack-d/jack/types.html#jack_client_t"},{"doc":"","kind":"alias","module":"jack.types","name":"jack_port_t","package":"jack-d","parentType":"","signature":"jack_port_t = _jack_port","url":"/ddoc/jack-d/jack/types.html#jack_port_t"},{"doc":"","kind":"enum","module":"jack.types","name":"jack_options_t","package":"jack-d","parentType":"","signature":"jack_options_t : int","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"NullOption","package":"jack-d","parentType":"","signature":"NullOption = 0x00","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"NoStartServer","package":"jack-d","parentType":"","signature":"NoStartServer = 0x01","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"UseExactName","package":"jack-d","parentType":"","signature":"UseExactName = 0x02","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ServerName","package":"jack-d","parentType":"","signature":"ServerName = 0x04","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"LoadName","package":"jack-d","parentType":"","signature":"LoadName = 0x08","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"LoadInit","package":"jack-d","parentType":"","signature":"LoadInit = 0x10","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"SessionID","package":"jack-d","parentType":"","signature":"SessionID = 0x20","url":"/ddoc/jack-d/jack/types.html#jack_options_t"},{"doc":"","kind":"alias","module":"jack.types","name":"JackOptions","package":"jack-d","parentType":"","signature":"JackOptions = jack_options_t","url":"/ddoc/jack-d/jack/types.html#JackOptions"},{"doc":"","kind":"enum","module":"jack.types","name":"jack_status_t","package":"jack-d","parentType":"","signature":"jack_status_t : int","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"Failure","package":"jack-d","parentType":"","signature":"Failure = 0x01","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"InvalidOption","package":"jack-d","parentType":"","signature":"InvalidOption = 0x02","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"NameNotUnique","package":"jack-d","parentType":"","signature":"NameNotUnique = 0x04","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ServerStarted","package":"jack-d","parentType":"","signature":"ServerStarted = 0x08","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ServerFailed","package":"jack-d","parentType":"","signature":"ServerFailed = 0x10","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ServerError","package":"jack-d","parentType":"","signature":"ServerError = 0x20","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"NoSuchClient","package":"jack-d","parentType":"","signature":"NoSuchClient = 0x40","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"LoadFailure","package":"jack-d","parentType":"","signature":"LoadFailure = 0x80","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"InitFailure","package":"jack-d","parentType":"","signature":"InitFailure = 0x100","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ShmFailure","package":"jack-d","parentType":"","signature":"ShmFailure = 0x200","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"VersionError","package":"jack-d","parentType":"","signature":"VersionError = 0x400","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"BackendError","package":"jack-d","parentType":"","signature":"BackendError = 0x800","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"ClientZombie","package":"jack-d","parentType":"","signature":"ClientZombie = 0x1000","url":"/ddoc/jack-d/jack/types.html#jack_status_t"},{"doc":"","kind":"alias","module":"jack.types","name":"JackStatus","package":"jack-d","parentType":"","signature":"JackStatus = jack_status_t","url":"/ddoc/jack-d/jack/types.html#JackStatus"},{"doc":"","kind":"enum","module":"jack.types","name":"JackPortFlags","package":"jack-d","parentType":"","signature":"JackPortFlags : ulong","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum_member","module":"jack.types","name":"IsInput","package":"jack-d","parentType":"","signature":"IsInput = 0x1","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum_member","module":"jack.types","name":"IsOutput","package":"jack-d","parentType":"","signature":"IsOutput = 0x2","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum_member","module":"jack.types","name":"IsPhysical","package":"jack-d","parentType":"","signature":"IsPhysical = 0x4","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum_member","module":"jack.types","name":"CanMonitor","package":"jack-d","parentType":"","signature":"CanMonitor = 0x8","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum_member","module":"jack.types","name":"IsTerminal","package":"jack-d","parentType":"","signature":"IsTerminal = 0x10","url":"/ddoc/jack-d/jack/types.html#JackPortFlags"},{"doc":"","kind":"enum","module":"jack.types","name":"jack_latency_callback_mode_t","package":"jack-d","parentType":"","signature":"jack_latency_callback_mode_t","url":"/ddoc/jack-d/jack/types.html#jack_latency_callback_mode_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"CaptureLatency","package":"jack-d","parentType":"","signature":"CaptureLatency = 0","url":"/ddoc/jack-d/jack/types.html#jack_latency_callback_mode_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"PlaybackLatency","package":"jack-d","parentType":"","signature":"PlaybackLatency = 1","url":"/ddoc/jack-d/jack/types.html#jack_latency_callback_mode_t"},{"doc":"","kind":"alias","module":"jack.types","name":"JackLatencyCallbackMode","package":"jack-d","parentType":"","signature":"JackLatencyCallbackMode = jack_latency_callback_mode_t","url":"/ddoc/jack-d/jack/types.html#JackLatencyCallbackMode"},{"doc":"","kind":"struct","module":"jack.types","name":"jack_latency_range_t","package":"jack-d","parentType":"","signature":"jack_latency_range_t","url":"/ddoc/jack-d/jack/types.html#jack_latency_range_t"},{"doc":"","kind":"alias","module":"jack.types","name":"LatencyRange","package":"jack-d","parentType":"","signature":"LatencyRange = jack_latency_range_t","url":"/ddoc/jack-d/jack/types.html#LatencyRange"},{"doc":"","kind":"enum","module":"jack.types","name":"jack_transport_state_t","package":"jack-d","parentType":"","signature":"jack_transport_state_t","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"Stopped","package":"jack-d","parentType":"","signature":"Stopped = 0","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"Rolling","package":"jack-d","parentType":"","signature":"Rolling = 1","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"Looping","package":"jack-d","parentType":"","signature":"Looping = 2","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"Starting","package":"jack-d","parentType":"","signature":"Starting = 3","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"NetStarting","package":"jack-d","parentType":"","signature":"NetStarting = 4","url":"/ddoc/jack-d/jack/types.html#jack_transport_state_t"},{"doc":"","kind":"alias","module":"jack.types","name":"JackTransportState","package":"jack-d","parentType":"","signature":"JackTransportState = jack_transport_state_t","url":"/ddoc/jack-d/jack/types.html#JackTransportState"},{"doc":"","kind":"enum","module":"jack.types","name":"jack_position_bits_t","package":"jack-d","parentType":"","signature":"jack_position_bits_t : int","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"PositionBBT","package":"jack-d","parentType":"","signature":"PositionBBT = 0x10","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"PositionTimecode","package":"jack-d","parentType":"","signature":"PositionTimecode = 0x20","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"BBTFrameOffset","package":"jack-d","parentType":"","signature":"BBTFrameOffset = 0x40","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"AudioVideoRatio","package":"jack-d","parentType":"","signature":"AudioVideoRatio = 0x80","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"VideoFrameOffset","package":"jack-d","parentType":"","signature":"VideoFrameOffset = 0x100","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"enum_member","module":"jack.types","name":"TickDouble","package":"jack-d","parentType":"","signature":"TickDouble = 0x200","url":"/ddoc/jack-d/jack/types.html#jack_position_bits_t"},{"doc":"","kind":"alias","module":"jack.types","name":"JackPositionBits","package":"jack-d","parentType":"","signature":"JackPositionBits = jack_position_bits_t","url":"/ddoc/jack-d/jack/types.html#JackPositionBits"},{"doc":"","kind":"struct","module":"jack.types","name":"jack_position_t","package":"jack-d","parentType":"","signature":"jack_position_t","url":"/ddoc/jack-d/jack/types.html#jack_position_t"},{"doc":"","kind":"alias","module":"jack.types","name":"Position","package":"jack-d","parentType":"","signature":"Position = jack_position_t","url":"/ddoc/jack-d/jack/types.html#Position"},{"doc":"","kind":"struct","module":"jack.types","name":"jack_midi_event_t","package":"jack-d","parentType":"","signature":"jack_midi_event_t","url":"/ddoc/jack-d/jack/types.html#jack_midi_event_t"},{"doc":"","kind":"alias","module":"jack.types","name":"MidiEvent","package":"jack-d","parentType":"","signature":"MidiEvent = jack_midi_event_t","url":"/ddoc/jack-d/jack/types.html#MidiEvent"},{"doc":"","kind":"alias","module":"jack.types","name":"JackProcessCallback","package":"jack-d","parentType":"","signature":"JackProcessCallback = int  function(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackProcessCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackThreadCallback","package":"jack-d","parentType":"","signature":"JackThreadCallback = void *  function(void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackThreadCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackThreadInitCallback","package":"jack-d","parentType":"","signature":"JackThreadInitCallback = void  function(void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackThreadInitCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackGraphOrderCallback","package":"jack-d","parentType":"","signature":"JackGraphOrderCallback = int  function(void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackGraphOrderCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackXRunCallback","package":"jack-d","parentType":"","signature":"JackXRunCallback = int  function(void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackXRunCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackBufferSizeCallback","package":"jack-d","parentType":"","signature":"JackBufferSizeCallback = int  function(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackBufferSizeCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackSampleRateCallback","package":"jack-d","parentType":"","signature":"JackSampleRateCallback = int  function(jack_nframes_t nframes,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackSampleRateCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackPortRegistrationCallback","package":"jack-d","parentType":"","signature":"JackPortRegistrationCallback = void  function(jack_port_id_t port,  int  register_,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackPortRegistrationCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackClientRegistrationCallback","package":"jack-d","parentType":"","signature":"JackClientRegistrationCallback = void  function(const(char) *  name,  int  register_,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackClientRegistrationCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackPortConnectCallback","package":"jack-d","parentType":"","signature":"JackPortConnectCallback = void  function(jack_port_id_t a,  jack_port_id_t b,  int  connect,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackPortConnectCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackPortRenameCallback","package":"jack-d","parentType":"","signature":"JackPortRenameCallback = void  function(jack_port_id_t port,  const(char) *  old_name,\n   const(char) *  new_name,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackPortRenameCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackFreewheelCallback","package":"jack-d","parentType":"","signature":"JackFreewheelCallback = void  function(int  starting,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackFreewheelCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackShutdownCallback","package":"jack-d","parentType":"","signature":"JackShutdownCallback = void  function(void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackShutdownCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackInfoShutdownCallback","package":"jack-d","parentType":"","signature":"JackInfoShutdownCallback = void  function(jack_status_t code,  const(char) *  reason,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackInfoShutdownCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackLatencyCallback","package":"jack-d","parentType":"","signature":"JackLatencyCallback = void  function(jack_latency_callback_mode_t mode,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackLatencyCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackSyncCallback","package":"jack-d","parentType":"","signature":"JackSyncCallback = int  function(jack_transport_state_t state,  jack_position_t *  pos,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackSyncCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackTimebaseCallback","package":"jack-d","parentType":"","signature":"JackTimebaseCallback = void  function(jack_transport_state_t state,  jack_nframes_t nframes,\n   jack_position_t *  pos,  int  new_pos,  void *  arg)","url":"/ddoc/jack-d/jack/types.html#JackTimebaseCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackErrorCallback","package":"jack-d","parentType":"","signature":"JackErrorCallback = void  function(const(char) *  msg)","url":"/ddoc/jack-d/jack/types.html#JackErrorCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"JackInfoCallback","package":"jack-d","parentType":"","signature":"JackInfoCallback = void  function(const(char) *  msg)","url":"/ddoc/jack-d/jack/types.html#JackInfoCallback"},{"doc":"","kind":"alias","module":"jack.types","name":"ErrorDelegate","package":"jack-d","parentType":"","signature":"ErrorDelegate = void  delegate(string msg)","url":"/ddoc/jack-d/jack/types.html#ErrorDelegate"},{"doc":"","kind":"alias","module":"jack.types","name":"InfoDelegate","package":"jack-d","parentType":"","signature":"InfoDelegate = void  delegate(string msg)","url":"/ddoc/jack-d/jack/types.html#InfoDelegate"},{"doc":"","kind":"alias","module":"jack.types","name":"NativeThread","package":"jack-d","parentType":"","signature":"NativeThread = jack_native_thread_t","url":"/ddoc/jack-d/jack/types.html#NativeThread"},{"doc":"Exception thrown by the high-level JACK API on error.","kind":"class","module":"jack.types","name":"JackException","package":"jack-d","parentType":"","signature":"JackException : Exception","url":"/ddoc/jack-d/jack/types.html#JackException"},{"doc":"","kind":"variable","module":"jack.types","name":"JACK_MAX_FRAMES","package":"jack-d","parentType":"","signature":"jack_nframes_t JACK_MAX_FRAMES","url":"/ddoc/jack-d/jack/types.html#JACK_MAX_FRAMES"},{"doc":"","kind":"variable","module":"jack.types","name":"JACK_LOAD_INIT_LIMIT","package":"jack-d","parentType":"","signature":"JACK_LOAD_INIT_LIMIT","url":"/ddoc/jack-d/jack/types.html#JACK_LOAD_INIT_LIMIT"},{"doc":"","kind":"variable","module":"jack.types","name":"JACK_DEFAULT_AUDIO_TYPE","package":"jack-d","parentType":"","signature":"string JACK_DEFAULT_AUDIO_TYPE","url":"/ddoc/jack-d/jack/types.html#JACK_DEFAULT_AUDIO_TYPE"},{"doc":"","kind":"variable","module":"jack.types","name":"JACK_DEFAULT_MIDI_TYPE","package":"jack-d","parentType":"","signature":"string JACK_DEFAULT_MIDI_TYPE","url":"/ddoc/jack-d/jack/types.html#JACK_DEFAULT_MIDI_TYPE"},{"doc":"","kind":"variable","module":"jack.types","name":"JackOpenOptions","package":"jack-d","parentType":"","signature":"JackOpenOptions","url":"/ddoc/jack-d/jack/types.html#JackOpenOptions"},{"doc":"","kind":"variable","module":"jack.types","name":"JackLoadOptions","package":"jack-d","parentType":"","signature":"JackLoadOptions","url":"/ddoc/jack-d/jack/types.html#JackLoadOptions"},{"doc":"","kind":"variable","module":"jack.types","name":"JACK_POSITION_MASK","package":"jack-d","parentType":"","signature":"JackPositionBits JACK_POSITION_MASK","url":"/ddoc/jack-d/jack/types.html#JACK_POSITION_MASK"}]